Home
last modified time | relevance | path

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

/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/include/llvm/IR/
DModule.h360 const GlobalVariable *getGlobalVariable(StringRef Name,
362 return const_cast<Module *>(this)->getGlobalVariable(Name, AllowInternal);
365 GlobalVariable *getGlobalVariable(StringRef Name, bool AllowInternal = false);
371 return getGlobalVariable(Name, true);
/external/llvm/lib/Transforms/IPO/
DConstantMerge.cpp111 FindUsedValues(M.getGlobalVariable("llvm.used"), UsedGlobals); in runOnModule()
112 FindUsedValues(M.getGlobalVariable("llvm.compiler.used"), UsedGlobals); in runOnModule()
DStripSymbols.cpp210 findUsedValues(M.getGlobalVariable("llvm.used"), llvmUsedValues); in StripSymbolNames()
211 findUsedValues(M.getGlobalVariable("llvm.compiler.used"), llvmUsedValues); in StripSymbolNames()
/external/llvm/lib/Transforms/Utils/
DModuleUtils.cpp84 GlobalVariable *GV = M.getGlobalVariable(Name); in collectUsedGlobalVariables()
DCtorUtils.cpp101 GlobalVariable *GV = M.getGlobalVariable("llvm.global_ctors"); in findGlobalCtors()
/external/llvm/lib/Transforms/ObjCARC/
DObjCARCAPElim.cpp144 GlobalVariable *GV = M.getGlobalVariable("llvm.global_ctors"); in runOnModule()
DObjCARCOpts.cpp920 if (nullptr == (PtrName = M->getGlobalVariable(Tmp, true))) { in GenerateARCBBEntranceAnnotation()
929 if (nullptr == (S = M->getGlobalVariable(SeqStr, true))) { in GenerateARCBBEntranceAnnotation()
963 if (nullptr == (PtrName = M->getGlobalVariable(Tmp, true))) { in GenerateARCBBTerminatorAnnotation()
972 if (nullptr == (S = M->getGlobalVariable(SeqStr, true))) { in GenerateARCBBTerminatorAnnotation()
/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.cpp184 llvm::Constant *ConstStr = TheModule.getGlobalVariable(name); in ExportUniqueString()
833 llvm::GlobalVariable *ClassSymbol = TheModule.getGlobalVariable(SymbolName); in GetClassNamed()
865 if (TheModule.getGlobalVariable(symbolRef)) in EmitClassRef()
868 llvm::GlobalVariable *ClassSymbol = TheModule.getGlobalVariable(symbolName); in EmitClassRef()
1116 CGM.getModule().getGlobalVariable("__objc_id_type_info"); in GetEHType()
1136 llvm::Constant *typeinfo = TheModule.getGlobalVariable(typeinfoName); in GetEHType()
1146 llvm::Constant *Vtable = TheModule.getGlobalVariable(vtableName); in GetEHType()
2148 TheModule.getGlobalVariable(classSymbolName)) { in GenerateClass()
2195 llvm::GlobalVariable *OffsetVar = TheModule.getGlobalVariable(OffsetName); in GenerateClass()
2562 TheModule.getGlobalVariable(("_OBJC_CLASS_" + iter->first).c_str(), in ModuleInitFunction()
[all …]
DCGObjCMac.cpp3109 llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name, true); in GenerateClass()
3177 llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name, true); in EmitMetaClass()
3206 llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name, true); in EmitMetaClassRef()
3220 llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name, true); in EmitSuperClassRef()
5931 llvm::GlobalVariable *PTGV = CGM.getModule().getGlobalVariable(ProtocolName); in GenerateProtocolRef()
6099 CGM.getModule().getGlobalVariable(Name); in ObjCIvarOffsetVariable()
6382 CGM.getModule().getGlobalVariable(TmpName.str(), true); in EmitProtocolList()
6563 = CGM.getModule().getGlobalVariable(messageRefName); in EmitVTableMessageSend()
6633 llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name); in GetClassGlobal()
6949 CGM.getModule().getGlobalVariable("OBJC_EHTYPE_id"); in GetEHType()
[all …]
DCodeGenPGO.cpp784 if (CGM.getModule().getGlobalVariable(RuntimeVarName)) in emitRuntimeHook()
/external/llvm/lib/CodeGen/
DGlobalMerge.cpp243 const GlobalVariable *GV = M.getGlobalVariable("llvm.used"); in collectUsedGlobalVariables()
DShadowStackGC.cpp300 Head = M.getGlobalVariable("llvm_gc_root_chain"); in initializeCustomLowering()
DMachineModuleInfo.cpp324 const GlobalVariable *GV = M.getGlobalVariable("llvm.used"); in AnalyzeModule()
/external/llvm/lib/IR/
DModule.cpp185 GlobalVariable *Module::getGlobalVariable(StringRef Name, bool AllowLocal) { in getGlobalVariable() function in Module
/external/llvm/lib/LTO/
DLTOCodeGenerator.cpp411 mergedModule->getGlobalVariable("llvm.compiler.used"); in applyScopeRestrictions()
/external/llvm/lib/ExecutionEngine/MCJIT/
DMCJIT.cpp282 GlobalVariable *G = M->getGlobalVariable(Name); in findModuleForSymbol()
/external/llvm/lib/Transforms/Instrumentation/
DGCOVProfiling.cpp814 GlobalVariable *GV = M->getGlobalVariable("__llvm_gcov_global_state_pred"); in getEdgeStateValue()
DAddressSanitizer.cpp899 GlobalVariable *GV = M.getGlobalVariable("llvm.global_ctors"); in createInitializerPoisonCalls()
/external/llvm/examples/ExceptionDemo/
DExceptionDemo.cpp1280 caughtResult->addClause(module.getGlobalVariable( in createCatchWrappedInvokeFunction()