Searched refs:inputOff (Results 1 – 8 of 8) sorted by relevance
| /llvm-project-15.0.7/lld/ELF/ |
| H A D | InputSection.h | 253 : inputOff(off), live(live), hash(hash >> 1) {} in SectionPiece() 255 uint32_t inputOff; member 287 size_t begin = pieces[i].inputOff; in getData() 289 (pieces.size() - 1 == i) ? rawData.size() : pieces[i + 1].inputOff; in getData() 309 : inputOff(off), sec(sec), size(size), firstRelocation(firstRelocation) {} in EhSectionPiece() 312 return {sec->rawData.data() + this->inputOff, size}; in data() 315 size_t inputOff; member
|
| H A D | MapFile.cpp | 123 if (last.sec == p.sec && last.inputOff + last.size == p.inputOff && in printEhFrame() 145 << Twine::utohexstr(p.inputOff) + ")\n"; in printEhFrame()
|
| H A D | InputSection.cpp | 1331 pieces, [=](EhSectionPiece p) { return p.inputOff <= offset; })[-1]; in getParentOffset() 1333 return offset - piece.inputOff; in getParentOffset() 1334 return piece.outputOff + (offset - piece.inputOff); in getParentOffset() 1417 pieces, [=](SectionPiece p) { return p.inputOff <= offset; })[-1]; in getSectionPiece() 1423 return piece.outputOff + (offset - piece.inputOff); in getParentOffset()
|
| H A D | MarkLive.cpp | 159 uint64_t pieceEnd = piece.inputOff + piece.size; in scanEhFrameSection()
|
| H A D | Relocations.cpp | 411 while (i != pieces.size() && pieces[i].inputOff + pieces[i].size <= off) in get() 417 assert(pieces[i].inputOff <= off && "Relocation not in any piece"); in get() 422 return pieces[i].outputOff + off - pieces[i].inputOff; in get()
|
| H A D | SyntheticSections.cpp | 413 size_t offset = piece.inputOff; in addRecords() 465 size_t offset = piece.inputOff; in iterateFDEWithLSDAAux()
|
| /llvm-project-15.0.7/lld/wasm/ |
| H A D | InputChunks.h | 157 : inputOff(off), live(live || !config->gcSections), hash(hash >> 1) {} in SectionPiece() 159 uint32_t inputOff; member 200 size_t begin = pieces[i].inputOff; in getData() 202 (pieces.size() - 1 == i) ? data().size() : pieces[i + 1].inputOff; in getData()
|
| H A D | InputChunks.cpp | 476 pieces, [=](SectionPiece p) { return p.inputOff <= offset; }); in getSectionPiece() 487 uint64_t addend = offset - piece->inputOff; in getParentOffset()
|