/external/llvm/include/llvm/CodeGen/ |
MachineInstrBuilder.h | 129 const MachineInstrBuilder &addGlobalAddress(const GlobalValue *GV, 132 MI->addOperand(*MF, MachineOperand::CreateGA(GV, Offset, TargetFlags));
|
JITCodeEmitter.h | 73 virtual void *allocIndirectGV(const GlobalValue *GV,
|
/external/llvm/lib/CodeGen/ |
ShadowStackGC.cpp | 248 Constant *GV = new GlobalVariable(*F.getParent(), FrameMap->getType(), true, 256 return ConstantExpr::getGetElementPtr(GV, GEPIndices);
|
/external/llvm/lib/Analysis/ |
ValueTracking.cpp | 274 if (GlobalValue *GV = dyn_cast<GlobalValue>(V)) { 275 unsigned Align = GV->getAlignment(); 277 if (GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV)) { [all...] |
LazyCallGraph.cpp | 114 for (GlobalVariable &GV : M.globals()) 115 if (GV.hasInitializer()) 116 if (Visited.insert(GV.getInitializer())) 117 Worklist.push_back(GV.getInitializer());
|
/external/llvm/include/llvm/Analysis/ |
MemoryBuiltins.h | 203 SizeOffsetType visitGlobalVariable(GlobalVariable &GV);
|
/external/llvm/lib/ExecutionEngine/Interpreter/ |
Interpreter.h | 195 void exitCalled(GenericValue GV);
|
/external/llvm/lib/Target/ARM/ |
ARMConstantPoolValue.h | 51 /// instruction and the constant being loaded, i.e. (&GV-(LPIC+8)). 57 ARMCP::ARMCPModifier Modifier; // GV modifier i.e. (&GV(modifier)-(LPIC+8)) 153 static ARMConstantPoolConstant *Create(const GlobalValue *GV,
|
ARMSubtarget.h | 454 /// GVIsIndirectSymbol - true if the GV will be accessed via an indirect 456 bool GVIsIndirectSymbol(const GlobalValue *GV, Reloc::Model RelocM) const;
|
ARMExpandPseudoInsts.cpp | [all...] |
/external/llvm/lib/Target/NVPTX/ |
NVPTXISelLowering.h | 185 SDValue LowerGlobalAddress(const GlobalValue *GV, int64_t Offset,
|
NVPTXAsmPrinter.h | 211 void EmitAlignment(unsigned NumBits, const GlobalValue *GV = nullptr) const {}
|
/external/llvm/lib/Target/R600/ |
AMDGPUISelLowering.h | 32 SDValue LowerConstantInitializer(const Constant* Init, const GlobalValue *GV,
|
/external/llvm/lib/Target/X86/ |
X86Subtarget.h | 430 unsigned char ClassifyGlobalReference(const GlobalValue *GV,
|
/external/llvm/lib/Target/XCore/ |
XCoreISelLowering.h | 145 SDValue getGlobalAddressWrapper(SDValue GA, const GlobalValue *GV,
|
/external/llvm/lib/Transforms/Scalar/ |
LoopIdiomRecognize.cpp | [all...] |
MemCpyOptimizer.cpp | 836 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(M->getSource())) 837 if (GV->isConstant() && GV->hasDefinitiveInitializer()) 838 if (Value *ByteVal = isBytewiseValue(GV->getInitializer())) { [all...] |
/external/llvm/lib/AsmParser/ |
LLParser.cpp | 838 GlobalVariable *GV = nullptr; 845 GV = cast<GlobalVariable>(GVal); 851 GV = cast<GlobalVariable>(I->second.first); 856 if (!GV) { 857 GV = new GlobalVariable(*M, Ty, false, GlobalValue::ExternalLinkage, nullptr, 861 if (GV->getType()->getElementType() != Ty) 866 M->getGlobalList().splice(M->global_end(), M->getGlobalList(), GV); 870 NumberedVals.push_back(GV); 874 GV->setInitializer(Init); 875 GV->setConstant(IsConstant) [all...] |
/external/llvm/lib/Transforms/InstCombine/ |
InstCombineCompares.cpp | 212 /// cmp pred (load (gep GV, ...)), cmpcst 213 /// where GV is a global variable with a constant initializer. Try to simplify 220 FoldCmpLoadFromIndexedGlobal(GetElementPtrInst *GEP, GlobalVariable *GV, 226 Constant *Init = GV->getInitializer(); 236 // Require: GEP GV, 0, i {{, constant indices}} [all...] |
/external/llvm/lib/Linker/ |
LinkModules.cpp | 315 // @GV = global %T* null 325 // @GV = global %B* null 489 static void forceRenaming(GlobalValue *GV, StringRef Name) { 492 if (GV->hasLocalLinkage() || GV->getName() == Name) 495 Module *M = GV->getParent(); 499 GV->takeName(ConflictGV); 503 GV->setName(Name); // Force the name back [all...] |
/external/llvm/lib/Transforms/Instrumentation/ |
DataFlowSanitizer.cpp | 251 void addGlobalNamePrefix(GlobalValue *GV); 465 void DataFlowSanitizer::addGlobalNamePrefix(GlobalValue *GV) { 466 std::string GVName = GV->getName(), Prefix = "dfs$"; 467 GV->setName(Prefix + GVName); 474 std::string Asm = GV->getParent()->getModuleInlineAsm(); 480 GV->getParent()->setModuleInlineAsm(Asm); [all...] |
ThreadSanitizer.cpp | 244 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Addr)) { 245 if (GV->isConstant()) {
|
/external/clang/lib/CodeGen/ |
CGDebugInfo.cpp | [all...] |
/external/llvm/lib/Bitcode/Reader/ |
BitcodeReader.cpp | 223 static void UpgradeDLLImportExportLinkage(llvm::GlobalValue *GV, unsigned Val) { 225 case 5: GV->setDLLStorageClass(GlobalValue::DLLImportStorageClass); break; 226 case 6: GV->setDLLStorageClass(GlobalValue::DLLExportStorageClass); break; [all...] |
/external/llvm/lib/CodeGen/AsmPrinter/ |
EHStreamer.cpp | 667 const GlobalVariable *GV = *I; 670 Asm->EmitTTypeReference(GV, TTypeEncoding);
|