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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 V(JSCreateWithContext) \ | 125 V(JSCreateWithContext) \ |
126 V(JSCreateBlockContext) \ | 126 V(JSCreateBlockContext) \ |
127 V(JSCreateModuleContext) \ | 127 V(JSCreateModuleContext) \ |
128 V(JSCreateScriptContext) | 128 V(JSCreateScriptContext) |
129 | 129 |
130 #define JS_OTHER_OP_LIST(V) \ | 130 #define JS_OTHER_OP_LIST(V) \ |
131 V(JSCallConstruct) \ | 131 V(JSCallConstruct) \ |
132 V(JSCallFunction) \ | 132 V(JSCallFunction) \ |
133 V(JSCallRuntime) \ | 133 V(JSCallRuntime) \ |
134 V(JSYield) \ | 134 V(JSYield) \ |
135 V(JSDebugger) \ | |
136 V(JSStackCheck) | 135 V(JSStackCheck) |
137 | 136 |
138 #define JS_OP_LIST(V) \ | 137 #define JS_OP_LIST(V) \ |
139 JS_SIMPLE_BINOP_LIST(V) \ | 138 JS_SIMPLE_BINOP_LIST(V) \ |
140 JS_SIMPLE_UNOP_LIST(V) \ | 139 JS_SIMPLE_UNOP_LIST(V) \ |
141 JS_OBJECT_OP_LIST(V) \ | 140 JS_OBJECT_OP_LIST(V) \ |
142 JS_CONTEXT_OP_LIST(V) \ | 141 JS_CONTEXT_OP_LIST(V) \ |
143 JS_OTHER_OP_LIST(V) | 142 JS_OTHER_OP_LIST(V) |
144 | 143 |
145 // Opcodes for VirtuaMachine-level operators. | 144 // Opcodes for VirtuaMachine-level operators. |
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
333 (kNumberEqual <= value && value <= kStringLessThanOrEqual) || | 332 (kNumberEqual <= value && value <= kStringLessThanOrEqual) || |
334 (kWord32Equal <= value && value <= kFloat64LessThanOrEqual); | 333 (kWord32Equal <= value && value <= kFloat64LessThanOrEqual); |
335 } | 334 } |
336 }; | 335 }; |
337 | 336 |
338 } // namespace compiler | 337 } // namespace compiler |
339 } // namespace internal | 338 } // namespace internal |
340 } // namespace v8 | 339 } // namespace v8 |
341 | 340 |
342 #endif // V8_COMPILER_OPCODES_H_ | 341 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |