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 984 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
995 CallTarget->emitWithoutPrefix(Func->getTarget()); | 995 CallTarget->emitWithoutPrefix(Func->getTarget()); |
996 } else { | 996 } else { |
997 Str << "\t" | 997 Str << "\t" |
998 << "blx" | 998 << "blx" |
999 << "\t"; | 999 << "\t"; |
1000 getCallTarget()->emit(Func); | 1000 getCallTarget()->emit(Func); |
1001 } | 1001 } |
1002 Func->getTarget()->resetStackAdjustment(); | 1002 Func->getTarget()->resetStackAdjustment(); |
1003 } | 1003 } |
1004 | 1004 |
| 1005 void InstARM32Call::emitIAS(const Cfg *Func) const { |
| 1006 assert(getSrcSize() == 1); |
| 1007 auto *Asm = Func->getAssembler<ARM32::AssemblerARM32>(); |
| 1008 if (llvm::isa<ConstantInteger32>(getCallTarget())) { |
| 1009 // This shouldn't happen (typically have to copy the full 32-bits to a |
| 1010 // register and do an indirect jump). |
| 1011 llvm::report_fatal_error("ARM32Call to ConstantInteger32"); |
| 1012 } else if (const auto *CallTarget = |
| 1013 llvm::dyn_cast<ConstantRelocatable>(getCallTarget())) { |
| 1014 // Calls only have 24-bits, but the linker should insert veneers to extend |
| 1015 // the range if needed. |
| 1016 Asm->bl(CallTarget); |
| 1017 } else { |
| 1018 Asm->blx(getCallTarget()); |
| 1019 } |
| 1020 if (Asm->needsTextFixup()) |
| 1021 return emitUsingTextFixup(Func); |
| 1022 Func->getTarget()->resetStackAdjustment(); |
| 1023 } |
| 1024 |
1005 void InstARM32Call::dump(const Cfg *Func) const { | 1025 void InstARM32Call::dump(const Cfg *Func) const { |
1006 if (!BuildDefs::dump()) | 1026 if (!BuildDefs::dump()) |
1007 return; | 1027 return; |
1008 Ostream &Str = Func->getContext()->getStrDump(); | 1028 Ostream &Str = Func->getContext()->getStrDump(); |
1009 if (getDest()) { | 1029 if (getDest()) { |
1010 dumpDest(Func); | 1030 dumpDest(Func); |
1011 Str << " = "; | 1031 Str << " = "; |
1012 } | 1032 } |
1013 Str << "call "; | 1033 Str << "call "; |
1014 getCallTarget()->dump(Func); | 1034 getCallTarget()->dump(Func); |
(...skipping 901 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1916 template class InstARM32UnaryopFP<InstARM32::Vsqrt>; | 1936 template class InstARM32UnaryopFP<InstARM32::Vsqrt>; |
1917 | 1937 |
1918 template class InstARM32FourAddrGPR<InstARM32::Mla>; | 1938 template class InstARM32FourAddrGPR<InstARM32::Mla>; |
1919 template class InstARM32FourAddrGPR<InstARM32::Mls>; | 1939 template class InstARM32FourAddrGPR<InstARM32::Mls>; |
1920 | 1940 |
1921 template class InstARM32CmpLike<InstARM32::Cmn>; | 1941 template class InstARM32CmpLike<InstARM32::Cmn>; |
1922 template class InstARM32CmpLike<InstARM32::Cmp>; | 1942 template class InstARM32CmpLike<InstARM32::Cmp>; |
1923 template class InstARM32CmpLike<InstARM32::Tst>; | 1943 template class InstARM32CmpLike<InstARM32::Tst>; |
1924 | 1944 |
1925 } // end of namespace Ice | 1945 } // end of namespace Ice |
OLD | NEW |