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 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
189 V(NumberShiftRightLogical) \ | 189 V(NumberShiftRightLogical) \ |
190 V(NumberClz32) \ | 190 V(NumberClz32) \ |
191 V(NumberCeil) \ | 191 V(NumberCeil) \ |
192 V(NumberFloor) \ | 192 V(NumberFloor) \ |
193 V(NumberRound) \ | 193 V(NumberRound) \ |
194 V(NumberTrunc) \ | 194 V(NumberTrunc) \ |
195 V(NumberToInt32) \ | 195 V(NumberToInt32) \ |
196 V(NumberToUint32) \ | 196 V(NumberToUint32) \ |
197 V(NumberIsHoleNaN) \ | 197 V(NumberIsHoleNaN) \ |
198 V(StringToNumber) \ | 198 V(StringToNumber) \ |
| 199 V(ChangeTaggedSignedToWord32) \ |
199 V(ChangeTaggedToInt32) \ | 200 V(ChangeTaggedToInt32) \ |
200 V(ChangeTaggedToUint32) \ | 201 V(ChangeTaggedToUint32) \ |
201 V(ChangeTaggedToFloat64) \ | 202 V(ChangeTaggedToFloat64) \ |
202 V(ChangeInt32ToTagged) \ | 203 V(ChangeInt32ToTagged) \ |
203 V(ChangeUint32ToTagged) \ | 204 V(ChangeUint32ToTagged) \ |
204 V(ChangeFloat64ToTagged) \ | 205 V(ChangeFloat64ToTagged) \ |
205 V(ChangeBoolToBit) \ | 206 V(ChangeBoolToBit) \ |
206 V(ChangeBitToBool) \ | 207 V(ChangeBitToBool) \ |
207 V(Allocate) \ | 208 V(Allocate) \ |
208 V(LoadField) \ | 209 V(LoadField) \ |
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
431 } | 432 } |
432 }; | 433 }; |
433 | 434 |
434 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 435 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
435 | 436 |
436 } // namespace compiler | 437 } // namespace compiler |
437 } // namespace internal | 438 } // namespace internal |
438 } // namespace v8 | 439 } // namespace v8 |
439 | 440 |
440 #endif // V8_COMPILER_OPCODES_H_ | 441 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |