reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

tools/lld/ELF/OutputSections.h
  131   static OutputSection *programHeaders;

References

tools/lld/ELF/LinkerScript.cpp
 1054     Out::programHeaders->addr = min + Out::elfHeader->size;
 1063   Out::programHeaders->ptLoad = nullptr;
 1091     Out::programHeaders->addr = dot + Out::elfHeader->size;
 1127       phdr->add(Out::programHeaders);
tools/lld/ELF/OutputSections.cpp
  232   return Out::elfHeader->size + Out::programHeaders->size;
tools/lld/ELF/Writer.cpp
  331   Out::programHeaders = make<OutputSection>("", 0, SHF_ALLOC);
  332   Out::programHeaders->alignment = config->wordsize;
 1860     Out::programHeaders->size = sizeof(Elf_Phdr) * mainPart->phdrs.size();
 2069       addHdr(PT_PHDR, PF_R)->add(Out::programHeaders);
 2083       load->add(Out::programHeaders);
 2139          load->lastSec != Out::programHeaders) ||
 2340   off = setFileOffset(Out::programHeaders, off);