Jia Liu | 9f61011 | 2012-02-17 08:55:11 +0000 | [diff] [blame] | 1 | //===-- MipsSubtarget.cpp - Mips Subtarget Information --------------------===// |
Bruno Cardoso Lopes | 35e43c4 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
Bruno Cardoso Lopes | 35e43c4 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 6 | // |
Akira Hatanaka | e248912 | 2011-04-15 21:51:11 +0000 | [diff] [blame] | 7 | //===----------------------------------------------------------------------===// |
Bruno Cardoso Lopes | 35e43c4 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 8 | // |
Evan Cheng | 0d639a2 | 2011-07-01 21:01:15 +0000 | [diff] [blame] | 9 | // This file implements the Mips specific subclass of TargetSubtargetInfo. |
Bruno Cardoso Lopes | 35e43c4 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 10 | // |
Akira Hatanaka | e248912 | 2011-04-15 21:51:11 +0000 | [diff] [blame] | 11 | //===----------------------------------------------------------------------===// |
Bruno Cardoso Lopes | 35e43c4 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 12 | |
Chandler Carruth | 8a8cd2b | 2014-01-07 11:48:04 +0000 | [diff] [blame] | 13 | #include "MipsSubtarget.h" |
Chandler Carruth | 6bda14b | 2017-06-06 11:49:48 +0000 | [diff] [blame] | 14 | #include "Mips.h" |
| 15 | #include "MipsMachineFunction.h" |
| 16 | #include "MipsRegisterInfo.h" |
Chandler Carruth | 8a8cd2b | 2014-01-07 11:48:04 +0000 | [diff] [blame] | 17 | #include "MipsTargetMachine.h" |
Petar Jovanovic | fac93e2 | 2018-02-23 11:06:40 +0000 | [diff] [blame] | 18 | #include "MipsCallLowering.h" |
| 19 | #include "MipsLegalizerInfo.h" |
| 20 | #include "MipsRegisterBankInfo.h" |
Reed Kotler | 1595f36 | 2013-04-09 19:46:01 +0000 | [diff] [blame] | 21 | #include "llvm/IR/Attributes.h" |
| 22 | #include "llvm/IR/Function.h" |
| 23 | #include "llvm/Support/CommandLine.h" |
| 24 | #include "llvm/Support/Debug.h" |
Evan Cheng | 2bb4035 | 2011-08-24 18:08:43 +0000 | [diff] [blame] | 25 | #include "llvm/Support/TargetRegistry.h" |
Reed Kotler | 1595f36 | 2013-04-09 19:46:01 +0000 | [diff] [blame] | 26 | #include "llvm/Support/raw_ostream.h" |
Evan Cheng | 54b68e3 | 2011-07-01 20:45:01 +0000 | [diff] [blame] | 27 | |
Chandler Carruth | d174b72 | 2014-04-22 02:03:14 +0000 | [diff] [blame] | 28 | using namespace llvm; |
| 29 | |
Chandler Carruth | 84e68b2 | 2014-04-22 02:41:26 +0000 | [diff] [blame] | 30 | #define DEBUG_TYPE "mips-subtarget" |
| 31 | |
Evan Cheng | 54b68e3 | 2011-07-01 20:45:01 +0000 | [diff] [blame] | 32 | #define GET_SUBTARGETINFO_TARGET_DESC |
Evan Cheng | 4d1ca96 | 2011-07-08 01:53:10 +0000 | [diff] [blame] | 33 | #define GET_SUBTARGETINFO_CTOR |
Evan Cheng | c9c090d | 2011-07-01 22:36:09 +0000 | [diff] [blame] | 34 | #include "MipsGenSubtargetInfo.inc" |
Evan Cheng | 54b68e3 | 2011-07-01 20:45:01 +0000 | [diff] [blame] | 35 | |
Reed Kotler | 1595f36 | 2013-04-09 19:46:01 +0000 | [diff] [blame] | 36 | // FIXME: Maybe this should be on by default when Mips16 is specified |
| 37 | // |
Eric Christopher | 0218f8c | 2015-02-20 08:42:34 +0000 | [diff] [blame] | 38 | static cl::opt<bool> |
| 39 | Mixed16_32("mips-mixed-16-32", cl::init(false), |
| 40 | cl::desc("Allow for a mixture of Mips16 " |
| 41 | "and Mips32 code in a single output file"), |
| 42 | cl::Hidden); |
Reed Kotler | 1595f36 | 2013-04-09 19:46:01 +0000 | [diff] [blame] | 43 | |
Eric Christopher | 0218f8c | 2015-02-20 08:42:34 +0000 | [diff] [blame] | 44 | static cl::opt<bool> Mips_Os16("mips-os16", cl::init(false), |
| 45 | cl::desc("Compile all functions that don't use " |
| 46 | "floating point as Mips 16"), |
| 47 | cl::Hidden); |
| 48 | |
| 49 | static cl::opt<bool> Mips16HardFloat("mips16-hard-float", cl::NotHidden, |
| 50 | cl::desc("Enable mips16 hard float."), |
| 51 | cl::init(false)); |
Reed Kotler | fe94cc3 | 2013-04-10 16:58:04 +0000 | [diff] [blame] | 52 | |
Reed Kotler | 783c794 | 2013-05-10 22:25:39 +0000 | [diff] [blame] | 53 | static cl::opt<bool> |
Eric Christopher | 0218f8c | 2015-02-20 08:42:34 +0000 | [diff] [blame] | 54 | Mips16ConstantIslands("mips16-constant-islands", cl::NotHidden, |
| 55 | cl::desc("Enable mips16 constant islands."), |
| 56 | cl::init(true)); |
Reed Kotler | 783c794 | 2013-05-10 22:25:39 +0000 | [diff] [blame] | 57 | |
Reed Kotler | 91ae982 | 2013-10-27 21:57:36 +0000 | [diff] [blame] | 58 | static cl::opt<bool> |
Eric Christopher | 0218f8c | 2015-02-20 08:42:34 +0000 | [diff] [blame] | 59 | GPOpt("mgpopt", cl::Hidden, |
| 60 | cl::desc("Enable gp-relative addressing of mips small data items")); |
Sasa Stankovic | b38db1e | 2014-11-06 13:20:12 +0000 | [diff] [blame] | 61 | |
Petar Jovanovic | 29aced1 | 2018-01-22 16:43:30 +0000 | [diff] [blame] | 62 | bool MipsSubtarget::DspWarningPrinted = false; |
Petar Jovanovic | 29aced1 | 2018-01-22 16:43:30 +0000 | [diff] [blame] | 63 | bool MipsSubtarget::MSAWarningPrinted = false; |
Vladimir Stefanovic | 87b60a0e | 2018-07-04 19:26:31 +0000 | [diff] [blame] | 64 | bool MipsSubtarget::VirtWarningPrinted = false; |
| 65 | bool MipsSubtarget::CRCWarningPrinted = false; |
| 66 | bool MipsSubtarget::GINVWarningPrinted = false; |
Petar Jovanovic | 29aced1 | 2018-01-22 16:43:30 +0000 | [diff] [blame] | 67 | |
John Baldwin | 3a1a951 | 2017-08-11 18:35:19 +0000 | [diff] [blame] | 68 | void MipsSubtarget::anchor() {} |
David Blaikie | a379b181 | 2011-12-20 02:50:00 +0000 | [diff] [blame] | 69 | |
Simon Atanasyan | 039b02ec | 2017-05-23 15:00:26 +0000 | [diff] [blame] | 70 | MipsSubtarget::MipsSubtarget(const Triple &TT, StringRef CPU, StringRef FS, |
John Baldwin | 1255b16 | 2017-08-14 21:49:38 +0000 | [diff] [blame] | 71 | bool little, const MipsTargetMachine &TM, |
| 72 | unsigned StackAlignOverride) |
Daniel Sanders | 50f1723 | 2015-09-15 16:17:27 +0000 | [diff] [blame] | 73 | : MipsGenSubtargetInfo(TT, CPU, FS), MipsArchVersion(MipsDefault), |
| 74 | IsLittle(little), IsSoftFloat(false), IsSingleFloat(false), IsFPXX(false), |
Aleksandar Beserminji | 6c5dfcb | 2019-01-28 14:59:30 +0000 | [diff] [blame] | 75 | NoABICalls(false), Abs2008(false), IsFP64bit(false), UseOddSPReg(true), |
Daniel Sanders | 50f1723 | 2015-09-15 16:17:27 +0000 | [diff] [blame] | 76 | IsNaN2008bit(false), IsGP64bit(false), HasVFPU(false), HasCnMips(false), |
| 77 | HasMips3_32(false), HasMips3_32r2(false), HasMips4_32(false), |
| 78 | HasMips4_32r2(false), HasMips5_32r2(false), InMips16Mode(false), |
| 79 | InMips16HardFloat(Mips16HardFloat), InMicroMipsMode(false), HasDSP(false), |
Zoran Jovanovic | 2e386d3 | 2015-10-12 16:07:25 +0000 | [diff] [blame] | 80 | HasDSPR2(false), HasDSPR3(false), AllowMixed16_32(Mixed16_32 | Mips_Os16), |
Simon Dardis | ca74dd7 | 2017-01-27 11:36:52 +0000 | [diff] [blame] | 81 | Os16(Mips_Os16), HasMSA(false), UseTCCInDIV(false), HasSym32(false), |
Petar Jovanovic | 3408caf | 2018-03-14 14:13:31 +0000 | [diff] [blame] | 82 | HasEVA(false), DisableMadd4(false), HasMT(false), HasCRC(false), |
Petar Jovanovic | daf5169 | 2018-05-17 16:30:32 +0000 | [diff] [blame] | 83 | HasVirt(false), HasGINV(false), UseIndirectJumpsHazard(false), |
Petar Jovanovic | d4349f3 | 2018-04-27 09:12:08 +0000 | [diff] [blame] | 84 | StackAlignOverride(StackAlignOverride), |
Simon Dardis | 7bc8ad5 | 2018-02-21 00:06:53 +0000 | [diff] [blame] | 85 | TM(TM), TargetTriple(TT), TSInfo(), |
| 86 | InstrInfo( |
| 87 | MipsInstrInfo::create(initializeSubtargetDependencies(CPU, FS, TM))), |
Eric Christopher | e54f10e | 2014-07-18 23:33:47 +0000 | [diff] [blame] | 88 | FrameLowering(MipsFrameLowering::create(*this)), |
Eric Christopher | 9072428 | 2015-01-08 18:18:57 +0000 | [diff] [blame] | 89 | TLInfo(MipsTargetLowering::create(TM, *this)) { |
Simon Atanasyan | 1093afe2 | 2013-11-19 12:20:17 +0000 | [diff] [blame] | 90 | |
Vasileios Kalintiris | b2dd15f | 2014-11-11 11:43:55 +0000 | [diff] [blame] | 91 | if (MipsArchVersion == MipsDefault) |
| 92 | MipsArchVersion = Mips32; |
| 93 | |
Vasileios Kalintiris | 8edbcad | 2014-12-12 15:16:46 +0000 | [diff] [blame] | 94 | // Don't even attempt to generate code for MIPS-I and MIPS-V. They have not |
| 95 | // been tested and currently exist for the integrated assembler only. |
Daniel Sanders | d240953 | 2014-05-07 16:25:22 +0000 | [diff] [blame] | 96 | if (MipsArchVersion == Mips1) |
| 97 | report_fatal_error("Code generation for MIPS-I is not implemented", false); |
Daniel Sanders | d240953 | 2014-05-07 16:25:22 +0000 | [diff] [blame] | 98 | if (MipsArchVersion == Mips5) |
| 99 | report_fatal_error("Code generation for MIPS-V is not implemented", false); |
| 100 | |
Akira Hatanaka | 6de4d12 | 2011-09-21 02:45:29 +0000 | [diff] [blame] | 101 | // Check if Architecture and ABI are compatible. |
Daniel Sanders | 43750eab | 2016-06-03 10:38:09 +0000 | [diff] [blame] | 102 | assert(((!isGP64bit() && isABI_O32()) || |
Daniel Sanders | 5e94e68 | 2014-03-27 16:42:17 +0000 | [diff] [blame] | 103 | (isGP64bit() && (isABI_N32() || isABI_N64()))) && |
Akira Hatanaka | 6de4d12 | 2011-09-21 02:45:29 +0000 | [diff] [blame] | 104 | "Invalid Arch & ABI pair."); |
| 105 | |
Daniel Sanders | 1b1e25b | 2013-09-27 10:08:31 +0000 | [diff] [blame] | 106 | if (hasMSA() && !isFP64bit()) |
| 107 | report_fatal_error("MSA requires a 64-bit FPU register file (FR=1 mode). " |
| 108 | "See -mattr=+fp64.", |
| 109 | false); |
| 110 | |
Daniel Sanders | 7e52742 | 2014-07-10 13:38:23 +0000 | [diff] [blame] | 111 | if (!isABI_O32() && !useOddSPReg()) |
Daniel Sanders | 7ddb0ab | 2014-07-14 13:08:14 +0000 | [diff] [blame] | 112 | report_fatal_error("-mattr=+nooddspreg requires the O32 ABI.", false); |
Daniel Sanders | 7e52742 | 2014-07-10 13:38:23 +0000 | [diff] [blame] | 113 | |
Sasa Stankovic | b976fee | 2014-07-14 09:40:29 +0000 | [diff] [blame] | 114 | if (IsFPXX && (isABI_N32() || isABI_N64())) |
| 115 | report_fatal_error("FPXX is not permitted for the N32/N64 ABI's.", false); |
| 116 | |
Aleksandar Beserminji | d6dada1 | 2017-12-11 11:21:40 +0000 | [diff] [blame] | 117 | if (hasMips64r6() && InMicroMipsMode) |
| 118 | report_fatal_error("microMIPS64R6 is not supported", false); |
| 119 | |
Simon Dardis | af38a8f | 2018-06-19 16:05:44 +0000 | [diff] [blame] | 120 | if (!isABI_O32() && InMicroMipsMode) |
| 121 | report_fatal_error("microMIPS64 is not supported.", false); |
Simon Dardis | 7bc8ad5 | 2018-02-21 00:06:53 +0000 | [diff] [blame] | 122 | |
| 123 | if (UseIndirectJumpsHazard) { |
| 124 | if (InMicroMipsMode) |
| 125 | report_fatal_error( |
| 126 | "cannot combine indirect jumps with hazard barriers and microMIPS"); |
| 127 | if (!hasMips32r2()) |
| 128 | report_fatal_error( |
| 129 | "indirect jumps with hazard barriers requires MIPS32R2 or later"); |
| 130 | } |
Aleksandar Beserminji | 6c5dfcb | 2019-01-28 14:59:30 +0000 | [diff] [blame] | 131 | if (inAbs2008Mode() && hasMips32() && !hasMips32r2()) { |
| 132 | report_fatal_error("IEEE 754-2008 abs.fmt is not supported for the given " |
| 133 | "architecture.", |
| 134 | false); |
| 135 | } |
| 136 | |
Daniel Sanders | b7f1c6f | 2014-05-09 09:46:21 +0000 | [diff] [blame] | 137 | if (hasMips32r6()) { |
| 138 | StringRef ISA = hasMips64r6() ? "MIPS64r6" : "MIPS32r6"; |
| 139 | |
| 140 | assert(isFP64bit()); |
| 141 | assert(isNaN2008()); |
Aleksandar Beserminji | 6c5dfcb | 2019-01-28 14:59:30 +0000 | [diff] [blame] | 142 | assert(inAbs2008Mode()); |
Daniel Sanders | b7f1c6f | 2014-05-09 09:46:21 +0000 | [diff] [blame] | 143 | if (hasDSP()) |
| 144 | report_fatal_error(ISA + " is not compatible with the DSP ASE", false); |
| 145 | } |
| 146 | |
Rafael Espindola | b30e66b | 2016-06-28 14:33:28 +0000 | [diff] [blame] | 147 | if (NoABICalls && TM.isPositionIndependent()) |
Sasa Stankovic | b38db1e | 2014-11-06 13:20:12 +0000 | [diff] [blame] | 148 | report_fatal_error("position-independent code requires '-mabicalls'"); |
| 149 | |
Simon Dardis | ca74dd7 | 2017-01-27 11:36:52 +0000 | [diff] [blame] | 150 | if (isABI_N64() && !TM.isPositionIndependent() && !hasSym32()) |
| 151 | NoABICalls = true; |
| 152 | |
Akira Hatanaka | ad49502 | 2012-08-22 03:18:13 +0000 | [diff] [blame] | 153 | // Set UseSmallSection. |
Sasa Stankovic | b38db1e | 2014-11-06 13:20:12 +0000 | [diff] [blame] | 154 | UseSmallSection = GPOpt; |
| 155 | if (!NoABICalls && GPOpt) { |
| 156 | errs() << "warning: cannot use small-data accesses for '-mabicalls'" |
| 157 | << "\n"; |
| 158 | UseSmallSection = false; |
| 159 | } |
Petar Jovanovic | 29aced1 | 2018-01-22 16:43:30 +0000 | [diff] [blame] | 160 | |
| 161 | if (hasDSPR2() && !DspWarningPrinted) { |
| 162 | if (hasMips64() && !hasMips64r2()) { |
| 163 | errs() << "warning: the 'dspr2' ASE requires MIPS64 revision 2 or " |
| 164 | << "greater\n"; |
| 165 | DspWarningPrinted = true; |
| 166 | } else if (hasMips32() && !hasMips32r2()) { |
| 167 | errs() << "warning: the 'dspr2' ASE requires MIPS32 revision 2 or " |
| 168 | << "greater\n"; |
| 169 | DspWarningPrinted = true; |
| 170 | } |
| 171 | } else if (hasDSP() && !DspWarningPrinted) { |
| 172 | if (hasMips64() && !hasMips64r2()) { |
| 173 | errs() << "warning: the 'dsp' ASE requires MIPS64 revision 2 or " |
| 174 | << "greater\n"; |
| 175 | DspWarningPrinted = true; |
| 176 | } else if (hasMips32() && !hasMips32r2()) { |
| 177 | errs() << "warning: the 'dsp' ASE requires MIPS32 revision 2 or " |
| 178 | << "greater\n"; |
| 179 | DspWarningPrinted = true; |
| 180 | } |
| 181 | } |
| 182 | |
Vladimir Stefanovic | 87b60a0e | 2018-07-04 19:26:31 +0000 | [diff] [blame] | 183 | StringRef ArchName = hasMips64() ? "MIPS64" : "MIPS32"; |
| 184 | |
| 185 | if (!hasMips32r5() && hasMSA() && !MSAWarningPrinted) { |
| 186 | errs() << "warning: the 'msa' ASE requires " << ArchName |
| 187 | << " revision 5 or greater\n"; |
| 188 | MSAWarningPrinted = true; |
| 189 | } |
| 190 | if (!hasMips32r5() && hasVirt() && !VirtWarningPrinted) { |
| 191 | errs() << "warning: the 'virt' ASE requires " << ArchName |
| 192 | << " revision 5 or greater\n"; |
| 193 | VirtWarningPrinted = true; |
| 194 | } |
| 195 | if (!hasMips32r6() && hasCRC() && !CRCWarningPrinted) { |
| 196 | errs() << "warning: the 'crc' ASE requires " << ArchName |
| 197 | << " revision 6 or greater\n"; |
| 198 | CRCWarningPrinted = true; |
| 199 | } |
| 200 | if (!hasMips32r6() && hasGINV() && !GINVWarningPrinted) { |
| 201 | errs() << "warning: the 'ginv' ASE requires " << ArchName |
| 202 | << " revision 6 or greater\n"; |
| 203 | GINVWarningPrinted = true; |
Petar Jovanovic | 29aced1 | 2018-01-22 16:43:30 +0000 | [diff] [blame] | 204 | } |
Petar Jovanovic | fac93e2 | 2018-02-23 11:06:40 +0000 | [diff] [blame] | 205 | |
| 206 | CallLoweringInfo.reset(new MipsCallLowering(*getTargetLowering())); |
| 207 | Legalizer.reset(new MipsLegalizerInfo(*this)); |
| 208 | |
| 209 | auto *RBI = new MipsRegisterBankInfo(*getRegisterInfo()); |
| 210 | RegBankInfo.reset(RBI); |
| 211 | InstSelector.reset(createMipsInstructionSelector( |
| 212 | *static_cast<const MipsTargetMachine *>(&TM), *this, *RBI)); |
Bruno Cardoso Lopes | 35e43c4 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 213 | } |
Akira Hatanaka | 047473e | 2012-03-28 00:24:17 +0000 | [diff] [blame] | 214 | |
Rafael Espindola | b30e66b | 2016-06-28 14:33:28 +0000 | [diff] [blame] | 215 | bool MipsSubtarget::isPositionIndependent() const { |
| 216 | return TM.isPositionIndependent(); |
| 217 | } |
| 218 | |
Sanjay Patel | a2f658d | 2014-07-15 22:39:58 +0000 | [diff] [blame] | 219 | /// This overrides the PostRAScheduler bit in the SchedModel for any CPU. |
Matthias Braun | 39a2afc | 2015-06-13 03:42:16 +0000 | [diff] [blame] | 220 | bool MipsSubtarget::enablePostRAScheduler() const { return true; } |
Sanjay Patel | a2f658d | 2014-07-15 22:39:58 +0000 | [diff] [blame] | 221 | |
| 222 | void MipsSubtarget::getCriticalPathRCs(RegClassVector &CriticalPathRCs) const { |
Akira Hatanaka | 047473e | 2012-03-28 00:24:17 +0000 | [diff] [blame] | 223 | CriticalPathRCs.clear(); |
John Baldwin | 3a1a951 | 2017-08-11 18:35:19 +0000 | [diff] [blame] | 224 | CriticalPathRCs.push_back(isGP64bit() ? &Mips::GPR64RegClass |
| 225 | : &Mips::GPR32RegClass); |
Sanjay Patel | a2f658d | 2014-07-15 22:39:58 +0000 | [diff] [blame] | 226 | } |
| 227 | |
| 228 | CodeGenOpt::Level MipsSubtarget::getOptLevelToEnablePostRAScheduler() const { |
| 229 | return CodeGenOpt::Aggressive; |
Akira Hatanaka | 047473e | 2012-03-28 00:24:17 +0000 | [diff] [blame] | 230 | } |
Reed Kotler | 1595f36 | 2013-04-09 19:46:01 +0000 | [diff] [blame] | 231 | |
Eric Christopher | daa9dbb | 2014-07-03 00:10:24 +0000 | [diff] [blame] | 232 | MipsSubtarget & |
| 233 | MipsSubtarget::initializeSubtargetDependencies(StringRef CPU, StringRef FS, |
Eric Christopher | 9072428 | 2015-01-08 18:18:57 +0000 | [diff] [blame] | 234 | const TargetMachine &TM) { |
Daniel Sanders | 50f1723 | 2015-09-15 16:17:27 +0000 | [diff] [blame] | 235 | std::string CPUName = MIPS_MC::selectMipsCPU(TM.getTargetTriple(), CPU); |
Eric Christopher | bbe6ff5 | 2015-02-18 00:55:06 +0000 | [diff] [blame] | 236 | |
Eric Christopher | 5b336a2 | 2014-07-02 01:14:43 +0000 | [diff] [blame] | 237 | // Parse features string. |
| 238 | ParseSubtargetFeatures(CPUName, FS); |
| 239 | // Initialize scheduling itinerary for the specified CPU. |
| 240 | InstrItins = getInstrItineraryForCPU(CPUName); |
Eric Christopher | daa9dbb | 2014-07-03 00:10:24 +0000 | [diff] [blame] | 241 | |
Toma Tabacu | 506cfd0 | 2015-05-07 10:29:52 +0000 | [diff] [blame] | 242 | if (InMips16Mode && !IsSoftFloat) |
Eric Christopher | daa9dbb | 2014-07-03 00:10:24 +0000 | [diff] [blame] | 243 | InMips16HardFloat = true; |
Eric Christopher | daa9dbb | 2014-07-03 00:10:24 +0000 | [diff] [blame] | 244 | |
John Baldwin | 1255b16 | 2017-08-14 21:49:38 +0000 | [diff] [blame] | 245 | if (StackAlignOverride) |
| 246 | stackAlignment = StackAlignOverride; |
| 247 | else if (isABI_N32() || isABI_N64()) |
| 248 | stackAlignment = 16; |
| 249 | else { |
| 250 | assert(isABI_O32() && "Unknown ABI for stack alignment!"); |
| 251 | stackAlignment = 8; |
| 252 | } |
| 253 | |
Eric Christopher | 5b336a2 | 2014-07-02 01:14:43 +0000 | [diff] [blame] | 254 | return *this; |
| 255 | } |
| 256 | |
Reed Kotler | 91ae982 | 2013-10-27 21:57:36 +0000 | [diff] [blame] | 257 | bool MipsSubtarget::useConstantIslands() { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 258 | LLVM_DEBUG(dbgs() << "use constant islands " << Mips16ConstantIslands |
| 259 | << "\n"); |
Reed Kotler | 91ae982 | 2013-10-27 21:57:36 +0000 | [diff] [blame] | 260 | return Mips16ConstantIslands; |
| 261 | } |
Eric Christopher | f74faf4 | 2014-07-18 22:34:20 +0000 | [diff] [blame] | 262 | |
| 263 | Reloc::Model MipsSubtarget::getRelocationModel() const { |
Eric Christopher | 9072428 | 2015-01-08 18:18:57 +0000 | [diff] [blame] | 264 | return TM.getRelocationModel(); |
Eric Christopher | f74faf4 | 2014-07-18 22:34:20 +0000 | [diff] [blame] | 265 | } |
Eric Christopher | a576281 | 2015-01-26 17:33:46 +0000 | [diff] [blame] | 266 | |
Eric Christopher | a576281 | 2015-01-26 17:33:46 +0000 | [diff] [blame] | 267 | bool MipsSubtarget::isABI_N64() const { return getABI().IsN64(); } |
| 268 | bool MipsSubtarget::isABI_N32() const { return getABI().IsN32(); } |
| 269 | bool MipsSubtarget::isABI_O32() const { return getABI().IsO32(); } |
| 270 | const MipsABIInfo &MipsSubtarget::getABI() const { return TM.getABI(); } |
Petar Jovanovic | fac93e2 | 2018-02-23 11:06:40 +0000 | [diff] [blame] | 271 | |
| 272 | const CallLowering *MipsSubtarget::getCallLowering() const { |
| 273 | return CallLoweringInfo.get(); |
| 274 | } |
| 275 | |
| 276 | const LegalizerInfo *MipsSubtarget::getLegalizerInfo() const { |
| 277 | return Legalizer.get(); |
| 278 | } |
| 279 | |
| 280 | const RegisterBankInfo *MipsSubtarget::getRegBankInfo() const { |
| 281 | return RegBankInfo.get(); |
| 282 | } |
| 283 | |
| 284 | const InstructionSelector *MipsSubtarget::getInstructionSelector() const { |
| 285 | return InstSelector.get(); |
| 286 | } |