Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(579)

Side by Side Diff: src/arm/assembler-arm.cc

Issue 11428137: ARM: Make use of d16-d31 when available. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix Vldm/Vstm; pass more tests Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
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
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
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 // Move the low and high part separately using vmov.32.
2030 vmov(dst, 0, ip, cond);
2031 mov(ip, Operand(hi));
2032 vmov(dst, 1, ip, cond);
2033 }
2019 } else { 2034 } else {
2020 // Move the low and high parts of the double to a D register in one 2035 // Move the low and high parts of the double to a D register in one
2021 // instruction. 2036 // instruction.
2022 mov(scratch, Operand(hi)); 2037 mov(scratch, Operand(hi));
2023 vmov(dst, ip, scratch, cond); 2038 vmov(dst, ip, scratch, cond);
2024 } 2039 }
2025 } 2040 }
2026 } 2041 }
2027 2042
2028 2043
2029 void Assembler::vmov(const SwVfpRegister dst, 2044 void Assembler::vmov(const SwVfpRegister dst,
2030 const SwVfpRegister src, 2045 const SwVfpRegister src,
2031 const Condition cond) { 2046 const Condition cond) {
2032 // Sd = Sm 2047 // Sd = Sm
2033 // Instruction details available in ARM DDI 0406B, A8-642. 2048 // Instruction details available in ARM DDI 0406B, A8-642.
2034 ASSERT(CpuFeatures::IsEnabled(VFP2)); 2049 ASSERT(CpuFeatures::IsEnabled(VFP2));
2035 int sd, d, sm, m; 2050 int sd, d, sm, m;
2036 dst.split_code(&sd, &d); 2051 dst.split_code(&sd, &d);
2037 src.split_code(&sm, &m); 2052 src.split_code(&sm, &m);
2038 emit(cond | 0xE*B24 | d*B22 | 0xB*B20 | sd*B12 | 0xA*B8 | B6 | m*B5 | sm); 2053 emit(cond | 0xE*B24 | d*B22 | 0xB*B20 | sd*B12 | 0xA*B8 | B6 | m*B5 | sm);
2039 } 2054 }
2040 2055
2041 2056
2042 void Assembler::vmov(const DwVfpRegister dst, 2057 void Assembler::vmov(const DwVfpRegister dst,
2043 const DwVfpRegister src, 2058 const DwVfpRegister src,
2044 const Condition cond) { 2059 const Condition cond) {
2045 // Dd = Dm 2060 // Dd = Dm
2046 // Instruction details available in ARM DDI 0406B, A8-642. 2061 // Instruction details available in ARM DDI 0406C.b, A8-938.
2062 // cond(31-28) | 11101(27-23) | D(22) | 11(21-20) | 0000(19-16) | Vd(15-12) |
2063 // 101(11-9) | sz=1(8) | 0(7) | 1(6) | M(5) | 0(4) | Vm(3-0)
2047 ASSERT(CpuFeatures::IsEnabled(VFP2)); 2064 ASSERT(CpuFeatures::IsEnabled(VFP2));
2048 emit(cond | 0xE*B24 | 0xB*B20 | 2065 int vd, d;
2049 dst.code()*B12 | 0x5*B9 | B8 | B6 | src.code()); 2066 dst.split_code(&vd, &d);
2067 int vm, m;
2068 src.split_code(&vm, &m);
2069 emit(cond | 0x1D*B23 | d*B22 | 0x3*B20 | vd*B12 | 0x5*B9 | B8 | B6 | m*B5 |
2070 vm);
2050 } 2071 }
2051 2072
2052 2073
2074 void Assembler::vmov(const DwVfpRegister dst,
2075 int x,
2076 const Register src,
2077 const Condition cond) {
2078 // Dd[x] = Rt
2079 // Instruction details available in ARM DDI 0406C.b, A8-940.
2080 // cond(31-28) | 1110(27-24) | 0(23) | opc1=0X(22-21) | 0(20) | Vd(19-16) |
2081 // Rt(15-12) | 1011(11-8) | D(7) | opc2=00(6-5) | 1(4) | 0000(3-0)
2082 ASSERT(CpuFeatures::IsEnabled(VFP2));
2083 ASSERT(x == 0 || x == 1);
2084 int vd, d;
2085 dst.split_code(&vd, &d);
2086 emit(cond | 0xE*B24 | x*B21 | vd*B16 | src.code()*B12 | 0xB*B8 | d*B7 | B4);
2087 }
2088
2089
2053 void Assembler::vmov(const DwVfpRegister dst, 2090 void Assembler::vmov(const DwVfpRegister dst,
2054 const Register src1, 2091 const Register src1,
2055 const Register src2, 2092 const Register src2,
2056 const Condition cond) { 2093 const Condition cond) {
2057 // Dm = <Rt,Rt2>. 2094 // Dm = <Rt,Rt2>.
2058 // Instruction details available in ARM DDI 0406A, A8-646. 2095 // 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) | 2096 // 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 2097 // Rt(15-12) | 1011(11-8) | 00(7-6) | M(5) | 1(4) | Vm
2061 ASSERT(CpuFeatures::IsEnabled(VFP2)); 2098 ASSERT(CpuFeatures::IsEnabled(VFP2));
2062 ASSERT(!src1.is(pc) && !src2.is(pc)); 2099 ASSERT(!src1.is(pc) && !src2.is(pc));
2100 int vm, m;
2101 dst.split_code(&vm, &m);
2063 emit(cond | 0xC*B24 | B22 | src2.code()*B16 | 2102 emit(cond | 0xC*B24 | B22 | src2.code()*B16 |
2064 src1.code()*B12 | 0xB*B8 | B4 | dst.code()); 2103 src1.code()*B12 | 0xB*B8 | m*B5 | B4 | vm);
2065 } 2104 }
2066 2105
2067 2106
2068 void Assembler::vmov(const Register dst1, 2107 void Assembler::vmov(const Register dst1,
2069 const Register dst2, 2108 const Register dst2,
2070 const DwVfpRegister src, 2109 const DwVfpRegister src,
2071 const Condition cond) { 2110 const Condition cond) {
2072 // <Rt,Rt2> = Dm. 2111 // <Rt,Rt2> = Dm.
2073 // Instruction details available in ARM DDI 0406A, A8-646. 2112 // 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) | 2113 // 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 2114 // Rt(15-12) | 1011(11-8) | 00(7-6) | M(5) | 1(4) | Vm
2076 ASSERT(CpuFeatures::IsEnabled(VFP2)); 2115 ASSERT(CpuFeatures::IsEnabled(VFP2));
2077 ASSERT(!dst1.is(pc) && !dst2.is(pc)); 2116 ASSERT(!dst1.is(pc) && !dst2.is(pc));
2117 int vm, m;
2118 src.split_code(&vm, &m);
2078 emit(cond | 0xC*B24 | B22 | B20 | dst2.code()*B16 | 2119 emit(cond | 0xC*B24 | B22 | B20 | dst2.code()*B16 |
2079 dst1.code()*B12 | 0xB*B8 | B4 | src.code()); 2120 dst1.code()*B12 | 0xB*B8 | m*B5 | B4 | vm);
2080 } 2121 }
2081 2122
2082 2123
2083 void Assembler::vmov(const SwVfpRegister dst, 2124 void Assembler::vmov(const SwVfpRegister dst,
2084 const Register src, 2125 const Register src,
2085 const Condition cond) { 2126 const Condition cond) {
2086 // Sn = Rt. 2127 // Sn = Rt.
2087 // Instruction details available in ARM DDI 0406A, A8-642. 2128 // 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) | 2129 // 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) 2130 // 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
2282 VFPConversionMode mode, 2323 VFPConversionMode mode,
2283 const Condition cond) { 2324 const Condition cond) {
2284 ASSERT(CpuFeatures::IsEnabled(VFP2)); 2325 ASSERT(CpuFeatures::IsEnabled(VFP2));
2285 emit(EncodeVCVT(F32, dst.code(), F64, src.code(), mode, cond)); 2326 emit(EncodeVCVT(F32, dst.code(), F64, src.code(), mode, cond));
2286 } 2327 }
2287 2328
2288 2329
2289 void Assembler::vneg(const DwVfpRegister dst, 2330 void Assembler::vneg(const DwVfpRegister dst,
2290 const DwVfpRegister src, 2331 const DwVfpRegister src,
2291 const Condition cond) { 2332 const Condition cond) {
2333 // Instruction details available in ARM DDI 0406C.b, A8-968.
2334 // cond(31-28) | 11101(27-23) | D(22) | 11(21-20) | 0001(19-16) | Vd(15-12) |
2335 // 101(11-9) | sz=1(8) | 0(7) | 1(6) | M(5) | 0(4) | Vm(3-0)
2292 ASSERT(CpuFeatures::IsEnabled(VFP2)); 2336 ASSERT(CpuFeatures::IsEnabled(VFP2));
2293 emit(cond | 0xE*B24 | 0xB*B20 | B16 | dst.code()*B12 | 2337 int vd, d;
2294 0x5*B9 | B8 | B6 | src.code()); 2338 dst.split_code(&vd, &d);
2339 int vm, m;
2340 src.split_code(&vm, &m);
2341
2342 emit(cond | 0x1D*B23 | d*B22 | 0x3*B20 | B16 | vd*B12 | 0x5*B9 | B8 | B6 |
2343 m*B5 | vm);
2295 } 2344 }
2296 2345
2297 2346
2298 void Assembler::vabs(const DwVfpRegister dst, 2347 void Assembler::vabs(const DwVfpRegister dst,
2299 const DwVfpRegister src, 2348 const DwVfpRegister src,
2300 const Condition cond) { 2349 const Condition cond) {
2350 // Instruction details available in ARM DDI 0406C.b, A8-524.
2351 // cond(31-28) | 11101(27-23) | D(22) | 11(21-20) | 0000(19-16) | Vd(15-12) |
2352 // 101(11-9) | sz=1(8) | 1(7) | 1(6) | M(5) | 0(4) | Vm(3-0).
2301 ASSERT(CpuFeatures::IsEnabled(VFP2)); 2353 ASSERT(CpuFeatures::IsEnabled(VFP2));
2302 emit(cond | 0xE*B24 | 0xB*B20 | dst.code()*B12 | 2354 int vd, d;
2303 0x5*B9 | B8 | 0x3*B6 | src.code()); 2355 dst.split_code(&vd, &d);
2356 int vm, m;
2357 src.split_code(&vm, &m);
2358 emit(cond | 0x1D*B23 | d*B22 | 0x3*B20 | vd*B12 | 0x5*B9 | B8 | B7 | B6 |
2359 m*B5 | vm);
2304 } 2360 }
2305 2361
2306 2362
2307 void Assembler::vadd(const DwVfpRegister dst, 2363 void Assembler::vadd(const DwVfpRegister dst,
2308 const DwVfpRegister src1, 2364 const DwVfpRegister src1,
2309 const DwVfpRegister src2, 2365 const DwVfpRegister src2,
2310 const Condition cond) { 2366 const Condition cond) {
2311 // Dd = vadd(Dn, Dm) double precision floating point addition. 2367 // Dd = vadd(Dn, Dm) double precision floating point addition.
2312 // Dd = D:Vd; Dm=M:Vm; Dn=N:Vm. 2368 // Dd = D:Vd; Dm=M:Vm; Dn=N:Vm.
2313 // Instruction details available in ARM DDI 0406A, A8-536. 2369 // 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) | 2370 // 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) 2371 // 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)); 2372 ASSERT(CpuFeatures::IsEnabled(VFP2));
2317 emit(cond | 0xE*B24 | 0x3*B20 | src1.code()*B16 | 2373 int vd, d;
2318 dst.code()*B12 | 0x5*B9 | B8 | src2.code()); 2374 dst.split_code(&vd, &d);
2375 int vn, n;
2376 src1.split_code(&vn, &n);
2377 int vm, m;
2378 src2.split_code(&vm, &m);
2379 emit(cond | 0x1C*B23 | d*B22 | 0x3*B20 | vn*B16 | vd*B12 | 0x5*B9 | B8 |
2380 n*B7 | m*B5 | vm);
2319 } 2381 }
2320 2382
2321 2383
2322 void Assembler::vsub(const DwVfpRegister dst, 2384 void Assembler::vsub(const DwVfpRegister dst,
2323 const DwVfpRegister src1, 2385 const DwVfpRegister src1,
2324 const DwVfpRegister src2, 2386 const DwVfpRegister src2,
2325 const Condition cond) { 2387 const Condition cond) {
2326 // Dd = vsub(Dn, Dm) double precision floating point subtraction. 2388 // Dd = vsub(Dn, Dm) double precision floating point subtraction.
2327 // Dd = D:Vd; Dm=M:Vm; Dn=N:Vm. 2389 // Dd = D:Vd; Dm=M:Vm; Dn=N:Vm.
2328 // Instruction details available in ARM DDI 0406A, A8-784. 2390 // 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) | 2391 // 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) 2392 // 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)); 2393 ASSERT(CpuFeatures::IsEnabled(VFP2));
2332 emit(cond | 0xE*B24 | 0x3*B20 | src1.code()*B16 | 2394 int vd, d;
2333 dst.code()*B12 | 0x5*B9 | B8 | B6 | src2.code()); 2395 dst.split_code(&vd, &d);
2396 int vn, n;
2397 src1.split_code(&vn, &n);
2398 int vm, m;
2399 src2.split_code(&vm, &m);
2400 emit(cond | 0x1C*B23 | d*B22 | 0x3*B20 | vn*B16 | vd*B12 | 0x5*B9 | B8 |
2401 n*B7 | B6 | m*B5 | vm);
2334 } 2402 }
2335 2403
2336 2404
2337 void Assembler::vmul(const DwVfpRegister dst, 2405 void Assembler::vmul(const DwVfpRegister dst,
2338 const DwVfpRegister src1, 2406 const DwVfpRegister src1,
2339 const DwVfpRegister src2, 2407 const DwVfpRegister src2,
2340 const Condition cond) { 2408 const Condition cond) {
2341 // Dd = vmul(Dn, Dm) double precision floating point multiplication. 2409 // Dd = vmul(Dn, Dm) double precision floating point multiplication.
2342 // Dd = D:Vd; Dm=M:Vm; Dn=N:Vm. 2410 // Dd = D:Vd; Dm=M:Vm; Dn=N:Vm.
2343 // Instruction details available in ARM DDI 0406A, A8-784. 2411 // 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) | 2412 // 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) 2413 // 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)); 2414 ASSERT(CpuFeatures::IsEnabled(VFP2));
2347 emit(cond | 0xE*B24 | 0x2*B20 | src1.code()*B16 | 2415 int vd, d;
2348 dst.code()*B12 | 0x5*B9 | B8 | src2.code()); 2416 dst.split_code(&vd, &d);
2417 int vn, n;
2418 src1.split_code(&vn, &n);
2419 int vm, m;
2420 src2.split_code(&vm, &m);
2421 emit(cond | 0x1C*B23 | d*B22 | 0x2*B20 | vn*B16 | vd*B12 | 0x5*B9 | B8 |
2422 n*B7 | m*B5 | vm);
2349 } 2423 }
2350 2424
2351 2425
2352 void Assembler::vmla(const DwVfpRegister dst, 2426 void Assembler::vmla(const DwVfpRegister dst,
2353 const DwVfpRegister src1, 2427 const DwVfpRegister src1,
2354 const DwVfpRegister src2, 2428 const DwVfpRegister src2,
2355 const Condition cond) { 2429 const Condition cond) {
2356 // Instruction details available in ARM DDI 0406C.b, A8-892. 2430 // 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) | 2431 // 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) | 2432 // 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) 2433 int vd, d;
2360 unsigned x = (cond | 0x1C*B23 | src1.code()*B16 | 2434 dst.split_code(&vd, &d);
2361 dst.code()*B12 | 0x5*B9 | B8 | src2.code()); 2435 int vn, n;
2362 emit(x); 2436 src1.split_code(&vn, &n);
2437 int vm, m;
2438 src2.split_code(&vm, &m);
2439 emit(cond | 0x1C*B23 | d*B22 | vn*B16 | vd*B12 | 0x5*B9 | B8 | n*B7 | m*B5 |
2440 vm);
2363 } 2441 }
2364 2442
2365 2443
2366 void Assembler::vdiv(const DwVfpRegister dst, 2444 void Assembler::vdiv(const DwVfpRegister dst,
2367 const DwVfpRegister src1, 2445 const DwVfpRegister src1,
2368 const DwVfpRegister src2, 2446 const DwVfpRegister src2,
2369 const Condition cond) { 2447 const Condition cond) {
2370 // Dd = vdiv(Dn, Dm) double precision floating point division. 2448 // Dd = vdiv(Dn, Dm) double precision floating point division.
2371 // Dd = D:Vd; Dm=M:Vm; Dn=N:Vm. 2449 // Dd = D:Vd; Dm=M:Vm; Dn=N:Vm.
2372 // Instruction details available in ARM DDI 0406A, A8-584. 2450 // 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) | 2451 // 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) 2452 // 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)); 2453 ASSERT(CpuFeatures::IsEnabled(VFP2));
2376 emit(cond | 0xE*B24 | B23 | src1.code()*B16 | 2454 int vd, d;
2377 dst.code()*B12 | 0x5*B9 | B8 | src2.code()); 2455 dst.split_code(&vd, &d);
2456 int vn, n;
2457 src1.split_code(&vn, &n);
2458 int vm, m;
2459 src2.split_code(&vm, &m);
2460 emit(cond | 0x1D*B23 | d*B22 | vn*B16 | vd*B12 | 0x5*B9 | B8 | n*B7 | m*B5 |
2461 vm);
2378 } 2462 }
2379 2463
2380 2464
2381 void Assembler::vcmp(const DwVfpRegister src1, 2465 void Assembler::vcmp(const DwVfpRegister src1,
2382 const DwVfpRegister src2, 2466 const DwVfpRegister src2,
2383 const Condition cond) { 2467 const Condition cond) {
2384 // vcmp(Dd, Dm) double precision floating point comparison. 2468 // vcmp(Dd, Dm) double precision floating point comparison.
2385 // Instruction details available in ARM DDI 0406A, A8-570. 2469 // 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) | 2470 // 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) 2471 // 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)); 2472 ASSERT(CpuFeatures::IsEnabled(VFP2));
2389 emit(cond | 0xE*B24 |B23 | 0x3*B20 | B18 | 2473 int vd, d;
2390 src1.code()*B12 | 0x5*B9 | B8 | B6 | src2.code()); 2474 src1.split_code(&vd, &d);
2475 int vm, m;
2476 src2.split_code(&vm, &m);
2477 emit(cond | 0x1D*B23 | d*B22 | 0x3*B20 | 0x4*B16 | vd*B12 | 0x5*B9 | B8 | B6 |
2478 m*B5 | vm);
2391 } 2479 }
2392 2480
2393 2481
2394 void Assembler::vcmp(const DwVfpRegister src1, 2482 void Assembler::vcmp(const DwVfpRegister src1,
2395 const double src2, 2483 const double src2,
2396 const Condition cond) { 2484 const Condition cond) {
2397 // vcmp(Dd, Dm) double precision floating point comparison. 2485 // vcmp(Dd, #0.0) double precision floating point comparison.
2398 // Instruction details available in ARM DDI 0406A, A8-570. 2486 // 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) | 2487 // 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) 2488 // 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)); 2489 ASSERT(CpuFeatures::IsEnabled(VFP2));
2402 ASSERT(src2 == 0.0); 2490 ASSERT(src2 == 0.0);
2403 emit(cond | 0xE*B24 |B23 | 0x3*B20 | B18 | B16 | 2491 int vd, d;
2404 src1.code()*B12 | 0x5*B9 | B8 | B6); 2492 src1.split_code(&vd, &d);
2493 emit(cond | 0x1D*B23 | d*B22 | 0x3*B20 | 0x5*B16 | vd*B12 | 0x5*B9 | B8 | B6);
2405 } 2494 }
2406 2495
2407 2496
2408 void Assembler::vmsr(Register dst, Condition cond) { 2497 void Assembler::vmsr(Register dst, Condition cond) {
2409 // Instruction details available in ARM DDI 0406A, A8-652. 2498 // Instruction details available in ARM DDI 0406A, A8-652.
2410 // cond(31-28) | 1110 (27-24) | 1110(23-20)| 0001 (19-16) | 2499 // 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) 2500 // Rt(15-12) | 1010 (11-8) | 0(7) | 00 (6-5) | 1(4) | 0000(3-0)
2412 ASSERT(CpuFeatures::IsEnabled(VFP2)); 2501 ASSERT(CpuFeatures::IsEnabled(VFP2));
2413 emit(cond | 0xE*B24 | 0xE*B20 | B16 | 2502 emit(cond | 0xE*B24 | 0xE*B20 | B16 |
2414 dst.code()*B12 | 0xA*B8 | B4); 2503 dst.code()*B12 | 0xA*B8 | B4);
2415 } 2504 }
2416 2505
2417 2506
2418 void Assembler::vmrs(Register dst, Condition cond) { 2507 void Assembler::vmrs(Register dst, Condition cond) {
2419 // Instruction details available in ARM DDI 0406A, A8-652. 2508 // Instruction details available in ARM DDI 0406A, A8-652.
2420 // cond(31-28) | 1110 (27-24) | 1111(23-20)| 0001 (19-16) | 2509 // 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) 2510 // Rt(15-12) | 1010 (11-8) | 0(7) | 00 (6-5) | 1(4) | 0000(3-0)
2422 ASSERT(CpuFeatures::IsEnabled(VFP2)); 2511 ASSERT(CpuFeatures::IsEnabled(VFP2));
2423 emit(cond | 0xE*B24 | 0xF*B20 | B16 | 2512 emit(cond | 0xE*B24 | 0xF*B20 | B16 |
2424 dst.code()*B12 | 0xA*B8 | B4); 2513 dst.code()*B12 | 0xA*B8 | B4);
2425 } 2514 }
2426 2515
2427 2516
2428 void Assembler::vsqrt(const DwVfpRegister dst, 2517 void Assembler::vsqrt(const DwVfpRegister dst,
2429 const DwVfpRegister src, 2518 const DwVfpRegister src,
2430 const Condition cond) { 2519 const Condition cond) {
2431 // cond(31-28) | 11101 (27-23)| D=?(22) | 11 (21-20) | 0001 (19-16) | 2520 // 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) 2521 // cond(31-28) | 11101(27-23)| D(22) | 11(21-20) | 0001(19-16) |
2522 // Vd(15-12) | 101(11-9) | sz=1(8) | 11(7-6) | M(5) | 0(4) | Vm(3-0)
2433 ASSERT(CpuFeatures::IsEnabled(VFP2)); 2523 ASSERT(CpuFeatures::IsEnabled(VFP2));
2434 emit(cond | 0xE*B24 | B23 | 0x3*B20 | B16 | 2524 int vd, d;
2435 dst.code()*B12 | 0x5*B9 | B8 | 3*B6 | src.code()); 2525 dst.split_code(&vd, &d);
2526 int vm, m;
2527 src.split_code(&vm, &m);
2528 emit(cond | 0x1D*B23 | d*B22 | 0x3*B20 | B16 | vd*B12 | 0x5*B9 | B8 | 0x3*B6 |
2529 m*B5 | vm);
2436 } 2530 }
2437 2531
2438 2532
2439 // Pseudo instructions. 2533 // Pseudo instructions.
2440 void Assembler::nop(int type) { 2534 void Assembler::nop(int type) {
2441 // ARMv6{K/T2} and v7 have an actual NOP instruction but it serializes 2535 // 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 2536 // 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. 2537 // 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 2538 // We therefore use MOV Rx, Rx, even on newer CPUs, and use Rx to encode
2445 // a type. 2539 // a type.
(...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after
2743 2837
2744 // Since a constant pool was just emitted, move the check offset forward by 2838 // Since a constant pool was just emitted, move the check offset forward by
2745 // the standard interval. 2839 // the standard interval.
2746 next_buffer_check_ = pc_offset() + kCheckPoolInterval; 2840 next_buffer_check_ = pc_offset() + kCheckPoolInterval;
2747 } 2841 }
2748 2842
2749 2843
2750 } } // namespace v8::internal 2844 } } // namespace v8::internal
2751 2845
2752 #endif // V8_TARGET_ARCH_ARM 2846 #endif // V8_TARGET_ARCH_ARM
OLDNEW
« no previous file with comments | « src/arm/assembler-arm.h ('k') | src/arm/assembler-arm-inl.h » ('j') | src/arm/code-stubs-arm.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698