| 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 // Opcodes for control operators. | 10 // Opcodes for control operators. |
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 | 175 |
| 176 #define SIMPLIFIED_OP_LIST(V) \ | 176 #define SIMPLIFIED_OP_LIST(V) \ |
| 177 SIMPLIFIED_COMPARE_BINOP_LIST(V) \ | 177 SIMPLIFIED_COMPARE_BINOP_LIST(V) \ |
| 178 V(PlainPrimitiveToNumber) \ | 178 V(PlainPrimitiveToNumber) \ |
| 179 V(PlainPrimitiveToWord32) \ | 179 V(PlainPrimitiveToWord32) \ |
| 180 V(PlainPrimitiveToFloat64) \ | 180 V(PlainPrimitiveToFloat64) \ |
| 181 V(BooleanNot) \ | 181 V(BooleanNot) \ |
| 182 V(BooleanToNumber) \ | 182 V(BooleanToNumber) \ |
| 183 V(SpeculativeNumberAdd) \ | 183 V(SpeculativeNumberAdd) \ |
| 184 V(SpeculativeNumberSubtract) \ | 184 V(SpeculativeNumberSubtract) \ |
| 185 V(SpeculativeNumberMultiply) \ |
| 186 V(SpeculativeNumberDivide) \ |
| 187 V(SpeculativeNumberModulus) \ |
| 185 V(SpeculativeNumberEqual) \ | 188 V(SpeculativeNumberEqual) \ |
| 186 V(SpeculativeNumberLessThan) \ | 189 V(SpeculativeNumberLessThan) \ |
| 187 V(SpeculativeNumberLessThanOrEqual) \ | 190 V(SpeculativeNumberLessThanOrEqual) \ |
| 188 V(NumberAdd) \ | 191 V(NumberAdd) \ |
| 189 V(NumberSubtract) \ | 192 V(NumberSubtract) \ |
| 190 V(NumberMultiply) \ | 193 V(NumberMultiply) \ |
| 191 V(NumberDivide) \ | 194 V(NumberDivide) \ |
| 192 V(NumberModulus) \ | 195 V(NumberModulus) \ |
| 193 V(NumberBitwiseOr) \ | 196 V(NumberBitwiseOr) \ |
| 194 V(NumberBitwiseXor) \ | 197 V(NumberBitwiseXor) \ |
| (...skipping 479 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 674 } | 677 } |
| 675 }; | 678 }; |
| 676 | 679 |
| 677 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 680 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 678 | 681 |
| 679 } // namespace compiler | 682 } // namespace compiler |
| 680 } // namespace internal | 683 } // namespace internal |
| 681 } // namespace v8 | 684 } // namespace v8 |
| 682 | 685 |
| 683 #endif // V8_COMPILER_OPCODES_H_ | 686 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |