File: bsymbolic.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 (124 lines) | stat: -rw-r--r-- 4,810 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
// RUN: llvm-mc -filetype=obj -triple=wasm32-unknown-unknown %s -o %t.o
// RUN: wasm-ld --no-entry -Bsymbolic %t.o -o %t.wasm 2>&1 | FileCheck -check-prefix=WARNING %s
// WARNING: warning: -Bsymbolic is only meaningful when combined with -shared

// RUN: wasm-ld --experimental-pic -shared %t.o -o %t0.so
// RUN: obj2yaml %t0.so | FileCheck -check-prefix=NOOPTION %s

// RUN: wasm-ld --experimental-pic -shared -Bsymbolic %t.o -o %t1.so
// RUN: obj2yaml %t1.so | FileCheck -check-prefix=SYMBOLIC %s

// NOOPTION:       - Type:            IMPORT
// NOOPTION-NEXT:    Imports:
// NOOPTION-NEXT:      - Module:          env
// NOOPTION-NEXT:        Field:           memory
// NOOPTION-NEXT:        Kind:            MEMORY
// NOOPTION-NEXT:        Memory:
// NOOPTION-NEXT:          Minimum:         0x1
// NOOPTION-NEXT:      - Module:          env
// NOOPTION-NEXT:        Field:           __memory_base
// NOOPTION-NEXT:        Kind:            GLOBAL
// NOOPTION-NEXT:        GlobalType:      I32
// NOOPTION-NEXT:        GlobalMutable:   false
// NOOPTION-NEXT:      - Module:          env
// NOOPTION-NEXT:        Field:           __table_base
// NOOPTION-NEXT:        Kind:            GLOBAL
// NOOPTION-NEXT:        GlobalType:      I32
// NOOPTION-NEXT:        GlobalMutable:   false
// NOOPTION-NEXT:      - Module:          GOT.func
// NOOPTION-NEXT:        Field:           foo
// NOOPTION-NEXT:        Kind:            GLOBAL
// NOOPTION-NEXT:        GlobalType:      I32
// NOOPTION-NEXT:        GlobalMutable:   true
// NOOPTION-NEXT:      - Module:          GOT.mem
// NOOPTION-NEXT:        Field:           bar
// NOOPTION-NEXT:        Kind:            GLOBAL
// NOOPTION-NEXT:        GlobalType:      I32
// NOOPTION-NEXT:        GlobalMutable:   true
// NOOPTION-NEXT:  - Type:            FUNCTION

//      NOOPTION:  - Type:            GLOBAL
// NOOPTION-NEXT:    Globals:
// NOOPTION-NEXT:      - Index:           4
// NOOPTION-NEXT:        Type:            I32
// NOOPTION-NEXT:        Mutable:         false
// NOOPTION-NEXT:        InitExpr:
// NOOPTION-NEXT:          Opcode:          I32_CONST
// NOOPTION-NEXT:          Value:           0
// NOOPTION-NEXT:  - Type:            EXPORT

// SYMBOLIC-NOT:   - Module:          GOT.mem
// SYMBOLIC-NOT:   - Module:          GOT.func

// SYMBOLIC:       - Type:            IMPORT
// SYMBOLIC-NEXT:    Imports:
// SYMBOLIC-NEXT:      - Module:          env
// SYMBOLIC-NEXT:        Field:           memory
// SYMBOLIC-NEXT:        Kind:            MEMORY
// SYMBOLIC-NEXT:        Memory:
// SYMBOLIC-NEXT:          Minimum:         0x1
// SYMBOLIC-NEXT:      - Module:          env
// SYMBOLIC-NEXT:        Field:           __memory_base
// SYMBOLIC-NEXT:        Kind:            GLOBAL
// SYMBOLIC-NEXT:        GlobalType:      I32
// SYMBOLIC-NEXT:        GlobalMutable:   false
// SYMBOLIC-NEXT:      - Module:          env
// SYMBOLIC-NEXT:        Field:           __table_base
// SYMBOLIC-NEXT:        Kind:            GLOBAL
// SYMBOLIC-NEXT:        GlobalType:      I32
// SYMBOLIC-NEXT:        GlobalMutable:   false
// SYMBOLIC-NEXT:      - Module:          env
// SYMBOLIC-NEXT:        Field:           __indirect_function_table
// SYMBOLIC-NEXT:        Kind:            TABLE
// SYMBOLIC-NEXT:        Table:
// SYMBOLIC-NEXT:          Index:           0
// SYMBOLIC-NEXT:          ElemType:        FUNCREF
// SYMBOLIC-NEXT:          Limits:
// SYMBOLIC-NEXT:            Minimum:         0x1
// SYMBOLIC-NEXT:  - Type:            FUNCTION

// SYMBOLIC:       - Type:            GLOBAL
// SYMBOLIC-NEXT:    Globals:
// SYMBOLIC-NEXT:      - Index:           2
// SYMBOLIC-NEXT:        Type:            I32
// SYMBOLIC-NEXT:        Mutable:         true
// SYMBOLIC-NEXT:        InitExpr:
// SYMBOLIC-NEXT:          Opcode:          I32_CONST
// SYMBOLIC-NEXT:          Value:           0
// SYMBOLIC-NEXT:      - Index:           3
// SYMBOLIC-NEXT:        Type:            I32
// SYMBOLIC-NEXT:        Mutable:         true
// SYMBOLIC-NEXT:        InitExpr:
// SYMBOLIC-NEXT:          Opcode:          I32_CONST
// SYMBOLIC-NEXT:          Value:           0
// SYMBOLIC-NEXT:      - Index:           4
// SYMBOLIC-NEXT:        Type:            I32
// SYMBOLIC-NEXT:        Mutable:         false
// SYMBOLIC-NEXT:        InitExpr:
// SYMBOLIC-NEXT:          Opcode:          I32_CONST
// SYMBOLIC-NEXT:          Value:           0
// SYMBOLIC-NEXT:  - Type:            EXPORT

.globl foo

foo:
  .functype foo () -> ()
  end_function

.globl get_foo_address
get_foo_address:
  .functype get_foo_address () -> (i32)
  global.get foo@GOT
  end_function

.globl get_bar_address
get_bar_address:
  .functype get_bar_address () -> (i32)
  global.get bar@GOT
  end_function

.globl bar
.section  .data.bar,"",@
bar:
  .int 42
.size bar, 4