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

  /external/llvm/lib/ExecutionEngine/MCJIT/
MCJIT.h 51 virtual void *getPointerToFunction(Function *F);
MCJIT.cpp 71 // on-demand as part of getPointerToFunction().
95 void *MCJIT::getPointerToFunction(Function *F) {
123 void *FPtr = getPointerToFunction(F);
124 assert(FPtr && "Pointer to fn's code was null after getPointerToFunction");
  /external/llvm/unittests/ExecutionEngine/JIT/
JITEventListenerTest.cpp 95 void *F1_addr = EE->getPointerToFunction(F1);
96 void *F2_addr = EE->getPointerToFunction(F2);
97 EE->getPointerToFunction(F1); // Should do nothing.
138 void *F1_addr = EE->getPointerToFunction(F1);
141 void *F2_addr = EE->getPointerToFunction(F2);
213 void *F_addr = EE->getPointerToFunction(F);
JITEventListenerTestCommon.h 128 EXPECT_TRUE(0 != EE->getPointerToFunction(f));
142 EXPECT_TRUE(0 != EE->getPointerToFunction(f));
164 EXPECT_TRUE(0 != EE->getPointerToFunction(f));
193 EXPECT_TRUE(0 != EE->getPointerToFunction(f));
JITTest.cpp 266 reinterpret_cast<void(*)()>((intptr_t)JIT->getPointerToFunction(F1));
281 reinterpret_cast<void(*)()>((intptr_t)JIT->getPointerToFunction(F2));
328 (intptr_t)TheJIT->getPointerToFunction(TestFunction));
383 reinterpret_cast<void(*)()>((intptr_t)TheJIT->getPointerToFunction(Func1));
413 (void)TheJIT->getPointerToFunction(Func1);
440 TheJIT->getPointerToFunction(func);
505 uintptr_t tmp = (uintptr_t)(TheJIT->getPointerToFunction(foo));
514 TheJIT->getPointerToFunction(func);
517 TheJIT->getPointerToFunction(bar);
536 (intptr_t)TheJIT->getPointerToFunction(F_get_foo_addr))
    [all...]
MultiJITTest.cpp 151 void *foo1 = EE1->getPointerToFunction(F1);
154 void *foo2 = EE2->getPointerToFunction(F2);
  /external/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.h 128 return getPointerToFunction(F);
208 void *getPointerToFunction(Function *F) { return (void*)F; }
  /external/llvm/lib/ExecutionEngine/JIT/
JIT.cpp 250 return (*Jit)->getPointerToFunction(F);
393 void *FPtr = getPointerToFunction(F);
394 assert(FPtr && "Pointer to fn's code was null after getPointerToFunction");
647 /// getPointerToFunction - This method is used to get the address of the
650 void *JIT::getPointerToFunction(Function *F) {
702 (void)getPointerToFunction(BB->getParent());
773 /// just like JIT::getPointerToFunction().
779 if (OldAddr == 0) { return getPointerToFunction(F); }
JIT.h 136 /// getPointerToFunction - This returns the address of the specified function,
139 void *getPointerToFunction(Function *F);
166 /// just like JIT::getPointerToFunction().
JITEmitter.cpp 536 Actual = TheJIT->getPointerToFunction(F);
638 // Only lock for getting the Function. The call getPointerToFunction made
669 Result = JR->TheJIT->getPointerToFunction(F);
727 return TheJIT->getPointerToFunction(F);
    [all...]
  /external/llvm/include/llvm/ExecutionEngine/
ExecutionEngine.h 303 /// getPointerToFunction - The different EE's represent function bodies in
308 virtual void *getPointerToFunction(Function *F) = 0;
318 /// getPointerToFunction for the requirements on destroying F.
321 return getPointerToFunction(F);
345 /// VM::getPointerToFunction().
369 /// getPointerToFunction. If lazy compilation is turned on, the JIT will only
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 515 void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 760 void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 871 void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 1034 void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
    [all...]
  /external/llvm/examples/ExceptionDemo/
ExceptionDemo.cpp     [all...]
  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 514 return getPointerToFunction(F);
    [all...]

Completed in 252 milliseconds