2006-01-24 04:13:11 +00:00
|
|
|
//===-- Globals.cpp - Implement the GlobalValue & GlobalVariable class ----===//
|
2005-04-21 23:48:37 +00:00
|
|
|
//
|
2004-07-18 00:06:26 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-21 23:48:37 +00:00
|
|
|
//
|
2004-07-18 00:06:26 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2013-01-02 09:10:48 +00:00
|
|
|
// This file implements the GlobalValue & GlobalVariable classes for the IR
|
2004-07-18 00:06:26 +00:00
|
|
|
// library.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2013-01-02 11:36:10 +00:00
|
|
|
#include "llvm/IR/GlobalValue.h"
|
2012-12-03 16:50:05 +00:00
|
|
|
#include "llvm/ADT/SmallPtrSet.h"
|
2013-01-02 11:36:10 +00:00
|
|
|
#include "llvm/IR/Constants.h"
|
|
|
|
#include "llvm/IR/DerivedTypes.h"
|
|
|
|
#include "llvm/IR/GlobalAlias.h"
|
|
|
|
#include "llvm/IR/GlobalVariable.h"
|
2014-03-04 12:46:06 +00:00
|
|
|
#include "llvm/IR/LeakDetector.h"
|
2013-01-02 11:36:10 +00:00
|
|
|
#include "llvm/IR/Module.h"
|
2009-07-08 18:01:40 +00:00
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
2004-07-18 00:06:26 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// GlobalValue Class
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2010-01-27 20:34:15 +00:00
|
|
|
bool GlobalValue::isMaterializable() const {
|
2010-02-15 21:27:20 +00:00
|
|
|
return getParent() && getParent()->isMaterializable(this);
|
2010-01-27 20:34:15 +00:00
|
|
|
}
|
|
|
|
bool GlobalValue::isDematerializable() const {
|
2010-02-15 21:27:20 +00:00
|
|
|
return getParent() && getParent()->isDematerializable(this);
|
2010-01-27 20:34:15 +00:00
|
|
|
}
|
|
|
|
bool GlobalValue::Materialize(std::string *ErrInfo) {
|
|
|
|
return getParent()->Materialize(this, ErrInfo);
|
|
|
|
}
|
|
|
|
void GlobalValue::Dematerialize() {
|
|
|
|
getParent()->Dematerialize(this);
|
|
|
|
}
|
|
|
|
|
2014-02-25 23:25:17 +00:00
|
|
|
const DataLayout *GlobalValue::getDataLayout() const {
|
|
|
|
return getParent()->getDataLayout();
|
|
|
|
}
|
|
|
|
|
2005-04-21 23:48:37 +00:00
|
|
|
/// Override destroyConstant to make sure it doesn't get called on
|
2004-07-18 00:06:26 +00:00
|
|
|
/// GlobalValue's because they shouldn't be treated like other constants.
|
2009-06-20 00:24:58 +00:00
|
|
|
void GlobalValue::destroyConstant() {
|
2009-07-14 16:55:14 +00:00
|
|
|
llvm_unreachable("You can't GV->destroyConstant()!");
|
2004-07-18 00:06:26 +00:00
|
|
|
}
|
2008-05-26 19:58:59 +00:00
|
|
|
|
|
|
|
/// copyAttributesFrom - copy all additional attributes (those not needed to
|
|
|
|
/// create a GlobalValue) from the GlobalValue Src to this one.
|
|
|
|
void GlobalValue::copyAttributesFrom(const GlobalValue *Src) {
|
2014-05-06 14:51:36 +00:00
|
|
|
if (!isa<GlobalAlias>(this)) {
|
|
|
|
setAlignment(Src->getAlignment());
|
|
|
|
setSection(Src->getSection());
|
|
|
|
}
|
|
|
|
|
2008-05-26 19:58:59 +00:00
|
|
|
setVisibility(Src->getVisibility());
|
Land the long talked about "type system rewrite" patch. This
patch brings numerous advantages to LLVM. One way to look at it
is through diffstat:
109 files changed, 3005 insertions(+), 5906 deletions(-)
Removing almost 3K lines of code is a good thing. Other advantages
include:
1. Value::getType() is a simple load that can be CSE'd, not a mutating
union-find operation.
2. Types a uniqued and never move once created, defining away PATypeHolder.
3. Structs can be "named" now, and their name is part of the identity that
uniques them. This means that the compiler doesn't merge them structurally
which makes the IR much less confusing.
4. Now that there is no way to get a cycle in a type graph without a named
struct type, "upreferences" go away.
5. Type refinement is completely gone, which should make LTO much MUCH faster
in some common cases with C++ code.
6. Types are now generally immutable, so we can use "Type *" instead
"const Type *" everywhere.
Downsides of this patch are that it removes some functions from the C API,
so people using those will have to upgrade to (not yet added) new API.
"LLVM 3.0" is the right time to do this.
There are still some cleanups pending after this, this patch is large enough
as-is.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@134829 91177308-0d34-0410-b5e6-96231b3b80d8
2011-07-09 17:41:24 +00:00
|
|
|
setUnnamedAddr(Src->hasUnnamedAddr());
|
2014-02-13 05:11:35 +00:00
|
|
|
setDLLStorageClass(Src->getDLLStorageClass());
|
2008-05-26 19:58:59 +00:00
|
|
|
}
|
|
|
|
|
2014-05-06 16:48:58 +00:00
|
|
|
unsigned GlobalValue::getAlignment() const {
|
|
|
|
if (auto *GA = dyn_cast<GlobalAlias>(this))
|
|
|
|
return GA->getAliasedGlobal()->getAlignment();
|
|
|
|
|
|
|
|
return (1u << Alignment) >> 1;
|
|
|
|
}
|
|
|
|
|
2010-07-28 20:56:48 +00:00
|
|
|
void GlobalValue::setAlignment(unsigned Align) {
|
2014-05-06 14:51:36 +00:00
|
|
|
assert((!isa<GlobalAlias>(this)) &&
|
2014-02-13 18:26:41 +00:00
|
|
|
"GlobalAlias should not have an alignment!");
|
2010-07-28 20:56:48 +00:00
|
|
|
assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
|
|
|
|
assert(Align <= MaximumAlignment &&
|
|
|
|
"Alignment is greater than MaximumAlignment!");
|
|
|
|
Alignment = Log2_32(Align) + 1;
|
|
|
|
assert(getAlignment() == Align && "Alignment representation error!");
|
|
|
|
}
|
2011-07-14 18:10:41 +00:00
|
|
|
|
2014-05-06 14:59:14 +00:00
|
|
|
void GlobalValue::setSection(StringRef S) {
|
|
|
|
assert(!isa<GlobalAlias>(this) && "GlobalAlias should not have a section!");
|
|
|
|
Section = S;
|
|
|
|
}
|
|
|
|
|
2011-07-14 18:10:41 +00:00
|
|
|
bool GlobalValue::isDeclaration() const {
|
2011-07-14 18:12:44 +00:00
|
|
|
// Globals are definitions if they have an initializer.
|
2011-07-14 18:10:41 +00:00
|
|
|
if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(this))
|
|
|
|
return GV->getNumOperands() == 0;
|
|
|
|
|
2011-07-14 18:12:44 +00:00
|
|
|
// Functions are definitions if they have a body.
|
2011-07-14 18:10:41 +00:00
|
|
|
if (const Function *F = dyn_cast<Function>(this))
|
|
|
|
return F->empty();
|
2011-07-14 18:12:44 +00:00
|
|
|
|
2011-07-14 20:22:18 +00:00
|
|
|
// Aliases are always definitions.
|
|
|
|
assert(isa<GlobalAlias>(this));
|
2011-07-14 18:10:41 +00:00
|
|
|
return false;
|
|
|
|
}
|
2010-07-28 20:56:48 +00:00
|
|
|
|
2004-07-18 00:06:26 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// GlobalVariable Implementation
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2012-06-23 11:37:03 +00:00
|
|
|
GlobalVariable::GlobalVariable(Type *Ty, bool constant, LinkageTypes Link,
|
2013-02-03 21:54:38 +00:00
|
|
|
Constant *InitVal,
|
|
|
|
const Twine &Name, ThreadLocalMode TLMode,
|
|
|
|
unsigned AddressSpace,
|
|
|
|
bool isExternallyInitialized)
|
2012-06-23 11:37:03 +00:00
|
|
|
: GlobalValue(PointerType::get(Ty, AddressSpace),
|
|
|
|
Value::GlobalVariableVal,
|
|
|
|
OperandTraits<GlobalVariable>::op_begin(this),
|
2014-04-09 06:08:46 +00:00
|
|
|
InitVal != nullptr, Link, Name),
|
2013-02-03 21:54:38 +00:00
|
|
|
isConstantGlobal(constant), threadLocalMode(TLMode),
|
|
|
|
isExternallyInitializedConstant(isExternallyInitialized) {
|
2012-06-23 11:37:03 +00:00
|
|
|
if (InitVal) {
|
|
|
|
assert(InitVal->getType() == Ty &&
|
|
|
|
"Initializer should be the same type as the GlobalVariable!");
|
|
|
|
Op<0>() = InitVal;
|
|
|
|
}
|
|
|
|
|
|
|
|
LeakDetector::addGarbageObject(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
GlobalVariable::GlobalVariable(Module &M, Type *Ty, bool constant,
|
|
|
|
LinkageTypes Link, Constant *InitVal,
|
|
|
|
const Twine &Name,
|
|
|
|
GlobalVariable *Before, ThreadLocalMode TLMode,
|
2013-02-03 21:54:38 +00:00
|
|
|
unsigned AddressSpace,
|
|
|
|
bool isExternallyInitialized)
|
2012-06-23 12:14:23 +00:00
|
|
|
: GlobalValue(PointerType::get(Ty, AddressSpace),
|
2009-07-08 23:50:31 +00:00
|
|
|
Value::GlobalVariableVal,
|
2008-05-10 08:32:32 +00:00
|
|
|
OperandTraits<GlobalVariable>::op_begin(this),
|
2014-04-09 06:08:46 +00:00
|
|
|
InitVal != nullptr, Link, Name),
|
2013-02-03 21:54:38 +00:00
|
|
|
isConstantGlobal(constant), threadLocalMode(TLMode),
|
|
|
|
isExternallyInitializedConstant(isExternallyInitialized) {
|
2006-09-30 21:31:26 +00:00
|
|
|
if (InitVal) {
|
|
|
|
assert(InitVal->getType() == Ty &&
|
|
|
|
"Initializer should be the same type as the GlobalVariable!");
|
2008-05-26 21:33:52 +00:00
|
|
|
Op<0>() = InitVal;
|
2006-09-30 21:31:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
LeakDetector::addGarbageObject(this);
|
|
|
|
|
|
|
|
if (Before)
|
|
|
|
Before->getParent()->getGlobalList().insert(Before, this);
|
2009-07-08 19:03:57 +00:00
|
|
|
else
|
|
|
|
M.getGlobalList().push_back(this);
|
2006-09-30 21:31:26 +00:00
|
|
|
}
|
|
|
|
|
2004-07-18 00:06:26 +00:00
|
|
|
void GlobalVariable::setParent(Module *parent) {
|
|
|
|
if (getParent())
|
|
|
|
LeakDetector::addGarbageObject(this);
|
|
|
|
Parent = parent;
|
|
|
|
if (getParent())
|
|
|
|
LeakDetector::removeGarbageObject(this);
|
|
|
|
}
|
|
|
|
|
2004-10-11 22:21:39 +00:00
|
|
|
void GlobalVariable::removeFromParent() {
|
|
|
|
getParent()->getGlobalList().remove(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GlobalVariable::eraseFromParent() {
|
|
|
|
getParent()->getGlobalList().erase(this);
|
|
|
|
}
|
|
|
|
|
2004-07-18 00:06:26 +00:00
|
|
|
void GlobalVariable::replaceUsesOfWithOnConstant(Value *From, Value *To,
|
2005-10-04 18:13:04 +00:00
|
|
|
Use *U) {
|
2004-07-18 00:06:26 +00:00
|
|
|
// If you call this, then you better know this GVar has a constant
|
|
|
|
// initializer worth replacing. Enforce that here.
|
2005-04-21 23:48:37 +00:00
|
|
|
assert(getNumOperands() == 1 &&
|
2004-07-18 00:06:26 +00:00
|
|
|
"Attempt to replace uses of Constants on a GVar with no initializer");
|
|
|
|
|
|
|
|
// And, since you know it has an initializer, the From value better be
|
|
|
|
// the initializer :)
|
|
|
|
assert(getOperand(0) == From &&
|
|
|
|
"Attempt to replace wrong constant initializer in GVar");
|
|
|
|
|
|
|
|
// And, you better have a constant for the replacement value
|
|
|
|
assert(isa<Constant>(To) &&
|
|
|
|
"Attempt to replace GVar initializer with non-constant");
|
2005-04-21 23:48:37 +00:00
|
|
|
|
2004-07-18 00:06:26 +00:00
|
|
|
// Okay, preconditions out of the way, replace the constant initializer.
|
2004-08-04 02:27:17 +00:00
|
|
|
this->setOperand(0, cast<Constant>(To));
|
2004-07-18 00:06:26 +00:00
|
|
|
}
|
2007-04-25 14:27:10 +00:00
|
|
|
|
2009-11-17 00:43:13 +00:00
|
|
|
void GlobalVariable::setInitializer(Constant *InitVal) {
|
2014-04-09 06:08:46 +00:00
|
|
|
if (!InitVal) {
|
2009-11-17 00:43:13 +00:00
|
|
|
if (hasInitializer()) {
|
2014-04-09 06:08:46 +00:00
|
|
|
Op<0>().set(nullptr);
|
2009-11-17 00:43:13 +00:00
|
|
|
NumOperands = 0;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
assert(InitVal->getType() == getType()->getElementType() &&
|
|
|
|
"Initializer type must match GlobalVariable type");
|
|
|
|
if (!hasInitializer())
|
|
|
|
NumOperands = 1;
|
|
|
|
Op<0>().set(InitVal);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-05-26 19:58:59 +00:00
|
|
|
/// copyAttributesFrom - copy all additional attributes (those not needed to
|
|
|
|
/// create a GlobalVariable) from the GlobalVariable Src to this one.
|
|
|
|
void GlobalVariable::copyAttributesFrom(const GlobalValue *Src) {
|
|
|
|
assert(isa<GlobalVariable>(Src) && "Expected a GlobalVariable!");
|
|
|
|
GlobalValue::copyAttributesFrom(Src);
|
|
|
|
const GlobalVariable *SrcVar = cast<GlobalVariable>(Src);
|
2014-02-10 17:13:56 +00:00
|
|
|
setThreadLocalMode(SrcVar->getThreadLocalMode());
|
2008-05-26 19:58:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-04-25 14:27:10 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// GlobalAlias Implementation
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2011-07-18 04:54:35 +00:00
|
|
|
GlobalAlias::GlobalAlias(Type *Ty, LinkageTypes Link,
|
2009-07-25 06:02:13 +00:00
|
|
|
const Twine &Name, Constant* aliasee,
|
2007-04-25 14:27:10 +00:00
|
|
|
Module *ParentModule)
|
2008-05-10 08:32:32 +00:00
|
|
|
: GlobalValue(Ty, Value::GlobalAliasVal, &Op<0>(), 1, Link, Name) {
|
2007-04-25 14:27:10 +00:00
|
|
|
LeakDetector::addGarbageObject(this);
|
|
|
|
|
2007-04-28 13:45:00 +00:00
|
|
|
if (aliasee)
|
|
|
|
assert(aliasee->getType() == Ty && "Alias and aliasee types should match!");
|
2008-05-26 21:33:52 +00:00
|
|
|
Op<0>() = aliasee;
|
2007-04-28 13:45:00 +00:00
|
|
|
|
2007-04-25 14:27:10 +00:00
|
|
|
if (ParentModule)
|
|
|
|
ParentModule->getAliasList().push_back(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GlobalAlias::setParent(Module *parent) {
|
|
|
|
if (getParent())
|
|
|
|
LeakDetector::addGarbageObject(this);
|
|
|
|
Parent = parent;
|
|
|
|
if (getParent())
|
|
|
|
LeakDetector::removeGarbageObject(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GlobalAlias::removeFromParent() {
|
|
|
|
getParent()->getAliasList().remove(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GlobalAlias::eraseFromParent() {
|
|
|
|
getParent()->getAliasList().erase(this);
|
|
|
|
}
|
|
|
|
|
2011-07-14 18:01:49 +00:00
|
|
|
void GlobalAlias::setAliasee(Constant *Aliasee) {
|
|
|
|
assert((!Aliasee || Aliasee->getType() == getType()) &&
|
|
|
|
"Alias and aliasee types should match!");
|
2007-04-29 18:02:48 +00:00
|
|
|
|
|
|
|
setOperand(0, Aliasee);
|
|
|
|
}
|
|
|
|
|
2014-03-27 15:26:56 +00:00
|
|
|
static GlobalValue *getAliaseeGV(GlobalAlias *GA) {
|
|
|
|
Constant *C = GA->getAliasee();
|
|
|
|
assert(C && "Must alias something");
|
|
|
|
|
2013-08-19 23:13:33 +00:00
|
|
|
if (GlobalValue *GV = dyn_cast<GlobalValue>(C))
|
2011-07-14 18:01:49 +00:00
|
|
|
return GV;
|
|
|
|
|
2013-08-19 23:13:33 +00:00
|
|
|
ConstantExpr *CE = cast<ConstantExpr>(C);
|
2014-01-02 20:55:01 +00:00
|
|
|
assert((CE->getOpcode() == Instruction::BitCast ||
|
|
|
|
CE->getOpcode() == Instruction::AddrSpaceCast ||
|
2011-07-14 18:01:49 +00:00
|
|
|
CE->getOpcode() == Instruction::GetElementPtr) &&
|
|
|
|
"Unsupported aliasee");
|
2014-03-27 15:26:56 +00:00
|
|
|
|
2011-08-01 12:28:01 +00:00
|
|
|
return cast<GlobalValue>(CE->getOperand(0));
|
2007-04-25 14:27:10 +00:00
|
|
|
}
|
|
|
|
|
2014-03-27 15:26:56 +00:00
|
|
|
GlobalValue *GlobalAlias::getAliasedGlobal() {
|
2013-08-19 23:13:33 +00:00
|
|
|
SmallPtrSet<GlobalValue*, 3> Visited;
|
2008-03-11 22:28:56 +00:00
|
|
|
|
2014-03-27 15:26:56 +00:00
|
|
|
GlobalAlias *GA = this;
|
2008-03-11 22:28:56 +00:00
|
|
|
|
2014-03-27 15:26:56 +00:00
|
|
|
for (;;) {
|
|
|
|
GlobalValue *GV = getAliaseeGV(GA);
|
2008-03-11 22:28:56 +00:00
|
|
|
if (!Visited.insert(GV))
|
2014-04-09 06:08:46 +00:00
|
|
|
return nullptr;
|
2014-03-26 06:14:40 +00:00
|
|
|
|
2014-03-27 15:26:56 +00:00
|
|
|
// Iterate over aliasing chain.
|
|
|
|
GA = dyn_cast<GlobalAlias>(GV);
|
|
|
|
if (!GA)
|
|
|
|
return GV;
|
|
|
|
}
|
2008-03-11 22:28:56 +00:00
|
|
|
}
|