2
0

scalar-select.ll 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. ; RUN: opt < %s -loop-vectorize -force-vector-interleave=1 -force-vector-width=4 -dce -instcombine -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-apple-macosx10.8.0"
  4. @a = common global [2048 x i32] zeroinitializer, align 16
  5. @b = common global [2048 x i32] zeroinitializer, align 16
  6. @c = common global [2048 x i32] zeroinitializer, align 16
  7. ;CHECK-LABEL: @example1(
  8. ;CHECK: load <4 x i32>
  9. ; make sure that we have a scalar condition and a vector operand.
  10. ;CHECK: select i1 %cond, <4 x i32>
  11. ;CHECK: store <4 x i32>
  12. ;CHECK: ret void
  13. define void @example1(i1 %cond) nounwind uwtable ssp {
  14. br label %1
  15. ; <label>:1 ; preds = %1, %0
  16. %indvars.iv = phi i64 [ 0, %0 ], [ %indvars.iv.next, %1 ]
  17. %2 = getelementptr inbounds [2048 x i32], [2048 x i32]* @b, i64 0, i64 %indvars.iv
  18. %3 = load i32, i32* %2, align 4
  19. %4 = getelementptr inbounds [2048 x i32], [2048 x i32]* @c, i64 0, i64 %indvars.iv
  20. %5 = load i32, i32* %4, align 4
  21. %6 = add nsw i32 %5, %3
  22. %7 = getelementptr inbounds [2048 x i32], [2048 x i32]* @a, i64 0, i64 %indvars.iv
  23. %sel = select i1 %cond, i32 %6, i32 zeroinitializer
  24. store i32 %sel, i32* %7, align 4
  25. %indvars.iv.next = add i64 %indvars.iv, 1
  26. %lftr.wideiv = trunc i64 %indvars.iv.next to i32
  27. %exitcond = icmp eq i32 %lftr.wideiv, 256
  28. br i1 %exitcond, label %8, label %1
  29. ; <label>:8 ; preds = %1
  30. ret void
  31. }