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 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
176 V(NumberDivide) \ | 176 V(NumberDivide) \ |
177 V(NumberModulus) \ | 177 V(NumberModulus) \ |
178 V(NumberBitwiseOr) \ | 178 V(NumberBitwiseOr) \ |
179 V(NumberBitwiseXor) \ | 179 V(NumberBitwiseXor) \ |
180 V(NumberBitwiseAnd) \ | 180 V(NumberBitwiseAnd) \ |
181 V(NumberShiftLeft) \ | 181 V(NumberShiftLeft) \ |
182 V(NumberShiftRight) \ | 182 V(NumberShiftRight) \ |
183 V(NumberShiftRightLogical) \ | 183 V(NumberShiftRightLogical) \ |
184 V(NumberToInt32) \ | 184 V(NumberToInt32) \ |
185 V(NumberToUint32) \ | 185 V(NumberToUint32) \ |
| 186 V(NumberIsHoleNaN) \ |
186 V(PlainPrimitiveToNumber) \ | 187 V(PlainPrimitiveToNumber) \ |
187 V(ChangeTaggedToInt32) \ | 188 V(ChangeTaggedToInt32) \ |
188 V(ChangeTaggedToUint32) \ | 189 V(ChangeTaggedToUint32) \ |
189 V(ChangeTaggedToFloat64) \ | 190 V(ChangeTaggedToFloat64) \ |
190 V(ChangeInt32ToTagged) \ | 191 V(ChangeInt32ToTagged) \ |
191 V(ChangeUint32ToTagged) \ | 192 V(ChangeUint32ToTagged) \ |
192 V(ChangeFloat64ToTagged) \ | 193 V(ChangeFloat64ToTagged) \ |
193 V(ChangeBoolToBit) \ | 194 V(ChangeBoolToBit) \ |
194 V(ChangeBitToBool) \ | 195 V(ChangeBitToBool) \ |
195 V(Allocate) \ | 196 V(Allocate) \ |
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
388 } | 389 } |
389 }; | 390 }; |
390 | 391 |
391 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 392 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
392 | 393 |
393 } // namespace compiler | 394 } // namespace compiler |
394 } // namespace internal | 395 } // namespace internal |
395 } // namespace v8 | 396 } // namespace v8 |
396 | 397 |
397 #endif // V8_COMPILER_OPCODES_H_ | 398 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |