| 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 #define COMMON_OP_LIST(V) \ | 76 #define COMMON_OP_LIST(V) \ |
| 77 CONSTANT_OP_LIST(V) \ | 77 CONSTANT_OP_LIST(V) \ |
| 78 INNER_OP_LIST(V) \ | 78 INNER_OP_LIST(V) \ |
| 79 V(Dead) | 79 V(Dead) |
| 80 | 80 |
| 81 // Opcodes for JavaScript operators. | 81 // Opcodes for JavaScript operators. |
| 82 #define JS_COMPARE_BINOP_LIST(V) \ | 82 #define JS_COMPARE_BINOP_LIST(V) \ |
| 83 V(JSEqual) \ | 83 V(JSEqual) \ |
| 84 V(JSNotEqual) \ | 84 V(JSNotEqual) \ |
| 85 V(JSStrictEqual) \ | 85 V(JSStrictEqual) \ |
| 86 V(JSStrictNotEqual) \ | |
| 87 V(JSLessThan) \ | 86 V(JSLessThan) \ |
| 88 V(JSGreaterThan) \ | 87 V(JSGreaterThan) \ |
| 89 V(JSLessThanOrEqual) \ | 88 V(JSLessThanOrEqual) \ |
| 90 V(JSGreaterThanOrEqual) | 89 V(JSGreaterThanOrEqual) |
| 91 | 90 |
| 92 #define JS_BITWISE_BINOP_LIST(V) \ | 91 #define JS_BITWISE_BINOP_LIST(V) \ |
| 93 V(JSBitwiseOr) \ | 92 V(JSBitwiseOr) \ |
| 94 V(JSBitwiseXor) \ | 93 V(JSBitwiseXor) \ |
| 95 V(JSBitwiseAnd) \ | 94 V(JSBitwiseAnd) \ |
| 96 V(JSShiftLeft) \ | 95 V(JSShiftLeft) \ |
| (...skipping 692 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 789 } | 788 } |
| 790 }; | 789 }; |
| 791 | 790 |
| 792 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 791 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 793 | 792 |
| 794 } // namespace compiler | 793 } // namespace compiler |
| 795 } // namespace internal | 794 } // namespace internal |
| 796 } // namespace v8 | 795 } // namespace v8 |
| 797 | 796 |
| 798 #endif // V8_COMPILER_OPCODES_H_ | 797 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |