diff --git a/lld/MachO/ConcatOutputSection.cpp b/lld/MachO/ConcatOutputSection.cpp index 4fae93469b5ff..4cec418e7cf1b 100644 --- a/lld/MachO/ConcatOutputSection.cpp +++ b/lld/MachO/ConcatOutputSection.cpp @@ -313,7 +313,7 @@ void ConcatOutputSection::finalize() { fatal(Twine(__FUNCTION__) + ": FIXME: thunk range overrun"); } thunkInfo.isec = - make(isec->getSegName(), isec->getName()); + makeSyntheticInputSection(isec->getSegName(), isec->getName()); thunkInfo.isec->parent = this; // This code runs after dead code removal. Need to set the `live` bit diff --git a/lld/MachO/Driver.cpp b/lld/MachO/Driver.cpp index 58a443664b7c5..bf5e97a6314bd 100644 --- a/lld/MachO/Driver.cpp +++ b/lld/MachO/Driver.cpp @@ -540,9 +540,11 @@ static void replaceCommonSymbols() { // but it's not really worth supporting the linking of 64-bit programs on // 32-bit archs. ArrayRef data = {nullptr, static_cast(common->size)}; - auto *isec = make( - segment_names::data, section_names::common, common->getFile(), data, - common->align, S_ZEROFILL); + // FIXME avoid creating one Section per symbol? + auto *section = + make
(common->getFile(), segment_names::data, + section_names::common, S_ZEROFILL, /*addr=*/0); + auto *isec = make(*section, data, common->align); if (!osec) osec = ConcatOutputSection::getOrCreateForInput(isec); isec->parent = osec; @@ -550,7 +552,7 @@ static void replaceCommonSymbols() { // FIXME: CommonSymbol should store isReferencedDynamically, noDeadStrip // and pass them on here. - replaceSymbol(sym, sym->getName(), isec->getFile(), isec, + replaceSymbol(sym, sym->getName(), common->getFile(), isec, /*value=*/0, /*size=*/0, /*isWeakDef=*/false, @@ -1005,8 +1007,8 @@ static void gatherInputSections() { TimeTraceScope timeScope("Gathering input sections"); int inputOrder = 0; for (const InputFile *file : inputFiles) { - for (const Section §ion : file->sections) { - const Subsections &subsections = section.subsections; + for (const Section *section : file->sections) { + const Subsections &subsections = section->subsections; if (subsections.empty()) continue; if (subsections[0].isec->getName() == section_names::compactUnwind) diff --git a/lld/MachO/InputFiles.cpp b/lld/MachO/InputFiles.cpp index 74cccffc2889b..f82aa81b12efa 100644 --- a/lld/MachO/InputFiles.cpp +++ b/lld/MachO/InputFiles.cpp @@ -277,28 +277,24 @@ void ObjFile::parseSections(ArrayRef sectionHeaders) { ArrayRef data = {isZeroFill(sec.flags) ? nullptr : buf + sec.offset, static_cast(sec.size)}; - sections.push_back(sec.addr); + sections.push_back(make
(this, segname, name, sec.flags, sec.addr)); if (sec.align >= 32) { error("alignment " + std::to_string(sec.align) + " of section " + name + " is too large"); continue; } + const Section §ion = *sections.back(); uint32_t align = 1 << sec.align; - uint32_t flags = sec.flags; auto splitRecords = [&](int recordSize) -> void { if (data.empty()) return; - Subsections &subsections = sections.back().subsections; + Subsections &subsections = sections.back()->subsections; subsections.reserve(data.size() / recordSize); - auto *isec = make( - segname, name, this, data.slice(0, recordSize), align, flags); - subsections.push_back({0, isec}); - for (uint64_t off = recordSize; off < data.size(); off += recordSize) { - // Copying requires less memory than constructing a fresh InputSection. - auto *copy = make(*isec); - copy->data = data.slice(off, recordSize); - subsections.push_back({off, copy}); + for (uint64_t off = 0; off < data.size(); off += recordSize) { + auto *isec = make( + section, data.slice(off, recordSize), align); + subsections.push_back({off, isec}); } }; @@ -312,19 +308,17 @@ void ObjFile::parseSections(ArrayRef sectionHeaders) { InputSection *isec; if (sectionType(sec.flags) == S_CSTRING_LITERALS) { - isec = - make(segname, name, this, data, align, flags); + isec = make(section, data, align); // FIXME: parallelize this? cast(isec)->splitIntoPieces(); } else { - isec = make(segname, name, this, data, align, - flags); + isec = make(section, data, align); } - sections.back().subsections.push_back({0, isec}); + sections.back()->subsections.push_back({0, isec}); } else if (auto recordSize = getRecordSize(segname, name)) { splitRecords(*recordSize); if (name == section_names::compactUnwind) - compactUnwindSection = §ions.back(); + compactUnwindSection = sections.back(); } else if (segname == segment_names::llvm) { if (name == "__cg_profile" && config->callGraphProfileSort) { TimeTraceScope timeScope("Parsing call graph section"); @@ -352,8 +346,7 @@ void ObjFile::parseSections(ArrayRef sectionHeaders) { // spurious duplicate symbol errors, we do not parse these sections. // TODO: Evaluate whether the bitcode metadata is needed. } else { - auto *isec = - make(segname, name, this, data, align, flags); + auto *isec = make(section, data, align); if (isDebugSection(isec->getFlags()) && isec->getSegName() == segment_names::dwarf) { // Instead of emitting DWARF sections, we emit STABS symbols to the @@ -361,7 +354,7 @@ void ObjFile::parseSections(ArrayRef sectionHeaders) { // parsing their relocations unnecessarily. debugSections.push_back(isec); } else { - sections.back().subsections.push_back({0, isec}); + sections.back()->subsections.push_back({0, isec}); } } } @@ -506,7 +499,7 @@ void ObjFile::parseRelocations(ArrayRef sectionHeaders, referentOffset = totalAddend - referentSecHead.addr; } Subsections &referentSubsections = - sections[relInfo.r_symbolnum - 1].subsections; + sections[relInfo.r_symbolnum - 1]->subsections; r.referent = findContainingSubsection(referentSubsections, &referentOffset); r.addend = referentOffset; @@ -547,7 +540,7 @@ void ObjFile::parseRelocations(ArrayRef sectionHeaders, uint64_t referentOffset = totalAddend - sectionHeaders[minuendInfo.r_symbolnum - 1].addr; Subsections &referentSubsectVec = - sections[minuendInfo.r_symbolnum - 1].subsections; + sections[minuendInfo.r_symbolnum - 1]->subsections; p.referent = findContainingSubsection(referentSubsectVec, &referentOffset); p.addend = referentOffset; @@ -699,7 +692,7 @@ void ObjFile::parseSymbols(ArrayRef sectionHeaders, StringRef name = strtab + sym.n_strx; if ((sym.n_type & N_TYPE) == N_SECT) { - Subsections &subsections = sections[sym.n_sect - 1].subsections; + Subsections &subsections = sections[sym.n_sect - 1]->subsections; // parseSections() may have chosen not to parse this section. if (subsections.empty()) continue; @@ -712,7 +705,7 @@ void ObjFile::parseSymbols(ArrayRef sectionHeaders, } for (size_t i = 0; i < sections.size(); ++i) { - Subsections &subsections = sections[i].subsections; + Subsections &subsections = sections[i]->subsections; if (subsections.empty()) continue; InputSection *lastIsec = subsections.back().isec; @@ -823,12 +816,13 @@ OpaqueFile::OpaqueFile(MemoryBufferRef mb, StringRef segName, : InputFile(OpaqueKind, mb) { const auto *buf = reinterpret_cast(mb.getBufferStart()); ArrayRef data = {buf, mb.getBufferSize()}; - ConcatInputSection *isec = - make(segName.take_front(16), sectName.take_front(16), - /*file=*/this, data); + sections.push_back(make
(/*file=*/this, segName.take_front(16), + sectName.take_front(16), + /*flags=*/0, /*addr=*/0)); + Section §ion = *sections.back(); + ConcatInputSection *isec = make(section, data); isec->live = true; - sections.push_back(0); - sections.back().subsections.push_back({0, isec}); + section.subsections.push_back({0, isec}); } ObjFile::ObjFile(MemoryBufferRef mb, uint32_t modTime, StringRef archiveName, @@ -898,9 +892,9 @@ template void ObjFile::parse() { // The relocations may refer to the symbols, so we parse them after we have // parsed all the symbols. for (size_t i = 0, n = sections.size(); i < n; ++i) - if (!sections[i].subsections.empty()) + if (!sections[i]->subsections.empty()) parseRelocations(sectionHeaders, sectionHeaders[i], - sections[i].subsections); + sections[i]->subsections); parseDebugInfo(); if (compactUnwindSection) diff --git a/lld/MachO/InputFiles.h b/lld/MachO/InputFiles.h index 0b661c828c7c9..432cddd94a509 100644 --- a/lld/MachO/InputFiles.h +++ b/lld/MachO/InputFiles.h @@ -58,11 +58,24 @@ struct Subsection { }; using Subsections = std::vector; +class InputFile; struct Section { - uint64_t address = 0; + InputFile *file; + StringRef segname; + StringRef name; + uint32_t flags; + uint64_t addr; Subsections subsections; - Section(uint64_t addr) : address(addr){}; + + Section(InputFile *file, StringRef segname, StringRef name, uint32_t flags, + uint64_t addr) + : file(file), segname(segname), name(name), flags(flags), addr(addr) {} + // Ensure pointers to Sections are never invalidated. + Section(const Section &) = delete; + Section &operator=(const Section &) = delete; + Section(Section &&) = delete; + Section &operator=(Section &&) = delete; }; // Represents a call graph profile edge. @@ -93,7 +106,7 @@ class InputFile { MemoryBufferRef mb; std::vector symbols; - std::vector
sections; + std::vector
sections; // If not empty, this stores the name of the archive containing this file. // We use this string for creating error messages. diff --git a/lld/MachO/InputSection.cpp b/lld/MachO/InputSection.cpp index d42085737dbb7..a2213f8325c0c 100644 --- a/lld/MachO/InputSection.cpp +++ b/lld/MachO/InputSection.cpp @@ -177,6 +177,18 @@ void ConcatInputSection::writeTo(uint8_t *buf) { } } +ConcatInputSection *macho::makeSyntheticInputSection(StringRef segName, + StringRef sectName, + uint32_t flags, + ArrayRef data, + uint32_t align) { + Section §ion = + *make
(/*file=*/nullptr, segName, sectName, flags, /*addr=*/0); + auto isec = make(section, data, align); + section.subsections.push_back({0, isec}); + return isec; +} + void CStringInputSection::splitIntoPieces() { size_t off = 0; StringRef s = toStringRef(data); @@ -211,13 +223,11 @@ uint64_t CStringInputSection::getOffset(uint64_t off) const { return piece.outSecOff + addend; } -WordLiteralInputSection::WordLiteralInputSection(StringRef segname, - StringRef name, - InputFile *file, +WordLiteralInputSection::WordLiteralInputSection(const Section §ion, ArrayRef data, - uint32_t align, uint32_t flags) - : InputSection(WordLiteralKind, segname, name, file, data, align, flags) { - switch (sectionType(flags)) { + uint32_t align) + : InputSection(WordLiteralKind, section, data, align) { + switch (sectionType(getFlags())) { case S_4BYTE_LITERALS: power2LiteralSize = 2; break; diff --git a/lld/MachO/InputSection.h b/lld/MachO/InputSection.h index 5535e871c539d..52f851de0e5aa 100644 --- a/lld/MachO/InputSection.h +++ b/lld/MachO/InputSection.h @@ -29,20 +29,20 @@ class OutputSection; class InputSection { public: - enum Kind { + enum Kind : uint8_t { ConcatKind, CStringLiteralKind, WordLiteralKind, }; - Kind kind() const { return shared->sectionKind; } + Kind kind() const { return sectionKind; } virtual ~InputSection() = default; virtual uint64_t getSize() const { return data.size(); } virtual bool empty() const { return data.empty(); } - InputFile *getFile() const { return shared->file; } - StringRef getName() const { return shared->name; } - StringRef getSegName() const { return shared->segname; } - uint32_t getFlags() const { return shared->flags; } + InputFile *getFile() const { return section.file; } + StringRef getName() const { return section.name; } + StringRef getSegName() const { return section.segname; } + uint32_t getFlags() const { return section.flags; } uint64_t getFileSize() const; // Translates \p off -- an offset relative to this InputSection -- into an // offset from the beginning of its parent OutputSection. @@ -55,12 +55,23 @@ class InputSection { virtual InputSection *canonical() { return this; } virtual const InputSection *canonical() const { return this; } - OutputSection *parent = nullptr; +protected: + InputSection(Kind kind, const Section §ion, ArrayRef data, + uint32_t align) + : sectionKind(kind), align(align), data(data), section(section) {} - uint32_t align = 1; + InputSection(const InputSection &rhs) + : sectionKind(rhs.sectionKind), align(rhs.align), data(rhs.data), + section(rhs.section) {} + + Kind sectionKind; + +public: // is address assigned? bool isFinal = false; + uint32_t align = 1; + OutputSection *parent = nullptr; ArrayRef data; std::vector relocs; // The symbols that belong to this InputSection, sorted by value. With @@ -68,31 +79,7 @@ class InputSection { llvm::TinyPtrVector symbols; protected: - // The fields in this struct are immutable. Since we create a lot of - // InputSections with identical values for them (due to - // .subsections_via_symbols), factoring them out into a shared struct reduces - // memory consumption and makes copying cheaper. - struct Shared { - InputFile *file; - StringRef name; - StringRef segname; - uint32_t flags; - Kind sectionKind; - Shared(InputFile *file, StringRef name, StringRef segname, uint32_t flags, - Kind kind) - : file(file), name(name), segname(segname), flags(flags), - sectionKind(kind) {} - }; - - InputSection(Kind kind, StringRef segname, StringRef name, InputFile *file, - ArrayRef data, uint32_t align, uint32_t flags) - : align(align), data(data), - shared(make(file, name, segname, flags, kind)) {} - - InputSection(const InputSection &rhs) - : align(rhs.align), data(rhs.data), shared(rhs.shared) {} - - const Shared *const shared; + const Section §ion; }; // ConcatInputSections are combined into (Concat)OutputSections through simple @@ -100,15 +87,9 @@ class InputSection { // contents merged before output. class ConcatInputSection final : public InputSection { public: - ConcatInputSection(StringRef segname, StringRef name, InputFile *file, - ArrayRef data, uint32_t align = 1, - uint32_t flags = 0) - : InputSection(ConcatKind, segname, name, file, data, align, flags) {} - - ConcatInputSection(StringRef segname, StringRef name) - : ConcatInputSection(segname, name, /*file=*/nullptr, - /*data=*/{}, - /*align=*/1, /*flags=*/0) {} + ConcatInputSection(const Section §ion, ArrayRef data, + uint32_t align = 1) + : InputSection(ConcatKind, section, data, align) {} uint64_t getOffset(uint64_t off) const override { return outSecOff + off; } uint64_t getVA() const { return InputSection::getVA(0); } @@ -152,6 +133,13 @@ class ConcatInputSection final : public InputSection { uint64_t outSecOff = 0; }; +// Initialize a fake InputSection that does not belong to any InputFile. +ConcatInputSection *makeSyntheticInputSection(StringRef segName, + StringRef sectName, + uint32_t flags = 0, + ArrayRef data = {}, + uint32_t align = 1); + // Helper functions to make it easy to sprinkle asserts. inline bool shouldOmitFromOutput(InputSection *isec) { @@ -193,10 +181,9 @@ static_assert(sizeof(StringPiece) == 16, "StringPiece is too big!"); // conservative behavior we can certainly implement that. class CStringInputSection final : public InputSection { public: - CStringInputSection(StringRef segname, StringRef name, InputFile *file, - ArrayRef data, uint32_t align, uint32_t flags) - : InputSection(CStringLiteralKind, segname, name, file, data, align, - flags) {} + CStringInputSection(const Section §ion, ArrayRef data, + uint32_t align) + : InputSection(CStringLiteralKind, section, data, align) {} uint64_t getOffset(uint64_t off) const override; bool isLive(uint64_t off) const override { return getStringPiece(off).live; } void markLive(uint64_t off) override { getStringPiece(off).live = true; } @@ -231,9 +218,8 @@ class CStringInputSection final : public InputSection { class WordLiteralInputSection final : public InputSection { public: - WordLiteralInputSection(StringRef segname, StringRef name, InputFile *file, - ArrayRef data, uint32_t align, - uint32_t flags); + WordLiteralInputSection(const Section §ion, ArrayRef data, + uint32_t align); uint64_t getOffset(uint64_t off) const override; bool isLive(uint64_t off) const override { return live[off >> power2LiteralSize]; diff --git a/lld/MachO/SymbolTable.cpp b/lld/MachO/SymbolTable.cpp index c7017c8a000dc..0f23bf38ee584 100644 --- a/lld/MachO/SymbolTable.cpp +++ b/lld/MachO/SymbolTable.cpp @@ -266,7 +266,7 @@ static void handleSectionBoundarySymbol(const Undefined &sym, StringRef segSect, } if (!osec) { - ConcatInputSection *isec = make(segName, sectName); + ConcatInputSection *isec = makeSyntheticInputSection(segName, sectName); // This runs after markLive() and is only called for Undefineds that are // live. Marking the isec live ensures an OutputSection is created that the diff --git a/lld/MachO/SyntheticSections.cpp b/lld/MachO/SyntheticSections.cpp index 3fe551f5684b6..9d246e97dc2ad 100644 --- a/lld/MachO/SyntheticSections.cpp +++ b/lld/MachO/SyntheticSections.cpp @@ -49,7 +49,7 @@ std::vector macho::syntheticSections; SyntheticSection::SyntheticSection(const char *segname, const char *name) : OutputSection(SyntheticKind, name) { std::tie(this->segname, this->name) = maybeRenameSection({segname, name}); - isec = make(segname, name); + isec = makeSyntheticInputSection(segname, name); isec->parent = this; syntheticSections.push_back(this); } @@ -748,14 +748,14 @@ static std::vector collectDataInCodeEntries() { // For each code subsection find 'data in code' entries residing in it. // Compute the new offset values as // + - <__TEXT address>. - for (const Section §ion : objFile->sections) { - for (const Subsection &subsec : section.subsections) { + for (const Section *section : objFile->sections) { + for (const Subsection &subsec : section->subsections) { const InputSection *isec = subsec.isec; if (!isCodeSection(isec)) continue; if (cast(isec)->shouldOmitFromOutput()) continue; - const uint64_t beginAddr = section.address + subsec.offset; + const uint64_t beginAddr = section->addr + subsec.offset; auto it = llvm::lower_bound( entries, beginAddr, [](const MachO::data_in_code_entry &entry, uint64_t addr) { diff --git a/lld/MachO/Writer.cpp b/lld/MachO/Writer.cpp index 851cb3db3859a..6aaefaae8cc4a 100644 --- a/lld/MachO/Writer.cpp +++ b/lld/MachO/Writer.cpp @@ -1172,10 +1172,10 @@ void macho::createSyntheticSections() { // dyld to cache an address to the image loader it uses. uint8_t *arr = bAlloc().Allocate(target->wordSize); memset(arr, 0, target->wordSize); - in.imageLoaderCache = make( - segment_names::data, section_names::data, /*file=*/nullptr, + in.imageLoaderCache = makeSyntheticInputSection( + segment_names::data, section_names::data, S_REGULAR, ArrayRef{arr, target->wordSize}, - /*align=*/target->wordSize, /*flags=*/S_REGULAR); + /*align=*/target->wordSize); // References from dyld are not visible to us, so ensure this section is // always treated as live. in.imageLoaderCache->live = true;