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 74 // on-demand as part of getPointerToFunction().
98 void *MCJIT::getPointerToFunction(Function *F) {
126 void *FPtr = getPointerToFunction(F);
127 assert(FPtr && "Pointer to fn's code was null after getPointerToFunction");
  /external/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.h 122 return getPointerToFunction(F);
203 void *getPointerToFunction(Function *F) { return (void*)F; }
  /external/llvm/lib/ExecutionEngine/JIT/
JIT.cpp 250 return (*Jit)->getPointerToFunction(F);
391 void *FPtr = getPointerToFunction(F);
392 assert(FPtr && "Pointer to fn's code was null after getPointerToFunction");
646 /// getPointerToFunction - This method is used to get the address of the
649 void *JIT::getPointerToFunction(Function *F) {
701 (void)getPointerToFunction(BB->getParent());
752 /// just like JIT::getPointerToFunction().
758 if (OldAddr == 0) { return getPointerToFunction(F); }

Completed in 45 milliseconds