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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
177 V(TruncateTaggedToWord32) \ | 177 V(TruncateTaggedToWord32) \ |
178 V(TruncateTaggedToFloat64) | 178 V(TruncateTaggedToFloat64) |
179 | 179 |
180 #define SIMPLIFIED_CHECKED_OP_LIST(V) \ | 180 #define SIMPLIFIED_CHECKED_OP_LIST(V) \ |
181 V(CheckedInt32Add) \ | 181 V(CheckedInt32Add) \ |
182 V(CheckedInt32Sub) \ | 182 V(CheckedInt32Sub) \ |
183 V(CheckedInt32Div) \ | 183 V(CheckedInt32Div) \ |
184 V(CheckedInt32Mod) \ | 184 V(CheckedInt32Mod) \ |
185 V(CheckedUint32Div) \ | 185 V(CheckedUint32Div) \ |
186 V(CheckedUint32Mod) \ | 186 V(CheckedUint32Mod) \ |
| 187 V(CheckedInt32Mul) \ |
187 V(CheckedUint32ToInt32) \ | 188 V(CheckedUint32ToInt32) \ |
188 V(CheckedFloat64ToInt32) \ | 189 V(CheckedFloat64ToInt32) \ |
189 V(CheckedTaggedToInt32) \ | 190 V(CheckedTaggedToInt32) \ |
190 V(CheckedTaggedToFloat64) | 191 V(CheckedTaggedToFloat64) |
191 | 192 |
192 #define SIMPLIFIED_COMPARE_BINOP_LIST(V) \ | 193 #define SIMPLIFIED_COMPARE_BINOP_LIST(V) \ |
193 V(NumberEqual) \ | 194 V(NumberEqual) \ |
194 V(NumberLessThan) \ | 195 V(NumberLessThan) \ |
195 V(NumberLessThanOrEqual) \ | 196 V(NumberLessThanOrEqual) \ |
196 V(ReferenceEqual) \ | 197 V(ReferenceEqual) \ |
(...skipping 519 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
716 } | 717 } |
717 }; | 718 }; |
718 | 719 |
719 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 720 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
720 | 721 |
721 } // namespace compiler | 722 } // namespace compiler |
722 } // namespace internal | 723 } // namespace internal |
723 } // namespace v8 | 724 } // namespace v8 |
724 | 725 |
725 #endif // V8_COMPILER_OPCODES_H_ | 726 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |