| /freebsd-14.2/contrib/llvm-project/lld/ELF/ |
| H A D | SyntheticSections.h | 100 class GotSection final : public SyntheticSection { 132 class GnuStackSection : public SyntheticSection { 148 class BuildIdSection : public SyntheticSection { 544 return SyntheticSection::classof(d) && in classof() 731 class PltSection : public SyntheticSection { 1263 : SyntheticSection(llvm::ELF::SHF_ALLOC, in MemtagGlobalDescriptors() 1304 std::unique_ptr<SyntheticSection> elfHeader; 1310 std::unique_ptr<SyntheticSection> dynamic; 1323 std::unique_ptr<SyntheticSection> verNeed; 1354 std::unique_ptr<SyntheticSection> partEnd; [all …]
|
| H A D | InputSection.h | 32 class SyntheticSection; variable 327 SyntheticSection *getParent() const { in getParent() 328 return cast_or_null<SyntheticSection>(parent); in getParent() 366 SyntheticSection *getParent() const; 429 class SyntheticSection : public InputSection { 431 SyntheticSection(uint64_t flags, uint32_t type, uint32_t addralign, in SyntheticSection() function 436 virtual ~SyntheticSection() = default;
|
| H A D | SyntheticSections.cpp | 217 : SyntheticSection(SHF_ALLOC, SHT_MIPS_REGINFO, 4, ".reginfo"), in MipsReginfoSection() 313 : SyntheticSection(llvm::ELF::SHF_ALLOC, llvm::ELF::SHT_NOTE, in GnuPropertySection() 358 : SyntheticSection(SHF_ALLOC, SHT_PROGBITS, 1, ".eh_frame") {} in EhFrameSection() 624 : SyntheticSection(SHF_ALLOC | SHF_WRITE, SHT_PROGBITS, in GotSection() 1190 : SyntheticSection(SHF_ALLOC | SHF_WRITE, in IgotPltSection() 1614 : SyntheticSection(SHF_ALLOC, type, config->wordsize, name), in RelocationBaseSection() 1725 : SyntheticSection(SHF_ALLOC, in RelrBaseSection() 2477 : SyntheticSection(SHF_ALLOC, SHT_HASH, 4, ".hash") { in HashTableSection() 2709 : SyntheticSection(0, SHT_PROGBITS, 1, ".gdb_index") {} in GdbIndexSection() 3671 : SyntheticSection(SHF_ALLOC | SHF_WRITE, in PPC64LongBranchTargetSection() [all …]
|
| H A D | AArch64ErrataFix.cpp | 373 class elf::Patch843419Section final : public SyntheticSection { 396 : SyntheticSection(SHF_ALLOC | SHF_EXECINSTR, SHT_PROGBITS, 4, in Patch843419Section() 581 if (isa<SyntheticSection>(isec)) in patchInputSectionDescription()
|
| H A D | ARMErrataFix.cpp | 71 class elf::Patch657417Section final : public SyntheticSection { 138 : SyntheticSection(SHF_ALLOC | SHF_EXECINSTR, SHT_PROGBITS, 4, in Patch657417Section() 487 if (isa<SyntheticSection>(isec)) in patchInputSectionDescription()
|
| H A D | Target.cpp | 110 assert(isa<SyntheticSection>(isec) && "No data but not synthetic?"); in getErrorPlace()
|
| H A D | Writer.cpp | 342 auto add = [](SyntheticSection &sec) { ctx.inputSections.push_back(&sec); }; in createSyntheticSections() 384 auto add = [&](SyntheticSection &sec) { in createSyntheticSections() 805 if (isa<SyntheticSection>(s) && !(s->flags & SHF_MERGE)) in addSectionSymbols() 1678 static void finalizeSynthetic(SyntheticSection *sec) { in finalizeSynthetic() 1880 return !isa<SyntheticSection>(s); in removeUnusedSyntheticSections() 1887 auto *sec = cast<SyntheticSection>(s); in removeUnusedSyntheticSections() 1898 if (OutputSection *osec = cast<SyntheticSection>(sec)->getParent()) in removeUnusedSyntheticSections()
|
| H A D | OutputSections.cpp | 496 if (auto *s = dyn_cast<SyntheticSection>(isec)) in writeTo() 606 if (!first || isa<SyntheticSection>(first)) in finalize()
|
| H A D | InputSection.cpp | 105 if (auto *s = dyn_cast<SyntheticSection>(this)) in getSize() 1230 SyntheticSection *EhInputSection::getParent() const { in getParent() 1231 return cast_or_null<SyntheticSection>(parent); in getParent()
|
| H A D | ICF.cpp | 179 if (isa<SyntheticSection>(s)) in isEligible()
|
| H A D | LinkerScript.cpp | 743 if (!isa<SyntheticSection>(isec) && in addInputSec()
|
| /freebsd-14.2/contrib/llvm-project/lld/MachO/ |
| H A D | SyntheticSections.h | 41 class SyntheticSection : public OutputSection { 43 SyntheticSection(const char *segname, const char *name); 44 virtual ~SyntheticSection() = default; 57 class LinkEditSection : public SyntheticSection { 60 : SyntheticSection(segname, name) { in LinkEditSection() 85 class MachHeaderSection final : public SyntheticSection { 101 class PageZeroSection final : public SyntheticSection { 115 class NonLazyPointerSectionBase : public SyntheticSection { 279 class StubsSection final : public SyntheticSection { 324 class ObjCStubsSection final : public SyntheticSection { [all …]
|
| H A D | UnwindInfoSection.h | 18 class UnwindInfoSection : public SyntheticSection {
|
| H A D | SyntheticSections.cpp | 60 std::vector<SyntheticSection *> macho::syntheticSections; 62 SyntheticSection::SyntheticSection(const char *segname, const char *name) in SyntheticSection() function in SyntheticSection 73 : SyntheticSection(segment_names::text, section_names::header) { in MachHeaderSection() 165 : SyntheticSection(segment_names::pageZero, section_names::pageZero) {} in PageZeroSection() 303 : SyntheticSection(segname, name) { in NonLazyPointerSectionBase() 695 : SyntheticSection(segment_names::text, section_names::stubs) { in StubsSection() 759 : SyntheticSection(segment_names::text, section_names::stubHelper) { in StubHelperSection() 810 : SyntheticSection(segment_names::text, section_names::objcStubs) { in ObjCStubsSection() 1577 : SyntheticSection(segment_names::text, name) { in CStringSection() 1719 : SyntheticSection(segment_names::text, section_names::literals) { in WordLiteralSection() [all …]
|
| H A D | UnwindInfoSection.cpp | 173 : SyntheticSection(segment_names::text, section_names::unwindInfo) { in UnwindInfoSection()
|
| H A D | SymbolTable.cpp | 367 for (SyntheticSection *ssec : syntheticSections) in handleSectionBoundarySymbol()
|
| H A D | Writer.cpp | 1032 for (SyntheticSection *ssec : syntheticSections) { in createOutputSections()
|
| /freebsd-14.2/contrib/llvm-project/lld/ELF/Arch/ |
| H A D | ARM.cpp | 1253 : SyntheticSection(llvm::ELF::SHF_ALLOC | llvm::ELF::SHF_EXECINSTR, in ArmCmseSGSection() 1372 SmallVector<std::pair<OutputSection *, SyntheticSection *>, 0> osIsPairs; in writeARMCmseImportLib()
|
| H A D | RISCV.cpp | 1045 class RISCVAttributesSection final : public SyntheticSection { 1048 : SyntheticSection(0, SHT_RISCV_ATTRIBUTES, 1, ".riscv.attributes") {} in RISCVAttributesSection()
|