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 // Opcodes for control operators. | 10 // Opcodes for control operators. |
(...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
299 V(StoreBuffer) \ | 299 V(StoreBuffer) \ |
300 V(StoreElement) \ | 300 V(StoreElement) \ |
301 V(StoreTypedElement) \ | 301 V(StoreTypedElement) \ |
302 V(ObjectIsCallable) \ | 302 V(ObjectIsCallable) \ |
303 V(ObjectIsNumber) \ | 303 V(ObjectIsNumber) \ |
304 V(ObjectIsReceiver) \ | 304 V(ObjectIsReceiver) \ |
305 V(ObjectIsSmi) \ | 305 V(ObjectIsSmi) \ |
306 V(ObjectIsString) \ | 306 V(ObjectIsString) \ |
307 V(ObjectIsUndetectable) \ | 307 V(ObjectIsUndetectable) \ |
308 V(EnsureWritableFastElements) \ | 308 V(EnsureWritableFastElements) \ |
| 309 V(MaybeGrowFastElements) \ |
309 V(TransitionElementsKind) | 310 V(TransitionElementsKind) |
310 | 311 |
311 #define SIMPLIFIED_OP_LIST(V) \ | 312 #define SIMPLIFIED_OP_LIST(V) \ |
312 SIMPLIFIED_CHANGE_OP_LIST(V) \ | 313 SIMPLIFIED_CHANGE_OP_LIST(V) \ |
313 SIMPLIFIED_CHECKED_OP_LIST(V) \ | 314 SIMPLIFIED_CHECKED_OP_LIST(V) \ |
314 SIMPLIFIED_COMPARE_BINOP_LIST(V) \ | 315 SIMPLIFIED_COMPARE_BINOP_LIST(V) \ |
315 SIMPLIFIED_NUMBER_BINOP_LIST(V) \ | 316 SIMPLIFIED_NUMBER_BINOP_LIST(V) \ |
316 SIMPLIFIED_SPECULATIVE_NUMBER_BINOP_LIST(V) \ | 317 SIMPLIFIED_SPECULATIVE_NUMBER_BINOP_LIST(V) \ |
317 SIMPLIFIED_NUMBER_UNOP_LIST(V) \ | 318 SIMPLIFIED_NUMBER_UNOP_LIST(V) \ |
318 SIMPLIFIED_OTHER_OP_LIST(V) | 319 SIMPLIFIED_OTHER_OP_LIST(V) |
(...skipping 439 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
758 } | 759 } |
759 }; | 760 }; |
760 | 761 |
761 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 762 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
762 | 763 |
763 } // namespace compiler | 764 } // namespace compiler |
764 } // namespace internal | 765 } // namespace internal |
765 } // namespace v8 | 766 } // namespace v8 |
766 | 767 |
767 #endif // V8_COMPILER_OPCODES_H_ | 768 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |