| 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(JSCreateLiteralArray) \ | 138 V(JSCreateLiteralArray) \ |
| 139 V(JSCreateLiteralObject) \ | 139 V(JSCreateLiteralObject) \ |
| 140 V(JSCreateLiteralRegExp) \ | 140 V(JSCreateLiteralRegExp) \ |
| 141 V(JSLoadProperty) \ | 141 V(JSLoadProperty) \ |
| 142 V(JSLoadNamed) \ | 142 V(JSLoadNamed) \ |
| 143 V(JSLoadGlobal) \ | 143 V(JSLoadGlobal) \ |
| 144 V(JSStoreProperty) \ | 144 V(JSStoreProperty) \ |
| 145 V(JSStoreNamed) \ | 145 V(JSStoreNamed) \ |
| 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 657 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 815 } | 816 } |
| 816 }; | 817 }; |
| 817 | 818 |
| 818 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 819 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 819 | 820 |
| 820 } // namespace compiler | 821 } // namespace compiler |
| 821 } // namespace internal | 822 } // namespace internal |
| 822 } // namespace v8 | 823 } // namespace v8 |
| 823 | 824 |
| 824 #endif // V8_COMPILER_OPCODES_H_ | 825 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |