Searched defs:getPointerToNamedFunction (Results 1 - 9 of 9) sorted by relevance

/external/llvm/lib/ExecutionEngine/MCJIT/
H A DMCJITMemoryManager.h41 virtual void *getPointerToNamedFunction(const std::string &Name, function in class:llvm::MCJITMemoryManager
43 return JMM->getPointerToNamedFunction(Name, AbortOnFailure);
H A DMCJIT.cpp127 void *Addr = getPointerToNamedFunction(F->getName(), AbortOnFailure);
252 void *MCJIT::getPointerToNamedFunction(const std::string &Name, function in class:MCJIT
259 void *ptr = MemMgr->getPointerToNamedFunction(Name, false);
/external/llvm/tools/lli/
H A DRecordingMemoryManager.cpp84 void *RecordingMemoryManager::getPointerToNamedFunction(const std::string &Name, function in class:RecordingMemoryManager
H A Dlli.cpp48 // These includes used by LLIMCJITMemoryManager::getPointerToNamedFunction()
218 virtual void *getPointerToNamedFunction(const std::string &Name,
341 void *LLIMCJITMemoryManager::getPointerToNamedFunction(const std::string &Name, function in class:LLIMCJITMemoryManager
/external/llvm/tools/llvm-rtdyld/
H A Dllvm-rtdyld.cpp61 virtual void *getPointerToNamedFunction(const std::string &Name, function in class:TrivialMemoryManager
/external/llvm/lib/ExecutionEngine/Interpreter/
H A DInterpreter.h118 virtual void *getPointerToNamedFunction(const std::string &Name, function in class:llvm::Interpreter
/external/llvm/lib/ExecutionEngine/JIT/
H A DJIT.cpp228 /// This class supports the global getPointerToNamedFunction(), which allows
242 void *getPointerToNamedFunction(const char *Name) const { function in class:__anon8762::JitPool
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) { function
266 return AllJits->getPointerToNamedFunction(Name);
676 void *Addr = getPointerToNamedFunction(F->getName(), AbortOnFailure);
722 void *JIT::getPointerToNamedFunction(const std::string &Name, function in class:JIT
725 void *ptr = JMM->getPointerToNamedFunction(Nam
[all...]
H A DJITMemoryManager.cpp329 /// getPointerToNamedFunction - This method returns the address of the
331 virtual void *getPointerToNamedFunction(const std::string &Name,
781 // getPointerToNamedFunction() implementation.
853 /// getPointerToNamedFunction - This method returns the address of the specified
857 void *DefaultJITMemoryManager::getPointerToNamedFunction(const std::string &Name, function in class:DefaultJITMemoryManager
897 if (void *Ptr = getPointerToNamedFunction(Prefix+"$LDBL128", false))
899 if (void *Ptr = getPointerToNamedFunction(Prefix, false))
/external/llvm/unittests/ExecutionEngine/JIT/
H A DJITTest.cpp67 virtual void *getPointerToNamedFunction(const std::string &Name, function in class:__anon9257::RecordingJITMemoryManager
69 return Base->getPointerToNamedFunction(Name, AbortOnFailure);

Completed in 120 milliseconds