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

  /external/llvm/lib/ExecutionEngine/MCJIT/
SectionMemoryManager.cpp 21 // These includes used by SectionMemoryManager::getPointerToNamedFunction()
169 void *SectionMemoryManager::getPointerToNamedFunction(const std::string &Name,
MCJIT.cpp 159 void *Addr = getPointerToNamedFunction(F->getName(), AbortOnFailure);
284 void *MCJIT::getPointerToNamedFunction(const std::string &Name,
291 void *ptr = MemMgr->getPointerToNamedFunction(Name, false);
  /external/llvm/tools/lli/
RecordingMemoryManager.cpp 117 void *RecordingMemoryManager::getPointerToNamedFunction(const std::string &Name,
  /external/llvm/tools/llvm-rtdyld/
llvm-rtdyld.cpp 67 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);
677 void *Addr = getPointerToNamedFunction(F->getName(), AbortOnFailure);
723 void *JIT::getPointerToNamedFunction(const std::string &Name,
726 void *ptr = JMM->getPointerToNamedFunction(Name, false)
    [all...]
JITMemoryManager.cpp 333 /// getPointerToNamedFunction - This method returns the address of the
335 virtual void *getPointerToNamedFunction(const std::string &Name,
789 // getPointerToNamedFunction() implementation.
    [all...]
  /external/llvm/unittests/ExecutionEngine/JIT/
JITTest.cpp 66 virtual void *getPointerToNamedFunction(const std::string &Name,
68 return Base->getPointerToNamedFunction(Name, AbortOnFailure);

Completed in 6665 milliseconds