This was based off @thakis' draft in {D103517}. I employed templates to ensure
the support for `-why_live` wouldn't slow down the regular non-why-live code
path.
No stat sig perf difference on my 3.2 GHz 16-Core Intel Xeon W:
base diff difference (95% CI)
sys_time 1.195 ± 0.015 1.199 ± 0.022 [ -0.4% .. +1.0%]
user_time 3.716 ± 0.022 3.701 ± 0.025 [ -0.7% .. -0.1%]
wall_time 4.606 ± 0.034 4.597 ± 0.046 [ -0.6% .. +0.2%]
samples 44 37
Reviewed By: #lld-macho, thakis
Differential Revision: https://reviews.llvm.org/D120377
65 lines
1.6 KiB
ArmAsm
65 lines
1.6 KiB
ArmAsm
# REQUIRES: x86
|
|
|
|
# RUN: llvm-mc -filetype=obj -triple=x86_64-apple-macos %s -o %t.o
|
|
# RUN: %lld -lSystem -dead_strip -why_live _foo -why_live _undef -U _undef \
|
|
# RUN: -why_live _support -why_live _support_refs_dylib_fun \
|
|
# RUN: -why_live _abs %t.o -o /dev/null 2>&1 | FileCheck %s
|
|
|
|
## Due to an implementation detail, LLD is not able to report -why_live info for
|
|
## absolute symbols. (ld64 has the same shortcoming.)
|
|
# CHECK-NOT: _abs
|
|
# CHECK: _foo from {{.*}}why-live.s.tmp.o
|
|
# CHECK-NEXT: _quux from {{.*}}why-live.s.tmp.o
|
|
# CHECK-NEXT: _undef from {{.*}}why-live.s.tmp.o
|
|
# CHECK-NEXT: _main from {{.*}}why-live.s.tmp.o
|
|
## Our handling of live_support sections can be improved... we should print the
|
|
## dylib symbol that keeps _support_refs_dylib_fun alive, instead of printing
|
|
## the live_support symbol's name itself. (ld64 seems to have the same issue.)
|
|
# CHECK-NEXT: _support_refs_dylib_fun from {{.*}}why-live.s.tmp.o
|
|
# CHECK-NEXT: _support_refs_dylib_fun from {{.*}}why-live.s.tmp.o
|
|
## Again, this can be improved: we shouldn't be printing _support twice. (ld64
|
|
## seems to have the same issue.)
|
|
# CHECK-NEXT: _support from {{.*}}why-live.s.tmp.o
|
|
# CHECK-NEXT: _support from {{.*}}why-live.s.tmp.o
|
|
# CHECK-NEXT: _foo from {{.*}}why-live.s.tmp.o
|
|
# CHECK-EMPTY:
|
|
|
|
.text
|
|
_foo:
|
|
retq
|
|
|
|
_bar:
|
|
retq
|
|
|
|
_baz:
|
|
callq _foo
|
|
retq
|
|
|
|
.no_dead_strip _quux
|
|
_quux:
|
|
callq _foo
|
|
retq
|
|
|
|
.globl _main
|
|
_main:
|
|
callq _foo
|
|
callq _baz
|
|
callq _undef
|
|
callq ___isnan
|
|
retq
|
|
|
|
.globl _abs
|
|
_abs = 0x1000
|
|
|
|
.section __TEXT,support,regular,live_support
|
|
_support:
|
|
callq _foo
|
|
callq _abs
|
|
retq
|
|
|
|
_support_refs_dylib_fun:
|
|
callq ___isnan
|
|
retq
|
|
|
|
.subsections_via_symbols
|