| OLD | NEW |
| 1 //===- subzero/src/IceInstARM32.cpp - ARM32 instruction implementation ----===// | 1 //===- subzero/src/IceInstARM32.cpp - ARM32 instruction implementation ----===// |
| 2 // | 2 // |
| 3 // The Subzero Code Generator | 3 // The Subzero Code Generator |
| 4 // | 4 // |
| 5 // This file is distributed under the University of Illinois Open Source | 5 // This file is distributed under the University of Illinois Open Source |
| 6 // License. See LICENSE.TXT for details. | 6 // License. See LICENSE.TXT for details. |
| 7 // | 7 // |
| 8 //===----------------------------------------------------------------------===// | 8 //===----------------------------------------------------------------------===// |
| 9 /// | 9 /// |
| 10 /// \file | 10 /// \file |
| (...skipping 2203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2214 template class InstARM32ThreeAddrGPR<InstARM32::Rsb>; | 2214 template class InstARM32ThreeAddrGPR<InstARM32::Rsb>; |
| 2215 template class InstARM32ThreeAddrGPR<InstARM32::Rsc>; | 2215 template class InstARM32ThreeAddrGPR<InstARM32::Rsc>; |
| 2216 template class InstARM32ThreeAddrGPR<InstARM32::Sbc>; | 2216 template class InstARM32ThreeAddrGPR<InstARM32::Sbc>; |
| 2217 template class InstARM32ThreeAddrGPR<InstARM32::Sdiv>; | 2217 template class InstARM32ThreeAddrGPR<InstARM32::Sdiv>; |
| 2218 template class InstARM32ThreeAddrGPR<InstARM32::Sub>; | 2218 template class InstARM32ThreeAddrGPR<InstARM32::Sub>; |
| 2219 template class InstARM32ThreeAddrGPR<InstARM32::Udiv>; | 2219 template class InstARM32ThreeAddrGPR<InstARM32::Udiv>; |
| 2220 | 2220 |
| 2221 template class InstARM32ThreeAddrFP<InstARM32::Vadd>; | 2221 template class InstARM32ThreeAddrFP<InstARM32::Vadd>; |
| 2222 template class InstARM32ThreeAddrFP<InstARM32::Vdiv>; | 2222 template class InstARM32ThreeAddrFP<InstARM32::Vdiv>; |
| 2223 template class InstARM32ThreeAddrFP<InstARM32::Veor>; | 2223 template class InstARM32ThreeAddrFP<InstARM32::Veor>; |
| 2224 template class InstARM32FourAddrFP<InstARM32::Vmla>; |
| 2225 template class InstARM32FourAddrFP<InstARM32::Vmls>; |
| 2224 template class InstARM32ThreeAddrFP<InstARM32::Vmul>; | 2226 template class InstARM32ThreeAddrFP<InstARM32::Vmul>; |
| 2225 template class InstARM32ThreeAddrFP<InstARM32::Vmla>; | |
| 2226 template class InstARM32ThreeAddrFP<InstARM32::Vmls>; | |
| 2227 template class InstARM32ThreeAddrFP<InstARM32::Vsub>; | 2227 template class InstARM32ThreeAddrFP<InstARM32::Vsub>; |
| 2228 | 2228 |
| 2229 template class InstARM32LoadBase<InstARM32::Ldr>; | 2229 template class InstARM32LoadBase<InstARM32::Ldr>; |
| 2230 template class InstARM32LoadBase<InstARM32::Ldrex>; | 2230 template class InstARM32LoadBase<InstARM32::Ldrex>; |
| 2231 | 2231 |
| 2232 template class InstARM32TwoAddrGPR<InstARM32::Movt>; | 2232 template class InstARM32TwoAddrGPR<InstARM32::Movt>; |
| 2233 | 2233 |
| 2234 template class InstARM32UnaryopGPR<InstARM32::Movw, false>; | 2234 template class InstARM32UnaryopGPR<InstARM32::Movw, false>; |
| 2235 template class InstARM32UnaryopGPR<InstARM32::Clz, false>; | 2235 template class InstARM32UnaryopGPR<InstARM32::Clz, false>; |
| 2236 template class InstARM32UnaryopGPR<InstARM32::Mvn, false>; | 2236 template class InstARM32UnaryopGPR<InstARM32::Mvn, false>; |
| 2237 template class InstARM32UnaryopGPR<InstARM32::Rbit, false>; | 2237 template class InstARM32UnaryopGPR<InstARM32::Rbit, false>; |
| 2238 template class InstARM32UnaryopGPR<InstARM32::Rev, false>; | 2238 template class InstARM32UnaryopGPR<InstARM32::Rev, false>; |
| 2239 template class InstARM32UnaryopGPR<InstARM32::Sxt, true>; | 2239 template class InstARM32UnaryopGPR<InstARM32::Sxt, true>; |
| 2240 template class InstARM32UnaryopGPR<InstARM32::Uxt, true>; | 2240 template class InstARM32UnaryopGPR<InstARM32::Uxt, true>; |
| 2241 template class InstARM32UnaryopFP<InstARM32::Vsqrt>; | 2241 template class InstARM32UnaryopFP<InstARM32::Vsqrt>; |
| 2242 | 2242 |
| 2243 template class InstARM32FourAddrGPR<InstARM32::Mla>; | 2243 template class InstARM32FourAddrGPR<InstARM32::Mla>; |
| 2244 template class InstARM32FourAddrGPR<InstARM32::Mls>; | 2244 template class InstARM32FourAddrGPR<InstARM32::Mls>; |
| 2245 | 2245 |
| 2246 template class InstARM32CmpLike<InstARM32::Cmn>; | 2246 template class InstARM32CmpLike<InstARM32::Cmn>; |
| 2247 template class InstARM32CmpLike<InstARM32::Cmp>; | 2247 template class InstARM32CmpLike<InstARM32::Cmp>; |
| 2248 template class InstARM32CmpLike<InstARM32::Tst>; | 2248 template class InstARM32CmpLike<InstARM32::Tst>; |
| 2249 | 2249 |
| 2250 } // end of namespace ARM32 | 2250 } // end of namespace ARM32 |
| 2251 } // end of namespace Ice | 2251 } // end of namespace Ice |
| OLD | NEW |