blob: 137ba2129a485bd2becad61315f06fd7eb1f23f0 [file] [log] [blame]
Jia Liu9f610112012-02-17 08:55:11 +00001//===-- MipsSubtarget.cpp - Mips Subtarget Information --------------------===//
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +00002//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// 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 Lopes35e43c42007-06-06 07:42:06 +00006//
Akira Hatanakae2489122011-04-15 21:51:11 +00007//===----------------------------------------------------------------------===//
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +00008//
Evan Cheng0d639a22011-07-01 21:01:15 +00009// This file implements the Mips specific subclass of TargetSubtargetInfo.
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +000010//
Akira Hatanakae2489122011-04-15 21:51:11 +000011//===----------------------------------------------------------------------===//
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +000012
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000013#include "MipsSubtarget.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +000014#include "Mips.h"
15#include "MipsMachineFunction.h"
16#include "MipsRegisterInfo.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000017#include "MipsTargetMachine.h"
Petar Jovanovicfac93e22018-02-23 11:06:40 +000018#include "MipsCallLowering.h"
19#include "MipsLegalizerInfo.h"
20#include "MipsRegisterBankInfo.h"
Reed Kotler1595f362013-04-09 19:46:01 +000021#include "llvm/IR/Attributes.h"
22#include "llvm/IR/Function.h"
23#include "llvm/Support/CommandLine.h"
24#include "llvm/Support/Debug.h"
Evan Cheng2bb40352011-08-24 18:08:43 +000025#include "llvm/Support/TargetRegistry.h"
Reed Kotler1595f362013-04-09 19:46:01 +000026#include "llvm/Support/raw_ostream.h"
Evan Cheng54b68e32011-07-01 20:45:01 +000027
Chandler Carruthd174b722014-04-22 02:03:14 +000028using namespace llvm;
29
Chandler Carruth84e68b22014-04-22 02:41:26 +000030#define DEBUG_TYPE "mips-subtarget"
31
Evan Cheng54b68e32011-07-01 20:45:01 +000032#define GET_SUBTARGETINFO_TARGET_DESC
Evan Cheng4d1ca962011-07-08 01:53:10 +000033#define GET_SUBTARGETINFO_CTOR
Evan Chengc9c090d2011-07-01 22:36:09 +000034#include "MipsGenSubtargetInfo.inc"
Evan Cheng54b68e32011-07-01 20:45:01 +000035
Reed Kotler1595f362013-04-09 19:46:01 +000036// FIXME: Maybe this should be on by default when Mips16 is specified
37//
Eric Christopher0218f8c2015-02-20 08:42:34 +000038static 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 Kotler1595f362013-04-09 19:46:01 +000043
Eric Christopher0218f8c2015-02-20 08:42:34 +000044static 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
49static cl::opt<bool> Mips16HardFloat("mips16-hard-float", cl::NotHidden,
50 cl::desc("Enable mips16 hard float."),
51 cl::init(false));
Reed Kotlerfe94cc32013-04-10 16:58:04 +000052
Reed Kotler783c7942013-05-10 22:25:39 +000053static cl::opt<bool>
Eric Christopher0218f8c2015-02-20 08:42:34 +000054 Mips16ConstantIslands("mips16-constant-islands", cl::NotHidden,
55 cl::desc("Enable mips16 constant islands."),
56 cl::init(true));
Reed Kotler783c7942013-05-10 22:25:39 +000057
Reed Kotler91ae9822013-10-27 21:57:36 +000058static cl::opt<bool>
Eric Christopher0218f8c2015-02-20 08:42:34 +000059 GPOpt("mgpopt", cl::Hidden,
60 cl::desc("Enable gp-relative addressing of mips small data items"));
Sasa Stankovicb38db1e2014-11-06 13:20:12 +000061
Petar Jovanovic29aced12018-01-22 16:43:30 +000062bool MipsSubtarget::DspWarningPrinted = false;
Petar Jovanovic29aced12018-01-22 16:43:30 +000063bool MipsSubtarget::MSAWarningPrinted = false;
Vladimir Stefanovic87b60a0e2018-07-04 19:26:31 +000064bool MipsSubtarget::VirtWarningPrinted = false;
65bool MipsSubtarget::CRCWarningPrinted = false;
66bool MipsSubtarget::GINVWarningPrinted = false;
Petar Jovanovic29aced12018-01-22 16:43:30 +000067
John Baldwin3a1a9512017-08-11 18:35:19 +000068void MipsSubtarget::anchor() {}
David Blaikiea379b1812011-12-20 02:50:00 +000069
Simon Atanasyan039b02ec2017-05-23 15:00:26 +000070MipsSubtarget::MipsSubtarget(const Triple &TT, StringRef CPU, StringRef FS,
John Baldwin1255b162017-08-14 21:49:38 +000071 bool little, const MipsTargetMachine &TM,
72 unsigned StackAlignOverride)
Daniel Sanders50f17232015-09-15 16:17:27 +000073 : MipsGenSubtargetInfo(TT, CPU, FS), MipsArchVersion(MipsDefault),
74 IsLittle(little), IsSoftFloat(false), IsSingleFloat(false), IsFPXX(false),
Aleksandar Beserminji6c5dfcb2019-01-28 14:59:30 +000075 NoABICalls(false), Abs2008(false), IsFP64bit(false), UseOddSPReg(true),
Daniel Sanders50f17232015-09-15 16:17:27 +000076 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 Jovanovic2e386d32015-10-12 16:07:25 +000080 HasDSPR2(false), HasDSPR3(false), AllowMixed16_32(Mixed16_32 | Mips_Os16),
Simon Dardisca74dd72017-01-27 11:36:52 +000081 Os16(Mips_Os16), HasMSA(false), UseTCCInDIV(false), HasSym32(false),
Petar Jovanovic3408caf2018-03-14 14:13:31 +000082 HasEVA(false), DisableMadd4(false), HasMT(false), HasCRC(false),
Petar Jovanovicdaf51692018-05-17 16:30:32 +000083 HasVirt(false), HasGINV(false), UseIndirectJumpsHazard(false),
Petar Jovanovicd4349f32018-04-27 09:12:08 +000084 StackAlignOverride(StackAlignOverride),
Simon Dardis7bc8ad52018-02-21 00:06:53 +000085 TM(TM), TargetTriple(TT), TSInfo(),
86 InstrInfo(
87 MipsInstrInfo::create(initializeSubtargetDependencies(CPU, FS, TM))),
Eric Christophere54f10e2014-07-18 23:33:47 +000088 FrameLowering(MipsFrameLowering::create(*this)),
Eric Christopher90724282015-01-08 18:18:57 +000089 TLInfo(MipsTargetLowering::create(TM, *this)) {
Simon Atanasyan1093afe22013-11-19 12:20:17 +000090
Vasileios Kalintirisb2dd15f2014-11-11 11:43:55 +000091 if (MipsArchVersion == MipsDefault)
92 MipsArchVersion = Mips32;
93
Vasileios Kalintiris8edbcad2014-12-12 15:16:46 +000094 // 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 Sandersd2409532014-05-07 16:25:22 +000096 if (MipsArchVersion == Mips1)
97 report_fatal_error("Code generation for MIPS-I is not implemented", false);
Daniel Sandersd2409532014-05-07 16:25:22 +000098 if (MipsArchVersion == Mips5)
99 report_fatal_error("Code generation for MIPS-V is not implemented", false);
100
Akira Hatanaka6de4d122011-09-21 02:45:29 +0000101 // Check if Architecture and ABI are compatible.
Daniel Sanders43750eab2016-06-03 10:38:09 +0000102 assert(((!isGP64bit() && isABI_O32()) ||
Daniel Sanders5e94e682014-03-27 16:42:17 +0000103 (isGP64bit() && (isABI_N32() || isABI_N64()))) &&
Akira Hatanaka6de4d122011-09-21 02:45:29 +0000104 "Invalid Arch & ABI pair.");
105
Daniel Sanders1b1e25b2013-09-27 10:08:31 +0000106 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
Simon Atanasyane3892d82019-07-09 15:48:16 +0000111 if (isFP64bit() && !hasMips64() && hasMips32() && !hasMips32r2())
112 report_fatal_error(
113 "FPU with 64-bit registers is not available on MIPS32 pre revision 2. "
114 "Use -mcpu=mips32r2 or greater.");
115
Daniel Sanders7e527422014-07-10 13:38:23 +0000116 if (!isABI_O32() && !useOddSPReg())
Daniel Sanders7ddb0ab2014-07-14 13:08:14 +0000117 report_fatal_error("-mattr=+nooddspreg requires the O32 ABI.", false);
Daniel Sanders7e527422014-07-10 13:38:23 +0000118
Sasa Stankovicb976fee2014-07-14 09:40:29 +0000119 if (IsFPXX && (isABI_N32() || isABI_N64()))
120 report_fatal_error("FPXX is not permitted for the N32/N64 ABI's.", false);
121
Aleksandar Beserminjid6dada12017-12-11 11:21:40 +0000122 if (hasMips64r6() && InMicroMipsMode)
123 report_fatal_error("microMIPS64R6 is not supported", false);
124
Simon Dardisaf38a8f2018-06-19 16:05:44 +0000125 if (!isABI_O32() && InMicroMipsMode)
126 report_fatal_error("microMIPS64 is not supported.", false);
Simon Dardis7bc8ad52018-02-21 00:06:53 +0000127
128 if (UseIndirectJumpsHazard) {
129 if (InMicroMipsMode)
130 report_fatal_error(
131 "cannot combine indirect jumps with hazard barriers and microMIPS");
132 if (!hasMips32r2())
133 report_fatal_error(
134 "indirect jumps with hazard barriers requires MIPS32R2 or later");
135 }
Aleksandar Beserminji6c5dfcb2019-01-28 14:59:30 +0000136 if (inAbs2008Mode() && hasMips32() && !hasMips32r2()) {
137 report_fatal_error("IEEE 754-2008 abs.fmt is not supported for the given "
138 "architecture.",
139 false);
140 }
141
Daniel Sandersb7f1c6f2014-05-09 09:46:21 +0000142 if (hasMips32r6()) {
143 StringRef ISA = hasMips64r6() ? "MIPS64r6" : "MIPS32r6";
144
145 assert(isFP64bit());
146 assert(isNaN2008());
Aleksandar Beserminji6c5dfcb2019-01-28 14:59:30 +0000147 assert(inAbs2008Mode());
Daniel Sandersb7f1c6f2014-05-09 09:46:21 +0000148 if (hasDSP())
149 report_fatal_error(ISA + " is not compatible with the DSP ASE", false);
150 }
151
Rafael Espindolab30e66b2016-06-28 14:33:28 +0000152 if (NoABICalls && TM.isPositionIndependent())
Sasa Stankovicb38db1e2014-11-06 13:20:12 +0000153 report_fatal_error("position-independent code requires '-mabicalls'");
154
Simon Dardisca74dd72017-01-27 11:36:52 +0000155 if (isABI_N64() && !TM.isPositionIndependent() && !hasSym32())
156 NoABICalls = true;
157
Akira Hatanakaad495022012-08-22 03:18:13 +0000158 // Set UseSmallSection.
Sasa Stankovicb38db1e2014-11-06 13:20:12 +0000159 UseSmallSection = GPOpt;
160 if (!NoABICalls && GPOpt) {
161 errs() << "warning: cannot use small-data accesses for '-mabicalls'"
162 << "\n";
163 UseSmallSection = false;
164 }
Petar Jovanovic29aced12018-01-22 16:43:30 +0000165
166 if (hasDSPR2() && !DspWarningPrinted) {
167 if (hasMips64() && !hasMips64r2()) {
168 errs() << "warning: the 'dspr2' ASE requires MIPS64 revision 2 or "
169 << "greater\n";
170 DspWarningPrinted = true;
171 } else if (hasMips32() && !hasMips32r2()) {
172 errs() << "warning: the 'dspr2' ASE requires MIPS32 revision 2 or "
173 << "greater\n";
174 DspWarningPrinted = true;
175 }
176 } else if (hasDSP() && !DspWarningPrinted) {
177 if (hasMips64() && !hasMips64r2()) {
178 errs() << "warning: the 'dsp' ASE requires MIPS64 revision 2 or "
179 << "greater\n";
180 DspWarningPrinted = true;
181 } else if (hasMips32() && !hasMips32r2()) {
182 errs() << "warning: the 'dsp' ASE requires MIPS32 revision 2 or "
183 << "greater\n";
184 DspWarningPrinted = true;
185 }
186 }
187
Vladimir Stefanovic87b60a0e2018-07-04 19:26:31 +0000188 StringRef ArchName = hasMips64() ? "MIPS64" : "MIPS32";
189
190 if (!hasMips32r5() && hasMSA() && !MSAWarningPrinted) {
191 errs() << "warning: the 'msa' ASE requires " << ArchName
192 << " revision 5 or greater\n";
193 MSAWarningPrinted = true;
194 }
195 if (!hasMips32r5() && hasVirt() && !VirtWarningPrinted) {
196 errs() << "warning: the 'virt' ASE requires " << ArchName
197 << " revision 5 or greater\n";
198 VirtWarningPrinted = true;
199 }
200 if (!hasMips32r6() && hasCRC() && !CRCWarningPrinted) {
201 errs() << "warning: the 'crc' ASE requires " << ArchName
202 << " revision 6 or greater\n";
203 CRCWarningPrinted = true;
204 }
205 if (!hasMips32r6() && hasGINV() && !GINVWarningPrinted) {
206 errs() << "warning: the 'ginv' ASE requires " << ArchName
207 << " revision 6 or greater\n";
208 GINVWarningPrinted = true;
Petar Jovanovic29aced12018-01-22 16:43:30 +0000209 }
Petar Jovanovicfac93e22018-02-23 11:06:40 +0000210
211 CallLoweringInfo.reset(new MipsCallLowering(*getTargetLowering()));
212 Legalizer.reset(new MipsLegalizerInfo(*this));
213
214 auto *RBI = new MipsRegisterBankInfo(*getRegisterInfo());
215 RegBankInfo.reset(RBI);
216 InstSelector.reset(createMipsInstructionSelector(
217 *static_cast<const MipsTargetMachine *>(&TM), *this, *RBI));
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +0000218}
Akira Hatanaka047473e2012-03-28 00:24:17 +0000219
Rafael Espindolab30e66b2016-06-28 14:33:28 +0000220bool MipsSubtarget::isPositionIndependent() const {
221 return TM.isPositionIndependent();
222}
223
Sanjay Patela2f658d2014-07-15 22:39:58 +0000224/// This overrides the PostRAScheduler bit in the SchedModel for any CPU.
Matthias Braun39a2afc2015-06-13 03:42:16 +0000225bool MipsSubtarget::enablePostRAScheduler() const { return true; }
Sanjay Patela2f658d2014-07-15 22:39:58 +0000226
227void MipsSubtarget::getCriticalPathRCs(RegClassVector &CriticalPathRCs) const {
Akira Hatanaka047473e2012-03-28 00:24:17 +0000228 CriticalPathRCs.clear();
John Baldwin3a1a9512017-08-11 18:35:19 +0000229 CriticalPathRCs.push_back(isGP64bit() ? &Mips::GPR64RegClass
230 : &Mips::GPR32RegClass);
Sanjay Patela2f658d2014-07-15 22:39:58 +0000231}
232
233CodeGenOpt::Level MipsSubtarget::getOptLevelToEnablePostRAScheduler() const {
234 return CodeGenOpt::Aggressive;
Akira Hatanaka047473e2012-03-28 00:24:17 +0000235}
Reed Kotler1595f362013-04-09 19:46:01 +0000236
Eric Christopherdaa9dbb2014-07-03 00:10:24 +0000237MipsSubtarget &
238MipsSubtarget::initializeSubtargetDependencies(StringRef CPU, StringRef FS,
Eric Christopher90724282015-01-08 18:18:57 +0000239 const TargetMachine &TM) {
Daniel Sanders50f17232015-09-15 16:17:27 +0000240 std::string CPUName = MIPS_MC::selectMipsCPU(TM.getTargetTriple(), CPU);
Eric Christopherbbe6ff52015-02-18 00:55:06 +0000241
Eric Christopher5b336a22014-07-02 01:14:43 +0000242 // Parse features string.
243 ParseSubtargetFeatures(CPUName, FS);
244 // Initialize scheduling itinerary for the specified CPU.
245 InstrItins = getInstrItineraryForCPU(CPUName);
Eric Christopherdaa9dbb2014-07-03 00:10:24 +0000246
Toma Tabacu506cfd02015-05-07 10:29:52 +0000247 if (InMips16Mode && !IsSoftFloat)
Eric Christopherdaa9dbb2014-07-03 00:10:24 +0000248 InMips16HardFloat = true;
Eric Christopherdaa9dbb2014-07-03 00:10:24 +0000249
John Baldwin1255b162017-08-14 21:49:38 +0000250 if (StackAlignOverride)
251 stackAlignment = StackAlignOverride;
252 else if (isABI_N32() || isABI_N64())
253 stackAlignment = 16;
254 else {
255 assert(isABI_O32() && "Unknown ABI for stack alignment!");
256 stackAlignment = 8;
257 }
258
Eric Christopher5b336a22014-07-02 01:14:43 +0000259 return *this;
260}
261
Reed Kotler91ae9822013-10-27 21:57:36 +0000262bool MipsSubtarget::useConstantIslands() {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000263 LLVM_DEBUG(dbgs() << "use constant islands " << Mips16ConstantIslands
264 << "\n");
Reed Kotler91ae9822013-10-27 21:57:36 +0000265 return Mips16ConstantIslands;
266}
Eric Christopherf74faf42014-07-18 22:34:20 +0000267
268Reloc::Model MipsSubtarget::getRelocationModel() const {
Eric Christopher90724282015-01-08 18:18:57 +0000269 return TM.getRelocationModel();
Eric Christopherf74faf42014-07-18 22:34:20 +0000270}
Eric Christophera5762812015-01-26 17:33:46 +0000271
Eric Christophera5762812015-01-26 17:33:46 +0000272bool MipsSubtarget::isABI_N64() const { return getABI().IsN64(); }
273bool MipsSubtarget::isABI_N32() const { return getABI().IsN32(); }
274bool MipsSubtarget::isABI_O32() const { return getABI().IsO32(); }
275const MipsABIInfo &MipsSubtarget::getABI() const { return TM.getABI(); }
Petar Jovanovicfac93e22018-02-23 11:06:40 +0000276
277const CallLowering *MipsSubtarget::getCallLowering() const {
278 return CallLoweringInfo.get();
279}
280
281const LegalizerInfo *MipsSubtarget::getLegalizerInfo() const {
282 return Legalizer.get();
283}
284
285const RegisterBankInfo *MipsSubtarget::getRegBankInfo() const {
286 return RegBankInfo.get();
287}
288
Amara Emersone14c91b2019-08-13 06:26:59 +0000289InstructionSelector *MipsSubtarget::getInstructionSelector() const {
Petar Jovanovicfac93e22018-02-23 11:06:40 +0000290 return InstSelector.get();
291}