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 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
172 V(ChangeTaggedToInt32) \ | 172 V(ChangeTaggedToInt32) \ |
173 V(ChangeTaggedToUint32) \ | 173 V(ChangeTaggedToUint32) \ |
174 V(ChangeTaggedToFloat64) \ | 174 V(ChangeTaggedToFloat64) \ |
175 V(ChangeInt31ToTaggedSigned) \ | 175 V(ChangeInt31ToTaggedSigned) \ |
176 V(ChangeInt32ToTagged) \ | 176 V(ChangeInt32ToTagged) \ |
177 V(ChangeUint32ToTagged) \ | 177 V(ChangeUint32ToTagged) \ |
178 V(ChangeFloat64ToTagged) \ | 178 V(ChangeFloat64ToTagged) \ |
179 V(ChangeTaggedToBit) \ | 179 V(ChangeTaggedToBit) \ |
180 V(ChangeBitToTagged) \ | 180 V(ChangeBitToTagged) \ |
181 V(TruncateTaggedToWord32) \ | 181 V(TruncateTaggedToWord32) \ |
182 V(TruncateTaggedToFloat64) | 182 V(TruncateTaggedToFloat64) \ |
| 183 V(TruncateTaggedToBit) |
183 | 184 |
184 #define SIMPLIFIED_CHECKED_OP_LIST(V) \ | 185 #define SIMPLIFIED_CHECKED_OP_LIST(V) \ |
185 V(CheckedInt32Add) \ | 186 V(CheckedInt32Add) \ |
186 V(CheckedInt32Sub) \ | 187 V(CheckedInt32Sub) \ |
187 V(CheckedInt32Div) \ | 188 V(CheckedInt32Div) \ |
188 V(CheckedInt32Mod) \ | 189 V(CheckedInt32Mod) \ |
189 V(CheckedUint32Div) \ | 190 V(CheckedUint32Div) \ |
190 V(CheckedUint32Mod) \ | 191 V(CheckedUint32Mod) \ |
191 V(CheckedInt32Mul) \ | 192 V(CheckedInt32Mul) \ |
192 V(CheckedUint32ToInt32) \ | 193 V(CheckedUint32ToInt32) \ |
(...skipping 562 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
755 } | 756 } |
756 }; | 757 }; |
757 | 758 |
758 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 759 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
759 | 760 |
760 } // namespace compiler | 761 } // namespace compiler |
761 } // namespace internal | 762 } // namespace internal |
762 } // namespace v8 | 763 } // namespace v8 |
763 | 764 |
764 #endif // V8_COMPILER_OPCODES_H_ | 765 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |