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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 V(JSStoreProperty) \ | 121 V(JSStoreProperty) \ |
122 V(JSStoreNamed) \ | 122 V(JSStoreNamed) \ |
123 V(JSStoreGlobal) \ | 123 V(JSStoreGlobal) \ |
124 V(JSDeleteProperty) \ | 124 V(JSDeleteProperty) \ |
125 V(JSHasProperty) \ | 125 V(JSHasProperty) \ |
126 V(JSInstanceOf) | 126 V(JSInstanceOf) |
127 | 127 |
128 #define JS_CONTEXT_OP_LIST(V) \ | 128 #define JS_CONTEXT_OP_LIST(V) \ |
129 V(JSLoadContext) \ | 129 V(JSLoadContext) \ |
130 V(JSStoreContext) \ | 130 V(JSStoreContext) \ |
131 V(JSLoadDynamic) \ | |
132 V(JSCreateFunctionContext) \ | 131 V(JSCreateFunctionContext) \ |
133 V(JSCreateCatchContext) \ | 132 V(JSCreateCatchContext) \ |
134 V(JSCreateWithContext) \ | 133 V(JSCreateWithContext) \ |
135 V(JSCreateBlockContext) \ | 134 V(JSCreateBlockContext) \ |
136 V(JSCreateModuleContext) \ | 135 V(JSCreateModuleContext) \ |
137 V(JSCreateScriptContext) | 136 V(JSCreateScriptContext) |
138 | 137 |
139 #define JS_OTHER_OP_LIST(V) \ | 138 #define JS_OTHER_OP_LIST(V) \ |
140 V(JSCallConstruct) \ | 139 V(JSCallConstruct) \ |
141 V(JSCallFunction) \ | 140 V(JSCallFunction) \ |
(...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
407 } | 406 } |
408 }; | 407 }; |
409 | 408 |
410 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 409 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
411 | 410 |
412 } // namespace compiler | 411 } // namespace compiler |
413 } // namespace internal | 412 } // namespace internal |
414 } // namespace v8 | 413 } // namespace v8 |
415 | 414 |
416 #endif // V8_COMPILER_OPCODES_H_ | 415 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |