/external/llvm/include/llvm/ExecutionEngine/ |
RTDyldMemoryManager.h | 59 virtual void *getPointerToNamedFunction(const std::string &Name,
|
ExecutionEngine.h | 235 /// getPointerToNamedFunction - This method returns the address of the 243 virtual void *getPointerToNamedFunction(const std::string &Name,
|
/external/llvm/unittests/ExecutionEngine/JIT/ |
MultiJITTest.cpp | 132 extern void *getPointerToNamedFunction(const char *Name); 157 EXPECT_EQ(getPointerToNamedFunction("foo1"), foo1); 160 EXPECT_EQ(getPointerToNamedFunction("foo2"), foo2); 164 sa = (intptr_t)getPointerToNamedFunction("getPointerToNamedFunction"); 166 intptr_t fa = (intptr_t)&getPointerToNamedFunction; 169 // getPointerToNamedFunction might be indirect jump on Win32 --enable-shared.
|
JITTest.cpp | 85 virtual void *getPointerToNamedFunction(const std::string &Name, 87 return Base->getPointerToNamedFunction(Name, AbortOnFailure);
|
/external/llvm/lib/ExecutionEngine/MCJIT/ |
MCJIT.h | 75 /// getPointerToNamedFunction - This method returns the address of the 83 virtual void *getPointerToNamedFunction(const std::string &Name,
|
MCJIT.cpp | 200 void *Addr = getPointerToNamedFunction(F->getName(), AbortOnFailure); 325 void *MCJIT::getPointerToNamedFunction(const std::string &Name, 332 void *ptr = MemMgr->getPointerToNamedFunction(Name, false);
|
/external/llvm/lib/ExecutionEngine/ |
RTDyldMemoryManager.cpp | 22 // These includes used by RTDyldMemoryManager::getPointerToNamedFunction() 71 void *RTDyldMemoryManager::getPointerToNamedFunction(const std::string &Name,
|
/external/llvm/tools/lli/ |
RecordingMemoryManager.h | 58 void *getPointerToNamedFunction(const std::string &Name,
|
RecordingMemoryManager.cpp | 106 void *RecordingMemoryManager::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...] |
JIT.h | 120 /// getPointerToNamedFunction - This method returns the address of the 128 virtual void *getPointerToNamedFunction(const std::string &Name,
|
JITMemoryManager.cpp | 333 /// getPointerToNamedFunction - This method returns the address of the 335 virtual void *getPointerToNamedFunction(const std::string &Name, 768 // getPointerToNamedFunction() implementation. 840 /// getPointerToNamedFunction - This method returns the address of the specified 844 void *DefaultJITMemoryManager::getPointerToNamedFunction(const std::string &Name, [all...] |
JITEmitter.cpp | 831 ResultPtr = TheJIT->getPointerToNamedFunction(MR.getExternalSymbol(), [all...] |
/external/llvm/examples/Kaleidoscope/MCJIT/complete/ |
toy.cpp | 788 virtual void *getPointerToNamedFunction(const std::string &Name) = 0; 859 virtual void *getPointerToNamedFunction(const std::string &Name) { 860 return TheExecutionEngine->getPointerToNamedFunction(Name); 904 void *getPointerToNamedFunction(const std::string &Name); 942 virtual void *getPointerToNamedFunction(const std::string &Name, 948 void *HelpingMemoryManager::getPointerToNamedFunction(const std::string &Name, 952 void *pfn = RTDyldMemoryManager::getPointerToNamedFunction(Name, false); 956 pfn = MasterHelper->getPointerToNamedFunction(Name); 1125 void *MCJITHelper::getPointerToNamedFunction(const std::string &Name) [all...] |
/external/llvm/examples/Kaleidoscope/MCJIT/initial/ |
toy.cpp | 657 void *getPointerToNamedFunction(const std::string &Name); 687 virtual void *getPointerToNamedFunction(const std::string &Name, 693 void *HelpingMemoryManager::getPointerToNamedFunction(const std::string &Name, 697 void *pfn = SectionMemoryManager::getPointerToNamedFunction(Name, false); 701 pfn = MasterHelper->getPointerToNamedFunction(Name); 827 void *MCJITHelper::getPointerToNamedFunction(const std::string &Name) [all...] |
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/ |
toy.cpp | 659 void *getPointerToNamedFunction(const std::string &Name); 690 virtual void *getPointerToNamedFunction(const std::string &Name, 696 void *HelpingMemoryManager::getPointerToNamedFunction(const std::string &Name, 700 void *pfn = SectionMemoryManager::getPointerToNamedFunction(Name, false); 704 pfn = MasterHelper->getPointerToNamedFunction(Name); 856 void *MCJITHelper::getPointerToNamedFunction(const std::string &Name) [all...] |
/external/llvm/examples/Kaleidoscope/MCJIT/cached/ |
toy.cpp | 746 void *getPointerToNamedFunction(const std::string &Name); 779 virtual void *getPointerToNamedFunction(const std::string &Name, 785 void *HelpingMemoryManager::getPointerToNamedFunction(const std::string &Name, 789 void *pfn = SectionMemoryManager::getPointerToNamedFunction(Name, false); 793 pfn = MasterHelper->getPointerToNamedFunction(Name); 954 void *MCJITHelper::getPointerToNamedFunction(const std::string &Name) [all...] |
/external/llvm/lib/ExecutionEngine/Interpreter/ |
Interpreter.h | 118 virtual void *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/RuntimeDyld/ |
RuntimeDyld.cpp | 471 uint8_t *Addr = (uint8_t*) MemMgr->getPointerToNamedFunction(Name.data(),
|