| 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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 V(JSCreateLiteralObject) \ | 138 V(JSCreateLiteralObject) \ |
| 139 V(JSCreateLiteralRegExp) \ | 139 V(JSCreateLiteralRegExp) \ |
| 140 V(JSLoadProperty) \ | 140 V(JSLoadProperty) \ |
| 141 V(JSLoadNamed) \ | 141 V(JSLoadNamed) \ |
| 142 V(JSLoadGlobal) \ | 142 V(JSLoadGlobal) \ |
| 143 V(JSStoreProperty) \ | 143 V(JSStoreProperty) \ |
| 144 V(JSStoreNamed) \ | 144 V(JSStoreNamed) \ |
| 145 V(JSStoreNamedOwn) \ | 145 V(JSStoreNamedOwn) \ |
| 146 V(JSStoreGlobal) \ | 146 V(JSStoreGlobal) \ |
| 147 V(JSStoreDataPropertyInLiteral) \ | 147 V(JSStoreDataPropertyInLiteral) \ |
| 148 V(JSCollectTypeProfile) \ |
| 148 V(JSDeleteProperty) \ | 149 V(JSDeleteProperty) \ |
| 149 V(JSHasProperty) \ | 150 V(JSHasProperty) \ |
| 150 V(JSGetSuperConstructor) | 151 V(JSGetSuperConstructor) |
| 151 | 152 |
| 152 #define JS_CONTEXT_OP_LIST(V) \ | 153 #define JS_CONTEXT_OP_LIST(V) \ |
| 153 V(JSLoadContext) \ | 154 V(JSLoadContext) \ |
| 154 V(JSStoreContext) \ | 155 V(JSStoreContext) \ |
| 155 V(JSCreateFunctionContext) \ | 156 V(JSCreateFunctionContext) \ |
| 156 V(JSCreateCatchContext) \ | 157 V(JSCreateCatchContext) \ |
| 157 V(JSCreateWithContext) \ | 158 V(JSCreateWithContext) \ |
| (...skipping 634 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 792 } | 793 } |
| 793 }; | 794 }; |
| 794 | 795 |
| 795 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 796 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 796 | 797 |
| 797 } // namespace compiler | 798 } // namespace compiler |
| 798 } // namespace internal | 799 } // namespace internal |
| 799 } // namespace v8 | 800 } // namespace v8 |
| 800 | 801 |
| 801 #endif // V8_COMPILER_OPCODES_H_ | 802 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |