| 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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 V(JSCreateLiteralObject) \ | 127 V(JSCreateLiteralObject) \ |
| 128 V(JSCreateLiteralRegExp) \ | 128 V(JSCreateLiteralRegExp) \ |
| 129 V(JSLoadProperty) \ | 129 V(JSLoadProperty) \ |
| 130 V(JSLoadNamed) \ | 130 V(JSLoadNamed) \ |
| 131 V(JSLoadGlobal) \ | 131 V(JSLoadGlobal) \ |
| 132 V(JSStoreProperty) \ | 132 V(JSStoreProperty) \ |
| 133 V(JSStoreNamed) \ | 133 V(JSStoreNamed) \ |
| 134 V(JSStoreGlobal) \ | 134 V(JSStoreGlobal) \ |
| 135 V(JSDeleteProperty) \ | 135 V(JSDeleteProperty) \ |
| 136 V(JSHasProperty) \ | 136 V(JSHasProperty) \ |
| 137 V(JSInstanceOf) | 137 V(JSInstanceOf) \ |
| 138 V(JSOrdinaryHasInstance) |
| 138 | 139 |
| 139 #define JS_CONTEXT_OP_LIST(V) \ | 140 #define JS_CONTEXT_OP_LIST(V) \ |
| 140 V(JSLoadContext) \ | 141 V(JSLoadContext) \ |
| 141 V(JSStoreContext) \ | 142 V(JSStoreContext) \ |
| 142 V(JSCreateFunctionContext) \ | 143 V(JSCreateFunctionContext) \ |
| 143 V(JSCreateCatchContext) \ | 144 V(JSCreateCatchContext) \ |
| 144 V(JSCreateWithContext) \ | 145 V(JSCreateWithContext) \ |
| 145 V(JSCreateBlockContext) \ | 146 V(JSCreateBlockContext) \ |
| 146 V(JSCreateScriptContext) | 147 V(JSCreateScriptContext) |
| 147 | 148 |
| (...skipping 635 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 783 } | 784 } |
| 784 }; | 785 }; |
| 785 | 786 |
| 786 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 787 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 787 | 788 |
| 788 } // namespace compiler | 789 } // namespace compiler |
| 789 } // namespace internal | 790 } // namespace internal |
| 790 } // namespace v8 | 791 } // namespace v8 |
| 791 | 792 |
| 792 #endif // V8_COMPILER_OPCODES_H_ | 793 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |