| 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 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 277 V(NumberToUint32) \ | 277 V(NumberToUint32) \ |
| 278 V(NumberSilenceNaN) | 278 V(NumberSilenceNaN) |
| 279 | 279 |
| 280 #define SIMPLIFIED_OTHER_OP_LIST(V) \ | 280 #define SIMPLIFIED_OTHER_OP_LIST(V) \ |
| 281 V(PlainPrimitiveToNumber) \ | 281 V(PlainPrimitiveToNumber) \ |
| 282 V(PlainPrimitiveToWord32) \ | 282 V(PlainPrimitiveToWord32) \ |
| 283 V(PlainPrimitiveToFloat64) \ | 283 V(PlainPrimitiveToFloat64) \ |
| 284 V(BooleanNot) \ | 284 V(BooleanNot) \ |
| 285 V(StringCharCodeAt) \ | 285 V(StringCharCodeAt) \ |
| 286 V(StringFromCharCode) \ | 286 V(StringFromCharCode) \ |
| 287 V(StringFromCodePoint) \ | |
| 288 V(CheckBounds) \ | 287 V(CheckBounds) \ |
| 289 V(CheckIf) \ | 288 V(CheckIf) \ |
| 290 V(CheckMaps) \ | 289 V(CheckMaps) \ |
| 291 V(CheckNumber) \ | 290 V(CheckNumber) \ |
| 292 V(CheckString) \ | 291 V(CheckString) \ |
| 293 V(CheckSmi) \ | 292 V(CheckSmi) \ |
| 294 V(CheckHeapObject) \ | 293 V(CheckHeapObject) \ |
| 295 V(CheckFloat64Hole) \ | 294 V(CheckFloat64Hole) \ |
| 296 V(CheckTaggedHole) \ | 295 V(CheckTaggedHole) \ |
| 297 V(ConvertTaggedHoleToUndefined) \ | 296 V(ConvertTaggedHoleToUndefined) \ |
| (...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 783 } | 782 } |
| 784 }; | 783 }; |
| 785 | 784 |
| 786 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 785 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 787 | 786 |
| 788 } // namespace compiler | 787 } // namespace compiler |
| 789 } // namespace internal | 788 } // namespace internal |
| 790 } // namespace v8 | 789 } // namespace v8 |
| 791 | 790 |
| 792 #endif // V8_COMPILER_OPCODES_H_ | 791 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |