| 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 1363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1374 void movsd(XMMRegister dst, const Operand& src); | 1374 void movsd(XMMRegister dst, const Operand& src); |
| 1375 | 1375 |
| 1376 void movdqa(const Operand& dst, XMMRegister src); | 1376 void movdqa(const Operand& dst, XMMRegister src); |
| 1377 void movdqa(XMMRegister dst, const Operand& src); | 1377 void movdqa(XMMRegister dst, const Operand& src); |
| 1378 | 1378 |
| 1379 void movdqu(const Operand& dst, XMMRegister src); | 1379 void movdqu(const Operand& dst, XMMRegister src); |
| 1380 void movdqu(XMMRegister dst, const Operand& src); | 1380 void movdqu(XMMRegister dst, const Operand& src); |
| 1381 | 1381 |
| 1382 void movapd(XMMRegister dst, XMMRegister src); | 1382 void movapd(XMMRegister dst, XMMRegister src); |
| 1383 | 1383 |
| 1384 void psllq(XMMRegister reg, byte imm8); | |
| 1385 | |
| 1386 void cvttsd2si(Register dst, const Operand& src); | 1384 void cvttsd2si(Register dst, const Operand& src); |
| 1387 void cvttsd2si(Register dst, XMMRegister src); | 1385 void cvttsd2si(Register dst, XMMRegister src); |
| 1388 void cvttsd2siq(Register dst, XMMRegister src); | 1386 void cvttsd2siq(Register dst, XMMRegister src); |
| 1389 | 1387 |
| 1390 void cvtlsi2sd(XMMRegister dst, const Operand& src); | 1388 void cvtlsi2sd(XMMRegister dst, const Operand& src); |
| 1391 void cvtlsi2sd(XMMRegister dst, Register src); | 1389 void cvtlsi2sd(XMMRegister dst, Register src); |
| 1392 void cvtqsi2sd(XMMRegister dst, const Operand& src); | 1390 void cvtqsi2sd(XMMRegister dst, const Operand& src); |
| 1393 void cvtqsi2sd(XMMRegister dst, Register src); | 1391 void cvtqsi2sd(XMMRegister dst, Register src); |
| 1394 | 1392 |
| 1395 | 1393 |
| (...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1735 private: | 1733 private: |
| 1736 Assembler* assembler_; | 1734 Assembler* assembler_; |
| 1737 #ifdef DEBUG | 1735 #ifdef DEBUG |
| 1738 int space_before_; | 1736 int space_before_; |
| 1739 #endif | 1737 #endif |
| 1740 }; | 1738 }; |
| 1741 | 1739 |
| 1742 } } // namespace v8::internal | 1740 } } // namespace v8::internal |
| 1743 | 1741 |
| 1744 #endif // V8_X64_ASSEMBLER_X64_H_ | 1742 #endif // V8_X64_ASSEMBLER_X64_H_ |
| OLD | NEW |