SpeculativeExec.ll 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. ; RUN: opt < %s -simplifycfg -phi-node-folding-threshold=2 -S | FileCheck %s
  2. 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"
  3. target triple = "x86_64-unknown-linux-gnu"
  4. define i32 @test1(i32 %a, i32 %b, i32 %c) nounwind {
  5. ; CHECK-LABEL: @test1(
  6. entry:
  7. %tmp1 = icmp eq i32 %b, 0
  8. br i1 %tmp1, label %bb1, label %bb3
  9. bb1: ; preds = %entry
  10. %tmp2 = icmp sgt i32 %c, 1
  11. br i1 %tmp2, label %bb2, label %bb3
  12. ; CHECK: bb1:
  13. ; CHECK-NEXT: icmp sgt i32 %c, 1
  14. ; CHECK-NEXT: add i32 %a, 1
  15. ; CHECK-NEXT: select i1 %tmp2, i32 %tmp3, i32 %a
  16. ; CHECK-NEXT: br label %bb3
  17. bb2: ; preds = bb1
  18. %tmp3 = add i32 %a, 1
  19. br label %bb3
  20. bb3: ; preds = %bb2, %entry
  21. %tmp4 = phi i32 [ %b, %entry ], [ %a, %bb1 ], [ %tmp3, %bb2 ]
  22. %tmp5 = sub i32 %tmp4, 1
  23. ret i32 %tmp5
  24. }
  25. define i8* @test4(i1* %dummy, i8* %a, i8* %b) {
  26. ; Test that we don't speculate an arbitrarily large number of unfolded constant
  27. ; expressions.
  28. ; CHECK-LABEL: @test4(
  29. entry:
  30. %cond1 = load volatile i1, i1* %dummy
  31. br i1 %cond1, label %if, label %end
  32. if:
  33. %cond2 = load volatile i1, i1* %dummy
  34. br i1 %cond2, label %then, label %end
  35. then:
  36. br label %end
  37. end:
  38. %x1 = phi i8* [ %a, %entry ], [ %b, %if ], [ inttoptr (i64 1 to i8*), %then ]
  39. %x2 = phi i8* [ %a, %entry ], [ %b, %if ], [ inttoptr (i64 2 to i8*), %then ]
  40. %x3 = phi i8* [ %a, %entry ], [ %b, %if ], [ inttoptr (i64 3 to i8*), %then ]
  41. %x4 = phi i8* [ %a, %entry ], [ %b, %if ], [ inttoptr (i64 4 to i8*), %then ]
  42. %x5 = phi i8* [ %a, %entry ], [ %b, %if ], [ inttoptr (i64 5 to i8*), %then ]
  43. %x6 = phi i8* [ %a, %entry ], [ %b, %if ], [ inttoptr (i64 6 to i8*), %then ]
  44. %x7 = phi i8* [ %a, %entry ], [ %b, %if ], [ inttoptr (i64 7 to i8*), %then ]
  45. %x8 = phi i8* [ %a, %entry ], [ %b, %if ], [ inttoptr (i64 8 to i8*), %then ]
  46. %x9 = phi i8* [ %a, %entry ], [ %b, %if ], [ inttoptr (i64 9 to i8*), %then ]
  47. %x10 = phi i8* [ %a, %entry ], [ %b, %if ], [ inttoptr (i64 10 to i8*), %then ]
  48. ; CHECK-NOT: select
  49. ; CHECK: phi i8*
  50. ; CHECK: phi i8*
  51. ; CHECK: phi i8*
  52. ; CHECK: phi i8*
  53. ; CHECK: phi i8*
  54. ; CHECK: phi i8*
  55. ; CHECK: phi i8*
  56. ; CHECK: phi i8*
  57. ; CHECK: phi i8*
  58. ; CHECK: phi i8*
  59. ret i8* %x10
  60. }