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 1195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1206 const Condition cond = al); | 1206 const Condition cond = al); |
1207 void vsqrt(const DwVfpRegister dst, | 1207 void vsqrt(const DwVfpRegister dst, |
1208 const DwVfpRegister src, | 1208 const DwVfpRegister src, |
1209 const Condition cond = al); | 1209 const Condition cond = al); |
1210 void vsqrt(const SwVfpRegister dst, const SwVfpRegister src, | 1210 void vsqrt(const SwVfpRegister dst, const SwVfpRegister src, |
1211 const Condition cond = al); | 1211 const Condition cond = al); |
1212 | 1212 |
1213 // ARMv8 rounding instructions. | 1213 // ARMv8 rounding instructions. |
1214 void vrinta(const DwVfpRegister dst, const DwVfpRegister src); | 1214 void vrinta(const DwVfpRegister dst, const DwVfpRegister src); |
1215 void vrintn(const DwVfpRegister dst, const DwVfpRegister src); | 1215 void vrintn(const DwVfpRegister dst, const DwVfpRegister src); |
| 1216 void vrintm(const SwVfpRegister dst, const SwVfpRegister src); |
1216 void vrintm(const DwVfpRegister dst, const DwVfpRegister src); | 1217 void vrintm(const DwVfpRegister dst, const DwVfpRegister src); |
1217 void vrintp(const DwVfpRegister dst, const DwVfpRegister src); | 1218 void vrintp(const DwVfpRegister dst, const DwVfpRegister src); |
1218 void vrintz(const DwVfpRegister dst, const DwVfpRegister src, | 1219 void vrintz(const DwVfpRegister dst, const DwVfpRegister src, |
1219 const Condition cond = al); | 1220 const Condition cond = al); |
1220 | 1221 |
1221 // Support for NEON. | 1222 // Support for NEON. |
1222 // All these APIs support D0 to D31 and Q0 to Q15. | 1223 // All these APIs support D0 to D31 and Q0 to Q15. |
1223 | 1224 |
1224 void vld1(NeonSize size, | 1225 void vld1(NeonSize size, |
1225 const NeonListOperand& dst, | 1226 const NeonListOperand& dst, |
(...skipping 395 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1621 explicit EnsureSpace(Assembler* assembler) { | 1622 explicit EnsureSpace(Assembler* assembler) { |
1622 assembler->CheckBuffer(); | 1623 assembler->CheckBuffer(); |
1623 } | 1624 } |
1624 }; | 1625 }; |
1625 | 1626 |
1626 | 1627 |
1627 } // namespace internal | 1628 } // namespace internal |
1628 } // namespace v8 | 1629 } // namespace v8 |
1629 | 1630 |
1630 #endif // V8_ARM_ASSEMBLER_ARM_H_ | 1631 #endif // V8_ARM_ASSEMBLER_ARM_H_ |
OLD | NEW |