[lld] [lld][ELF] Add --why-live flag (inspired by Mach-O) (PR #127112)
Fangrui Song via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 19 21:20:33 PDT 2025
================
@@ -0,0 +1,153 @@
+# REQUIRES: x86
+
+# RUN: llvm-mc -n -filetype=obj -triple=x86_64 %s -o %t.o
+# RUN: echo -e ".globl test_shared\n .section .test_shared,\"ax\", at progbits\n test_shared: jmp test_shared" |\
+# RUN: llvm-mc -n -filetype=obj -triple=x86_64 -o %t.shared.o
+# RUN: ld.lld -shared %t.shared.o -o %t.so
+
+## Simple live section
+.globl _start
+.section ._start,"ax", at progbits
+_start:
+ jmp test_simple
+ .quad .Lanonymous
+ .quad .Lanonymous_within_symbol
+ jmp test_shared
+ .quad test_local
+.size _start, .-_start
+
+.globl test_simple
+.section .test_simple,"ax", at progbits
+test_simple:
+ jmp test_simple
+ jmp test_from_unsized
+
+# RUN: ld.lld %t.o %t.so -o /dev/null --gc-sections --why-live=test_simple | FileCheck %s --check-prefix=SIMPLE
+
+# SIMPLE: live symbol: {{.*}}.o:(test_simple)
+# SIMPLE-NEXT: >>> referenced by: {{.*}}.o:(_start) (entry point)
+# SIMPLE-NOT: >>>
+
+## Live only by being a member of .test_simple
+.globl test_incidental
+test_incidental:
+ jmp test_incidental
+
+# RUN: ld.lld %t.o %t.so -o /dev/null --gc-sections --why-live=test_incidental | FileCheck %s --check-prefix=INCIDENTAL
+
+# INCIDENTAL: live symbol: {{.*}}.o:(test_incidental)
----------------
MaskRay wrote:
If you use `rm -rf %t && split-file %s %t && cd %t`. You can write a.o instead of the vague `{{.*}}.o`. You could also omit `-o /dev/null`
https://github.com/llvm/llvm-project/pull/127112
More information about the llvm-commits
mailing list