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 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
180 V(NumberBitwiseOr) \ | 180 V(NumberBitwiseOr) \ |
181 V(NumberBitwiseXor) \ | 181 V(NumberBitwiseXor) \ |
182 V(NumberBitwiseAnd) \ | 182 V(NumberBitwiseAnd) \ |
183 V(NumberShiftLeft) \ | 183 V(NumberShiftLeft) \ |
184 V(NumberShiftRight) \ | 184 V(NumberShiftRight) \ |
185 V(NumberShiftRightLogical) \ | 185 V(NumberShiftRightLogical) \ |
186 V(NumberToInt32) \ | 186 V(NumberToInt32) \ |
187 V(NumberToUint32) \ | 187 V(NumberToUint32) \ |
188 V(NumberIsHoleNaN) \ | 188 V(NumberIsHoleNaN) \ |
189 V(PlainPrimitiveToNumber) \ | 189 V(PlainPrimitiveToNumber) \ |
| 190 V(StringToNumber) \ |
190 V(ChangeTaggedToInt32) \ | 191 V(ChangeTaggedToInt32) \ |
191 V(ChangeTaggedToUint32) \ | 192 V(ChangeTaggedToUint32) \ |
192 V(ChangeTaggedToFloat64) \ | 193 V(ChangeTaggedToFloat64) \ |
193 V(ChangeInt32ToTagged) \ | 194 V(ChangeInt32ToTagged) \ |
194 V(ChangeUint32ToTagged) \ | 195 V(ChangeUint32ToTagged) \ |
195 V(ChangeFloat64ToTagged) \ | 196 V(ChangeFloat64ToTagged) \ |
196 V(ChangeBoolToBit) \ | 197 V(ChangeBoolToBit) \ |
197 V(ChangeBitToBool) \ | 198 V(ChangeBitToBool) \ |
198 V(Allocate) \ | 199 V(Allocate) \ |
199 V(LoadField) \ | 200 V(LoadField) \ |
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
417 } | 418 } |
418 }; | 419 }; |
419 | 420 |
420 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 421 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
421 | 422 |
422 } // namespace compiler | 423 } // namespace compiler |
423 } // namespace internal | 424 } // namespace internal |
424 } // namespace v8 | 425 } // namespace v8 |
425 | 426 |
426 #endif // V8_COMPILER_OPCODES_H_ | 427 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |