diff options
author | 2019-07-10 16:09:41 +0530 | |
---|---|---|
committer | 2019-07-17 11:12:22 +0000 | |
commit | b45a435e25d69592f27084a615b351760f040875 (patch) | |
tree | 6920830856dbe3cceb648b365b0d057ea3ea93ec /compiler/optimizing/nodes.h | |
parent | 5132e0d1433b0962f9609dbbd68427e1fb5a4b9d (diff) |
Add AVX support for packed mul/div instructions.
This is a follow up for the below patch:
https://android-review.googlesource.com/c/platform/build/+/830841
Test: ./test.py --host --64, test-art-host-gtest
Change-Id: Id2aa473035556ee230e66addeb69707df8530e75
Signed-off-by: Shalini Salomi Bodapati <shalini.salomi.bodapati@intel.com>
Diffstat (limited to 'compiler/optimizing/nodes.h')
-rw-r--r-- | compiler/optimizing/nodes.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/compiler/optimizing/nodes.h b/compiler/optimizing/nodes.h index 3e6e211920..25f9e3cb73 100644 --- a/compiler/optimizing/nodes.h +++ b/compiler/optimizing/nodes.h @@ -1540,9 +1540,7 @@ class HLoopInformationOutwardIterator : public ValueObject { #if defined(ART_ENABLE_CODEGEN_x86) || defined(ART_ENABLE_CODEGEN_x86_64) #define FOR_EACH_CONCRETE_INSTRUCTION_X86_COMMON(M) \ M(X86AndNot, Instruction) \ - M(X86MaskOrResetLeastSetBit, Instruction) \ - M(VecAvxSub, VecOperation) \ - M(VecAvxAdd, VecOperation) + M(X86MaskOrResetLeastSetBit, Instruction) #else #define FOR_EACH_CONCRETE_INSTRUCTION_X86_COMMON(M) #endif @@ -7874,7 +7872,6 @@ class HIntermediateAddress final : public HExpression<2> { #endif #if defined(ART_ENABLE_CODEGEN_x86) || defined(ART_ENABLE_CODEGEN_x86_64) #include "nodes_x86.h" -#include "nodes_vector_x86.h" #endif namespace art { |