Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lld/ELF/
H A DOutputSections.h134 static OutputSection *programHeaders; member
H A DWriter.cpp363 Out::programHeaders = make<OutputSection>("", 0, SHF_ALLOC); in createSyntheticSections()
364 Out::programHeaders->alignment = config->wordsize; in createSyntheticSections()
411 part.programHeaders = make<PartitionProgramHeadersSection<ELFT>>(); in createSyntheticSections()
412 add(part.programHeaders); in createSyntheticSections()
2146 Out::programHeaders->size = sizeof(Elf_Phdr) * mainPart->phdrs.size(); in finalizeSections()
2366 addHdr(PT_PHDR, PF_R)->add(Out::programHeaders); in createPhdrs()
2368 addHdr(PT_PHDR, PF_R)->add(part.programHeaders->getParent()); in createPhdrs()
2380 load->add(Out::programHeaders); in createPhdrs()
2435 (sameLMARegion || load->lastSec == Out::programHeaders))) { in createPhdrs()
2655 off = setFileOffset(Out::programHeaders, off); in assignFileOffsets()
H A DLinkerScript.cpp1205 Out::programHeaders->addr = min + Out::elfHeader->size; in allocateHeaders()
1214 Out::programHeaders->ptLoad = nullptr; in allocateHeaders()
1242 Out::programHeaders->addr = dot + Out::elfHeader->size; in assignAddresses()
1278 phdr->add(Out::programHeaders); in createPhdrs()
H A DOutputSections.cpp39 OutputSection *Out::programHeaders; member in Out
237 return Out::elfHeader->size + Out::programHeaders->size; in getHeaderSize()
H A DSyntheticSections.h1216 SyntheticSection *programHeaders; member