| 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 980 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 991 | 991 |
| 992 void addsd(XMMRegister dst, XMMRegister src); | 992 void addsd(XMMRegister dst, XMMRegister src); |
| 993 void subsd(XMMRegister dst, XMMRegister src); | 993 void subsd(XMMRegister dst, XMMRegister src); |
| 994 void mulsd(XMMRegister dst, XMMRegister src); | 994 void mulsd(XMMRegister dst, XMMRegister src); |
| 995 void divsd(XMMRegister dst, XMMRegister src); | 995 void divsd(XMMRegister dst, XMMRegister src); |
| 996 void xorpd(XMMRegister dst, XMMRegister src); | 996 void xorpd(XMMRegister dst, XMMRegister src); |
| 997 void xorps(XMMRegister dst, XMMRegister src); | 997 void xorps(XMMRegister dst, XMMRegister src); |
| 998 void sqrtsd(XMMRegister dst, XMMRegister src); | 998 void sqrtsd(XMMRegister dst, XMMRegister src); |
| 999 | 999 |
| 1000 void andpd(XMMRegister dst, XMMRegister src); | 1000 void andpd(XMMRegister dst, XMMRegister src); |
| 1001 void orpd(XMMRegister dst, XMMRegister src); |
| 1001 | 1002 |
| 1002 void ucomisd(XMMRegister dst, XMMRegister src); | 1003 void ucomisd(XMMRegister dst, XMMRegister src); |
| 1003 void ucomisd(XMMRegister dst, const Operand& src); | 1004 void ucomisd(XMMRegister dst, const Operand& src); |
| 1004 | 1005 |
| 1005 enum RoundingMode { | 1006 enum RoundingMode { |
| 1006 kRoundToNearest = 0x0, | 1007 kRoundToNearest = 0x0, |
| 1007 kRoundDown = 0x1, | 1008 kRoundDown = 0x1, |
| 1008 kRoundUp = 0x2, | 1009 kRoundUp = 0x2, |
| 1009 kRoundToZero = 0x3 | 1010 kRoundToZero = 0x3 |
| 1010 }; | 1011 }; |
| (...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1221 private: | 1222 private: |
| 1222 Assembler* assembler_; | 1223 Assembler* assembler_; |
| 1223 #ifdef DEBUG | 1224 #ifdef DEBUG |
| 1224 int space_before_; | 1225 int space_before_; |
| 1225 #endif | 1226 #endif |
| 1226 }; | 1227 }; |
| 1227 | 1228 |
| 1228 } } // namespace v8::internal | 1229 } } // namespace v8::internal |
| 1229 | 1230 |
| 1230 #endif // V8_IA32_ASSEMBLER_IA32_H_ | 1231 #endif // V8_IA32_ASSEMBLER_IA32_H_ |
| OLD | NEW |