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"
|
|
|
|
#include "llvm/IR/Module.h"
|
2014-06-03 02:41:57 +00:00
|
|
|
#include "llvm/IR/Operator.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 {
|
2014-10-24 18:13:04 +00:00
|
|
|
if (const Function *F = dyn_cast<Function>(this))
|
|
|
|
return F->isMaterializable();
|
|
|
|
return false;
|
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
|
|
|
}
|
2014-10-24 22:50:48 +00:00
|
|
|
std::error_code GlobalValue::materialize() {
|
|
|
|
return getParent()->materialize(this);
|
2010-01-27 20:34:15 +00:00
|
|
|
}
|
2015-05-15 18:20:14 +00:00
|
|
|
void GlobalValue::dematerialize() {
|
|
|
|
getParent()->dematerialize(this);
|
2010-01-27 20:34:15 +00:00
|
|
|
}
|
|
|
|
|
2015-06-23 21:55:11 +00:00
|
|
|
/// Override destroyConstantImpl 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.
|
2015-06-23 21:55:11 +00:00
|
|
|
void GlobalValue::destroyConstantImpl() {
|
|
|
|
llvm_unreachable("You can't GV->destroyConstantImpl()!");
|
2004-07-18 00:06:26 +00:00
|
|
|
}
|
2008-05-26 19:58:59 +00:00
|
|
|
|
2015-06-24 18:55:24 +00:00
|
|
|
Value *GlobalValue::handleOperandChangeImpl(Value *From, Value *To, Use *U) {
|
|
|
|
llvm_unreachable("Unsupported class for handleOperandChange()!");
|
2015-06-24 00:05:07 +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) {
|
|
|
|
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-06-03 02:41:57 +00:00
|
|
|
unsigned GlobalValue::getAlignment() const {
|
|
|
|
if (auto *GA = dyn_cast<GlobalAlias>(this)) {
|
|
|
|
// In general we cannot compute this at the IR level, but we try.
|
2014-06-27 18:19:56 +00:00
|
|
|
if (const GlobalObject *GO = GA->getBaseObject())
|
2014-06-03 02:41:57 +00:00
|
|
|
return GO->getAlignment();
|
|
|
|
|
|
|
|
// FIXME: we should also be able to handle:
|
|
|
|
// Alias = Global + Offset
|
|
|
|
// Alias = Absolute
|
|
|
|
return 0;
|
|
|
|
}
|
2014-05-13 18:45:48 +00:00
|
|
|
return cast<GlobalObject>(this)->getAlignment();
|
2014-05-06 16:48:58 +00:00
|
|
|
}
|
|
|
|
|
2014-05-13 18:45:48 +00:00
|
|
|
void GlobalObject::setAlignment(unsigned Align) {
|
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!");
|
2014-10-24 18:13:04 +00:00
|
|
|
unsigned AlignmentData = Log2_32(Align) + 1;
|
|
|
|
unsigned OldData = getGlobalValueSubClassData();
|
|
|
|
setGlobalValueSubClassData((OldData & ~AlignmentMask) | AlignmentData);
|
2010-07-28 20:56:48 +00:00
|
|
|
assert(getAlignment() == Align && "Alignment representation error!");
|
|
|
|
}
|
2011-07-14 18:10:41 +00:00
|
|
|
|
2014-10-24 18:13:04 +00:00
|
|
|
unsigned GlobalObject::getGlobalObjectSubClassData() const {
|
|
|
|
unsigned ValueData = getGlobalValueSubClassData();
|
|
|
|
return ValueData >> AlignmentBits;
|
|
|
|
}
|
|
|
|
|
|
|
|
void GlobalObject::setGlobalObjectSubClassData(unsigned Val) {
|
|
|
|
unsigned OldData = getGlobalValueSubClassData();
|
|
|
|
setGlobalValueSubClassData((OldData & AlignmentMask) |
|
|
|
|
(Val << AlignmentBits));
|
|
|
|
assert(getGlobalObjectSubClassData() == Val && "representation error");
|
|
|
|
}
|
|
|
|
|
2014-05-13 18:45:48 +00:00
|
|
|
void GlobalObject::copyAttributesFrom(const GlobalValue *Src) {
|
|
|
|
const auto *GV = cast<GlobalObject>(Src);
|
|
|
|
GlobalValue::copyAttributesFrom(GV);
|
|
|
|
setAlignment(GV->getAlignment());
|
|
|
|
setSection(GV->getSection());
|
|
|
|
}
|
|
|
|
|
2014-06-03 02:41:57 +00:00
|
|
|
const char *GlobalValue::getSection() const {
|
|
|
|
if (auto *GA = dyn_cast<GlobalAlias>(this)) {
|
|
|
|
// In general we cannot compute this at the IR level, but we try.
|
2014-06-27 18:19:56 +00:00
|
|
|
if (const GlobalObject *GO = GA->getBaseObject())
|
2014-06-03 02:41:57 +00:00
|
|
|
return GO->getSection();
|
|
|
|
return "";
|
|
|
|
}
|
2014-05-13 18:45:48 +00:00
|
|
|
return cast<GlobalObject>(this)->getSection();
|
2014-05-06 22:44:30 +00:00
|
|
|
}
|
|
|
|
|
2014-06-27 18:19:56 +00:00
|
|
|
Comdat *GlobalValue::getComdat() {
|
|
|
|
if (auto *GA = dyn_cast<GlobalAlias>(this)) {
|
|
|
|
// In general we cannot compute this at the IR level, but we try.
|
|
|
|
if (const GlobalObject *GO = GA->getBaseObject())
|
|
|
|
return const_cast<GlobalObject *>(GO)->getComdat();
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
return cast<GlobalObject>(this)->getComdat();
|
|
|
|
}
|
|
|
|
|
2014-05-13 18:45:48 +00:00
|
|
|
void GlobalObject::setSection(StringRef S) { Section = S; }
|
2014-05-06 14:59:14 +00:00
|
|
|
|
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))
|
2014-10-24 18:13:04 +00:00
|
|
|
return F->empty() && !F->isMaterializable();
|
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;
|
|
|
|
}
|
2014-05-09 14:31:07 +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,
|
2014-05-09 15:49:02 +00:00
|
|
|
Constant *InitVal, const Twine &Name,
|
|
|
|
ThreadLocalMode TLMode, unsigned AddressSpace,
|
2013-02-03 21:54:38 +00:00
|
|
|
bool isExternallyInitialized)
|
2014-05-13 18:45:48 +00:00
|
|
|
: GlobalObject(PointerType::get(Ty, AddressSpace), Value::GlobalVariableVal,
|
|
|
|
OperandTraits<GlobalVariable>::op_begin(this),
|
|
|
|
InitVal != nullptr, Link, Name),
|
2014-05-28 18:15:43 +00:00
|
|
|
isConstantGlobal(constant),
|
2014-05-09 15:49:02 +00:00
|
|
|
isExternallyInitializedConstant(isExternallyInitialized) {
|
2014-05-28 18:15:43 +00:00
|
|
|
setThreadLocalMode(TLMode);
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
GlobalVariable::GlobalVariable(Module &M, Type *Ty, bool constant,
|
|
|
|
LinkageTypes Link, Constant *InitVal,
|
2014-05-09 15:49:02 +00:00
|
|
|
const Twine &Name, GlobalVariable *Before,
|
|
|
|
ThreadLocalMode TLMode, unsigned AddressSpace,
|
2013-02-03 21:54:38 +00:00
|
|
|
bool isExternallyInitialized)
|
2014-05-13 18:45:48 +00:00
|
|
|
: GlobalObject(PointerType::get(Ty, AddressSpace), Value::GlobalVariableVal,
|
|
|
|
OperandTraits<GlobalVariable>::op_begin(this),
|
|
|
|
InitVal != nullptr, Link, Name),
|
2014-05-28 18:15:43 +00:00
|
|
|
isConstantGlobal(constant),
|
2014-05-09 15:49:02 +00:00
|
|
|
isExternallyInitializedConstant(isExternallyInitialized) {
|
2014-05-28 18:15:43 +00:00
|
|
|
setThreadLocalMode(TLMode);
|
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
|
|
|
}
|
2014-05-09 14:31:07 +00:00
|
|
|
|
2006-09-30 21:31:26 +00:00
|
|
|
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) {
|
|
|
|
Parent = parent;
|
|
|
|
}
|
|
|
|
|
2004-10-11 22:21:39 +00:00
|
|
|
void GlobalVariable::removeFromParent() {
|
|
|
|
getParent()->getGlobalList().remove(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GlobalVariable::eraseFromParent() {
|
|
|
|
getParent()->getGlobalList().erase(this);
|
|
|
|
}
|
|
|
|
|
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()) {
|
2015-06-12 17:48:10 +00:00
|
|
|
// Note, the num operands is used to compute the offset of the operand, so
|
|
|
|
// the order here matters. Clearing the operand then clearing the num
|
|
|
|
// operands ensures we have the correct offset to the operand.
|
2014-04-09 06:08:46 +00:00
|
|
|
Op<0>().set(nullptr);
|
2015-06-12 17:48:10 +00:00
|
|
|
setGlobalVariableNumOperands(0);
|
2009-11-17 00:43:13 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
assert(InitVal->getType() == getType()->getElementType() &&
|
|
|
|
"Initializer type must match GlobalVariable type");
|
2015-06-12 17:48:10 +00:00
|
|
|
// Note, the num operands is used to compute the offset of the operand, so
|
|
|
|
// the order here matters. We need to set num operands to 1 first so that
|
|
|
|
// we get the correct offset to the first operand when we set it.
|
2009-11-17 00:43:13 +00:00
|
|
|
if (!hasInitializer())
|
2015-06-12 17:48:10 +00:00
|
|
|
setGlobalVariableNumOperands(1);
|
2009-11-17 00:43:13 +00:00
|
|
|
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!");
|
2014-05-13 18:45:48 +00:00
|
|
|
GlobalObject::copyAttributesFrom(Src);
|
2008-05-26 19:58:59 +00:00
|
|
|
const GlobalVariable *SrcVar = cast<GlobalVariable>(Src);
|
2014-02-10 17:13:56 +00:00
|
|
|
setThreadLocalMode(SrcVar->getThreadLocalMode());
|
2014-11-10 18:41:59 +00:00
|
|
|
setExternallyInitialized(SrcVar->isExternallyInitialized());
|
2008-05-26 19:58:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-04-25 14:27:10 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// GlobalAlias Implementation
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2015-04-29 21:22:39 +00:00
|
|
|
GlobalAlias::GlobalAlias(PointerType *Ty, LinkageTypes Link, const Twine &Name,
|
|
|
|
Constant *Aliasee, Module *ParentModule)
|
|
|
|
: GlobalValue(Ty, Value::GlobalAliasVal, &Op<0>(), 1, Link, Name) {
|
2014-05-16 13:34:04 +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);
|
|
|
|
}
|
|
|
|
|
2015-04-29 21:22:39 +00:00
|
|
|
GlobalAlias *GlobalAlias::create(PointerType *Ty, LinkageTypes Link,
|
|
|
|
const Twine &Name, Constant *Aliasee,
|
|
|
|
Module *ParentModule) {
|
|
|
|
return new GlobalAlias(Ty, Link, Name, Aliasee, ParentModule);
|
2014-05-17 21:29:57 +00:00
|
|
|
}
|
|
|
|
|
2015-04-29 21:22:39 +00:00
|
|
|
GlobalAlias *GlobalAlias::create(PointerType *Ty, LinkageTypes Linkage,
|
|
|
|
const Twine &Name, Module *Parent) {
|
|
|
|
return create(Ty, Linkage, Name, nullptr, Parent);
|
2014-05-17 21:29:57 +00:00
|
|
|
}
|
|
|
|
|
2015-04-29 21:22:39 +00:00
|
|
|
GlobalAlias *GlobalAlias::create(PointerType *Ty, LinkageTypes Linkage,
|
|
|
|
const Twine &Name, GlobalValue *Aliasee) {
|
|
|
|
return create(Ty, Linkage, Name, Aliasee, Aliasee->getParent());
|
2014-05-17 21:29:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GlobalAlias *GlobalAlias::create(LinkageTypes Link, const Twine &Name,
|
2014-06-03 02:41:57 +00:00
|
|
|
GlobalValue *Aliasee) {
|
2014-05-17 21:29:57 +00:00
|
|
|
PointerType *PTy = Aliasee->getType();
|
2015-04-29 21:22:39 +00:00
|
|
|
return create(PTy, Link, Name, Aliasee);
|
2014-05-17 21:29:57 +00:00
|
|
|
}
|
|
|
|
|
2014-06-03 02:41:57 +00:00
|
|
|
GlobalAlias *GlobalAlias::create(const Twine &Name, GlobalValue *Aliasee) {
|
2014-05-17 21:29:57 +00:00
|
|
|
return create(Aliasee->getLinkage(), Name, Aliasee);
|
|
|
|
}
|
2014-05-17 19:57:46 +00:00
|
|
|
|
2007-04-25 14:27:10 +00:00
|
|
|
void GlobalAlias::setParent(Module *parent) {
|
|
|
|
Parent = parent;
|
|
|
|
}
|
|
|
|
|
|
|
|
void GlobalAlias::removeFromParent() {
|
|
|
|
getParent()->getAliasList().remove(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GlobalAlias::eraseFromParent() {
|
|
|
|
getParent()->getAliasList().erase(this);
|
|
|
|
}
|
|
|
|
|
2014-06-03 02:41:57 +00:00
|
|
|
void GlobalAlias::setAliasee(Constant *Aliasee) {
|
2014-06-04 11:21:11 +00:00
|
|
|
assert((!Aliasee || Aliasee->getType() == getType()) &&
|
2014-06-03 02:41:57 +00:00
|
|
|
"Alias and aliasee types should match!");
|
|
|
|
setOperand(0, Aliasee);
|
|
|
|
}
|