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

  /external/llvm/lib/ExecutionEngine/MCJIT/
MCJIT.cpp 188 void *MCJIT::getPointerToFunction(Function *F) {
229 void *FPtr = getPointerToFunction(F);
230 assert(FPtr && "Pointer to fn's code was null after getPointerToFunction");
  /external/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.h 128 return getPointerToFunction(F);
209 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");
653 /// getPointerToFunction - This method is used to get the address of the
656 void *JIT::getPointerToFunction(Function *F) {
708 (void)getPointerToFunction(BB->getParent());
779 /// just like JIT::getPointerToFunction().
785 if (OldAddr == 0) { return getPointerToFunction(F); }
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy.cpp 745 void *getPointerToFunction(Function* F);
863 void *MCJITHelper::getPointerToFunction(Function* F) {
874 void *P = eeIt->second->getPointerToFunction(F);
879 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 787 virtual void *getPointerToFunction(Function* F) = 0;
854 virtual void *getPointerToFunction(Function* F) {
856 return TheExecutionEngine->getPointerToFunction(F);
903 void *getPointerToFunction(Function* F);
1093 void *MCJITHelper::getPointerToFunction(Function* F) {
1104 void *P = eeIt->second->getPointerToFunction(F);
1109 void *P = EE->getPointerToFunction(F);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 656 void *getPointerToFunction(Function* F);
764 void *MCJITHelper::getPointerToFunction(Function* F) {
770 void *P = (*it)->getPointerToFunction(F);
822 return NewEngine->getPointerToFunction(F);
835 return (*it)->getPointerToFunction(F);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy.cpp 658 void *getPointerToFunction(Function* F);
774 void *MCJITHelper::getPointerToFunction(Function* F) {
785 void *P = eeIt->second->getPointerToFunction(F);
790 void *P = EE->getPointerToFunction(F);
867 void *P = eeIt->second->getPointerToFunction(F);
872 void *P = EE->getPointerToFunction(F);
    [all...]

Completed in 240 milliseconds