OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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 1390 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1401 COMPARE(fsqrt(d10, d11), "fsqrt d10, d11"); | 1401 COMPARE(fsqrt(d10, d11), "fsqrt d10, d11"); |
1402 COMPARE(fsqrt(d31, d30), "fsqrt d31, d30"); | 1402 COMPARE(fsqrt(d31, d30), "fsqrt d31, d30"); |
1403 COMPARE(frinta(s10, s11), "frinta s10, s11"); | 1403 COMPARE(frinta(s10, s11), "frinta s10, s11"); |
1404 COMPARE(frinta(s31, s30), "frinta s31, s30"); | 1404 COMPARE(frinta(s31, s30), "frinta s31, s30"); |
1405 COMPARE(frinta(d12, d13), "frinta d12, d13"); | 1405 COMPARE(frinta(d12, d13), "frinta d12, d13"); |
1406 COMPARE(frinta(d31, d30), "frinta d31, d30"); | 1406 COMPARE(frinta(d31, d30), "frinta d31, d30"); |
1407 COMPARE(frintn(s10, s11), "frintn s10, s11"); | 1407 COMPARE(frintn(s10, s11), "frintn s10, s11"); |
1408 COMPARE(frintn(s31, s30), "frintn s31, s30"); | 1408 COMPARE(frintn(s31, s30), "frintn s31, s30"); |
1409 COMPARE(frintn(d12, d13), "frintn d12, d13"); | 1409 COMPARE(frintn(d12, d13), "frintn d12, d13"); |
1410 COMPARE(frintn(d31, d30), "frintn d31, d30"); | 1410 COMPARE(frintn(d31, d30), "frintn d31, d30"); |
| 1411 COMPARE(frintp(s10, s11), "frintp s10, s11"); |
| 1412 COMPARE(frintp(s31, s30), "frintp s31, s30"); |
| 1413 COMPARE(frintp(d12, d13), "frintp d12, d13"); |
| 1414 COMPARE(frintp(d31, d30), "frintp d31, d30"); |
1411 COMPARE(frintz(s10, s11), "frintz s10, s11"); | 1415 COMPARE(frintz(s10, s11), "frintz s10, s11"); |
1412 COMPARE(frintz(s31, s30), "frintz s31, s30"); | 1416 COMPARE(frintz(s31, s30), "frintz s31, s30"); |
1413 COMPARE(frintz(d12, d13), "frintz d12, d13"); | 1417 COMPARE(frintz(d12, d13), "frintz d12, d13"); |
1414 COMPARE(frintz(d31, d30), "frintz d31, d30"); | 1418 COMPARE(frintz(d31, d30), "frintz d31, d30"); |
1415 COMPARE(fcvt(d14, s15), "fcvt d14, s15"); | 1419 COMPARE(fcvt(d14, s15), "fcvt d14, s15"); |
1416 COMPARE(fcvt(d31, s31), "fcvt d31, s31"); | 1420 COMPARE(fcvt(d31, s31), "fcvt d31, s31"); |
1417 | 1421 |
1418 CLEANUP(); | 1422 CLEANUP(); |
1419 } | 1423 } |
1420 | 1424 |
(...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1755 COMPARE(Dsb(FullSystem, BarrierOther), "dsb sy (0b1100)"); | 1759 COMPARE(Dsb(FullSystem, BarrierOther), "dsb sy (0b1100)"); |
1756 COMPARE(Dsb(InnerShareable, BarrierOther), "dsb sy (0b1000)"); | 1760 COMPARE(Dsb(InnerShareable, BarrierOther), "dsb sy (0b1000)"); |
1757 COMPARE(Dsb(NonShareable, BarrierOther), "dsb sy (0b0100)"); | 1761 COMPARE(Dsb(NonShareable, BarrierOther), "dsb sy (0b0100)"); |
1758 COMPARE(Dsb(OuterShareable, BarrierOther), "dsb sy (0b0000)"); | 1762 COMPARE(Dsb(OuterShareable, BarrierOther), "dsb sy (0b0000)"); |
1759 | 1763 |
1760 // ISB | 1764 // ISB |
1761 COMPARE(Isb(), "isb"); | 1765 COMPARE(Isb(), "isb"); |
1762 | 1766 |
1763 CLEANUP(); | 1767 CLEANUP(); |
1764 } | 1768 } |
OLD | NEW |