| 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 1294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1305 | 1305 |
| 1306 void movdqa(const Operand& dst, XMMRegister src); | 1306 void movdqa(const Operand& dst, XMMRegister src); |
| 1307 void movdqa(XMMRegister dst, const Operand& src); | 1307 void movdqa(XMMRegister dst, const Operand& src); |
| 1308 | 1308 |
| 1309 void movapd(XMMRegister dst, XMMRegister src); | 1309 void movapd(XMMRegister dst, XMMRegister src); |
| 1310 void movaps(XMMRegister dst, XMMRegister src); | 1310 void movaps(XMMRegister dst, XMMRegister src); |
| 1311 | 1311 |
| 1312 void movss(XMMRegister dst, const Operand& src); | 1312 void movss(XMMRegister dst, const Operand& src); |
| 1313 void movss(const Operand& dst, XMMRegister src); | 1313 void movss(const Operand& dst, XMMRegister src); |
| 1314 | 1314 |
| 1315 void movddup(XMMRegister dst, const Operand& src); |
| 1316 |
| 1315 void cvttss2si(Register dst, const Operand& src); | 1317 void cvttss2si(Register dst, const Operand& src); |
| 1316 void cvttss2si(Register dst, XMMRegister src); | 1318 void cvttss2si(Register dst, XMMRegister src); |
| 1317 void cvttsd2si(Register dst, const Operand& src); | 1319 void cvttsd2si(Register dst, const Operand& src); |
| 1318 void cvttsd2si(Register dst, XMMRegister src); | 1320 void cvttsd2si(Register dst, XMMRegister src); |
| 1319 void cvttsd2siq(Register dst, XMMRegister src); | 1321 void cvttsd2siq(Register dst, XMMRegister src); |
| 1320 | 1322 |
| 1321 void cvtlsi2sd(XMMRegister dst, const Operand& src); | 1323 void cvtlsi2sd(XMMRegister dst, const Operand& src); |
| 1322 void cvtlsi2sd(XMMRegister dst, Register src); | 1324 void cvtlsi2sd(XMMRegister dst, Register src); |
| 1323 void cvtqsi2sd(XMMRegister dst, const Operand& src); | 1325 void cvtqsi2sd(XMMRegister dst, const Operand& src); |
| 1324 void cvtqsi2sd(XMMRegister dst, Register src); | 1326 void cvtqsi2sd(XMMRegister dst, Register src); |
| (...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1640 private: | 1642 private: |
| 1641 Assembler* assembler_; | 1643 Assembler* assembler_; |
| 1642 #ifdef DEBUG | 1644 #ifdef DEBUG |
| 1643 int space_before_; | 1645 int space_before_; |
| 1644 #endif | 1646 #endif |
| 1645 }; | 1647 }; |
| 1646 | 1648 |
| 1647 } } // namespace v8::internal | 1649 } } // namespace v8::internal |
| 1648 | 1650 |
| 1649 #endif // V8_X64_ASSEMBLER_X64_H_ | 1651 #endif // V8_X64_ASSEMBLER_X64_H_ |
| OLD | NEW |