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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 JS_CONVERSION_UNOP_LIST(V) \ | 108 JS_CONVERSION_UNOP_LIST(V) \ |
109 JS_OTHER_UNOP_LIST(V) | 109 JS_OTHER_UNOP_LIST(V) |
110 | 110 |
111 #define JS_OBJECT_OP_LIST(V) \ | 111 #define JS_OBJECT_OP_LIST(V) \ |
112 V(JSCreate) \ | 112 V(JSCreate) \ |
113 V(JSCreateArguments) \ | 113 V(JSCreateArguments) \ |
114 V(JSCreateArray) \ | 114 V(JSCreateArray) \ |
115 V(JSCreateClosure) \ | 115 V(JSCreateClosure) \ |
116 V(JSCreateLiteralArray) \ | 116 V(JSCreateLiteralArray) \ |
117 V(JSCreateLiteralObject) \ | 117 V(JSCreateLiteralObject) \ |
| 118 V(JSCreateLiteralRegExp) \ |
118 V(JSLoadProperty) \ | 119 V(JSLoadProperty) \ |
119 V(JSLoadNamed) \ | 120 V(JSLoadNamed) \ |
120 V(JSLoadGlobal) \ | 121 V(JSLoadGlobal) \ |
121 V(JSStoreProperty) \ | 122 V(JSStoreProperty) \ |
122 V(JSStoreNamed) \ | 123 V(JSStoreNamed) \ |
123 V(JSStoreGlobal) \ | 124 V(JSStoreGlobal) \ |
124 V(JSDeleteProperty) \ | 125 V(JSDeleteProperty) \ |
125 V(JSHasProperty) \ | 126 V(JSHasProperty) \ |
126 V(JSInstanceOf) | 127 V(JSInstanceOf) |
127 | 128 |
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
396 } | 397 } |
397 }; | 398 }; |
398 | 399 |
399 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 400 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
400 | 401 |
401 } // namespace compiler | 402 } // namespace compiler |
402 } // namespace internal | 403 } // namespace internal |
403 } // namespace v8 | 404 } // namespace v8 |
404 | 405 |
405 #endif // V8_COMPILER_OPCODES_H_ | 406 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |