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 1147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1158 } | 1158 } |
1159 | 1159 |
1160 template <> void InstARM32Movt::emitIAS(const Cfg *Func) const { | 1160 template <> void InstARM32Movt::emitIAS(const Cfg *Func) const { |
1161 assert(getSrcSize() == 2); | 1161 assert(getSrcSize() == 2); |
1162 auto *Asm = Func->getAssembler<ARM32::AssemblerARM32>(); | 1162 auto *Asm = Func->getAssembler<ARM32::AssemblerARM32>(); |
1163 Asm->movt(getDest(), getSrc(1), getPredicate()); | 1163 Asm->movt(getDest(), getSrc(1), getPredicate()); |
1164 if (Asm->needsTextFixup()) | 1164 if (Asm->needsTextFixup()) |
1165 emitUsingTextFixup(Func); | 1165 emitUsingTextFixup(Func); |
1166 } | 1166 } |
1167 | 1167 |
| 1168 template <> void InstARM32Mvn::emitIAS(const Cfg *Func) const { |
| 1169 assert(getSrcSize() == 1); |
| 1170 auto *Asm = Func->getAssembler<ARM32::AssemblerARM32>(); |
| 1171 Asm->mvn(getDest(), getSrc(0), getPredicate()); |
| 1172 if (Asm->needsTextFixup()) |
| 1173 emitUsingTextFixup(Func); |
| 1174 } |
| 1175 |
1168 template <> void InstARM32Uxt::emitIAS(const Cfg *Func) const { | 1176 template <> void InstARM32Uxt::emitIAS(const Cfg *Func) const { |
1169 assert(getSrcSize() == 1); | 1177 assert(getSrcSize() == 1); |
1170 auto *Asm = Func->getAssembler<ARM32::AssemblerARM32>(); | 1178 auto *Asm = Func->getAssembler<ARM32::AssemblerARM32>(); |
1171 Asm->uxt(getDest(), getSrc(0), getPredicate()); | 1179 Asm->uxt(getDest(), getSrc(0), getPredicate()); |
1172 if (Asm->needsTextFixup()) | 1180 if (Asm->needsTextFixup()) |
1173 emitUsingTextFixup(Func); | 1181 emitUsingTextFixup(Func); |
1174 } | 1182 } |
1175 | 1183 |
1176 void InstARM32Pop::emit(const Cfg *Func) const { | 1184 void InstARM32Pop::emit(const Cfg *Func) const { |
1177 // TODO(jpp): Improve FP register save/restore. | 1185 // TODO(jpp): Improve FP register save/restore. |
(...skipping 747 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1925 template class InstARM32UnaryopFP<InstARM32::Vsqrt>; | 1933 template class InstARM32UnaryopFP<InstARM32::Vsqrt>; |
1926 | 1934 |
1927 template class InstARM32FourAddrGPR<InstARM32::Mla>; | 1935 template class InstARM32FourAddrGPR<InstARM32::Mla>; |
1928 template class InstARM32FourAddrGPR<InstARM32::Mls>; | 1936 template class InstARM32FourAddrGPR<InstARM32::Mls>; |
1929 | 1937 |
1930 template class InstARM32CmpLike<InstARM32::Cmn>; | 1938 template class InstARM32CmpLike<InstARM32::Cmn>; |
1931 template class InstARM32CmpLike<InstARM32::Cmp>; | 1939 template class InstARM32CmpLike<InstARM32::Cmp>; |
1932 template class InstARM32CmpLike<InstARM32::Tst>; | 1940 template class InstARM32CmpLike<InstARM32::Tst>; |
1933 | 1941 |
1934 } // end of namespace Ice | 1942 } // end of namespace Ice |
OLD | NEW |