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

  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/
Intercept.cpp 96 /// getPointerToNamedFunction - This method returns the address of the specified
100 void *JIT::getPointerToNamedFunction(const std::string &Name,
141 if (void *Ptr = getPointerToNamedFunction(Prefix+"$LDBL128", false))
143 if (void *Ptr = getPointerToNamedFunction(Prefix, false))
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);
670 void *Addr = getPointerToNamedFunction(F->getName(), AbortOnFailure);
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/MCJIT/
Intercept.cpp 99 /// getPointerToNamedFunction - This method returns the address of the specified
103 void *MCJIT::getPointerToNamedFunction(const std::string &Name,
144 if (void *Ptr = getPointerToNamedFunction(Prefix+"$LDBL128", false))
146 if (void *Ptr = getPointerToNamedFunction(Prefix, false))
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RTDyldMemoryManager.cpp 22 // These includes used by RTDyldMemoryManager::getPointerToNamedFunction()
277 void *RTDyldMemoryManager::getPointerToNamedFunction(const std::string &Name,
  /external/llvm/lib/ExecutionEngine/MCJIT/
MCJIT.cpp 402 void *Addr = getPointerToNamedFunction(Name, AbortOnFailure);
593 void *MCJIT::getPointerToNamedFunction(StringRef Name, bool AbortOnFailure) {
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_misc.cpp 361 virtual void *getPointerToNamedFunction(const std::string &Name,
363 return mgr()->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);
954 void *MCJITHelper::getPointerToNamedFunction(const std::string &Name)
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 784 virtual void *getPointerToNamedFunction(const std::string &Name) = 0;
810 void *getPointerToNamedFunction(const std::string &Name);
848 virtual void *getPointerToNamedFunction(const std::string &Name,
854 void *HelpingMemoryManager::getPointerToNamedFunction(const std::string &Name,
858 void *pfn = RTDyldMemoryManager::getPointerToNamedFunction(Name, false);
862 pfn = MasterHelper->getPointerToNamedFunction(Name);
1030 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);
827 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);
856 void *MCJITHelper::getPointerToNamedFunction(const std::string &Name)
    [all...]

Completed in 680 milliseconds