[llvm] r342756 - [x86] add (negative) andnp test for D52318; NFC
Sanjay Patel via llvm-commits
llvm-commits at lists.llvm.org
Fri Sep 21 11:24:53 PDT 2018
Author: spatel
Date: Fri Sep 21 11:24:53 2018
New Revision: 342756
URL: http://llvm.org/viewvc/llvm-project?rev=342756&view=rev
Log:
[x86] add (negative) andnp test for D52318; NFC
Modified:
llvm/trunk/test/CodeGen/X86/avx-logic.ll
Modified: llvm/trunk/test/CodeGen/X86/avx-logic.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/avx-logic.ll?rev=342756&r1=342755&r2=342756&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/avx-logic.ll (original)
+++ llvm/trunk/test/CodeGen/X86/avx-logic.ll Fri Sep 21 11:24:53 2018
@@ -364,6 +364,28 @@ define <8 x i32> @andn_disguised_i8_elts
ret <8 x i32> %add1
}
+define <8 x i32> @andn_variable_mask_operand(<8 x i32> %x, <8 x i32> %y, <8 x i32> %z) {
+; AVX1-LABEL: andn_variable_mask_operand:
+; AVX1: # %bb.0:
+; AVX1-NEXT: vandnps %ymm2, %ymm0, %ymm0
+; AVX1-NEXT: vextractf128 $1, %ymm0, %xmm2
+; AVX1-NEXT: vextractf128 $1, %ymm1, %xmm3
+; AVX1-NEXT: vpaddd %xmm3, %xmm2, %xmm2
+; AVX1-NEXT: vpaddd %xmm1, %xmm0, %xmm0
+; AVX1-NEXT: vinsertf128 $1, %xmm2, %ymm0, %ymm0
+; AVX1-NEXT: retq
+;
+; INT256-LABEL: andn_variable_mask_operand:
+; INT256: # %bb.0:
+; INT256-NEXT: vpandn %ymm2, %ymm0, %ymm0
+; INT256-NEXT: vpaddd %ymm1, %ymm0, %ymm0
+; INT256-NEXT: retq
+ %and = and <8 x i32> %x, %z
+ %xor = xor <8 x i32> %and, %z ; demanded bits will make this a 'not'
+ %add = add <8 x i32> %xor, %y
+ ret <8 x i32> %add
+}
+
define <8 x i32> @or_disguised_i8_elts(<8 x i32> %x, <8 x i32> %y, <8 x i32> %z) {
; AVX1-LABEL: or_disguised_i8_elts:
; AVX1: # %bb.0:
More information about the llvm-commits
mailing list