| 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 918 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 929 void cvtsd2ss(XMMRegister dst, XMMRegister src); | 929 void cvtsd2ss(XMMRegister dst, XMMRegister src); |
| 930 | 930 |
| 931 void addsd(XMMRegister dst, XMMRegister src); | 931 void addsd(XMMRegister dst, XMMRegister src); |
| 932 void addsd(XMMRegister dst, const Operand& src); | 932 void addsd(XMMRegister dst, const Operand& src); |
| 933 void subsd(XMMRegister dst, XMMRegister src); | 933 void subsd(XMMRegister dst, XMMRegister src); |
| 934 void mulsd(XMMRegister dst, XMMRegister src); | 934 void mulsd(XMMRegister dst, XMMRegister src); |
| 935 void mulsd(XMMRegister dst, const Operand& src); | 935 void mulsd(XMMRegister dst, const Operand& src); |
| 936 void divsd(XMMRegister dst, XMMRegister src); | 936 void divsd(XMMRegister dst, XMMRegister src); |
| 937 void xorpd(XMMRegister dst, XMMRegister src); | 937 void xorpd(XMMRegister dst, XMMRegister src); |
| 938 void sqrtsd(XMMRegister dst, XMMRegister src); | 938 void sqrtsd(XMMRegister dst, XMMRegister src); |
| 939 void sqrtsd(XMMRegister dst, const Operand& src); |
| 939 | 940 |
| 940 void andpd(XMMRegister dst, XMMRegister src); | 941 void andpd(XMMRegister dst, XMMRegister src); |
| 941 void orpd(XMMRegister dst, XMMRegister src); | 942 void orpd(XMMRegister dst, XMMRegister src); |
| 942 | 943 |
| 943 void ucomisd(XMMRegister dst, XMMRegister src) { ucomisd(dst, Operand(src)); } | 944 void ucomisd(XMMRegister dst, XMMRegister src) { ucomisd(dst, Operand(src)); } |
| 944 void ucomisd(XMMRegister dst, const Operand& src); | 945 void ucomisd(XMMRegister dst, const Operand& src); |
| 945 | 946 |
| 946 enum RoundingMode { | 947 enum RoundingMode { |
| 947 kRoundToNearest = 0x0, | 948 kRoundToNearest = 0x0, |
| 948 kRoundDown = 0x1, | 949 kRoundDown = 0x1, |
| (...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1159 private: | 1160 private: |
| 1160 Assembler* assembler_; | 1161 Assembler* assembler_; |
| 1161 #ifdef DEBUG | 1162 #ifdef DEBUG |
| 1162 int space_before_; | 1163 int space_before_; |
| 1163 #endif | 1164 #endif |
| 1164 }; | 1165 }; |
| 1165 | 1166 |
| 1166 } } // namespace v8::internal | 1167 } } // namespace v8::internal |
| 1167 | 1168 |
| 1168 #endif // V8_IA32_ASSEMBLER_IA32_H_ | 1169 #endif // V8_IA32_ASSEMBLER_IA32_H_ |
| OLD | NEW |