Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/
H A DExecutionEngine.h350 /// getPointerToFunction - The different EE's represent function bodies in
358 virtual void *getPointerToFunction(Function *F) = 0;
363 /// getPointerToFunction for the requirements on destroying F.
369 return getPointerToFunction(F); in getPointerToFunctionOrStub()
386 // Interpreter clients should use getPointerToFunction instead. in getFunctionAddress()
447 /// getPointerToFunction. If lazy compilation is turned on, the JIT will only
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/
H A DInterpreter.h197 void *getPointerToFunction(Function *F) override { return (void*)F; } in getPointerToFunction() function
/freebsd/contrib/llvm-project/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.h252 void *getPointerToFunction(Function *F) override;
/freebsd/contrib/llvm-project/lldb/source/Expression/
H A DIRExecutionUnit.cpp359 void *fun_ptr = m_execution_engine_up->getPointerToFunction(&function); in GetRunnableInfo()
/freebsd/contrib/llvm-project/llvm/tools/lli/
H A Dlli.cpp679 (void)EE->getPointerToFunction(EntryFn); in main()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp567 return getPointerToFunction(F); in getPointerToGlobal()