Home
last modified time | relevance | path

Searched refs:getFunctionAddress (Results 1 – 6 of 6) sorted by relevance

/external/llvm/unittests/ExecutionEngine/MCJIT/
DMCJITMultipleModuleTest.cpp100 uint64_t ptr = TheJIT->getFunctionAddress(FA->getName().str()); in TEST_F()
103 ptr = TheJIT->getFunctionAddress(FB->getName().str()); in TEST_F()
120 uint64_t ptr = TheJIT->getFunctionAddress(FB->getName().str()); in TEST_F()
124 ptr = TheJIT->getFunctionAddress(FA->getName().str()); in TEST_F()
141 uint64_t ptr = TheJIT->getFunctionAddress(FB->getName().str()); in TEST_F()
145 ptr = TheJIT->getFunctionAddress(FA->getName().str()); in TEST_F()
162 uint64_t ptr = TheJIT->getFunctionAddress(FA->getName().str()); in TEST_F()
165 ptr = TheJIT->getFunctionAddress(FB->getName().str()); in TEST_F()
183 uint64_t ptr = TheJIT->getFunctionAddress(FB->getName().str()); in TEST_F()
187 ptr = TheJIT->getFunctionAddress(FA2->getName().str()); in TEST_F()
[all …]
DMCJITTest.cpp66 uint64_t addPtr = TheJIT->getFunctionAddress(F->getName().str()); in TEST_F()
87 uint64_t ptr = TheJIT->getFunctionAddress(Main->getName().str()); in TEST_F()
108 uint64_t rgvPtr = TheJIT->getFunctionAddress(ReturnGlobal->getName().str()); in TEST_F()
179 uint64_t ptr = TheJIT->getFunctionAddress(Outer->getName().str()); in TEST_F()
/external/llvm/lib/ExecutionEngine/MCJIT/
DMCJIT.h316 uint64_t getFunctionAddress(const std::string &Name) override;
DMCJIT.cpp346 uint64_t MCJIT::getFunctionAddress(const std::string &Name) { in getFunctionAddress() function in MCJIT
/external/llvm/include/llvm/ExecutionEngine/
DExecutionEngine.h407 virtual uint64_t getFunctionAddress(const std::string &Name) { in getFunctionAddress() function
/external/llvm/tools/lli/
Dlli.cpp706 uint64_t Entry = EE->getFunctionAddress(EntryFn->getName().str()); in main()