Home
last modified time | relevance | path

Searched refs:programHeaders (Results 1 – 5 of 5) sorted by relevance

/freebsd-14.2/contrib/llvm-project/lld/ELF/
H A DOutputSections.h152 static OutputSection *programHeaders; member
H A DWriter.cpp346 Out::programHeaders = make<OutputSection>("", 0, SHF_ALLOC); in createSyntheticSections()
347 Out::programHeaders->addralign = config->wordsize; in createSyntheticSections()
394 part.programHeaders = in createSyntheticSections()
396 add(*part.programHeaders); in createSyntheticSections()
2159 Out::programHeaders->size = sizeof(Elf_Phdr) * mainPart->phdrs.size(); in finalizeSections()
2400 addHdr(PT_PHDR, PF_R)->add(Out::programHeaders); in createPhdrs()
2402 addHdr(PT_PHDR, PF_R)->add(part.programHeaders->getParent()); in createPhdrs()
2414 load->add(Out::programHeaders); in createPhdrs()
2479 (sameLMARegion || load->lastSec == Out::programHeaders) && in createPhdrs()
2689 Out::programHeaders->offset = Out::elfHeader->size; in assignFileOffsets()
[all …]
H A DLinkerScript.cpp1314 Out::programHeaders->addr = min + Out::elfHeader->size; in allocateHeaders()
1323 Out::programHeaders->ptLoad = nullptr; in allocateHeaders()
1351 Out::programHeaders->addr = dot + Out::elfHeader->size; in assignAddresses()
1388 phdr->add(Out::programHeaders); in createPhdrs()
H A DOutputSections.cpp44 OutputSection *Out::programHeaders; member in Out
259 return Out::elfHeader->size + Out::programHeaders->size; in getHeaderSize()
H A DSyntheticSections.h1305 std::unique_ptr<SyntheticSection> programHeaders; member