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 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598
|
; RUN: llc -mcpu=corei7 -no-stack-coloring=false < %s | FileCheck %s --check-prefix=YESCOLOR --check-prefix=CHECK
; RUN: llc -mcpu=corei7 -no-stack-coloring=false -stackcoloring-lifetime-start-on-first-use=false < %s | FileCheck %s --check-prefix=NOFIRSTUSE --check-prefix=CHECK
; RUN: llc -mcpu=corei7 -no-stack-coloring=true < %s | FileCheck %s --check-prefix=NOCOLOR --check-prefix=CHECK
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-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64-S128"
target triple = "x86_64-apple-macosx10.8.0"
;CHECK-LABEL: myCall_w2:
;YESCOLOR: subq $144, %rsp
;NOCOLOR: subq $272, %rsp
define i32 @myCall_w2(i32 %in) {
entry:
%a = alloca [17 x ptr], align 8
%a2 = alloca [16 x ptr], align 8
call void @llvm.lifetime.start.p0(i64 -1, ptr %a)
%t1 = call i32 @foo(i32 %in, ptr %a)
%t2 = call i32 @foo(i32 %in, ptr %a)
call void @llvm.lifetime.end.p0(i64 -1, ptr %a)
call void @llvm.lifetime.start.p0(i64 -1, ptr %a2)
%t3 = call i32 @foo(i32 %in, ptr %a2)
%t4 = call i32 @foo(i32 %in, ptr %a2)
call void @llvm.lifetime.end.p0(i64 -1, ptr %a2)
%t5 = add i32 %t1, %t2
%t6 = add i32 %t3, %t4
%t7 = add i32 %t5, %t6
ret i32 %t7
}
;CHECK-LABEL: myCall2_no_merge
;YESCOLOR: subq $272, %rsp
;NOCOLOR: subq $272, %rsp
define i32 @myCall2_no_merge(i32 %in, i1 %d) {
entry:
%a = alloca [17 x ptr], align 8
%a2 = alloca [16 x ptr], align 8
call void @llvm.lifetime.start.p0(i64 -1, ptr %a)
%t1 = call i32 @foo(i32 %in, ptr %a)
%t2 = call i32 @foo(i32 %in, ptr %a)
br i1 %d, label %bb2, label %bb3
bb2:
call void @llvm.lifetime.start.p0(i64 -1, ptr %a2)
%t3 = call i32 @foo(i32 %in, ptr %a2)
%t4 = call i32 @foo(i32 %in, ptr %a2)
call void @llvm.lifetime.end.p0(i64 -1, ptr %a2)
%t5 = add i32 %t1, %t2
%t6 = add i32 %t3, %t4
%t7 = add i32 %t5, %t6
call void @llvm.lifetime.end.p0(i64 -1, ptr %a)
ret i32 %t7
bb3:
call void @llvm.lifetime.end.p0(i64 -1, ptr %a)
ret i32 0
}
;CHECK-LABEL: myCall2_w2
;YESCOLOR: subq $144, %rsp
;NOCOLOR: subq $272, %rsp
define i32 @myCall2_w2(i32 %in, i1 %d) {
entry:
%a = alloca [17 x ptr], align 8
%a2 = alloca [16 x ptr], align 8
call void @llvm.lifetime.start.p0(i64 -1, ptr %a)
%t1 = call i32 @foo(i32 %in, ptr %a)
%t2 = call i32 @foo(i32 %in, ptr %a)
call void @llvm.lifetime.end.p0(i64 -1, ptr %a)
br i1 %d, label %bb2, label %bb3
bb2:
call void @llvm.lifetime.start.p0(i64 -1, ptr %a2)
%t3 = call i32 @foo(i32 %in, ptr %a2)
%t4 = call i32 @foo(i32 %in, ptr %a2)
call void @llvm.lifetime.end.p0(i64 -1, ptr %a2)
%t5 = add i32 %t1, %t2
%t6 = add i32 %t3, %t4
%t7 = add i32 %t5, %t6
ret i32 %t7
bb3:
ret i32 0
}
;CHECK-LABEL: myCall_w4:
;YESCOLOR: subq $112, %rsp
;NOFIRSTUSE: subq $208, %rsp
;NOCOLOR: subq $400, %rsp
define i32 @myCall_w4(i32 %in) {
entry:
%a1 = alloca [14 x ptr], align 8
%a2 = alloca [13 x ptr], align 8
%a3 = alloca [12 x ptr], align 8
%a4 = alloca [11 x ptr], align 8
call void @llvm.lifetime.start.p0(i64 -1, ptr %a4)
call void @llvm.lifetime.start.p0(i64 -1, ptr %a1)
%t1 = call i32 @foo(i32 %in, ptr %a1)
%t2 = call i32 @foo(i32 %in, ptr %a1)
call void @llvm.lifetime.end.p0(i64 -1, ptr %a1)
call void @llvm.lifetime.start.p0(i64 -1, ptr %a2)
%t9 = call i32 @foo(i32 %in, ptr %a2)
%t8 = call i32 @foo(i32 %in, ptr %a2)
call void @llvm.lifetime.end.p0(i64 -1, ptr %a2)
call void @llvm.lifetime.start.p0(i64 -1, ptr %a3)
%t3 = call i32 @foo(i32 %in, ptr %a3)
%t4 = call i32 @foo(i32 %in, ptr %a3)
call void @llvm.lifetime.end.p0(i64 -1, ptr %a3)
%t11 = call i32 @foo(i32 %in, ptr %a4)
call void @llvm.lifetime.end.p0(i64 -1, ptr %a4)
%t5 = add i32 %t1, %t2
%t6 = add i32 %t3, %t4
%t7 = add i32 %t5, %t6
ret i32 %t7
}
;CHECK-LABEL: myCall2_w4:
;YESCOLOR: subq $112, %rsp
;NOCOLOR: subq $400, %rsp
define i32 @myCall2_w4(i32 %in) {
entry:
%a1 = alloca [14 x ptr], align 8
%a2 = alloca [13 x ptr], align 8
%a3 = alloca [12 x ptr], align 8
%a4 = alloca [11 x ptr], align 8
call void @llvm.lifetime.start.p0(i64 -1, ptr %a1)
%t1 = call i32 @foo(i32 %in, ptr %a1)
%t2 = call i32 @foo(i32 %in, ptr %a1)
call void @llvm.lifetime.end.p0(i64 -1, ptr %a1)
call void @llvm.lifetime.start.p0(i64 -1, ptr %a2)
%t9 = call i32 @foo(i32 %in, ptr %a2)
%t8 = call i32 @foo(i32 %in, ptr %a2)
call void @llvm.lifetime.end.p0(i64 -1, ptr %a2)
call void @llvm.lifetime.start.p0(i64 -1, ptr %a3)
%t3 = call i32 @foo(i32 %in, ptr %a3)
%t4 = call i32 @foo(i32 %in, ptr %a3)
call void @llvm.lifetime.end.p0(i64 -1, ptr %a3)
br i1 undef, label %bb2, label %bb3
bb2:
call void @llvm.lifetime.start.p0(i64 -1, ptr %a4)
%t11 = call i32 @foo(i32 %in, ptr %a4)
call void @llvm.lifetime.end.p0(i64 -1, ptr %a4)
%t5 = add i32 %t1, %t2
%t6 = add i32 %t3, %t4
%t7 = add i32 %t5, %t6
ret i32 %t7
bb3:
ret i32 0
}
;CHECK-LABEL: myCall2_noend:
;YESCOLOR: subq $144, %rsp
;NOCOLOR: subq $272, %rsp
define i32 @myCall2_noend(i32 %in, i1 %d) {
entry:
%a = alloca [17 x ptr], align 8
%a2 = alloca [16 x ptr], align 8
call void @llvm.lifetime.start.p0(i64 -1, ptr %a)
%t1 = call i32 @foo(i32 %in, ptr %a)
%t2 = call i32 @foo(i32 %in, ptr %a)
call void @llvm.lifetime.end.p0(i64 -1, ptr %a)
br i1 %d, label %bb2, label %bb3
bb2:
call void @llvm.lifetime.start.p0(i64 -1, ptr %a2)
%t3 = call i32 @foo(i32 %in, ptr %a2)
%t4 = call i32 @foo(i32 %in, ptr %a2)
%t5 = add i32 %t1, %t2
%t6 = add i32 %t3, %t4
%t7 = add i32 %t5, %t6
ret i32 %t7
bb3:
ret i32 0
}
;CHECK-LABEL: myCall2_noend2:
;YESCOLOR: subq $144, %rsp
;NOCOLOR: subq $272, %rsp
define i32 @myCall2_noend2(i32 %in, i1 %d) {
entry:
%a = alloca [17 x ptr], align 8
%a2 = alloca [16 x ptr], align 8
call void @llvm.lifetime.start.p0(i64 -1, ptr %a)
%t1 = call i32 @foo(i32 %in, ptr %a)
%t2 = call i32 @foo(i32 %in, ptr %a)
br i1 %d, label %bb2, label %bb3
bb2:
call void @llvm.lifetime.end.p0(i64 -1, ptr %a)
call void @llvm.lifetime.start.p0(i64 -1, ptr %a2)
%t3 = call i32 @foo(i32 %in, ptr %a2)
%t4 = call i32 @foo(i32 %in, ptr %a2)
%t5 = add i32 %t1, %t2
%t6 = add i32 %t3, %t4
%t7 = add i32 %t5, %t6
ret i32 %t7
bb3:
ret i32 0
}
;CHECK-LABEL: myCall2_nostart:
;YESCOLOR: subq $272, %rsp
;NOCOLOR: subq $272, %rsp
define i32 @myCall2_nostart(i32 %in, i1 %d) {
entry:
%a = alloca [17 x ptr], align 8
%a2 = alloca [16 x ptr], align 8
%t1 = call i32 @foo(i32 %in, ptr %a)
%t2 = call i32 @foo(i32 %in, ptr %a)
call void @llvm.lifetime.end.p0(i64 -1, ptr %a)
br i1 %d, label %bb2, label %bb3
bb2:
call void @llvm.lifetime.start.p0(i64 -1, ptr %a2)
%t3 = call i32 @foo(i32 %in, ptr %a2)
%t4 = call i32 @foo(i32 %in, ptr %a2)
%t5 = add i32 %t1, %t2
%t6 = add i32 %t3, %t4
%t7 = add i32 %t5, %t6
ret i32 %t7
bb3:
ret i32 0
}
; Adopt the test from Transforms/Inline/array_merge.ll'
;CHECK-LABEL: array_merge:
;YESCOLOR: subq $808, %rsp
;NOCOLOR: subq $1608, %rsp
define void @array_merge() nounwind ssp {
entry:
%A.i1 = alloca [100 x i32], align 4
%B.i2 = alloca [100 x i32], align 4
%A.i = alloca [100 x i32], align 4
%B.i = alloca [100 x i32], align 4
call void @llvm.lifetime.start.p0(i64 -1, ptr %A.i) nounwind
call void @llvm.lifetime.start.p0(i64 -1, ptr %B.i) nounwind
call void @bar(ptr %A.i, ptr %B.i) nounwind
call void @llvm.lifetime.end.p0(i64 -1, ptr %A.i) nounwind
call void @llvm.lifetime.end.p0(i64 -1, ptr %B.i) nounwind
call void @llvm.lifetime.start.p0(i64 -1, ptr %A.i1) nounwind
call void @llvm.lifetime.start.p0(i64 -1, ptr %B.i2) nounwind
call void @bar(ptr %A.i1, ptr %B.i2) nounwind
call void @llvm.lifetime.end.p0(i64 -1, ptr %A.i1) nounwind
call void @llvm.lifetime.end.p0(i64 -1, ptr %B.i2) nounwind
ret void
}
;CHECK-LABEL: func_phi_lifetime:
;YESCOLOR: subq $272, %rsp
;NOCOLOR: subq $272, %rsp
define i32 @func_phi_lifetime(i32 %in, i1 %d) {
entry:
%a = alloca [17 x ptr], align 8
%a2 = alloca [16 x ptr], align 8
%t1 = call i32 @foo(i32 %in, ptr %a)
%t2 = call i32 @foo(i32 %in, ptr %a)
call void @llvm.lifetime.end.p0(i64 -1, ptr %a)
br i1 %d, label %bb0, label %bb1
bb0:
br label %bb2
bb1:
br label %bb2
bb2:
%split = phi ptr [ %a, %bb0 ], [ %a2, %bb1 ]
call void @llvm.lifetime.start.p0(i64 -1, ptr %split)
%t3 = call i32 @foo(i32 %in, ptr %a2)
%t4 = call i32 @foo(i32 %in, ptr %a2)
%t5 = add i32 %t1, %t2
%t6 = add i32 %t3, %t4
%t7 = add i32 %t5, %t6
call void @llvm.lifetime.end.p0(i64 -1, ptr %split)
ret i32 %t7
bb3:
ret i32 0
}
;CHECK-LABEL: multi_region_bb:
;YESCOLOR: subq $272, %rsp
;NOCOLOR: subq $272, %rsp
define void @multi_region_bb() nounwind ssp {
entry:
%A.i1 = alloca [100 x i32], align 4
%B.i2 = alloca [100 x i32], align 4
%A.i = alloca [100 x i32], align 4
%B.i = alloca [100 x i32], align 4
call void @llvm.lifetime.start.p0(i64 -1, ptr %A.i) nounwind ; <---- start #1
call void @llvm.lifetime.start.p0(i64 -1, ptr %B.i) nounwind
call void @bar(ptr %A.i, ptr %B.i) nounwind
call void @llvm.lifetime.end.p0(i64 -1, ptr %A.i) nounwind
call void @llvm.lifetime.end.p0(i64 -1, ptr %B.i) nounwind
call void @llvm.lifetime.start.p0(i64 -1, ptr %A.i1) nounwind
call void @llvm.lifetime.start.p0(i64 -1, ptr %B.i2) nounwind
call void @llvm.lifetime.start.p0(i64 -1, ptr %A.i) nounwind ; <---- start #2
call void @bar(ptr %A.i1, ptr %B.i2) nounwind
call void @llvm.lifetime.end.p0(i64 -1, ptr %A.i1) nounwind
call void @llvm.lifetime.end.p0(i64 -1, ptr %A.i) nounwind
call void @llvm.lifetime.end.p0(i64 -1, ptr %B.i2) nounwind
ret void
}
define i32 @myCall_end_before_begin(i32 %in, i1 %d) {
entry:
%a = alloca [17 x ptr], align 8
%a2 = alloca [16 x ptr], align 8
%t1 = call i32 @foo(i32 %in, ptr %a)
%t2 = call i32 @foo(i32 %in, ptr %a)
call void @llvm.lifetime.end.p0(i64 -1, ptr %a)
call void @llvm.lifetime.start.p0(i64 -1, ptr %a)
br i1 %d, label %bb2, label %bb3
bb2:
call void @llvm.lifetime.start.p0(i64 -1, ptr %a2)
%t3 = call i32 @foo(i32 %in, ptr %a2)
%t4 = call i32 @foo(i32 %in, ptr %a2)
%t5 = add i32 %t1, %t2
%t6 = add i32 %t3, %t4
%t7 = add i32 %t5, %t6
ret i32 %t7
bb3:
ret i32 0
}
; Regression test for PR15707. %buf1 and %buf2 should not be merged
; in this test case.
;CHECK-LABEL: myCall_pr15707:
;NOFIRSTUSE: subq $200008, %rsp
;NOCOLOR: subq $200008, %rsp
define void @myCall_pr15707() {
%buf1 = alloca i8, i32 100000, align 16
%buf2 = alloca i8, i32 100000, align 16
call void @llvm.lifetime.start.p0(i64 -1, ptr %buf1)
call void @llvm.lifetime.end.p0(i64 -1, ptr %buf1)
call void @llvm.lifetime.start.p0(i64 -1, ptr %buf1)
call void @llvm.lifetime.start.p0(i64 -1, ptr %buf2)
%result1 = call i32 @foo(i32 0, ptr %buf1)
%result2 = call i32 @foo(i32 0, ptr %buf2)
ret void
}
; Check that we don't assert and crash even when there are allocas
; outside the declared lifetime regions.
;CHECK-LABEL: bad_range:
define void @bad_range() nounwind ssp {
entry:
%A.i1 = alloca [100 x i32], align 4
%B.i2 = alloca [100 x i32], align 4
%A.i = alloca [100 x i32], align 4
%B.i = alloca [100 x i32], align 4
call void @llvm.lifetime.start.p0(i64 -1, ptr %A.i) nounwind
call void @llvm.lifetime.start.p0(i64 -1, ptr %B.i) nounwind
call void @bar(ptr %A.i, ptr %B.i) nounwind
call void @llvm.lifetime.end.p0(i64 -1, ptr %A.i) nounwind
call void @llvm.lifetime.end.p0(i64 -1, ptr %B.i) nounwind
br label %block2
block2:
; I am used outside the marked lifetime.
call void @bar(ptr %A.i, ptr %B.i) nounwind
ret void
}
; Check that we don't assert and crash even when there are usages
; of allocas which do not read or write outside the declared lifetime regions.
;CHECK-LABEL: shady_range:
%struct.Klass = type { i32, i32 }
define i32 @shady_range(i32 %argc, ptr nocapture %argv) uwtable {
%a.i = alloca [4 x %struct.Klass], align 16
%b.i = alloca [4 x %struct.Klass], align 16
; I am used outside the lifetime zone below:
call void @llvm.lifetime.start.p0(i64 -1, ptr %a.i)
call void @llvm.lifetime.start.p0(i64 -1, ptr %b.i)
%z3 = load i32, ptr %a.i, align 16
%r = call i32 @foo(i32 %z3, ptr %a.i)
%r2 = call i32 @foo(i32 %z3, ptr %b.i)
call void @llvm.lifetime.end.p0(i64 -1, ptr %a.i)
call void @llvm.lifetime.end.p0(i64 -1, ptr %b.i)
ret i32 9
}
; In this case 'itar1' and 'itar2' can't be overlapped if we treat
; lifetime.start as the beginning of the lifetime, but we can
; overlap if we consider first use of the slot as lifetime
; start. See llvm bug 25776.
;CHECK-LABEL: ifthen_twoslots:
;YESCOLOR: subq $1544, %rsp
;NOFIRSTUSE: subq $2056, %rsp
;NOCOLOR: subq $2568, %rsp
define i32 @ifthen_twoslots(i32 %x) #0 {
entry:
%b1 = alloca [128 x i32], align 16
%b2 = alloca [128 x i32], align 16
%b3 = alloca [128 x i32], align 16
%b4 = alloca [128 x i32], align 16
%b5 = alloca [128 x i32], align 16
call void @llvm.lifetime.start.p0(i64 512, ptr %b1)
call void @llvm.lifetime.start.p0(i64 512, ptr %b2)
%and = and i32 %x, 1
%tobool = icmp eq i32 %and, 0
br i1 %tobool, label %if.else, label %if.then
if.then: ; preds = %entry
call void @llvm.lifetime.start.p0(i64 512, ptr %b3)
call void @initb(ptr %b1, ptr %b3, ptr null)
call void @llvm.lifetime.end.p0(i64 512, ptr %b3)
br label %if.end
if.else: ; preds = %entry
call void @llvm.lifetime.start.p0(i64 512, ptr %b4)
call void @llvm.lifetime.start.p0(i64 512, ptr %b5)
call void @initb(ptr %b2, ptr %b4, ptr %b5) #3
call void @llvm.lifetime.end.p0(i64 512, ptr %b5)
call void @llvm.lifetime.end.p0(i64 512, ptr %b4)
br label %if.end
if.end: ; preds = %if.else, %if.then
call void @llvm.lifetime.end.p0(i64 512, ptr %b2)
call void @llvm.lifetime.end.p0(i64 512, ptr %b1)
ret i32 0
}
; This function is intended to test the case where you
; have a reference to a stack slot that lies outside of
; the START/END lifetime markers-- the flow analysis
; should catch this and build the lifetime based on the
; markers only.
;CHECK-LABEL: while_loop:
;YESCOLOR: subq $1032, %rsp
;NOFIRSTUSE: subq $1544, %rsp
;NOCOLOR: subq $1544, %rsp
define i32 @while_loop(i32 %x) #0 {
entry:
%b1 = alloca [128 x i32], align 16
%b2 = alloca [128 x i32], align 16
%b3 = alloca [128 x i32], align 16
call void @llvm.lifetime.start.p0(i64 512, ptr %b1) #3
call void @llvm.lifetime.start.p0(i64 512, ptr %b2) #3
%and = and i32 %x, 1
%tobool = icmp eq i32 %and, 0
br i1 %tobool, label %if.else, label %if.then
if.then: ; preds = %entry
call void @inita(ptr %b2) #3
br label %if.end
if.else: ; preds = %entry
call void @inita(ptr %b1) #3
call void @inita(ptr %b3) #3
%tobool25 = icmp eq i32 %x, 0
br i1 %tobool25, label %if.end, label %while.body.lr.ph
while.body.lr.ph: ; preds = %if.else
br label %while.body
while.body: ; preds = %while.body.lr.ph, %while.body
%x.addr.06 = phi i32 [ %x, %while.body.lr.ph ], [ %dec, %while.body ]
%dec = add nsw i32 %x.addr.06, -1
call void @llvm.lifetime.start.p0(i64 512, ptr %b3) #3
call void @inita(ptr %b3) #3
call void @llvm.lifetime.end.p0(i64 512, ptr %b3) #3
%tobool2 = icmp eq i32 %dec, 0
br i1 %tobool2, label %if.end.loopexit, label %while.body
if.end.loopexit: ; preds = %while.body
br label %if.end
if.end: ; preds = %if.end.loopexit, %if.else, %if.then
call void @llvm.lifetime.end.p0(i64 512, ptr %b2) #3
call void @llvm.lifetime.end.p0(i64 512, ptr %b1) #3
ret i32 0
}
; Test case motivated by PR27903. Same routine inlined multiple times
; into a caller results in a multi-segment lifetime, but the second
; lifetime has no explicit references to the stack slot. Such slots
; have to be treated conservatively.
;CHECK-LABEL: twobod_b27903:
;YESCOLOR: subq $96, %rsp
;NOFIRSTUSE: subq $96, %rsp
;NOCOLOR: subq $96, %rsp
define i32 @twobod_b27903(i32 %y, i32 %x) {
entry:
%buffer.i = alloca [12 x i32], align 16
%abc = alloca [12 x i32], align 16
call void @llvm.lifetime.start.p0(i64 48, ptr %buffer.i)
%idxprom.i = sext i32 %y to i64
%arrayidx.i = getelementptr inbounds [12 x i32], ptr %buffer.i, i64 0, i64 %idxprom.i
call void @inita(ptr %arrayidx.i)
%add.i = add nsw i32 %x, %y
call void @llvm.lifetime.end.p0(i64 48, ptr %buffer.i)
%tobool = icmp eq i32 %y, 0
br i1 %tobool, label %if.end, label %if.then
if.then: ; preds = %entry
call void @llvm.lifetime.start.p0(i64 48, ptr %abc)
%arrayidx = getelementptr inbounds [12 x i32], ptr %abc, i64 0, i64 %idxprom.i
call void @inita(ptr %arrayidx)
call void @llvm.lifetime.start.p0(i64 48, ptr %buffer.i)
call void @inita(ptr %arrayidx.i)
%add.i9 = add nsw i32 %add.i, %y
call void @llvm.lifetime.end.p0(i64 48, ptr %buffer.i)
call void @llvm.lifetime.end.p0(i64 48, ptr %abc)
br label %if.end
if.end: ; preds = %if.then, %entry
%x.addr.0 = phi i32 [ %add.i9, %if.then ], [ %add.i, %entry ]
ret i32 %x.addr.0
}
;CHECK-LABEL: multi_segment:
;YESCOLOR: subq $256, %rsp
;NOFIRSTUSE: subq $256, %rsp
;NOCOLOR: subq $512, %rsp
define i1 @multi_segment(i1, i1)
{
entry-block:
%foo = alloca [32 x i64]
%bar = alloca [32 x i64]
call void @llvm.lifetime.start.p0(i64 256, ptr %bar)
call void @baz(ptr %bar, i32 1)
call void @llvm.lifetime.end.p0(i64 256, ptr %bar)
call void @llvm.lifetime.start.p0(i64 256, ptr %foo)
call void @baz(ptr %foo, i32 1)
call void @llvm.lifetime.end.p0(i64 256, ptr %foo)
call void @llvm.lifetime.start.p0(i64 256, ptr %bar)
call void @baz(ptr %bar, i32 1)
call void @llvm.lifetime.end.p0(i64 256, ptr %bar)
ret i1 true
}
;CHECK-LABEL: pr32488:
;YESCOLOR: subq $256, %rsp
;NOFIRSTUSE: subq $256, %rsp
;NOCOLOR: subq $512, %rsp
define i1 @pr32488(i1, i1)
{
entry-block:
%foo = alloca [32 x i64]
%bar = alloca [32 x i64]
br i1 %0, label %if_false, label %if_true
if_false:
call void @llvm.lifetime.start.p0(i64 256, ptr %bar)
call void @baz(ptr %bar, i32 0)
br i1 %1, label %if_false.1, label %onerr
if_false.1:
call void @llvm.lifetime.end.p0(i64 256, ptr %bar)
br label %merge
if_true:
call void @llvm.lifetime.start.p0(i64 256, ptr %foo)
call void @baz(ptr %foo, i32 1)
br i1 %1, label %if_true.1, label %onerr
if_true.1:
call void @llvm.lifetime.end.p0(i64 256, ptr %foo)
br label %merge
merge:
ret i1 false
onerr:
call void @llvm.lifetime.end.p0(i64 256, ptr %foo)
call void @llvm.lifetime.end.p0(i64 256, ptr %bar)
call void @destructor()
ret i1 true
}
%Data = type { [32 x i64] }
declare void @destructor()
declare void @inita(ptr)
declare void @initb(ptr,ptr,ptr)
declare void @bar(ptr , ptr) nounwind
declare void @baz(ptr, i32)
declare void @llvm.lifetime.start.p0(i64, ptr nocapture) nounwind
declare void @llvm.lifetime.end.p0(i64, ptr nocapture) nounwind
declare i32 @foo(i32, ptr)
|