HomeSort by relevance Sort by last modified time
    Searched defs:getPointerToFunction (Results 1 - 3 of 3) sorted by null

  /external/llvm/lib/ExecutionEngine/MCJIT/
MCJIT.cpp 92 // on-demand as part of getPointerToFunction().
115 void *MCJIT::getPointerToFunction(Function *F) {
156 void *FPtr = getPointerToFunction(F);
157 assert(FPtr && "Pointer to fn's code was null after getPointerToFunction");
  /external/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.h 128 return getPointerToFunction(F);
208 void *getPointerToFunction(Function *F) { return (void*)F; }
  /external/llvm/lib/ExecutionEngine/JIT/
JIT.cpp 250 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) {
707 (void)getPointerToFunction(BB->getParent());
778 /// just like JIT::getPointerToFunction().
784 if (OldAddr == 0) { return getPointerToFunction(F); }

Completed in 143 milliseconds