Searched refs:inputOff (Results 1 – 6 of 6) sorted by relevance
| /freebsd/contrib/llvm-project/lld/ELF/ |
| H A D | InputSection.h | 321 : inputOff(off), live(live), hash(hash >> 1) {} in SectionPiece() 323 uint32_t inputOff; member 356 size_t begin = pieces[i].inputOff; in getData() 358 (pieces.size() - 1 == i) ? content().size() : pieces[i + 1].inputOff; in getData() 380 : inputOff(off), sec(sec), size(size), firstRelocation(firstRelocation) {} in EhSectionPiece() 383 return {sec->content().data() + this->inputOff, size}; in data() 386 size_t inputOff; member
|
| H A D | MapFile.cpp | 124 if (last.sec == p.sec && last.inputOff + last.size == p.inputOff && in printEhFrame() 146 << Twine::utohexstr(p.inputOff) + ")\n"; in printEhFrame()
|
| H A D | InputSection.cpp | 1410 fdes, [=](EhSectionPiece p) { return p.inputOff <= offset; }); in getParentOffset() 1411 if (it == fdes.begin() || it[-1].inputOff + it[-1].size <= offset) { in getParentOffset() 1413 cies, [=](EhSectionPiece p) { return p.inputOff <= offset; }); in getParentOffset() 1418 return offset - it[-1].inputOff; in getParentOffset() 1419 return it[-1].outputOff + (offset - it[-1].inputOff); in getParentOffset() 1505 pieces, [=](SectionPiece p) { return p.inputOff <= offset; })[-1]; in getSectionPiece() 1511 return piece.outputOff + (offset - piece.inputOff); in getParentOffset()
|
| H A D | Relocations.cpp | 424 while (j != fdes.end() && j->inputOff <= off) in get() 427 if (j == fdes.begin() || j[-1].inputOff + j[-1].size <= off) { in get() 428 while (i != cies.end() && i->inputOff <= off) in get() 430 if (i == cies.begin() || i[-1].inputOff + i[-1].size <= off) { in get() 440 return it[-1].outputOff + (off - it[-1].inputOff); in get()
|
| H A D | MarkLive.cpp | 199 uint64_t pieceEnd = fde.inputOff + fde.size; in scanEhFrameSection()
|
| H A D | SyntheticSections.cpp | 459 offsetToCie[cie.inputOff] = addCie<ELFT>(cie, rels); in addRecords() 462 CieRecord *rec = offsetToCie[fde.inputOff + 4 - id]; in addRecords() 493 ciesWithLSDA.insert(cie.inputOff); in iterateFDEWithLSDAAux() 496 if (!ciesWithLSDA.contains(fde.inputOff + 4 - id)) in iterateFDEWithLSDAAux()
|