Home
last modified time | relevance | path

Searched refs:getPointerToFunction (Results 1 – 20 of 20) sorted by relevance

/external/llvm/examples/Kaleidoscope/MCJIT/complete/
Dtoy.cpp783 virtual void *getPointerToFunction(Function* F) = 0;
809 void *getPointerToFunction(Function* F);
998 void *MCJITHelper::getPointerToFunction(Function* F) { in getPointerToFunction() function in MCJITHelper
1009 void *P = eeIt->second->getPointerToFunction(F); in getPointerToFunction()
1014 void *P = EE->getPointerToFunction(F); in getPointerToFunction()
1041 void *P = eeIt->second->getPointerToFunction(F); in getPointerToNamedFunction()
1046 void *P = EE->getPointerToFunction(F); in getPointerToNamedFunction()
1507 void *FPtr = TheHelper->getPointerToFunction(LF); in HandleTopLevelExpression()
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/
Dtoy.cpp659 void *getPointerToFunction(Function* F);
775 void *MCJITHelper::getPointerToFunction(Function* F) { in getPointerToFunction() function in MCJITHelper
786 void *P = eeIt->second->getPointerToFunction(F); in getPointerToFunction()
791 void *P = EE->getPointerToFunction(F); in getPointerToFunction()
867 void *P = eeIt->second->getPointerToFunction(F); in getPointerToNamedFunction()
872 void *P = EE->getPointerToFunction(F); in getPointerToNamedFunction()
1328 void *FPtr = TheHelper->getPointerToFunction(LF); in HandleTopLevelExpression()
Dtoy-jit.cpp1045 void *FPtr = TheExecutionEngine->getPointerToFunction(LF); in HandleTopLevelExpression()
/external/llvm/unittests/ExecutionEngine/MCJIT/
DMCJITTest.cpp196 void *A = TheJIT->getPointerToFunction(Foo); in TEST_F()
197 void *B = TheJIT->getPointerToFunction(Foo); in TEST_F()
DMCJITObjectCacheTest.cpp98 void *vPtr = TheJIT->getPointerToFunction(Main); in compileAndRun()
/external/llvm/examples/Kaleidoscope/MCJIT/cached/
Dtoy.cpp746 void *getPointerToFunction(Function* F);
864 void *MCJITHelper::getPointerToFunction(Function* F) { in getPointerToFunction() function in MCJITHelper
875 void *P = eeIt->second->getPointerToFunction(F); in getPointerToFunction()
880 void *P = EE->getPointerToFunction(F); in getPointerToFunction()
965 void *P = eeIt->second->getPointerToFunction(F); in getPointerToNamedFunction()
970 void *P = EE->getPointerToFunction(F); in getPointerToNamedFunction()
1430 void *FPtr = TheHelper->getPointerToFunction(LF); in HandleTopLevelExpression()
Dtoy-jit.cpp1063 void *FPtr = TheExecutionEngine->getPointerToFunction(LF); in HandleTopLevelExpression()
/external/llvm/examples/Kaleidoscope/MCJIT/initial/
Dtoy.cpp657 void *getPointerToFunction(Function* F);
765 void *MCJITHelper::getPointerToFunction(Function* F) { in getPointerToFunction() function in MCJITHelper
771 void *P = (*it)->getPointerToFunction(F); in getPointerToFunction()
822 return NewEngine->getPointerToFunction(F); in getPointerToFunction()
835 return (*it)->getPointerToFunction(F); in getPointerToNamedFunction()
1287 void *FPtr = TheHelper->getPointerToFunction(LF); in HandleTopLevelExpression()
/external/llvm/include/llvm/ExecutionEngine/
DExecutionEngine.h338 virtual void *getPointerToFunction(Function *F) = 0;
349 return getPointerToFunction(F); in getPointerToFunctionOrStub()
/external/llvm/lib/ExecutionEngine/Orc/
DOrcMCJITReplacement.cpp31 void *FPtr = getPointerToFunction(F); in runFunction()
DOrcMCJITReplacement.h213 void *getPointerToFunction(Function *F) override { in getPointerToFunction() function
/external/llvm/lib/ExecutionEngine/MCJIT/
DMCJIT.cpp379 void *MCJIT::getPointerToFunction(Function *F) { in getPointerToFunction() function in MCJIT
482 void *FPtr = getPointerToFunction(F); in runFunction()
DMCJIT.h262 void *getPointerToFunction(Function *F) override;
/external/llvm/lib/ExecutionEngine/Interpreter/
DInterpreter.h216 void *getPointerToFunction(Function *F) override { return (void*)F; } in getPointerToFunction() function
/external/llvm/tools/lli/
Dlli.cpp601 (void)EE->getPointerToFunction(EntryFn); in main()
/external/llvm/docs/
DMCJITDesignAndImplementation.rst49 MCJIT::getPointerToFunction is called which requires the code to have been
DProgrammersManual.rst2244 threads can call ``ExecutionEngine::getPointerToFunction()`` or
2250 Another way is to only call ``getPointerToFunction()`` from the
/external/llvm/examples/ExceptionDemo/
DExceptionDemo.cpp1609 reinterpret_cast<intptr_t>(engine->getPointerToFunction(function))); in runExceptionThrow()
/external/llvm/docs/tutorial/
DLangImpl8.rst116 - void *FPtr = TheExecutionEngine->getPointerToFunction(FnIR);
/external/llvm/lib/ExecutionEngine/
DExecutionEngine.cpp579 return getPointerToFunction(F); in getPointerToGlobal()