| 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 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 V(ChangeTaggedToInt32) \ | 171 V(ChangeTaggedToInt32) \ |
| 172 V(ChangeTaggedToUint32) \ | 172 V(ChangeTaggedToUint32) \ |
| 173 V(ChangeTaggedToFloat64) \ | 173 V(ChangeTaggedToFloat64) \ |
| 174 V(ChangeInt31ToTaggedSigned) \ | 174 V(ChangeInt31ToTaggedSigned) \ |
| 175 V(ChangeInt32ToTagged) \ | 175 V(ChangeInt32ToTagged) \ |
| 176 V(ChangeUint32ToTagged) \ | 176 V(ChangeUint32ToTagged) \ |
| 177 V(ChangeFloat64ToTagged) \ | 177 V(ChangeFloat64ToTagged) \ |
| 178 V(ChangeTaggedToBit) \ | 178 V(ChangeTaggedToBit) \ |
| 179 V(ChangeBitToTagged) \ | 179 V(ChangeBitToTagged) \ |
| 180 V(TruncateTaggedToWord32) \ | 180 V(TruncateTaggedToWord32) \ |
| 181 V(TruncateTaggedToFloat64) \ | 181 V(TruncateTaggedToFloat64) |
| 182 V(TruncateTaggedToBit) | |
| 183 | 182 |
| 184 #define SIMPLIFIED_CHECKED_OP_LIST(V) \ | 183 #define SIMPLIFIED_CHECKED_OP_LIST(V) \ |
| 185 V(CheckedInt32Add) \ | 184 V(CheckedInt32Add) \ |
| 186 V(CheckedInt32Sub) \ | 185 V(CheckedInt32Sub) \ |
| 187 V(CheckedInt32Div) \ | 186 V(CheckedInt32Div) \ |
| 188 V(CheckedInt32Mod) \ | 187 V(CheckedInt32Mod) \ |
| 189 V(CheckedUint32Div) \ | 188 V(CheckedUint32Div) \ |
| 190 V(CheckedUint32Mod) \ | 189 V(CheckedUint32Mod) \ |
| 191 V(CheckedInt32Mul) \ | 190 V(CheckedInt32Mul) \ |
| 192 V(CheckedUint32ToInt32) \ | 191 V(CheckedUint32ToInt32) \ |
| (...skipping 530 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 723 } | 722 } |
| 724 }; | 723 }; |
| 725 | 724 |
| 726 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 725 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 727 | 726 |
| 728 } // namespace compiler | 727 } // namespace compiler |
| 729 } // namespace internal | 728 } // namespace internal |
| 730 } // namespace v8 | 729 } // namespace v8 |
| 731 | 730 |
| 732 #endif // V8_COMPILER_OPCODES_H_ | 731 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |