Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/unittests/ExecutionEngine/MCJIT/
H A DMCJITMultipleModuleTest.cpp102 ptr = TheJIT->getFunctionAddress(FB->getName().str()); in TEST_F()
123 ptr = TheJIT->getFunctionAddress(FA->getName().str()); in TEST_F()
144 ptr = TheJIT->getFunctionAddress(FA->getName().str()); in TEST_F()
164 ptr = TheJIT->getFunctionAddress(FB->getName().str()); in TEST_F()
186 ptr = TheJIT->getFunctionAddress(FA2->getName().str()); in TEST_F()
262 ptr = TheJIT->getFunctionAddress(FB->getName().str()); in TEST_F()
265 ptr = TheJIT->getFunctionAddress(FA->getName().str()); in TEST_F()
287 ptr = TheJIT->getFunctionAddress(FB->getName().str()); in TEST_F()
290 ptr = TheJIT->getFunctionAddress(FC->getName().str()); in TEST_F()
312 ptr = TheJIT->getFunctionAddress(FB->getName().str()); in TEST_F()
[all …]
H A DMCJITTest.cpp65 uint64_t addPtr = TheJIT->getFunctionAddress(F->getName().str()); in TEST_F()
86 uint64_t ptr = TheJIT->getFunctionAddress(Main->getName().str()); in TEST_F()
108 uint64_t rgvPtr = TheJIT->getFunctionAddress(ReturnGlobal->getName().str()); in TEST_F()
185 uint64_t ptr = TheJIT->getFunctionAddress(Outer->getName().str()); in TEST_F()
/llvm-project-15.0.7/llvm/tools/llvm-readobj/
H A DStackMapPrinter.h26 W.startLine() << " Function address: " << F.getFunctionAddress() in prettyPrintStackMap()
/llvm-project-15.0.7/llvm/lib/ExecutionEngine/MCJIT/
H A DMCJIT.h283 uint64_t getFunctionAddress(const std::string &Name) override;
H A DMCJIT.cpp404 uint64_t MCJIT::getFunctionAddress(const std::string &Name) { in getFunctionAddress() function in MCJIT
/llvm-project-15.0.7/llvm/include/llvm/Object/
H A DStackMapParser.h60 uint64_t getFunctionAddress() const { in getFunctionAddress() function
/llvm-project-15.0.7/llvm/include/llvm/ExecutionEngine/
H A DExecutionEngine.h384 virtual uint64_t getFunctionAddress(const std::string &Name) { in getFunctionAddress() function
/llvm-project-15.0.7/llvm/tools/llvm-exegesis/lib/
H A DAssembler.cpp318 const uint64_t FunctionAddress = ExecEngine->getFunctionAddress(FunctionID); in ExecutableFunction()
/llvm-project-15.0.7/llvm/lib/ExecutionEngine/
H A DExecutionEngineBindings.cpp307 return unwrap(EE)->getFunctionAddress(Name); in LLVMGetFunctionAddress()
/llvm-project-15.0.7/llvm/tools/lli/
H A Dlli.cpp789 orc::ExecutorAddr(EE->getFunctionAddress(EntryFn->getName().str())); in main()