| 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 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 V(ChangeTaggedSignedToInt32) \ | 211 V(ChangeTaggedSignedToInt32) \ |
| 212 V(ChangeTaggedToInt32) \ | 212 V(ChangeTaggedToInt32) \ |
| 213 V(ChangeTaggedToUint32) \ | 213 V(ChangeTaggedToUint32) \ |
| 214 V(ChangeTaggedToFloat64) \ | 214 V(ChangeTaggedToFloat64) \ |
| 215 V(ChangeInt31ToTaggedSigned) \ | 215 V(ChangeInt31ToTaggedSigned) \ |
| 216 V(ChangeInt32ToTagged) \ | 216 V(ChangeInt32ToTagged) \ |
| 217 V(ChangeUint32ToTagged) \ | 217 V(ChangeUint32ToTagged) \ |
| 218 V(ChangeFloat64ToTagged) \ | 218 V(ChangeFloat64ToTagged) \ |
| 219 V(ChangeTaggedToBit) \ | 219 V(ChangeTaggedToBit) \ |
| 220 V(ChangeBitToTagged) \ | 220 V(ChangeBitToTagged) \ |
| 221 V(CheckBounds) \ | |
| 222 V(CheckedUint32ToInt32) \ | 221 V(CheckedUint32ToInt32) \ |
| 223 V(CheckedFloat64ToInt32) \ | 222 V(CheckedFloat64ToInt32) \ |
| 224 V(CheckedTaggedToInt32) \ | 223 V(CheckedTaggedToInt32) \ |
| 225 V(CheckedTaggedToFloat64) \ | 224 V(CheckedTaggedToFloat64) \ |
| 226 V(CheckIf) \ | 225 V(CheckIf) \ |
| 227 V(TruncateTaggedToWord32) \ | 226 V(TruncateTaggedToWord32) \ |
| 228 V(TruncateTaggedToFloat64) \ | 227 V(TruncateTaggedToFloat64) \ |
| 229 V(Allocate) \ | 228 V(Allocate) \ |
| 230 V(LoadField) \ | 229 V(LoadField) \ |
| 231 V(LoadBuffer) \ | 230 V(LoadBuffer) \ |
| (...skipping 422 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 654 } | 653 } |
| 655 }; | 654 }; |
| 656 | 655 |
| 657 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 656 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 658 | 657 |
| 659 } // namespace compiler | 658 } // namespace compiler |
| 660 } // namespace internal | 659 } // namespace internal |
| 661 } // namespace v8 | 660 } // namespace v8 |
| 662 | 661 |
| 663 #endif // V8_COMPILER_OPCODES_H_ | 662 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |