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 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
316 V(StoreField) \ | 316 V(StoreField) \ |
317 V(StoreBuffer) \ | 317 V(StoreBuffer) \ |
318 V(StoreElement) \ | 318 V(StoreElement) \ |
319 V(StoreTypedElement) \ | 319 V(StoreTypedElement) \ |
320 V(ObjectIsCallable) \ | 320 V(ObjectIsCallable) \ |
321 V(ObjectIsNumber) \ | 321 V(ObjectIsNumber) \ |
322 V(ObjectIsReceiver) \ | 322 V(ObjectIsReceiver) \ |
323 V(ObjectIsSmi) \ | 323 V(ObjectIsSmi) \ |
324 V(ObjectIsString) \ | 324 V(ObjectIsString) \ |
325 V(ObjectIsUndetectable) \ | 325 V(ObjectIsUndetectable) \ |
| 326 V(NewRestParameterElements) \ |
| 327 V(NewUnmappedArgumentsElements) \ |
326 V(ArrayBufferWasNeutered) \ | 328 V(ArrayBufferWasNeutered) \ |
327 V(EnsureWritableFastElements) \ | 329 V(EnsureWritableFastElements) \ |
328 V(MaybeGrowFastElements) \ | 330 V(MaybeGrowFastElements) \ |
329 V(TransitionElementsKind) | 331 V(TransitionElementsKind) |
330 | 332 |
331 #define SIMPLIFIED_OP_LIST(V) \ | 333 #define SIMPLIFIED_OP_LIST(V) \ |
332 SIMPLIFIED_CHANGE_OP_LIST(V) \ | 334 SIMPLIFIED_CHANGE_OP_LIST(V) \ |
333 SIMPLIFIED_CHECKED_OP_LIST(V) \ | 335 SIMPLIFIED_CHECKED_OP_LIST(V) \ |
334 SIMPLIFIED_COMPARE_BINOP_LIST(V) \ | 336 SIMPLIFIED_COMPARE_BINOP_LIST(V) \ |
335 SIMPLIFIED_NUMBER_BINOP_LIST(V) \ | 337 SIMPLIFIED_NUMBER_BINOP_LIST(V) \ |
(...skipping 458 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
794 } | 796 } |
795 }; | 797 }; |
796 | 798 |
797 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 799 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
798 | 800 |
799 } // namespace compiler | 801 } // namespace compiler |
800 } // namespace internal | 802 } // namespace internal |
801 } // namespace v8 | 803 } // namespace v8 |
802 | 804 |
803 #endif // V8_COMPILER_OPCODES_H_ | 805 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |