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(JSStoreNamed) \ | 138 V(JSStoreNamed) \ |
139 V(JSStoreGlobal) \ | 139 V(JSStoreGlobal) \ |
140 V(JSDeleteProperty) \ | 140 V(JSDeleteProperty) \ |
141 V(JSHasProperty) \ | 141 V(JSHasProperty) \ |
142 V(JSInstanceOf) | 142 V(JSInstanceOf) |
143 | 143 |
144 #define JS_CONTEXT_OP_LIST(V) \ | 144 #define JS_CONTEXT_OP_LIST(V) \ |
145 V(JSLoadContext) \ | 145 V(JSLoadContext) \ |
146 V(JSStoreContext) \ | 146 V(JSStoreContext) \ |
147 V(JSCreateFunctionContext) \ | 147 V(JSCreateFunctionContext) \ |
| 148 V(JSCreateEvalContext) \ |
148 V(JSCreateCatchContext) \ | 149 V(JSCreateCatchContext) \ |
149 V(JSCreateWithContext) \ | 150 V(JSCreateWithContext) \ |
150 V(JSCreateBlockContext) \ | 151 V(JSCreateBlockContext) \ |
151 V(JSCreateScriptContext) | 152 V(JSCreateScriptContext) |
152 | 153 |
153 #define JS_OTHER_OP_LIST(V) \ | 154 #define JS_OTHER_OP_LIST(V) \ |
154 V(JSCallConstruct) \ | 155 V(JSCallConstruct) \ |
155 V(JSCallFunction) \ | 156 V(JSCallFunction) \ |
156 V(JSCallRuntime) \ | 157 V(JSCallRuntime) \ |
157 V(JSConvertReceiver) \ | 158 V(JSConvertReceiver) \ |
(...skipping 635 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
793 } | 794 } |
794 }; | 795 }; |
795 | 796 |
796 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 797 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
797 | 798 |
798 } // namespace compiler | 799 } // namespace compiler |
799 } // namespace internal | 800 } // namespace internal |
800 } // namespace v8 | 801 } // namespace v8 |
801 | 802 |
802 #endif // V8_COMPILER_OPCODES_H_ | 803 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |