| 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 #include "src/globals.h" | 10 #include "src/globals.h" |
| (...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 292 V(NumberToInt32) \ | 292 V(NumberToInt32) \ |
| 293 V(NumberToUint32) \ | 293 V(NumberToUint32) \ |
| 294 V(NumberToUint8Clamped) \ | 294 V(NumberToUint8Clamped) \ |
| 295 V(NumberSilenceNaN) | 295 V(NumberSilenceNaN) |
| 296 | 296 |
| 297 #define SIMPLIFIED_OTHER_OP_LIST(V) \ | 297 #define SIMPLIFIED_OTHER_OP_LIST(V) \ |
| 298 V(PlainPrimitiveToNumber) \ | 298 V(PlainPrimitiveToNumber) \ |
| 299 V(PlainPrimitiveToWord32) \ | 299 V(PlainPrimitiveToWord32) \ |
| 300 V(PlainPrimitiveToFloat64) \ | 300 V(PlainPrimitiveToFloat64) \ |
| 301 V(BooleanNot) \ | 301 V(BooleanNot) \ |
| 302 V(StringCharAt) \ |
| 302 V(StringCharCodeAt) \ | 303 V(StringCharCodeAt) \ |
| 303 V(StringFromCharCode) \ | 304 V(StringFromCharCode) \ |
| 304 V(StringFromCodePoint) \ | 305 V(StringFromCodePoint) \ |
| 305 V(CheckBounds) \ | 306 V(CheckBounds) \ |
| 306 V(CheckIf) \ | 307 V(CheckIf) \ |
| 307 V(CheckMaps) \ | 308 V(CheckMaps) \ |
| 308 V(CheckNumber) \ | 309 V(CheckNumber) \ |
| 309 V(CheckString) \ | 310 V(CheckString) \ |
| 310 V(CheckSmi) \ | 311 V(CheckSmi) \ |
| 311 V(CheckHeapObject) \ | 312 V(CheckHeapObject) \ |
| (...skipping 488 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 800 } | 801 } |
| 801 }; | 802 }; |
| 802 | 803 |
| 803 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 804 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 804 | 805 |
| 805 } // namespace compiler | 806 } // namespace compiler |
| 806 } // namespace internal | 807 } // namespace internal |
| 807 } // namespace v8 | 808 } // namespace v8 |
| 808 | 809 |
| 809 #endif // V8_COMPILER_OPCODES_H_ | 810 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |