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 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
135 V(JSCreateLiteralObject) \ | 135 V(JSCreateLiteralObject) \ |
136 V(JSCreateLiteralRegExp) \ | 136 V(JSCreateLiteralRegExp) \ |
137 V(JSLoadProperty) \ | 137 V(JSLoadProperty) \ |
138 V(JSLoadNamed) \ | 138 V(JSLoadNamed) \ |
139 V(JSLoadGlobal) \ | 139 V(JSLoadGlobal) \ |
140 V(JSStoreProperty) \ | 140 V(JSStoreProperty) \ |
141 V(JSStoreNamed) \ | 141 V(JSStoreNamed) \ |
142 V(JSStoreGlobal) \ | 142 V(JSStoreGlobal) \ |
143 V(JSStoreDataPropertyInLiteral) \ | 143 V(JSStoreDataPropertyInLiteral) \ |
144 V(JSDeleteProperty) \ | 144 V(JSDeleteProperty) \ |
145 V(JSHasProperty) | 145 V(JSHasProperty) \ |
| 146 V(JSGetSuperConstructor) |
146 | 147 |
147 #define JS_CONTEXT_OP_LIST(V) \ | 148 #define JS_CONTEXT_OP_LIST(V) \ |
148 V(JSLoadContext) \ | 149 V(JSLoadContext) \ |
149 V(JSStoreContext) \ | 150 V(JSStoreContext) \ |
150 V(JSCreateFunctionContext) \ | 151 V(JSCreateFunctionContext) \ |
151 V(JSCreateCatchContext) \ | 152 V(JSCreateCatchContext) \ |
152 V(JSCreateWithContext) \ | 153 V(JSCreateWithContext) \ |
153 V(JSCreateBlockContext) \ | 154 V(JSCreateBlockContext) \ |
154 V(JSCreateScriptContext) | 155 V(JSCreateScriptContext) |
155 | 156 |
(...skipping 638 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
794 } | 795 } |
795 }; | 796 }; |
796 | 797 |
797 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 798 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
798 | 799 |
799 } // namespace compiler | 800 } // namespace compiler |
800 } // namespace internal | 801 } // namespace internal |
801 } // namespace v8 | 802 } // namespace v8 |
802 | 803 |
803 #endif // V8_COMPILER_OPCODES_H_ | 804 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |