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 1193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1204 const Condition cond = al); | 1204 const Condition cond = al); |
1205 void vcmp(const SwVfpRegister src1, const float src2, | 1205 void vcmp(const SwVfpRegister src1, const float src2, |
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 SwVfpRegister dst, const SwVfpRegister src); |
1214 void vrinta(const DwVfpRegister dst, const DwVfpRegister src); | 1215 void vrinta(const DwVfpRegister dst, const DwVfpRegister src); |
| 1216 void vrintn(const SwVfpRegister dst, const SwVfpRegister src); |
1215 void vrintn(const DwVfpRegister dst, const DwVfpRegister src); | 1217 void vrintn(const DwVfpRegister dst, const DwVfpRegister src); |
1216 void vrintm(const SwVfpRegister dst, const SwVfpRegister src); | 1218 void vrintm(const SwVfpRegister dst, const SwVfpRegister src); |
1217 void vrintm(const DwVfpRegister dst, const DwVfpRegister src); | 1219 void vrintm(const DwVfpRegister dst, const DwVfpRegister src); |
1218 void vrintp(const SwVfpRegister dst, const SwVfpRegister src); | 1220 void vrintp(const SwVfpRegister dst, const SwVfpRegister src); |
1219 void vrintp(const DwVfpRegister dst, const DwVfpRegister src); | 1221 void vrintp(const DwVfpRegister dst, const DwVfpRegister src); |
| 1222 void vrintz(const SwVfpRegister dst, const SwVfpRegister src, |
| 1223 const Condition cond = al); |
1220 void vrintz(const DwVfpRegister dst, const DwVfpRegister src, | 1224 void vrintz(const DwVfpRegister dst, const DwVfpRegister src, |
1221 const Condition cond = al); | 1225 const Condition cond = al); |
1222 | 1226 |
1223 // Support for NEON. | 1227 // Support for NEON. |
1224 // All these APIs support D0 to D31 and Q0 to Q15. | 1228 // All these APIs support D0 to D31 and Q0 to Q15. |
1225 | 1229 |
1226 void vld1(NeonSize size, | 1230 void vld1(NeonSize size, |
1227 const NeonListOperand& dst, | 1231 const NeonListOperand& dst, |
1228 const NeonMemOperand& src); | 1232 const NeonMemOperand& src); |
1229 void vst1(NeonSize size, | 1233 void vst1(NeonSize size, |
(...skipping 393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1623 explicit EnsureSpace(Assembler* assembler) { | 1627 explicit EnsureSpace(Assembler* assembler) { |
1624 assembler->CheckBuffer(); | 1628 assembler->CheckBuffer(); |
1625 } | 1629 } |
1626 }; | 1630 }; |
1627 | 1631 |
1628 | 1632 |
1629 } // namespace internal | 1633 } // namespace internal |
1630 } // namespace v8 | 1634 } // namespace v8 |
1631 | 1635 |
1632 #endif // V8_ARM_ASSEMBLER_ARM_H_ | 1636 #endif // V8_ARM_ASSEMBLER_ARM_H_ |
OLD | NEW |