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 // Opcodes for control operators. | 8 // Opcodes for control operators. |
9 #define INNER_CONTROL_OP_LIST(V) \ | 9 #define INNER_CONTROL_OP_LIST(V) \ |
10 V(Dead) \ | 10 V(Dead) \ |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 V(JSInstanceOf) | 107 V(JSInstanceOf) |
108 | 108 |
109 #define JS_CONTEXT_OP_LIST(V) \ | 109 #define JS_CONTEXT_OP_LIST(V) \ |
110 V(JSLoadContext) \ | 110 V(JSLoadContext) \ |
111 V(JSStoreContext) \ | 111 V(JSStoreContext) \ |
112 V(JSCreateFunctionContext) \ | 112 V(JSCreateFunctionContext) \ |
113 V(JSCreateCatchContext) \ | 113 V(JSCreateCatchContext) \ |
114 V(JSCreateWithContext) \ | 114 V(JSCreateWithContext) \ |
115 V(JSCreateBlockContext) \ | 115 V(JSCreateBlockContext) \ |
116 V(JSCreateModuleContext) \ | 116 V(JSCreateModuleContext) \ |
117 V(JSCreateGlobalContext) | 117 V(JSCreateScriptContext) |
118 | 118 |
119 #define JS_OTHER_OP_LIST(V) \ | 119 #define JS_OTHER_OP_LIST(V) \ |
120 V(JSCallConstruct) \ | 120 V(JSCallConstruct) \ |
121 V(JSCallFunction) \ | 121 V(JSCallFunction) \ |
122 V(JSCallRuntime) \ | 122 V(JSCallRuntime) \ |
123 V(JSYield) \ | 123 V(JSYield) \ |
124 V(JSDebugger) | 124 V(JSDebugger) |
125 | 125 |
126 #define JS_OP_LIST(V) \ | 126 #define JS_OP_LIST(V) \ |
127 JS_SIMPLE_BINOP_LIST(V) \ | 127 JS_SIMPLE_BINOP_LIST(V) \ |
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
329 return false; | 329 return false; |
330 } | 330 } |
331 } | 331 } |
332 }; | 332 }; |
333 | 333 |
334 } // namespace compiler | 334 } // namespace compiler |
335 } // namespace internal | 335 } // namespace internal |
336 } // namespace v8 | 336 } // namespace v8 |
337 | 337 |
338 #endif // V8_COMPILER_OPCODES_H_ | 338 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |