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 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
314 V(StringFromCharCode) \ | 314 V(StringFromCharCode) \ |
315 V(StringFromCodePoint) \ | 315 V(StringFromCodePoint) \ |
316 V(StringIndexOf) \ | 316 V(StringIndexOf) \ |
317 V(CheckBounds) \ | 317 V(CheckBounds) \ |
318 V(CheckIf) \ | 318 V(CheckIf) \ |
319 V(CheckMaps) \ | 319 V(CheckMaps) \ |
320 V(CheckNumber) \ | 320 V(CheckNumber) \ |
321 V(CheckInternalizedString) \ | 321 V(CheckInternalizedString) \ |
322 V(CheckReceiver) \ | 322 V(CheckReceiver) \ |
323 V(CheckString) \ | 323 V(CheckString) \ |
| 324 V(CheckSymbol) \ |
324 V(CheckSmi) \ | 325 V(CheckSmi) \ |
325 V(CheckHeapObject) \ | 326 V(CheckHeapObject) \ |
326 V(CheckFloat64Hole) \ | 327 V(CheckFloat64Hole) \ |
327 V(CheckTaggedHole) \ | 328 V(CheckTaggedHole) \ |
328 V(ConvertTaggedHoleToUndefined) \ | 329 V(ConvertTaggedHoleToUndefined) \ |
329 V(Allocate) \ | 330 V(Allocate) \ |
330 V(LoadField) \ | 331 V(LoadField) \ |
331 V(LoadBuffer) \ | 332 V(LoadBuffer) \ |
332 V(LoadElement) \ | 333 V(LoadElement) \ |
333 V(LoadTypedElement) \ | 334 V(LoadTypedElement) \ |
(...skipping 476 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
810 } | 811 } |
811 }; | 812 }; |
812 | 813 |
813 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 814 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
814 | 815 |
815 } // namespace compiler | 816 } // namespace compiler |
816 } // namespace internal | 817 } // namespace internal |
817 } // namespace v8 | 818 } // namespace v8 |
818 | 819 |
819 #endif // V8_COMPILER_OPCODES_H_ | 820 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |