2011-12-19-PostincQuadratic.ll 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. ; RUN: opt -loop-reduce -S < %s | FileCheck %s
  2. ;
  3. ; PR11571: handle a postinc user outside of for.body7 that requires
  4. ; recursive expansion of a quadratic recurrence within for.body7. LSR
  5. ; needs to forget that for.body7 is a postinc loop during expansion.
  6. target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:32:32-n8:16:32-S128"
  7. target triple = "i386-unknown-freebsd10.0"
  8. @b = external global [121 x i32]
  9. ; CHECK-LABEL: @vb(
  10. ; Outer recurrence:
  11. ; CHECK: %lsr.iv1 = phi [121 x i32]*
  12. ; Inner recurrence:
  13. ; CHECK: %lsr.iv = phi i32
  14. ; Outer step (relative to inner recurrence):
  15. ; CHECK: %scevgep = getelementptr i1, i1* %{{.*}}, i32 %lsr.iv
  16. ; Outer use:
  17. ; CHECK: %lsr.iv3 = phi [121 x i32]* [ %lsr.iv1, %for.body43.preheader ]
  18. define void @vb() nounwind {
  19. for.cond.preheader:
  20. br label %for.body7
  21. for.body7:
  22. %indvars.iv77 = phi i32 [ %indvars.iv.next78, %for.body7 ], [ 1, %for.cond.preheader ]
  23. %bf.072 = phi i32 [ %t1, %for.body7 ], [ 0, %for.cond.preheader ]
  24. %t1 = add i32 %bf.072, %indvars.iv77
  25. %indvars.iv.next78 = add i32 %indvars.iv77, 1
  26. br i1 undef, label %for.body43, label %for.body7
  27. for.body43:
  28. %bf.459 = phi i32 [ %inc44, %for.body43 ], [ %t1, %for.body7 ]
  29. %inc44 = add nsw i32 %bf.459, 1
  30. %arrayidx45 = getelementptr inbounds [121 x i32], [121 x i32]* @b, i32 0, i32 %bf.459
  31. %t2 = load i32, i32* %arrayidx45, align 4
  32. br label %for.body43
  33. }