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 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334
|
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --version 2
; RUN: opt < %s -passes=ipsccp -S | FileCheck %s
; RUN: opt < %s -enable-debugify -passes=ipsccp -debugify-quiet -disable-output
;;======================== test1
define internal i32 @test1a(i32 %A) {
; CHECK-LABEL: define internal i32 @test1a
; CHECK-SAME: (i32 [[A:%.*]]) {
; CHECK-NEXT: ret i32 undef
;
%X = add i32 1, 2
ret i32 %A
}
define i32 @test1b() {
; CHECK-LABEL: define i32 @test1b() {
; CHECK-NEXT: [[X:%.*]] = call i32 @test1a(i32 17)
; CHECK-NEXT: ret i32 17
;
%X = call i32 @test1a( i32 17 )
ret i32 %X
}
;;======================== test2
define internal i32 @test2a(i32 %A) {
; CHECK-LABEL: define internal i32 @test2a
; CHECK-SAME: (i32 [[A:%.*]]) {
; CHECK-NEXT: br label [[T:%.*]]
; CHECK: T:
; CHECK-NEXT: [[B:%.*]] = call i32 @test2a(i32 0)
; CHECK-NEXT: ret i32 undef
;
%C = icmp eq i32 %A, 0
br i1 %C, label %T, label %F
T:
%B = call i32 @test2a( i32 0 )
ret i32 0
F:
%C.upgrd.1 = call i32 @test2a(i32 1)
ret i32 %C.upgrd.1
}
define i32 @test2b() {
; CHECK-LABEL: define i32 @test2b() {
; CHECK-NEXT: [[X:%.*]] = call i32 @test2a(i32 0)
; CHECK-NEXT: ret i32 0
;
%X = call i32 @test2a(i32 0)
ret i32 %X
}
;;======================== test3
@G = internal global i32 undef
define void @test3a() {
; CHECK-LABEL: define void @test3a() {
; CHECK-NEXT: [[X:%.*]] = load i32, ptr @G, align 4
; CHECK-NEXT: store i32 [[X]], ptr @G, align 4
; CHECK-NEXT: ret void
;
%X = load i32, ptr @G
store i32 %X, ptr @G
ret void
}
define i32 @test3b() {
; CHECK-LABEL: define i32 @test3b() {
; CHECK-NEXT: [[V:%.*]] = load i32, ptr @G, align 4
; CHECK-NEXT: [[C:%.*]] = icmp eq i32 [[V]], 17
; CHECK-NEXT: br i1 [[C]], label [[T:%.*]], label [[F:%.*]]
; CHECK: T:
; CHECK-NEXT: store i32 17, ptr @G, align 4
; CHECK-NEXT: ret i32 17
; CHECK: F:
; CHECK-NEXT: store i32 123, ptr @G, align 4
; CHECK-NEXT: ret i32 0
;
%V = load i32, ptr @G
%C = icmp eq i32 %V, 17
br i1 %C, label %T, label %F
T:
store i32 17, ptr @G
ret i32 %V
F:
store i32 123, ptr @G
ret i32 0
}
;;======================== test4
define internal {i64,i64} @test4a() {
; CHECK-LABEL: define internal { i64, i64 } @test4a() {
; CHECK-NEXT: ret { i64, i64 } undef
;
%a = insertvalue {i64,i64} undef, i64 4, 1
%b = insertvalue {i64,i64} %a, i64 5, 0
ret {i64,i64} %b
}
define i64 @test4b() personality ptr @__gxx_personality_v0 {
; CHECK-LABEL: define i64 @test4b() personality ptr @__gxx_personality_v0 {
; CHECK-NEXT: [[A:%.*]] = invoke { i64, i64 } @test4a()
; CHECK-NEXT: to label [[A:%.*]] unwind label [[B:%.*]]
; CHECK: A:
; CHECK-NEXT: [[C:%.*]] = call i64 @test4c(i64 5)
; CHECK-NEXT: ret i64 5
; CHECK: B:
; CHECK-NEXT: [[VAL:%.*]] = landingpad { ptr, i32 }
; CHECK-NEXT: catch ptr null
; CHECK-NEXT: ret i64 0
;
%a = invoke {i64,i64} @test4a()
to label %A unwind label %B
A:
%b = extractvalue {i64,i64} %a, 0
%c = call i64 @test4c(i64 %b)
ret i64 %c
B:
%val = landingpad { ptr, i32 }
catch ptr null
ret i64 0
}
define internal i64 @test4c(i64 %a) {
; CHECK-LABEL: define internal i64 @test4c
; CHECK-SAME: (i64 [[A:%.*]]) {
; CHECK-NEXT: ret i64 undef
;
ret i64 %a
}
;;======================== test5
; PR4313
define internal {i64,i64} @test5a() {
; CHECK-LABEL: define internal { i64, i64 } @test5a() {
; CHECK-NEXT: ret { i64, i64 } undef
;
%a = insertvalue {i64,i64} undef, i64 4, 1
%b = insertvalue {i64,i64} %a, i64 5, 0
ret {i64,i64} %b
}
define i64 @test5b() personality ptr @__gxx_personality_v0 {
; CHECK-LABEL: define i64 @test5b() personality ptr @__gxx_personality_v0 {
; CHECK-NEXT: [[A:%.*]] = invoke { i64, i64 } @test5a()
; CHECK-NEXT: to label [[A:%.*]] unwind label [[B:%.*]]
; CHECK: A:
; CHECK-NEXT: [[C:%.*]] = call i64 @test5c({ i64, i64 } { i64 5, i64 4 })
; CHECK-NEXT: ret i64 5
; CHECK: B:
; CHECK-NEXT: [[VAL:%.*]] = landingpad { ptr, i32 }
; CHECK-NEXT: catch ptr null
; CHECK-NEXT: ret i64 0
;
%a = invoke {i64,i64} @test5a()
to label %A unwind label %B
A:
%c = call i64 @test5c({i64,i64} %a)
ret i64 %c
B:
%val = landingpad { ptr, i32 }
catch ptr null
ret i64 0
}
define internal i64 @test5c({i64,i64} %a) {
; CHECK-LABEL: define internal i64 @test5c
; CHECK-SAME: ({ i64, i64 } [[A:%.*]]) {
; CHECK-NEXT: ret i64 undef
;
%b = extractvalue {i64,i64} %a, 0
ret i64 %b
}
;;======================== test6
define i64 @test6a() {
; CHECK-LABEL: define i64 @test6a() {
; CHECK-NEXT: ret i64 0
;
ret i64 0
}
define i64 @test6b() {
; CHECK-LABEL: define i64 @test6b() {
; CHECK-NEXT: [[A:%.*]] = call i64 @test6a()
; CHECK-NEXT: ret i64 0
;
%a = call i64 @test6a()
ret i64 %a
}
;;======================== test7
%T = type {i32,i32}
define internal %T @test7a(i32 %A) {
; CHECK-LABEL: define internal %T @test7a
; CHECK-SAME: (i32 [[A:%.*]]) {
; CHECK-NEXT: ret [[T:%.*]] undef
;
%X = add i32 1, %A
%mrv0 = insertvalue %T undef, i32 %X, 0
%mrv1 = insertvalue %T %mrv0, i32 %A, 1
ret %T %mrv1
}
define i32 @test7b() {
; CHECK-LABEL: define i32 @test7b() {
; CHECK-NEXT: [[X:%.*]] = call [[T:%.*]] @test7a(i32 17)
; CHECK-NEXT: ret i32 36
;
%X = call %T @test7a(i32 17)
%Y = extractvalue %T %X, 0
%Z = add i32 %Y, %Y
ret i32 %Z
}
;;======================== test8
define internal {} @test8a(i32 %A, ptr %P) {
; CHECK-LABEL: define internal {} @test8a
; CHECK-SAME: (i32 [[A:%.*]], ptr [[P:%.*]]) {
; CHECK-NEXT: store i32 5, ptr [[P]], align 4
; CHECK-NEXT: ret {} undef
;
store i32 %A, ptr %P
ret {} {}
}
define void @test8b(ptr %P) {
; CHECK-LABEL: define void @test8b
; CHECK-SAME: (ptr [[P:%.*]]) {
; CHECK-NEXT: [[X:%.*]] = call {} @test8a(i32 5, ptr [[P]])
; CHECK-NEXT: ret void
;
%X = call {} @test8a(i32 5, ptr %P)
ret void
}
;;======================== test9
@test9g = internal global { } zeroinitializer
define void @test9() {
; CHECK-LABEL: define void @test9() {
; CHECK-NEXT: entry:
; CHECK-NEXT: [[LOCAL_FOO:%.*]] = alloca {}, align 8
; CHECK-NEXT: store {} zeroinitializer, ptr [[LOCAL_FOO]], align 1
; CHECK-NEXT: ret void
;
entry:
%local_foo = alloca { }
load { }, ptr @test9g
store { } %0, ptr %local_foo
ret void
}
declare i32 @__gxx_personality_v0(...)
;;======================== test10
define i32 @test10a() nounwind {
; CHECK-LABEL: define i32 @test10a
; CHECK-SAME: () #[[ATTR0:[0-9]+]] {
; CHECK-NEXT: entry:
; CHECK-NEXT: [[CALL:%.*]] = call i32 @test10b(i32 undef)
; CHECK-NEXT: ret i32 [[CALL]]
;
entry:
%call = call i32 @test10b(i32 undef)
ret i32 %call
}
define internal i32 @test10b(i32 %x) nounwind {
; CHECK-LABEL: define internal i32 @test10b
; CHECK-SAME: (i32 [[X:%.*]]) #[[ATTR0]] {
; CHECK-NEXT: entry:
; CHECK-NEXT: [[R:%.*]] = and i32 undef, 1
; CHECK-NEXT: ret i32 [[R]]
;
entry:
%r = and i32 %x, 1
ret i32 %r
}
;;======================== test11
define i64 @test11a() {
; CHECK-LABEL: define i64 @test11a() {
; CHECK-NEXT: [[XOR:%.*]] = xor i64 undef, undef
; CHECK-NEXT: ret i64 [[XOR]]
;
%xor = xor i64 undef, undef
ret i64 %xor
}
define i64 @test11b() {
; CHECK-LABEL: define i64 @test11b() {
; CHECK-NEXT: [[CALL1:%.*]] = call i64 @test11a()
; CHECK-NEXT: [[CALL2:%.*]] = call i64 @llvm.ctpop.i64(i64 [[CALL1]])
; CHECK-NEXT: ret i64 [[CALL2]]
;
%call1 = call i64 @test11a()
%call2 = call i64 @llvm.ctpop.i64(i64 %call1)
ret i64 %call2
}
declare i64 @llvm.ctpop.i64(i64)
;;======================== test12
;; Ensure that a struct as an arg to a potentially constant-foldable
;; function does not crash SCCP (for now it'll just ignores it)
define i1 @test12() {
; CHECK-LABEL: define i1 @test12() {
; CHECK-NEXT: [[C:%.*]] = call i1 @llvm.is.constant.sl_i32i32s({ i32, i32 } { i32 -1, i32 32 })
; CHECK-NEXT: ret i1 [[C]]
;
%c = call i1 @llvm.is.constant.sl_i32i32s({i32, i32} {i32 -1, i32 32})
ret i1 %c
}
declare i1 @llvm.is.constant.sl_i32i32s({i32, i32} %a)
|