blob: 1fa28dc97d9afa25f9d4e31ec2e7a97ba5439412 [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//
3// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +00007//
Akira Hatanakae2489122011-04-15 21:51:11 +00008//===----------------------------------------------------------------------===//
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +00009//
Evan Cheng0d639a22011-07-01 21:01:15 +000010// This file implements the Mips specific subclass of TargetSubtargetInfo.
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +000011//
Akira Hatanakae2489122011-04-15 21:51:11 +000012//===----------------------------------------------------------------------===//
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +000013
Reed Kotler1595f362013-04-09 19:46:01 +000014#include "MipsMachineFunction.h"
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +000015#include "Mips.h"
Akira Hatanaka047473e2012-03-28 00:24:17 +000016#include "MipsRegisterInfo.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000017#include "MipsSubtarget.h"
18#include "MipsTargetMachine.h"
Reed Kotler1595f362013-04-09 19:46:01 +000019#include "llvm/IR/Attributes.h"
20#include "llvm/IR/Function.h"
21#include "llvm/Support/CommandLine.h"
22#include "llvm/Support/Debug.h"
Evan Cheng2bb40352011-08-24 18:08:43 +000023#include "llvm/Support/TargetRegistry.h"
Reed Kotler1595f362013-04-09 19:46:01 +000024#include "llvm/Support/raw_ostream.h"
Evan Cheng54b68e32011-07-01 20:45:01 +000025
Chandler Carruthd174b722014-04-22 02:03:14 +000026using namespace llvm;
27
Chandler Carruth84e68b22014-04-22 02:41:26 +000028#define DEBUG_TYPE "mips-subtarget"
29
Evan Cheng54b68e32011-07-01 20:45:01 +000030#define GET_SUBTARGETINFO_TARGET_DESC
Evan Cheng4d1ca962011-07-08 01:53:10 +000031#define GET_SUBTARGETINFO_CTOR
Evan Chengc9c090d2011-07-01 22:36:09 +000032#include "MipsGenSubtargetInfo.inc"
Evan Cheng54b68e32011-07-01 20:45:01 +000033
Reed Kotler1595f362013-04-09 19:46:01 +000034// FIXME: Maybe this should be on by default when Mips16 is specified
35//
36static cl::opt<bool> Mixed16_32(
37 "mips-mixed-16-32",
38 cl::init(false),
39 cl::desc("Allow for a mixture of Mips16 "
40 "and Mips32 code in a single source file"),
41 cl::Hidden);
42
Reed Kotlerfe94cc32013-04-10 16:58:04 +000043static cl::opt<bool> Mips_Os16(
44 "mips-os16",
45 cl::init(false),
46 cl::desc("Compile all functions that don' use "
47 "floating point as Mips 16"),
48 cl::Hidden);
49
Reed Kotler783c7942013-05-10 22:25:39 +000050static cl::opt<bool>
51Mips16HardFloat("mips16-hard-float", cl::NotHidden,
52 cl::desc("MIPS: mips16 hard float enable."),
53 cl::init(false));
54
Reed Kotler91ae9822013-10-27 21:57:36 +000055static cl::opt<bool>
56Mips16ConstantIslands(
Reed Kotler0d409e22013-11-28 00:56:37 +000057 "mips16-constant-islands", cl::NotHidden,
58 cl::desc("MIPS: mips16 constant islands enable."),
59 cl::init(true));
Reed Kotler91ae9822013-10-27 21:57:36 +000060
Daniel Sanderse70897f2014-02-20 13:13:33 +000061/// Select the Mips CPU for the given triple and cpu name.
62/// FIXME: Merge with the copy in MipsMCTargetDesc.cpp
Eric Christopher5b336a22014-07-02 01:14:43 +000063static StringRef selectMipsCPU(Triple TT, StringRef CPU) {
Daniel Sanders737285e2014-02-26 10:20:15 +000064 if (CPU.empty() || CPU == "generic") {
Eric Christopher5b336a22014-07-02 01:14:43 +000065 if (TT.getArch() == Triple::mips || TT.getArch() == Triple::mipsel)
Daniel Sanderse70897f2014-02-20 13:13:33 +000066 CPU = "mips32";
67 else
68 CPU = "mips64";
69 }
70 return CPU;
71}
72
David Blaikiea379b1812011-12-20 02:50:00 +000073void MipsSubtarget::anchor() { }
74
Eric Christopher5f9fd212014-07-02 21:29:23 +000075static std::string computeDataLayout(const MipsSubtarget &ST) {
76 std::string Ret = "";
77
78 // There are both little and big endian mips.
79 if (ST.isLittle())
80 Ret += "e";
81 else
82 Ret += "E";
83
84 Ret += "-m:m";
85
86 // Pointers are 32 bit on some ABIs.
87 if (!ST.isABI_N64())
88 Ret += "-p:32:32";
89
90 // 8 and 16 bit integers only need no have natural alignment, but try to
91 // align them to 32 bits. 64 bit integers have natural alignment.
92 Ret += "-i8:8:32-i16:16:32-i64:64";
93
94 // 32 bit registers are always available and the stack is at least 64 bit
95 // aligned. On N64 64 bit registers are also available and the stack is
96 // 128 bit aligned.
97 if (ST.isABI_N64() || ST.isABI_N32())
98 Ret += "-n32:64-S128";
99 else
100 Ret += "-n32-S64";
101
102 return Ret;
103}
104
Evan Chengfe6e4052011-06-30 01:53:36 +0000105MipsSubtarget::MipsSubtarget(const std::string &TT, const std::string &CPU,
Akira Hatanakaad495022012-08-22 03:18:13 +0000106 const std::string &FS, bool little,
Eric Christopherf74faf42014-07-18 22:34:20 +0000107 MipsTargetMachine *_TM)
Matheus Almeida0051f2d2014-04-16 15:48:55 +0000108 : MipsGenSubtargetInfo(TT, CPU, FS), MipsArchVersion(Mips32),
109 MipsABI(UnknownABI), IsLittle(little), IsSingleFloat(false),
Zoran Jovanovic255d00d2014-07-10 15:36:12 +0000110 IsFPXX(false), IsFP64bit(false), UseOddSPReg(true), IsNaN2008bit(false),
Daniel Sanders7e527422014-07-10 13:38:23 +0000111 IsGP64bit(false), HasVFPU(false), HasCnMips(false), IsLinux(true),
112 HasMips3_32(false), HasMips3_32r2(false), HasMips4_32(false),
113 HasMips4_32r2(false), HasMips5_32r2(false), InMips16Mode(false),
114 InMips16HardFloat(Mips16HardFloat), InMicroMipsMode(false), HasDSP(false),
115 HasDSPR2(false), AllowMixed16_32(Mixed16_32 | Mips_Os16), Os16(Mips_Os16),
Eric Christopherf74faf42014-07-18 22:34:20 +0000116 HasMSA(false), OverrideMode(NoOverride), TM(_TM), TargetTriple(TT),
Eric Christopherdaa9dbb2014-07-03 00:10:24 +0000117 DL(computeDataLayout(initializeSubtargetDependencies(CPU, FS, TM))),
Eric Christopher675cb4d2014-07-18 23:25:00 +0000118 TSInfo(DL), JITInfo(), InstrInfo(MipsInstrInfo::create(*this)),
Eric Christophere54f10e2014-07-18 23:33:47 +0000119 FrameLowering(MipsFrameLowering::create(*this)),
Eric Christopher8924d272014-07-18 23:25:04 +0000120 TLInfo(MipsTargetLowering::create(*TM, *this)) {
Simon Atanasyan1093afe22013-11-19 12:20:17 +0000121
Reed Kotler1595f362013-04-09 19:46:01 +0000122 PreviousInMips16Mode = InMips16Mode;
123
Daniel Sandersd2409532014-05-07 16:25:22 +0000124 // Don't even attempt to generate code for MIPS-I, MIPS-II, MIPS-III, and
125 // MIPS-V. They have not been tested and currently exist for the integrated
126 // assembler only.
127 if (MipsArchVersion == Mips1)
128 report_fatal_error("Code generation for MIPS-I is not implemented", false);
129 if (MipsArchVersion == Mips2)
130 report_fatal_error("Code generation for MIPS-II is not implemented", false);
131 if (MipsArchVersion == Mips3)
132 report_fatal_error("Code generation for MIPS-III is not implemented",
133 false);
134 if (MipsArchVersion == Mips5)
135 report_fatal_error("Code generation for MIPS-V is not implemented", false);
136
Daniel Sanders5a1449d2014-02-20 14:58:19 +0000137 // Assert exactly one ABI was chosen.
138 assert(MipsABI != UnknownABI);
139 assert((((getFeatureBits() & Mips::FeatureO32) != 0) +
140 ((getFeatureBits() & Mips::FeatureEABI) != 0) +
141 ((getFeatureBits() & Mips::FeatureN32) != 0) +
142 ((getFeatureBits() & Mips::FeatureN64) != 0)) == 1);
Akira Hatanaka6de4d122011-09-21 02:45:29 +0000143
144 // Check if Architecture and ABI are compatible.
Daniel Sanders5e94e682014-03-27 16:42:17 +0000145 assert(((!isGP64bit() && (isABI_O32() || isABI_EABI())) ||
146 (isGP64bit() && (isABI_N32() || isABI_N64()))) &&
Akira Hatanaka6de4d122011-09-21 02:45:29 +0000147 "Invalid Arch & ABI pair.");
148
Daniel Sanders1b1e25b2013-09-27 10:08:31 +0000149 if (hasMSA() && !isFP64bit())
150 report_fatal_error("MSA requires a 64-bit FPU register file (FR=1 mode). "
151 "See -mattr=+fp64.",
152 false);
153
Daniel Sanders7e527422014-07-10 13:38:23 +0000154 if (!isABI_O32() && !useOddSPReg())
Daniel Sanders7ddb0ab2014-07-14 13:08:14 +0000155 report_fatal_error("-mattr=+nooddspreg requires the O32 ABI.", false);
Daniel Sanders7e527422014-07-10 13:38:23 +0000156
Sasa Stankovicb976fee2014-07-14 09:40:29 +0000157 if (IsFPXX && (isABI_N32() || isABI_N64()))
158 report_fatal_error("FPXX is not permitted for the N32/N64 ABI's.", false);
159
Daniel Sandersb7f1c6f2014-05-09 09:46:21 +0000160 if (hasMips32r6()) {
161 StringRef ISA = hasMips64r6() ? "MIPS64r6" : "MIPS32r6";
162
163 assert(isFP64bit());
164 assert(isNaN2008());
165 if (hasDSP())
166 report_fatal_error(ISA + " is not compatible with the DSP ASE", false);
167 }
168
Bruno Cardoso Lopes80ab8f92008-07-14 14:42:54 +0000169 // Is the target system Linux ?
170 if (TT.find("linux") == std::string::npos)
171 IsLinux = false;
Akira Hatanakaad495022012-08-22 03:18:13 +0000172
173 // Set UseSmallSection.
Daniel Sandersa024fb02014-04-16 12:29:08 +0000174 // TODO: Investigate the IsLinux check. I suspect it's really checking for
175 // bare-metal.
Eric Christopherf74faf42014-07-18 22:34:20 +0000176 UseSmallSection = !IsLinux && (TM->getRelocationModel() == Reloc::Static);
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +0000177}
Akira Hatanaka047473e2012-03-28 00:24:17 +0000178
Sanjay Patela2f658d2014-07-15 22:39:58 +0000179/// This overrides the PostRAScheduler bit in the SchedModel for any CPU.
180bool MipsSubtarget::enablePostMachineScheduler() const { return true; }
181
182void MipsSubtarget::getCriticalPathRCs(RegClassVector &CriticalPathRCs) const {
Akira Hatanaka047473e2012-03-28 00:24:17 +0000183 CriticalPathRCs.clear();
Sanjay Patela2f658d2014-07-15 22:39:58 +0000184 CriticalPathRCs.push_back(isGP64bit() ?
185 &Mips::GPR64RegClass : &Mips::GPR32RegClass);
186}
187
188CodeGenOpt::Level MipsSubtarget::getOptLevelToEnablePostRAScheduler() const {
189 return CodeGenOpt::Aggressive;
Akira Hatanaka047473e2012-03-28 00:24:17 +0000190}
Reed Kotler1595f362013-04-09 19:46:01 +0000191
Eric Christopherdaa9dbb2014-07-03 00:10:24 +0000192MipsSubtarget &
193MipsSubtarget::initializeSubtargetDependencies(StringRef CPU, StringRef FS,
194 const TargetMachine *TM) {
Eric Christopher5b336a22014-07-02 01:14:43 +0000195 std::string CPUName = selectMipsCPU(TargetTriple, CPU);
196
197 // Parse features string.
198 ParseSubtargetFeatures(CPUName, FS);
199 // Initialize scheduling itinerary for the specified CPU.
200 InstrItins = getInstrItineraryForCPU(CPUName);
Eric Christopherdaa9dbb2014-07-03 00:10:24 +0000201
Eric Christopher7394e232014-07-18 00:08:50 +0000202 if (InMips16Mode && !TM->Options.UseSoftFloat)
Eric Christopherdaa9dbb2014-07-03 00:10:24 +0000203 InMips16HardFloat = true;
Eric Christopherdaa9dbb2014-07-03 00:10:24 +0000204
Eric Christopher5b336a22014-07-02 01:14:43 +0000205 return *this;
206}
207
Reed Kotler1595f362013-04-09 19:46:01 +0000208//FIXME: This logic for reseting the subtarget along with
209// the helper classes can probably be simplified but there are a lot of
210// cases so we will defer rewriting this to later.
211//
212void MipsSubtarget::resetSubtarget(MachineFunction *MF) {
213 bool ChangeToMips16 = false, ChangeToNoMips16 = false;
214 DEBUG(dbgs() << "resetSubtargetFeatures" << "\n");
215 AttributeSet FnAttrs = MF->getFunction()->getAttributes();
216 ChangeToMips16 = FnAttrs.hasAttribute(AttributeSet::FunctionIndex,
217 "mips16");
218 ChangeToNoMips16 = FnAttrs.hasAttribute(AttributeSet::FunctionIndex,
219 "nomips16");
220 assert (!(ChangeToMips16 & ChangeToNoMips16) &&
221 "mips16 and nomips16 specified on the same function");
222 if (ChangeToMips16) {
223 if (PreviousInMips16Mode)
224 return;
225 OverrideMode = Mips16Override;
226 PreviousInMips16Mode = true;
Eric Christopherdaa9dbb2014-07-03 00:10:24 +0000227 setHelperClassesMips16();
Reed Kotler1595f362013-04-09 19:46:01 +0000228 return;
229 } else if (ChangeToNoMips16) {
230 if (!PreviousInMips16Mode)
231 return;
232 OverrideMode = NoMips16Override;
233 PreviousInMips16Mode = false;
Eric Christopherdaa9dbb2014-07-03 00:10:24 +0000234 setHelperClassesMipsSE();
Reed Kotler1595f362013-04-09 19:46:01 +0000235 return;
236 } else {
237 if (OverrideMode == NoOverride)
238 return;
239 OverrideMode = NoOverride;
240 DEBUG(dbgs() << "back to default" << "\n");
241 if (inMips16Mode() && !PreviousInMips16Mode) {
Eric Christopherdaa9dbb2014-07-03 00:10:24 +0000242 setHelperClassesMips16();
Reed Kotler1595f362013-04-09 19:46:01 +0000243 PreviousInMips16Mode = true;
244 } else if (!inMips16Mode() && PreviousInMips16Mode) {
Eric Christopherdaa9dbb2014-07-03 00:10:24 +0000245 setHelperClassesMipsSE();
Reed Kotler1595f362013-04-09 19:46:01 +0000246 PreviousInMips16Mode = false;
247 }
248 return;
249 }
250}
251
Eric Christopherdaa9dbb2014-07-03 00:10:24 +0000252void MipsSubtarget::setHelperClassesMips16() {
253 InstrInfoSE.swap(InstrInfo);
254 FrameLoweringSE.swap(FrameLowering);
255 TLInfoSE.swap(TLInfo);
256 if (!InstrInfo16) {
Eric Christopher675cb4d2014-07-18 23:25:00 +0000257 InstrInfo.reset(MipsInstrInfo::create(*this));
Eric Christophere54f10e2014-07-18 23:33:47 +0000258 FrameLowering.reset(MipsFrameLowering::create(*this));
Eric Christopher8924d272014-07-18 23:25:04 +0000259 TLInfo.reset(MipsTargetLowering::create(*TM, *this));
Eric Christopherdaa9dbb2014-07-03 00:10:24 +0000260 } else {
261 InstrInfo16.swap(InstrInfo);
262 FrameLowering16.swap(FrameLowering);
263 TLInfo16.swap(TLInfo);
264 }
265 assert(TLInfo && "null target lowering 16");
266 assert(InstrInfo && "null instr info 16");
267 assert(FrameLowering && "null frame lowering 16");
268}
269
270void MipsSubtarget::setHelperClassesMipsSE() {
271 InstrInfo16.swap(InstrInfo);
272 FrameLowering16.swap(FrameLowering);
273 TLInfo16.swap(TLInfo);
274 if (!InstrInfoSE) {
Eric Christopher675cb4d2014-07-18 23:25:00 +0000275 InstrInfo.reset(MipsInstrInfo::create(*this));
Eric Christophere54f10e2014-07-18 23:33:47 +0000276 FrameLowering.reset(MipsFrameLowering::create(*this));
Eric Christopher8924d272014-07-18 23:25:04 +0000277 TLInfo.reset(MipsTargetLowering::create(*TM, *this));
Eric Christopherdaa9dbb2014-07-03 00:10:24 +0000278 } else {
279 InstrInfoSE.swap(InstrInfo);
280 FrameLoweringSE.swap(FrameLowering);
281 TLInfoSE.swap(TLInfo);
282 }
283 assert(TLInfo && "null target lowering in SE");
284 assert(InstrInfo && "null instr info SE");
285 assert(FrameLowering && "null frame lowering SE");
286}
287
Eric Christopher7394e232014-07-18 00:08:50 +0000288bool MipsSubtarget::abiUsesSoftFloat() const {
Reed Kotlerc03807a2013-08-30 19:40:56 +0000289 return TM->Options.UseSoftFloat && !InMips16HardFloat;
290}
Reed Kotler91ae9822013-10-27 21:57:36 +0000291
292bool MipsSubtarget::useConstantIslands() {
293 DEBUG(dbgs() << "use constant islands " << Mips16ConstantIslands << "\n");
294 return Mips16ConstantIslands;
295}
Eric Christopherf74faf42014-07-18 22:34:20 +0000296
297Reloc::Model MipsSubtarget::getRelocationModel() const {
298 return TM->getRelocationModel();
299}