HomeSort by: relevance | last modified time | path
    Searched refs:getPointerToFunction (Results 1 - 13 of 13) sorted by relevancy

  /src/external/apache2/llvm/dist/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);
1326 void *FPtr = TheHelper->getPointerToFunction(LF);
toy-jit.cpp 1043 void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
  /src/external/apache2/llvm/dist/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);
1505 void *FPtr = TheHelper->getPointerToFunction(LF);
  /src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/
ExecutionEngine.h 351 /// getPointerToFunction - The different EE's represent function bodies in
359 virtual void *getPointerToFunction(Function *F) = 0;
364 /// getPointerToFunction for the requirements on destroying F.
370 return getPointerToFunction(F);
387 // Interpreter clients should use getPointerToFunction instead.
448 /// getPointerToFunction. If lazy compilation is turned on, the JIT will only
  /src/external/apache2/llvm/dist/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);
1285 void *FPtr = TheHelper->getPointerToFunction(LF);
  /src/external/apache2/llvm/dist/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);
1428 void *FPtr = TheHelper->getPointerToFunction(LF);
toy-jit.cpp 1059 void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
  /src/external/apache2/llvm/dist/clang/tools/clang-fuzzer/handle-llvm/
handle_llvm.cpp 198 LLVMFunc f = reinterpret_cast<LLVMFunc>(EE->getPointerToFunction(EntryFunc));
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.h 197 void *getPointerToFunction(Function *F) override { return (void*)F; }
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/MCJIT/
MCJIT.h 259 void *getPointerToFunction(Function *F) override;
MCJIT.cpp 413 void *MCJIT::getPointerToFunction(Function *F) {
516 void *FPtr = getPointerToFunction(F);
518 assert(FPtr && "Pointer to fn's code was null after getPointerToFunction");
  /src/external/apache2/llvm/dist/llvm/examples/ExceptionDemo/
ExceptionDemo.cpp 1557 reinterpret_cast<intptr_t>(engine->getPointerToFunction(function)));
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 567 return getPointerToFunction(F);

Completed in 29 milliseconds