File: fold.ll

package info (click to toggle)
llvm-toolchain-17 1%3A17.0.6-22
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,799,624 kB
  • sloc: cpp: 6,428,607; ansic: 1,383,196; asm: 793,408; python: 223,504; objc: 75,364; f90: 60,502; lisp: 33,869; pascal: 15,282; sh: 9,684; perl: 7,453; ml: 4,937; awk: 3,523; makefile: 2,889; javascript: 2,149; xml: 888; fortran: 619; cs: 573
file content (228 lines) | stat: -rw-r--r-- 9,789 bytes parent folder | download | duplicates (2)
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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
; NOTE: Assertions have been autogenerated by utils/update_analyze_test_checks.py
; RUN: opt -disable-output "-passes=print<scalar-evolution>" -S < %s 2>&1 | FileCheck %s

define i16 @test1(i8 %x) {
; CHECK-LABEL: 'test1'
; CHECK-NEXT:  Classifying expressions for: @test1
; CHECK-NEXT:    %A = zext i8 %x to i12
; CHECK-NEXT:    --> (zext i8 %x to i12) U: [0,256) S: [0,256)
; CHECK-NEXT:    %B = sext i12 %A to i16
; CHECK-NEXT:    --> (zext i8 %x to i16) U: [0,256) S: [0,256)
; CHECK-NEXT:  Determining loop execution counts for: @test1
;
  %A = zext i8 %x to i12
  %B = sext i12 %A to i16
  ret i16 %B
}

define i8 @test2(i8 %x) {
; CHECK-LABEL: 'test2'
; CHECK-NEXT:  Classifying expressions for: @test2
; CHECK-NEXT:    %A = zext i8 %x to i16
; CHECK-NEXT:    --> (zext i8 %x to i16) U: [0,256) S: [0,256)
; CHECK-NEXT:    %B = add i16 %A, 1025
; CHECK-NEXT:    --> (1025 + (zext i8 %x to i16))<nuw><nsw> U: [1025,1281) S: [1025,1281)
; CHECK-NEXT:    %C = trunc i16 %B to i8
; CHECK-NEXT:    --> (1 + %x) U: full-set S: full-set
; CHECK-NEXT:  Determining loop execution counts for: @test2
;
  %A = zext i8 %x to i16
  %B = add i16 %A, 1025
  %C = trunc i16 %B to i8
  ret i8 %C
}

define i8 @test3(i8 %x) {
; CHECK-LABEL: 'test3'
; CHECK-NEXT:  Classifying expressions for: @test3
; CHECK-NEXT:    %A = zext i8 %x to i16
; CHECK-NEXT:    --> (zext i8 %x to i16) U: [0,256) S: [0,256)
; CHECK-NEXT:    %B = mul i16 %A, 1027
; CHECK-NEXT:    --> (1027 * (zext i8 %x to i16)) U: full-set S: full-set
; CHECK-NEXT:    %C = trunc i16 %B to i8
; CHECK-NEXT:    --> (3 * %x) U: full-set S: full-set
; CHECK-NEXT:  Determining loop execution counts for: @test3
;
  %A = zext i8 %x to i16
  %B = mul i16 %A, 1027
  %C = trunc i16 %B to i8
  ret i8 %C
}

define void @test4(i32 %x, i32 %y) {
; CHECK-LABEL: 'test4'
; CHECK-NEXT:  Classifying expressions for: @test4
; CHECK-NEXT:    %Y = and i32 %y, 3
; CHECK-NEXT:    --> (zext i2 (trunc i32 %y to i2) to i32) U: [0,4) S: [0,4)
; CHECK-NEXT:    %A = phi i32 [ 0, %entry ], [ %I, %loop ]
; CHECK-NEXT:    --> {0,+,1}<nuw><nsw><%loop> U: [0,21) S: [0,21) Exits: 20 LoopDispositions: { %loop: Computable }
; CHECK-NEXT:    %Z1 = select i1 %rand1, i32 %A, i32 %Y
; CHECK-NEXT:    --> ((zext i2 (trunc i32 %y to i2) to i32) smax {0,+,1}<nuw><nsw><%loop>) U: [0,21) S: [0,21) Exits: 20 LoopDispositions: { %loop: Computable }
; CHECK-NEXT:    %Z2 = select i1 %rand2, i32 %A, i32 %Z1
; CHECK-NEXT:    --> ({0,+,1}<nuw><nsw><%loop> umax ((zext i2 (trunc i32 %y to i2) to i32) smax {0,+,1}<nuw><nsw><%loop>)) U: [0,21) S: [0,21) Exits: 20 LoopDispositions: { %loop: Computable }
; CHECK-NEXT:    %B = trunc i32 %Z2 to i16
; CHECK-NEXT:    --> (trunc i32 ({0,+,1}<nuw><nsw><%loop> umax ((zext i2 (trunc i32 %y to i2) to i32) smax {0,+,1}<nuw><nsw><%loop>)) to i16) U: [0,21) S: [0,21) Exits: 20 LoopDispositions: { %loop: Computable }
; CHECK-NEXT:    %C = sext i16 %B to i30
; CHECK-NEXT:    --> (trunc i32 ({0,+,1}<nuw><nsw><%loop> umax ((zext i2 (trunc i32 %y to i2) to i32) smax {0,+,1}<nuw><nsw><%loop>)) to i30) U: [0,21) S: [0,21) Exits: 20 LoopDispositions: { %loop: Computable }
; CHECK-NEXT:    %D = sext i16 %B to i32
; CHECK-NEXT:    --> ({0,+,1}<nuw><nsw><%loop> umax ((zext i2 (trunc i32 %y to i2) to i32) smax {0,+,1}<nuw><nsw><%loop>)) U: [0,21) S: [0,21) Exits: 20 LoopDispositions: { %loop: Computable }
; CHECK-NEXT:    %E = sext i16 %B to i34
; CHECK-NEXT:    --> ((zext i32 ((zext i2 (trunc i32 %y to i2) to i32) smax {0,+,1}<nuw><nsw><%loop>) to i34) umax {0,+,1}<nuw><nsw><%loop>) U: [0,21) S: [0,21) Exits: 20 LoopDispositions: { %loop: Computable }
; CHECK-NEXT:    %F = zext i16 %B to i30
; CHECK-NEXT:    --> (trunc i32 ({0,+,1}<nuw><nsw><%loop> umax ((zext i2 (trunc i32 %y to i2) to i32) smax {0,+,1}<nuw><nsw><%loop>)) to i30) U: [0,21) S: [0,21) Exits: 20 LoopDispositions: { %loop: Computable }
; CHECK-NEXT:    %G = zext i16 %B to i32
; CHECK-NEXT:    --> ({0,+,1}<nuw><nsw><%loop> umax ((zext i2 (trunc i32 %y to i2) to i32) smax {0,+,1}<nuw><nsw><%loop>)) U: [0,21) S: [0,21) Exits: 20 LoopDispositions: { %loop: Computable }
; CHECK-NEXT:    %H = zext i16 %B to i34
; CHECK-NEXT:    --> ((zext i32 ((zext i2 (trunc i32 %y to i2) to i32) smax {0,+,1}<nuw><nsw><%loop>) to i34) umax {0,+,1}<nuw><nsw><%loop>) U: [0,21) S: [0,21) Exits: 20 LoopDispositions: { %loop: Computable }
; CHECK-NEXT:    %I = add i32 %A, 1
; CHECK-NEXT:    --> {1,+,1}<nuw><nsw><%loop> U: [1,22) S: [1,22) Exits: 21 LoopDispositions: { %loop: Computable }
; CHECK-NEXT:  Determining loop execution counts for: @test4
; CHECK-NEXT:  Loop %loop: backedge-taken count is 20
; CHECK-NEXT:  Loop %loop: constant max backedge-taken count is 20
; CHECK-NEXT:  Loop %loop: symbolic max backedge-taken count is 20
; CHECK-NEXT:  Loop %loop: Predicated backedge-taken count is 20
; CHECK-NEXT:   Predicates:
; CHECK:       Loop %loop: Trip multiple is 21
;
entry:
  %Y = and i32 %y, 3
  br label %loop
loop:
  %A = phi i32 [0, %entry], [%I, %loop]
  %rand1 = icmp sgt i32 %A, %Y
  %Z1 = select i1 %rand1, i32 %A, i32 %Y
  %rand2 = icmp ugt i32 %A, %Z1
  %Z2 = select i1 %rand2, i32 %A, i32 %Z1
  %B = trunc i32 %Z2 to i16
  %C = sext i16 %B to i30
  %D = sext i16 %B to i32
  %E = sext i16 %B to i34
  %F = zext i16 %B to i30
  %G = zext i16 %B to i32
  %H = zext i16 %B to i34
  %I = add i32 %A, 1
  %0 = icmp ne i32 %A, 20
  br i1 %0, label %loop, label %exit
exit:
  ret void
}

define void @test5(i32 %i) {
; CHECK-LABEL: 'test5'
; CHECK-NEXT:  Classifying expressions for: @test5
; CHECK-NEXT:    %A = and i32 %i, 1
; CHECK-NEXT:    --> (zext i1 (trunc i32 %i to i1) to i32) U: [0,2) S: [0,2)
; CHECK-NEXT:    %B = and i32 %i, 2
; CHECK-NEXT:    --> (2 * (zext i1 (trunc i32 (%i /u 2) to i1) to i32))<nuw><nsw> U: [0,3) S: [0,3)
; CHECK-NEXT:    %C = and i32 %i, 63
; CHECK-NEXT:    --> (zext i6 (trunc i32 %i to i6) to i32) U: [0,64) S: [0,64)
; CHECK-NEXT:    %D = and i32 %i, 126
; CHECK-NEXT:    --> (2 * (zext i6 (trunc i32 (%i /u 2) to i6) to i32))<nuw><nsw> U: [0,127) S: [0,127)
; CHECK-NEXT:    %E = and i32 %i, 64
; CHECK-NEXT:    --> (64 * (zext i1 (trunc i32 (%i /u 64) to i1) to i32))<nuw><nsw> U: [0,65) S: [0,65)
; CHECK-NEXT:    %F = and i32 %i, -2147483648
; CHECK-NEXT:    --> (-2147483648 * (%i /u -2147483648))<nuw><nsw> U: [0,-2147483647) S: [-2147483648,1)
; CHECK-NEXT:  Determining loop execution counts for: @test5
;
  %A = and i32 %i, 1
  %B = and i32 %i, 2
  %C = and i32 %i, 63
  %D = and i32 %i, 126
  %E = and i32 %i, 64
  %F = and i32 %i, -2147483648
  ret void
}

define void @test6(i8 %x) {
; CHECK-LABEL: 'test6'
; CHECK-NEXT:  Classifying expressions for: @test6
; CHECK-NEXT:    %A = zext i8 %x to i16
; CHECK-NEXT:    --> (zext i8 %x to i16) U: [0,256) S: [0,256)
; CHECK-NEXT:    %B = shl nuw i16 %A, 8
; CHECK-NEXT:    --> (256 * (zext i8 %x to i16))<nuw> U: [0,-255) S: [-32768,32513)
; CHECK-NEXT:    %C = and i16 %B, -2048
; CHECK-NEXT:    --> (2048 * ((zext i8 %x to i16) /u 8))<nuw> U: [0,-2047) S: [-32768,30721)
; CHECK-NEXT:  Determining loop execution counts for: @test6
;
  %A = zext i8 %x to i16
  %B = shl nuw i16 %A, 8
  %C = and i16 %B, -2048
  ret void
}

; PR22960
define void @test7(i32 %A) {
; CHECK-LABEL: 'test7'
; CHECK-NEXT:  Classifying expressions for: @test7
; CHECK-NEXT:    %B = sext i32 %A to i64
; CHECK-NEXT:    --> (sext i32 %A to i64) U: [-2147483648,2147483648) S: [-2147483648,2147483648)
; CHECK-NEXT:    %C = zext i32 %A to i64
; CHECK-NEXT:    --> (zext i32 %A to i64) U: [0,4294967296) S: [0,4294967296)
; CHECK-NEXT:    %D = sub i64 %B, %C
; CHECK-NEXT:    --> ((sext i32 %A to i64) + (-1 * (zext i32 %A to i64))<nsw>) U: [-6442450943,2147483648) S: [-6442450943,2147483648)
; CHECK-NEXT:    %E = trunc i64 %D to i16
; CHECK-NEXT:    --> 0 U: [0,1) S: [0,1)
; CHECK-NEXT:  Determining loop execution counts for: @test7
;
  %B = sext i32 %A to i64
  %C = zext i32 %A to i64
  %D = sub i64 %B, %C
  %E = trunc i64 %D to i16
  ret void
}

define i64 @test8(i64 %a) {
; CHECK-LABEL: 'test8'
; CHECK-NEXT:  Classifying expressions for: @test8
; CHECK-NEXT:    %t0 = udiv i64 %a, 56
; CHECK-NEXT:    --> (%a /u 56) U: [0,329406144173384851) S: [0,329406144173384851)
; CHECK-NEXT:    %t1 = udiv i64 %t0, 56
; CHECK-NEXT:    --> (%a /u 3136) U: [0,5882252574524730) S: [0,5882252574524730)
; CHECK-NEXT:  Determining loop execution counts for: @test8
;
  %t0 = udiv i64 %a, 56
  %t1 = udiv i64 %t0, 56
  ret i64 %t1
}

define i64 @test9(i64 %a) {
; CHECK-LABEL: 'test9'
; CHECK-NEXT:  Classifying expressions for: @test9
; CHECK-NEXT:    %t0 = udiv i64 %a, 100000000000000
; CHECK-NEXT:    --> (%a /u 100000000000000) U: [0,184468) S: [0,184468)
; CHECK-NEXT:    %t1 = udiv i64 %t0, 100000000000000
; CHECK-NEXT:    --> 0 U: [0,1) S: [0,1)
; CHECK-NEXT:  Determining loop execution counts for: @test9
;
  %t0 = udiv i64 %a, 100000000000000
  %t1 = udiv i64 %t0, 100000000000000
  ret i64 %t1
}

define i64 @test10(i64 %a, i64 %b) {
; CHECK-LABEL: 'test10'
; CHECK-NEXT:  Classifying expressions for: @test10
; CHECK-NEXT:    %t0 = udiv i64 %a, 100000000000000
; CHECK-NEXT:    --> (%a /u 100000000000000) U: [0,184468) S: [0,184468)
; CHECK-NEXT:    %t1 = udiv i64 %t0, 100000000000000
; CHECK-NEXT:    --> 0 U: [0,1) S: [0,1)
; CHECK-NEXT:    %t2 = mul i64 %b, %t1
; CHECK-NEXT:    --> 0 U: [0,1) S: [0,1)
; CHECK-NEXT:  Determining loop execution counts for: @test10
;
  %t0 = udiv i64 %a, 100000000000000
  %t1 = udiv i64 %t0, 100000000000000
  %t2 = mul i64 %b, %t1
  ret i64 %t2
}

define i64 @test11(i64 %a) {
; CHECK-LABEL: 'test11'
; CHECK-NEXT:  Classifying expressions for: @test11
; CHECK-NEXT:    %t0 = udiv i64 0, %a
; CHECK-NEXT:    --> 0 U: [0,1) S: [0,1)
; CHECK-NEXT:  Determining loop execution counts for: @test11
;
  %t0 = udiv i64 0, %a
  ret i64 %t0
}