Searched refs:getPointerToGlobalIfAvailable (Results 1 - 7 of 7) sorted by relevance

/external/llvm/unittests/ExecutionEngine/
H A DExecutionEngineTest.cpp49 EXPECT_EQ(&Mem1, Engine->getPointerToGlobalIfAvailable(G1));
52 EXPECT_EQ(&Mem2, Engine->getPointerToGlobalIfAvailable(G1));
54 EXPECT_EQ(NULL, Engine->getPointerToGlobalIfAvailable(G1));
56 EXPECT_EQ(&Mem2, Engine->getPointerToGlobalIfAvailable(G1));
60 EXPECT_EQ(NULL, Engine->getPointerToGlobalIfAvailable(G2))
65 EXPECT_EQ(&Mem1, Engine->getPointerToGlobalIfAvailable(G2));
66 EXPECT_EQ(&Mem2, Engine->getPointerToGlobalIfAvailable(G1))
/external/llvm/lib/ExecutionEngine/JIT/
H A DJIT.cpp657 if (void *Addr = getPointerToGlobalIfAvailable(F))
671 if (void *Addr = getPointerToGlobalIfAvailable(F))
683 void *Addr = getPointerToGlobalIfAvailable(F);
749 void *Ptr = getPointerToGlobalIfAvailable(GV);
781 void *OldAddr = getPointerToGlobalIfAvailable(F);
793 void *Addr = getPointerToGlobalIfAvailable(F);
H A DJITEmitter.cpp657 void *Result = JR->TheJIT->getPointerToGlobalIfAvailable(F);
726 void *ResultPtr = TheJIT->getPointerToGlobalIfAvailable(F);
832 (uint8_t *)TheJIT->getPointerToGlobalIfAvailable(F.getFunction());
1264 if (void *Addr = getPointerToGlobalIfAvailable(F))
1278 void *Addr = getPointerToGlobalIfAvailable(F);
/external/llvm/include/llvm/ExecutionEngine/
H A DExecutionEngine.h294 /// getPointerToGlobalIfAvailable - This returns the address of the specified
297 void *getPointerToGlobalIfAvailable(const GlobalValue *GV);
/external/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp221 void *ExecutionEngine::getPointerToGlobalIfAvailable(const GlobalValue *GV) { function in class:ExecutionEngine
1090 void *Ptr = getPointerToGlobalIfAvailable(CGV);
1117 void *GA = getPointerToGlobalIfAvailable(GV);
/external/llvm/lib/ExecutionEngine/Interpreter/
H A DExternalFunctions.cpp269 RawFn = (RawFunc)(intptr_t)getPointerToGlobalIfAvailable(F);
/external/llvm/unittests/ExecutionEngine/JIT/
H A DJITTest.cpp269 int32_t *GPtr = (int32_t*)JIT->getPointerToGlobalIfAvailable(G);

Completed in 108 milliseconds