Home
last modified time | relevance | path

Searched refs:getSymbolAddress (Results 1 – 22 of 22) sorted by relevance

/external/llvm/lib/Target/X86/MCTargetDesc/
DX86MachObjectWriter.cpp187 Value += Writer->getSymbolAddress(&A_SD, Layout) - in RecordX86_64Relocation()
188 (!A_Base ? 0 : Writer->getSymbolAddress(A_Base, Layout)); in RecordX86_64Relocation()
189 Value -= Writer->getSymbolAddress(&B_SD, Layout) - in RecordX86_64Relocation()
190 (!B_Base ? 0 : Writer->getSymbolAddress(B_Base, Layout)); in RecordX86_64Relocation()
239 Value += Writer->getSymbolAddress(&SD, Layout); in RecordX86_64Relocation()
364 uint32_t Value = Writer->getSymbolAddress(A_SD, Layout); in RecordScatteredRelocation()
384 Value2 = Writer->getSymbolAddress(B_SD, Layout); in RecordScatteredRelocation()
466 FixedValue = (FixupAddress - Writer->getSymbolAddress(SD_B, Layout) + in RecordTLVPRelocation()
/external/llvm/include/llvm/ExecutionEngine/
DRTDyldMemoryManager.h72 virtual uint64_t getSymbolAddress(const std::string &Name) { in getSymbolAddress() function
88 return RuntimeDyld::SymbolInfo(getSymbolAddress(Name), in findSymbol()
/external/llvm/lib/Target/AArch64/MCTargetDesc/
DAArch64MachObjectWriter.cpp269 : Writer->getSymbolAddress(&A_SD, Layout)) - in RecordRelocation()
272 : Writer->getSymbolAddress(A_Base, Layout)); in RecordRelocation()
274 : Writer->getSymbolAddress(&B_SD, Layout)) - in RecordRelocation()
277 : Writer->getSymbolAddress(B_Base, Layout)); in RecordRelocation()
358 Value += Writer->getSymbolAddress(&SD, Layout); in RecordRelocation()
/external/llvm/lib/ExecutionEngine/Orc/
DOrcMCJITReplacement.h190 uint64_t getSymbolAddress(StringRef Name) { in getSymbolAddress() function
211 return getSymbolAddress(Name); in getGlobalValueAddress()
215 return getSymbolAddress(Name); in getFunctionAddress()
219 uint64_t FAddr = getSymbolAddress(F->getName()); in getPointerToFunction()
225 uint64_t Addr = getSymbolAddress(Name);
/external/llvm/examples/Kaleidoscope/Chapter4/
Dtoy.cpp436 void *getSymbolAddress(const std::string &Name);
461 uint64_t getSymbolAddress(const std::string &Name) override;
467 uint64_t HelpingMemoryManager::getSymbolAddress(const std::string &Name) { in getSymbolAddress() function in HelpingMemoryManager
468 uint64_t FnAddr = SectionMemoryManager::getSymbolAddress(Name); in getSymbolAddress()
472 uint64_t HelperFun = (uint64_t)MasterHelper->getSymbolAddress(Name); in getSymbolAddress()
597 void *MCJITHelper::getSymbolAddress(const std::string &Name) { in getSymbolAddress() function in MCJITHelper
/external/llvm/lib/Target/ARM/MCTargetDesc/
DARMMachObjectWriter.cpp162 uint32_t Value = Writer->getSymbolAddress(A_SD, Layout); in RecordARMScatteredHalfRelocation()
178 Value2 = Writer->getSymbolAddress(B_SD, Layout); in RecordARMScatteredHalfRelocation()
265 uint32_t Value = Writer->getSymbolAddress(A_SD, Layout); in RecordARMScatteredRelocation()
281 Value2 = Writer->getSymbolAddress(B_SD, Layout); in RecordARMScatteredRelocation()
/external/llvm/lib/MC/
DMCLinkerOptimizationHint.cpp33 encodeULEB128(ObjWriter.getSymbolAddress(&Asm.getSymbolData(**It), Layout), in Emit_impl()
DMachObjectWriter.cpp76 uint64_t MachObjectWriter::getSymbolAddress(const MCSymbolData* SD, in getSymbolAddress() function in MachObjectWriter
102 Address += getSymbolAddress(&Layout.getAssembler().getSymbolData( in getSymbolAddress()
105 Address += getSymbolAddress(&Layout.getAssembler().getSymbolData( in getSymbolAddress()
368 Address = getSymbolAddress(&Data, Layout); in WriteNlist()
943 getSymbolAddress(&Layout.getAssembler().getSymbolData(*Data->Start), in WriteObject()
946 getSymbolAddress(&Layout.getAssembler().getSymbolData(*Data->End), in WriteObject()
/external/llvm/tools/lli/
DRemoteMemoryManager.h81 uint64_t getSymbolAddress(const std::string &Name) override { return 0; } in getSymbolAddress() function
/external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/
DREADME.txt11 KaleidoscopeJIT::getSymbolAddress will scan the AST map and generate IR on the
/external/llvm/lib/Target/PowerPC/MCTargetDesc/
DPPCMachObjectWriter.cpp215 uint32_t Value = Writer->getSymbolAddress(A_SD, Layout); in RecordScatteredRelocation()
229 Value2 = Writer->getSymbolAddress(B_SD, Layout); in RecordScatteredRelocation()
/external/llvm/lib/ExecutionEngine/MCJIT/
DMCJIT.cpp296 uint64_t MCJIT::getSymbolAddress(const std::string &Name, in getSymbolAddress() function in MCJIT
354 uint64_t Result = getSymbolAddress(Name, false); in getGlobalValueAddress()
362 uint64_t Result = getSymbolAddress(Name, true); in getFunctionAddress()
DMCJIT.h308 uint64_t getSymbolAddress(const std::string &Name,
/external/llvm/include/llvm/Object/
DObjectFile.h206 virtual std::error_code getSymbolAddress(DataRefImpl Symb,
332 return getObject()->getSymbolAddress(getRawDataRefImpl(), Result); in getAddress()
DELFObjectFile.h80 std::error_code getSymbolAddress(DataRefImpl Symb,
294 std::error_code ELFObjectFile<ELFT>::getSymbolAddress(DataRefImpl Symb, in getSymbolAddress() function
DMachO.h205 std::error_code getSymbolAddress(DataRefImpl Symb,
DCOFF.h585 std::error_code getSymbolAddress(DataRefImpl Symb,
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
DRTDyldMemoryManager.cpp286 uint64_t Addr = getSymbolAddress(Name); in getPointerToNamedFunction()
/external/llvm/include/llvm/MC/
DMCMachObjectWriter.h145 uint64_t getSymbolAddress(const MCSymbolData* SD,
/external/llvm/lib/Object/
DMachOObjectFile.cpp384 std::error_code MachOObjectFile::getSymbolAddress(DataRefImpl Symb, in getSymbolAddress() function in MachOObjectFile
424 getSymbolAddress(DRI, Value); in getSymbolSize()
446 getSymbolAddress(DRI, Value); in getSymbolSize()
509 getSymbolAddress(DRI, Value); in getSymbolFlags()
639 getSymbolAddress(Symb, SymAddr); in sectionContainsSymbol()
DCOFFObjectFile.cpp153 std::error_code COFFObjectFile::getSymbolAddress(DataRefImpl Ref, in getSymbolAddress() function in COFFObjectFile
255 if (std::error_code EC = getSymbolAddress(Ref, SymbAddr)) in getSymbolSize()
/external/llvm/docs/Frontend/
DPerformanceTips.rst93 dereferencability information. In MCJIT, use getSymbolAddress to provide