Searched refs:inputOff (Results 1 – 6 of 6) sorted by relevance
| /freebsd/contrib/llvm-project/lld/ELF/ |
| H A D | InputSection.h | 303 : inputOff(off), live(live), hash(hash >> 1) {} in SectionPiece() 305 uint32_t inputOff; member 338 size_t begin = pieces[i].inputOff; in getData() 340 (pieces.size() - 1 == i) ? content().size() : pieces[i + 1].inputOff; in getData() 362 : inputOff(off), sec(sec), size(size), firstRelocation(firstRelocation) {} in EhSectionPiece() 365 return {sec->content().data() + this->inputOff, size}; in data() 368 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 | 1341 fdes, [=](EhSectionPiece p) { return p.inputOff <= offset; }); in getParentOffset() 1342 if (it == fdes.begin() || it[-1].inputOff + it[-1].size <= offset) { in getParentOffset() 1344 cies, [=](EhSectionPiece p) { return p.inputOff <= offset; }); in getParentOffset() 1349 return offset - it[-1].inputOff; in getParentOffset() 1350 return it[-1].outputOff + (offset - it[-1].inputOff); in getParentOffset() 1429 pieces, [=](SectionPiece p) { return p.inputOff <= offset; })[-1]; in getSectionPiece() 1435 return piece.outputOff + (offset - piece.inputOff); in getParentOffset()
|
| H A D | Relocations.cpp | 436 while (j != fdes.end() && j->inputOff <= off) in get() 439 if (j == fdes.begin() || j[-1].inputOff + j[-1].size <= off) { in get() 440 while (i != cies.end() && i->inputOff <= off) in get() 442 if (i == cies.begin() || i[-1].inputOff + i[-1].size <= off) in get() 450 return it[-1].outputOff + (off - it[-1].inputOff); in get()
|
| H A D | MarkLive.cpp | 159 uint64_t pieceEnd = fde.inputOff + fde.size; in scanEhFrameSection()
|
| H A D | SyntheticSections.cpp | 440 offsetToCie[cie.inputOff] = addCie<ELFT>(cie, rels); in addRecords() 443 CieRecord *rec = offsetToCie[fde.inputOff + 4 - id]; in addRecords() 474 ciesWithLSDA.insert(cie.inputOff); in iterateFDEWithLSDAAux() 477 if (!ciesWithLSDA.contains(fde.inputOff + 4 - id)) in iterateFDEWithLSDAAux()
|