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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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(JSCreateClosure) \ |
| 110 V(JSCreateLiteralArray) \ |
| 111 V(JSCreateLiteralObject) \ |
110 V(JSLoadProperty) \ | 112 V(JSLoadProperty) \ |
111 V(JSLoadNamed) \ | 113 V(JSLoadNamed) \ |
112 V(JSStoreProperty) \ | 114 V(JSStoreProperty) \ |
113 V(JSStoreNamed) \ | 115 V(JSStoreNamed) \ |
114 V(JSDeleteProperty) \ | 116 V(JSDeleteProperty) \ |
115 V(JSHasProperty) \ | 117 V(JSHasProperty) \ |
116 V(JSInstanceOf) | 118 V(JSInstanceOf) |
117 | 119 |
118 #define JS_CONTEXT_OP_LIST(V) \ | 120 #define JS_CONTEXT_OP_LIST(V) \ |
119 V(JSLoadContext) \ | 121 V(JSLoadContext) \ |
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
342 (kNumberEqual <= value && value <= kStringLessThanOrEqual) || | 344 (kNumberEqual <= value && value <= kStringLessThanOrEqual) || |
343 (kWord32Equal <= value && value <= kFloat64LessThanOrEqual); | 345 (kWord32Equal <= value && value <= kFloat64LessThanOrEqual); |
344 } | 346 } |
345 }; | 347 }; |
346 | 348 |
347 } // namespace compiler | 349 } // namespace compiler |
348 } // namespace internal | 350 } // namespace internal |
349 } // namespace v8 | 351 } // namespace v8 |
350 | 352 |
351 #endif // V8_COMPILER_OPCODES_H_ | 353 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |