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 1369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1380 void vmul(QwNeonRegister dst, QwNeonRegister src1, | 1380 void vmul(QwNeonRegister dst, QwNeonRegister src1, |
1381 QwNeonRegister src2); | 1381 QwNeonRegister src2); |
1382 void vmul(NeonSize size, QwNeonRegister dst, QwNeonRegister src1, | 1382 void vmul(NeonSize size, QwNeonRegister dst, QwNeonRegister src1, |
1383 QwNeonRegister src2); | 1383 QwNeonRegister src2); |
1384 void vmin(QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2); | 1384 void vmin(QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2); |
1385 void vmin(NeonDataType dt, QwNeonRegister dst, | 1385 void vmin(NeonDataType dt, QwNeonRegister dst, |
1386 QwNeonRegister src1, QwNeonRegister src2); | 1386 QwNeonRegister src1, QwNeonRegister src2); |
1387 void vmax(QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2); | 1387 void vmax(QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2); |
1388 void vmax(NeonDataType dt, QwNeonRegister dst, | 1388 void vmax(NeonDataType dt, QwNeonRegister dst, |
1389 QwNeonRegister src1, QwNeonRegister src2); | 1389 QwNeonRegister src1, QwNeonRegister src2); |
| 1390 void vshl(NeonDataType dt, QwNeonRegister dst, QwNeonRegister src, int shift); |
| 1391 void vshr(NeonDataType dt, QwNeonRegister dst, QwNeonRegister src, int shift); |
1390 // vrecpe and vrsqrte only support floating point lanes. | 1392 // vrecpe and vrsqrte only support floating point lanes. |
1391 void vrecpe(QwNeonRegister dst, QwNeonRegister src); | 1393 void vrecpe(QwNeonRegister dst, QwNeonRegister src); |
1392 void vrsqrte(QwNeonRegister dst, QwNeonRegister src); | 1394 void vrsqrte(QwNeonRegister dst, QwNeonRegister src); |
1393 void vrecps(QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2); | 1395 void vrecps(QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2); |
1394 void vrsqrts(QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2); | 1396 void vrsqrts(QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2); |
1395 void vtst(NeonSize size, QwNeonRegister dst, QwNeonRegister src1, | 1397 void vtst(NeonSize size, QwNeonRegister dst, QwNeonRegister src1, |
1396 QwNeonRegister src2); | 1398 QwNeonRegister src2); |
1397 void vceq(QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2); | 1399 void vceq(QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2); |
1398 void vceq(NeonSize size, QwNeonRegister dst, QwNeonRegister src1, | 1400 void vceq(NeonSize size, QwNeonRegister dst, QwNeonRegister src1, |
1399 QwNeonRegister src2); | 1401 QwNeonRegister src2); |
(...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1814 explicit EnsureSpace(Assembler* assembler) { | 1816 explicit EnsureSpace(Assembler* assembler) { |
1815 assembler->CheckBuffer(); | 1817 assembler->CheckBuffer(); |
1816 } | 1818 } |
1817 }; | 1819 }; |
1818 | 1820 |
1819 | 1821 |
1820 } // namespace internal | 1822 } // namespace internal |
1821 } // namespace v8 | 1823 } // namespace v8 |
1822 | 1824 |
1823 #endif // V8_ARM_ASSEMBLER_ARM_H_ | 1825 #endif // V8_ARM_ASSEMBLER_ARM_H_ |
OLD | NEW |