Move zext and sext casts fed by loads into the same block as the
[oota-llvm.git] / test / CodeGen / X86 / widen_arith-4.ll
1 ; RUN: llc < %s -march=x86 -mattr=+sse42 -disable-mmx -o %t
2 ; RUN: grep psubw  %t | count 1
3 ; RUN: grep pmullw %t | count 1
4
5 ; Widen a v5i16 to v8i16 to do a vector sub and multiple
6
7 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:128:128"
8
9 define void @update(<5 x i16>* %dst, <5 x i16>* %src, i32 %n) nounwind {
10 entry:
11         %dst.addr = alloca <5 x i16>*           ; <<5 x i16>**> [#uses=2]
12         %src.addr = alloca <5 x i16>*           ; <<5 x i16>**> [#uses=2]
13         %n.addr = alloca i32            ; <i32*> [#uses=2]
14         %v = alloca <5 x i16>, align 16         ; <<5 x i16>*> [#uses=1]
15         %i = alloca i32, align 4                ; <i32*> [#uses=6]
16         store <5 x i16>* %dst, <5 x i16>** %dst.addr
17         store <5 x i16>* %src, <5 x i16>** %src.addr
18         store i32 %n, i32* %n.addr
19         store <5 x i16> < i16 1, i16 1, i16 1, i16 0, i16 0 >, <5 x i16>* %v
20         store i32 0, i32* %i
21         br label %forcond
22
23 forcond:                ; preds = %forinc, %entry
24         %tmp = load i32* %i             ; <i32> [#uses=1]
25         %tmp1 = load i32* %n.addr               ; <i32> [#uses=1]
26         %cmp = icmp slt i32 %tmp, %tmp1         ; <i1> [#uses=1]
27         br i1 %cmp, label %forbody, label %afterfor
28
29 forbody:                ; preds = %forcond
30         %tmp2 = load i32* %i            ; <i32> [#uses=1]
31         %tmp3 = load <5 x i16>** %dst.addr              ; <<5 x i16>*> [#uses=1]
32         %arrayidx = getelementptr <5 x i16>* %tmp3, i32 %tmp2           ; <<5 x i16>*> [#uses=1]
33         %tmp4 = load i32* %i            ; <i32> [#uses=1]
34         %tmp5 = load <5 x i16>** %src.addr              ; <<5 x i16>*> [#uses=1]
35         %arrayidx6 = getelementptr <5 x i16>* %tmp5, i32 %tmp4          ; <<5 x i16>*> [#uses=1]
36         %tmp7 = load <5 x i16>* %arrayidx6              ; <<5 x i16>> [#uses=1]
37         %sub = sub <5 x i16> %tmp7, < i16 271, i16 271, i16 271, i16 271, i16 271 >             ; <<5 x i16>> [#uses=1]
38         %mul = mul <5 x i16> %sub, < i16 2, i16 2, i16 2, i16 2, i16 2 >                ; <<5 x i16>> [#uses=1]
39         store <5 x i16> %mul, <5 x i16>* %arrayidx
40         br label %forinc
41
42 forinc:         ; preds = %forbody
43         %tmp8 = load i32* %i            ; <i32> [#uses=1]
44         %inc = add i32 %tmp8, 1         ; <i32> [#uses=1]
45         store i32 %inc, i32* %i
46         br label %forcond
47
48 afterfor:               ; preds = %forcond
49         ret void
50 }
51