Mon P Wang | 56d9164 | 2009-02-04 01:16:59 +0000 | [diff] [blame] | 1 | ; RUN: llvm-as < %s | llc -march=x86 -mattr=sse41 -disable-mmx -o %t -f |
| 2 | ; RUN: grep pshufhw %t | grep 161 | count 1 |
Rafael Espindola | 37f8e8a | 2009-04-24 12:40:33 +0000 | [diff] [blame] | 3 | ; RUN: grep pslldq %t | count 1 |
| 4 | |
| 5 | |
Mon P Wang | 56d9164 | 2009-02-04 01:16:59 +0000 | [diff] [blame] | 6 | |
| 7 | ; Test case when creating pshufhw, we incorrectly set the higher order bit |
| 8 | ; for an undef, |
| 9 | define void @test(<8 x i16>* %dest, <8 x i16> %in) { |
| 10 | entry: |
| 11 | %0 = load <8 x i16>* %dest |
| 12 | %1 = shufflevector <8 x i16> %0, <8 x i16> %in, <8 x i32> < i32 0, i32 1, i32 2, i32 3, i32 13, i32 undef, i32 14, i32 14> |
| 13 | store <8 x i16> %1, <8 x i16>* %dest |
| 14 | ret void |
| 15 | } |
| 16 | |
| 17 | ; A test case where we shouldn't generate a punpckldq but a pshufd and a pslldq |
| 18 | define void @test2(<4 x i32>* %dest, <4 x i32> %in) { |
| 19 | entry: |
| 20 | %0 = shufflevector <4 x i32> %in, <4 x i32> <i32 0, i32 0, i32 0, i32 0>, <4 x i32> < i32 undef, i32 5, i32 undef, i32 2> |
| 21 | store <4 x i32> %0, <4 x i32>* %dest |
| 22 | ret void |
Rafael Espindola | 37f8e8a | 2009-04-24 12:40:33 +0000 | [diff] [blame] | 23 | } |