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 CONTROL_OP_LIST(V) \ | 9 #define CONTROL_OP_LIST(V) \ |
10 V(Start) \ | 10 V(Start) \ |
(...skipping 88 matching lines...) Loading... |
99 #define JS_OTHER_UNOP_LIST(V) \ | 99 #define JS_OTHER_UNOP_LIST(V) \ |
100 V(JSTypeOf) | 100 V(JSTypeOf) |
101 | 101 |
102 #define JS_SIMPLE_UNOP_LIST(V) \ | 102 #define JS_SIMPLE_UNOP_LIST(V) \ |
103 JS_LOGIC_UNOP_LIST(V) \ | 103 JS_LOGIC_UNOP_LIST(V) \ |
104 JS_CONVERSION_UNOP_LIST(V) \ | 104 JS_CONVERSION_UNOP_LIST(V) \ |
105 JS_OTHER_UNOP_LIST(V) | 105 JS_OTHER_UNOP_LIST(V) |
106 | 106 |
107 #define JS_OBJECT_OP_LIST(V) \ | 107 #define JS_OBJECT_OP_LIST(V) \ |
108 V(JSCreate) \ | 108 V(JSCreate) \ |
| 109 V(JSCreateClosure) \ |
109 V(JSLoadProperty) \ | 110 V(JSLoadProperty) \ |
110 V(JSLoadNamed) \ | 111 V(JSLoadNamed) \ |
111 V(JSStoreProperty) \ | 112 V(JSStoreProperty) \ |
112 V(JSStoreNamed) \ | 113 V(JSStoreNamed) \ |
113 V(JSDeleteProperty) \ | 114 V(JSDeleteProperty) \ |
114 V(JSHasProperty) \ | 115 V(JSHasProperty) \ |
115 V(JSInstanceOf) | 116 V(JSInstanceOf) |
116 | 117 |
117 #define JS_CONTEXT_OP_LIST(V) \ | 118 #define JS_CONTEXT_OP_LIST(V) \ |
118 V(JSLoadContext) \ | 119 V(JSLoadContext) \ |
(...skipping 222 matching lines...) Loading... |
341 (kNumberEqual <= value && value <= kStringLessThanOrEqual) || | 342 (kNumberEqual <= value && value <= kStringLessThanOrEqual) || |
342 (kWord32Equal <= value && value <= kFloat64LessThanOrEqual); | 343 (kWord32Equal <= value && value <= kFloat64LessThanOrEqual); |
343 } | 344 } |
344 }; | 345 }; |
345 | 346 |
346 } // namespace compiler | 347 } // namespace compiler |
347 } // namespace internal | 348 } // namespace internal |
348 } // namespace v8 | 349 } // namespace v8 |
349 | 350 |
350 #endif // V8_COMPILER_OPCODES_H_ | 351 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |