Home
last modified time | relevance | path

Searched refs:getLoadAddress (Results 1 – 18 of 18) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A DRuntimeDyldCOFFThumb.h236 // NOTE: use Section[0].getLoadAddress() as an approximation of ImageBase in resolveRelocation()
237 uint64_t Result = Sections[RE.Sections.SectionA].getLoadAddress() - in resolveRelocation()
238 Sections[0].getLoadAddress() + RE.Addend; in resolveRelocation()
298 RE.Addend - (Sections[RE.SectionID].getLoadAddress() + RE.Offset) - 4; in resolveRelocation()
313 RE.Addend - (Sections[RE.SectionID].getLoadAddress() + RE.Offset) - 4; in resolveRelocation()
328 RE.Addend - (Sections[RE.SectionID].getLoadAddress() + RE.Offset) - 4;
H A DRuntimeDyldCOFFI386.h168 // NOTE: use Section[0].getLoadAddress() as an approximation of ImageBase in resolveRelocation()
171 Sections[0].getLoadAddress(); in resolveRelocation()
185 : Sections[RE.Sections.SectionA].getLoadAddress(); in resolveRelocation()
186 Result = Result - Section.getLoadAddress() + RE.Addend - 4 - RE.Offset; in resolveRelocation()
H A DRuntimeDyldCOFFX86_64.h44 if (Section.getLoadAddress() != 0) in getImageBase()
45 ImageBase = std::min(ImageBase, Section.getLoadAddress()); in getImageBase()
291 uint64_t EHFrameLoadAddr = Sections[EHFrameSID].getLoadAddress();
H A DRuntimeDyldMachOX86_64.h111 uint64_t SectionABase = Sections[RE.Sections.SectionA].getLoadAddress(); in resolveRelocation()
112 uint64_t SectionBBase = Sections[RE.Sections.SectionB].getLoadAddress(); in resolveRelocation()
H A DRuntimeDyldMachOI386.h114 uint64_t SectionABase = Sections[RE.Sections.SectionA].getLoadAddress(); in resolveRelocation()
115 uint64_t SectionBBase = Sections[RE.Sections.SectionB].getLoadAddress(); in resolveRelocation()
H A DRuntimeDyldCOFFAArch64.h84 if (Section.getLoadAddress() != 0) in getImageBase()
85 ImageBase = std::min(ImageBase, Section.getLoadAddress()); in getImageBase()
H A DRuntimeDyldMachOARM.h259 uint64_t SectionABase = Sections[RE.Sections.SectionA].getLoadAddress(); in resolveRelocation()
260 uint64_t SectionBBase = Sections[RE.Sections.SectionB].getLoadAddress(); in resolveRelocation()
H A DRuntimeDyldMachOAArch64.h418 uint64_t SectionABase = Sections[RE.Sections.SectionA].getLoadAddress(); in resolveRelocation()
419 uint64_t SectionBBase = Sections[RE.Sections.SectionB].getLoadAddress(); in resolveRelocation()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldCOFF.cpp111 << formatv("{0:x16} + {1:x8} ( {2:x16} )", Sec.getLoadAddress(), in getDLLImportOffset()
112 EntryOffset, Sec.getLoadAddress() + EntryOffset) in getDLLImportOffset()
H A DRuntimeDyldMachO.cpp152 uint64_t FinalAddress = Section.getLoadAddress() + RE.Offset; in dumpRelocationToResolve()
313 int64_t MemDistance = A->getLoadAddress() - B->getLoadAddress(); in computeDelta()
342 MemMgr.registerEHFrames(EHFrame->getAddress(), EHFrame->getLoadAddress(), in registerEHFrames()
H A DRuntimeDyldImpl.h96 uint64_t getLoadAddress() const { return LoadAddress; } in getLoadAddress() function
478 return Sections[SectionID].getLoadAddress(); in getSectionLoadAddress()
H A DRuntimeDyld.cpp93 uint64_t LoadAddr = S.getLoadAddress(); in dumpSectionMemory()
1093 << format("0x%016" PRIx64, Sections[SectionID].getLoadAddress()) in reassignSectionAddress()
1277 return RTDyld.Sections[I->second].getLoadAddress(); in getSectionLoadAddress()
H A DRuntimeDyldELF.cpp225 uint64_t EHFrameLoadAddr = Sections[EHFrameSID].getLoadAddress(); in registerEHFrames()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DNativeSession.cpp205 uint64_t NativeSession::getLoadAddress() const { return LoadAddress; } in getLoadAddress() function in NativeSession
223 uint32_t RVA = VA - getLoadAddress(); in addressForVA()
288 return Cache.findLineNumbersByVA(getLoadAddress() + RVA, Length); in findLineNumbersByRVA()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/
H A DIPDBSession.h29 virtual uint64_t getLoadAddress() const = 0;
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/DIA/
H A DDIASession.h31 uint64_t getLoadAddress() const override;
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DNativeSession.h51 uint64_t getLoadAddress() const override;
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/DIA/
H A DDIASession.cpp138 uint64_t DIASession::getLoadAddress() const { in getLoadAddress() function in DIASession