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

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

Completed in 117 milliseconds