shifted-tripcount.ll 1.3 KB

12345678910111213141516171819202122232425262728
  1. ; RUN: opt < %s -loop-unroll -unroll-count=2 -S | FileCheck %s
  2. ; LoopUnroll should unroll this loop into one big basic block.
  3. ; CHECK: for.body:
  4. ; CHECK: %i.013 = phi i64 [ 0, %entry ], [ %tmp16.1, %for.body ]
  5. ; CHECK: br i1 %exitcond.1, label %for.end, label %for.body
  6. define void @foo(double* nocapture %p, i64 %n) nounwind {
  7. entry:
  8. %mul10 = shl i64 %n, 1 ; <i64> [#uses=2]
  9. br label %for.body
  10. for.body: ; preds = %entry, %for.body
  11. %i.013 = phi i64 [ %tmp16, %for.body ], [ 0, %entry ] ; <i64> [#uses=2]
  12. %arrayidx7 = getelementptr double, double* %p, i64 %i.013 ; <double*> [#uses=2]
  13. %tmp16 = add i64 %i.013, 1 ; <i64> [#uses=3]
  14. %arrayidx = getelementptr double, double* %p, i64 %tmp16 ; <double*> [#uses=1]
  15. %tmp4 = load double, double* %arrayidx ; <double> [#uses=1]
  16. %tmp8 = load double, double* %arrayidx7 ; <double> [#uses=1]
  17. %mul9 = fmul double %tmp8, %tmp4 ; <double> [#uses=1]
  18. store double %mul9, double* %arrayidx7
  19. %exitcond = icmp eq i64 %tmp16, %mul10 ; <i1> [#uses=1]
  20. br i1 %exitcond, label %for.end, label %for.body
  21. for.end: ; preds = %for.body, %entry
  22. ret void
  23. }