| 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 997 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1008 enum RoundingMode { | 1008 enum RoundingMode { |
| 1009 kRoundToNearest = 0x0, | 1009 kRoundToNearest = 0x0, |
| 1010 kRoundDown = 0x1, | 1010 kRoundDown = 0x1, |
| 1011 kRoundUp = 0x2, | 1011 kRoundUp = 0x2, |
| 1012 kRoundToZero = 0x3 | 1012 kRoundToZero = 0x3 |
| 1013 }; | 1013 }; |
| 1014 | 1014 |
| 1015 void roundsd(XMMRegister dst, XMMRegister src, RoundingMode mode); | 1015 void roundsd(XMMRegister dst, XMMRegister src, RoundingMode mode); |
| 1016 | 1016 |
| 1017 void movmskpd(Register dst, XMMRegister src); | 1017 void movmskpd(Register dst, XMMRegister src); |
| 1018 void movmskps(Register dst, XMMRegister src); |
| 1018 | 1019 |
| 1019 void cmpltsd(XMMRegister dst, XMMRegister src); | 1020 void cmpltsd(XMMRegister dst, XMMRegister src); |
| 1020 void pcmpeqd(XMMRegister dst, XMMRegister src); | 1021 void pcmpeqd(XMMRegister dst, XMMRegister src); |
| 1021 | 1022 |
| 1022 void movaps(XMMRegister dst, XMMRegister src); | 1023 void movaps(XMMRegister dst, XMMRegister src); |
| 1023 | 1024 |
| 1024 void movdqa(XMMRegister dst, const Operand& src); | 1025 void movdqa(XMMRegister dst, const Operand& src); |
| 1025 void movdqa(const Operand& dst, XMMRegister src); | 1026 void movdqa(const Operand& dst, XMMRegister src); |
| 1026 void movdqu(XMMRegister dst, const Operand& src); | 1027 void movdqu(XMMRegister dst, const Operand& src); |
| 1027 void movdqu(const Operand& dst, XMMRegister src); | 1028 void movdqu(const Operand& dst, XMMRegister src); |
| (...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1207 private: | 1208 private: |
| 1208 Assembler* assembler_; | 1209 Assembler* assembler_; |
| 1209 #ifdef DEBUG | 1210 #ifdef DEBUG |
| 1210 int space_before_; | 1211 int space_before_; |
| 1211 #endif | 1212 #endif |
| 1212 }; | 1213 }; |
| 1213 | 1214 |
| 1214 } } // namespace v8::internal | 1215 } } // namespace v8::internal |
| 1215 | 1216 |
| 1216 #endif // V8_IA32_ASSEMBLER_IA32_H_ | 1217 #endif // V8_IA32_ASSEMBLER_IA32_H_ |
| OLD | NEW |