From 982334cef17d47ef2477d88a97203a9587a4b86f Mon Sep 17 00:00:00 2001 From: Nicolas Geoffray Date: Sat, 2 Sep 2017 12:54:16 +0000 Subject: Revert "Basic SIMD reduction support." Fails 530-checker-lse on arm64. Bug: 64091002, 65212948 This reverts commit cfa59b49cde265dc5329a7e6956445f9f7a75f15. Change-Id: Icb5d6c805516db0a1d911c3ede9a246ccef89a22 --- compiler/optimizing/nodes.h | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) (limited to 'compiler/optimizing/nodes.h') diff --git a/compiler/optimizing/nodes.h b/compiler/optimizing/nodes.h index 869fdd4182..f60d532c37 100644 --- a/compiler/optimizing/nodes.h +++ b/compiler/optimizing/nodes.h @@ -1374,8 +1374,7 @@ class HLoopInformationOutwardIterator : public ValueObject { M(UShr, BinaryOperation) \ M(Xor, BinaryOperation) \ M(VecReplicateScalar, VecUnaryOperation) \ - M(VecExtractScalar, VecUnaryOperation) \ - M(VecReduce, VecUnaryOperation) \ + M(VecSumReduce, VecUnaryOperation) \ M(VecCnv, VecUnaryOperation) \ M(VecNeg, VecUnaryOperation) \ M(VecAbs, VecUnaryOperation) \ @@ -7031,17 +7030,6 @@ inline bool IsInt64AndGet(HInstruction* instruction, /*out*/ int64_t* value) { return false; } -// Returns true iff instruction is the given integral constant. -inline bool IsInt64Value(HInstruction* instruction, int64_t value) { - int64_t val = 0; - return IsInt64AndGet(instruction, &val) && val == value; -} - -// Returns true iff instruction is a zero bit pattern. -inline bool IsZeroBitPattern(HInstruction* instruction) { - return instruction->IsConstant() && instruction->AsConstant()->IsZeroBitPattern(); -} - #define INSTRUCTION_TYPE_CHECK(type, super) \ inline bool HInstruction::Is##type() const { return GetKind() == k##type; } \ inline const H##type* HInstruction::As##type() const { \ -- cgit v1.2.3-59-g8ed1b