Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lld/ELF/
H A DInputSection.h226 : InputOff(Off), Hash(Hash), OutputOff(0), in SectionPiece()
229 uint32_t InputOff; member
261 size_t Begin = Pieces[I].InputOff; in getData()
263 (Pieces.size() - 1 == I) ? data().size() : Pieces[I + 1].InputOff; in getData()
283 : InputOff(Off), Sec(Sec), Size(Size), FirstRelocation(FirstRelocation) {} in EhSectionPiece()
286 return {Sec->data().data() + this->InputOff, Size}; in data()
289 size_t InputOff; member
H A DMapFile.cpp119 if (Last.Sec == P.Sec && Last.InputOff + Last.Size == P.InputOff && in printEhFrame()
140 << Twine::utohexstr(P.InputOff) + ")\n"; in printEhFrame()
H A DMarkLive.cpp141 typename ELFT::uint PieceEnd = Piece.InputOff + Piece.Size; in scanEhFrameSection()
H A DRelocations.cpp725 while (I != Pieces.size() && Pieces[I].InputOff + Pieces[I].Size <= Off) in get()
731 assert(Pieces[I].InputOff <= Off && "Relocation not in any piece"); in get()
736 return Pieces[I].OutputOff + Off - Pieces[I].InputOff; in get()
H A DInputSection.cpp1224 return Offset < P.InputOff; in getSectionPiece()
1237 uint64_t Addend = Offset - Piece.InputOff; in getParentOffset()
H A DSyntheticSections.cpp427 size_t Offset = Piece.InputOff; in addSectionAux()