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 1240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1251 const DwVfpRegister src2, | 1251 const DwVfpRegister src2, |
1252 const Condition cond = al); | 1252 const Condition cond = al); |
1253 void vcmp(const SwVfpRegister src1, const SwVfpRegister src2, | 1253 void vcmp(const SwVfpRegister src1, const SwVfpRegister src2, |
1254 const Condition cond = al); | 1254 const Condition cond = al); |
1255 void vcmp(const DwVfpRegister src1, | 1255 void vcmp(const DwVfpRegister src1, |
1256 const double src2, | 1256 const double src2, |
1257 const Condition cond = al); | 1257 const Condition cond = al); |
1258 void vcmp(const SwVfpRegister src1, const float src2, | 1258 void vcmp(const SwVfpRegister src1, const float src2, |
1259 const Condition cond = al); | 1259 const Condition cond = al); |
1260 | 1260 |
| 1261 void vmaxnm(const DwVfpRegister dst, |
| 1262 const DwVfpRegister src1, |
| 1263 const DwVfpRegister src2); |
| 1264 void vmaxnm(const SwVfpRegister dst, |
| 1265 const SwVfpRegister src1, |
| 1266 const SwVfpRegister src2); |
| 1267 void vminnm(const DwVfpRegister dst, |
| 1268 const DwVfpRegister src1, |
| 1269 const DwVfpRegister src2); |
| 1270 void vminnm(const SwVfpRegister dst, |
| 1271 const SwVfpRegister src1, |
| 1272 const SwVfpRegister src2); |
| 1273 |
1261 // VSEL supports cond in {eq, ne, ge, lt, gt, le, vs, vc}. | 1274 // VSEL supports cond in {eq, ne, ge, lt, gt, le, vs, vc}. |
1262 void vsel(const Condition cond, | 1275 void vsel(const Condition cond, |
1263 const DwVfpRegister dst, | 1276 const DwVfpRegister dst, |
1264 const DwVfpRegister src1, | 1277 const DwVfpRegister src1, |
1265 const DwVfpRegister src2); | 1278 const DwVfpRegister src2); |
1266 void vsel(const Condition cond, | 1279 void vsel(const Condition cond, |
1267 const SwVfpRegister dst, | 1280 const SwVfpRegister dst, |
1268 const SwVfpRegister src1, | 1281 const SwVfpRegister src1, |
1269 const SwVfpRegister src2); | 1282 const SwVfpRegister src2); |
1270 | 1283 |
(...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1685 explicit EnsureSpace(Assembler* assembler) { | 1698 explicit EnsureSpace(Assembler* assembler) { |
1686 assembler->CheckBuffer(); | 1699 assembler->CheckBuffer(); |
1687 } | 1700 } |
1688 }; | 1701 }; |
1689 | 1702 |
1690 | 1703 |
1691 } // namespace internal | 1704 } // namespace internal |
1692 } // namespace v8 | 1705 } // namespace v8 |
1693 | 1706 |
1694 #endif // V8_ARM_ASSEMBLER_ARM_H_ | 1707 #endif // V8_ARM_ASSEMBLER_ARM_H_ |
OLD | NEW |