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 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
274 V(LoadBuffer) \ | 274 V(LoadBuffer) \ |
275 V(LoadElement) \ | 275 V(LoadElement) \ |
276 V(StoreField) \ | 276 V(StoreField) \ |
277 V(StoreBuffer) \ | 277 V(StoreBuffer) \ |
278 V(StoreElement) \ | 278 V(StoreElement) \ |
279 V(ObjectIsCallable) \ | 279 V(ObjectIsCallable) \ |
280 V(ObjectIsNumber) \ | 280 V(ObjectIsNumber) \ |
281 V(ObjectIsReceiver) \ | 281 V(ObjectIsReceiver) \ |
282 V(ObjectIsSmi) \ | 282 V(ObjectIsSmi) \ |
283 V(ObjectIsString) \ | 283 V(ObjectIsString) \ |
284 V(ObjectIsUndetectable) | 284 V(ObjectIsUndetectable) \ |
| 285 V(TransitionElementsKind) |
285 | 286 |
286 #define SIMPLIFIED_OP_LIST(V) \ | 287 #define SIMPLIFIED_OP_LIST(V) \ |
287 SIMPLIFIED_CHANGE_OP_LIST(V) \ | 288 SIMPLIFIED_CHANGE_OP_LIST(V) \ |
288 SIMPLIFIED_CHECKED_OP_LIST(V) \ | 289 SIMPLIFIED_CHECKED_OP_LIST(V) \ |
289 SIMPLIFIED_COMPARE_BINOP_LIST(V) \ | 290 SIMPLIFIED_COMPARE_BINOP_LIST(V) \ |
290 SIMPLIFIED_OTHER_OP_LIST(V) | 291 SIMPLIFIED_OTHER_OP_LIST(V) |
291 | 292 |
292 // Opcodes for Machine-level operators. | 293 // Opcodes for Machine-level operators. |
293 #define MACHINE_COMPARE_BINOP_LIST(V) \ | 294 #define MACHINE_COMPARE_BINOP_LIST(V) \ |
294 V(Word32Equal) \ | 295 V(Word32Equal) \ |
(...skipping 426 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
721 } | 722 } |
722 }; | 723 }; |
723 | 724 |
724 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 725 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
725 | 726 |
726 } // namespace compiler | 727 } // namespace compiler |
727 } // namespace internal | 728 } // namespace internal |
728 } // namespace v8 | 729 } // namespace v8 |
729 | 730 |
730 #endif // V8_COMPILER_OPCODES_H_ | 731 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |