File: ppc64-reloc-pcrel34.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 (49 lines) | stat: -rw-r--r-- 1,480 bytes parent folder | download | duplicates (14)
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
# REQUIRES: ppc
# RUN: echo 'SECTIONS { \
# RUN:       .text_low 0x10010000: { *(.text_low) } \
# RUN:       .text_high 0x10080000 : { *(.text_high) } \
# RUN:       }' > %t.script

# RUN: llvm-mc -filetype=obj -triple=powerpc64le %s -o %t.o
# RUN: ld.lld -T %t.script %t.o -o %t
# RUN: llvm-readelf -s %t | FileCheck %s --check-prefix=SYMBOL
# RUN: llvm-objdump -d --no-show-raw-insn %t | FileCheck %s

# RUN: llvm-mc -filetype=obj -triple=powerpc64 %s -o %t.o
# RUN: ld.lld -T %t.script %t.o -o %t
# RUN: llvm-readelf -s %t | FileCheck %s --check-prefix=SYMBOL
# RUN: llvm-objdump -d --no-show-raw-insn %t | FileCheck %s

.section .text_low, "ax", %progbits
# CHECK-LABEL: <GlobIntPCRel>:
# CHECK-NEXT:    10010000:        plwa 3, 12(0), 1
# SYMBOL:        1001000c     4 NOTYPE  LOCAL  DEFAULT     1 glob_int
GlobIntPCRel:
	plwa 3, glob_int@PCREL(0), 1
	blr
glob_int:
	.long	0
	.size	glob_int, 4


# CHECK-LABEL: <GlobIntPCRelOffset>:
# CHECK-NEXT:    10010010:        plwa 3, 16(0), 1
# SYMBOL:        1001001c     8 NOTYPE  LOCAL  DEFAULT     1 glob_int8
GlobIntPCRelOffset:
	plwa 3, glob_int8@PCREL+4(0), 1
	blr
glob_int8:
	.quad	0
	.size	glob_int8, 8


# CHECK-LABEL: <GlobIntPCRelBigOffset>:
# CHECK-NEXT:    10010024:        plwa 3, 458720(0), 1
# SYMBOL:        10080000     8 NOTYPE  LOCAL  DEFAULT     2 glob_int8_big
GlobIntPCRelBigOffset:
	plwa 3, glob_int8_big@PCREL+4(0), 1
	blr
.section .text_high, "ax", %progbits
glob_int8_big:
	.quad	0
	.size	glob_int8_big, 8