| OLD | NEW |
| 1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "src/compiler/machine-operator.h" | 5 #include "src/compiler/machine-operator.h" |
| 6 | 6 |
| 7 #include "src/base/lazy-instance.h" | 7 #include "src/base/lazy-instance.h" |
| 8 #include "src/compiler/opcodes.h" | 8 #include "src/compiler/opcodes.h" |
| 9 #include "src/compiler/operator.h" | 9 #include "src/compiler/operator.h" |
| 10 | 10 |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 MachineRepresentation StackSlotRepresentationOf(Operator const* op) { | 72 MachineRepresentation StackSlotRepresentationOf(Operator const* op) { |
| 73 DCHECK_EQ(IrOpcode::kStackSlot, op->opcode()); | 73 DCHECK_EQ(IrOpcode::kStackSlot, op->opcode()); |
| 74 return OpParameter<MachineRepresentation>(op); | 74 return OpParameter<MachineRepresentation>(op); |
| 75 } | 75 } |
| 76 | 76 |
| 77 MachineRepresentation AtomicStoreRepresentationOf(Operator const* op) { | 77 MachineRepresentation AtomicStoreRepresentationOf(Operator const* op) { |
| 78 DCHECK_EQ(IrOpcode::kAtomicStore, op->opcode()); | 78 DCHECK_EQ(IrOpcode::kAtomicStore, op->opcode()); |
| 79 return OpParameter<MachineRepresentation>(op); | 79 return OpParameter<MachineRepresentation>(op); |
| 80 } | 80 } |
| 81 | 81 |
| 82 #define PURE_OP_LIST(V) \ | 82 #define PURE_BINARY_OP_LIST_32(V) \ |
| 83 V(Word32And, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ | 83 V(Word32And, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ |
| 84 V(Word32Or, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ | 84 V(Word32Or, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ |
| 85 V(Word32Xor, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ | 85 V(Word32Xor, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ |
| 86 V(Word32Shl, Operator::kNoProperties, 2, 0, 1) \ | 86 V(Word32Shl, Operator::kNoProperties, 2, 0, 1) \ |
| 87 V(Word32Shr, Operator::kNoProperties, 2, 0, 1) \ | 87 V(Word32Shr, Operator::kNoProperties, 2, 0, 1) \ |
| 88 V(Word32Sar, Operator::kNoProperties, 2, 0, 1) \ | 88 V(Word32Sar, Operator::kNoProperties, 2, 0, 1) \ |
| 89 V(Word32Ror, Operator::kNoProperties, 2, 0, 1) \ | 89 V(Word32Ror, Operator::kNoProperties, 2, 0, 1) \ |
| 90 V(Word32Equal, Operator::kCommutative, 2, 0, 1) \ | 90 V(Word32Equal, Operator::kCommutative, 2, 0, 1) \ |
| 91 V(Word32Clz, Operator::kNoProperties, 1, 0, 1) \ | 91 V(Int32Add, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ |
| 92 V(Word64And, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ | 92 V(Int32Sub, Operator::kNoProperties, 2, 0, 1) \ |
| 93 V(Word64Or, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ | 93 V(Int32Mul, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ |
| 94 V(Word64Xor, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ | 94 V(Int32MulHigh, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ |
| 95 V(Word64Shl, Operator::kNoProperties, 2, 0, 1) \ | 95 V(Int32Div, Operator::kNoProperties, 2, 1, 1) \ |
| 96 V(Word64Shr, Operator::kNoProperties, 2, 0, 1) \ | 96 V(Int32Mod, Operator::kNoProperties, 2, 1, 1) \ |
| 97 V(Word64Sar, Operator::kNoProperties, 2, 0, 1) \ | 97 V(Int32LessThan, Operator::kNoProperties, 2, 0, 1) \ |
| 98 V(Word64Ror, Operator::kNoProperties, 2, 0, 1) \ | 98 V(Int32LessThanOrEqual, Operator::kNoProperties, 2, 0, 1) \ |
| 99 V(Word64Clz, Operator::kNoProperties, 1, 0, 1) \ | 99 V(Uint32Div, Operator::kNoProperties, 2, 1, 1) \ |
| 100 V(Word64Equal, Operator::kCommutative, 2, 0, 1) \ | 100 V(Uint32LessThan, Operator::kNoProperties, 2, 0, 1) \ |
| 101 V(Int32Add, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ | 101 V(Uint32LessThanOrEqual, Operator::kNoProperties, 2, 0, 1) \ |
| 102 V(Int32Sub, Operator::kNoProperties, 2, 0, 1) \ | 102 V(Uint32Mod, Operator::kNoProperties, 2, 1, 1) \ |
| 103 V(Int32Mul, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ | 103 V(Uint32MulHigh, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) |
| 104 V(Int32MulHigh, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ | 104 |
| 105 V(Int32Div, Operator::kNoProperties, 2, 1, 1) \ | 105 #define PURE_BINARY_OP_LIST_64(V) \ |
| 106 V(Int32Mod, Operator::kNoProperties, 2, 1, 1) \ | 106 V(Word64And, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ |
| 107 V(Int32LessThan, Operator::kNoProperties, 2, 0, 1) \ | 107 V(Word64Or, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ |
| 108 V(Int32LessThanOrEqual, Operator::kNoProperties, 2, 0, 1) \ | 108 V(Word64Xor, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ |
| 109 V(Uint32Div, Operator::kNoProperties, 2, 1, 1) \ | 109 V(Word64Shl, Operator::kNoProperties, 2, 0, 1) \ |
| 110 V(Uint32LessThan, Operator::kNoProperties, 2, 0, 1) \ | 110 V(Word64Shr, Operator::kNoProperties, 2, 0, 1) \ |
| 111 V(Uint32LessThanOrEqual, Operator::kNoProperties, 2, 0, 1) \ | 111 V(Word64Sar, Operator::kNoProperties, 2, 0, 1) \ |
| 112 V(Uint32Mod, Operator::kNoProperties, 2, 1, 1) \ | 112 V(Word64Ror, Operator::kNoProperties, 2, 0, 1) \ |
| 113 V(Uint32MulHigh, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ | 113 V(Word64Equal, Operator::kCommutative, 2, 0, 1) \ |
| 114 V(Int64Add, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ | 114 V(Int64Add, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ |
| 115 V(Int64Sub, Operator::kNoProperties, 2, 0, 1) \ | 115 V(Int64Sub, Operator::kNoProperties, 2, 0, 1) \ |
| 116 V(Int64Mul, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ | 116 V(Int64Mul, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ |
| 117 V(Int64Div, Operator::kNoProperties, 2, 1, 1) \ | 117 V(Int64Div, Operator::kNoProperties, 2, 1, 1) \ |
| 118 V(Int64Mod, Operator::kNoProperties, 2, 1, 1) \ | 118 V(Int64Mod, Operator::kNoProperties, 2, 1, 1) \ |
| 119 V(Int64LessThan, Operator::kNoProperties, 2, 0, 1) \ | 119 V(Int64LessThan, Operator::kNoProperties, 2, 0, 1) \ |
| 120 V(Int64LessThanOrEqual, Operator::kNoProperties, 2, 0, 1) \ | 120 V(Int64LessThanOrEqual, Operator::kNoProperties, 2, 0, 1) \ |
| 121 V(Uint64Div, Operator::kNoProperties, 2, 1, 1) \ | 121 V(Uint64Div, Operator::kNoProperties, 2, 1, 1) \ |
| 122 V(Uint64Mod, Operator::kNoProperties, 2, 1, 1) \ | 122 V(Uint64Mod, Operator::kNoProperties, 2, 1, 1) \ |
| 123 V(Uint64LessThan, Operator::kNoProperties, 2, 0, 1) \ | 123 V(Uint64LessThan, Operator::kNoProperties, 2, 0, 1) \ |
| 124 V(Uint64LessThanOrEqual, Operator::kNoProperties, 2, 0, 1) \ | 124 V(Uint64LessThanOrEqual, Operator::kNoProperties, 2, 0, 1) |
| 125 V(BitcastTaggedToWord, Operator::kNoProperties, 1, 0, 1) \ | 125 |
| 126 V(BitcastWordToTagged, Operator::kNoProperties, 1, 0, 1) \ | 126 #define PURE_OP_LIST(V) \ |
| 127 V(BitcastWordToTaggedSigned, Operator::kNoProperties, 1, 0, 1) \ | 127 PURE_BINARY_OP_LIST_32(V) \ |
| 128 V(TruncateFloat64ToWord32, Operator::kNoProperties, 1, 0, 1) \ | 128 PURE_BINARY_OP_LIST_64(V) \ |
| 129 V(ChangeFloat32ToFloat64, Operator::kNoProperties, 1, 0, 1) \ | 129 V(Word32Clz, Operator::kNoProperties, 1, 0, 1) \ |
| 130 V(ChangeFloat64ToInt32, Operator::kNoProperties, 1, 0, 1) \ | 130 V(Word64Clz, Operator::kNoProperties, 1, 0, 1) \ |
| 131 V(ChangeFloat64ToUint32, Operator::kNoProperties, 1, 0, 1) \ | 131 V(BitcastTaggedToWord, Operator::kNoProperties, 1, 0, 1) \ |
| 132 V(TruncateFloat64ToUint32, Operator::kNoProperties, 1, 0, 1) \ | 132 V(BitcastWordToTagged, Operator::kNoProperties, 1, 0, 1) \ |
| 133 V(TruncateFloat32ToInt32, Operator::kNoProperties, 1, 0, 1) \ | 133 V(BitcastWordToTaggedSigned, Operator::kNoProperties, 1, 0, 1) \ |
| 134 V(TruncateFloat32ToUint32, Operator::kNoProperties, 1, 0, 1) \ | 134 V(TruncateFloat64ToWord32, Operator::kNoProperties, 1, 0, 1) \ |
| 135 V(TryTruncateFloat32ToInt64, Operator::kNoProperties, 1, 0, 2) \ | 135 V(ChangeFloat32ToFloat64, Operator::kNoProperties, 1, 0, 1) \ |
| 136 V(TryTruncateFloat64ToInt64, Operator::kNoProperties, 1, 0, 2) \ | 136 V(ChangeFloat64ToInt32, Operator::kNoProperties, 1, 0, 1) \ |
| 137 V(TryTruncateFloat32ToUint64, Operator::kNoProperties, 1, 0, 2) \ | 137 V(ChangeFloat64ToUint32, Operator::kNoProperties, 1, 0, 1) \ |
| 138 V(TryTruncateFloat64ToUint64, Operator::kNoProperties, 1, 0, 2) \ | 138 V(TruncateFloat64ToUint32, Operator::kNoProperties, 1, 0, 1) \ |
| 139 V(ChangeInt32ToFloat64, Operator::kNoProperties, 1, 0, 1) \ | 139 V(TruncateFloat32ToInt32, Operator::kNoProperties, 1, 0, 1) \ |
| 140 V(Float64SilenceNaN, Operator::kNoProperties, 1, 0, 1) \ | 140 V(TruncateFloat32ToUint32, Operator::kNoProperties, 1, 0, 1) \ |
| 141 V(RoundFloat64ToInt32, Operator::kNoProperties, 1, 0, 1) \ | 141 V(TryTruncateFloat32ToInt64, Operator::kNoProperties, 1, 0, 2) \ |
| 142 V(RoundInt32ToFloat32, Operator::kNoProperties, 1, 0, 1) \ | 142 V(TryTruncateFloat64ToInt64, Operator::kNoProperties, 1, 0, 2) \ |
| 143 V(RoundInt64ToFloat32, Operator::kNoProperties, 1, 0, 1) \ | 143 V(TryTruncateFloat32ToUint64, Operator::kNoProperties, 1, 0, 2) \ |
| 144 V(RoundInt64ToFloat64, Operator::kNoProperties, 1, 0, 1) \ | 144 V(TryTruncateFloat64ToUint64, Operator::kNoProperties, 1, 0, 2) \ |
| 145 V(RoundUint32ToFloat32, Operator::kNoProperties, 1, 0, 1) \ | 145 V(ChangeInt32ToFloat64, Operator::kNoProperties, 1, 0, 1) \ |
| 146 V(RoundUint64ToFloat32, Operator::kNoProperties, 1, 0, 1) \ | 146 V(Float64SilenceNaN, Operator::kNoProperties, 1, 0, 1) \ |
| 147 V(RoundUint64ToFloat64, Operator::kNoProperties, 1, 0, 1) \ | 147 V(RoundFloat64ToInt32, Operator::kNoProperties, 1, 0, 1) \ |
| 148 V(ChangeInt32ToInt64, Operator::kNoProperties, 1, 0, 1) \ | 148 V(RoundInt32ToFloat32, Operator::kNoProperties, 1, 0, 1) \ |
| 149 V(ChangeUint32ToFloat64, Operator::kNoProperties, 1, 0, 1) \ | 149 V(RoundInt64ToFloat32, Operator::kNoProperties, 1, 0, 1) \ |
| 150 V(ChangeUint32ToUint64, Operator::kNoProperties, 1, 0, 1) \ | 150 V(RoundInt64ToFloat64, Operator::kNoProperties, 1, 0, 1) \ |
| 151 V(TruncateFloat64ToFloat32, Operator::kNoProperties, 1, 0, 1) \ | 151 V(RoundUint32ToFloat32, Operator::kNoProperties, 1, 0, 1) \ |
| 152 V(TruncateInt64ToInt32, Operator::kNoProperties, 1, 0, 1) \ | 152 V(RoundUint64ToFloat32, Operator::kNoProperties, 1, 0, 1) \ |
| 153 V(BitcastFloat32ToInt32, Operator::kNoProperties, 1, 0, 1) \ | 153 V(RoundUint64ToFloat64, Operator::kNoProperties, 1, 0, 1) \ |
| 154 V(BitcastFloat64ToInt64, Operator::kNoProperties, 1, 0, 1) \ | 154 V(ChangeInt32ToInt64, Operator::kNoProperties, 1, 0, 1) \ |
| 155 V(BitcastInt32ToFloat32, Operator::kNoProperties, 1, 0, 1) \ | 155 V(ChangeUint32ToFloat64, Operator::kNoProperties, 1, 0, 1) \ |
| 156 V(BitcastInt64ToFloat64, Operator::kNoProperties, 1, 0, 1) \ | 156 V(ChangeUint32ToUint64, Operator::kNoProperties, 1, 0, 1) \ |
| 157 V(Float32Abs, Operator::kNoProperties, 1, 0, 1) \ | 157 V(TruncateFloat64ToFloat32, Operator::kNoProperties, 1, 0, 1) \ |
| 158 V(Float32Add, Operator::kCommutative, 2, 0, 1) \ | 158 V(TruncateInt64ToInt32, Operator::kNoProperties, 1, 0, 1) \ |
| 159 V(Float32Sub, Operator::kNoProperties, 2, 0, 1) \ | 159 V(BitcastFloat32ToInt32, Operator::kNoProperties, 1, 0, 1) \ |
| 160 V(Float32Mul, Operator::kCommutative, 2, 0, 1) \ | 160 V(BitcastFloat64ToInt64, Operator::kNoProperties, 1, 0, 1) \ |
| 161 V(Float32Div, Operator::kNoProperties, 2, 0, 1) \ | 161 V(BitcastInt32ToFloat32, Operator::kNoProperties, 1, 0, 1) \ |
| 162 V(Float32Neg, Operator::kNoProperties, 1, 0, 1) \ | 162 V(BitcastInt64ToFloat64, Operator::kNoProperties, 1, 0, 1) \ |
| 163 V(Float32Sqrt, Operator::kNoProperties, 1, 0, 1) \ | 163 V(Float32Abs, Operator::kNoProperties, 1, 0, 1) \ |
| 164 V(Float32Max, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ | 164 V(Float32Add, Operator::kCommutative, 2, 0, 1) \ |
| 165 V(Float32Min, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ | 165 V(Float32Sub, Operator::kNoProperties, 2, 0, 1) \ |
| 166 V(Float64Abs, Operator::kNoProperties, 1, 0, 1) \ | 166 V(Float32Mul, Operator::kCommutative, 2, 0, 1) \ |
| 167 V(Float64Acos, Operator::kNoProperties, 1, 0, 1) \ | 167 V(Float32Div, Operator::kNoProperties, 2, 0, 1) \ |
| 168 V(Float64Acosh, Operator::kNoProperties, 1, 0, 1) \ | 168 V(Float32Neg, Operator::kNoProperties, 1, 0, 1) \ |
| 169 V(Float64Asin, Operator::kNoProperties, 1, 0, 1) \ | 169 V(Float32Sqrt, Operator::kNoProperties, 1, 0, 1) \ |
| 170 V(Float64Asinh, Operator::kNoProperties, 1, 0, 1) \ | 170 V(Float32Max, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ |
| 171 V(Float64Atan, Operator::kNoProperties, 1, 0, 1) \ | 171 V(Float32Min, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ |
| 172 V(Float64Atan2, Operator::kNoProperties, 2, 0, 1) \ | 172 V(Float64Abs, Operator::kNoProperties, 1, 0, 1) \ |
| 173 V(Float64Atanh, Operator::kNoProperties, 1, 0, 1) \ | 173 V(Float64Acos, Operator::kNoProperties, 1, 0, 1) \ |
| 174 V(Float64Cbrt, Operator::kNoProperties, 1, 0, 1) \ | 174 V(Float64Acosh, Operator::kNoProperties, 1, 0, 1) \ |
| 175 V(Float64Cos, Operator::kNoProperties, 1, 0, 1) \ | 175 V(Float64Asin, Operator::kNoProperties, 1, 0, 1) \ |
| 176 V(Float64Cosh, Operator::kNoProperties, 1, 0, 1) \ | 176 V(Float64Asinh, Operator::kNoProperties, 1, 0, 1) \ |
| 177 V(Float64Exp, Operator::kNoProperties, 1, 0, 1) \ | 177 V(Float64Atan, Operator::kNoProperties, 1, 0, 1) \ |
| 178 V(Float64Expm1, Operator::kNoProperties, 1, 0, 1) \ | 178 V(Float64Atan2, Operator::kNoProperties, 2, 0, 1) \ |
| 179 V(Float64Log, Operator::kNoProperties, 1, 0, 1) \ | 179 V(Float64Atanh, Operator::kNoProperties, 1, 0, 1) \ |
| 180 V(Float64Log1p, Operator::kNoProperties, 1, 0, 1) \ | 180 V(Float64Cbrt, Operator::kNoProperties, 1, 0, 1) \ |
| 181 V(Float64Log2, Operator::kNoProperties, 1, 0, 1) \ | 181 V(Float64Cos, Operator::kNoProperties, 1, 0, 1) \ |
| 182 V(Float64Log10, Operator::kNoProperties, 1, 0, 1) \ | 182 V(Float64Cosh, Operator::kNoProperties, 1, 0, 1) \ |
| 183 V(Float64Max, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ | 183 V(Float64Exp, Operator::kNoProperties, 1, 0, 1) \ |
| 184 V(Float64Min, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ | 184 V(Float64Expm1, Operator::kNoProperties, 1, 0, 1) \ |
| 185 V(Float64Neg, Operator::kNoProperties, 1, 0, 1) \ | 185 V(Float64Log, Operator::kNoProperties, 1, 0, 1) \ |
| 186 V(Float64Add, Operator::kCommutative, 2, 0, 1) \ | 186 V(Float64Log1p, Operator::kNoProperties, 1, 0, 1) \ |
| 187 V(Float64Sub, Operator::kNoProperties, 2, 0, 1) \ | 187 V(Float64Log2, Operator::kNoProperties, 1, 0, 1) \ |
| 188 V(Float64Mul, Operator::kCommutative, 2, 0, 1) \ | 188 V(Float64Log10, Operator::kNoProperties, 1, 0, 1) \ |
| 189 V(Float64Div, Operator::kNoProperties, 2, 0, 1) \ | 189 V(Float64Max, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ |
| 190 V(Float64Mod, Operator::kNoProperties, 2, 0, 1) \ | 190 V(Float64Min, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ |
| 191 V(Float64Pow, Operator::kNoProperties, 2, 0, 1) \ | 191 V(Float64Neg, Operator::kNoProperties, 1, 0, 1) \ |
| 192 V(Float64Sin, Operator::kNoProperties, 1, 0, 1) \ | 192 V(Float64Add, Operator::kCommutative, 2, 0, 1) \ |
| 193 V(Float64Sinh, Operator::kNoProperties, 1, 0, 1) \ | 193 V(Float64Sub, Operator::kNoProperties, 2, 0, 1) \ |
| 194 V(Float64Sqrt, Operator::kNoProperties, 1, 0, 1) \ | 194 V(Float64Mul, Operator::kCommutative, 2, 0, 1) \ |
| 195 V(Float64Tan, Operator::kNoProperties, 1, 0, 1) \ | 195 V(Float64Div, Operator::kNoProperties, 2, 0, 1) \ |
| 196 V(Float64Tanh, Operator::kNoProperties, 1, 0, 1) \ | 196 V(Float64Mod, Operator::kNoProperties, 2, 0, 1) \ |
| 197 V(Float32Equal, Operator::kCommutative, 2, 0, 1) \ | 197 V(Float64Pow, Operator::kNoProperties, 2, 0, 1) \ |
| 198 V(Float32LessThan, Operator::kNoProperties, 2, 0, 1) \ | 198 V(Float64Sin, Operator::kNoProperties, 1, 0, 1) \ |
| 199 V(Float32LessThanOrEqual, Operator::kNoProperties, 2, 0, 1) \ | 199 V(Float64Sinh, Operator::kNoProperties, 1, 0, 1) \ |
| 200 V(Float64Equal, Operator::kCommutative, 2, 0, 1) \ | 200 V(Float64Sqrt, Operator::kNoProperties, 1, 0, 1) \ |
| 201 V(Float64LessThan, Operator::kNoProperties, 2, 0, 1) \ | 201 V(Float64Tan, Operator::kNoProperties, 1, 0, 1) \ |
| 202 V(Float64LessThanOrEqual, Operator::kNoProperties, 2, 0, 1) \ | 202 V(Float64Tanh, Operator::kNoProperties, 1, 0, 1) \ |
| 203 V(Float64ExtractLowWord32, Operator::kNoProperties, 1, 0, 1) \ | 203 V(Float32Equal, Operator::kCommutative, 2, 0, 1) \ |
| 204 V(Float64ExtractHighWord32, Operator::kNoProperties, 1, 0, 1) \ | 204 V(Float32LessThan, Operator::kNoProperties, 2, 0, 1) \ |
| 205 V(Float64InsertLowWord32, Operator::kNoProperties, 2, 0, 1) \ | 205 V(Float32LessThanOrEqual, Operator::kNoProperties, 2, 0, 1) \ |
| 206 V(Float64InsertHighWord32, Operator::kNoProperties, 2, 0, 1) \ | 206 V(Float64Equal, Operator::kCommutative, 2, 0, 1) \ |
| 207 V(LoadStackPointer, Operator::kNoProperties, 0, 0, 1) \ | 207 V(Float64LessThan, Operator::kNoProperties, 2, 0, 1) \ |
| 208 V(LoadFramePointer, Operator::kNoProperties, 0, 0, 1) \ | 208 V(Float64LessThanOrEqual, Operator::kNoProperties, 2, 0, 1) \ |
| 209 V(LoadParentFramePointer, Operator::kNoProperties, 0, 0, 1) \ | 209 V(Float64ExtractLowWord32, Operator::kNoProperties, 1, 0, 1) \ |
| 210 V(Int32PairAdd, Operator::kNoProperties, 4, 0, 2) \ | 210 V(Float64ExtractHighWord32, Operator::kNoProperties, 1, 0, 1) \ |
| 211 V(Int32PairSub, Operator::kNoProperties, 4, 0, 2) \ | 211 V(Float64InsertLowWord32, Operator::kNoProperties, 2, 0, 1) \ |
| 212 V(Int32PairMul, Operator::kNoProperties, 4, 0, 2) \ | 212 V(Float64InsertHighWord32, Operator::kNoProperties, 2, 0, 1) \ |
| 213 V(Word32PairShl, Operator::kNoProperties, 3, 0, 2) \ | 213 V(LoadStackPointer, Operator::kNoProperties, 0, 0, 1) \ |
| 214 V(Word32PairShr, Operator::kNoProperties, 3, 0, 2) \ | 214 V(LoadFramePointer, Operator::kNoProperties, 0, 0, 1) \ |
| 215 V(Word32PairSar, Operator::kNoProperties, 3, 0, 2) \ | 215 V(LoadParentFramePointer, Operator::kNoProperties, 0, 0, 1) \ |
| 216 V(CreateFloat32x4, Operator::kNoProperties, 4, 0, 1) \ | 216 V(Int32PairAdd, Operator::kNoProperties, 4, 0, 2) \ |
| 217 V(Float32x4ExtractLane, Operator::kNoProperties, 2, 0, 1) \ | 217 V(Int32PairSub, Operator::kNoProperties, 4, 0, 2) \ |
| 218 V(Float32x4ReplaceLane, Operator::kNoProperties, 3, 0, 1) \ | 218 V(Int32PairMul, Operator::kNoProperties, 4, 0, 2) \ |
| 219 V(Float32x4Abs, Operator::kNoProperties, 1, 0, 1) \ | 219 V(Word32PairShl, Operator::kNoProperties, 3, 0, 2) \ |
| 220 V(Float32x4Neg, Operator::kNoProperties, 1, 0, 1) \ | 220 V(Word32PairShr, Operator::kNoProperties, 3, 0, 2) \ |
| 221 V(Float32x4Sqrt, Operator::kNoProperties, 1, 0, 1) \ | 221 V(Word32PairSar, Operator::kNoProperties, 3, 0, 2) \ |
| 222 V(Float32x4RecipApprox, Operator::kNoProperties, 1, 0, 1) \ | 222 V(CreateFloat32x4, Operator::kNoProperties, 4, 0, 1) \ |
| 223 V(Float32x4RecipSqrtApprox, Operator::kNoProperties, 1, 0, 1) \ | 223 V(Float32x4ExtractLane, Operator::kNoProperties, 2, 0, 1) \ |
| 224 V(Float32x4Add, Operator::kCommutative, 2, 0, 1) \ | 224 V(Float32x4ReplaceLane, Operator::kNoProperties, 3, 0, 1) \ |
| 225 V(Float32x4Sub, Operator::kNoProperties, 2, 0, 1) \ | 225 V(Float32x4Abs, Operator::kNoProperties, 1, 0, 1) \ |
| 226 V(Float32x4Mul, Operator::kCommutative, 2, 0, 1) \ | 226 V(Float32x4Neg, Operator::kNoProperties, 1, 0, 1) \ |
| 227 V(Float32x4Div, Operator::kNoProperties, 2, 0, 1) \ | 227 V(Float32x4Sqrt, Operator::kNoProperties, 1, 0, 1) \ |
| 228 V(Float32x4Min, Operator::kCommutative, 2, 0, 1) \ | 228 V(Float32x4RecipApprox, Operator::kNoProperties, 1, 0, 1) \ |
| 229 V(Float32x4Max, Operator::kCommutative, 2, 0, 1) \ | 229 V(Float32x4RecipSqrtApprox, Operator::kNoProperties, 1, 0, 1) \ |
| 230 V(Float32x4MinNum, Operator::kCommutative, 2, 0, 1) \ | 230 V(Float32x4Add, Operator::kCommutative, 2, 0, 1) \ |
| 231 V(Float32x4MaxNum, Operator::kCommutative, 2, 0, 1) \ | 231 V(Float32x4Sub, Operator::kNoProperties, 2, 0, 1) \ |
| 232 V(Float32x4Equal, Operator::kCommutative, 2, 0, 1) \ | 232 V(Float32x4Mul, Operator::kCommutative, 2, 0, 1) \ |
| 233 V(Float32x4NotEqual, Operator::kCommutative, 2, 0, 1) \ | 233 V(Float32x4Div, Operator::kNoProperties, 2, 0, 1) \ |
| 234 V(Float32x4LessThan, Operator::kNoProperties, 2, 0, 1) \ | 234 V(Float32x4Min, Operator::kCommutative, 2, 0, 1) \ |
| 235 V(Float32x4LessThanOrEqual, Operator::kNoProperties, 2, 0, 1) \ | 235 V(Float32x4Max, Operator::kCommutative, 2, 0, 1) \ |
| 236 V(Float32x4GreaterThan, Operator::kNoProperties, 2, 0, 1) \ | 236 V(Float32x4MinNum, Operator::kCommutative, 2, 0, 1) \ |
| 237 V(Float32x4GreaterThanOrEqual, Operator::kNoProperties, 2, 0, 1) \ | 237 V(Float32x4MaxNum, Operator::kCommutative, 2, 0, 1) \ |
| 238 V(Float32x4Select, Operator::kNoProperties, 3, 0, 1) \ | 238 V(Float32x4Equal, Operator::kCommutative, 2, 0, 1) \ |
| 239 V(Float32x4Swizzle, Operator::kNoProperties, 5, 0, 1) \ | 239 V(Float32x4NotEqual, Operator::kCommutative, 2, 0, 1) \ |
| 240 V(Float32x4Shuffle, Operator::kNoProperties, 6, 0, 1) \ | 240 V(Float32x4LessThan, Operator::kNoProperties, 2, 0, 1) \ |
| 241 V(Float32x4FromInt32x4, Operator::kNoProperties, 1, 0, 1) \ | 241 V(Float32x4LessThanOrEqual, Operator::kNoProperties, 2, 0, 1) \ |
| 242 V(Float32x4FromUint32x4, Operator::kNoProperties, 1, 0, 1) \ | 242 V(Float32x4GreaterThan, Operator::kNoProperties, 2, 0, 1) \ |
| 243 V(CreateInt32x4, Operator::kNoProperties, 4, 0, 1) \ | 243 V(Float32x4GreaterThanOrEqual, Operator::kNoProperties, 2, 0, 1) \ |
| 244 V(Int32x4ExtractLane, Operator::kNoProperties, 2, 0, 1) \ | 244 V(Float32x4Select, Operator::kNoProperties, 3, 0, 1) \ |
| 245 V(Int32x4ReplaceLane, Operator::kNoProperties, 3, 0, 1) \ | 245 V(Float32x4Swizzle, Operator::kNoProperties, 5, 0, 1) \ |
| 246 V(Int32x4Neg, Operator::kNoProperties, 1, 0, 1) \ | 246 V(Float32x4Shuffle, Operator::kNoProperties, 6, 0, 1) \ |
| 247 V(Int32x4Add, Operator::kCommutative, 2, 0, 1) \ | 247 V(Float32x4FromInt32x4, Operator::kNoProperties, 1, 0, 1) \ |
| 248 V(Int32x4Sub, Operator::kNoProperties, 2, 0, 1) \ | 248 V(Float32x4FromUint32x4, Operator::kNoProperties, 1, 0, 1) \ |
| 249 V(Int32x4Mul, Operator::kCommutative, 2, 0, 1) \ | 249 V(CreateInt32x4, Operator::kNoProperties, 4, 0, 1) \ |
| 250 V(Int32x4Min, Operator::kCommutative, 2, 0, 1) \ | 250 V(Int32x4ExtractLane, Operator::kNoProperties, 2, 0, 1) \ |
| 251 V(Int32x4Max, Operator::kCommutative, 2, 0, 1) \ | 251 V(Int32x4ReplaceLane, Operator::kNoProperties, 3, 0, 1) \ |
| 252 V(Int32x4ShiftLeftByScalar, Operator::kNoProperties, 2, 0, 1) \ | 252 V(Int32x4Neg, Operator::kNoProperties, 1, 0, 1) \ |
| 253 V(Int32x4ShiftRightByScalar, Operator::kNoProperties, 2, 0, 1) \ | 253 V(Int32x4Add, Operator::kCommutative, 2, 0, 1) \ |
| 254 V(Int32x4Equal, Operator::kCommutative, 2, 0, 1) \ | 254 V(Int32x4Sub, Operator::kNoProperties, 2, 0, 1) \ |
| 255 V(Int32x4NotEqual, Operator::kCommutative, 2, 0, 1) \ | 255 V(Int32x4Mul, Operator::kCommutative, 2, 0, 1) \ |
| 256 V(Int32x4LessThan, Operator::kNoProperties, 2, 0, 1) \ | 256 V(Int32x4Min, Operator::kCommutative, 2, 0, 1) \ |
| 257 V(Int32x4LessThanOrEqual, Operator::kNoProperties, 2, 0, 1) \ | 257 V(Int32x4Max, Operator::kCommutative, 2, 0, 1) \ |
| 258 V(Int32x4GreaterThan, Operator::kNoProperties, 2, 0, 1) \ | 258 V(Int32x4ShiftLeftByScalar, Operator::kNoProperties, 2, 0, 1) \ |
| 259 V(Int32x4GreaterThanOrEqual, Operator::kNoProperties, 2, 0, 1) \ | 259 V(Int32x4ShiftRightByScalar, Operator::kNoProperties, 2, 0, 1) \ |
| 260 V(Int32x4Select, Operator::kNoProperties, 3, 0, 1) \ | 260 V(Int32x4Equal, Operator::kCommutative, 2, 0, 1) \ |
| 261 V(Int32x4Swizzle, Operator::kNoProperties, 5, 0, 1) \ | 261 V(Int32x4NotEqual, Operator::kCommutative, 2, 0, 1) \ |
| 262 V(Int32x4Shuffle, Operator::kNoProperties, 6, 0, 1) \ | 262 V(Int32x4LessThan, Operator::kNoProperties, 2, 0, 1) \ |
| 263 V(Int32x4FromFloat32x4, Operator::kNoProperties, 1, 0, 1) \ | 263 V(Int32x4LessThanOrEqual, Operator::kNoProperties, 2, 0, 1) \ |
| 264 V(Uint32x4Min, Operator::kCommutative, 2, 0, 1) \ | 264 V(Int32x4GreaterThan, Operator::kNoProperties, 2, 0, 1) \ |
| 265 V(Uint32x4Max, Operator::kCommutative, 2, 0, 1) \ | 265 V(Int32x4GreaterThanOrEqual, Operator::kNoProperties, 2, 0, 1) \ |
| 266 V(Uint32x4ShiftLeftByScalar, Operator::kNoProperties, 2, 0, 1) \ | 266 V(Int32x4Select, Operator::kNoProperties, 3, 0, 1) \ |
| 267 V(Uint32x4ShiftRightByScalar, Operator::kNoProperties, 2, 0, 1) \ | 267 V(Int32x4Swizzle, Operator::kNoProperties, 5, 0, 1) \ |
| 268 V(Uint32x4LessThan, Operator::kNoProperties, 2, 0, 1) \ | 268 V(Int32x4Shuffle, Operator::kNoProperties, 6, 0, 1) \ |
| 269 V(Uint32x4LessThanOrEqual, Operator::kNoProperties, 2, 0, 1) \ | 269 V(Int32x4FromFloat32x4, Operator::kNoProperties, 1, 0, 1) \ |
| 270 V(Uint32x4GreaterThan, Operator::kNoProperties, 2, 0, 1) \ | 270 V(Uint32x4Min, Operator::kCommutative, 2, 0, 1) \ |
| 271 V(Uint32x4GreaterThanOrEqual, Operator::kNoProperties, 2, 0, 1) \ | 271 V(Uint32x4Max, Operator::kCommutative, 2, 0, 1) \ |
| 272 V(Uint32x4FromFloat32x4, Operator::kNoProperties, 1, 0, 1) \ | 272 V(Uint32x4ShiftLeftByScalar, Operator::kNoProperties, 2, 0, 1) \ |
| 273 V(CreateBool32x4, Operator::kNoProperties, 4, 0, 1) \ | 273 V(Uint32x4ShiftRightByScalar, Operator::kNoProperties, 2, 0, 1) \ |
| 274 V(Bool32x4ExtractLane, Operator::kNoProperties, 2, 0, 1) \ | 274 V(Uint32x4LessThan, Operator::kNoProperties, 2, 0, 1) \ |
| 275 V(Bool32x4ReplaceLane, Operator::kNoProperties, 3, 0, 1) \ | 275 V(Uint32x4LessThanOrEqual, Operator::kNoProperties, 2, 0, 1) \ |
| 276 V(Bool32x4And, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ | 276 V(Uint32x4GreaterThan, Operator::kNoProperties, 2, 0, 1) \ |
| 277 V(Bool32x4Or, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ | 277 V(Uint32x4GreaterThanOrEqual, Operator::kNoProperties, 2, 0, 1) \ |
| 278 V(Bool32x4Xor, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ | 278 V(Uint32x4FromFloat32x4, Operator::kNoProperties, 1, 0, 1) \ |
| 279 V(Bool32x4Not, Operator::kNoProperties, 1, 0, 1) \ | 279 V(CreateBool32x4, Operator::kNoProperties, 4, 0, 1) \ |
| 280 V(Bool32x4AnyTrue, Operator::kNoProperties, 1, 0, 1) \ | 280 V(Bool32x4ExtractLane, Operator::kNoProperties, 2, 0, 1) \ |
| 281 V(Bool32x4AllTrue, Operator::kNoProperties, 1, 0, 1) \ | 281 V(Bool32x4ReplaceLane, Operator::kNoProperties, 3, 0, 1) \ |
| 282 V(Bool32x4Swizzle, Operator::kNoProperties, 5, 0, 1) \ | 282 V(Bool32x4And, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ |
| 283 V(Bool32x4Shuffle, Operator::kNoProperties, 6, 0, 1) \ | 283 V(Bool32x4Or, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ |
| 284 V(Bool32x4Equal, Operator::kCommutative, 2, 0, 1) \ | 284 V(Bool32x4Xor, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ |
| 285 V(Bool32x4NotEqual, Operator::kCommutative, 2, 0, 1) \ | 285 V(Bool32x4Not, Operator::kNoProperties, 1, 0, 1) \ |
| 286 V(CreateInt16x8, Operator::kNoProperties, 8, 0, 1) \ | 286 V(Bool32x4AnyTrue, Operator::kNoProperties, 1, 0, 1) \ |
| 287 V(Int16x8ExtractLane, Operator::kNoProperties, 2, 0, 1) \ | 287 V(Bool32x4AllTrue, Operator::kNoProperties, 1, 0, 1) \ |
| 288 V(Int16x8ReplaceLane, Operator::kNoProperties, 3, 0, 1) \ | 288 V(Bool32x4Swizzle, Operator::kNoProperties, 5, 0, 1) \ |
| 289 V(Int16x8Neg, Operator::kNoProperties, 1, 0, 1) \ | 289 V(Bool32x4Shuffle, Operator::kNoProperties, 6, 0, 1) \ |
| 290 V(Int16x8Add, Operator::kCommutative, 2, 0, 1) \ | 290 V(Bool32x4Equal, Operator::kCommutative, 2, 0, 1) \ |
| 291 V(Int16x8AddSaturate, Operator::kCommutative, 2, 0, 1) \ | 291 V(Bool32x4NotEqual, Operator::kCommutative, 2, 0, 1) \ |
| 292 V(Int16x8Sub, Operator::kNoProperties, 2, 0, 1) \ | 292 V(CreateInt16x8, Operator::kNoProperties, 8, 0, 1) \ |
| 293 V(Int16x8SubSaturate, Operator::kNoProperties, 2, 0, 1) \ | 293 V(Int16x8ExtractLane, Operator::kNoProperties, 2, 0, 1) \ |
| 294 V(Int16x8Mul, Operator::kCommutative, 2, 0, 1) \ | 294 V(Int16x8ReplaceLane, Operator::kNoProperties, 3, 0, 1) \ |
| 295 V(Int16x8Min, Operator::kCommutative, 2, 0, 1) \ | 295 V(Int16x8Neg, Operator::kNoProperties, 1, 0, 1) \ |
| 296 V(Int16x8Max, Operator::kCommutative, 2, 0, 1) \ | 296 V(Int16x8Add, Operator::kCommutative, 2, 0, 1) \ |
| 297 V(Int16x8ShiftLeftByScalar, Operator::kNoProperties, 2, 0, 1) \ | 297 V(Int16x8AddSaturate, Operator::kCommutative, 2, 0, 1) \ |
| 298 V(Int16x8ShiftRightByScalar, Operator::kNoProperties, 2, 0, 1) \ | 298 V(Int16x8Sub, Operator::kNoProperties, 2, 0, 1) \ |
| 299 V(Int16x8Equal, Operator::kCommutative, 2, 0, 1) \ | 299 V(Int16x8SubSaturate, Operator::kNoProperties, 2, 0, 1) \ |
| 300 V(Int16x8NotEqual, Operator::kCommutative, 2, 0, 1) \ | 300 V(Int16x8Mul, Operator::kCommutative, 2, 0, 1) \ |
| 301 V(Int16x8LessThan, Operator::kNoProperties, 2, 0, 1) \ | 301 V(Int16x8Min, Operator::kCommutative, 2, 0, 1) \ |
| 302 V(Int16x8LessThanOrEqual, Operator::kNoProperties, 2, 0, 1) \ | 302 V(Int16x8Max, Operator::kCommutative, 2, 0, 1) \ |
| 303 V(Int16x8GreaterThan, Operator::kNoProperties, 2, 0, 1) \ | 303 V(Int16x8ShiftLeftByScalar, Operator::kNoProperties, 2, 0, 1) \ |
| 304 V(Int16x8GreaterThanOrEqual, Operator::kNoProperties, 2, 0, 1) \ | 304 V(Int16x8ShiftRightByScalar, Operator::kNoProperties, 2, 0, 1) \ |
| 305 V(Int16x8Select, Operator::kNoProperties, 3, 0, 1) \ | 305 V(Int16x8Equal, Operator::kCommutative, 2, 0, 1) \ |
| 306 V(Int16x8Swizzle, Operator::kNoProperties, 9, 0, 1) \ | 306 V(Int16x8NotEqual, Operator::kCommutative, 2, 0, 1) \ |
| 307 V(Int16x8Shuffle, Operator::kNoProperties, 10, 0, 1) \ | 307 V(Int16x8LessThan, Operator::kNoProperties, 2, 0, 1) \ |
| 308 V(Uint16x8AddSaturate, Operator::kCommutative, 2, 0, 1) \ | 308 V(Int16x8LessThanOrEqual, Operator::kNoProperties, 2, 0, 1) \ |
| 309 V(Uint16x8SubSaturate, Operator::kNoProperties, 2, 0, 1) \ | 309 V(Int16x8GreaterThan, Operator::kNoProperties, 2, 0, 1) \ |
| 310 V(Uint16x8Min, Operator::kCommutative, 2, 0, 1) \ | 310 V(Int16x8GreaterThanOrEqual, Operator::kNoProperties, 2, 0, 1) \ |
| 311 V(Uint16x8Max, Operator::kCommutative, 2, 0, 1) \ | 311 V(Int16x8Select, Operator::kNoProperties, 3, 0, 1) \ |
| 312 V(Uint16x8ShiftLeftByScalar, Operator::kNoProperties, 2, 0, 1) \ | 312 V(Int16x8Swizzle, Operator::kNoProperties, 9, 0, 1) \ |
| 313 V(Uint16x8ShiftRightByScalar, Operator::kNoProperties, 2, 0, 1) \ | 313 V(Int16x8Shuffle, Operator::kNoProperties, 10, 0, 1) \ |
| 314 V(Uint16x8LessThan, Operator::kNoProperties, 2, 0, 1) \ | 314 V(Uint16x8AddSaturate, Operator::kCommutative, 2, 0, 1) \ |
| 315 V(Uint16x8LessThanOrEqual, Operator::kNoProperties, 2, 0, 1) \ | 315 V(Uint16x8SubSaturate, Operator::kNoProperties, 2, 0, 1) \ |
| 316 V(Uint16x8GreaterThan, Operator::kNoProperties, 2, 0, 1) \ | 316 V(Uint16x8Min, Operator::kCommutative, 2, 0, 1) \ |
| 317 V(Uint16x8GreaterThanOrEqual, Operator::kNoProperties, 2, 0, 1) \ | 317 V(Uint16x8Max, Operator::kCommutative, 2, 0, 1) \ |
| 318 V(CreateBool16x8, Operator::kNoProperties, 8, 0, 1) \ | 318 V(Uint16x8ShiftLeftByScalar, Operator::kNoProperties, 2, 0, 1) \ |
| 319 V(Bool16x8ExtractLane, Operator::kNoProperties, 2, 0, 1) \ | 319 V(Uint16x8ShiftRightByScalar, Operator::kNoProperties, 2, 0, 1) \ |
| 320 V(Bool16x8ReplaceLane, Operator::kNoProperties, 3, 0, 1) \ | 320 V(Uint16x8LessThan, Operator::kNoProperties, 2, 0, 1) \ |
| 321 V(Bool16x8And, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ | 321 V(Uint16x8LessThanOrEqual, Operator::kNoProperties, 2, 0, 1) \ |
| 322 V(Bool16x8Or, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ | 322 V(Uint16x8GreaterThan, Operator::kNoProperties, 2, 0, 1) \ |
| 323 V(Bool16x8Xor, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ | 323 V(Uint16x8GreaterThanOrEqual, Operator::kNoProperties, 2, 0, 1) \ |
| 324 V(Bool16x8Not, Operator::kNoProperties, 1, 0, 1) \ | 324 V(CreateBool16x8, Operator::kNoProperties, 8, 0, 1) \ |
| 325 V(Bool16x8AnyTrue, Operator::kNoProperties, 1, 0, 1) \ | 325 V(Bool16x8ExtractLane, Operator::kNoProperties, 2, 0, 1) \ |
| 326 V(Bool16x8AllTrue, Operator::kNoProperties, 1, 0, 1) \ | 326 V(Bool16x8ReplaceLane, Operator::kNoProperties, 3, 0, 1) \ |
| 327 V(Bool16x8Swizzle, Operator::kNoProperties, 9, 0, 1) \ | 327 V(Bool16x8And, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ |
| 328 V(Bool16x8Shuffle, Operator::kNoProperties, 10, 0, 1) \ | 328 V(Bool16x8Or, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ |
| 329 V(Bool16x8Equal, Operator::kCommutative, 2, 0, 1) \ | 329 V(Bool16x8Xor, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ |
| 330 V(Bool16x8NotEqual, Operator::kCommutative, 2, 0, 1) \ | 330 V(Bool16x8Not, Operator::kNoProperties, 1, 0, 1) \ |
| 331 V(CreateInt8x16, Operator::kNoProperties, 16, 0, 1) \ | 331 V(Bool16x8AnyTrue, Operator::kNoProperties, 1, 0, 1) \ |
| 332 V(Int8x16ExtractLane, Operator::kNoProperties, 2, 0, 1) \ | 332 V(Bool16x8AllTrue, Operator::kNoProperties, 1, 0, 1) \ |
| 333 V(Int8x16ReplaceLane, Operator::kNoProperties, 3, 0, 1) \ | 333 V(Bool16x8Swizzle, Operator::kNoProperties, 9, 0, 1) \ |
| 334 V(Int8x16Neg, Operator::kNoProperties, 1, 0, 1) \ | 334 V(Bool16x8Shuffle, Operator::kNoProperties, 10, 0, 1) \ |
| 335 V(Int8x16Add, Operator::kCommutative, 2, 0, 1) \ | 335 V(Bool16x8Equal, Operator::kCommutative, 2, 0, 1) \ |
| 336 V(Int8x16AddSaturate, Operator::kCommutative, 2, 0, 1) \ | 336 V(Bool16x8NotEqual, Operator::kCommutative, 2, 0, 1) \ |
| 337 V(Int8x16Sub, Operator::kNoProperties, 2, 0, 1) \ | 337 V(CreateInt8x16, Operator::kNoProperties, 16, 0, 1) \ |
| 338 V(Int8x16SubSaturate, Operator::kNoProperties, 2, 0, 1) \ | 338 V(Int8x16ExtractLane, Operator::kNoProperties, 2, 0, 1) \ |
| 339 V(Int8x16Mul, Operator::kCommutative, 2, 0, 1) \ | 339 V(Int8x16ReplaceLane, Operator::kNoProperties, 3, 0, 1) \ |
| 340 V(Int8x16Min, Operator::kCommutative, 2, 0, 1) \ | 340 V(Int8x16Neg, Operator::kNoProperties, 1, 0, 1) \ |
| 341 V(Int8x16Max, Operator::kCommutative, 2, 0, 1) \ | 341 V(Int8x16Add, Operator::kCommutative, 2, 0, 1) \ |
| 342 V(Int8x16ShiftLeftByScalar, Operator::kNoProperties, 2, 0, 1) \ | 342 V(Int8x16AddSaturate, Operator::kCommutative, 2, 0, 1) \ |
| 343 V(Int8x16ShiftRightByScalar, Operator::kNoProperties, 2, 0, 1) \ | 343 V(Int8x16Sub, Operator::kNoProperties, 2, 0, 1) \ |
| 344 V(Int8x16Equal, Operator::kCommutative, 2, 0, 1) \ | 344 V(Int8x16SubSaturate, Operator::kNoProperties, 2, 0, 1) \ |
| 345 V(Int8x16NotEqual, Operator::kCommutative, 2, 0, 1) \ | 345 V(Int8x16Mul, Operator::kCommutative, 2, 0, 1) \ |
| 346 V(Int8x16LessThan, Operator::kNoProperties, 2, 0, 1) \ | 346 V(Int8x16Min, Operator::kCommutative, 2, 0, 1) \ |
| 347 V(Int8x16LessThanOrEqual, Operator::kNoProperties, 2, 0, 1) \ | 347 V(Int8x16Max, Operator::kCommutative, 2, 0, 1) \ |
| 348 V(Int8x16GreaterThan, Operator::kNoProperties, 2, 0, 1) \ | 348 V(Int8x16ShiftLeftByScalar, Operator::kNoProperties, 2, 0, 1) \ |
| 349 V(Int8x16GreaterThanOrEqual, Operator::kNoProperties, 2, 0, 1) \ | 349 V(Int8x16ShiftRightByScalar, Operator::kNoProperties, 2, 0, 1) \ |
| 350 V(Int8x16Select, Operator::kNoProperties, 3, 0, 1) \ | 350 V(Int8x16Equal, Operator::kCommutative, 2, 0, 1) \ |
| 351 V(Int8x16Swizzle, Operator::kNoProperties, 17, 0, 1) \ | 351 V(Int8x16NotEqual, Operator::kCommutative, 2, 0, 1) \ |
| 352 V(Int8x16Shuffle, Operator::kNoProperties, 18, 0, 1) \ | 352 V(Int8x16LessThan, Operator::kNoProperties, 2, 0, 1) \ |
| 353 V(Uint8x16AddSaturate, Operator::kCommutative, 2, 0, 1) \ | 353 V(Int8x16LessThanOrEqual, Operator::kNoProperties, 2, 0, 1) \ |
| 354 V(Uint8x16SubSaturate, Operator::kNoProperties, 2, 0, 1) \ | 354 V(Int8x16GreaterThan, Operator::kNoProperties, 2, 0, 1) \ |
| 355 V(Uint8x16Min, Operator::kCommutative, 2, 0, 1) \ | 355 V(Int8x16GreaterThanOrEqual, Operator::kNoProperties, 2, 0, 1) \ |
| 356 V(Uint8x16Max, Operator::kCommutative, 2, 0, 1) \ | 356 V(Int8x16Select, Operator::kNoProperties, 3, 0, 1) \ |
| 357 V(Uint8x16ShiftLeftByScalar, Operator::kNoProperties, 2, 0, 1) \ | 357 V(Int8x16Swizzle, Operator::kNoProperties, 17, 0, 1) \ |
| 358 V(Uint8x16ShiftRightByScalar, Operator::kNoProperties, 2, 0, 1) \ | 358 V(Int8x16Shuffle, Operator::kNoProperties, 18, 0, 1) \ |
| 359 V(Uint8x16LessThan, Operator::kNoProperties, 2, 0, 1) \ | 359 V(Uint8x16AddSaturate, Operator::kCommutative, 2, 0, 1) \ |
| 360 V(Uint8x16LessThanOrEqual, Operator::kNoProperties, 2, 0, 1) \ | 360 V(Uint8x16SubSaturate, Operator::kNoProperties, 2, 0, 1) \ |
| 361 V(Uint8x16GreaterThan, Operator::kNoProperties, 2, 0, 1) \ | 361 V(Uint8x16Min, Operator::kCommutative, 2, 0, 1) \ |
| 362 V(Uint8x16GreaterThanOrEqual, Operator::kNoProperties, 2, 0, 1) \ | 362 V(Uint8x16Max, Operator::kCommutative, 2, 0, 1) \ |
| 363 V(CreateBool8x16, Operator::kNoProperties, 16, 0, 1) \ | 363 V(Uint8x16ShiftLeftByScalar, Operator::kNoProperties, 2, 0, 1) \ |
| 364 V(Bool8x16ExtractLane, Operator::kNoProperties, 2, 0, 1) \ | 364 V(Uint8x16ShiftRightByScalar, Operator::kNoProperties, 2, 0, 1) \ |
| 365 V(Bool8x16ReplaceLane, Operator::kNoProperties, 3, 0, 1) \ | 365 V(Uint8x16LessThan, Operator::kNoProperties, 2, 0, 1) \ |
| 366 V(Bool8x16And, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ | 366 V(Uint8x16LessThanOrEqual, Operator::kNoProperties, 2, 0, 1) \ |
| 367 V(Bool8x16Or, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ | 367 V(Uint8x16GreaterThan, Operator::kNoProperties, 2, 0, 1) \ |
| 368 V(Bool8x16Xor, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ | 368 V(Uint8x16GreaterThanOrEqual, Operator::kNoProperties, 2, 0, 1) \ |
| 369 V(Bool8x16Not, Operator::kNoProperties, 1, 0, 1) \ | 369 V(CreateBool8x16, Operator::kNoProperties, 16, 0, 1) \ |
| 370 V(Bool8x16AnyTrue, Operator::kNoProperties, 1, 0, 1) \ | 370 V(Bool8x16ExtractLane, Operator::kNoProperties, 2, 0, 1) \ |
| 371 V(Bool8x16AllTrue, Operator::kNoProperties, 1, 0, 1) \ | 371 V(Bool8x16ReplaceLane, Operator::kNoProperties, 3, 0, 1) \ |
| 372 V(Bool8x16Swizzle, Operator::kNoProperties, 17, 0, 1) \ | 372 V(Bool8x16And, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ |
| 373 V(Bool8x16Shuffle, Operator::kNoProperties, 18, 0, 1) \ | 373 V(Bool8x16Or, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ |
| 374 V(Bool8x16Equal, Operator::kCommutative, 2, 0, 1) \ | 374 V(Bool8x16Xor, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ |
| 375 V(Bool8x16NotEqual, Operator::kCommutative, 2, 0, 1) \ | 375 V(Bool8x16Not, Operator::kNoProperties, 1, 0, 1) \ |
| 376 V(Simd128Load, Operator::kNoProperties, 2, 0, 1) \ | 376 V(Bool8x16AnyTrue, Operator::kNoProperties, 1, 0, 1) \ |
| 377 V(Simd128Load1, Operator::kNoProperties, 2, 0, 1) \ | 377 V(Bool8x16AllTrue, Operator::kNoProperties, 1, 0, 1) \ |
| 378 V(Simd128Load2, Operator::kNoProperties, 2, 0, 1) \ | 378 V(Bool8x16Swizzle, Operator::kNoProperties, 17, 0, 1) \ |
| 379 V(Simd128Load3, Operator::kNoProperties, 2, 0, 1) \ | 379 V(Bool8x16Shuffle, Operator::kNoProperties, 18, 0, 1) \ |
| 380 V(Simd128Store, Operator::kNoProperties, 3, 0, 1) \ | 380 V(Bool8x16Equal, Operator::kCommutative, 2, 0, 1) \ |
| 381 V(Simd128Store1, Operator::kNoProperties, 3, 0, 1) \ | 381 V(Bool8x16NotEqual, Operator::kCommutative, 2, 0, 1) \ |
| 382 V(Simd128Store2, Operator::kNoProperties, 3, 0, 1) \ | 382 V(Simd128Load, Operator::kNoProperties, 2, 0, 1) \ |
| 383 V(Simd128Store3, Operator::kNoProperties, 3, 0, 1) \ | 383 V(Simd128Load1, Operator::kNoProperties, 2, 0, 1) \ |
| 384 V(Simd128And, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ | 384 V(Simd128Load2, Operator::kNoProperties, 2, 0, 1) \ |
| 385 V(Simd128Or, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ | 385 V(Simd128Load3, Operator::kNoProperties, 2, 0, 1) \ |
| 386 V(Simd128Xor, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ | 386 V(Simd128Store, Operator::kNoProperties, 3, 0, 1) \ |
| 387 V(Simd128Store1, Operator::kNoProperties, 3, 0, 1) \ |
| 388 V(Simd128Store2, Operator::kNoProperties, 3, 0, 1) \ |
| 389 V(Simd128Store3, Operator::kNoProperties, 3, 0, 1) \ |
| 390 V(Simd128And, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ |
| 391 V(Simd128Or, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ |
| 392 V(Simd128Xor, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ |
| 387 V(Simd128Not, Operator::kNoProperties, 1, 0, 1) | 393 V(Simd128Not, Operator::kNoProperties, 1, 0, 1) |
| 388 | 394 |
| 389 #define PURE_OPTIONAL_OP_LIST(V) \ | 395 #define PURE_OPTIONAL_OP_LIST(V) \ |
| 390 V(Word32Ctz, Operator::kNoProperties, 1, 0, 1) \ | 396 V(Word32Ctz, Operator::kNoProperties, 1, 0, 1) \ |
| 391 V(Word64Ctz, Operator::kNoProperties, 1, 0, 1) \ | 397 V(Word64Ctz, Operator::kNoProperties, 1, 0, 1) \ |
| 392 V(Word32ReverseBits, Operator::kNoProperties, 1, 0, 1) \ | 398 V(Word32ReverseBits, Operator::kNoProperties, 1, 0, 1) \ |
| 393 V(Word64ReverseBits, Operator::kNoProperties, 1, 0, 1) \ | 399 V(Word64ReverseBits, Operator::kNoProperties, 1, 0, 1) \ |
| 394 V(Word32ReverseBytes, Operator::kNoProperties, 1, 0, 1) \ | 400 V(Word32ReverseBytes, Operator::kNoProperties, 1, 0, 1) \ |
| 395 V(Word64ReverseBytes, Operator::kNoProperties, 1, 0, 1) \ | 401 V(Word64ReverseBytes, Operator::kNoProperties, 1, 0, 1) \ |
| 396 V(Word32Popcnt, Operator::kNoProperties, 1, 0, 1) \ | 402 V(Word32Popcnt, Operator::kNoProperties, 1, 0, 1) \ |
| (...skipping 418 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 815 } | 821 } |
| 816 ATOMIC_REPRESENTATION_LIST(STORE) | 822 ATOMIC_REPRESENTATION_LIST(STORE) |
| 817 #undef STORE | 823 #undef STORE |
| 818 UNREACHABLE(); | 824 UNREACHABLE(); |
| 819 return nullptr; | 825 return nullptr; |
| 820 } | 826 } |
| 821 | 827 |
| 822 } // namespace compiler | 828 } // namespace compiler |
| 823 } // namespace internal | 829 } // namespace internal |
| 824 } // namespace v8 | 830 } // namespace v8 |
| OLD | NEW |