| 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 1662 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1673 } | 1673 } |
| 1674 | 1674 |
| 1675 | 1675 |
| 1676 // Support for VFP. | 1676 // Support for VFP. |
| 1677 | 1677 |
| 1678 void Assembler::vldr(const DwVfpRegister dst, | 1678 void Assembler::vldr(const DwVfpRegister dst, |
| 1679 const Register base, | 1679 const Register base, |
| 1680 int offset, | 1680 int offset, |
| 1681 const Condition cond) { | 1681 const Condition cond) { |
| 1682 // Ddst = MEM(Rbase + offset). | 1682 // Ddst = MEM(Rbase + offset). |
| 1683 // Instruction details available in ARM DDI 0406A, A8-628. | 1683 // Instruction details available in ARM DDI 0406C.b, A8-924. |
| 1684 // cond(31-28) | 1101(27-24)| U001(23-20) | Rbase(19-16) | | 1684 // cond(31-28) | 1101(27-24)| U(23) | D(22) | 01(21-20) | Rbase(19-16) | |
| 1685 // Vdst(15-12) | 1011(11-8) | offset | 1685 // Vd(15-12) | 1011(11-8) | offset |
| 1686 ASSERT(CpuFeatures::IsEnabled(VFP2)); | 1686 ASSERT(CpuFeatures::IsEnabled(VFP2)); |
| 1687 int u = 1; | 1687 int u = 1; |
| 1688 if (offset < 0) { | 1688 if (offset < 0) { |
| 1689 offset = -offset; | 1689 offset = -offset; |
| 1690 u = 0; | 1690 u = 0; |
| 1691 } | 1691 } |
| 1692 ASSERT(offset >= 0); |
| 1693 int vd, d; |
| 1694 dst.split_code(&vd, &d); |
| 1692 | 1695 |
| 1693 ASSERT(offset >= 0); | 1696 ASSERT(offset >= 0); |
| 1694 if ((offset % 4) == 0 && (offset / 4) < 256) { | 1697 if ((offset % 4) == 0 && (offset / 4) < 256) { |
| 1695 emit(cond | u*B23 | 0xD1*B20 | base.code()*B16 | dst.code()*B12 | | 1698 emit(cond | 0xD*B24 | u*B23 | d*B22 | B20 | base.code()*B16 | vd*B12 | |
| 1696 0xB*B8 | ((offset / 4) & 255)); | 1699 0xB*B8 | ((offset / 4) & 255)); |
| 1697 } else { | 1700 } else { |
| 1698 // Larger offsets must be handled by computing the correct address | 1701 // Larger offsets must be handled by computing the correct address |
| 1699 // in the ip register. | 1702 // in the ip register. |
| 1700 ASSERT(!base.is(ip)); | 1703 ASSERT(!base.is(ip)); |
| 1701 if (u == 1) { | 1704 if (u == 1) { |
| 1702 add(ip, base, Operand(offset)); | 1705 add(ip, base, Operand(offset)); |
| 1703 } else { | 1706 } else { |
| 1704 sub(ip, base, Operand(offset)); | 1707 sub(ip, base, Operand(offset)); |
| 1705 } | 1708 } |
| 1706 emit(cond | 0xD1*B20 | ip.code()*B16 | dst.code()*B12 | 0xB*B8); | 1709 emit(cond | 0xD*B24 | d*B22 | B20 | ip.code()*B16 | vd*B12 | 0xB*B8); |
| 1707 } | 1710 } |
| 1708 } | 1711 } |
| 1709 | 1712 |
| 1710 | 1713 |
| 1711 void Assembler::vldr(const DwVfpRegister dst, | 1714 void Assembler::vldr(const DwVfpRegister dst, |
| 1712 const MemOperand& operand, | 1715 const MemOperand& operand, |
| 1713 const Condition cond) { | 1716 const Condition cond) { |
| 1714 ASSERT(!operand.rm().is_valid()); | 1717 ASSERT(!operand.rm().is_valid()); |
| 1715 ASSERT(operand.am_ == Offset); | 1718 ASSERT(operand.am_ == Offset); |
| 1716 vldr(dst, operand.rn(), operand.offset(), cond); | 1719 vldr(dst, operand.rn(), operand.offset(), cond); |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1759 ASSERT(operand.am_ == Offset); | 1762 ASSERT(operand.am_ == Offset); |
| 1760 vldr(dst, operand.rn(), operand.offset(), cond); | 1763 vldr(dst, operand.rn(), operand.offset(), cond); |
| 1761 } | 1764 } |
| 1762 | 1765 |
| 1763 | 1766 |
| 1764 void Assembler::vstr(const DwVfpRegister src, | 1767 void Assembler::vstr(const DwVfpRegister src, |
| 1765 const Register base, | 1768 const Register base, |
| 1766 int offset, | 1769 int offset, |
| 1767 const Condition cond) { | 1770 const Condition cond) { |
| 1768 // MEM(Rbase + offset) = Dsrc. | 1771 // MEM(Rbase + offset) = Dsrc. |
| 1769 // Instruction details available in ARM DDI 0406A, A8-786. | 1772 // Instruction details available in ARM DDI 0406C.b, A8-1082. |
| 1770 // cond(31-28) | 1101(27-24)| U000(23-20) | | Rbase(19-16) | | 1773 // cond(31-28) | 1101(27-24)| U(23) | D(22) | 00(21-20) | Rbase(19-16) | |
| 1771 // Vsrc(15-12) | 1011(11-8) | (offset/4) | 1774 // Vd(15-12) | 1011(11-8) | (offset/4) |
| 1772 ASSERT(CpuFeatures::IsEnabled(VFP2)); | 1775 ASSERT(CpuFeatures::IsEnabled(VFP2)); |
| 1773 int u = 1; | 1776 int u = 1; |
| 1774 if (offset < 0) { | 1777 if (offset < 0) { |
| 1775 offset = -offset; | 1778 offset = -offset; |
| 1776 u = 0; | 1779 u = 0; |
| 1777 } | 1780 } |
| 1778 ASSERT(offset >= 0); | 1781 ASSERT(offset >= 0); |
| 1782 int vd, d; |
| 1783 src.split_code(&vd, &d); |
| 1784 |
| 1779 if ((offset % 4) == 0 && (offset / 4) < 256) { | 1785 if ((offset % 4) == 0 && (offset / 4) < 256) { |
| 1780 emit(cond | u*B23 | 0xD0*B20 | base.code()*B16 | src.code()*B12 | | 1786 emit(cond | 0xD*B24 | u*B23 | d*B22 | base.code()*B16 | vd*B12 | 0xB*B8 | |
| 1781 0xB*B8 | ((offset / 4) & 255)); | 1787 ((offset / 4) & 255)); |
| 1782 } else { | 1788 } else { |
| 1783 // Larger offsets must be handled by computing the correct address | 1789 // Larger offsets must be handled by computing the correct address |
| 1784 // in the ip register. | 1790 // in the ip register. |
| 1785 ASSERT(!base.is(ip)); | 1791 ASSERT(!base.is(ip)); |
| 1786 if (u == 1) { | 1792 if (u == 1) { |
| 1787 add(ip, base, Operand(offset)); | 1793 add(ip, base, Operand(offset)); |
| 1788 } else { | 1794 } else { |
| 1789 sub(ip, base, Operand(offset)); | 1795 sub(ip, base, Operand(offset)); |
| 1790 } | 1796 } |
| 1791 emit(cond | 0xD0*B20 | ip.code()*B16 | src.code()*B12 | 0xB*B8); | 1797 emit(cond | 0xD*B24 | d*B22 | ip.code()*B16 | vd*B12 | 0xB*B8); |
| 1792 } | 1798 } |
| 1793 } | 1799 } |
| 1794 | 1800 |
| 1795 | 1801 |
| 1796 void Assembler::vstr(const DwVfpRegister src, | 1802 void Assembler::vstr(const DwVfpRegister src, |
| 1797 const MemOperand& operand, | 1803 const MemOperand& operand, |
| 1798 const Condition cond) { | 1804 const Condition cond) { |
| 1799 ASSERT(!operand.rm().is_valid()); | 1805 ASSERT(!operand.rm().is_valid()); |
| 1800 ASSERT(operand.am_ == Offset); | 1806 ASSERT(operand.am_ == Offset); |
| 1801 vstr(src, operand.rn(), operand.offset(), cond); | 1807 vstr(src, operand.rn(), operand.offset(), cond); |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1843 ASSERT(operand.am_ == Offset); | 1849 ASSERT(operand.am_ == Offset); |
| 1844 vstr(src, operand.rn(), operand.offset(), cond); | 1850 vstr(src, operand.rn(), operand.offset(), cond); |
| 1845 } | 1851 } |
| 1846 | 1852 |
| 1847 | 1853 |
| 1848 void Assembler::vldm(BlockAddrMode am, | 1854 void Assembler::vldm(BlockAddrMode am, |
| 1849 Register base, | 1855 Register base, |
| 1850 DwVfpRegister first, | 1856 DwVfpRegister first, |
| 1851 DwVfpRegister last, | 1857 DwVfpRegister last, |
| 1852 Condition cond) { | 1858 Condition cond) { |
| 1853 // Instruction details available in ARM DDI 0406A, A8-626. | 1859 // Instruction details available in ARM DDI 0406C.b, A8-922. |
| 1854 // cond(31-28) | 110(27-25)| PUDW1(24-20) | Rbase(19-16) | | 1860 // cond(31-28) | 110(27-25)| PUDW1(24-20) | Rbase(19-16) | |
| 1855 // first(15-12) | 1010(11-8) | (count * 2) | 1861 // first(15-12) | 1011(11-8) | (count * 2) |
| 1856 ASSERT(CpuFeatures::IsEnabled(VFP2)); | 1862 ASSERT(CpuFeatures::IsEnabled(VFP2)); |
| 1857 ASSERT_LE(first.code(), last.code()); | 1863 ASSERT_LE(first.code(), last.code()); |
| 1858 ASSERT(am == ia || am == ia_w || am == db_w); | 1864 ASSERT(am == ia || am == ia_w || am == db_w); |
| 1859 ASSERT(!base.is(pc)); | 1865 ASSERT(!base.is(pc)); |
| 1860 | 1866 |
| 1861 int sd, d; | 1867 int sd, d; |
| 1862 first.split_code(&sd, &d); | 1868 first.split_code(&sd, &d); |
| 1863 int count = last.code() - first.code() + 1; | 1869 int count = last.code() - first.code() + 1; |
| 1864 ASSERT(count <= 16); | 1870 ASSERT(count <= 16); |
| 1865 emit(cond | B27 | B26 | am | d*B22 | B20 | base.code()*B16 | sd*B12 | | 1871 emit(cond | B27 | B26 | am | d*B22 | B20 | base.code()*B16 | sd*B12 | |
| 1866 0xB*B8 | count*2); | 1872 0xB*B8 | count*2); |
| 1867 } | 1873 } |
| 1868 | 1874 |
| 1869 | 1875 |
| 1870 void Assembler::vstm(BlockAddrMode am, | 1876 void Assembler::vstm(BlockAddrMode am, |
| 1871 Register base, | 1877 Register base, |
| 1872 DwVfpRegister first, | 1878 DwVfpRegister first, |
| 1873 DwVfpRegister last, | 1879 DwVfpRegister last, |
| 1874 Condition cond) { | 1880 Condition cond) { |
| 1875 // Instruction details available in ARM DDI 0406A, A8-784. | 1881 // Instruction details available in ARM DDI 0406C.b, A8-1080. |
| 1876 // cond(31-28) | 110(27-25)| PUDW0(24-20) | Rbase(19-16) | | 1882 // cond(31-28) | 110(27-25)| PUDW0(24-20) | Rbase(19-16) | |
| 1877 // first(15-12) | 1011(11-8) | (count * 2) | 1883 // first(15-12) | 1011(11-8) | (count * 2) |
| 1878 ASSERT(CpuFeatures::IsEnabled(VFP2)); | 1884 ASSERT(CpuFeatures::IsEnabled(VFP2)); |
| 1879 ASSERT_LE(first.code(), last.code()); | 1885 ASSERT_LE(first.code(), last.code()); |
| 1880 ASSERT(am == ia || am == ia_w || am == db_w); | 1886 ASSERT(am == ia || am == ia_w || am == db_w); |
| 1881 ASSERT(!base.is(pc)); | 1887 ASSERT(!base.is(pc)); |
| 1882 | 1888 |
| 1883 int sd, d; | 1889 int sd, d; |
| 1884 first.split_code(&sd, &d); | 1890 first.split_code(&sd, &d); |
| 1885 int count = last.code() - first.code() + 1; | 1891 int count = last.code() - first.code() + 1; |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2001 // The double can be encoded in the instruction. | 2007 // The double can be encoded in the instruction. |
| 2002 emit(cond | 0xE*B24 | 0xB*B20 | dst.code()*B12 | 0xB*B8 | enc); | 2008 emit(cond | 0xE*B24 | 0xB*B20 | dst.code()*B12 | 0xB*B8 | enc); |
| 2003 } else { | 2009 } else { |
| 2004 // Synthesise the double from ARM immediates. This could be implemented | 2010 // Synthesise the double from ARM immediates. This could be implemented |
| 2005 // using vldr from a constant pool. | 2011 // using vldr from a constant pool. |
| 2006 uint32_t lo, hi; | 2012 uint32_t lo, hi; |
| 2007 DoubleAsTwoUInt32(imm, &lo, &hi); | 2013 DoubleAsTwoUInt32(imm, &lo, &hi); |
| 2008 mov(ip, Operand(lo)); | 2014 mov(ip, Operand(lo)); |
| 2009 | 2015 |
| 2010 if (scratch.is(no_reg)) { | 2016 if (scratch.is(no_reg)) { |
| 2011 // Move the low part of the double into the lower of the corresponsing S | 2017 if (dst.code() < 16) { |
| 2012 // registers of D register dst. | 2018 // Move the low part of the double into the lower of the corresponsing S |
| 2013 vmov(dst.low(), ip, cond); | 2019 // registers of D register dst. |
| 2020 vmov(dst.low(), ip, cond); |
| 2014 | 2021 |
| 2015 // Move the high part of the double into the higher of the corresponsing S | 2022 // Move the high part of the double into the higher of the corresponsing
S |
| 2016 // registers of D register dst. | 2023 // registers of D register dst. |
| 2017 mov(ip, Operand(hi)); | 2024 mov(ip, Operand(hi)); |
| 2018 vmov(dst.high(), ip, cond); | 2025 vmov(dst.high(), ip, cond); |
| 2026 } else { |
| 2027 // There are no corresponding S registers for D register dst. |
| 2028 |
| 2029 // FIXME: This needs to be fixed!! |
| 2030 vmov(DwVfpRegister::ScratchReg(), d0, cond); |
| 2031 vmov(d0, imm, scratch, cond); |
| 2032 vmov(dst, d0, cond); |
| 2033 vmov(d0, DwVfpRegister::ScratchReg(), cond); |
| 2034 } |
| 2019 } else { | 2035 } else { |
| 2020 // Move the low and high parts of the double to a D register in one | 2036 // Move the low and high parts of the double to a D register in one |
| 2021 // instruction. | 2037 // instruction. |
| 2022 mov(scratch, Operand(hi)); | 2038 mov(scratch, Operand(hi)); |
| 2023 vmov(dst, ip, scratch, cond); | 2039 vmov(dst, ip, scratch, cond); |
| 2024 } | 2040 } |
| 2025 } | 2041 } |
| 2026 } | 2042 } |
| 2027 | 2043 |
| 2028 | 2044 |
| 2029 void Assembler::vmov(const SwVfpRegister dst, | 2045 void Assembler::vmov(const SwVfpRegister dst, |
| 2030 const SwVfpRegister src, | 2046 const SwVfpRegister src, |
| 2031 const Condition cond) { | 2047 const Condition cond) { |
| 2032 // Sd = Sm | 2048 // Sd = Sm |
| 2033 // Instruction details available in ARM DDI 0406B, A8-642. | 2049 // Instruction details available in ARM DDI 0406B, A8-642. |
| 2034 ASSERT(CpuFeatures::IsEnabled(VFP2)); | 2050 ASSERT(CpuFeatures::IsEnabled(VFP2)); |
| 2035 int sd, d, sm, m; | 2051 int sd, d, sm, m; |
| 2036 dst.split_code(&sd, &d); | 2052 dst.split_code(&sd, &d); |
| 2037 src.split_code(&sm, &m); | 2053 src.split_code(&sm, &m); |
| 2038 emit(cond | 0xE*B24 | d*B22 | 0xB*B20 | sd*B12 | 0xA*B8 | B6 | m*B5 | sm); | 2054 emit(cond | 0xE*B24 | d*B22 | 0xB*B20 | sd*B12 | 0xA*B8 | B6 | m*B5 | sm); |
| 2039 } | 2055 } |
| 2040 | 2056 |
| 2041 | 2057 |
| 2042 void Assembler::vmov(const DwVfpRegister dst, | 2058 void Assembler::vmov(const DwVfpRegister dst, |
| 2043 const DwVfpRegister src, | 2059 const DwVfpRegister src, |
| 2044 const Condition cond) { | 2060 const Condition cond) { |
| 2045 // Dd = Dm | 2061 // Dd = Dm |
| 2046 // Instruction details available in ARM DDI 0406B, A8-642. | 2062 // Instruction details available in ARM DDI 0406C.b, A8-938. |
| 2063 // cond(31-28) | 11101(27-23) | D(22) | 11(21-20) | 0000(19-16) | Vd(15-12) | |
| 2064 // 101(11-9) | sz=1(8) | 0(7) | 1(6) | M(5) | 0(4) | Vm(3-0) |
| 2047 ASSERT(CpuFeatures::IsEnabled(VFP2)); | 2065 ASSERT(CpuFeatures::IsEnabled(VFP2)); |
| 2048 emit(cond | 0xE*B24 | 0xB*B20 | | 2066 int vd, d; |
| 2049 dst.code()*B12 | 0x5*B9 | B8 | B6 | src.code()); | 2067 dst.split_code(&vd, &d); |
| 2068 int vm, m; |
| 2069 src.split_code(&vm, &m); |
| 2070 emit(cond | 0x1D*B23 | d*B22 | 0x3*B20 | vd*B12 | 0x5*B9 | B8 | B6 | m*B5 | |
| 2071 vm); |
| 2050 } | 2072 } |
| 2051 | 2073 |
| 2052 | 2074 |
| 2053 void Assembler::vmov(const DwVfpRegister dst, | 2075 void Assembler::vmov(const DwVfpRegister dst, |
| 2054 const Register src1, | 2076 const Register src1, |
| 2055 const Register src2, | 2077 const Register src2, |
| 2056 const Condition cond) { | 2078 const Condition cond) { |
| 2057 // Dm = <Rt,Rt2>. | 2079 // Dm = <Rt,Rt2>. |
| 2058 // Instruction details available in ARM DDI 0406A, A8-646. | 2080 // Instruction details available in ARM DDI 0406C.b, A8-948. |
| 2059 // cond(31-28) | 1100(27-24)| 010(23-21) | op=0(20) | Rt2(19-16) | | 2081 // cond(31-28) | 1100(27-24)| 010(23-21) | op=0(20) | Rt2(19-16) | |
| 2060 // Rt(15-12) | 1011(11-8) | 00(7-6) | M(5) | 1(4) | Vm | 2082 // Rt(15-12) | 1011(11-8) | 00(7-6) | M(5) | 1(4) | Vm |
| 2061 ASSERT(CpuFeatures::IsEnabled(VFP2)); | 2083 ASSERT(CpuFeatures::IsEnabled(VFP2)); |
| 2062 ASSERT(!src1.is(pc) && !src2.is(pc)); | 2084 ASSERT(!src1.is(pc) && !src2.is(pc)); |
| 2085 int vm, m; |
| 2086 dst.split_code(&vm, &m); |
| 2063 emit(cond | 0xC*B24 | B22 | src2.code()*B16 | | 2087 emit(cond | 0xC*B24 | B22 | src2.code()*B16 | |
| 2064 src1.code()*B12 | 0xB*B8 | B4 | dst.code()); | 2088 src1.code()*B12 | 0xB*B8 | m*B5 | B4 | vm); |
| 2065 } | 2089 } |
| 2066 | 2090 |
| 2067 | 2091 |
| 2068 void Assembler::vmov(const Register dst1, | 2092 void Assembler::vmov(const Register dst1, |
| 2069 const Register dst2, | 2093 const Register dst2, |
| 2070 const DwVfpRegister src, | 2094 const DwVfpRegister src, |
| 2071 const Condition cond) { | 2095 const Condition cond) { |
| 2072 // <Rt,Rt2> = Dm. | 2096 // <Rt,Rt2> = Dm. |
| 2073 // Instruction details available in ARM DDI 0406A, A8-646. | 2097 // Instruction details available in ARM DDI 0406C.b, A8-948. |
| 2074 // cond(31-28) | 1100(27-24)| 010(23-21) | op=1(20) | Rt2(19-16) | | 2098 // cond(31-28) | 1100(27-24)| 010(23-21) | op=1(20) | Rt2(19-16) | |
| 2075 // Rt(15-12) | 1011(11-8) | 00(7-6) | M(5) | 1(4) | Vm | 2099 // Rt(15-12) | 1011(11-8) | 00(7-6) | M(5) | 1(4) | Vm |
| 2076 ASSERT(CpuFeatures::IsEnabled(VFP2)); | 2100 ASSERT(CpuFeatures::IsEnabled(VFP2)); |
| 2077 ASSERT(!dst1.is(pc) && !dst2.is(pc)); | 2101 ASSERT(!dst1.is(pc) && !dst2.is(pc)); |
| 2102 int vm, m; |
| 2103 src.split_code(&vm, &m); |
| 2078 emit(cond | 0xC*B24 | B22 | B20 | dst2.code()*B16 | | 2104 emit(cond | 0xC*B24 | B22 | B20 | dst2.code()*B16 | |
| 2079 dst1.code()*B12 | 0xB*B8 | B4 | src.code()); | 2105 dst1.code()*B12 | 0xB*B8 | m*B5 | B4 | vm); |
| 2080 } | 2106 } |
| 2081 | 2107 |
| 2082 | 2108 |
| 2083 void Assembler::vmov(const SwVfpRegister dst, | 2109 void Assembler::vmov(const SwVfpRegister dst, |
| 2084 const Register src, | 2110 const Register src, |
| 2085 const Condition cond) { | 2111 const Condition cond) { |
| 2086 // Sn = Rt. | 2112 // Sn = Rt. |
| 2087 // Instruction details available in ARM DDI 0406A, A8-642. | 2113 // Instruction details available in ARM DDI 0406A, A8-642. |
| 2088 // cond(31-28) | 1110(27-24)| 000(23-21) | op=0(20) | Vn(19-16) | | 2114 // cond(31-28) | 1110(27-24)| 000(23-21) | op=0(20) | Vn(19-16) | |
| 2089 // Rt(15-12) | 1010(11-8) | N(7)=0 | 00(6-5) | 1(4) | 0000(3-0) | 2115 // Rt(15-12) | 1010(11-8) | N(7)=0 | 00(6-5) | 1(4) | 0000(3-0) |
| (...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2282 VFPConversionMode mode, | 2308 VFPConversionMode mode, |
| 2283 const Condition cond) { | 2309 const Condition cond) { |
| 2284 ASSERT(CpuFeatures::IsEnabled(VFP2)); | 2310 ASSERT(CpuFeatures::IsEnabled(VFP2)); |
| 2285 emit(EncodeVCVT(F32, dst.code(), F64, src.code(), mode, cond)); | 2311 emit(EncodeVCVT(F32, dst.code(), F64, src.code(), mode, cond)); |
| 2286 } | 2312 } |
| 2287 | 2313 |
| 2288 | 2314 |
| 2289 void Assembler::vneg(const DwVfpRegister dst, | 2315 void Assembler::vneg(const DwVfpRegister dst, |
| 2290 const DwVfpRegister src, | 2316 const DwVfpRegister src, |
| 2291 const Condition cond) { | 2317 const Condition cond) { |
| 2318 // Instruction details available in ARM DDI 0406C.b, A8-968. |
| 2319 // cond(31-28) | 11101(27-23) | D(22) | 11(21-20) | 0001(19-16) | Vd(15-12) | |
| 2320 // 101(11-9) | sz=1(8) | 0(7) | 1(6) | M(5) | 0(4) | Vm(3-0) |
| 2292 ASSERT(CpuFeatures::IsEnabled(VFP2)); | 2321 ASSERT(CpuFeatures::IsEnabled(VFP2)); |
| 2293 emit(cond | 0xE*B24 | 0xB*B20 | B16 | dst.code()*B12 | | 2322 int vd, d; |
| 2294 0x5*B9 | B8 | B6 | src.code()); | 2323 dst.split_code(&vd, &d); |
| 2324 int vm, m; |
| 2325 src.split_code(&vm, &m); |
| 2326 |
| 2327 emit(cond | 0x1D*B23 | d*B22 | 0x3*B20 | B16 | vd*B12 | 0x5*B9 | B8 | B6 | |
| 2328 m*B5 | vm); |
| 2295 } | 2329 } |
| 2296 | 2330 |
| 2297 | 2331 |
| 2298 void Assembler::vabs(const DwVfpRegister dst, | 2332 void Assembler::vabs(const DwVfpRegister dst, |
| 2299 const DwVfpRegister src, | 2333 const DwVfpRegister src, |
| 2300 const Condition cond) { | 2334 const Condition cond) { |
| 2335 // Instruction details available in ARM DDI 0406C.b, A8-524. |
| 2336 // cond(31-28) | 11101(27-23) | D(22) | 11(21-20) | 0000(19-16) | Vd(15-12) | |
| 2337 // 101(11-9) | sz=1(8) | 1(7) | 1(6) | M(5) | 0(4) | Vm(3-0). |
| 2301 ASSERT(CpuFeatures::IsEnabled(VFP2)); | 2338 ASSERT(CpuFeatures::IsEnabled(VFP2)); |
| 2302 emit(cond | 0xE*B24 | 0xB*B20 | dst.code()*B12 | | 2339 int vd, d; |
| 2303 0x5*B9 | B8 | 0x3*B6 | src.code()); | 2340 dst.split_code(&vd, &d); |
| 2341 int vm, m; |
| 2342 src.split_code(&vm, &m); |
| 2343 emit(cond | 0x1D*B23 | d*B22 | 0x3*B20 | vd*B12 | 0x5*B9 | B8 | B7 | B6 | |
| 2344 m*B5 | vm); |
| 2304 } | 2345 } |
| 2305 | 2346 |
| 2306 | 2347 |
| 2307 void Assembler::vadd(const DwVfpRegister dst, | 2348 void Assembler::vadd(const DwVfpRegister dst, |
| 2308 const DwVfpRegister src1, | 2349 const DwVfpRegister src1, |
| 2309 const DwVfpRegister src2, | 2350 const DwVfpRegister src2, |
| 2310 const Condition cond) { | 2351 const Condition cond) { |
| 2311 // Dd = vadd(Dn, Dm) double precision floating point addition. | 2352 // Dd = vadd(Dn, Dm) double precision floating point addition. |
| 2312 // Dd = D:Vd; Dm=M:Vm; Dn=N:Vm. | 2353 // Dd = D:Vd; Dm=M:Vm; Dn=N:Vm. |
| 2313 // Instruction details available in ARM DDI 0406A, A8-536. | 2354 // Instruction details available in ARM DDI 0406C.b, A8-830. |
| 2314 // cond(31-28) | 11100(27-23)| D=?(22) | 11(21-20) | Vn(19-16) | | 2355 // cond(31-28) | 11100(27-23)| D(22) | 11(21-20) | Vn(19-16) | |
| 2315 // Vd(15-12) | 101(11-9) | sz(8)=1 | N(7)=0 | 0(6) | M=?(5) | 0(4) | Vm(3-0) | 2356 // Vd(15-12) | 101(11-9) | sz=1(8) | N(7) | 0(6) | M(5) | 0(4) | Vm(3-0) |
| 2316 ASSERT(CpuFeatures::IsEnabled(VFP2)); | 2357 ASSERT(CpuFeatures::IsEnabled(VFP2)); |
| 2317 emit(cond | 0xE*B24 | 0x3*B20 | src1.code()*B16 | | 2358 int vd, d; |
| 2318 dst.code()*B12 | 0x5*B9 | B8 | src2.code()); | 2359 dst.split_code(&vd, &d); |
| 2360 int vn, n; |
| 2361 src1.split_code(&vn, &n); |
| 2362 int vm, m; |
| 2363 src2.split_code(&vm, &m); |
| 2364 emit(cond | 0x1C*B23 | d*B22 | 0x3*B20 | vn*B16 | vd*B12 | 0x5*B9 | B8 | |
| 2365 n*B7 | m*B5 | vm); |
| 2319 } | 2366 } |
| 2320 | 2367 |
| 2321 | 2368 |
| 2322 void Assembler::vsub(const DwVfpRegister dst, | 2369 void Assembler::vsub(const DwVfpRegister dst, |
| 2323 const DwVfpRegister src1, | 2370 const DwVfpRegister src1, |
| 2324 const DwVfpRegister src2, | 2371 const DwVfpRegister src2, |
| 2325 const Condition cond) { | 2372 const Condition cond) { |
| 2326 // Dd = vsub(Dn, Dm) double precision floating point subtraction. | 2373 // Dd = vsub(Dn, Dm) double precision floating point subtraction. |
| 2327 // Dd = D:Vd; Dm=M:Vm; Dn=N:Vm. | 2374 // Dd = D:Vd; Dm=M:Vm; Dn=N:Vm. |
| 2328 // Instruction details available in ARM DDI 0406A, A8-784. | 2375 // Instruction details available in ARM DDI 0406C.b, A8-1086. |
| 2329 // cond(31-28) | 11100(27-23)| D=?(22) | 11(21-20) | Vn(19-16) | | 2376 // cond(31-28) | 11100(27-23)| D(22) | 11(21-20) | Vn(19-16) | |
| 2330 // Vd(15-12) | 101(11-9) | sz(8)=1 | N(7)=0 | 1(6) | M=?(5) | 0(4) | Vm(3-0) | 2377 // Vd(15-12) | 101(11-9) | sz=1(8) | N(7) | 1(6) | M(5) | 0(4) | Vm(3-0) |
| 2331 ASSERT(CpuFeatures::IsEnabled(VFP2)); | 2378 ASSERT(CpuFeatures::IsEnabled(VFP2)); |
| 2332 emit(cond | 0xE*B24 | 0x3*B20 | src1.code()*B16 | | 2379 int vd, d; |
| 2333 dst.code()*B12 | 0x5*B9 | B8 | B6 | src2.code()); | 2380 dst.split_code(&vd, &d); |
| 2381 int vn, n; |
| 2382 src1.split_code(&vn, &n); |
| 2383 int vm, m; |
| 2384 src2.split_code(&vm, &m); |
| 2385 emit(cond | 0x1C*B23 | d*B22 | 0x3*B20 | vn*B16 | vd*B12 | 0x5*B9 | B8 | |
| 2386 n*B7 | B6 | m*B5 | vm); |
| 2334 } | 2387 } |
| 2335 | 2388 |
| 2336 | 2389 |
| 2337 void Assembler::vmul(const DwVfpRegister dst, | 2390 void Assembler::vmul(const DwVfpRegister dst, |
| 2338 const DwVfpRegister src1, | 2391 const DwVfpRegister src1, |
| 2339 const DwVfpRegister src2, | 2392 const DwVfpRegister src2, |
| 2340 const Condition cond) { | 2393 const Condition cond) { |
| 2341 // Dd = vmul(Dn, Dm) double precision floating point multiplication. | 2394 // Dd = vmul(Dn, Dm) double precision floating point multiplication. |
| 2342 // Dd = D:Vd; Dm=M:Vm; Dn=N:Vm. | 2395 // Dd = D:Vd; Dm=M:Vm; Dn=N:Vm. |
| 2343 // Instruction details available in ARM DDI 0406A, A8-784. | 2396 // Instruction details available in ARM DDI 0406C.b, A8-960. |
| 2344 // cond(31-28) | 11100(27-23)| D=?(22) | 10(21-20) | Vn(19-16) | | 2397 // cond(31-28) | 11100(27-23)| D(22) | 10(21-20) | Vn(19-16) | |
| 2345 // Vd(15-12) | 101(11-9) | sz(8)=1 | N(7)=0 | 0(6) | M=?(5) | 0(4) | Vm(3-0) | 2398 // Vd(15-12) | 101(11-9) | sz=1(8) | N(7) | 0(6) | M(5) | 0(4) | Vm(3-0) |
| 2346 ASSERT(CpuFeatures::IsEnabled(VFP2)); | 2399 ASSERT(CpuFeatures::IsEnabled(VFP2)); |
| 2347 emit(cond | 0xE*B24 | 0x2*B20 | src1.code()*B16 | | 2400 int vd, d; |
| 2348 dst.code()*B12 | 0x5*B9 | B8 | src2.code()); | 2401 dst.split_code(&vd, &d); |
| 2402 int vn, n; |
| 2403 src1.split_code(&vn, &n); |
| 2404 int vm, m; |
| 2405 src2.split_code(&vm, &m); |
| 2406 emit(cond | 0x1C*B23 | d*B22 | 0x2*B20 | vn*B16 | vd*B12 | 0x5*B9 | B8 | |
| 2407 n*B7 | m*B5 | vm); |
| 2349 } | 2408 } |
| 2350 | 2409 |
| 2351 | 2410 |
| 2352 void Assembler::vmla(const DwVfpRegister dst, | 2411 void Assembler::vmla(const DwVfpRegister dst, |
| 2353 const DwVfpRegister src1, | 2412 const DwVfpRegister src1, |
| 2354 const DwVfpRegister src2, | 2413 const DwVfpRegister src2, |
| 2355 const Condition cond) { | 2414 const Condition cond) { |
| 2356 // Instruction details available in ARM DDI 0406C.b, A8-892. | 2415 // Instruction details available in ARM DDI 0406C.b, A8-932. |
| 2357 // cond(31-28) | 11100(27-23) | D=?(22) | 00(21-20) | Vn(19-16) | | 2416 // cond(31-28) | 11100(27-23) | D(22) | 00(21-20) | Vn(19-16) | |
| 2358 // Vd(15-12) | 101(11-9) | sz(8)=1 | N=?(7) | op(6)=0 | M=?(5) | 0(4) | | 2417 // Vd(15-12) | 101(11-9) | sz=1(8) | N(7) | op=0(6) | M(5) | 0(4) | Vm(3-0) |
| 2359 // Vm(3-0) | 2418 int vd, d; |
| 2360 unsigned x = (cond | 0x1C*B23 | src1.code()*B16 | | 2419 dst.split_code(&vd, &d); |
| 2361 dst.code()*B12 | 0x5*B9 | B8 | src2.code()); | 2420 int vn, n; |
| 2362 emit(x); | 2421 src1.split_code(&vn, &n); |
| 2422 int vm, m; |
| 2423 src2.split_code(&vm, &m); |
| 2424 emit(cond | 0x1C*B23 | d*B22 | vn*B16 | vd*B12 | 0x5*B9 | B8 | n*B7 | m*B5 | |
| 2425 vm); |
| 2363 } | 2426 } |
| 2364 | 2427 |
| 2365 | 2428 |
| 2366 void Assembler::vdiv(const DwVfpRegister dst, | 2429 void Assembler::vdiv(const DwVfpRegister dst, |
| 2367 const DwVfpRegister src1, | 2430 const DwVfpRegister src1, |
| 2368 const DwVfpRegister src2, | 2431 const DwVfpRegister src2, |
| 2369 const Condition cond) { | 2432 const Condition cond) { |
| 2370 // Dd = vdiv(Dn, Dm) double precision floating point division. | 2433 // Dd = vdiv(Dn, Dm) double precision floating point division. |
| 2371 // Dd = D:Vd; Dm=M:Vm; Dn=N:Vm. | 2434 // Dd = D:Vd; Dm=M:Vm; Dn=N:Vm. |
| 2372 // Instruction details available in ARM DDI 0406A, A8-584. | 2435 // Instruction details available in ARM DDI 0406C.b, A8-882. |
| 2373 // cond(31-28) | 11101(27-23)| D=?(22) | 00(21-20) | Vn(19-16) | | 2436 // cond(31-28) | 11101(27-23)| D(22) | 00(21-20) | Vn(19-16) | |
| 2374 // Vd(15-12) | 101(11-9) | sz(8)=1 | N(7)=? | 0(6) | M=?(5) | 0(4) | Vm(3-0) | 2437 // Vd(15-12) | 101(11-9) | sz=1(8) | N(7) | 0(6) | M(5) | 0(4) | Vm(3-0) |
| 2375 ASSERT(CpuFeatures::IsEnabled(VFP2)); | 2438 ASSERT(CpuFeatures::IsEnabled(VFP2)); |
| 2376 emit(cond | 0xE*B24 | B23 | src1.code()*B16 | | 2439 int vd, d; |
| 2377 dst.code()*B12 | 0x5*B9 | B8 | src2.code()); | 2440 dst.split_code(&vd, &d); |
| 2441 int vn, n; |
| 2442 src1.split_code(&vn, &n); |
| 2443 int vm, m; |
| 2444 src2.split_code(&vm, &m); |
| 2445 emit(cond | 0x1D*B23 | d*B22 | vn*B16 | vd*B12 | 0x5*B9 | B8 | n*B7 | m*B5 | |
| 2446 vm); |
| 2378 } | 2447 } |
| 2379 | 2448 |
| 2380 | 2449 |
| 2381 void Assembler::vcmp(const DwVfpRegister src1, | 2450 void Assembler::vcmp(const DwVfpRegister src1, |
| 2382 const DwVfpRegister src2, | 2451 const DwVfpRegister src2, |
| 2383 const Condition cond) { | 2452 const Condition cond) { |
| 2384 // vcmp(Dd, Dm) double precision floating point comparison. | 2453 // vcmp(Dd, Dm) double precision floating point comparison. |
| 2385 // Instruction details available in ARM DDI 0406A, A8-570. | 2454 // Instruction details available in ARM DDI 0406C.b, A8-864. |
| 2386 // cond(31-28) | 11101 (27-23)| D=?(22) | 11 (21-20) | 0100 (19-16) | | 2455 // cond(31-28) | 11101(27-23)| D(22) | 11(21-20) | 0100(19-16) | |
| 2387 // Vd(15-12) | 101(11-9) | sz(8)=1 | E(7)=0 | 1(6) | M(5)=? | 0(4) | Vm(3-0) | 2456 // Vd(15-12) | 101(11-9) | sz=1(8) | E=0(7) | 1(6) | M(5) | 0(4) | Vm(3-0) |
| 2388 ASSERT(CpuFeatures::IsEnabled(VFP2)); | 2457 ASSERT(CpuFeatures::IsEnabled(VFP2)); |
| 2389 emit(cond | 0xE*B24 |B23 | 0x3*B20 | B18 | | 2458 int vd, d; |
| 2390 src1.code()*B12 | 0x5*B9 | B8 | B6 | src2.code()); | 2459 src1.split_code(&vd, &d); |
| 2460 int vm, m; |
| 2461 src2.split_code(&vm, &m); |
| 2462 emit(cond | 0x1D*B23 | d*B22 | 0x3*B20 | 0x4*B16 | vd*B12 | 0x5*B9 | B8 | B6 | |
| 2463 m*B5 | vm); |
| 2391 } | 2464 } |
| 2392 | 2465 |
| 2393 | 2466 |
| 2394 void Assembler::vcmp(const DwVfpRegister src1, | 2467 void Assembler::vcmp(const DwVfpRegister src1, |
| 2395 const double src2, | 2468 const double src2, |
| 2396 const Condition cond) { | 2469 const Condition cond) { |
| 2397 // vcmp(Dd, Dm) double precision floating point comparison. | 2470 // vcmp(Dd, #0.0) double precision floating point comparison. |
| 2398 // Instruction details available in ARM DDI 0406A, A8-570. | 2471 // Instruction details available in ARM DDI 0406C.b, A8-864. |
| 2399 // cond(31-28) | 11101 (27-23)| D=?(22) | 11 (21-20) | 0101 (19-16) | | 2472 // cond(31-28) | 11101(27-23)| D(22) | 11(21-20) | 0101(19-16) | |
| 2400 // Vd(15-12) | 101(11-9) | sz(8)=1 | E(7)=0 | 1(6) | M(5)=? | 0(4) | 0000(3-0) | 2473 // Vd(15-12) | 101(11-9) | sz=1(8) | E=0(7) | 1(6) | 0(5) | 0(4) | 0000(3-0) |
| 2401 ASSERT(CpuFeatures::IsEnabled(VFP2)); | 2474 ASSERT(CpuFeatures::IsEnabled(VFP2)); |
| 2402 ASSERT(src2 == 0.0); | 2475 ASSERT(src2 == 0.0); |
| 2403 emit(cond | 0xE*B24 |B23 | 0x3*B20 | B18 | B16 | | 2476 int vd, d; |
| 2404 src1.code()*B12 | 0x5*B9 | B8 | B6); | 2477 src1.split_code(&vd, &d); |
| 2478 emit(cond | 0x1D*B23 | d*B22 | 0x3*B20 | 0x5*B16 | vd*B12 | 0x5*B9 | B8 | B6); |
| 2405 } | 2479 } |
| 2406 | 2480 |
| 2407 | 2481 |
| 2408 void Assembler::vmsr(Register dst, Condition cond) { | 2482 void Assembler::vmsr(Register dst, Condition cond) { |
| 2409 // Instruction details available in ARM DDI 0406A, A8-652. | 2483 // Instruction details available in ARM DDI 0406A, A8-652. |
| 2410 // cond(31-28) | 1110 (27-24) | 1110(23-20)| 0001 (19-16) | | 2484 // cond(31-28) | 1110 (27-24) | 1110(23-20)| 0001 (19-16) | |
| 2411 // Rt(15-12) | 1010 (11-8) | 0(7) | 00 (6-5) | 1(4) | 0000(3-0) | 2485 // Rt(15-12) | 1010 (11-8) | 0(7) | 00 (6-5) | 1(4) | 0000(3-0) |
| 2412 ASSERT(CpuFeatures::IsEnabled(VFP2)); | 2486 ASSERT(CpuFeatures::IsEnabled(VFP2)); |
| 2413 emit(cond | 0xE*B24 | 0xE*B20 | B16 | | 2487 emit(cond | 0xE*B24 | 0xE*B20 | B16 | |
| 2414 dst.code()*B12 | 0xA*B8 | B4); | 2488 dst.code()*B12 | 0xA*B8 | B4); |
| 2415 } | 2489 } |
| 2416 | 2490 |
| 2417 | 2491 |
| 2418 void Assembler::vmrs(Register dst, Condition cond) { | 2492 void Assembler::vmrs(Register dst, Condition cond) { |
| 2419 // Instruction details available in ARM DDI 0406A, A8-652. | 2493 // Instruction details available in ARM DDI 0406A, A8-652. |
| 2420 // cond(31-28) | 1110 (27-24) | 1111(23-20)| 0001 (19-16) | | 2494 // cond(31-28) | 1110 (27-24) | 1111(23-20)| 0001 (19-16) | |
| 2421 // Rt(15-12) | 1010 (11-8) | 0(7) | 00 (6-5) | 1(4) | 0000(3-0) | 2495 // Rt(15-12) | 1010 (11-8) | 0(7) | 00 (6-5) | 1(4) | 0000(3-0) |
| 2422 ASSERT(CpuFeatures::IsEnabled(VFP2)); | 2496 ASSERT(CpuFeatures::IsEnabled(VFP2)); |
| 2423 emit(cond | 0xE*B24 | 0xF*B20 | B16 | | 2497 emit(cond | 0xE*B24 | 0xF*B20 | B16 | |
| 2424 dst.code()*B12 | 0xA*B8 | B4); | 2498 dst.code()*B12 | 0xA*B8 | B4); |
| 2425 } | 2499 } |
| 2426 | 2500 |
| 2427 | 2501 |
| 2428 void Assembler::vsqrt(const DwVfpRegister dst, | 2502 void Assembler::vsqrt(const DwVfpRegister dst, |
| 2429 const DwVfpRegister src, | 2503 const DwVfpRegister src, |
| 2430 const Condition cond) { | 2504 const Condition cond) { |
| 2431 // cond(31-28) | 11101 (27-23)| D=?(22) | 11 (21-20) | 0001 (19-16) | | 2505 // Instruction details available in ARM DDI 0406C.b, A8-1058. |
| 2432 // Vd(15-12) | 101(11-9) | sz(8)=1 | 11 (7-6) | M(5)=? | 0(4) | Vm(3-0) | 2506 // cond(31-28) | 11101(27-23)| D(22) | 11(21-20) | 0001(19-16) | |
| 2507 // Vd(15-12) | 101(11-9) | sz=1(8) | 11(7-6) | M(5) | 0(4) | Vm(3-0) |
| 2433 ASSERT(CpuFeatures::IsEnabled(VFP2)); | 2508 ASSERT(CpuFeatures::IsEnabled(VFP2)); |
| 2434 emit(cond | 0xE*B24 | B23 | 0x3*B20 | B16 | | 2509 int vd, d; |
| 2435 dst.code()*B12 | 0x5*B9 | B8 | 3*B6 | src.code()); | 2510 dst.split_code(&vd, &d); |
| 2511 int vm, m; |
| 2512 src.split_code(&vm, &m); |
| 2513 emit(cond | 0x1D*B23 | d*B22 | 0x3*B20 | B16 | vd*B12 | 0x5*B9 | B8 | 0x3*B6 | |
| 2514 m*B5 | vm); |
| 2436 } | 2515 } |
| 2437 | 2516 |
| 2438 | 2517 |
| 2439 // Pseudo instructions. | 2518 // Pseudo instructions. |
| 2440 void Assembler::nop(int type) { | 2519 void Assembler::nop(int type) { |
| 2441 // ARMv6{K/T2} and v7 have an actual NOP instruction but it serializes | 2520 // ARMv6{K/T2} and v7 have an actual NOP instruction but it serializes |
| 2442 // some of the CPU's pipeline and has to issue. Older ARM chips simply used | 2521 // some of the CPU's pipeline and has to issue. Older ARM chips simply used |
| 2443 // MOV Rx, Rx as NOP and it performs better even in newer CPUs. | 2522 // MOV Rx, Rx as NOP and it performs better even in newer CPUs. |
| 2444 // We therefore use MOV Rx, Rx, even on newer CPUs, and use Rx to encode | 2523 // We therefore use MOV Rx, Rx, even on newer CPUs, and use Rx to encode |
| 2445 // a type. | 2524 // a type. |
| (...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2743 | 2822 |
| 2744 // Since a constant pool was just emitted, move the check offset forward by | 2823 // Since a constant pool was just emitted, move the check offset forward by |
| 2745 // the standard interval. | 2824 // the standard interval. |
| 2746 next_buffer_check_ = pc_offset() + kCheckPoolInterval; | 2825 next_buffer_check_ = pc_offset() + kCheckPoolInterval; |
| 2747 } | 2826 } |
| 2748 | 2827 |
| 2749 | 2828 |
| 2750 } } // namespace v8::internal | 2829 } } // namespace v8::internal |
| 2751 | 2830 |
| 2752 #endif // V8_TARGET_ARCH_ARM | 2831 #endif // V8_TARGET_ARCH_ARM |
| OLD | NEW |