| 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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 #define JS_SIMPLE_UNOP_LIST(V) \ | 119 #define JS_SIMPLE_UNOP_LIST(V) \ |
| 120 JS_CONVERSION_UNOP_LIST(V) \ | 120 JS_CONVERSION_UNOP_LIST(V) \ |
| 121 JS_OTHER_UNOP_LIST(V) | 121 JS_OTHER_UNOP_LIST(V) |
| 122 | 122 |
| 123 #define JS_OBJECT_OP_LIST(V) \ | 123 #define JS_OBJECT_OP_LIST(V) \ |
| 124 V(JSCreate) \ | 124 V(JSCreate) \ |
| 125 V(JSCreateArguments) \ | 125 V(JSCreateArguments) \ |
| 126 V(JSCreateArray) \ | 126 V(JSCreateArray) \ |
| 127 V(JSCreateClosure) \ | 127 V(JSCreateClosure) \ |
| 128 V(JSCreateIterResultObject) \ | 128 V(JSCreateIterResultObject) \ |
| 129 V(JSCreateKeyValueArray) \ |
| 129 V(JSCreateLiteralArray) \ | 130 V(JSCreateLiteralArray) \ |
| 130 V(JSCreateLiteralObject) \ | 131 V(JSCreateLiteralObject) \ |
| 131 V(JSCreateLiteralRegExp) \ | 132 V(JSCreateLiteralRegExp) \ |
| 132 V(JSLoadProperty) \ | 133 V(JSLoadProperty) \ |
| 133 V(JSLoadNamed) \ | 134 V(JSLoadNamed) \ |
| 134 V(JSLoadGlobal) \ | 135 V(JSLoadGlobal) \ |
| 135 V(JSStoreProperty) \ | 136 V(JSStoreProperty) \ |
| 136 V(JSStoreNamed) \ | 137 V(JSStoreNamed) \ |
| 137 V(JSStoreGlobal) \ | 138 V(JSStoreGlobal) \ |
| 138 V(JSDeleteProperty) \ | 139 V(JSDeleteProperty) \ |
| (...skipping 649 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 788 } | 789 } |
| 789 }; | 790 }; |
| 790 | 791 |
| 791 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 792 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 792 | 793 |
| 793 } // namespace compiler | 794 } // namespace compiler |
| 794 } // namespace internal | 795 } // namespace internal |
| 795 } // namespace v8 | 796 } // namespace v8 |
| 796 | 797 |
| 797 #endif // V8_COMPILER_OPCODES_H_ | 798 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |