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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 #define JS_SIMPLE_UNOP_LIST(V) \ | 120 #define JS_SIMPLE_UNOP_LIST(V) \ |
121 JS_CONVERSION_UNOP_LIST(V) \ | 121 JS_CONVERSION_UNOP_LIST(V) \ |
122 JS_OTHER_UNOP_LIST(V) | 122 JS_OTHER_UNOP_LIST(V) |
123 | 123 |
124 #define JS_OBJECT_OP_LIST(V) \ | 124 #define JS_OBJECT_OP_LIST(V) \ |
125 V(JSCreate) \ | 125 V(JSCreate) \ |
126 V(JSCreateArguments) \ | 126 V(JSCreateArguments) \ |
127 V(JSCreateArray) \ | 127 V(JSCreateArray) \ |
128 V(JSCreateClosure) \ | 128 V(JSCreateClosure) \ |
129 V(JSCreateIterResultObject) \ | 129 V(JSCreateIterResultObject) \ |
| 130 V(JSCreateKeyValueArray) \ |
130 V(JSCreateLiteralArray) \ | 131 V(JSCreateLiteralArray) \ |
131 V(JSCreateLiteralObject) \ | 132 V(JSCreateLiteralObject) \ |
132 V(JSCreateLiteralRegExp) \ | 133 V(JSCreateLiteralRegExp) \ |
133 V(JSLoadProperty) \ | 134 V(JSLoadProperty) \ |
134 V(JSLoadNamed) \ | 135 V(JSLoadNamed) \ |
135 V(JSLoadGlobal) \ | 136 V(JSLoadGlobal) \ |
136 V(JSStoreProperty) \ | 137 V(JSStoreProperty) \ |
137 V(JSStoreNamed) \ | 138 V(JSStoreNamed) \ |
138 V(JSStoreGlobal) \ | 139 V(JSStoreGlobal) \ |
139 V(JSDeleteProperty) \ | 140 V(JSDeleteProperty) \ |
(...skipping 652 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 |