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 369 void *MCJIT::getPointerToFunction(Function *F) {
448 void *FPtr = getPointerToFunction(F);
449 assert(FPtr && "Pointer to fn's code was null after getPointerToFunction");
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 435 void *getPointerToFunction(Function *F);
533 void *MCJITHelper::getPointerToFunction(Function *F) {
539 void *P = (*it)->getPointerToFunction(F);
592 return NewEngine->getPointerToFunction(F);
788 void *FPtr = JITHelper->getPointerToFunction(LF);
  /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);
965 void *P = eeIt->second->getPointerToFunction(F);
970 void *P = EE->getPointerToFunction(F);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 783 virtual void *getPointerToFunction(Function* F) = 0;
809 void *getPointerToFunction(Function* F);
998 void *MCJITHelper::getPointerToFunction(Function* F) {
1009 void *P = eeIt->second->getPointerToFunction(F);
1014 void *P = EE->getPointerToFunction(F);
1041 void *P = eeIt->second->getPointerToFunction(F);
1046 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);
822 return NewEngine->getPointerToFunction(F);
835 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);
867 void *P = eeIt->second->getPointerToFunction(F);
872 void *P = EE->getPointerToFunction(F);
    [all...]

Completed in 111 milliseconds