File: section-symbol-gap.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 (51 lines) | stat: -rw-r--r-- 1,772 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
# REQUIRES: x86
## Test st_value of the STT_SECTION symbol equals the output section address,
## instead of the first input section address.

# RUN: split-file %s %t
# RUN: llvm-mc -filetype=obj -triple=x86_64 %t/asm -o %t.o

# RUN: ld.lld --emit-relocs -T %t/lds %t.o -o %t.out
# RUN: llvm-readelf -S -r -s %t.out | FileCheck %s --check-prefix=EXE

## In -r mode, section addresses are zeros, hence the st_value fields of
## STT_SECTION are zeros.
# RUN: ld.lld -r -T %t/lds %t.o -o %t.ro
# RUN: llvm-readelf -S -r -s %t.ro | FileCheck %s --check-prefix=RO

# EXE:      [Nr] Name  Type      Address
# EXE-NEXT: [ 0]
# EXE-NEXT: [ 1] .text PROGBITS  0000000000000000
# EXE-NEXT: [ 2] .bss  NOBITS    000000000000000a

# EXE:      R_X86_64_64 {{.*}} .bss + 1

# EXE:      Symbol table '.symtab' contains 4 entries:
# EXE-NEXT: Num:    Value          Size Type    Bind   Vis       Ndx Name
# EXE-NEXT:   0: 0000000000000000     0 NOTYPE  LOCAL  DEFAULT   UND
# EXE-NEXT:   1: 000000000000000a     0 SECTION LOCAL  DEFAULT     2 .bss
# EXE-NEXT:   2: 0000000000000000     0 SECTION LOCAL  DEFAULT     1 .text
# EXE-NEXT:   3: 0000000000000000     0 SECTION LOCAL  DEFAULT     4 .comment

# RO:       [Nr] Name  Type      Address
# RO-NEXT:  [ 0]
# RO-NEXT:  [ 1] .bss  NOBITS    0000000000000000

# RO:       R_X86_64_64 {{.*}} .bss + 1

# RO:      Symbol table '.symtab' contains 3 entries:
# RO-NEXT: Num:    Value          Size Type    Bind   Vis       Ndx Name
# RO-NEXT:   0: 0000000000000000     0 NOTYPE  LOCAL  DEFAULT   UND
# RO-NEXT:   1: 0000000000000000     0 SECTION LOCAL  DEFAULT     1 .bss
# RO-NEXT:   2: 0000000000000000     0 SECTION LOCAL  DEFAULT     2 .text

#--- asm
movabsq .bss, %rax

.bss
.byte 0

#--- lds
SECTIONS {
  .bss : { BYTE(0) *(.bss) }
}