File: i386-tls-vaddr-align.s

package info (click to toggle)
llvm-toolchain-19 1%3A19.1.7-3
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 1,998,520 kB
  • sloc: cpp: 6,951,680; ansic: 1,486,157; asm: 913,598; python: 232,024; f90: 80,126; objc: 75,281; lisp: 37,276; pascal: 16,990; sh: 10,009; ml: 5,058; perl: 4,724; awk: 3,523; makefile: 3,167; javascript: 2,504; xml: 892; fortran: 664; cs: 573
file content (27 lines) | stat: -rw-r--r-- 790 bytes parent folder | download | duplicates (16)
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
# REQUIRES: x86

# RUN: llvm-mc -filetype=obj -triple=i386 %s -o %t.o
# RUN: ld.lld %t.o -o %t
# RUN: llvm-readelf -S -l %t | FileCheck --check-prefix=SEC %s
# RUN: llvm-objdump --no-print-imm-hex -d %t | FileCheck --check-prefix=DIS %s

# SEC: Name   Type     Address  Off    Size   ES Flg Lk Inf Al
# SEC: .tdata PROGBITS 00402200 000200 000001 00 WAT 0    0  1
# SEC: .tbss  NOBITS   00402300 000201 000008 00 WAT 0    0 256

# SEC: Type Offset   VirtAddr   PhysAddr   FileSiz MemSiz  Flg Align
# SEC: TLS  0x000200 0x00402200 0x00402200 0x00001 0x00108 R   0x100

## a@tprel = st_value(a) - p_memsz - (-p_vaddr-p_memsz & p_align-1)
## = 0 - 256 - 0 = -256
# DIS: leal -256(%ecx), %eax

lea a@ntpoff(%ecx), %eax

.section .tdata,"awT"
.byte 0

.section .tbss,"awT"
.p2align 8
a:
.quad 0