From 21c580bf3f024f3f02d627013fba18a4b4f855d5 Mon Sep 17 00:00:00 2001 From: Aart Bik Date: Mon, 13 Mar 2017 11:52:07 -0700 Subject: SIMD and-not for x86/x86_64 Rationale: Break-out CL of ART Vectorizer. Enables and-not optimization. Bug: 34083438 Test: assembler_x86[_64]_test Change-Id: I8fa61d88f9f014973b0d9707d39be56a7f995db8 --- compiler/utils/x86/assembler_x86.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'compiler/utils/x86/assembler_x86.h') diff --git a/compiler/utils/x86/assembler_x86.h b/compiler/utils/x86/assembler_x86.h index e3c123ccaf..9d7ca77a56 100644 --- a/compiler/utils/x86/assembler_x86.h +++ b/compiler/utils/x86/assembler_x86.h @@ -487,6 +487,10 @@ class X86Assembler FINAL : public Assembler { void andps(XmmRegister dst, const Address& src); void pand(XmmRegister dst, XmmRegister src); // no addr variant (for now) + void andnpd(XmmRegister dst, XmmRegister src); // no addr variant (for now) + void andnps(XmmRegister dst, XmmRegister src); + void pandn(XmmRegister dst, XmmRegister src); + void orpd(XmmRegister dst, XmmRegister src); // no addr variant (for now) void orps(XmmRegister dst, XmmRegister src); void por(XmmRegister dst, XmmRegister src); -- cgit v1.2.3-59-g8ed1b