LLVM API Documentation
#include <GlobalVariable.h>


Definition at line 35 of file GlobalVariable.h.
| NotThreadLocal | |
| GeneralDynamicTLSModel | |
| LocalDynamicTLSModel | |
| InitialExecTLSModel | |
| LocalExecTLSModel |
Definition at line 58 of file GlobalVariable.h.
| GlobalVariable::GlobalVariable | ( | Type * | Ty, |
| bool | isConstant, | ||
| LinkageTypes | Linkage, | ||
| Constant * | Initializer = 0, |
||
| const Twine & | Name = "", |
||
| ThreadLocalMode | TLMode = NotThreadLocal, |
||
| unsigned | AddressSpace = 0, |
||
| bool | isExternallyInitialized = false |
||
| ) |
GlobalVariable ctor - If a parent module is specified, the global is automatically inserted into the end of the specified modules global list.
Definition at line 84 of file Globals.cpp.
References llvm::LeakDetector::addGarbageObject(), and llvm::Value::getType().
| GlobalVariable::GlobalVariable | ( | Module & | M, |
| Type * | Ty, | ||
| bool | isConstant, | ||
| LinkageTypes | Linkage, | ||
| Constant * | Initializer, | ||
| const Twine & | Name = "", |
||
| GlobalVariable * | InsertBefore = 0, |
||
| ThreadLocalMode | TLMode = NotThreadLocal, |
||
| unsigned | AddressSpace = 0, |
||
| bool | isExternallyInitialized = false |
||
| ) |
GlobalVariable ctor - This creates a global and inserts it before the specified other global.
Definition at line 104 of file Globals.cpp.
References llvm::LeakDetector::addGarbageObject(), llvm::Module::getGlobalList(), llvm::GlobalValue::getParent(), and llvm::Value::getType().
| llvm::GlobalVariable::~GlobalVariable | ( | ) | [inline] |
Definition at line 80 of file GlobalVariable.h.
References llvm::User::NumOperands.
Reimplemented from llvm::GlobalValue.
Definition at line 196 of file GlobalVariable.h.
References llvm::Value::getValueID(), and llvm::Value::GlobalVariableVal.
| void GlobalVariable::copyAttributesFrom | ( | const GlobalValue * | Src | ) | [virtual] |
copyAttributesFrom - copy all additional attributes (those not needed to create a GlobalVariable) from the GlobalVariable Src to this one.
Reimplemented from llvm::GlobalValue.
Definition at line 183 of file Globals.cpp.
References isThreadLocal(), and setThreadLocal().
Referenced by llvm::CloneModule(), and INITIALIZE_PASS().
| llvm::GlobalVariable::DECLARE_TRANSPARENT_OPERAND_ACCESSORS | ( | Value | ) |
Provide fast operand accessors.
| void GlobalVariable::eraseFromParent | ( | ) | [virtual] |
eraseFromParent - This method unlinks 'this' from the containing module and deletes it.
Implements llvm::GlobalValue.
Definition at line 142 of file Globals.cpp.
References llvm::Module::getGlobalList(), and llvm::GlobalValue::getParent().
Referenced by INITIALIZE_PASS(), InstallGlobalCtors(), OptimizeAwayTrappingUsesOfLoads(), OptimizeGlobalAddressOfMalloc(), PerformHeapAllocSRoA(), and TryToShrinkGlobalToBoolean().
| const Constant* llvm::GlobalVariable::getInitializer | ( | ) | const [inline] |
getInitializer - Return the initializer for this global variable. It is illegal to call this method if the global is external, because we cannot tell what the value is initialized to!
Definition at line 140 of file GlobalVariable.h.
References hasInitializer().
Referenced by llvm::MachineModuleInfo::AnalyzeModule(), llvm::AsmPrinter::EmitGlobalVariable(), llvm::ExecutionEngine::EmitGlobalVariable(), llvm::AsmPrinter::EmitSpecialLLVMGlobal(), llvm::ExtractTypeInfo(), FindUsedValues(), findUsedValues(), llvm::InstCombiner::FoldCmpLoadFromIndexedGlobal(), FoldReinterpretLoadFromConstPtr(), llvm::getConstantStringInfo(), llvm::TargetLoweringObjectFile::getKindForGlobal(), INITIALIZE_PASS(), InstallGlobalCtors(), isSimpleEnoughPointerToCommit(), isSuitableForBSS(), LLVMGetInitializer(), OptimizeOnceStoredGlobal(), ParseGlobalCtors(), llvm::AssemblyWriter::printGlobal(), llvm::ExecutionEngine::runStaticConstructorsDestructors(), SRAGlobal(), and TryToShrinkGlobalToBoolean().
| Constant* llvm::GlobalVariable::getInitializer | ( | ) | [inline] |
Definition at line 144 of file GlobalVariable.h.
References hasInitializer().
| ThreadLocalMode llvm::GlobalVariable::getThreadLocalMode | ( | ) | const [inline] |
Definition at line 166 of file GlobalVariable.h.
Referenced by getEncodedThreadLocalMode(), getSelectedTLSModel(), INITIALIZE_PASS(), InstallGlobalCtors(), OptimizeGlobalAddressOfMalloc(), PerformHeapAllocSRoA(), llvm::AssemblyWriter::printGlobal(), SRAGlobal(), and TryToShrinkGlobalToBoolean().
| bool llvm::GlobalVariable::hasDefinitiveInitializer | ( | ) | const [inline] |
hasDefinitiveInitializer - Whether the global variable has an initializer, and any other instances of the global (this can happen due to weak linkage) are guaranteed to have the same initializer.
Note that if you want to transform a global, you must use hasUniqueInitializer() instead, because of the *_odr linkage type.
Example:
= global SomeType* null - Initializer is both definitive and unique.
= global weak SomeType* null - Initializer is neither definitive nor unique.
= global weak_odr SomeType* null - Initializer is definitive, but not unique.
Definition at line 109 of file GlobalVariable.h.
References hasInitializer(), isExternallyInitialized(), and llvm::GlobalValue::mayBeOverridden().
Referenced by FoldReinterpretLoadFromConstPtr(), llvm::getConstantStringInfo(), and llvm::ObjectSizeOffsetVisitor::visitGlobalVariable().
| bool llvm::GlobalVariable::hasInitializer | ( | ) | const [inline] |
hasInitializer - Unless a global variable isExternal(), it has an initializer. The initializer for the global variable/constant is held by Initializer if an initializer is specified.
Definition at line 91 of file GlobalVariable.h.
References llvm::GlobalValue::isDeclaration().
Referenced by llvm::MachineModuleInfo::AnalyzeModule(), CommitValueTo(), llvm::AsmPrinter::EmitGlobalVariable(), llvm::AsmPrinter::EmitSpecialLLVMGlobal(), llvm::ExtractTypeInfo(), getInitializer(), llvm::DataLayout::getPreferredAlignment(), hasDefinitiveInitializer(), hasUniqueInitializer(), INITIALIZE_PASS(), LLVMGetInitializer(), llvm::AssemblyWriter::printGlobal(), and setInitializer().
| bool llvm::GlobalVariable::hasUniqueInitializer | ( | ) | const [inline] |
hasUniqueInitializer - Whether the global variable has an initializer, and any changes made to the initializer will turn up in the final executable.
Definition at line 121 of file GlobalVariable.h.
References hasInitializer(), isExternallyInitialized(), and llvm::GlobalValue::isWeakForLinker().
Referenced by isSimpleEnoughPointerToCommit().
| bool llvm::GlobalVariable::isConstant | ( | ) | const [inline] |
If the value is a global constant, its value is immutable throughout the runtime execution of the program. Assigning a value into the constant leads to undefined behavior.
Definition at line 157 of file GlobalVariable.h.
Referenced by AnalyzeLoadFromClobberingMemInst(), CleanupPointerRootUsers(), FoldReinterpretLoadFromConstPtr(), llvm::getConstantStringInfo(), llvm::TargetLoweringObjectFile::getKindForGlobal(), llvm::JIT::getMemoryForGV(), INITIALIZE_PASS(), InstallGlobalCtors(), isSuitableForBSS(), llvm::AssemblyWriter::printGlobal(), and SRAGlobal().
| bool llvm::GlobalVariable::isExternallyInitialized | ( | ) | const [inline] |
Definition at line 170 of file GlobalVariable.h.
Referenced by hasDefinitiveInitializer(), hasUniqueInitializer(), and llvm::AssemblyWriter::printGlobal().
| bool llvm::GlobalVariable::isThreadLocal | ( | ) | const [inline] |
If the value is "Thread Local", its value isn't shared by the threads.
Definition at line 161 of file GlobalVariable.h.
References NotThreadLocal.
Referenced by copyAttributesFrom(), llvm::ExecutionEngine::EmitGlobalVariable(), llvm::SelectionDAG::getGlobalAddress(), llvm::TargetLoweringObjectFile::getKindForGlobal(), and llvm::JIT::getMemoryForGV().
| void* llvm::GlobalVariable::operator new | ( | size_t | s | ) | [inline] |
Reimplemented from llvm::User.
Definition at line 54 of file GlobalVariable.h.
References operator new().
| void GlobalVariable::removeFromParent | ( | ) | [virtual] |
removeFromParent - This method unlinks 'this' from the containing module, but does not delete it.
Implements llvm::GlobalValue.
Definition at line 138 of file Globals.cpp.
References llvm::Module::getGlobalList(), and llvm::GlobalValue::getParent().
Override Constant's implementation of this method so we can replace constant initializers.
Reimplemented from llvm::Constant.
Definition at line 146 of file Globals.cpp.
References llvm::User::getNumOperands(), llvm::User::getOperand(), and llvm::User::setOperand().
| void llvm::GlobalVariable::setConstant | ( | bool | Val | ) | [inline] |
Definition at line 158 of file GlobalVariable.h.
| void llvm::GlobalVariable::setExternallyInitialized | ( | bool | Val | ) | [inline] |
Definition at line 173 of file GlobalVariable.h.
| void GlobalVariable::setInitializer | ( | Constant * | InitVal | ) |
setInitializer - Sets the initializer for this global variable, removing any existing initializer if InitVal==NULL. If this GV has type T*, the initializer must have type T.
Definition at line 166 of file Globals.cpp.
References llvm::SequentialType::getElementType(), llvm::Value::getType(), llvm::GlobalValue::getType(), hasInitializer(), and llvm::User::NumOperands.
Referenced by llvm::CloneModule(), CommitValueTo(), llvm::InsertProfilingShutdownCall(), and InstallGlobalCtors().
| void llvm::GlobalVariable::setThreadLocal | ( | bool | Val | ) | [inline] |
Definition at line 162 of file GlobalVariable.h.
References GeneralDynamicTLSModel, and NotThreadLocal.
Referenced by copyAttributesFrom().
| void llvm::GlobalVariable::setThreadLocalMode | ( | ThreadLocalMode | Val | ) | [inline] |
Definition at line 165 of file GlobalVariable.h.
Referenced by LLVMSetThreadLocalMode().
friend class SymbolTableListTraits< GlobalVariable, Module > [friend] |
Definition at line 36 of file GlobalVariable.h.