xref: /llvm-project/llvm/test/Transforms/Scalarizer/cache-bug.ll (revision e9320b1a95a69652bba9b3ba66900b1c0e8f6b0a)
1*cee313d2SEric Christopher; RUN: opt -passes='function(scalarizer)' -S < %s | FileCheck %s
2*cee313d2SEric Christophertarget 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*cee313d2SEric Christopher
4*cee313d2SEric Christopher
5*cee313d2SEric Christopher; Check that vector element 1 is scalarized correctly from a chain of
6*cee313d2SEric Christopher; insertelement instructions
7*cee313d2SEric Christopherdefine void @func(i32 %x) {
8*cee313d2SEric Christopher; CHECK-LABEL: @func(
9*cee313d2SEric Christopher; CHECK-NOT: phi i32 [ %x, %entry ], [ %inc.pos.y, %loop ]
10*cee313d2SEric Christopher; CHECK:     phi i32 [ %inc, %entry ], [ %inc.pos.y, %loop ]
11*cee313d2SEric Christopher; CHECK:   ret void
12*cee313d2SEric Christopherentry:
13*cee313d2SEric Christopher  %vecinit = insertelement <2 x i32> <i32 0, i32 0>, i32 %x, i32 1
14*cee313d2SEric Christopher  %inc = add i32 %x, 1
15*cee313d2SEric Christopher  %0 = insertelement <2 x i32> %vecinit, i32 %inc, i32 1
16*cee313d2SEric Christopher  br label %loop
17*cee313d2SEric Christopher
18*cee313d2SEric Christopherloop:
19*cee313d2SEric Christopher  %pos = phi <2 x i32> [ %0, %entry ], [ %new.pos.y, %loop ]
20*cee313d2SEric Christopher  %i = phi i32 [ 0, %entry ], [ %new.i, %loop ]
21*cee313d2SEric Christopher  %pos.y = extractelement <2 x i32> %pos, i32 1
22*cee313d2SEric Christopher  %inc.pos.y = add i32 %pos.y, 1
23*cee313d2SEric Christopher  %new.pos.y = insertelement <2 x i32> %pos, i32 %inc.pos.y, i32 1
24*cee313d2SEric Christopher  %new.i = add i32 %i, 1
25*cee313d2SEric Christopher  %cmp2 = icmp slt i32 %new.i, 1
26*cee313d2SEric Christopher  br i1 %cmp2, label %loop, label %exit
27*cee313d2SEric Christopher
28*cee313d2SEric Christopherexit:
29*cee313d2SEric Christopher  ret void
30*cee313d2SEric Christopher}
31