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 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
300 V(PlainPrimitiveToFloat64) \ | 300 V(PlainPrimitiveToFloat64) \ |
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(CheckString) \ | 311 V(CheckString) \ |
311 V(CheckSmi) \ | 312 V(CheckSmi) \ |
312 V(CheckHeapObject) \ | 313 V(CheckHeapObject) \ |
313 V(CheckFloat64Hole) \ | 314 V(CheckFloat64Hole) \ |
314 V(CheckTaggedHole) \ | 315 V(CheckTaggedHole) \ |
315 V(ConvertTaggedHoleToUndefined) \ | 316 V(ConvertTaggedHoleToUndefined) \ |
316 V(Allocate) \ | 317 V(Allocate) \ |
317 V(LoadField) \ | 318 V(LoadField) \ |
318 V(LoadBuffer) \ | 319 V(LoadBuffer) \ |
319 V(LoadElement) \ | 320 V(LoadElement) \ |
(...skipping 481 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
801 } | 802 } |
802 }; | 803 }; |
803 | 804 |
804 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 805 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
805 | 806 |
806 } // namespace compiler | 807 } // namespace compiler |
807 } // namespace internal | 808 } // namespace internal |
808 } // namespace v8 | 809 } // namespace v8 |
809 | 810 |
810 #endif // V8_COMPILER_OPCODES_H_ | 811 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |