| 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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 V(JSLoadProperty) \ | 139 V(JSLoadProperty) \ |
| 140 V(JSLoadNamed) \ | 140 V(JSLoadNamed) \ |
| 141 V(JSLoadGlobal) \ | 141 V(JSLoadGlobal) \ |
| 142 V(JSStoreProperty) \ | 142 V(JSStoreProperty) \ |
| 143 V(JSStoreNamed) \ | 143 V(JSStoreNamed) \ |
| 144 V(JSStoreNamedOwn) \ | 144 V(JSStoreNamedOwn) \ |
| 145 V(JSStoreGlobal) \ | 145 V(JSStoreGlobal) \ |
| 146 V(JSStoreDataPropertyInLiteral) \ | 146 V(JSStoreDataPropertyInLiteral) \ |
| 147 V(JSDeleteProperty) \ | 147 V(JSDeleteProperty) \ |
| 148 V(JSHasProperty) \ | 148 V(JSHasProperty) \ |
| 149 V(JSCreateGeneratorObject) \ |
| 149 V(JSGetSuperConstructor) | 150 V(JSGetSuperConstructor) |
| 150 | 151 |
| 151 #define JS_CONTEXT_OP_LIST(V) \ | 152 #define JS_CONTEXT_OP_LIST(V) \ |
| 152 V(JSLoadContext) \ | 153 V(JSLoadContext) \ |
| 153 V(JSStoreContext) \ | 154 V(JSStoreContext) \ |
| 154 V(JSCreateFunctionContext) \ | 155 V(JSCreateFunctionContext) \ |
| 155 V(JSCreateCatchContext) \ | 156 V(JSCreateCatchContext) \ |
| 156 V(JSCreateWithContext) \ | 157 V(JSCreateWithContext) \ |
| 157 V(JSCreateBlockContext) \ | 158 V(JSCreateBlockContext) \ |
| 158 V(JSCreateScriptContext) | 159 V(JSCreateScriptContext) |
| (...skipping 649 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 808 } | 809 } |
| 809 }; | 810 }; |
| 810 | 811 |
| 811 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 812 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 812 | 813 |
| 813 } // namespace compiler | 814 } // namespace compiler |
| 814 } // namespace internal | 815 } // namespace internal |
| 815 } // namespace v8 | 816 } // namespace v8 |
| 816 | 817 |
| 817 #endif // V8_COMPILER_OPCODES_H_ | 818 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |