xref: /aosp_15_r20/external/llvm/test/CodeGen/X86/avx2-vperm.ll (revision 9880d6810fe72a1726cb53787c6711e909410d58)
1*9880d681SAndroid Build Coastguard Worker; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2*9880d681SAndroid Build Coastguard Worker; RUN: llc < %s -mtriple=x86_64-apple-darwin -mcpu=core-avx2 -mattr=+avx2 | FileCheck %s
3*9880d681SAndroid Build Coastguard Worker
4*9880d681SAndroid Build Coastguard Workerdefine <8 x i32> @perm_cl_int_8x32(<8 x i32> %A) nounwind readnone {
5*9880d681SAndroid Build Coastguard Worker; CHECK-LABEL: perm_cl_int_8x32:
6*9880d681SAndroid Build Coastguard Worker; CHECK:       ## BB#0: ## %entry
7*9880d681SAndroid Build Coastguard Worker; CHECK-NEXT:    vmovdqa {{.*#+}} ymm1 = [0,7,2,1,2,7,6,0]
8*9880d681SAndroid Build Coastguard Worker; CHECK-NEXT:    vpermd %ymm0, %ymm1, %ymm0
9*9880d681SAndroid Build Coastguard Worker; CHECK-NEXT:    retq
10*9880d681SAndroid Build Coastguard Workerentry:
11*9880d681SAndroid Build Coastguard Worker  %B = shufflevector <8 x i32> %A, <8 x i32> undef, <8 x i32> <i32 0, i32 7, i32 2, i32 1, i32 2, i32 7, i32 6, i32 0>
12*9880d681SAndroid Build Coastguard Worker  ret <8 x i32> %B
13*9880d681SAndroid Build Coastguard Worker}
14*9880d681SAndroid Build Coastguard Worker
15*9880d681SAndroid Build Coastguard Worker
16*9880d681SAndroid Build Coastguard Workerdefine <8 x float> @perm_cl_fp_8x32(<8 x float> %A) nounwind readnone {
17*9880d681SAndroid Build Coastguard Worker; CHECK-LABEL: perm_cl_fp_8x32:
18*9880d681SAndroid Build Coastguard Worker; CHECK:       ## BB#0: ## %entry
19*9880d681SAndroid Build Coastguard Worker; CHECK-NEXT:    vmovaps {{.*#+}} ymm1 = <u,7,2,u,4,u,1,6>
20*9880d681SAndroid Build Coastguard Worker; CHECK-NEXT:    vpermps %ymm0, %ymm1, %ymm0
21*9880d681SAndroid Build Coastguard Worker; CHECK-NEXT:    retq
22*9880d681SAndroid Build Coastguard Workerentry:
23*9880d681SAndroid Build Coastguard Worker  %B = shufflevector <8 x float> %A, <8 x float> undef, <8 x i32> <i32 undef, i32 7, i32 2, i32 undef, i32 4, i32 undef, i32 1, i32 6>
24*9880d681SAndroid Build Coastguard Worker  ret <8 x float> %B
25*9880d681SAndroid Build Coastguard Worker}
26*9880d681SAndroid Build Coastguard Worker
27*9880d681SAndroid Build Coastguard Workerdefine <4 x i64> @perm_cl_int_4x64(<4 x i64> %A) nounwind readnone {
28*9880d681SAndroid Build Coastguard Worker; CHECK-LABEL: perm_cl_int_4x64:
29*9880d681SAndroid Build Coastguard Worker; CHECK:       ## BB#0: ## %entry
30*9880d681SAndroid Build Coastguard Worker; CHECK-NEXT:    vpermq {{.*#+}} ymm0 = ymm0[0,3,2,1]
31*9880d681SAndroid Build Coastguard Worker; CHECK-NEXT:    retq
32*9880d681SAndroid Build Coastguard Workerentry:
33*9880d681SAndroid Build Coastguard Worker  %B = shufflevector <4 x i64> %A, <4 x i64> undef, <4 x i32> <i32 0, i32 3, i32 2, i32 1>
34*9880d681SAndroid Build Coastguard Worker  ret <4 x i64> %B
35*9880d681SAndroid Build Coastguard Worker}
36*9880d681SAndroid Build Coastguard Worker
37*9880d681SAndroid Build Coastguard Workerdefine <4 x double> @perm_cl_fp_4x64(<4 x double> %A) nounwind readnone {
38*9880d681SAndroid Build Coastguard Worker; CHECK-LABEL: perm_cl_fp_4x64:
39*9880d681SAndroid Build Coastguard Worker; CHECK:       ## BB#0: ## %entry
40*9880d681SAndroid Build Coastguard Worker; CHECK-NEXT:    vpermpd {{.*#+}} ymm0 = ymm0[0,3,2,1]
41*9880d681SAndroid Build Coastguard Worker; CHECK-NEXT:    retq
42*9880d681SAndroid Build Coastguard Workerentry:
43*9880d681SAndroid Build Coastguard Worker  %B = shufflevector <4 x double> %A, <4 x double> undef, <4 x i32> <i32 0, i32 3, i32 2, i32 1>
44*9880d681SAndroid Build Coastguard Worker  ret <4 x double> %B
45*9880d681SAndroid Build Coastguard Worker}
46