| /external/llvm/unittests/ExecutionEngine/JIT/ |
| MultiJITTest.cpp | 133 extern void *getPointerToNamedFunction(const char *Name); 158 EXPECT_EQ(getPointerToNamedFunction("foo1"), foo1); 161 EXPECT_EQ(getPointerToNamedFunction("foo2"), foo2); 165 sa = (intptr_t)getPointerToNamedFunction("getPointerToNamedFunction"); 167 intptr_t fa = (intptr_t)&getPointerToNamedFunction; 170 // getPointerToNamedFunction might be indirect jump on Win32 --enable-shared. 178 // getPointerToNamedFunction might be indirect jump
|
| JITTest.cpp | 86 virtual void *getPointerToNamedFunction(const std::string &Name, 88 return Base->getPointerToNamedFunction(Name, AbortOnFailure);
|
| /external/llvm/include/llvm/ExecutionEngine/ |
| RTDyldMemoryManager.h | 92 virtual void *getPointerToNamedFunction(const std::string &Name,
|
| ExecutionEngine.h | 257 /// getPointerToNamedFunction - This method returns the address of the 270 virtual void *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/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...] |
| JIT.h | 120 /// getPointerToNamedFunction - This method returns the address of the 128 void *getPointerToNamedFunction(const std::string &Name,
|
| 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...] |
| JITEmitter.cpp | 836 ResultPtr = TheJIT->getPointerToNamedFunction(MR.getExternalSymbol(), [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/lib/ExecutionEngine/ |
| RTDyldMemoryManager.cpp | 21 // These includes used by RTDyldMemoryManager::getPointerToNamedFunction() 271 void *RTDyldMemoryManager::getPointerToNamedFunction(const std::string &Name,
|
| /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...] |
| /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);
|
| MCJIT.h | 290 /// getPointerToNamedFunction - This method returns the address of the 298 void *getPointerToNamedFunction(const std::string &Name,
|
| /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/lib/ExecutionEngine/Interpreter/ |
| Interpreter.h | 118 void *getPointerToNamedFunction(const std::string &Name,
|
| /external/llvm/tools/llvm-rtdyld/ |
| llvm-rtdyld.cpp | 97 void *getPointerToNamedFunction(const std::string &Name,
|