• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2; RUN: llc < %s -mtriple=i386-unknown-unknown -mattr=+sse4a | FileCheck %s --check-prefix=X32
3; RUN: llc < %s -mtriple=i386-unknown-unknown -mattr=+sse4a,+avx | FileCheck %s --check-prefix=X32
4; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mattr=+sse4a | FileCheck %s --check-prefix=X64
5; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mattr=+sse4a,+avx | FileCheck %s --check-prefix=X64
6
7define <2 x i64> @test_extrqi(<2 x i64> %x) nounwind uwtable ssp {
8; X32-LABEL: test_extrqi:
9; X32:       # BB#0:
10; X32-NEXT:    extrq $2, $3, %xmm0
11; X32-NEXT:    retl
12;
13; X64-LABEL: test_extrqi:
14; X64:       # BB#0:
15; X64-NEXT:    extrq $2, $3, %xmm0
16; X64-NEXT:    retq
17  %1 = tail call <2 x i64> @llvm.x86.sse4a.extrqi(<2 x i64> %x, i8 3, i8 2)
18  ret <2 x i64> %1
19}
20
21declare <2 x i64> @llvm.x86.sse4a.extrqi(<2 x i64>, i8, i8) nounwind
22
23define <2 x i64> @test_extrq(<2 x i64> %x, <2 x i64> %y) nounwind uwtable ssp {
24; X32-LABEL: test_extrq:
25; X32:       # BB#0:
26; X32-NEXT:    extrq %xmm1, %xmm0
27; X32-NEXT:    retl
28;
29; X64-LABEL: test_extrq:
30; X64:       # BB#0:
31; X64-NEXT:    extrq %xmm1, %xmm0
32; X64-NEXT:    retq
33  %1 = bitcast <2 x i64> %y to <16 x i8>
34  %2 = tail call <2 x i64> @llvm.x86.sse4a.extrq(<2 x i64> %x, <16 x i8> %1) nounwind
35  ret <2 x i64> %2
36}
37
38declare <2 x i64> @llvm.x86.sse4a.extrq(<2 x i64>, <16 x i8>) nounwind
39
40define <2 x i64> @test_insertqi(<2 x i64> %x, <2 x i64> %y) nounwind uwtable ssp {
41; X32-LABEL: test_insertqi:
42; X32:       # BB#0:
43; X32-NEXT:    insertq $6, $5, %xmm1, %xmm0
44; X32-NEXT:    retl
45;
46; X64-LABEL: test_insertqi:
47; X64:       # BB#0:
48; X64-NEXT:    insertq $6, $5, %xmm1, %xmm0
49; X64-NEXT:    retq
50  %1 = tail call <2 x i64> @llvm.x86.sse4a.insertqi(<2 x i64> %x, <2 x i64> %y, i8 5, i8 6)
51  ret <2 x i64> %1
52}
53
54declare <2 x i64> @llvm.x86.sse4a.insertqi(<2 x i64>, <2 x i64>, i8, i8) nounwind
55
56define <2 x i64> @test_insertq(<2 x i64> %x, <2 x i64> %y) nounwind uwtable ssp {
57; X32-LABEL: test_insertq:
58; X32:       # BB#0:
59; X32-NEXT:    insertq %xmm1, %xmm0
60; X32-NEXT:    retl
61;
62; X64-LABEL: test_insertq:
63; X64:       # BB#0:
64; X64-NEXT:    insertq %xmm1, %xmm0
65; X64-NEXT:    retq
66  %1 = tail call <2 x i64> @llvm.x86.sse4a.insertq(<2 x i64> %x, <2 x i64> %y) nounwind
67  ret <2 x i64> %1
68}
69
70declare <2 x i64> @llvm.x86.sse4a.insertq(<2 x i64>, <2 x i64>) nounwind
71