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 | 5 // modification, are permitted provided that the following conditions |
6 // are met: | 6 // are 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 1364 matching lines...) Loading... |
1375 void vsub(const QwNeonRegister dst, const QwNeonRegister src1, | 1375 void vsub(const QwNeonRegister dst, const QwNeonRegister src1, |
1376 const QwNeonRegister src2); | 1376 const QwNeonRegister src2); |
1377 void vsub(NeonSize size, const QwNeonRegister dst, const QwNeonRegister src1, | 1377 void vsub(NeonSize size, const QwNeonRegister dst, const QwNeonRegister src1, |
1378 const QwNeonRegister src2); | 1378 const QwNeonRegister src2); |
1379 void vmul(const QwNeonRegister dst, const QwNeonRegister src1, | 1379 void vmul(const QwNeonRegister dst, const QwNeonRegister src1, |
1380 const QwNeonRegister src2); | 1380 const QwNeonRegister src2); |
1381 void vmul(NeonSize size, const QwNeonRegister dst, const QwNeonRegister src1, | 1381 void vmul(NeonSize size, const QwNeonRegister dst, const QwNeonRegister src1, |
1382 const QwNeonRegister src2); | 1382 const QwNeonRegister src2); |
1383 void vtst(NeonSize size, const QwNeonRegister dst, const QwNeonRegister src1, | 1383 void vtst(NeonSize size, const QwNeonRegister dst, const QwNeonRegister src1, |
1384 const QwNeonRegister src2); | 1384 const QwNeonRegister src2); |
| 1385 void vceq(const QwNeonRegister dst, const QwNeonRegister src1, |
| 1386 const QwNeonRegister src2); |
1385 void vceq(NeonSize size, const QwNeonRegister dst, const QwNeonRegister src1, | 1387 void vceq(NeonSize size, const QwNeonRegister dst, const QwNeonRegister src1, |
1386 const QwNeonRegister src2); | 1388 const QwNeonRegister src2); |
1387 void vbsl(const QwNeonRegister dst, const QwNeonRegister src1, | 1389 void vbsl(const QwNeonRegister dst, const QwNeonRegister src1, |
1388 const QwNeonRegister src2); | 1390 const QwNeonRegister src2); |
1389 void vext(const QwNeonRegister dst, const QwNeonRegister src1, | 1391 void vext(const QwNeonRegister dst, const QwNeonRegister src1, |
1390 const QwNeonRegister src2, int bytes); | 1392 const QwNeonRegister src2, int bytes); |
1391 void vzip(NeonSize size, const QwNeonRegister dst, const QwNeonRegister src); | 1393 void vzip(NeonSize size, const QwNeonRegister dst, const QwNeonRegister src); |
1392 void vrev16(NeonSize size, const QwNeonRegister dst, | 1394 void vrev16(NeonSize size, const QwNeonRegister dst, |
1393 const QwNeonRegister src); | 1395 const QwNeonRegister src); |
1394 void vrev32(NeonSize size, const QwNeonRegister dst, | 1396 void vrev32(NeonSize size, const QwNeonRegister dst, |
(...skipping 402 matching lines...) Loading... |
1797 explicit EnsureSpace(Assembler* assembler) { | 1799 explicit EnsureSpace(Assembler* assembler) { |
1798 assembler->CheckBuffer(); | 1800 assembler->CheckBuffer(); |
1799 } | 1801 } |
1800 }; | 1802 }; |
1801 | 1803 |
1802 | 1804 |
1803 } // namespace internal | 1805 } // namespace internal |
1804 } // namespace v8 | 1806 } // namespace v8 |
1805 | 1807 |
1806 #endif // V8_ARM_ASSEMBLER_ARM_H_ | 1808 #endif // V8_ARM_ASSEMBLER_ARM_H_ |
OLD | NEW |