Home
last modified time | relevance | path

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

/llvm-project/llvm/unittests/ExecutionEngine/MCJIT/
H A DMCJITMultipleModuleTest.cpp99 uint64_t ptr = TheJIT->getFunctionAddress(FA->getName().str()); in TEST_F()
102 ptr = TheJIT->getFunctionAddress(FB->getName().str()); in TEST_F()
119 uint64_t ptr = TheJIT->getFunctionAddress(FB->getName().str()); in TEST_F()
123 ptr = TheJIT->getFunctionAddress(FA->getName().str()); in TEST_F()
140 uint64_t ptr = TheJIT->getFunctionAddress(FB->getName().str()); in TEST_F()
144 ptr = TheJIT->getFunctionAddress(FA->getName().str()); in TEST_F()
161 uint64_t ptr = TheJIT->getFunctionAddress(FA->getName().str()); in TEST_F()
164 ptr = TheJIT->getFunctionAddress(FB->getName().str()); in TEST_F()
182 uint64_t ptr = TheJIT->getFunctionAddress(FB->getName().str()); in TEST_F()
186 ptr = TheJIT->getFunctionAddress(FA2->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/llvm/tools/llvm-readobj/
H A DStackMapPrinter.h26 W.startLine() << " Function address: " << F.getFunctionAddress() in prettyPrintStackMap()
H A DELFDumper.cpp7823 W.printHex("At", AM.getFunctionAddress()); in printBBAddrMaps()
7825 this->getSymbolIndexesForFunctionAddress(AM.getFunctionAddress(), in printBBAddrMaps()
7831 Twine::utohexstr(AM.getFunctionAddress()) + ") in " + in printBBAddrMaps()
/llvm-project/llvm/lib/ExecutionEngine/MCJIT/
H A DMCJIT.h283 uint64_t getFunctionAddress(const std::string &Name) override;
H A DMCJIT.cpp401 uint64_t MCJIT::getFunctionAddress(const std::string &Name) { in getGlobalValueAddress()
409 // Deprecated. Use getFunctionAddress instead. in getFunctionAddress()
609 "ExecutionEngine::getFunctionAddress and cast the result " in runFunction()
404 uint64_t MCJIT::getFunctionAddress(const std::string &Name) { getFunctionAddress() function in MCJIT
/llvm-project/llvm/include/llvm/Object/
H A DStackMapParser.h59 uint64_t getFunctionAddress() const { in getFunctionAddress() function
H A DELFTypes.h953 uint64_t getFunctionAddress() const {
/llvm-project/llvm/include/llvm/ExecutionEngine/
H A DExecutionEngine.h384 virtual uint64_t getFunctionAddress(const std::string &Name) { in getFunctionAddress() function
/llvm-project/llvm/lib/ExecutionEngine/
H A DExecutionEngineBindings.cpp307 return unwrap(EE)->getFunctionAddress(Name); in LLVMGetFunctionAddress()
/llvm-project/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h178 llvm::yaml::Hex64 getFunctionAddress() const { in getFunctionAddress() function
/llvm-project/llvm/tools/lli/
H A Dlli.cpp732 orc::ExecutorAddr(EE->getFunctionAddress(EntryFn->getName().str())); in main()
/llvm-project/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp1522 << E.getFunctionAddress(); in writeSectionContent()
/llvm-project/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp262 uint64_t FunctionAddr = AddrMap.getFunctionAddress(); in AddFunctionEntry()