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

  /external/llvm/lib/ExecutionEngine/MCJIT/
MCJIT.cpp 355 void *MCJIT::getPointerToFunction(Function *F) {
436 void *FPtr = getPointerToFunction(F);
437 assert(FPtr && "Pointer to fn's code was null after getPointerToFunction");
  /external/llvm/lib/ExecutionEngine/JIT/
JIT.cpp 117 return (*Jit)->getPointerToFunction(F);
241 void *FPtr = getPointerToFunction(F);
242 assert(FPtr && "Pointer to fn's code was null after getPointerToFunction");
500 /// getPointerToFunction - This method is used to get the address of the
503 void *JIT::getPointerToFunction(Function *F) {
555 (void)getPointerToFunction(BB->getParent());
626 /// just like JIT::getPointerToFunction().
632 if (!OldAddr) return getPointerToFunction(F);
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy.cpp 746 void *getPointerToFunction(Function* F);
864 void *MCJITHelper::getPointerToFunction(Function* F) {
875 void *P = eeIt->second->getPointerToFunction(F);
880 void *P = EE->getPointerToFunction(F);
966 void *P = eeIt->second->getPointerToFunction(F);
971 void *P = EE->getPointerToFunction(F);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 788 virtual void *getPointerToFunction(Function* F) = 0;
855 virtual void *getPointerToFunction(Function* F) {
857 return TheExecutionEngine->getPointerToFunction(F);
904 void *getPointerToFunction(Function* F);
1094 void *MCJITHelper::getPointerToFunction(Function* F) {
1105 void *P = eeIt->second->getPointerToFunction(F);
1110 void *P = EE->getPointerToFunction(F);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 657 void *getPointerToFunction(Function* F);
765 void *MCJITHelper::getPointerToFunction(Function* F) {
771 void *P = (*it)->getPointerToFunction(F);
823 return NewEngine->getPointerToFunction(F);
836 return (*it)->getPointerToFunction(F);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy.cpp 659 void *getPointerToFunction(Function* F);
775 void *MCJITHelper::getPointerToFunction(Function* F) {
786 void *P = eeIt->second->getPointerToFunction(F);
791 void *P = EE->getPointerToFunction(F);
868 void *P = eeIt->second->getPointerToFunction(F);
873 void *P = EE->getPointerToFunction(F);
    [all...]

Completed in 104 milliseconds