| 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 727 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 738 // SSE2 instructions | 738 // SSE2 instructions |
| 739 void cvttss2si(Register dst, const Operand& src); | 739 void cvttss2si(Register dst, const Operand& src); |
| 740 void cvttsd2si(Register dst, const Operand& src); | 740 void cvttsd2si(Register dst, const Operand& src); |
| 741 | 741 |
| 742 void cvtsi2sd(XMMRegister dst, const Operand& src); | 742 void cvtsi2sd(XMMRegister dst, const Operand& src); |
| 743 | 743 |
| 744 void addsd(XMMRegister dst, XMMRegister src); | 744 void addsd(XMMRegister dst, XMMRegister src); |
| 745 void subsd(XMMRegister dst, XMMRegister src); | 745 void subsd(XMMRegister dst, XMMRegister src); |
| 746 void mulsd(XMMRegister dst, XMMRegister src); | 746 void mulsd(XMMRegister dst, XMMRegister src); |
| 747 void divsd(XMMRegister dst, XMMRegister src); | 747 void divsd(XMMRegister dst, XMMRegister src); |
| 748 void xorpd(XMMRegister dst, XMMRegister src); |
| 748 | 749 |
| 749 void comisd(XMMRegister dst, XMMRegister src); | 750 void comisd(XMMRegister dst, XMMRegister src); |
| 750 | 751 |
| 751 // Use either movsd or movlpd. | 752 // Use either movsd or movlpd. |
| 752 void movdbl(XMMRegister dst, const Operand& src); | 753 void movdbl(XMMRegister dst, const Operand& src); |
| 753 void movdbl(const Operand& dst, XMMRegister src); | 754 void movdbl(const Operand& dst, XMMRegister src); |
| 754 | 755 |
| 755 // Debugging | 756 // Debugging |
| 756 void Print(); | 757 void Print(); |
| 757 | 758 |
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 894 private: | 895 private: |
| 895 Assembler* assembler_; | 896 Assembler* assembler_; |
| 896 #ifdef DEBUG | 897 #ifdef DEBUG |
| 897 int space_before_; | 898 int space_before_; |
| 898 #endif | 899 #endif |
| 899 }; | 900 }; |
| 900 | 901 |
| 901 } } // namespace v8::internal | 902 } } // namespace v8::internal |
| 902 | 903 |
| 903 #endif // V8_IA32_ASSEMBLER_IA32_H_ | 904 #endif // V8_IA32_ASSEMBLER_IA32_H_ |
| OLD | NEW |