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

  /external/llvm/lib/ExecutionEngine/MCJIT/
MCJITMemoryManager.h 45 virtual void *getPointerToNamedFunction(const std::string &Name,
47 return JMM->getPointerToNamedFunction(Name, AbortOnFailure);
MCJIT.cpp 98 void *Addr = getPointerToNamedFunction(F->getName(), AbortOnFailure);
219 void *MCJIT::getPointerToNamedFunction(const std::string &Name,
222 void *ptr = MemMgr->getPointerToNamedFunction(Name, false);
  /external/llvm/tools/llvm-rtdyld/
llvm-rtdyld.cpp 61 virtual void *getPointerToNamedFunction(const std::string &Name,
  /external/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.h 118 virtual void *getPointerToNamedFunction(const std::string &Name,
  /external/llvm/lib/ExecutionEngine/JIT/
JIT.cpp 228 /// This class supports the global getPointerToNamedFunction(), which allows
242 void *getPointerToNamedFunction(const char *Name) const {
254 return (*JITs.begin())->getPointerToNamedFunction(Name);
260 // getPointerToNamedFunction - This function is used as a global wrapper to
261 // JIT::getPointerToNamedFunction for the purpose of resolving symbols when
265 void *getPointerToNamedFunction(const char *Name) {
266 return AllJits->getPointerToNamedFunction(Name);
671 void *Addr = getPointerToNamedFunction(F->getName(), AbortOnFailure);
717 void *JIT::getPointerToNamedFunction(const std::string &Name,
720 void *ptr = JMM->getPointerToNamedFunction(Name, false)
    [all...]
JITMemoryManager.cpp 329 /// getPointerToNamedFunction - This method returns the address of the
331 virtual void *getPointerToNamedFunction(const std::string &Name,
778 // getPointerToNamedFunction() implementation.
850 /// getPointerToNamedFunction - This method returns the address of the specified
854 void *DefaultJITMemoryManager::getPointerToNamedFunction(const std::string &Name
    [all...]
  /external/llvm/unittests/ExecutionEngine/JIT/
JITTest.cpp 67 virtual void *getPointerToNamedFunction(const std::string &Name,
69 return Base->getPointerToNamedFunction(Name, AbortOnFailure);

Completed in 89 milliseconds