1 ; RUN: llc -relocation-model=static -verify-machineinstrs -O0 -mcpu=pwr7 -code-model=medium -filetype=obj -fast-isel=false %s -o - | \
2 ; RUN: llvm-readobj -r - | FileCheck -check-prefix=MEDIUM %s
3 ; RUN: llc -relocation-model=static -verify-machineinstrs -O0 -mcpu=pwr7 -code-model=large -filetype=obj -fast-isel=false %s -o - | \
4 ; RUN: llvm-readobj -r - | FileCheck -check-prefix=LARGE %s
6 ; Run jump table test separately since jump tables aren't generated at -O0.
7 ; RUN: llc -relocation-model=static -verify-machineinstrs -mcpu=pwr7 -code-model=medium -filetype=obj -fast-isel=false %s -o - | \
8 ; RUN: llvm-readobj -r - | FileCheck -check-prefix=MEDIUM-JT %s
9 ; RUN: llc -relocation-model=static -verify-machineinstrs -mcpu=pwr7 -code-model=large -filetype=obj -fast-isel=false %s -o - | \
10 ; RUN: llvm-readobj -r - | FileCheck -check-prefix=LARGE-JT %s
12 ; FIXME: When asm-parse is available, could make this an assembly test.
14 target datalayout = "E-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-f128:128:128-v128:128:128-n32:64"
15 target triple = "powerpc64-unknown-linux-gnu"
17 @ei = external global i32
19 define dso_local signext i32 @test_external() nounwind {
21 %0 = load i32, ptr @ei, align 4
22 %inc = add nsw i32 %0, 1
23 store i32 %inc, ptr @ei, align 4
27 ; Verify generation of R_PPC64_TOC16_HA and R_PPC64_TOC16_LO_DS for
28 ; accessing external variable ei.
30 ; MEDIUM: Relocations [
31 ; MEDIUM: Section {{.*}} .rela.text {
32 ; MEDIUM-NEXT: 0x{{[0-9,A-F]+}} R_PPC64_TOC16_HA .toc 0x0
33 ; MEDIUM-NEXT: 0x{{[0-9,A-F]+}} R_PPC64_TOC16_LO_DS .toc 0x0
35 ; LARGE: Relocations [
36 ; LARGE: Section {{.*}} .rela.text {
37 ; LARGE-NEXT: 0x{{[0-9,A-F]+}} R_PPC64_TOC16_HA [[SYM1:[^ ]+]]
38 ; LARGE-NEXT: 0x{{[0-9,A-F]+}} R_PPC64_TOC16_LO_DS [[SYM1]]
40 @test_fn_static.si = internal global i32 0, align 4
42 define dso_local signext i32 @test_fn_static() nounwind {
44 %0 = load i32, ptr @test_fn_static.si, align 4
45 %inc = add nsw i32 %0, 1
46 store i32 %inc, ptr @test_fn_static.si, align 4
50 ; Verify generation of R_PPC64_TOC16_HA and R_PPC64_TOC16_LO for
51 ; accessing function-scoped variable si.
53 ; MEDIUM-NEXT: 0x{{[0-9,A-F]+}} R_PPC64_TOC16_HA .bss 0x0
54 ; MEDIUM-NEXT: 0x{{[0-9,A-F]+}} R_PPC64_TOC16_LO .bss 0x0
56 ; Verify generation of R_PPC64_TOC16_HA and R_PPC64_TOC16_LO_DS for
57 ; accessing function-scoped variable si.
59 ; LARGE-NEXT: 0x{{[0-9,A-F]+}} R_PPC64_TOC16_HA [[SYM2:[^ ]+]]
60 ; LARGE-NEXT: 0x{{[0-9,A-F]+}} R_PPC64_TOC16_LO_DS [[SYM2]]
62 @gi = dso_local global i32 5, align 4
64 define dso_local signext i32 @test_file_static() nounwind {
66 %0 = load i32, ptr @gi, align 4
67 %inc = add nsw i32 %0, 1
68 store i32 %inc, ptr @gi, align 4
72 ; Verify generation of R_PPC64_TOC16_HA and R_PPC64_TOC16_LO for
73 ; accessing file-scope variable gi.
75 ; MEDIUM-NEXT: 0x{{[0-9,A-F]+}} R_PPC64_TOC16_HA gi 0x0
76 ; MEDIUM-NEXT: 0x{{[0-9,A-F]+}} R_PPC64_TOC16_LO gi 0x0
78 ; Verify generation of R_PPC64_TOC16_HA and R_PPC64_TOC16_LO_DS for
79 ; accessing file-scope variable gi.
81 ; LARGE-NEXT: 0x{{[0-9,A-F]+}} R_PPC64_TOC16_HA [[SYM3:[^ ]+]]
82 ; LARGE-NEXT: 0x{{[0-9,A-F]+}} R_PPC64_TOC16_LO_DS [[SYM3]]
84 define dso_local double @test_double_const() nounwind {
86 ret double 0x3F4FD4920B498CF0
89 ; Verify generation of R_PPC64_TOC16_HA and R_PPC64_TOC16_LO for
90 ; accessing a constant.
92 ; MEDIUM-NEXT: 0x{{[0-9,A-F]+}} R_PPC64_TOC16_HA .rodata.cst8
93 ; MEDIUM-NEXT: 0x{{[0-9,A-F]+}} R_PPC64_TOC16_LO .rodata.cst8
95 ; Verify generation of R_PPC64_TOC16_HA and R_PPC64_TOC16_LO_DS for
96 ; accessing a constant.
98 ; LARGE-NEXT: 0x{{[0-9,A-F]+}} R_PPC64_TOC16_HA [[SYM4:[^ ]+]]
99 ; LARGE-NEXT: 0x{{[0-9,A-F]+}} R_PPC64_TOC16_LO_DS [[SYM4]]
101 @ti = common dso_local global i32 0, align 4
103 define dso_local signext i32 @test_tentative() nounwind {
105 %0 = load i32, ptr @ti, align 4
106 %inc = add nsw i32 %0, 1
107 store i32 %inc, ptr @ti, align 4
111 ; Verify generation of relocations foraccessing variable ti.
113 ; MEDIUM-NEXT: 0x{{[0-9,A-F]+}} R_PPC64_TOC16_HA ti 0x0
114 ; MEDIUM-NEXT: 0x{{[0-9,A-F]+}} R_PPC64_TOC16_LO ti 0x0
116 ; LARGE-NEXT: 0x{{[0-9,A-F]+}} R_PPC64_TOC16_HA [[SYM6:[^ ]+]]
117 ; LARGE-NEXT: 0x{{[0-9,A-F]+}} R_PPC64_TOC16_LO_DS [[SYM6]]
119 define ptr @test_fnaddr() nounwind {
121 %func = alloca ptr, align 8
122 store ptr @foo, ptr %func, align 8
123 %0 = load ptr, ptr %func, align 8
127 declare signext i32 @foo(i32 signext)
129 ; Verify generation of R_PPC64_TOC16_HA and R_PPC64_TOC16_LO_DS for
130 ; accessing function address foo.
132 ; MEDIUM-NEXT: 0x{{[0-9,A-F]+}} R_PPC64_TOC16_HA .toc 0x8
133 ; MEDIUM-NEXT: 0x{{[0-9,A-F]+}} R_PPC64_TOC16_LO_DS .toc 0x8
135 ; LARGE-NEXT: 0x{{[0-9,A-F]+}} R_PPC64_TOC16_HA [[SYM7:[^ ]+]]
136 ; LARGE-NEXT: 0x{{[0-9,A-F]+}} R_PPC64_TOC16_LO_DS [[SYM7]]
139 define dso_local signext i32 @test_jump_table(i32 signext %i) nounwind {
141 %i.addr = alloca i32, align 4
142 store i32 %i, ptr %i.addr, align 4
143 %0 = load i32, ptr %i.addr, align 4
144 switch i32 %0, label %sw.default [
151 sw.default: ; preds = %entry
154 sw.bb: ; preds = %entry
155 %1 = load i32, ptr %i.addr, align 4
156 %mul = mul nsw i32 %1, 7
157 store i32 %mul, ptr %i.addr, align 4
160 sw.bb1: ; preds = %entry, %sw.bb
161 %2 = load i32, ptr %i.addr, align 4
162 %dec = add nsw i32 %2, -1
163 store i32 %dec, ptr %i.addr, align 4
166 sw.bb2: ; preds = %entry, %sw.bb1
167 %3 = load i32, ptr %i.addr, align 4
168 %add = add nsw i32 %3, 3
169 store i32 %add, ptr %i.addr, align 4
172 sw.bb3: ; preds = %entry, %sw.bb2
173 %4 = load i32, ptr %i.addr, align 4
175 store i32 %shl, ptr %i.addr, align 4
178 sw.epilog: ; preds = %sw.bb3, %sw.default
179 %5 = load i32, ptr %i.addr, align 4
183 ; Verify generation of R_PPC64_TOC16_HA and R_PPC64_TOC16_LO_DS for
184 ; accessing a jump table address.
186 ; MEDIUM-JT: Relocations [
187 ; MEDIUM-JT: Section ({{.*}}) .rela.text {
188 ; MEDIUM-JT-NEXT: 0x{{[0-9,A-F]+}} R_PPC64_TOC16_HA [[SYM:[^ ]+]]
189 ; MEDIUM-JT-NEXT: 0x{{[0-9,A-F]+}} R_PPC64_TOC16_LO_DS [[SYM]]
191 ; LARGE-JT: Relocations [
192 ; LARGE-JT: Section ({{.*}}) .rela.text {
193 ; LARGE-JT-NEXT: 0x{{[0-9,A-F]+}} R_PPC64_TOC16_HA [[SYM:[^ ]+]]
194 ; LARGE-JT-NEXT: 0x{{[0-9,A-F]+}} R_PPC64_TOC16_LO_DS [[SYM]]