| 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 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 213 V(ChangeTaggedSignedToInt32) \ | 213 V(ChangeTaggedSignedToInt32) \ |
| 214 V(ChangeTaggedToInt32) \ | 214 V(ChangeTaggedToInt32) \ |
| 215 V(ChangeTaggedToUint32) \ | 215 V(ChangeTaggedToUint32) \ |
| 216 V(ChangeTaggedToFloat64) \ | 216 V(ChangeTaggedToFloat64) \ |
| 217 V(ChangeInt31ToTaggedSigned) \ | 217 V(ChangeInt31ToTaggedSigned) \ |
| 218 V(ChangeInt32ToTagged) \ | 218 V(ChangeInt32ToTagged) \ |
| 219 V(ChangeUint32ToTagged) \ | 219 V(ChangeUint32ToTagged) \ |
| 220 V(ChangeFloat64ToTagged) \ | 220 V(ChangeFloat64ToTagged) \ |
| 221 V(ChangeTaggedToBit) \ | 221 V(ChangeTaggedToBit) \ |
| 222 V(ChangeBitToTagged) \ | 222 V(ChangeBitToTagged) \ |
| 223 V(CheckBounds) \ |
| 223 V(CheckedUint32ToInt32) \ | 224 V(CheckedUint32ToInt32) \ |
| 224 V(CheckedFloat64ToInt32) \ | 225 V(CheckedFloat64ToInt32) \ |
| 225 V(CheckedTaggedToInt32) \ | 226 V(CheckedTaggedToInt32) \ |
| 226 V(CheckedTaggedToFloat64) \ | 227 V(CheckedTaggedToFloat64) \ |
| 227 V(CheckFloat64Hole) \ | 228 V(CheckFloat64Hole) \ |
| 228 V(CheckTaggedHole) \ | 229 V(CheckTaggedHole) \ |
| 229 V(CheckIf) \ | 230 V(CheckIf) \ |
| 230 V(TruncateTaggedToWord32) \ | 231 V(TruncateTaggedToWord32) \ |
| 231 V(TruncateTaggedToFloat64) \ | 232 V(TruncateTaggedToFloat64) \ |
| 232 V(Allocate) \ | 233 V(Allocate) \ |
| (...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 658 } | 659 } |
| 659 }; | 660 }; |
| 660 | 661 |
| 661 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 662 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 662 | 663 |
| 663 } // namespace compiler | 664 } // namespace compiler |
| 664 } // namespace internal | 665 } // namespace internal |
| 665 } // namespace v8 | 666 } // namespace v8 |
| 666 | 667 |
| 667 #endif // V8_COMPILER_OPCODES_H_ | 668 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |