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 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
185 V(CheckedInt32Add) \ | 185 V(CheckedInt32Add) \ |
186 V(CheckedInt32Sub) \ | 186 V(CheckedInt32Sub) \ |
187 V(CheckedInt32Div) \ | 187 V(CheckedInt32Div) \ |
188 V(CheckedInt32Mod) \ | 188 V(CheckedInt32Mod) \ |
189 V(CheckedUint32Div) \ | 189 V(CheckedUint32Div) \ |
190 V(CheckedUint32Mod) \ | 190 V(CheckedUint32Mod) \ |
191 V(CheckedInt32Mul) \ | 191 V(CheckedInt32Mul) \ |
192 V(CheckedUint32ToInt32) \ | 192 V(CheckedUint32ToInt32) \ |
193 V(CheckedFloat64ToInt32) \ | 193 V(CheckedFloat64ToInt32) \ |
194 V(CheckedTaggedToInt32) \ | 194 V(CheckedTaggedToInt32) \ |
| 195 V(CheckedTruncateTaggedToWord32) \ |
195 V(CheckedTaggedToFloat64) | 196 V(CheckedTaggedToFloat64) |
196 | 197 |
197 #define SIMPLIFIED_COMPARE_BINOP_LIST(V) \ | 198 #define SIMPLIFIED_COMPARE_BINOP_LIST(V) \ |
198 V(NumberEqual) \ | 199 V(NumberEqual) \ |
199 V(NumberLessThan) \ | 200 V(NumberLessThan) \ |
200 V(NumberLessThanOrEqual) \ | 201 V(NumberLessThanOrEqual) \ |
201 V(ReferenceEqual) \ | 202 V(ReferenceEqual) \ |
202 V(StringEqual) \ | 203 V(StringEqual) \ |
203 V(StringLessThan) \ | 204 V(StringLessThan) \ |
204 V(StringLessThanOrEqual) | 205 V(StringLessThanOrEqual) |
(...skipping 527 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
732 } | 733 } |
733 }; | 734 }; |
734 | 735 |
735 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 736 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
736 | 737 |
737 } // namespace compiler | 738 } // namespace compiler |
738 } // namespace internal | 739 } // namespace internal |
739 } // namespace v8 | 740 } // namespace v8 |
740 | 741 |
741 #endif // V8_COMPILER_OPCODES_H_ | 742 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |