| 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 1000 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1011 }; | 1011 }; |
| 1012 | 1012 |
| 1013 void roundsd(XMMRegister dst, XMMRegister src, RoundingMode mode); | 1013 void roundsd(XMMRegister dst, XMMRegister src, RoundingMode mode); |
| 1014 | 1014 |
| 1015 void movmskpd(Register dst, XMMRegister src); | 1015 void movmskpd(Register dst, XMMRegister src); |
| 1016 void movmskps(Register dst, XMMRegister src); | 1016 void movmskps(Register dst, XMMRegister src); |
| 1017 | 1017 |
| 1018 void cmpltsd(XMMRegister dst, XMMRegister src); | 1018 void cmpltsd(XMMRegister dst, XMMRegister src); |
| 1019 void pcmpeqd(XMMRegister dst, XMMRegister src); | 1019 void pcmpeqd(XMMRegister dst, XMMRegister src); |
| 1020 | 1020 |
| 1021 void punpckldq(XMMRegister dst, XMMRegister src); |
| 1022 void punpckhdq(XMMRegister dst, XMMRegister src); |
| 1023 |
| 1021 void movdqa(XMMRegister dst, const Operand& src); | 1024 void movdqa(XMMRegister dst, const Operand& src); |
| 1022 void movdqa(const Operand& dst, XMMRegister src); | 1025 void movdqa(const Operand& dst, XMMRegister src); |
| 1023 void movdqu(XMMRegister dst, const Operand& src); | 1026 void movdqu(XMMRegister dst, const Operand& src); |
| 1024 void movdqu(const Operand& dst, XMMRegister src); | 1027 void movdqu(const Operand& dst, XMMRegister src); |
| 1025 void movdq(bool aligned, XMMRegister dst, const Operand& src) { | 1028 void movdq(bool aligned, XMMRegister dst, const Operand& src) { |
| 1026 if (aligned) { | 1029 if (aligned) { |
| 1027 movdqa(dst, src); | 1030 movdqa(dst, src); |
| 1028 } else { | 1031 } else { |
| 1029 movdqu(dst, src); | 1032 movdqu(dst, src); |
| 1030 } | 1033 } |
| (...skipping 382 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1413 private: | 1416 private: |
| 1414 Assembler* assembler_; | 1417 Assembler* assembler_; |
| 1415 #ifdef DEBUG | 1418 #ifdef DEBUG |
| 1416 int space_before_; | 1419 int space_before_; |
| 1417 #endif | 1420 #endif |
| 1418 }; | 1421 }; |
| 1419 | 1422 |
| 1420 } } // namespace v8::internal | 1423 } } // namespace v8::internal |
| 1421 | 1424 |
| 1422 #endif // V8_IA32_ASSEMBLER_IA32_H_ | 1425 #endif // V8_IA32_ASSEMBLER_IA32_H_ |
| OLD | NEW |