xref: /aosp_15_r20/external/llvm/test/CodeGen/X86/2011-12-06-AVXVectorExtractCombine.ll (revision 9880d6810fe72a1726cb53787c6711e909410d58)
1*9880d681SAndroid Build Coastguard Worker; RUN: llc < %s -mtriple=x86_64-apple-darwin -mattr=+avx | FileCheck %s
2*9880d681SAndroid Build Coastguard Worker; PR11494
3*9880d681SAndroid Build Coastguard Worker
4*9880d681SAndroid Build Coastguard Workerdefine void @test(<4 x i32>* nocapture %p) nounwind {
5*9880d681SAndroid Build Coastguard Worker  ; CHECK-LABEL: test:
6*9880d681SAndroid Build Coastguard Worker  ; CHECK: vpxor %xmm0, %xmm0, %xmm0
7*9880d681SAndroid Build Coastguard Worker  ; CHECK-NEXT: vpmaxsd (%rdi), %xmm0, %xmm0
8*9880d681SAndroid Build Coastguard Worker  ; CHECK-NEXT: vmovdqu %xmm0, (%rdi)
9*9880d681SAndroid Build Coastguard Worker  ; CHECK-NEXT: ret
10*9880d681SAndroid Build Coastguard Worker  %a = load <4 x i32>, <4 x i32>* %p, align 1
11*9880d681SAndroid Build Coastguard Worker  %b = call <4 x i32> @llvm.x86.sse41.pmaxsd(<4 x i32> %a, <4 x i32> zeroinitializer) nounwind
12*9880d681SAndroid Build Coastguard Worker  %c = shufflevector <4 x i32> %b, <4 x i32> undef, <8 x i32> <i32 undef, i32 undef, i32 undef, i32 undef, i32 0, i32 1, i32 2, i32 3>
13*9880d681SAndroid Build Coastguard Worker  %d = shufflevector <8 x i32> %c, <8 x i32> undef, <4 x i32> <i32 4, i32 5, i32 6, i32 7>
14*9880d681SAndroid Build Coastguard Worker  store <4 x i32> %d, <4 x i32>* %p, align 1
15*9880d681SAndroid Build Coastguard Worker  ret void
16*9880d681SAndroid Build Coastguard Worker}
17*9880d681SAndroid Build Coastguard Worker
18*9880d681SAndroid Build Coastguard Workerdeclare <4 x i32> @llvm.x86.sse41.pmaxsd(<4 x i32>, <4 x i32>) nounwind readnone
19