File: aix-overflow-toc-data.py

package info (click to toggle)
llvm-toolchain-19 1%3A19.1.7-3~deb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm-proposed-updates
  • size: 1,998,492 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 (59 lines) | stat: -rw-r--r-- 2,179 bytes parent folder | download | duplicates (7)
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
# UNSUPPORTED: expensive_checks, debug

# RUN: %python %s > %t.ll
# RUN: llc -mtriple powerpc-ibm-aix-xcoff -code-model=small -mcpu=pwr7 -mattr=-altivec -O0 < %t.ll | \
# RUN:   FileCheck --check-prefix=ASM32 %s

# RUN: llc -mtriple powerpc64-ibm-aix-xcoff -code-model=small -mcpu=pwr7 -mattr=-altivec -O0 < %t.ll | \
# RUN:   FileCheck --check-prefix=ASM64 %s

# RUN: llc -mtriple powerpc-ibm-aix-xcoff -code-model=small -mcpu=pwr7 -mattr=-altivec -O0 \
# RUN:     -filetype=obj -o %t.o < %t.ll
# RUN: llvm-objdump --no-print-imm-hex -D -r --symbol-description %t.o | FileCheck -D#NFA=2 --check-prefix=DIS32 %s

# RUN: llc -mtriple powerpc64-ibm-aix-xcoff -code-model=small -mcpu=pwr7 -mattr=-altivec -O0 \
# RUN:     -filetype=obj -o %t.o < %t.ll
# RUN: llvm-objdump --no-print-imm-hex -D -r --symbol-description %t.o | FileCheck -D#NFA=2 --check-prefix=DIS64 %s

numentries = 8195
for x in range(0, numentries):
    print("@a%d = global i32 0, align 4 #0" % (x))

print("define void @foo() {")
print("entry:")
for x in range(0, numentries):
    print("store i32 1, i32* @a%d, align 4" % (x))
print("ret void")
print("}")

print('attributes #0 = { "toc-data" }')

# 32-bit assembly check
# ASM32:  la 4, a0[TD](2)
# ASM32:  la 4, a1[TD](2)

# ASM32:  la 4, a8191[TD](2)
# ASM32:  la 4, a8192[TD](2)
# ASM32:  la 4, a8193[TD](2)

# 64-bit assembly check
# ASM64:  la 4, a0[TD](2)
# ASM64:  la 4, a1[TD](2)

# ASM64:  la 4, a8191[TD](2)
# ASM64:  la 4, a8192[TD](2)
# ASM64:  la 4, a8193[TD](2)

# DIS32:    fffc: 38 82 7f fc   addi 4, 2, 32764
# DIS32:      0000fffe:  R_TOC  (idx: [[#NFA+16391]]) a8191[TD]
# DIS32:   10004: 38 82 80 00   addi 4, 2, -32768
# DIS32:      00010006:  R_TOC  (idx: [[#NFA+16393]]) a8192[TD]
# DIS32:   1000c: 38 82 80 04   addi 4, 2, -32764
# DIS32:      0001000e:  R_TOC  (idx: [[#NFA+16395]]) a8193[TD]

# DIS64:    fffc: 38 82 7f fc   addi 4, 2, 32764
# DIS64:      0000fffe:  R_TOC  (idx: [[#NFA+16391]]) a8191[TD]
# DIS64:   10004: 38 82 80 00   addi 4, 2, -32768
# DIS64:      00010006:  R_TOC  (idx: [[#NFA+16393]]) a8192[TD]
# DIS64:   1000c: 38 82 80 04   addi 4, 2, -32764
# DIS64:      0001000e:  R_TOC  (idx: [[#NFA+16395]]) a8193[TD]