[llvm] ecbc812 - [NFC][XCOFF] Use common function to calculate file offset
Jake Egan via llvm-commits
llvm-commits at lists.llvm.org
Tue Jul 18 19:09:27 PDT 2023
Author: Jake Egan
Date: 2023-07-18T22:08:56-04:00
New Revision: ecbc812e0ccaa6d969bb8ee672bc5146cad3d757
URL: https://github.com/llvm/llvm-project/commit/ecbc812e0ccaa6d969bb8ee672bc5146cad3d757
DIFF: https://github.com/llvm/llvm-project/commit/ecbc812e0ccaa6d969bb8ee672bc5146cad3d757.diff
LOG: [NFC][XCOFF] Use common function to calculate file offset
The file offset code is repeated in nearly identical form for every derivation of SectionEntry, so make it into a method in SectionEntry instead.
Reviewed By: scott.linder
Differential Revision: https://reviews.llvm.org/D155199
Added:
Modified:
llvm/lib/MC/XCOFFObjectWriter.cpp
Removed:
################################################################################
diff --git a/llvm/lib/MC/XCOFFObjectWriter.cpp b/llvm/lib/MC/XCOFFObjectWriter.cpp
index a00e286cfcf52a..5d86ed0d6f1d4c 100644
--- a/llvm/lib/MC/XCOFFObjectWriter.cpp
+++ b/llvm/lib/MC/XCOFFObjectWriter.cpp
@@ -122,6 +122,15 @@ struct SectionEntry {
int16_t Index;
+ virtual uint64_t advanceFileOffset(const uint64_t MaxRawDataSize,
+ const uint64_t RawPointer) {
+ FileOffsetToData = RawPointer;
+ uint64_t NewPointer = RawPointer + Size;
+ if (NewPointer > MaxRawDataSize)
+ report_fatal_error("Section raw data overflowed this object file.");
+ return NewPointer;
+ }
+
// XCOFF has special section numbers for symbols:
// -2 Specifies N_DEBUG, a special symbolic debugging symbol.
// -1 Specifies N_ABS, an absolute symbol. The symbol has a value but is not
@@ -189,6 +198,19 @@ struct DwarfSectionEntry : public SectionEntry {
// is for the size the DWARF section occupies including paddings.
uint32_t MemorySize;
+ // TODO: Remove this override. Loadable sections (e.g., .text, .data) may need
+ // to be aligned. Other sections generally don't need any alignment, but if
+ // they're aligned, the RawPointer should be adjusted before writing the
+ // section. Then a dwarf-specific function wouldn't be needed.
+ uint64_t advanceFileOffset(const uint64_t MaxRawDataSize,
+ const uint64_t RawPointer) override {
+ FileOffsetToData = RawPointer;
+ uint64_t NewPointer = RawPointer + MemorySize;
+ assert(NewPointer <= MaxRawDataSize &&
+ "Section raw data overflowed this object file.");
+ return NewPointer;
+ }
+
DwarfSectionEntry(StringRef N, int32_t Flags,
std::unique_ptr<XCOFFSection> Sect)
: SectionEntry(N, Flags | XCOFF::STYP_DWARF), DwarfSect(std::move(Sect)),
@@ -1162,28 +1184,18 @@ void XCOFFObjectWriter::finalizeSectionInfo() {
if (Sec->Index == SectionEntry::UninitializedIndex || Sec->IsVirtual)
continue;
- Sec->FileOffsetToData = RawPointer;
- RawPointer += Sec->Size;
- if (RawPointer > MaxRawDataSize)
- report_fatal_error("Section raw data overflowed this object file.");
+ RawPointer = Sec->advanceFileOffset(MaxRawDataSize, RawPointer);
}
if (!DwarfSections.empty()) {
RawPointer += PaddingsBeforeDwarf;
for (auto &DwarfSection : DwarfSections) {
- DwarfSection.FileOffsetToData = RawPointer;
- RawPointer += DwarfSection.MemorySize;
- if (RawPointer > MaxRawDataSize)
- report_fatal_error("Section raw data overflowed this object file.");
+ RawPointer = DwarfSection.advanceFileOffset(MaxRawDataSize, RawPointer);
}
}
if (hasExceptionSection()) {
- ExceptionSection.FileOffsetToData = RawPointer;
- RawPointer += ExceptionSection.Size;
-
- assert(RawPointer <= MaxRawDataSize &&
- "Section raw data overflowed this object file.");
+ RawPointer = ExceptionSection.advanceFileOffset(MaxRawDataSize, RawPointer);
}
for (auto *Sec : Sections) {
More information about the llvm-commits
mailing list