Home
last modified time | relevance | path

Searched refs:inputOff (Results 1 – 8 of 8) sorted by relevance

/openbsd/src/gnu/llvm/lld/ELF/
DInputSection.h260 : inputOff(off), live(live), hash(hash >> 1) {} in SectionPiece()
262 uint32_t inputOff; member
294 size_t begin = pieces[i].inputOff; in getData()
296 (pieces.size() - 1 == i) ? content().size() : pieces[i + 1].inputOff; in getData()
318 : inputOff(off), sec(sec), size(size), firstRelocation(firstRelocation) {} in EhSectionPiece()
321 return {sec->content().data() + this->inputOff, size}; in data()
324 size_t inputOff; member
DMapFile.cpp123 if (last.sec == p.sec && last.inputOff + last.size == p.inputOff && in printEhFrame()
145 << Twine::utohexstr(p.inputOff) + ")\n"; in printEhFrame()
DInputSection.cpp1211 fdes, [=](EhSectionPiece p) { return p.inputOff <= offset; }); in getParentOffset()
1212 if (it == fdes.begin() || it[-1].inputOff + it[-1].size <= offset) { in getParentOffset()
1214 cies, [=](EhSectionPiece p) { return p.inputOff <= offset; }); in getParentOffset()
1219 return offset - it[-1].inputOff; in getParentOffset()
1220 return it[-1].outputOff + (offset - it[-1].inputOff); in getParentOffset()
1299 pieces, [=](SectionPiece p) { return p.inputOff <= offset; })[-1]; in getSectionPiece()
1305 return piece.outputOff + (offset - piece.inputOff); in getParentOffset()
DRelocations.cpp416 while (j != fdes.end() && j->inputOff <= off) in get()
419 if (j == fdes.begin() || j[-1].inputOff + j[-1].size <= off) { in get()
420 while (i != cies.end() && i->inputOff <= off) in get()
422 if (i == cies.begin() || i[-1].inputOff + i[-1].size <= off) in get()
430 return it[-1].outputOff + (off - it[-1].inputOff); in get()
DMarkLive.cpp153 uint64_t pieceEnd = fde.inputOff + fde.size; in scanEhFrameSection()
DSyntheticSections.cpp410 offsetToCie[cie.inputOff] = addCie<ELFT>(cie, rels); in addRecords()
413 CieRecord *rec = offsetToCie[fde.inputOff + 4 - id]; in addRecords()
443 ciesWithLSDA.insert(cie.inputOff); in iterateFDEWithLSDAAux()
446 if (!ciesWithLSDA.contains(fde.inputOff + 4 - id)) in iterateFDEWithLSDAAux()
/openbsd/src/gnu/llvm/lld/wasm/
DInputChunks.h158 : inputOff(off), live(live || !config->gcSections), hash(hash >> 1) {} in SectionPiece()
160 uint32_t inputOff; member
201 size_t begin = pieces[i].inputOff; in getData()
203 (pieces.size() - 1 == i) ? data().size() : pieces[i + 1].inputOff; in getData()
DInputChunks.cpp476 pieces, [=](SectionPiece p) { return p.inputOff <= offset; }); in getSectionPiece()
487 uint64_t addend = offset - piece->inputOff; in getParentOffset()