| 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 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 301 V(BooleanNot) \ | 301 V(BooleanNot) \ |
| 302 V(StringCharAt) \ | 302 V(StringCharAt) \ |
| 303 V(StringCharCodeAt) \ | 303 V(StringCharCodeAt) \ |
| 304 V(StringFromCharCode) \ | 304 V(StringFromCharCode) \ |
| 305 V(StringFromCodePoint) \ | 305 V(StringFromCodePoint) \ |
| 306 V(CheckBounds) \ | 306 V(CheckBounds) \ |
| 307 V(CheckIf) \ | 307 V(CheckIf) \ |
| 308 V(CheckMaps) \ | 308 V(CheckMaps) \ |
| 309 V(CheckNumber) \ | 309 V(CheckNumber) \ |
| 310 V(CheckInternalizedString) \ | 310 V(CheckInternalizedString) \ |
| 311 V(CheckReceiver) \ |
| 311 V(CheckString) \ | 312 V(CheckString) \ |
| 312 V(CheckSmi) \ | 313 V(CheckSmi) \ |
| 313 V(CheckHeapObject) \ | 314 V(CheckHeapObject) \ |
| 314 V(CheckFloat64Hole) \ | 315 V(CheckFloat64Hole) \ |
| 315 V(CheckTaggedHole) \ | 316 V(CheckTaggedHole) \ |
| 316 V(ConvertTaggedHoleToUndefined) \ | 317 V(ConvertTaggedHoleToUndefined) \ |
| 317 V(Allocate) \ | 318 V(Allocate) \ |
| 318 V(LoadField) \ | 319 V(LoadField) \ |
| 319 V(LoadBuffer) \ | 320 V(LoadBuffer) \ |
| 320 V(LoadElement) \ | 321 V(LoadElement) \ |
| (...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 806 } | 807 } |
| 807 }; | 808 }; |
| 808 | 809 |
| 809 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 810 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 810 | 811 |
| 811 } // namespace compiler | 812 } // namespace compiler |
| 812 } // namespace internal | 813 } // namespace internal |
| 813 } // namespace v8 | 814 } // namespace v8 |
| 814 | 815 |
| 815 #endif // V8_COMPILER_OPCODES_H_ | 816 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |