| 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 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 | 151 |
| 152 #define JS_OTHER_OP_LIST(V) \ | 152 #define JS_OTHER_OP_LIST(V) \ |
| 153 V(JSCallConstruct) \ | 153 V(JSCallConstruct) \ |
| 154 V(JSCallFunction) \ | 154 V(JSCallFunction) \ |
| 155 V(JSCallRuntime) \ | 155 V(JSCallRuntime) \ |
| 156 V(JSConvertReceiver) \ | 156 V(JSConvertReceiver) \ |
| 157 V(JSForInNext) \ | 157 V(JSForInNext) \ |
| 158 V(JSForInPrepare) \ | 158 V(JSForInPrepare) \ |
| 159 V(JSLoadMessage) \ | 159 V(JSLoadMessage) \ |
| 160 V(JSStoreMessage) \ | 160 V(JSStoreMessage) \ |
| 161 V(JSLoadModule) \ |
| 162 V(JSStoreModule) \ |
| 161 V(JSGeneratorStore) \ | 163 V(JSGeneratorStore) \ |
| 162 V(JSGeneratorRestoreContinuation) \ | 164 V(JSGeneratorRestoreContinuation) \ |
| 163 V(JSGeneratorRestoreRegister) \ | 165 V(JSGeneratorRestoreRegister) \ |
| 164 V(JSStackCheck) | 166 V(JSStackCheck) |
| 165 | 167 |
| 166 #define JS_OP_LIST(V) \ | 168 #define JS_OP_LIST(V) \ |
| 167 JS_SIMPLE_BINOP_LIST(V) \ | 169 JS_SIMPLE_BINOP_LIST(V) \ |
| 168 JS_SIMPLE_UNOP_LIST(V) \ | 170 JS_SIMPLE_UNOP_LIST(V) \ |
| 169 JS_OBJECT_OP_LIST(V) \ | 171 JS_OBJECT_OP_LIST(V) \ |
| 170 JS_CONTEXT_OP_LIST(V) \ | 172 JS_CONTEXT_OP_LIST(V) \ |
| (...skipping 618 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 789 } | 791 } |
| 790 }; | 792 }; |
| 791 | 793 |
| 792 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 794 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 793 | 795 |
| 794 } // namespace compiler | 796 } // namespace compiler |
| 795 } // namespace internal | 797 } // namespace internal |
| 796 } // namespace v8 | 798 } // namespace v8 |
| 797 | 799 |
| 798 #endif // V8_COMPILER_OPCODES_H_ | 800 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |