[PATCH] D74741: [ELF] Warn changed output section address
Fangrui Song via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Feb 21 08:14:34 PST 2020
This revision was automatically updated to reflect the committed changes.
Closed by commit rGde0dda54d381: [ELF] Warn changed output section address (authored by MaskRay).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D74741/new/
https://reviews.llvm.org/D74741
Files:
lld/ELF/LinkerScript.cpp
lld/ELF/LinkerScript.h
lld/ELF/Writer.cpp
lld/test/ELF/linkerscript/lma-align.test
lld/test/ELF/linkerscript/section-align2.test
Index: lld/test/ELF/linkerscript/section-align2.test
===================================================================
--- lld/test/ELF/linkerscript/section-align2.test
+++ lld/test/ELF/linkerscript/section-align2.test
@@ -4,9 +4,15 @@
# RUN: echo '.globl _start; _start: ret; .data.rel.ro; .balign 8; .byte 0; .data; .byte 0; \
# RUN: .section .data2,"aw"; .balign 8; .byte 0; .bss; .balign 32; .byte 0' | \
# RUN: llvm-mc -filetype=obj -triple=aarch64 - -o %t.o
-# RUN: ld.lld -T %s %t.o -o %t 2>&1 | count 0
+# RUN: ld.lld -T %s %t.o -o %t 2>&1 | FileCheck --check-prefix=WARN %s --implicit-check-not=warning:
# RUN: llvm-readelf -S %t | FileCheck %s
+## Check we don't warn in the absence of SECTIONS.
+# RUN: ld.lld --fatal-warnings -Ttext=0x10000 %t.o -o /dev/null
+
+# WARN: warning: start of section .data.rel.ro changes from 0x10004 to 0x10010
+# WARN: warning: start of section .bss changes from 0x20009 to 0x20010
+
# CHECK: Name Type Address Off Size ES Flg Lk Inf Al
# CHECK-NEXT: NULL 0000000000000000 000000 000000 00 0 0 0
# CHECK-NEXT: .text PROGBITS 0000000000010000 010000 000004 00 AX 0 0 4
Index: lld/test/ELF/linkerscript/lma-align.test
===================================================================
--- lld/test/ELF/linkerscript/lma-align.test
+++ lld/test/ELF/linkerscript/lma-align.test
@@ -2,9 +2,12 @@
# RUN: echo '.globl _start; _start: ret; .data.rel.ro; .balign 16; .byte 0; \
# RUN: .data; .balign 32; .byte 0; .bss; .byte 0' | \
# RUN: llvm-mc -filetype=obj -triple=x86_64 - -o %t.o
-# RUN: ld.lld -T %s %t.o -o %t
+# RUN: ld.lld -T %s %t.o -o %t 2>&1 | FileCheck --check-prefix=WARN %s --implicit-check-not=warning:
# RUN: llvm-readelf -S -l %t | FileCheck %s
+# WARN: warning: start of section .data changes from 0x11001 to 0x11010
+# WARN: warning: start of section .bss changes from 0x11021 to 0x11040
+
# CHECK: Name Type Address Off Size ES Flg Lk Inf Al
# CHECK-NEXT: NULL 0000000000000000 000000 000000 00 0 0 0
# CHECK-NEXT: .text PROGBITS 0000000000001000 001000 000001 00 AX 0 0 4
Index: lld/ELF/Writer.cpp
===================================================================
--- lld/ELF/Writer.cpp
+++ lld/ELF/Writer.cpp
@@ -1634,6 +1634,17 @@
}
}
}
+
+ // If a SECTIONS command is given, addrExpr, if set, is the specified output
+ // section address. Warn if the computed value is different from the actual
+ // address.
+ if (!script->hasSectionsCommand)
+ return;
+ for (auto changed : script->changedSectionAddresses) {
+ const OutputSection *os = changed.first;
+ warn("start of section " + os->name + " changes from 0x" +
+ utohexstr(changed.second) + " to 0x" + utohexstr(os->addr));
+ }
}
static void finalizeSynthetic(SyntheticSection *sec) {
Index: lld/ELF/LinkerScript.h
===================================================================
--- lld/ELF/LinkerScript.h
+++ lld/ELF/LinkerScript.h
@@ -320,6 +320,10 @@
// Used to implement INSERT [AFTER|BEFORE]. Contains output sections that need
// to be reordered.
std::vector<InsertCommand> insertCommands;
+
+ // Sections whose addresses are not equal to their addrExpr values.
+ std::vector<std::pair<const OutputSection *, uint64_t>>
+ changedSectionAddresses;
};
extern LinkerScript *script;
Index: lld/ELF/LinkerScript.cpp
===================================================================
--- lld/ELF/LinkerScript.cpp
+++ lld/ELF/LinkerScript.cpp
@@ -839,7 +839,10 @@
expandMemoryRegion(ctx->memRegion, dot - ctx->memRegion->curPos,
ctx->memRegion->name, sec->name);
+ uint64_t oldDot = dot;
switchTo(sec);
+ if (sec->addrExpr && oldDot != dot)
+ changedSectionAddresses.push_back({sec, oldDot});
ctx->lmaOffset = 0;
@@ -1111,6 +1114,7 @@
auto deleter = std::make_unique<AddressState>();
ctx = deleter.get();
errorOnMissingSection = true;
+ changedSectionAddresses.clear();
switchTo(aether);
SymbolAssignmentMap oldValues = getSymbolAssignmentValues(sectionCommands);
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D74741.245866.patch
Type: text/x-patch
Size: 4174 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200221/8214c65c/attachment.bin>
More information about the llvm-commits
mailing list