2006-01-24 12:13:11 +08:00
|
|
|
//===-- Globals.cpp - Implement the GlobalValue & GlobalVariable class ----===//
|
2005-04-22 07:48:37 +08:00
|
|
|
//
|
2004-07-18 08:06:26 +08:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-30 04:36:04 +08:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-22 07:48:37 +08:00
|
|
|
//
|
2004-07-18 08:06:26 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2013-01-02 17:10:48 +08:00
|
|
|
// This file implements the GlobalValue & GlobalVariable classes for the IR
|
2004-07-18 08:06:26 +08:00
|
|
|
// library.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2012-12-04 00:50:05 +08:00
|
|
|
#include "llvm/ADT/SmallPtrSet.h"
|
2016-01-16 00:33:06 +08:00
|
|
|
#include "llvm/ADT/Triple.h"
|
2013-01-02 19:36:10 +08:00
|
|
|
#include "llvm/IR/Constants.h"
|
|
|
|
#include "llvm/IR/DerivedTypes.h"
|
|
|
|
#include "llvm/IR/GlobalAlias.h"
|
2016-01-16 00:33:06 +08:00
|
|
|
#include "llvm/IR/GlobalValue.h"
|
2013-01-02 19:36:10 +08:00
|
|
|
#include "llvm/IR/GlobalVariable.h"
|
|
|
|
#include "llvm/IR/Module.h"
|
2014-06-03 10:41:57 +08:00
|
|
|
#include "llvm/IR/Operator.h"
|
2009-07-09 02:01:40 +08:00
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
2004-07-18 08:06:26 +08:00
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// GlobalValue Class
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2010-01-28 04:34:15 +08:00
|
|
|
bool GlobalValue::isMaterializable() const {
|
2014-10-25 02:13:04 +08:00
|
|
|
if (const Function *F = dyn_cast<Function>(this))
|
|
|
|
return F->isMaterializable();
|
|
|
|
return false;
|
2010-01-28 04:34:15 +08:00
|
|
|
}
|
2014-10-25 06:50:48 +08:00
|
|
|
std::error_code GlobalValue::materialize() {
|
|
|
|
return getParent()->materialize(this);
|
2010-01-28 04:34:15 +08:00
|
|
|
}
|
|
|
|
|
2015-06-24 05:55:11 +08:00
|
|
|
/// Override destroyConstantImpl to make sure it doesn't get called on
|
2004-07-18 08:06:26 +08:00
|
|
|
/// GlobalValue's because they shouldn't be treated like other constants.
|
2015-06-24 05:55:11 +08:00
|
|
|
void GlobalValue::destroyConstantImpl() {
|
|
|
|
llvm_unreachable("You can't GV->destroyConstantImpl()!");
|
2004-07-18 08:06:26 +08:00
|
|
|
}
|
2008-05-27 03:58:59 +08:00
|
|
|
|
2016-02-11 06:47:15 +08:00
|
|
|
Value *GlobalValue::handleOperandChangeImpl(Value *From, Value *To) {
|
2015-06-25 02:55:24 +08:00
|
|
|
llvm_unreachable("Unsupported class for handleOperandChange()!");
|
2015-06-24 08:05:07 +08:00
|
|
|
}
|
|
|
|
|
2008-05-27 03:58:59 +08: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.
llvm-svn: 134829
2011-07-10 01:41:24 +08:00
|
|
|
setUnnamedAddr(Src->hasUnnamedAddr());
|
2014-02-13 13:11:35 +08:00
|
|
|
setDLLStorageClass(Src->getDLLStorageClass());
|
2008-05-27 03:58:59 +08:00
|
|
|
}
|
|
|
|
|
2014-06-03 10:41:57 +08: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-28 02:19:56 +08:00
|
|
|
if (const GlobalObject *GO = GA->getBaseObject())
|
2014-06-03 10:41:57 +08:00
|
|
|
return GO->getAlignment();
|
|
|
|
|
|
|
|
// FIXME: we should also be able to handle:
|
|
|
|
// Alias = Global + Offset
|
|
|
|
// Alias = Absolute
|
|
|
|
return 0;
|
|
|
|
}
|
2014-05-14 02:45:48 +08:00
|
|
|
return cast<GlobalObject>(this)->getAlignment();
|
2014-05-07 00:48:58 +08:00
|
|
|
}
|
|
|
|
|
2014-05-14 02:45:48 +08:00
|
|
|
void GlobalObject::setAlignment(unsigned Align) {
|
2010-07-29 04:56:48 +08:00
|
|
|
assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
|
|
|
|
assert(Align <= MaximumAlignment &&
|
|
|
|
"Alignment is greater than MaximumAlignment!");
|
2014-10-25 02:13:04 +08:00
|
|
|
unsigned AlignmentData = Log2_32(Align) + 1;
|
|
|
|
unsigned OldData = getGlobalValueSubClassData();
|
|
|
|
setGlobalValueSubClassData((OldData & ~AlignmentMask) | AlignmentData);
|
2010-07-29 04:56:48 +08:00
|
|
|
assert(getAlignment() == Align && "Alignment representation error!");
|
|
|
|
}
|
2011-07-15 02:10:41 +08:00
|
|
|
|
2014-10-25 02:13:04 +08: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-14 02:45:48 +08:00
|
|
|
void GlobalObject::copyAttributesFrom(const GlobalValue *Src) {
|
2015-12-03 04:03:17 +08:00
|
|
|
GlobalValue::copyAttributesFrom(Src);
|
|
|
|
if (const auto *GV = dyn_cast<GlobalObject>(Src)) {
|
|
|
|
setAlignment(GV->getAlignment());
|
|
|
|
setSection(GV->getSection());
|
|
|
|
}
|
2014-05-14 02:45:48 +08:00
|
|
|
}
|
|
|
|
|
2016-03-15 10:13:19 +08:00
|
|
|
std::string GlobalValue::getGlobalIdentifier(StringRef Name,
|
|
|
|
GlobalValue::LinkageTypes Linkage,
|
|
|
|
StringRef FileName) {
|
|
|
|
|
|
|
|
// Value names may be prefixed with a binary '1' to indicate
|
|
|
|
// that the backend should not modify the symbols due to any platform
|
|
|
|
// naming convention. Do not include that '1' in the PGO profile name.
|
|
|
|
if (Name[0] == '\1')
|
|
|
|
Name = Name.substr(1);
|
|
|
|
|
|
|
|
std::string NewName = Name;
|
|
|
|
if (llvm::GlobalValue::isLocalLinkage(Linkage)) {
|
|
|
|
// For local symbols, prepend the main file name to distinguish them.
|
|
|
|
// Do not include the full path in the file name since there's no guarantee
|
|
|
|
// that it will stay the same, e.g., if the files are checked out from
|
|
|
|
// version control in different locations.
|
|
|
|
if (FileName.empty())
|
|
|
|
NewName = NewName.insert(0, "<unknown>:");
|
|
|
|
else
|
|
|
|
NewName = NewName.insert(0, FileName.str() + ":");
|
|
|
|
}
|
|
|
|
return NewName;
|
|
|
|
}
|
|
|
|
|
2016-04-02 13:25:27 +08:00
|
|
|
std::string GlobalValue::getGlobalIdentifier() const {
|
2016-03-25 13:57:41 +08:00
|
|
|
return getGlobalIdentifier(getName(), getLinkage(),
|
|
|
|
getParent()->getSourceFileName());
|
|
|
|
}
|
|
|
|
|
2014-06-03 10:41:57 +08: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-28 02:19:56 +08:00
|
|
|
if (const GlobalObject *GO = GA->getBaseObject())
|
2014-06-03 10:41:57 +08:00
|
|
|
return GO->getSection();
|
|
|
|
return "";
|
|
|
|
}
|
2014-05-14 02:45:48 +08:00
|
|
|
return cast<GlobalObject>(this)->getSection();
|
2014-05-07 06:44:30 +08:00
|
|
|
}
|
|
|
|
|
2014-06-28 02:19:56 +08: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;
|
|
|
|
}
|
2016-04-07 20:32:19 +08:00
|
|
|
// ifunc and its resolver are separate things so don't use resolver comdat.
|
|
|
|
if (isa<GlobalIFunc>(this))
|
|
|
|
return nullptr;
|
2014-06-28 02:19:56 +08:00
|
|
|
return cast<GlobalObject>(this)->getComdat();
|
|
|
|
}
|
|
|
|
|
2014-05-14 02:45:48 +08:00
|
|
|
void GlobalObject::setSection(StringRef S) { Section = S; }
|
2014-05-06 22:59:14 +08:00
|
|
|
|
2011-07-15 02:10:41 +08:00
|
|
|
bool GlobalValue::isDeclaration() const {
|
2011-07-15 02:12:44 +08:00
|
|
|
// Globals are definitions if they have an initializer.
|
2011-07-15 02:10:41 +08:00
|
|
|
if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(this))
|
|
|
|
return GV->getNumOperands() == 0;
|
|
|
|
|
2011-07-15 02:12:44 +08:00
|
|
|
// Functions are definitions if they have a body.
|
2011-07-15 02:10:41 +08:00
|
|
|
if (const Function *F = dyn_cast<Function>(this))
|
2014-10-25 02:13:04 +08:00
|
|
|
return F->empty() && !F->isMaterializable();
|
2011-07-15 02:12:44 +08:00
|
|
|
|
2016-04-05 16:47:51 +08:00
|
|
|
// Aliases and ifuncs are always definitions.
|
|
|
|
assert(isa<GlobalIndirectSymbol>(this));
|
2011-07-15 02:10:41 +08:00
|
|
|
return false;
|
|
|
|
}
|
2014-05-09 22:31:07 +08:00
|
|
|
|
2016-01-16 00:33:06 +08:00
|
|
|
bool GlobalValue::canIncreaseAlignment() const {
|
|
|
|
// Firstly, can only increase the alignment of a global if it
|
|
|
|
// is a strong definition.
|
|
|
|
if (!isStrongDefinitionForLinker())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// It also has to either not have a section defined, or, not have
|
|
|
|
// alignment specified. (If it is assigned a section, the global
|
|
|
|
// could be densely packed with other objects in the section, and
|
|
|
|
// increasing the alignment could cause padding issues.)
|
|
|
|
if (hasSection() && getAlignment() > 0)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// On ELF platforms, we're further restricted in that we can't
|
|
|
|
// increase the alignment of any variable which might be emitted
|
|
|
|
// into a shared library, and which is exported. If the main
|
|
|
|
// executable accesses a variable found in a shared-lib, the main
|
|
|
|
// exe actually allocates memory for and exports the symbol ITSELF,
|
|
|
|
// overriding the symbol found in the library. That is, at link
|
|
|
|
// time, the observed alignment of the variable is copied into the
|
|
|
|
// executable binary. (A COPY relocation is also generated, to copy
|
|
|
|
// the initial data from the shadowed variable in the shared-lib
|
|
|
|
// into the location in the main binary, before running code.)
|
|
|
|
//
|
|
|
|
// And thus, even though you might think you are defining the
|
|
|
|
// global, and allocating the memory for the global in your object
|
|
|
|
// file, and thus should be able to set the alignment arbitrarily,
|
|
|
|
// that's not actually true. Doing so can cause an ABI breakage; an
|
|
|
|
// executable might have already been built with the previous
|
|
|
|
// alignment of the variable, and then assuming an increased
|
|
|
|
// alignment will be incorrect.
|
|
|
|
|
|
|
|
// Conservatively assume ELF if there's no parent pointer.
|
|
|
|
bool isELF =
|
|
|
|
(!Parent || Triple(Parent->getTargetTriple()).isOSBinFormatELF());
|
|
|
|
if (isELF && hasDefaultVisibility() && !hasLocalLinkage())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2004-07-18 08:06:26 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// GlobalVariable Implementation
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2012-06-23 19:37:03 +08:00
|
|
|
GlobalVariable::GlobalVariable(Type *Ty, bool constant, LinkageTypes Link,
|
2014-05-09 23:49:02 +08:00
|
|
|
Constant *InitVal, const Twine &Name,
|
|
|
|
ThreadLocalMode TLMode, unsigned AddressSpace,
|
2013-02-04 05:54:38 +08:00
|
|
|
bool isExternallyInitialized)
|
2015-08-22 05:35:28 +08:00
|
|
|
: GlobalObject(Ty, Value::GlobalVariableVal,
|
2014-05-14 02:45:48 +08:00
|
|
|
OperandTraits<GlobalVariable>::op_begin(this),
|
2015-08-22 05:35:28 +08:00
|
|
|
InitVal != nullptr, Link, Name, AddressSpace),
|
2014-05-29 02:15:43 +08:00
|
|
|
isConstantGlobal(constant),
|
2014-05-09 23:49:02 +08:00
|
|
|
isExternallyInitializedConstant(isExternallyInitialized) {
|
2014-05-29 02:15:43 +08:00
|
|
|
setThreadLocalMode(TLMode);
|
2012-06-23 19:37:03 +08: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 23:49:02 +08:00
|
|
|
const Twine &Name, GlobalVariable *Before,
|
|
|
|
ThreadLocalMode TLMode, unsigned AddressSpace,
|
2013-02-04 05:54:38 +08:00
|
|
|
bool isExternallyInitialized)
|
2015-08-22 05:35:28 +08:00
|
|
|
: GlobalObject(Ty, Value::GlobalVariableVal,
|
2014-05-14 02:45:48 +08:00
|
|
|
OperandTraits<GlobalVariable>::op_begin(this),
|
2015-08-22 05:35:28 +08:00
|
|
|
InitVal != nullptr, Link, Name, AddressSpace),
|
2014-05-29 02:15:43 +08:00
|
|
|
isConstantGlobal(constant),
|
2014-05-09 23:49:02 +08:00
|
|
|
isExternallyInitializedConstant(isExternallyInitialized) {
|
2014-05-29 02:15:43 +08:00
|
|
|
setThreadLocalMode(TLMode);
|
2006-10-01 05:31:26 +08:00
|
|
|
if (InitVal) {
|
|
|
|
assert(InitVal->getType() == Ty &&
|
|
|
|
"Initializer should be the same type as the GlobalVariable!");
|
2008-05-27 05:33:52 +08:00
|
|
|
Op<0>() = InitVal;
|
2006-10-01 05:31:26 +08:00
|
|
|
}
|
2014-05-09 22:31:07 +08:00
|
|
|
|
2006-10-01 05:31:26 +08:00
|
|
|
if (Before)
|
2015-10-09 07:49:46 +08:00
|
|
|
Before->getParent()->getGlobalList().insert(Before->getIterator(), this);
|
2009-07-09 03:03:57 +08:00
|
|
|
else
|
|
|
|
M.getGlobalList().push_back(this);
|
2006-10-01 05:31:26 +08:00
|
|
|
}
|
|
|
|
|
2004-07-18 08:06:26 +08:00
|
|
|
void GlobalVariable::setParent(Module *parent) {
|
|
|
|
Parent = parent;
|
|
|
|
}
|
|
|
|
|
2004-10-12 06:21:39 +08:00
|
|
|
void GlobalVariable::removeFromParent() {
|
2015-10-09 07:49:46 +08:00
|
|
|
getParent()->getGlobalList().remove(getIterator());
|
2004-10-12 06:21:39 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void GlobalVariable::eraseFromParent() {
|
2015-10-09 07:49:46 +08:00
|
|
|
getParent()->getGlobalList().erase(getIterator());
|
2004-10-12 06:21:39 +08:00
|
|
|
}
|
|
|
|
|
2009-11-17 08:43:13 +08:00
|
|
|
void GlobalVariable::setInitializer(Constant *InitVal) {
|
2014-04-09 14:08:46 +08:00
|
|
|
if (!InitVal) {
|
2009-11-17 08:43:13 +08:00
|
|
|
if (hasInitializer()) {
|
2015-06-13 01:48:10 +08: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 14:08:46 +08:00
|
|
|
Op<0>().set(nullptr);
|
2015-06-13 01:48:10 +08:00
|
|
|
setGlobalVariableNumOperands(0);
|
2009-11-17 08:43:13 +08:00
|
|
|
}
|
|
|
|
} else {
|
2016-01-17 04:30:46 +08:00
|
|
|
assert(InitVal->getType() == getValueType() &&
|
2009-11-17 08:43:13 +08:00
|
|
|
"Initializer type must match GlobalVariable type");
|
2015-06-13 01:48:10 +08: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 08:43:13 +08:00
|
|
|
if (!hasInitializer())
|
2015-06-13 01:48:10 +08:00
|
|
|
setGlobalVariableNumOperands(1);
|
2009-11-17 08:43:13 +08:00
|
|
|
Op<0>().set(InitVal);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-03 04:03:17 +08:00
|
|
|
/// Copy all additional attributes (those not needed to create a GlobalVariable)
|
|
|
|
/// from the GlobalVariable Src to this one.
|
2008-05-27 03:58:59 +08:00
|
|
|
void GlobalVariable::copyAttributesFrom(const GlobalValue *Src) {
|
2014-05-14 02:45:48 +08:00
|
|
|
GlobalObject::copyAttributesFrom(Src);
|
2015-12-03 04:03:17 +08:00
|
|
|
if (const GlobalVariable *SrcVar = dyn_cast<GlobalVariable>(Src)) {
|
|
|
|
setThreadLocalMode(SrcVar->getThreadLocalMode());
|
|
|
|
setExternallyInitialized(SrcVar->isExternallyInitialized());
|
|
|
|
}
|
2008-05-27 03:58:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-03-31 22:16:21 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// GlobalIndirectSymbol Implementation
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
GlobalIndirectSymbol::GlobalIndirectSymbol(Type *Ty, ValueTy VTy,
|
|
|
|
unsigned AddressSpace, LinkageTypes Linkage, const Twine &Name,
|
|
|
|
Constant *Symbol)
|
|
|
|
: GlobalValue(Ty, VTy, &Op<0>(), 1, Linkage, Name, AddressSpace) {
|
|
|
|
Op<0>() = Symbol;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-04-25 22:27:10 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// GlobalAlias Implementation
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2015-09-15 02:01:59 +08:00
|
|
|
GlobalAlias::GlobalAlias(Type *Ty, unsigned AddressSpace, LinkageTypes Link,
|
|
|
|
const Twine &Name, Constant *Aliasee,
|
|
|
|
Module *ParentModule)
|
2016-03-31 22:16:21 +08:00
|
|
|
: GlobalIndirectSymbol(Ty, Value::GlobalAliasVal, AddressSpace, Link, Name,
|
|
|
|
Aliasee) {
|
2007-04-25 22:27:10 +08:00
|
|
|
if (ParentModule)
|
|
|
|
ParentModule->getAliasList().push_back(this);
|
|
|
|
}
|
|
|
|
|
2015-09-15 02:01:59 +08:00
|
|
|
GlobalAlias *GlobalAlias::create(Type *Ty, unsigned AddressSpace,
|
|
|
|
LinkageTypes Link, const Twine &Name,
|
|
|
|
Constant *Aliasee, Module *ParentModule) {
|
|
|
|
return new GlobalAlias(Ty, AddressSpace, Link, Name, Aliasee, ParentModule);
|
2014-05-18 05:29:57 +08:00
|
|
|
}
|
|
|
|
|
2015-09-15 02:01:59 +08:00
|
|
|
GlobalAlias *GlobalAlias::create(Type *Ty, unsigned AddressSpace,
|
|
|
|
LinkageTypes Linkage, const Twine &Name,
|
|
|
|
Module *Parent) {
|
|
|
|
return create(Ty, AddressSpace, Linkage, Name, nullptr, Parent);
|
2014-05-18 05:29:57 +08:00
|
|
|
}
|
|
|
|
|
2015-09-15 02:01:59 +08:00
|
|
|
GlobalAlias *GlobalAlias::create(Type *Ty, unsigned AddressSpace,
|
|
|
|
LinkageTypes Linkage, const Twine &Name,
|
|
|
|
GlobalValue *Aliasee) {
|
|
|
|
return create(Ty, AddressSpace, Linkage, Name, Aliasee, Aliasee->getParent());
|
2014-05-18 05:29:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
GlobalAlias *GlobalAlias::create(LinkageTypes Link, const Twine &Name,
|
2014-06-03 10:41:57 +08:00
|
|
|
GlobalValue *Aliasee) {
|
2014-05-18 05:29:57 +08:00
|
|
|
PointerType *PTy = Aliasee->getType();
|
2015-09-15 02:01:59 +08:00
|
|
|
return create(PTy->getElementType(), PTy->getAddressSpace(), Link, Name,
|
|
|
|
Aliasee);
|
2014-05-18 05:29:57 +08:00
|
|
|
}
|
|
|
|
|
2014-06-03 10:41:57 +08:00
|
|
|
GlobalAlias *GlobalAlias::create(const Twine &Name, GlobalValue *Aliasee) {
|
2014-05-18 05:29:57 +08:00
|
|
|
return create(Aliasee->getLinkage(), Name, Aliasee);
|
|
|
|
}
|
2014-05-18 03:57:46 +08:00
|
|
|
|
2007-04-25 22:27:10 +08:00
|
|
|
void GlobalAlias::setParent(Module *parent) {
|
|
|
|
Parent = parent;
|
|
|
|
}
|
|
|
|
|
|
|
|
void GlobalAlias::removeFromParent() {
|
2015-10-09 07:49:46 +08:00
|
|
|
getParent()->getAliasList().remove(getIterator());
|
2007-04-25 22:27:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void GlobalAlias::eraseFromParent() {
|
2015-10-09 07:49:46 +08:00
|
|
|
getParent()->getAliasList().erase(getIterator());
|
2007-04-25 22:27:10 +08:00
|
|
|
}
|
|
|
|
|
2014-06-03 10:41:57 +08:00
|
|
|
void GlobalAlias::setAliasee(Constant *Aliasee) {
|
2014-06-04 19:21:11 +08:00
|
|
|
assert((!Aliasee || Aliasee->getType() == getType()) &&
|
2014-06-03 10:41:57 +08:00
|
|
|
"Alias and aliasee types should match!");
|
2016-03-31 22:16:21 +08:00
|
|
|
setIndirectSymbol(Aliasee);
|
2014-06-03 10:41:57 +08:00
|
|
|
}
|
2016-04-07 20:32:19 +08:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// GlobalIFunc Implementation
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
GlobalIFunc::GlobalIFunc(Type *Ty, unsigned AddressSpace, LinkageTypes Link,
|
|
|
|
const Twine &Name, Constant *Resolver,
|
|
|
|
Module *ParentModule)
|
|
|
|
: GlobalIndirectSymbol(Ty, Value::GlobalIFuncVal, AddressSpace, Link, Name,
|
|
|
|
Resolver) {
|
|
|
|
if (ParentModule)
|
|
|
|
ParentModule->getIFuncList().push_back(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
GlobalIFunc *GlobalIFunc::create(Type *Ty, unsigned AddressSpace,
|
|
|
|
LinkageTypes Link, const Twine &Name,
|
|
|
|
Constant *Resolver, Module *ParentModule) {
|
|
|
|
return new GlobalIFunc(Ty, AddressSpace, Link, Name, Resolver, ParentModule);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GlobalIFunc::setParent(Module *parent) {
|
|
|
|
Parent = parent;
|
|
|
|
}
|
|
|
|
|
|
|
|
void GlobalIFunc::removeFromParent() {
|
|
|
|
getParent()->getIFuncList().remove(getIterator());
|
|
|
|
}
|
|
|
|
|
|
|
|
void GlobalIFunc::eraseFromParent() {
|
|
|
|
getParent()->getIFuncList().erase(getIterator());
|
|
|
|
}
|