Searched refs:SectionPiece (Results 1 - 2 of 2) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/lld/ELF/
H A DInputSection.h25 struct SectionPiece;
253 // SectionPiece represents a piece of splittable section contents.
257 struct SectionPiece { struct in namespace:lld::elf
258 SectionPiece(size_t off, uint32_t hash, bool live) function in struct:lld::elf::SectionPiece
267 static_assert(sizeof(SectionPiece) == 16, "SectionPiece is too big");
287 std::vector<SectionPiece> pieces;
299 // Returns the SectionPiece at a given input section offset.
300 SectionPiece *getSectionPiece(uint64_t offset);
301 const SectionPiece *getSectionPiec
[all...]
H A DInputSection.cpp1386 SectionPiece *MergeInputSection::getSectionPiece(uint64_t offset) {
1393 pieces, [=](SectionPiece p) { return p.inputOff <= offset; });
1403 const SectionPiece &piece =

Completed in 137 milliseconds