| 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 1362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1373 void vadd(NeonSize size, const QwNeonRegister dst, const QwNeonRegister src1, | 1373 void vadd(NeonSize size, const QwNeonRegister dst, const QwNeonRegister src1, |
| 1374 const QwNeonRegister src2); | 1374 const QwNeonRegister src2); |
| 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 vrecpe(const QwNeonRegister dst, const QwNeonRegister src); |
| 1384 void vrecps(const QwNeonRegister dst, const QwNeonRegister src1, |
| 1385 const QwNeonRegister src2); |
| 1386 void vrsqrte(const QwNeonRegister dst, const QwNeonRegister src); |
| 1387 void vrsqrts(const QwNeonRegister dst, const QwNeonRegister src1, |
| 1388 const QwNeonRegister src2); |
| 1383 void vtst(NeonSize size, const QwNeonRegister dst, const QwNeonRegister src1, | 1389 void vtst(NeonSize size, const QwNeonRegister dst, const QwNeonRegister src1, |
| 1384 const QwNeonRegister src2); | 1390 const QwNeonRegister src2); |
| 1385 void vceq(const QwNeonRegister dst, const QwNeonRegister src1, | 1391 void vceq(const QwNeonRegister dst, const QwNeonRegister src1, |
| 1386 const QwNeonRegister src2); | 1392 const QwNeonRegister src2); |
| 1387 void vceq(NeonSize size, const QwNeonRegister dst, const QwNeonRegister src1, | 1393 void vceq(NeonSize size, const QwNeonRegister dst, const QwNeonRegister src1, |
| 1388 const QwNeonRegister src2); | 1394 const QwNeonRegister src2); |
| 1389 void vbsl(const QwNeonRegister dst, const QwNeonRegister src1, | 1395 void vbsl(const QwNeonRegister dst, const QwNeonRegister src1, |
| 1390 const QwNeonRegister src2); | 1396 const QwNeonRegister src2); |
| 1391 void vext(const QwNeonRegister dst, const QwNeonRegister src1, | 1397 void vext(const QwNeonRegister dst, const QwNeonRegister src1, |
| 1392 const QwNeonRegister src2, int bytes); | 1398 const QwNeonRegister src2, int bytes); |
| (...skipping 406 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1799 explicit EnsureSpace(Assembler* assembler) { | 1805 explicit EnsureSpace(Assembler* assembler) { |
| 1800 assembler->CheckBuffer(); | 1806 assembler->CheckBuffer(); |
| 1801 } | 1807 } |
| 1802 }; | 1808 }; |
| 1803 | 1809 |
| 1804 | 1810 |
| 1805 } // namespace internal | 1811 } // namespace internal |
| 1806 } // namespace v8 | 1812 } // namespace v8 |
| 1807 | 1813 |
| 1808 #endif // V8_ARM_ASSEMBLER_ARM_H_ | 1814 #endif // V8_ARM_ASSEMBLER_ARM_H_ |
| OLD | NEW |