| 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 1291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1302 // Used movaps when moving double values and movq for integer | 1302 // Used movaps when moving double values and movq for integer |
| 1303 // values in xmm registers. | 1303 // values in xmm registers. |
| 1304 void movsd(XMMRegister dst, XMMRegister src); | 1304 void movsd(XMMRegister dst, XMMRegister src); |
| 1305 | 1305 |
| 1306 void movsd(const Operand& dst, XMMRegister src); | 1306 void movsd(const Operand& dst, XMMRegister src); |
| 1307 void movsd(XMMRegister dst, const Operand& src); | 1307 void movsd(XMMRegister dst, const Operand& src); |
| 1308 | 1308 |
| 1309 void movdqa(const Operand& dst, XMMRegister src); | 1309 void movdqa(const Operand& dst, XMMRegister src); |
| 1310 void movdqa(XMMRegister dst, const Operand& src); | 1310 void movdqa(XMMRegister dst, const Operand& src); |
| 1311 | 1311 |
| 1312 void movdqu(const Operand& dst, XMMRegister src); |
| 1313 void movdqu(XMMRegister dst, const Operand& src); |
| 1314 |
| 1312 void movapd(XMMRegister dst, XMMRegister src); | 1315 void movapd(XMMRegister dst, XMMRegister src); |
| 1313 void movaps(XMMRegister dst, XMMRegister src); | 1316 void movaps(XMMRegister dst, XMMRegister src); |
| 1314 | 1317 |
| 1315 void movss(XMMRegister dst, const Operand& src); | 1318 void movss(XMMRegister dst, const Operand& src); |
| 1316 void movss(const Operand& dst, XMMRegister src); | 1319 void movss(const Operand& dst, XMMRegister src); |
| 1317 | 1320 |
| 1318 void cvttss2si(Register dst, const Operand& src); | 1321 void cvttss2si(Register dst, const Operand& src); |
| 1319 void cvttss2si(Register dst, XMMRegister src); | 1322 void cvttss2si(Register dst, XMMRegister src); |
| 1320 void cvttsd2si(Register dst, const Operand& src); | 1323 void cvttsd2si(Register dst, const Operand& src); |
| 1321 void cvttsd2si(Register dst, XMMRegister src); | 1324 void cvttsd2si(Register dst, XMMRegister src); |
| (...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1635 private: | 1638 private: |
| 1636 Assembler* assembler_; | 1639 Assembler* assembler_; |
| 1637 #ifdef DEBUG | 1640 #ifdef DEBUG |
| 1638 int space_before_; | 1641 int space_before_; |
| 1639 #endif | 1642 #endif |
| 1640 }; | 1643 }; |
| 1641 | 1644 |
| 1642 } } // namespace v8::internal | 1645 } } // namespace v8::internal |
| 1643 | 1646 |
| 1644 #endif // V8_X64_ASSEMBLER_X64_H_ | 1647 #endif // V8_X64_ASSEMBLER_X64_H_ |
| OLD | NEW |