| 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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 JS_CONVERSION_UNOP_LIST(V) \ | 107 JS_CONVERSION_UNOP_LIST(V) \ |
| 108 JS_OTHER_UNOP_LIST(V) | 108 JS_OTHER_UNOP_LIST(V) |
| 109 | 109 |
| 110 #define JS_OBJECT_OP_LIST(V) \ | 110 #define JS_OBJECT_OP_LIST(V) \ |
| 111 V(JSCreate) \ | 111 V(JSCreate) \ |
| 112 V(JSCreateClosure) \ | 112 V(JSCreateClosure) \ |
| 113 V(JSCreateLiteralArray) \ | 113 V(JSCreateLiteralArray) \ |
| 114 V(JSCreateLiteralObject) \ | 114 V(JSCreateLiteralObject) \ |
| 115 V(JSLoadProperty) \ | 115 V(JSLoadProperty) \ |
| 116 V(JSLoadNamed) \ | 116 V(JSLoadNamed) \ |
| 117 V(JSLoadGlobal) \ |
| 117 V(JSStoreProperty) \ | 118 V(JSStoreProperty) \ |
| 118 V(JSStoreNamed) \ | 119 V(JSStoreNamed) \ |
| 120 V(JSStoreGlobal) \ |
| 119 V(JSDeleteProperty) \ | 121 V(JSDeleteProperty) \ |
| 120 V(JSHasProperty) \ | 122 V(JSHasProperty) \ |
| 121 V(JSInstanceOf) | 123 V(JSInstanceOf) |
| 122 | 124 |
| 123 #define JS_CONTEXT_OP_LIST(V) \ | 125 #define JS_CONTEXT_OP_LIST(V) \ |
| 124 V(JSLoadContext) \ | 126 V(JSLoadContext) \ |
| 125 V(JSStoreContext) \ | 127 V(JSStoreContext) \ |
| 126 V(JSLoadDynamicGlobal) \ | 128 V(JSLoadDynamicGlobal) \ |
| 127 V(JSLoadDynamicContext) \ | 129 V(JSLoadDynamicContext) \ |
| 128 V(JSCreateFunctionContext) \ | 130 V(JSCreateFunctionContext) \ |
| (...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 356 } | 358 } |
| 357 }; | 359 }; |
| 358 | 360 |
| 359 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 361 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 360 | 362 |
| 361 } // namespace compiler | 363 } // namespace compiler |
| 362 } // namespace internal | 364 } // namespace internal |
| 363 } // namespace v8 | 365 } // namespace v8 |
| 364 | 366 |
| 365 #endif // V8_COMPILER_OPCODES_H_ | 367 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |