Searched defs:getPointerToFunction (Results 1 - 3 of 3) sorted by relevance

/external/llvm/lib/ExecutionEngine/MCJIT/
H A DMCJIT.cpp92 // on-demand as part of getPointerToFunction().
115 void *MCJIT::getPointerToFunction(Function *F) { function in class:MCJIT
156 void *FPtr = getPointerToFunction(F);
157 assert(FPtr && "Pointer to fn's code was null after getPointerToFunction");
/external/llvm/lib/ExecutionEngine/Interpreter/
H A DInterpreter.h128 return getPointerToFunction(F);
208 void *getPointerToFunction(Function *F) { return (void*)F; } function in class:llvm::Interpreter
/external/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");
652 /// getPointerToFunction - This method is used to get the address of the
655 void *JIT::getPointerToFunction(Function *F) { function in class:JIT
707 (void)getPointerToFunction(BB->getParent());
778 /// just like JIT::getPointerToFunction().
784 if (OldAddr == 0) { return getPointerToFunction(F); }

Completed in 80 milliseconds