| 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 #include "src/globals.h" | 10 #include "src/globals.h" |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 V(JSStoreNamed) \ | 136 V(JSStoreNamed) \ |
| 137 V(JSStoreGlobal) \ | 137 V(JSStoreGlobal) \ |
| 138 V(JSDeleteProperty) \ | 138 V(JSDeleteProperty) \ |
| 139 V(JSHasProperty) \ | 139 V(JSHasProperty) \ |
| 140 V(JSInstanceOf) | 140 V(JSInstanceOf) |
| 141 | 141 |
| 142 #define JS_CONTEXT_OP_LIST(V) \ | 142 #define JS_CONTEXT_OP_LIST(V) \ |
| 143 V(JSLoadContext) \ | 143 V(JSLoadContext) \ |
| 144 V(JSStoreContext) \ | 144 V(JSStoreContext) \ |
| 145 V(JSCreateFunctionContext) \ | 145 V(JSCreateFunctionContext) \ |
| 146 V(JSCreateEvalContext) \ |
| 146 V(JSCreateCatchContext) \ | 147 V(JSCreateCatchContext) \ |
| 147 V(JSCreateWithContext) \ | 148 V(JSCreateWithContext) \ |
| 148 V(JSCreateBlockContext) \ | 149 V(JSCreateBlockContext) \ |
| 149 V(JSCreateScriptContext) | 150 V(JSCreateScriptContext) |
| 150 | 151 |
| 151 #define JS_OTHER_OP_LIST(V) \ | 152 #define JS_OTHER_OP_LIST(V) \ |
| 152 V(JSCallConstruct) \ | 153 V(JSCallConstruct) \ |
| 153 V(JSCallFunction) \ | 154 V(JSCallFunction) \ |
| 154 V(JSCallRuntime) \ | 155 V(JSCallRuntime) \ |
| 155 V(JSConvertReceiver) \ | 156 V(JSConvertReceiver) \ |
| (...skipping 630 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 786 } | 787 } |
| 787 }; | 788 }; |
| 788 | 789 |
| 789 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 790 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 790 | 791 |
| 791 } // namespace compiler | 792 } // namespace compiler |
| 792 } // namespace internal | 793 } // namespace internal |
| 793 } // namespace v8 | 794 } // namespace v8 |
| 794 | 795 |
| 795 #endif // V8_COMPILER_OPCODES_H_ | 796 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |