OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 548 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
559 COMPARE(vsqrt(s0, s0), | 559 COMPARE(vsqrt(s0, s0), |
560 "eeb10ac0 vsqrt.f32 s0, s0"); | 560 "eeb10ac0 vsqrt.f32 s0, s0"); |
561 COMPARE(vsqrt(s2, s3, ne), | 561 COMPARE(vsqrt(s2, s3, ne), |
562 "1eb11ae1 vsqrtne.f32 s2, s3"); | 562 "1eb11ae1 vsqrtne.f32 s2, s3"); |
563 | 563 |
564 COMPARE(vmov(d0, 1.0), | 564 COMPARE(vmov(d0, 1.0), |
565 "eeb70b00 vmov.f64 d0, #1"); | 565 "eeb70b00 vmov.f64 d0, #1"); |
566 COMPARE(vmov(d2, -13.0), | 566 COMPARE(vmov(d2, -13.0), |
567 "eeba2b0a vmov.f64 d2, #-13"); | 567 "eeba2b0a vmov.f64 d2, #-13"); |
568 | 568 |
| 569 COMPARE(vmov(s1, -1.0), |
| 570 "eeff0a00 vmov.f32 s1, #-1"); |
| 571 COMPARE(vmov(s3, 13.0), |
| 572 "eef21a0a vmov.f32 s3, #13"); |
| 573 |
569 COMPARE(vmov(d0, VmovIndexLo, r0), | 574 COMPARE(vmov(d0, VmovIndexLo, r0), |
570 "ee000b10 vmov.32 d0[0], r0"); | 575 "ee000b10 vmov.32 d0[0], r0"); |
571 COMPARE(vmov(d0, VmovIndexHi, r0), | 576 COMPARE(vmov(d0, VmovIndexHi, r0), |
572 "ee200b10 vmov.32 d0[1], r0"); | 577 "ee200b10 vmov.32 d0[1], r0"); |
573 | 578 |
574 COMPARE(vmov(r2, VmovIndexLo, d15), | 579 COMPARE(vmov(r2, VmovIndexLo, d15), |
575 "ee1f2b10 vmov.32 r2, d15[0]"); | 580 "ee1f2b10 vmov.32 r2, d15[0]"); |
576 COMPARE(vmov(r3, VmovIndexHi, d14), | 581 COMPARE(vmov(r3, VmovIndexHi, d14), |
577 "ee3e3b10 vmov.32 r3, d14[1]"); | 582 "ee3e3b10 vmov.32 r3, d14[1]"); |
578 | 583 |
(...skipping 487 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1066 | 1071 |
1067 COMPARE(dsb(ISH), | 1072 COMPARE(dsb(ISH), |
1068 "f57ff04b dsb ish"); | 1073 "f57ff04b dsb ish"); |
1069 | 1074 |
1070 COMPARE(isb(ISH), | 1075 COMPARE(isb(ISH), |
1071 "f57ff06b isb ish"); | 1076 "f57ff06b isb ish"); |
1072 } | 1077 } |
1073 | 1078 |
1074 VERIFY_RUN(); | 1079 VERIFY_RUN(); |
1075 } | 1080 } |
OLD | NEW |