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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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(JSStoreNamedOwn) \ | 146 V(JSStoreNamedOwn) \ |
147 V(JSStoreGlobal) \ | 147 V(JSStoreGlobal) \ |
148 V(JSStoreDataPropertyInLiteral) \ | 148 V(JSStoreDataPropertyInLiteral) \ |
| 149 V(JSCollectTypeProfile) \ |
149 V(JSDeleteProperty) \ | 150 V(JSDeleteProperty) \ |
150 V(JSHasProperty) \ | 151 V(JSHasProperty) \ |
151 V(JSGetSuperConstructor) | 152 V(JSGetSuperConstructor) |
152 | 153 |
153 #define JS_CONTEXT_OP_LIST(V) \ | 154 #define JS_CONTEXT_OP_LIST(V) \ |
154 V(JSLoadContext) \ | 155 V(JSLoadContext) \ |
155 V(JSStoreContext) \ | 156 V(JSStoreContext) \ |
156 V(JSCreateFunctionContext) \ | 157 V(JSCreateFunctionContext) \ |
157 V(JSCreateCatchContext) \ | 158 V(JSCreateCatchContext) \ |
158 V(JSCreateWithContext) \ | 159 V(JSCreateWithContext) \ |
(...skipping 630 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
789 } | 790 } |
790 }; | 791 }; |
791 | 792 |
792 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 793 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
793 | 794 |
794 } // namespace compiler | 795 } // namespace compiler |
795 } // namespace internal | 796 } // namespace internal |
796 } // namespace v8 | 797 } // namespace v8 |
797 | 798 |
798 #endif // V8_COMPILER_OPCODES_H_ | 799 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |