HomeSort by relevance Sort by last modified time
    Searched refs:getPointerToGlobalIfAvailable (Results 1 - 7 of 7) sorted by null

  /external/llvm/unittests/ExecutionEngine/
ExecutionEngineTest.cpp 47 EXPECT_EQ(&Mem1, Engine->getPointerToGlobalIfAvailable(G1));
50 EXPECT_EQ(&Mem2, Engine->getPointerToGlobalIfAvailable(G1));
52 EXPECT_EQ(NULL, Engine->getPointerToGlobalIfAvailable(G1));
54 EXPECT_EQ(&Mem2, Engine->getPointerToGlobalIfAvailable(G1));
58 EXPECT_EQ(NULL, Engine->getPointerToGlobalIfAvailable(G2))
63 EXPECT_EQ(&Mem1, Engine->getPointerToGlobalIfAvailable(G2));
64 EXPECT_EQ(&Mem2, Engine->getPointerToGlobalIfAvailable(G1))
  /external/llvm/lib/ExecutionEngine/JIT/
JIT.cpp 651 if (void *Addr = getPointerToGlobalIfAvailable(F))
665 if (void *Addr = getPointerToGlobalIfAvailable(F))
677 void *Addr = getPointerToGlobalIfAvailable(F);
723 void *Ptr = getPointerToGlobalIfAvailable(GV);
755 void *OldAddr = getPointerToGlobalIfAvailable(F);
767 void *Addr = getPointerToGlobalIfAvailable(F);
JITEmitter.cpp 656 void *Result = JR->TheJIT->getPointerToGlobalIfAvailable(F);
725 void *ResultPtr = TheJIT->getPointerToGlobalIfAvailable(F);
831 (uint8_t *)TheJIT->getPointerToGlobalIfAvailable(F.getFunction());
    [all...]
  /external/llvm/include/llvm/ExecutionEngine/
ExecutionEngine.h 273 /// getPointerToGlobalIfAvailable - This returns the address of the specified
276 void *getPointerToGlobalIfAvailable(const GlobalValue *GV);
  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 222 void *ExecutionEngine::getPointerToGlobalIfAvailable(const GlobalValue *GV) {
    [all...]
  /external/llvm/lib/ExecutionEngine/Interpreter/
ExternalFunctions.cpp 268 RawFn = (RawFunc)(intptr_t)getPointerToGlobalIfAvailable(F);
  /external/llvm/unittests/ExecutionEngine/JIT/
JITTest.cpp 257 int32_t *GPtr = (int32_t*)JIT->getPointerToGlobalIfAvailable(G);

Completed in 537 milliseconds