| 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 1350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1361 void vcvt_f32_u32(const QwNeonRegister dst, const QwNeonRegister src); | 1361 void vcvt_f32_u32(const QwNeonRegister dst, const QwNeonRegister src); |
| 1362 void vcvt_s32_f32(const QwNeonRegister dst, const QwNeonRegister src); | 1362 void vcvt_s32_f32(const QwNeonRegister dst, const QwNeonRegister src); |
| 1363 void vcvt_u32_f32(const QwNeonRegister dst, const QwNeonRegister src); | 1363 void vcvt_u32_f32(const QwNeonRegister dst, const QwNeonRegister src); |
| 1364 | 1364 |
| 1365 void vabs(const QwNeonRegister dst, const QwNeonRegister src); | 1365 void vabs(const QwNeonRegister dst, const QwNeonRegister src); |
| 1366 void vabs(NeonSize size, const QwNeonRegister dst, const QwNeonRegister src); | 1366 void vabs(NeonSize size, const QwNeonRegister dst, const QwNeonRegister src); |
| 1367 void vneg(const QwNeonRegister dst, const QwNeonRegister src); | 1367 void vneg(const QwNeonRegister dst, const QwNeonRegister src); |
| 1368 void vneg(NeonSize size, const QwNeonRegister dst, const QwNeonRegister src); | 1368 void vneg(NeonSize size, const QwNeonRegister dst, const QwNeonRegister src); |
| 1369 void veor(DwVfpRegister dst, DwVfpRegister src1, DwVfpRegister src2); | 1369 void veor(DwVfpRegister dst, DwVfpRegister src1, DwVfpRegister src2); |
| 1370 void veor(QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2); | 1370 void veor(QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2); |
| 1371 void vand(QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2); |
| 1372 void vorr(QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2); |
| 1371 void vadd(const QwNeonRegister dst, const QwNeonRegister src1, | 1373 void vadd(const QwNeonRegister dst, const QwNeonRegister src1, |
| 1372 const QwNeonRegister src2); | 1374 const QwNeonRegister src2); |
| 1373 void vadd(NeonSize size, const QwNeonRegister dst, const QwNeonRegister src1, | 1375 void vadd(NeonSize size, const QwNeonRegister dst, const QwNeonRegister src1, |
| 1374 const QwNeonRegister src2); | 1376 const QwNeonRegister src2); |
| 1375 void vsub(const QwNeonRegister dst, const QwNeonRegister src1, | 1377 void vsub(const QwNeonRegister dst, const QwNeonRegister src1, |
| 1376 const QwNeonRegister src2); | 1378 const QwNeonRegister src2); |
| 1377 void vsub(NeonSize size, const QwNeonRegister dst, const QwNeonRegister src1, | 1379 void vsub(NeonSize size, const QwNeonRegister dst, const QwNeonRegister src1, |
| 1378 const QwNeonRegister src2); | 1380 const QwNeonRegister src2); |
| 1379 void vmul(const QwNeonRegister dst, const QwNeonRegister src1, | 1381 void vmul(const QwNeonRegister dst, const QwNeonRegister src1, |
| 1380 const QwNeonRegister src2); | 1382 const QwNeonRegister src2); |
| (...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1806 explicit EnsureSpace(Assembler* assembler) { | 1808 explicit EnsureSpace(Assembler* assembler) { |
| 1807 assembler->CheckBuffer(); | 1809 assembler->CheckBuffer(); |
| 1808 } | 1810 } |
| 1809 }; | 1811 }; |
| 1810 | 1812 |
| 1811 | 1813 |
| 1812 } // namespace internal | 1814 } // namespace internal |
| 1813 } // namespace v8 | 1815 } // namespace v8 |
| 1814 | 1816 |
| 1815 #endif // V8_ARM_ASSEMBLER_ARM_H_ | 1817 #endif // V8_ARM_ASSEMBLER_ARM_H_ |
| OLD | NEW |