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 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
190 V(NumberShiftRightLogical) \ | 190 V(NumberShiftRightLogical) \ |
191 V(NumberImul) \ | 191 V(NumberImul) \ |
192 V(NumberClz32) \ | 192 V(NumberClz32) \ |
193 V(NumberCeil) \ | 193 V(NumberCeil) \ |
194 V(NumberFloor) \ | 194 V(NumberFloor) \ |
195 V(NumberRound) \ | 195 V(NumberRound) \ |
196 V(NumberTrunc) \ | 196 V(NumberTrunc) \ |
197 V(NumberToInt32) \ | 197 V(NumberToInt32) \ |
198 V(NumberToUint32) \ | 198 V(NumberToUint32) \ |
199 V(NumberIsHoleNaN) \ | 199 V(NumberIsHoleNaN) \ |
| 200 V(StringFromCharCode) \ |
200 V(StringToNumber) \ | 201 V(StringToNumber) \ |
201 V(ChangeTaggedSignedToInt32) \ | 202 V(ChangeTaggedSignedToInt32) \ |
202 V(ChangeTaggedToInt32) \ | 203 V(ChangeTaggedToInt32) \ |
203 V(ChangeTaggedToUint32) \ | 204 V(ChangeTaggedToUint32) \ |
204 V(ChangeTaggedToFloat64) \ | 205 V(ChangeTaggedToFloat64) \ |
205 V(ChangeInt31ToTaggedSigned) \ | 206 V(ChangeInt31ToTaggedSigned) \ |
206 V(ChangeInt32ToTagged) \ | 207 V(ChangeInt32ToTagged) \ |
207 V(ChangeUint32ToTagged) \ | 208 V(ChangeUint32ToTagged) \ |
208 V(ChangeFloat64ToTagged) \ | 209 V(ChangeFloat64ToTagged) \ |
209 V(ChangeTaggedToBit) \ | 210 V(ChangeTaggedToBit) \ |
(...skipping 423 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
633 } | 634 } |
634 }; | 635 }; |
635 | 636 |
636 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 637 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
637 | 638 |
638 } // namespace compiler | 639 } // namespace compiler |
639 } // namespace internal | 640 } // namespace internal |
640 } // namespace v8 | 641 } // namespace v8 |
641 | 642 |
642 #endif // V8_COMPILER_OPCODES_H_ | 643 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |