OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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 #ifndef V8_COMPILER_OPCODES_H_ | 5 #ifndef V8_COMPILER_OPCODES_H_ |
6 #define V8_COMPILER_OPCODES_H_ | 6 #define V8_COMPILER_OPCODES_H_ |
7 | 7 |
8 #include <iosfwd> | 8 #include <iosfwd> |
9 | 9 |
10 // Opcodes for control operators. | 10 // Opcodes for control operators. |
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
176 V(NumberSubtract) \ | 176 V(NumberSubtract) \ |
177 V(NumberMultiply) \ | 177 V(NumberMultiply) \ |
178 V(NumberDivide) \ | 178 V(NumberDivide) \ |
179 V(NumberModulus) \ | 179 V(NumberModulus) \ |
180 V(NumberBitwiseOr) \ | 180 V(NumberBitwiseOr) \ |
181 V(NumberBitwiseXor) \ | 181 V(NumberBitwiseXor) \ |
182 V(NumberBitwiseAnd) \ | 182 V(NumberBitwiseAnd) \ |
183 V(NumberShiftLeft) \ | 183 V(NumberShiftLeft) \ |
184 V(NumberShiftRight) \ | 184 V(NumberShiftRight) \ |
185 V(NumberShiftRightLogical) \ | 185 V(NumberShiftRightLogical) \ |
| 186 V(NumberFloor) \ |
186 V(NumberToInt32) \ | 187 V(NumberToInt32) \ |
187 V(NumberToUint32) \ | 188 V(NumberToUint32) \ |
188 V(NumberIsHoleNaN) \ | 189 V(NumberIsHoleNaN) \ |
189 V(PlainPrimitiveToNumber) \ | 190 V(PlainPrimitiveToNumber) \ |
190 V(StringToNumber) \ | 191 V(StringToNumber) \ |
191 V(ChangeTaggedToInt32) \ | 192 V(ChangeTaggedToInt32) \ |
192 V(ChangeTaggedToUint32) \ | 193 V(ChangeTaggedToUint32) \ |
193 V(ChangeTaggedToFloat64) \ | 194 V(ChangeTaggedToFloat64) \ |
194 V(ChangeInt32ToTagged) \ | 195 V(ChangeInt32ToTagged) \ |
195 V(ChangeUint32ToTagged) \ | 196 V(ChangeUint32ToTagged) \ |
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
418 } | 419 } |
419 }; | 420 }; |
420 | 421 |
421 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 422 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
422 | 423 |
423 } // namespace compiler | 424 } // namespace compiler |
424 } // namespace internal | 425 } // namespace internal |
425 } // namespace v8 | 426 } // namespace v8 |
426 | 427 |
427 #endif // V8_COMPILER_OPCODES_H_ | 428 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |