File: why-live.s

package info (click to toggle)
swiftlang 6.0.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,519,992 kB
  • sloc: cpp: 9,107,863; ansic: 2,040,022; asm: 1,135,751; python: 296,500; objc: 82,456; f90: 60,502; lisp: 34,951; pascal: 19,946; sh: 18,133; perl: 7,482; ml: 4,937; javascript: 4,117; makefile: 3,840; awk: 3,535; xml: 914; fortran: 619; cs: 573; ruby: 573
file content (64 lines) | stat: -rw-r--r-- 1,688 bytes parent folder | download | duplicates (15)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# 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