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 49 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/
JIT.cpp 658 if (void *Addr = getPointerToGlobalIfAvailable(F))
672 if (void *Addr = getPointerToGlobalIfAvailable(F))
684 void *Addr = getPointerToGlobalIfAvailable(F);
750 void *Ptr = getPointerToGlobalIfAvailable(GV);
782 void *OldAddr = getPointerToGlobalIfAvailable(F);
794 void *Addr = getPointerToGlobalIfAvailable(F);
JITEmitter.cpp 652 void *Result = JR->TheJIT->getPointerToGlobalIfAvailable(F);
721 void *ResultPtr = TheJIT->getPointerToGlobalIfAvailable(F);
827 (uint8_t *)TheJIT->getPointerToGlobalIfAvailable(F.getFunction());
    [all...]
  /external/llvm/include/llvm/ExecutionEngine/
ExecutionEngine.h 301 /// getPointerToGlobalIfAvailable - This returns the address of the specified
304 void *getPointerToGlobalIfAvailable(const GlobalValue *GV);
  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 221 void *ExecutionEngine::getPointerToGlobalIfAvailable(const GlobalValue *GV) {
    [all...]
  /external/llvm/lib/ExecutionEngine/Interpreter/
ExternalFunctions.cpp 269 RawFn = (RawFunc)(intptr_t)getPointerToGlobalIfAvailable(F);
  /external/llvm/unittests/ExecutionEngine/JIT/
JITTest.cpp 279 int32_t *GPtr = (int32_t*)JIT->getPointerToGlobalIfAvailable(G);

Completed in 225 milliseconds