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 1287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1298 void rsqrtps(XMMRegister dst, XMMRegister src); | 1298 void rsqrtps(XMMRegister dst, XMMRegister src); |
1299 void rsqrtps(XMMRegister dst, const Operand& src); | 1299 void rsqrtps(XMMRegister dst, const Operand& src); |
1300 void sqrtps(XMMRegister dst, XMMRegister src); | 1300 void sqrtps(XMMRegister dst, XMMRegister src); |
1301 void sqrtps(XMMRegister dst, const Operand& src); | 1301 void sqrtps(XMMRegister dst, const Operand& src); |
1302 void movups(XMMRegister dst, XMMRegister src); | 1302 void movups(XMMRegister dst, XMMRegister src); |
1303 void movups(XMMRegister dst, const Operand& src); | 1303 void movups(XMMRegister dst, const Operand& src); |
1304 void movups(const Operand& dst, XMMRegister src); | 1304 void movups(const Operand& dst, XMMRegister src); |
1305 void psrldq(XMMRegister dst, uint8_t shift); | 1305 void psrldq(XMMRegister dst, uint8_t shift); |
1306 void pshufd(XMMRegister dst, XMMRegister src, uint8_t shuffle); | 1306 void pshufd(XMMRegister dst, XMMRegister src, uint8_t shuffle); |
1307 void pshufd(XMMRegister dst, const Operand& src, uint8_t shuffle); | 1307 void pshufd(XMMRegister dst, const Operand& src, uint8_t shuffle); |
| 1308 void pshufhw(XMMRegister dst, XMMRegister src, uint8_t shuffle); |
| 1309 void pshuflw(XMMRegister dst, XMMRegister src, uint8_t shuffle); |
1308 void cvtdq2ps(XMMRegister dst, XMMRegister src); | 1310 void cvtdq2ps(XMMRegister dst, XMMRegister src); |
1309 void cvtdq2ps(XMMRegister dst, const Operand& src); | 1311 void cvtdq2ps(XMMRegister dst, const Operand& src); |
1310 | 1312 |
1311 // AVX instruction | 1313 // AVX instruction |
1312 void vfmadd132sd(XMMRegister dst, XMMRegister src1, XMMRegister src2) { | 1314 void vfmadd132sd(XMMRegister dst, XMMRegister src1, XMMRegister src2) { |
1313 vfmasd(0x99, dst, src1, src2); | 1315 vfmasd(0x99, dst, src1, src2); |
1314 } | 1316 } |
1315 void vfmadd213sd(XMMRegister dst, XMMRegister src1, XMMRegister src2) { | 1317 void vfmadd213sd(XMMRegister dst, XMMRegister src1, XMMRegister src2) { |
1316 vfmasd(0xa9, dst, src1, src2); | 1318 vfmasd(0xa9, dst, src1, src2); |
1317 } | 1319 } |
(...skipping 1204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2522 Assembler* assembler_; | 2524 Assembler* assembler_; |
2523 #ifdef DEBUG | 2525 #ifdef DEBUG |
2524 int space_before_; | 2526 int space_before_; |
2525 #endif | 2527 #endif |
2526 }; | 2528 }; |
2527 | 2529 |
2528 } // namespace internal | 2530 } // namespace internal |
2529 } // namespace v8 | 2531 } // namespace v8 |
2530 | 2532 |
2531 #endif // V8_X64_ASSEMBLER_X64_H_ | 2533 #endif // V8_X64_ASSEMBLER_X64_H_ |
OLD | NEW |