Searched refs:getPointerToFunction (Results 1 - 16 of 16) sorted by relevance

/external/llvm/lib/ExecutionEngine/Orc/
H A DOrcMCJITReplacement.cpp31 void *FPtr = getPointerToFunction(F);
32 assert(FPtr && "Pointer to fn's code was null after getPointerToFunction");
H A DOrcMCJITReplacement.h213 void *getPointerToFunction(Function *F) override {
/external/llvm/unittests/ExecutionEngine/MCJIT/
H A DMCJITTest.cpp196 void *A = TheJIT->getPointerToFunction(Foo);
197 void *B = TheJIT->getPointerToFunction(Foo);
200 EXPECT_EQ(A, B) << "Repeat calls to getPointerToFunction fail.";
H A DMCJITObjectCacheTest.cpp98 void *vPtr = TheJIT->getPointerToFunction(Main);
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/
H A Dtoy.cpp659 void *getPointerToFunction(Function* F);
775 void *MCJITHelper::getPointerToFunction(Function* F) { function in class:MCJITHelper
786 void *P = eeIt->second->getPointerToFunction(F);
791 void *P = EE->getPointerToFunction(F);
867 void *P = eeIt->second->getPointerToFunction(F);
872 void *P = EE->getPointerToFunction(F);
1328 void *FPtr = TheHelper->getPointerToFunction(LF);
H A Dtoy-jit.cpp1045 void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
/external/llvm/examples/Kaleidoscope/MCJIT/complete/
H A Dtoy.cpp783 virtual void *getPointerToFunction(Function* F) = 0;
809 void *getPointerToFunction(Function* F);
998 void *MCJITHelper::getPointerToFunction(Function* F) { function in class:MCJITHelper
1009 void *P = eeIt->second->getPointerToFunction(F);
1014 void *P = EE->getPointerToFunction(F);
1041 void *P = eeIt->second->getPointerToFunction(F);
1046 void *P = EE->getPointerToFunction(F);
1507 void *FPtr = TheHelper->getPointerToFunction(LF);
/external/llvm/include/llvm/ExecutionEngine/
H A DExecutionEngine.h330 /// getPointerToFunction - The different EE's represent function bodies in
338 virtual void *getPointerToFunction(Function *F) = 0;
343 /// getPointerToFunction for the requirements on destroying F.
349 return getPointerToFunction(F);
366 // Interpreter clients should use getPointerToFunction instead.
427 /// getPointerToFunction. If lazy compilation is turned on, the JIT will only
/external/llvm/examples/Kaleidoscope/MCJIT/initial/
H A Dtoy.cpp657 void *getPointerToFunction(Function* F);
765 void *MCJITHelper::getPointerToFunction(Function* F) { function in class:MCJITHelper
771 void *P = (*it)->getPointerToFunction(F);
822 return NewEngine->getPointerToFunction(F);
835 return (*it)->getPointerToFunction(F);
1287 void *FPtr = TheHelper->getPointerToFunction(LF);
/external/llvm/examples/Kaleidoscope/MCJIT/cached/
H A Dtoy.cpp746 void *getPointerToFunction(Function* F);
864 void *MCJITHelper::getPointerToFunction(Function* F) { function in class:MCJITHelper
875 void *P = eeIt->second->getPointerToFunction(F);
880 void *P = EE->getPointerToFunction(F);
965 void *P = eeIt->second->getPointerToFunction(F);
970 void *P = EE->getPointerToFunction(F);
1430 void *FPtr = TheHelper->getPointerToFunction(LF);
H A Dtoy-jit.cpp1063 void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
/external/llvm/lib/ExecutionEngine/Interpreter/
H A DInterpreter.h216 void *getPointerToFunction(Function *F) override { return (void*)F; }
/external/llvm/lib/ExecutionEngine/MCJIT/
H A DMCJIT.h262 void *getPointerToFunction(Function *F) override;
H A DMCJIT.cpp379 void *MCJIT::getPointerToFunction(Function *F) { function in class:MCJIT
482 void *FPtr = getPointerToFunction(F);
483 assert(FPtr && "Pointer to fn's code was null after getPointerToFunction");
/external/llvm/examples/ExceptionDemo/
H A DExceptionDemo.cpp1609 reinterpret_cast<intptr_t>(engine->getPointerToFunction(function)));
/external/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp579 return getPointerToFunction(F);

Completed in 1631 milliseconds