/external/llvm/unittests/ExecutionEngine/MCJIT/ |
D | MCJITTest.cpp | 195 void *A = TheJIT->getPointerToFunction(Foo); in TEST_F() 196 void *B = TheJIT->getPointerToFunction(Foo); in TEST_F()
|
D | MCJITObjectCacheTest.cpp | 99 void *vPtr = TheJIT->getPointerToFunction(Main); in compileAndRun()
|
/external/llvm/examples/Kaleidoscope/Chapter4/ |
D | toy.cpp | 435 void *getPointerToFunction(Function *F); 533 void *MCJITHelper::getPointerToFunction(Function *F) { in getPointerToFunction() function in MCJITHelper 539 void *P = (*it)->getPointerToFunction(F); in getPointerToFunction() 592 return NewEngine->getPointerToFunction(F); in getPointerToFunction() 788 void *FPtr = JITHelper->getPointerToFunction(LF); in HandleTopLevelExpression()
|
/external/llvm/examples/Kaleidoscope/MCJIT/complete/ |
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() 1507 void *FPtr = TheHelper->getPointerToFunction(LF); in HandleTopLevelExpression()
|
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/ |
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() 1328 void *FPtr = TheHelper->getPointerToFunction(LF); in HandleTopLevelExpression()
|
D | toy-jit.cpp | 1045 void *FPtr = TheExecutionEngine->getPointerToFunction(LF); in HandleTopLevelExpression()
|
/external/llvm/examples/Kaleidoscope/MCJIT/cached/ |
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() 1430 void *FPtr = TheHelper->getPointerToFunction(LF); in HandleTopLevelExpression()
|
D | toy-jit.cpp | 1063 void *FPtr = TheExecutionEngine->getPointerToFunction(LF); in HandleTopLevelExpression()
|
/external/llvm/examples/Kaleidoscope/MCJIT/initial/ |
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() 1287 void *FPtr = TheHelper->getPointerToFunction(LF); in HandleTopLevelExpression()
|
/external/llvm/include/llvm/ExecutionEngine/ |
D | ExecutionEngine.h | 327 virtual void *getPointerToFunction(Function *F) = 0; 338 return getPointerToFunction(F); in getPointerToFunctionOrStub()
|
/external/llvm/lib/ExecutionEngine/Orc/ |
D | OrcMCJITReplacement.cpp | 31 void *FPtr = getPointerToFunction(F); in runFunction()
|
D | OrcMCJITReplacement.h | 218 void *getPointerToFunction(Function *F) override { in getPointerToFunction() function
|
/external/llvm/lib/ExecutionEngine/MCJIT/ |
D | MCJIT.cpp | 369 void *MCJIT::getPointerToFunction(Function *F) { in getPointerToFunction() function in MCJIT 448 void *FPtr = getPointerToFunction(F); in runFunction()
|
D | MCJIT.h | 251 void *getPointerToFunction(Function *F) override;
|
/external/llvm/lib/ExecutionEngine/Interpreter/ |
D | Interpreter.h | 218 void *getPointerToFunction(Function *F) override { return (void*)F; } in getPointerToFunction() function
|
/external/llvm/docs/tutorial/ |
D | LangImpl4.rst | 254 "``getPointerToFunction(F)``" method. This method JIT compiles the 268 void *FPtr = TheExecutionEngine->getPointerToFunction(LF); 329 ``getPointerToFunction()``.
|
D | LangImpl8.rst | 116 - void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
|
/external/llvm/tools/lli/ |
D | lli.cpp | 626 (void)EE->getPointerToFunction(EntryFn); in main()
|
/external/llvm/examples/Kaleidoscope/Chapter5/ |
D | toy.cpp | 829 void *FPtr = TheExecutionEngine->getPointerToFunction(LF); in HandleTopLevelExpression()
|
/external/lldb/source/Expression/ |
D | IRExecutionUnit.cpp | 341 void *fun_ptr = m_execution_engine_ap->getPointerToFunction(function); in GetRunnableInfo()
|
/external/llvm/examples/Kaleidoscope/Chapter6/ |
D | toy.cpp | 944 void *FPtr = TheExecutionEngine->getPointerToFunction(LF); in HandleTopLevelExpression()
|
/external/llvm/docs/ |
D | MCJITDesignAndImplementation.rst | 49 MCJIT::getPointerToFunction is called which requires the code to have been
|
/external/llvm/examples/Kaleidoscope/Chapter7/ |
D | toy.cpp | 1117 void *FPtr = TheExecutionEngine->getPointerToFunction(LF); in HandleTopLevelExpression()
|
/external/llvm/examples/ExceptionDemo/ |
D | ExceptionDemo.cpp | 1607 reinterpret_cast<intptr_t>(engine->getPointerToFunction(function))); in runExceptionThrow()
|
/external/llvm/lib/ExecutionEngine/ |
D | ExecutionEngine.cpp | 556 return getPointerToFunction(F); in getPointerToGlobal()
|