summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/vec_set-4.ll
blob: d01a913ea8a4bb124bf4193022cdd8758e9842f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
; RUN: llc < %s -mtriple=i386-unknown -mattr=+sse2 | FileCheck %s --check-prefix=X86
; RUN: llc < %s -mtriple=x86_64-unknown -mattr=+sse2 | FileCheck %s --check-prefix=X64

define <2 x i64> @test(i16 %a) nounwind {
; X86-LABEL: test:
; X86:       # %bb.0:
; X86-NEXT:    pxor %xmm0, %xmm0
; X86-NEXT:    pinsrw $3, {{[0-9]+}}(%esp), %xmm0
; X86-NEXT:    retl
;
; X64-LABEL: test:
; X64:       # %bb.0:
; X64-NEXT:    pxor %xmm0, %xmm0
; X64-NEXT:    pinsrw $3, %edi, %xmm0
; X64-NEXT:    retq
  %tmp10 = insertelement <8 x i16> zeroinitializer, i16 %a, i32 3
  %tmp12 = insertelement <8 x i16> %tmp10, i16 0, i32 4
  %tmp14 = insertelement <8 x i16> %tmp12, i16 0, i32 5
  %tmp16 = insertelement <8 x i16> %tmp14, i16 0, i32 6
  %tmp18 = insertelement <8 x i16> %tmp16, i16 0, i32 7
  %tmp19 = bitcast <8 x i16> %tmp18 to <2 x i64>
  ret <2 x i64> %tmp19
}

define <2 x i64> @test2(i8 %a) nounwind {
; X86-LABEL: test2:
; X86:       # %bb.0:
; X86-NEXT:    movzbl {{[0-9]+}}(%esp), %eax
; X86-NEXT:    pxor %xmm0, %xmm0
; X86-NEXT:    pinsrw $5, %eax, %xmm0
; X86-NEXT:    retl
;
; X64-LABEL: test2:
; X64:       # %bb.0:
; X64-NEXT:    movzbl %dil, %eax
; X64-NEXT:    pxor %xmm0, %xmm0
; X64-NEXT:    pinsrw $5, %eax, %xmm0
; X64-NEXT:    retq
  %tmp24 = insertelement <16 x i8> zeroinitializer, i8 %a, i32 10
  %tmp26 = insertelement <16 x i8> %tmp24, i8 0, i32 11
  %tmp28 = insertelement <16 x i8> %tmp26, i8 0, i32 12
  %tmp30 = insertelement <16 x i8> %tmp28, i8 0, i32 13
  %tmp32 = insertelement <16 x i8> %tmp30, i8 0, i32 14
  %tmp34 = insertelement <16 x i8> %tmp32, i8 0, i32 15
  %tmp35 = bitcast <16 x i8> %tmp34 to <2 x i64>
  ret <2 x i64> %tmp35
}