| OLD | NEW |
| 1 // Copyright (c) 1994-2006 Sun Microsystems Inc. | 1 // Copyright (c) 1994-2006 Sun Microsystems Inc. |
| 2 // All Rights Reserved. | 2 // All Rights Reserved. |
| 3 // | 3 // |
| 4 // Redistribution and use in source and binary forms, with or without | 4 // Redistribution and use in source and binary forms, with or without |
| 5 // modification, are permitted provided that the following conditions are | 5 // modification, are permitted provided that the following conditions are |
| 6 // met: | 6 // met: |
| 7 // | 7 // |
| 8 // - Redistributions of source code must retain the above copyright notice, | 8 // - Redistributions of source code must retain the above copyright notice, |
| 9 // this list of conditions and the following disclaimer. | 9 // this list of conditions and the following disclaimer. |
| 10 // | 10 // |
| (...skipping 1069 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1080 void cvtss2sd(XMMRegister dst, const Operand& src); | 1080 void cvtss2sd(XMMRegister dst, const Operand& src); |
| 1081 void cvtsd2ss(XMMRegister dst, XMMRegister src); | 1081 void cvtsd2ss(XMMRegister dst, XMMRegister src); |
| 1082 void cvtsd2ss(XMMRegister dst, const Operand& src); | 1082 void cvtsd2ss(XMMRegister dst, const Operand& src); |
| 1083 | 1083 |
| 1084 void cvtsd2si(Register dst, XMMRegister src); | 1084 void cvtsd2si(Register dst, XMMRegister src); |
| 1085 void cvtsd2siq(Register dst, XMMRegister src); | 1085 void cvtsd2siq(Register dst, XMMRegister src); |
| 1086 | 1086 |
| 1087 void addsd(XMMRegister dst, XMMRegister src); | 1087 void addsd(XMMRegister dst, XMMRegister src); |
| 1088 void addsd(XMMRegister dst, const Operand& src); | 1088 void addsd(XMMRegister dst, const Operand& src); |
| 1089 void subsd(XMMRegister dst, XMMRegister src); | 1089 void subsd(XMMRegister dst, XMMRegister src); |
| 1090 void subsd(XMMRegister dst, const Operand& src); |
| 1090 void mulsd(XMMRegister dst, XMMRegister src); | 1091 void mulsd(XMMRegister dst, XMMRegister src); |
| 1091 void mulsd(XMMRegister dst, const Operand& src); | 1092 void mulsd(XMMRegister dst, const Operand& src); |
| 1092 void divsd(XMMRegister dst, XMMRegister src); | 1093 void divsd(XMMRegister dst, XMMRegister src); |
| 1094 void divsd(XMMRegister dst, const Operand& src); |
| 1093 | 1095 |
| 1094 void andpd(XMMRegister dst, XMMRegister src); | 1096 void andpd(XMMRegister dst, XMMRegister src); |
| 1095 void orpd(XMMRegister dst, XMMRegister src); | 1097 void orpd(XMMRegister dst, XMMRegister src); |
| 1096 void xorpd(XMMRegister dst, XMMRegister src); | 1098 void xorpd(XMMRegister dst, XMMRegister src); |
| 1097 void sqrtsd(XMMRegister dst, XMMRegister src); | 1099 void sqrtsd(XMMRegister dst, XMMRegister src); |
| 1098 void sqrtsd(XMMRegister dst, const Operand& src); | 1100 void sqrtsd(XMMRegister dst, const Operand& src); |
| 1099 | 1101 |
| 1100 void ucomisd(XMMRegister dst, XMMRegister src); | 1102 void ucomisd(XMMRegister dst, XMMRegister src); |
| 1101 void ucomisd(XMMRegister dst, const Operand& src); | 1103 void ucomisd(XMMRegister dst, const Operand& src); |
| 1102 void cmpltsd(XMMRegister dst, XMMRegister src); | 1104 void cmpltsd(XMMRegister dst, XMMRegister src); |
| (...skipping 515 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1618 private: | 1620 private: |
| 1619 Assembler* assembler_; | 1621 Assembler* assembler_; |
| 1620 #ifdef DEBUG | 1622 #ifdef DEBUG |
| 1621 int space_before_; | 1623 int space_before_; |
| 1622 #endif | 1624 #endif |
| 1623 }; | 1625 }; |
| 1624 | 1626 |
| 1625 } } // namespace v8::internal | 1627 } } // namespace v8::internal |
| 1626 | 1628 |
| 1627 #endif // V8_X64_ASSEMBLER_X64_H_ | 1629 #endif // V8_X64_ASSEMBLER_X64_H_ |
| OLD | NEW |