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 1353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1364 void vmul(QwNeonRegister dst, QwNeonRegister src1, | 1364 void vmul(QwNeonRegister dst, QwNeonRegister src1, |
1365 QwNeonRegister src2); | 1365 QwNeonRegister src2); |
1366 void vmul(NeonSize size, QwNeonRegister dst, QwNeonRegister src1, | 1366 void vmul(NeonSize size, QwNeonRegister dst, QwNeonRegister src1, |
1367 QwNeonRegister src2); | 1367 QwNeonRegister src2); |
1368 void vmin(QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2); | 1368 void vmin(QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2); |
1369 void vmin(NeonDataType dt, QwNeonRegister dst, | 1369 void vmin(NeonDataType dt, QwNeonRegister dst, |
1370 QwNeonRegister src1, QwNeonRegister src2); | 1370 QwNeonRegister src1, QwNeonRegister src2); |
1371 void vmax(QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2); | 1371 void vmax(QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2); |
1372 void vmax(NeonDataType dt, QwNeonRegister dst, | 1372 void vmax(NeonDataType dt, QwNeonRegister dst, |
1373 QwNeonRegister src1, QwNeonRegister src2); | 1373 QwNeonRegister src1, QwNeonRegister src2); |
| 1374 void vpadd(DwVfpRegister dst, DwVfpRegister src1, DwVfpRegister src2); |
| 1375 void vpadd(NeonSize size, DwVfpRegister dst, DwVfpRegister src1, |
| 1376 DwVfpRegister src2); |
1374 void vpmin(NeonDataType dt, DwVfpRegister dst, DwVfpRegister src1, | 1377 void vpmin(NeonDataType dt, DwVfpRegister dst, DwVfpRegister src1, |
1375 DwVfpRegister src2); | 1378 DwVfpRegister src2); |
1376 void vpmax(NeonDataType dt, DwVfpRegister dst, DwVfpRegister src1, | 1379 void vpmax(NeonDataType dt, DwVfpRegister dst, DwVfpRegister src1, |
1377 DwVfpRegister src2); | 1380 DwVfpRegister src2); |
1378 void vshl(NeonDataType dt, QwNeonRegister dst, QwNeonRegister src, int shift); | 1381 void vshl(NeonDataType dt, QwNeonRegister dst, QwNeonRegister src, int shift); |
1379 void vshr(NeonDataType dt, QwNeonRegister dst, QwNeonRegister src, int shift); | 1382 void vshr(NeonDataType dt, QwNeonRegister dst, QwNeonRegister src, int shift); |
1380 // vrecpe and vrsqrte only support floating point lanes. | 1383 // vrecpe and vrsqrte only support floating point lanes. |
1381 void vrecpe(QwNeonRegister dst, QwNeonRegister src); | 1384 void vrecpe(QwNeonRegister dst, QwNeonRegister src); |
1382 void vrsqrte(QwNeonRegister dst, QwNeonRegister src); | 1385 void vrsqrte(QwNeonRegister dst, QwNeonRegister src); |
1383 void vrecps(QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2); | 1386 void vrecps(QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2); |
(...skipping 415 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1799 | 1802 |
1800 void Emit(Address addr); | 1803 void Emit(Address addr); |
1801 void FlushICache(Isolate* isolate); | 1804 void FlushICache(Isolate* isolate); |
1802 }; | 1805 }; |
1803 | 1806 |
1804 | 1807 |
1805 } // namespace internal | 1808 } // namespace internal |
1806 } // namespace v8 | 1809 } // namespace v8 |
1807 | 1810 |
1808 #endif // V8_ARM_ASSEMBLER_ARM_H_ | 1811 #endif // V8_ARM_ASSEMBLER_ARM_H_ |
OLD | NEW |