Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/
H A DExecutionEngine.h359 virtual void *getPointerToFunction(Function *F) = 0;
370 return getPointerToFunction(F); in getPointerToFunctionOrStub()
/netbsd-src/external/apache2/llvm/dist/clang/tools/clang-fuzzer/handle-llvm/
H A Dhandle_llvm.cpp198 LLVMFunc f = reinterpret_cast<LLVMFunc>(EE->getPointerToFunction(EntryFunc)); in CreateAndRunJITFunc()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Interpreter/
H A DInterpreter.h197 void *getPointerToFunction(Function *F) override { return (void*)F; } in getPointerToFunction() function
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/MCJIT/
H A DMCJIT.cpp413 void *MCJIT::getPointerToFunction(Function *F) { in getPointerToFunction() function in MCJIT
516 void *FPtr = getPointerToFunction(F); in runFunction()
H A DMCJIT.h259 void *getPointerToFunction(Function *F) override;
/netbsd-src/external/apache2/llvm/dist/llvm/docs/
H A DMCJITDesignAndImplementation.rst49 MCJIT::getPointerToFunction is called which requires the code to have been
H A DProgrammersManual.rst3072 threads can call ``ExecutionEngine::getPointerToFunction()`` or
3078 Another way is to only call ``getPointerToFunction()`` from the
/netbsd-src/external/apache2/llvm/dist/llvm/tools/lli/
H A Dlli.cpp680 (void)EE->getPointerToFunction(EntryFn); in main()
/netbsd-src/external/apache2/llvm/dist/llvm/examples/ExceptionDemo/
H A DExceptionDemo.cpp1557 reinterpret_cast<intptr_t>(engine->getPointerToFunction(function))); in runExceptionThrow()
/netbsd-src/external/apache2/llvm/dist/llvm/docs/tutorial/MyFirstLanguageFrontend/
H A DLangImpl09.rst116 - void *FPtr = TheExecutionEngine->getPointerToFunction(FnIR);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp567 return getPointerToFunction(F); in getPointerToGlobal()