File: default-script.s

package info (click to toggle)
swiftlang 6.1.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,791,604 kB
  • sloc: cpp: 9,901,740; ansic: 2,201,431; asm: 1,091,827; python: 308,252; objc: 82,166; f90: 80,126; lisp: 38,358; pascal: 25,559; sh: 20,429; ml: 5,058; perl: 4,745; makefile: 4,484; awk: 3,535; javascript: 3,018; xml: 918; fortran: 664; cs: 573; ruby: 396
file content (63 lines) | stat: -rw-r--r-- 1,777 bytes parent folder | download | duplicates (8)
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
# REQUIRES: x86
# RUN: rm -rf %t && split-file %s %t && cd %t
# RUN: llvm-mc -filetype=obj -triple=x86_64 a.s -o a.o
# RUN: ld.lld --default-script=def.t b.t -T a.t a.o -o out
# RUN: llvm-readelf -Ss out | FileCheck %s

# CHECK:      Name
# CHECK:      .foo2
# CHECK-NEXT: .foo0
# CHECK-NEXT: .foo1
# CHECK:      1: 000000000000000c     0 NOTYPE  GLOBAL DEFAULT     4 _start
# CHECK-NEXT: 2: 000000000000002a     0 NOTYPE  GLOBAL DEFAULT   ABS b
# CHECK-NEXT: 3: 000000000000002a     0 NOTYPE  GLOBAL DEFAULT   ABS a
# CHECK-EMPTY:

## In the absence of --script options, the default linker script is read.
# RUN: ld.lld --default-script def.t b.t a.o -o out1
# RUN: llvm-readelf -Ss out1 | FileCheck %s --check-prefix=CHECK1
# RUN: ld.lld -dT def.t b.t a.o -o out1a && cmp out1 out1a
## If multiple -dT options are specified, the last -dT wins.
# RUN: ld.lld -dT a.t -dT def.t b.t a.o -o out1a && cmp out1 out1a

# RUN: mkdir d && cp def.t d/default.t
# RUN: ld.lld -L d -dT default.t b.t a.o -o out1a && cmp out1 out1a

# CHECK1:      Name
# CHECK1:      .foo2
# CHECK1-NEXT: .foo1
# CHECK1-NEXT: .foo0
# CHECK1:      1: 000000000000000c     0 NOTYPE  GLOBAL DEFAULT     4 _start
# CHECK1-NEXT: 2: 000000000000002a     0 NOTYPE  GLOBAL DEFAULT   ABS b
# CHECK1-NEXT: 3: 000000000000002a     0 NOTYPE  GLOBAL DEFAULT   ABS def
# CHECK1-EMPTY:

# RUN: not ld.lld --default-script not-exist.t b.t -T a.t a.o 2>&1 | FileCheck %s --check-prefix=ERR
# ERR: error: cannot find linker script not-exist.t

#--- a.s
.globl _start
_start:

.section .foo0,"a"; .long 0
.section .foo1,"a"; .long 0
.section .foo2,"a"; .long 0

#--- a.t
a = 42;
SECTIONS {
  .foo2 : {}
  .foo0 : {}
  .foo1 : {}
}

#--- b.t
b = 42;

#--- def.t
def = 42;
SECTIONS {
  .foo2 : {}
  .foo1 : {}
  .foo0 : {}
}