Home
last modified time | relevance | path

Searched refs:getPointerToGlobalIfAvailable (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/
H A DExecutionEngine.h337 /// getPointerToGlobalIfAvailable - This returns the address of the specified
340 void *getPointerToGlobalIfAvailable(StringRef S);
341 void *getPointerToGlobalIfAvailable(const GlobalValue *GV);
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp285 void *ExecutionEngine::getPointerToGlobalIfAvailable(StringRef S) { in getPointerToGlobalIfAvailable() function in ExecutionEngine
292 void *ExecutionEngine::getPointerToGlobalIfAvailable(const GlobalValue *GV) { in getPointerToGlobalIfAvailable() function in ExecutionEngine
294 return getPointerToGlobalIfAvailable(getMangledName(GV)); in getPointerToGlobalIfAvailable()
570 if (void* P = getPointerToGlobalIfAvailable(GV)) in getPointerToGlobal()
580 return getPointerToGlobalIfAvailable(GV); in getPointerToGlobal()
1286 void *Ptr = getPointerToGlobalIfAvailable(CGV); in emitGlobals()
1312 void *GA = getPointerToGlobalIfAvailable(GV); in emitGlobalVariable()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/
H A DExternalFunctions.cpp293 RawFn = (RawFunc)(intptr_t)getPointerToGlobalIfAvailable(F); in callExternalFunction()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/MCJIT/
H A DMCJIT.cpp287 if (void *Addr = getPointerToGlobalIfAvailable(Name)) in findExistingSymbol()