/netbsd-src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/complete/ |
H A D | toy.cpp | 783 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 D | toy.cpp | 659 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 D | toy-jit.cpp | 1043 void *FPtr = TheExecutionEngine->getPointerToFunction(LF); in HandleTopLevelExpression()
|
/netbsd-src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/cached/ |
H A D | toy.cpp | 746 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 D | toy-jit.cpp | 1059 void *FPtr = TheExecutionEngine->getPointerToFunction(LF); in HandleTopLevelExpression()
|
/netbsd-src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/initial/ |
H A D | toy.cpp | 657 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 D | ExecutionEngine.h | 359 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 D | handle_llvm.cpp | 198 LLVMFunc f = reinterpret_cast<LLVMFunc>(EE->getPointerToFunction(EntryFunc)); in CreateAndRunJITFunc()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Interpreter/ |
H A D | Interpreter.h | 197 void *getPointerToFunction(Function *F) override { return (void*)F; } in getPointerToFunction() function
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/MCJIT/ |
H A D | MCJIT.cpp | 413 void *MCJIT::getPointerToFunction(Function *F) { in getPointerToFunction() function in MCJIT 516 void *FPtr = getPointerToFunction(F); in runFunction()
|
H A D | MCJIT.h | 259 void *getPointerToFunction(Function *F) override;
|
/netbsd-src/external/apache2/llvm/dist/llvm/docs/ |
H A D | MCJITDesignAndImplementation.rst | 49 MCJIT::getPointerToFunction is called which requires the code to have been
|
H A D | ProgrammersManual.rst | 3072 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 D | lli.cpp | 680 (void)EE->getPointerToFunction(EntryFn); in main()
|
/netbsd-src/external/apache2/llvm/dist/llvm/examples/ExceptionDemo/ |
H A D | ExceptionDemo.cpp | 1557 reinterpret_cast<intptr_t>(engine->getPointerToFunction(function))); in runExceptionThrow()
|
/netbsd-src/external/apache2/llvm/dist/llvm/docs/tutorial/MyFirstLanguageFrontend/ |
H A D | LangImpl09.rst | 116 - void *FPtr = TheExecutionEngine->getPointerToFunction(FnIR);
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/ |
H A D | ExecutionEngine.cpp | 567 return getPointerToFunction(F); in getPointerToGlobal()
|