Searched refs:getPointerToFunction (Results 1 - 9 of 9) sorted by relevance

/freebsd-10.0-release/contrib/llvm/lib/ExecutionEngine/MCJIT/
H A DMCJIT.h59 virtual void *getPointerToFunction(Function *F);
H A DMCJIT.cpp188 void *MCJIT::getPointerToFunction(Function *F) { function in class:MCJIT
229 void *FPtr = getPointerToFunction(F);
230 assert(FPtr && "Pointer to fn's code was null after getPointerToFunction");
/freebsd-10.0-release/contrib/llvm/lib/ExecutionEngine/Interpreter/
H A DInterpreter.h128 return getPointerToFunction(F);
209 void *getPointerToFunction(Function *F) { return (void*)F; } function in class:llvm::Interpreter
/freebsd-10.0-release/contrib/llvm/lib/ExecutionEngine/JIT/
H A DJIT.cpp250 return (*Jit)->getPointerToFunction(F);
393 void *FPtr = getPointerToFunction(F);
394 assert(FPtr && "Pointer to fn's code was null after getPointerToFunction");
653 /// getPointerToFunction - This method is used to get the address of the
656 void *JIT::getPointerToFunction(Function *F) { function in class:JIT
708 (void)getPointerToFunction(BB->getParent());
779 /// just like JIT::getPointerToFunction().
785 if (OldAddr == 0) { return getPointerToFunction(F); }
H A DJIT.h136 /// getPointerToFunction - This returns the address of the specified function,
139 void *getPointerToFunction(Function *F);
166 /// just like JIT::getPointerToFunction().
H A DJITEmitter.cpp536 Actual = TheJIT->getPointerToFunction(F);
638 // Only lock for getting the Function. The call getPointerToFunction made
669 Result = JR->TheJIT->getPointerToFunction(F);
727 return TheJIT->getPointerToFunction(F);
/freebsd-10.0-release/contrib/llvm/include/llvm/ExecutionEngine/
H A DExecutionEngine.h312 /// getPointerToFunction - The different EE's represent function bodies in
317 virtual void *getPointerToFunction(Function *F) = 0;
327 /// getPointerToFunction for the requirements on destroying F.
330 return getPointerToFunction(F);
354 /// VM::getPointerToFunction().
384 /// getPointerToFunction. If lazy compilation is turned on, the JIT will only
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Expression/
H A DIRExecutionUnit.cpp341 void *fun_ptr = m_execution_engine_ap->getPointerToFunction(function);
/freebsd-10.0-release/contrib/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp515 return getPointerToFunction(F);

Completed in 145 milliseconds