aboutsummaryrefslogtreecommitdiff
path: root/llvm/test/Transforms/CodeGenPrepare/ARM/large-offset-gep.ll
blob: ad2dff17ce2fb9b18d5032e996bfb02fab4aea20 (plain)
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
; RUN: llc -mtriple=armv6m-linux-gnueabi -verify-machineinstrs -o - %s -disable-constant-hoisting | FileCheck %s

%struct_type = type { [10000 x i32], i32, i32 }

define void @test1(ptr %s, i32 %n) {
; CHECK-LABEL: test1
entry:
  %struct = load ptr, ptr %s
  br label %while_cond

while_cond:
  %phi = phi i32 [ 0, %entry ], [ %i, %while_body ]
  %gep0 = getelementptr %struct_type, ptr %struct, i64 0, i32 1
  %gep1 = getelementptr %struct_type, ptr %struct, i64 0, i32 2
  %cmp = icmp slt i32 %phi, %n
  br i1 %cmp, label %while_body, label %while_end

while_body:
; CHECK:      str      r{{[0-9]+}}, [r{{[0-9]+}}]
; CHECK-NEXT: str      r{{[0-9]+}}, [r{{[0-9]+}}, #4]
  %i = add i32 %phi, 1
  store i32 %i, ptr %gep0
  store i32 %phi, ptr %gep1
  br label %while_cond

while_end:
  ret void
; CHECK: .LCPI0_0:
; CHECK-NEXT: .long   40000
; CHECK-NOT: LCPI0
}

define void @test2(ptr %struct, i32 %n) {
; CHECK-LABEL: test2
entry:
  %cmp = icmp eq ptr %struct, null
  br i1 %cmp, label %while_end, label %while_cond

while_cond:
  %phi = phi i32 [ 0, %entry ], [ %i, %while_body ]
  %gep0 = getelementptr %struct_type, ptr %struct, i64 0, i32 1
  %gep1 = getelementptr %struct_type, ptr %struct, i64 0, i32 2
  %cmp1 = icmp slt i32 %phi, %n
  br i1 %cmp1, label %while_body, label %while_end

while_body:
; CHECK:      str      r{{[0-9]+}}, [r{{[0-9]+}}]
; CHECK-NEXT: str      r{{[0-9]+}}, [r{{[0-9]+}}, #4]
  %i = add i32 %phi, 1
  store i32 %i, ptr %gep0
  store i32 %phi, ptr %gep1
  br label %while_cond

while_end:
  ret void
; CHECK: .LCPI1_0:
; CHECK-NEXT: .long   40000
; CHECK-NOT: LCPI1
}

define void @test3(ptr %s1, ptr %s2, i1 %cond, i32 %n) {
; CHECK-LABEL: test3
entry:
  br i1 %cond, label %if_true, label %if_end

if_true:
  br label %if_end

if_end:
  %struct = phi ptr [ %s1, %entry ], [ %s2, %if_true ]
  %cmp = icmp eq ptr %struct, null
  br i1 %cmp, label %while_end, label %while_cond

while_cond:
  %phi = phi i32 [ 0, %if_end ], [ %i, %while_body ]
  %gep0 = getelementptr %struct_type, ptr %struct, i64 0, i32 1
  %gep1 = getelementptr %struct_type, ptr %struct, i64 0, i32 2
  %cmp1 = icmp slt i32 %phi, %n
  br i1 %cmp1, label %while_body, label %while_end

while_body:
; CHECK:      str      r{{[0-9]+}}, [r{{[0-9]+}}]
; CHECK-NEXT: str      r{{[0-9]+}}, [r{{[0-9]+}}, #4]
  %i = add i32 %phi, 1
  store i32 %i, ptr %gep0
  store i32 %phi, ptr %gep1
  br label %while_cond

while_end:
  ret void
; CHECK: .LCPI2_0:
; CHECK-NEXT: .long   40000
; CHECK-NOT: LCPI2
}

declare ptr @foo()

define void @test4(i32 %n) personality ptr @__FrameHandler {
; CHECK-LABEL: test4
entry:
  %struct = invoke ptr @foo() to label %while_cond unwind label %cleanup

while_cond:
  %phi = phi i32 [ 0, %entry ], [ %i, %while_body ]
  %gep0 = getelementptr %struct_type, ptr %struct, i64 0, i32 1
  %gep1 = getelementptr %struct_type, ptr %struct, i64 0, i32 2
  %cmp = icmp slt i32 %phi, %n
  br i1 %cmp, label %while_body, label %while_end

while_body:
; CHECK:      str      r{{[0-9]+}}, [r{{[0-9]+}}]
; CHECK-NEXT: str      r{{[0-9]+}}, [r{{[0-9]+}}, #4]
  %i = add i32 %phi, 1
  store i32 %i, ptr %gep0
  store i32 %phi, ptr %gep1
  br label %while_cond

while_end:
  ret void

cleanup:
  landingpad { ptr, i32 } cleanup
  unreachable
; CHECK: .LCPI3_0:
; CHECK-NEXT: .long   40000
; CHECK-NOT: LCPI3
}

declare i32 @__FrameHandler(...)

define void @test5(ptr %s, i32 %n) {
; CHECK-LABEL: test5
entry:
  %struct = load ptr, ptr %s
  br label %while_cond

while_cond:
  %phi = phi i32 [ 0, %entry ], [ %i, %while_body ]
  %gep0 = getelementptr [65536 x i32], ptr %struct, i64 0, i32 20000
  %gep1 = getelementptr [65536 x i32], ptr %struct, i64 0, i32 20001
  %cmp = icmp slt i32 %phi, %n
  br i1 %cmp, label %while_body, label %while_end

while_body:
; CHECK:      str      r{{[0-9]+}}, [r{{[0-9]+}}]
; CHECK-NEXT: str      r{{[0-9]+}}, [r{{[0-9]+}}, #4]
  %i = add i32 %phi, 1
  store i32 %i, ptr %gep0
  store i32 %phi, ptr %gep1
  br label %while_cond

while_end:
  ret void
; CHECK: .LCPI4_0:
; CHECK-NEXT: .long   80000
; CHECK-NOT: LCPI4
}