File: dylink-ordinal.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 (67 lines) | stat: -rw-r--r-- 1,742 bytes parent folder | download | duplicates (21)
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
65
66
67
# REQUIRES: x86

## --no-leading-lines needed for .tbd files.
# RUN: rm -rf %t; split-file --no-leading-lines %s %t

# RUN: llvm-mc -filetype=obj -triple=x86_64-apple-darwin %t/main.s -o %t/main.o
# RUN: %lld -o %t/main -L%t -lFoo -lBar -lSystem %t/main.o
# RUN: llvm-objdump --lazy-bind -d --no-show-raw-insn %t/main | FileCheck %s

# CHECK: callq 0x[[#%x,FOO_OFF:]]
# CHECK-NEXT: callq 0x[[#%x,BAR_OFF:]]

# CHECK: [[#%x,BAR_OFF]]: jmpq {{.*}} ## 0x[[#%x,BAR_BIND:]]
# CHECK: [[#%x,FOO_OFF]]: jmpq {{.*}} ## 0x[[#%x,FOO_BIND:]]

# CHECK-LABEL: Lazy bind table:
# CHECK-DAG: __DATA __la_symbol_ptr 0x[[#%x,FOO_BIND]] Foo _foo
# CHECK-DAG: __DATA __la_symbol_ptr 0x[[#%x,BAR_BIND]] Foo _bar

# RUN: llvm-nm -m %t/main | FileCheck --check-prefix=NM %s

# NM-DAG: _bar (from Foo)
# NM-DAG: _foo (from Foo)

# RUN: llvm-otool -L %t/main | FileCheck %s --check-prefix=LOAD

# LOAD: Foo.dylib
# LOAD-NOT: Foo.dylib

#--- libFoo.tbd
--- !tapi-tbd
tbd-version:      4
targets:          [ x86_64-macos ]
uuids:
  - target:       x86_64-macos
    value:        00000000-0000-0000-0000-000000000000
install-name:     'Foo.dylib'
current-version:  0001.001.1
exports:
  - targets:      [ x86_64-macos ]
    symbols:      [ _foo ]
...

#--- libBar.tbd
--- !tapi-tbd
tbd-version:      4
targets:          [ x86_64-macos ]
uuids:
  - target:       x86_64-macos
    value:        00000000-0000-0000-0000-000000000000
## Also uses Foo.dylib as install-name!
## Normally, this would happen conditionally via an $ld$ symbol.
install-name:     'Foo.dylib'
current-version:  0001.001.1
exports:
  - targets:      [ x86_64-macos ]
    symbols:      [ _bar ]
...

#--- main.s
.section __TEXT,__text
.globl _main, _foo, _bar

_main:
  callq _foo
  callq _bar
  ret