Home
last modified time | relevance | path

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

/llvm-project/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) { 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()
1505 void *FPtr = TheHelper->getPointerToFunction(LF); in HandleTopLevelExpression()
/llvm-project/llvm/examples/Kaleidoscope/MCJIT/lazy/
H A 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()
1326 void *FPtr = TheHelper->getPointerToFunction(LF); in HandleTopLevelExpression()
H A Dtoy-jit.cpp1043 void *FPtr = TheExecutionEngine->getPointerToFunction(LF); in HandleTopLevelExpression()
/llvm-project/llvm/examples/Kaleidoscope/MCJIT/cached/
H A 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()
1428 void *FPtr = TheHelper->getPointerToFunction(LF); in HandleTopLevelExpression()
H A Dtoy-jit.cpp1059 void *FPtr = TheExecutionEngine->getPointerToFunction(LF); in HandleTopLevelExpression()
/llvm-project/llvm/unittests/ExecutionEngine/MCJIT/
H A DMCJITTest.cpp202 void *A = TheJIT->getPointerToFunction(Foo); in TEST_F()
203 void *B = TheJIT->getPointerToFunction(Foo); in TEST_F()
H A DMCJITObjectCacheTest.cpp97 void *vPtr = TheJIT->getPointerToFunction(Main); in compileAndRun()
/llvm-project/llvm/examples/Kaleidoscope/MCJIT/initial/
H A 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()
1285 void *FPtr = TheHelper->getPointerToFunction(LF); in HandleTopLevelExpression()
/llvm-project/llvm/include/llvm/ExecutionEngine/
H A DExecutionEngine.h358 virtual void *getPointerToFunction(Function *F) = 0;
369 return getPointerToFunction(F); in getPointerToFunctionOrStub()
/llvm-project/clang/tools/clang-fuzzer/handle-llvm/
H A Dhandle_llvm.cpp188 LLVMFunc f = reinterpret_cast<LLVMFunc>(EE->getPointerToFunction(EntryFunc)); in CreateAndRunJITFunc()
/llvm-project/llvm/lib/ExecutionEngine/Interpreter/
H A DInterpreter.h197 void *getPointerToFunction(Function *F) override { return (void*)F; } in getPointerToFunction() function
/llvm-project/llvm/lib/ExecutionEngine/MCJIT/
H A DMCJIT.cpp410 void *MCJIT::getPointerToFunction(Function *F) { in getFunctionAddress()
513 void *FPtr = getPointerToFunction(F); in runFunction()
515 assert(FPtr && "Pointer to fn's code was null after getPointerToFunction"); in runFunction()
413 void *MCJIT::getPointerToFunction(Function *F) { getPointerToFunction() function in MCJIT
H A DMCJIT.h252 void *getPointerToFunction(Function *F) override;
/llvm-project/llvm/docs/
H A DMCJITDesignAndImplementation.rst49 MCJIT::getPointerToFunction is called which requires the code to have been
H A DProgrammersManual.rst3207 threads can call ``ExecutionEngine::getPointerToFunction()`` or
3213 Another way is to only call ``getPointerToFunction()`` from the
/llvm-project/llvm/examples/ExceptionDemo/
H A DExceptionDemo.cpp
/llvm-project/lldb/source/Expression/
H A DIRExecutionUnit.cpp357 void *fun_ptr = m_execution_engine_up->getPointerToFunction(&function); in GetRunnableInfo()
/llvm-project/llvm/tools/lli/
H A Dlli.cpp680 (void)EE->getPointerToFunction(EntryFn); in main()
/llvm-project/llvm/docs/tutorial/MyFirstLanguageFrontend/
H A DLangImpl09.rst116 - void *FPtr = TheExecutionEngine->getPointerToFunction(FnIR);
/llvm-project/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp566 return getPointerToFunction(F); in getPointerToGlobal()