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

  /external/llvm/lib/ExecutionEngine/
RTDyldMemoryManager.cpp 21 // These includes used by RTDyldMemoryManager::getPointerToNamedFunction()
271 void *RTDyldMemoryManager::getPointerToNamedFunction(const std::string &Name,
  /external/lldb/include/lldb/Expression/
IRExecutionUnit.h 394 virtual void *getPointerToNamedFunction(const std::string &Name,
396 return m_default_mm_ap->getPointerToNamedFunction(Name, AbortOnFailure);
  /external/llvm/lib/ExecutionEngine/MCJIT/
MCJIT.cpp 360 void *Addr = getPointerToNamedFunction(F->getName(), AbortOnFailure);
532 void *MCJIT::getPointerToNamedFunction(const std::string &Name,
535 void *ptr = MemMgr.getPointerToNamedFunction(Name, false);
  /external/llvm/lib/ExecutionEngine/JIT/
JIT.cpp 95 /// This class supports the global getPointerToNamedFunction(), which allows
109 void *getPointerToNamedFunction(const char *Name) const {
121 return (*JITs.begin())->getPointerToNamedFunction(Name);
127 // getPointerToNamedFunction - This function is used as a global wrapper to
128 // JIT::getPointerToNamedFunction for the purpose of resolving symbols when
132 void *getPointerToNamedFunction(const char *Name) {
133 return AllJits->getPointerToNamedFunction(Name);
524 void *Addr = getPointerToNamedFunction(F->getName(), AbortOnFailure);
570 void *JIT::getPointerToNamedFunction(const std::string &Name,
573 void *ptr = JMM->getPointerToNamedFunction(Name, false)
    [all...]
JITMemoryManager.cpp 336 /// getPointerToNamedFunction - This method returns the address of the
338 void *getPointerToNamedFunction(const std::string &Name,
766 // getPointerToNamedFunction() implementation.
838 /// getPointerToNamedFunction - This method returns the address of the specified
842 void *DefaultJITMemoryManager::getPointerToNamedFunction(const std::string &Name
    [all...]
  /external/llvm/unittests/ExecutionEngine/JIT/
JITTest.cpp 86 virtual void *getPointerToNamedFunction(const std::string &Name,
88 return Base->getPointerToNamedFunction(Name, AbortOnFailure);
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy.cpp 747 void *getPointerToNamedFunction(const std::string &Name);
780 virtual void *getPointerToNamedFunction(const std::string &Name,
786 void *HelpingMemoryManager::getPointerToNamedFunction(const std::string &Name,
790 void *pfn = SectionMemoryManager::getPointerToNamedFunction(Name, false);
794 pfn = MasterHelper->getPointerToNamedFunction(Name);
955 void *MCJITHelper::getPointerToNamedFunction(const std::string &Name)
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 789 virtual void *getPointerToNamedFunction(const std::string &Name) = 0;
860 virtual void *getPointerToNamedFunction(const std::string &Name) {
861 return TheExecutionEngine->getPointerToNamedFunction(Name);
905 void *getPointerToNamedFunction(const std::string &Name);
943 virtual void *getPointerToNamedFunction(const std::string &Name,
949 void *HelpingMemoryManager::getPointerToNamedFunction(const std::string &Name,
953 void *pfn = RTDyldMemoryManager::getPointerToNamedFunction(Name, false);
957 pfn = MasterHelper->getPointerToNamedFunction(Name);
1126 void *MCJITHelper::getPointerToNamedFunction(const std::string &Name)
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 658 void *getPointerToNamedFunction(const std::string &Name);
688 virtual void *getPointerToNamedFunction(const std::string &Name,
694 void *HelpingMemoryManager::getPointerToNamedFunction(const std::string &Name,
698 void *pfn = SectionMemoryManager::getPointerToNamedFunction(Name, false);
702 pfn = MasterHelper->getPointerToNamedFunction(Name);
828 void *MCJITHelper::getPointerToNamedFunction(const std::string &Name)
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy.cpp 660 void *getPointerToNamedFunction(const std::string &Name);
691 virtual void *getPointerToNamedFunction(const std::string &Name,
697 void *HelpingMemoryManager::getPointerToNamedFunction(const std::string &Name,
701 void *pfn = SectionMemoryManager::getPointerToNamedFunction(Name, false);
705 pfn = MasterHelper->getPointerToNamedFunction(Name);
857 void *MCJITHelper::getPointerToNamedFunction(const std::string &Name)
    [all...]

Completed in 1003 milliseconds