Home
last modified time | relevance | path

Searched refs:getGlobalVariable (Results 1 – 22 of 22) sorted by relevance

/external/llvm/include/llvm/IR/
DModule.h381 GlobalVariable *getGlobalVariable(StringRef Name) const {
382 return getGlobalVariable(Name, false);
385 GlobalVariable *getGlobalVariable(StringRef Name, bool AllowInternal) const {
386 return const_cast<Module *>(this)->getGlobalVariable(Name, AllowInternal);
389 GlobalVariable *getGlobalVariable(StringRef Name, bool AllowInternal = false);
395 return getGlobalVariable(Name, true);
/external/apache-xml/src/main/java/org/apache/xpath/
DVariableStack.java444 public XObject getGlobalVariable(XPathContext xctxt, final int index) in getGlobalVariable() method in VariableStack
471 public XObject getGlobalVariable(XPathContext xctxt, final int index, boolean destructiveOK) in getGlobalVariable() method in VariableStack
541 return getGlobalVariable(xctxt, vvar.getIndex()); in getVariableOrParam()
/external/llvm/lib/Transforms/IPO/
DConstantMerge.cpp102 FindUsedValues(M.getGlobalVariable("llvm.used"), UsedGlobals); in runOnModule()
103 FindUsedValues(M.getGlobalVariable("llvm.compiler.used"), UsedGlobals); in runOnModule()
DStripSymbols.cpp209 findUsedValues(M.getGlobalVariable("llvm.used"), llvmUsedValues); in StripSymbolNames()
210 findUsedValues(M.getGlobalVariable("llvm.compiler.used"), llvmUsedValues); in StripSymbolNames()
/external/llvm/lib/Transforms/Instrumentation/
DInstrProfiling.cpp275 if (M->getGlobalVariable(RuntimeVarName)) in emitRuntimeHook()
305 GlobalVariable *LLVMUsed = M->getGlobalVariable("llvm.used"); in emitUses()
DGCOVProfiling.cpp813 GlobalVariable *GV = M->getGlobalVariable("__llvm_gcov_global_state_pred"); in getEdgeStateValue()
DAddressSanitizer.cpp1117 GlobalVariable *GV = M.getGlobalVariable("llvm.global_ctors"); in createInitializerPoisonCalls()
/external/llvm/lib/Transforms/ObjCARC/
DObjCARCAPElim.cpp144 GlobalVariable *GV = M.getGlobalVariable("llvm.global_ctors"); in runOnModule()
/external/llvm/lib/Transforms/Utils/
DModuleUtils.cpp85 GlobalVariable *GV = M.getGlobalVariable(Name); in collectUsedGlobalVariables()
DCtorUtils.cpp84 GlobalVariable *GV = M.getGlobalVariable("llvm.global_ctors"); in findGlobalCtors()
DSymbolRewriter.cpp195 &llvm::Module::getGlobalVariable>
219 &llvm::Module::getGlobalVariable,
/external/apache-xml/src/main/java/org/apache/xpath/operations/
DVariable.java214 result = xctxt.getVarStack().getGlobalVariable(xctxt, m_index, destructiveOK); in execute()
/external/clang/lib/CodeGen/
DCGObjCGNU.cpp185 auto *ConstStr = TheModule.getGlobalVariable(name); in ExportUniqueString()
836 llvm::GlobalVariable *ClassSymbol = TheModule.getGlobalVariable(SymbolName); in GetClassNamed()
868 if (TheModule.getGlobalVariable(symbolRef)) in EmitClassRef()
871 llvm::GlobalVariable *ClassSymbol = TheModule.getGlobalVariable(symbolName); in EmitClassRef()
1120 CGM.getModule().getGlobalVariable("__objc_id_type_info"); in GetEHType()
1140 llvm::Constant *typeinfo = TheModule.getGlobalVariable(typeinfoName); in GetEHType()
1150 auto *Vtable = TheModule.getGlobalVariable(vtableName); in GetEHType()
2154 TheModule.getGlobalVariable(classSymbolName)) { in GenerateClass()
2201 llvm::GlobalVariable *OffsetVar = TheModule.getGlobalVariable(OffsetName); in GenerateClass()
2569 TheModule.getGlobalVariable(("_OBJC_CLASS_" + iter->first).c_str(), in ModuleInitFunction()
[all …]
DCGObjCMac.cpp3081 llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name, true); in GenerateClass()
3147 llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name, true); in EmitMetaClass()
3175 llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name, true); in EmitMetaClassRef()
3188 llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name, true); in EmitSuperClassRef()
5890 llvm::GlobalVariable *PTGV = CGM.getModule().getGlobalVariable(ProtocolName); in GenerateProtocolRef()
6069 CGM.getModule().getGlobalVariable(Name); in ObjCIvarOffsetVariable()
6355 CGM.getModule().getGlobalVariable(TmpName.str(), true); in EmitProtocolList()
6535 = CGM.getModule().getGlobalVariable(messageRefName); in EmitVTableMessageSend()
6606 llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name); in GetClassGlobal()
6916 CGM.getModule().getGlobalVariable("OBJC_EHTYPE_id"); in GetEHType()
[all …]
/external/llvm/lib/CodeGen/
DGlobalMerge.cpp248 const GlobalVariable *GV = M.getGlobalVariable("llvm.used"); in collectUsedGlobalVariables()
DShadowStackGCLowering.cpp296 Head = M.getGlobalVariable("llvm_gc_root_chain"); in doInitialization()
DMachineModuleInfo.cpp325 const GlobalVariable *GV = M.getGlobalVariable("llvm.used"); in AnalyzeModule()
/external/llvm/lib/IR/
DModule.cpp203 GlobalVariable *Module::getGlobalVariable(StringRef Name, bool AllowLocal) { in getGlobalVariable() function in Module
/external/llvm/unittests/IR/
DConstantsTest.cpp359 GlobalVariable *G = M->getGlobalVariable("g"); in TEST()
/external/llvm/lib/LTO/
DLTOCodeGenerator.cpp496 mergedModule->getGlobalVariable("llvm.compiler.used"); in applyScopeRestrictions()
/external/llvm/lib/ExecutionEngine/MCJIT/
DMCJIT.cpp286 GlobalVariable *G = M->getGlobalVariable(Name); in findModuleForSymbol()
/external/llvm/examples/ExceptionDemo/
DExceptionDemo.cpp1278 caughtResult->addClause(module.getGlobalVariable( in createCatchWrappedInvokeFunction()