Skip to content

Commit b497665

Browse files
committed
Reland D64327 [MC][ELF] Allow STT_SECTION referencing SHF_MERGE on REL targets
This drops a GNU gold workaround and reverts the revert commit rL366708. Before binutils 2.34, gold -O2 and above did not correctly handle R_386_GOTOFF to SHF_MERGE|SHF_STRINGS sections: https://sourceware.org/bugzilla/show_bug.cgi?id=16794 From the original review: ... it reduced the size of a big ARM-32 debug image by 33%. It contained ~68M of relocations symbols out of total ~71M symbols (96% of symbols table was generated for relocations with symbol). -Wl,-O2 (and -Wl,-O3) is so rare that we should just lower the optimization level for LLVM_LINKER_IS_GOLD rather than pessimizing all users.
1 parent 4ffa6a2 commit b497665

File tree

7 files changed

+16
-22
lines changed

7 files changed

+16
-22
lines changed

llvm/cmake/modules/AddLLVM.cmake

+7-2
Original file line numberDiff line numberDiff line change
@@ -222,8 +222,13 @@ function(add_link_opts target_name)
222222
# Pass -O3 to the linker. This enabled different optimizations on different
223223
# linkers.
224224
if(NOT (${CMAKE_SYSTEM_NAME} MATCHES "Darwin|SunOS|AIX" OR WIN32))
225-
set_property(TARGET ${target_name} APPEND_STRING PROPERTY
226-
LINK_FLAGS " -Wl,-O3")
225+
# Before binutils 2.34, gold -O2 and above did not correctly handle R_386_GOTOFF to
226+
# SHF_MERGE|SHF_STRINGS sections: https://sourceware.org/bugzilla/show_bug.cgi?id=16794
227+
if(LLVM_LINKER_IS_GOLD)
228+
set_property(TARGET ${target_name} APPEND_STRING PROPERTY LINK_FLAGS " -Wl,-O1")
229+
else()
230+
set_property(TARGET ${target_name} APPEND_STRING PROPERTY LINK_FLAGS " -Wl,-O3")
231+
endif()
227232
endif()
228233

229234
if(LLVM_LINKER_IS_GOLD)

llvm/lib/MC/ELFObjectWriter.cpp

-5
Original file line numberDiff line numberDiff line change
@@ -1389,11 +1389,6 @@ bool ELFObjectWriter::shouldRelocateWithSymbol(const MCAssembler &Asm,
13891389
if (Flags & ELF::SHF_MERGE) {
13901390
if (C != 0)
13911391
return true;
1392-
1393-
// It looks like gold has a bug (http://sourceware.org/PR16794) and can
1394-
// only handle section relocations to mergeable sections if using RELA.
1395-
if (!hasRelocationAddend())
1396-
return true;
13971392
}
13981393

13991394
// Most TLS relocations use a got, so they need the symbol. Even those that

llvm/test/MC/ELF/basic-elf-32.s

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ main: # @main
4646

4747
// CHECK: Relocations [
4848
// CHECK: Section {{.*}} .rel.text {
49-
// CHECK: 0x6 R_386_32 .L.str1
49+
// CHECK: 0x6 R_386_32 .rodata.str1.1 0x0
5050
// CHECK: 0xB R_386_PC32 puts
51-
// CHECK: 0x12 R_386_32 .L.str2
51+
// CHECK: 0x12 R_386_32 .rodata.str1.1 0x0
5252
// CHECK: 0x17 R_386_PC32 puts
5353
// CHECK: }
5454
// CHECK: ]

llvm/test/MC/ELF/compression.s

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939
// In x86 32 bit named symbols are used for temporary symbols in merge
4040
// sections, so make sure we handle symbols inside compressed sections
41-
// 386-SYMBOLS-GNU: Name: .Linfo_string0
41+
// 386-SYMBOLS-GNU: Name: .zdebug_str
4242
// 386-SYMBOLS-GNU-NOT: }
4343
// 386-SYMBOLS-GNU: Section: .zdebug_str
4444

@@ -73,7 +73,7 @@
7373
// ZLIB-STYLE-FLAGS32-NEXT: AddressAlignment: 4
7474
// ZLIB-STYLE-FLAGS64-NEXT: AddressAlignment: 8
7575

76-
// 386-SYMBOLS-ZLIB: Name: .Linfo_string0
76+
// 386-SYMBOLS-ZLIB: Name: .debug_str
7777
// 386-SYMBOLS-ZLIB-NOT: }
7878
// 386-SYMBOLS-ZLIB: Section: .debug_str
7979

llvm/test/MC/ELF/relocation-386.s

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// I386: Format: elf32-i386
99
// CHECK: Relocations [
1010
// CHECK-NEXT: Section {{.*}} .rel.text {
11-
// CHECK-NEXT: 0x2 R_386_GOTOFF .Lfoo 0x0
11+
// CHECK-NEXT: 0x2 R_386_GOTOFF .rodata.str1.16 0x0
1212
// CHECK-NEXT: 0x{{[^ ]+}} R_386_PLT32 bar2 0x0
1313
// CHECK-NEXT: 0x{{[^ ]+}} R_386_GOTPC _GLOBAL_OFFSET_TABLE_ 0x0
1414
// Relocation 3 (bar3@GOTOFF) is done with symbol 7 (bss)

llvm/test/MC/Mips/elf-relsym.s

+2-8
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,10 @@
44

55
// CHECK: Symbols [
66
// CHECK: Symbol {
7-
// CHECK: Name: $.str
7+
// CHECK: Name: .rodata.cst8
88
// CHECK: }
99
// CHECK: Symbol {
10-
// CHECK: Name: $.str1
11-
// CHECK: }
12-
// CHECK: Symbol {
13-
// CHECK: Name: $CPI0_0
14-
// CHECK: }
15-
// CHECK: Symbol {
16-
// CHECK: Name: $CPI0_1
10+
// CHECK: Name: .rodata.str1.1
1711
// CHECK: }
1812
// CHECK: ]
1913

llvm/test/MC/Mips/xgot.s

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
// CHECK: 0x1C R_MIPS_GOT_LO16 ext_1
1111
// CHECK: 0x24 R_MIPS_CALL_HI16 printf
1212
// CHECK: 0x30 R_MIPS_CALL_LO16 printf
13-
// CHECK: 0x2C R_MIPS_GOT16 $.str
14-
// CHECK: 0x38 R_MIPS_LO16 $.str
13+
// CHECK: 0x2C R_MIPS_GOT16 .rodata.str1.1 0x0
14+
// CHECK: 0x38 R_MIPS_LO16 .rodata.str1.1 0x0
1515
// CHECK: ]
1616

1717
.text

0 commit comments

Comments
 (0)