blob: 3f7a6c3ed732056ef043c4e5816b5e318d22a3e0 [file] [log] [blame]
Jia Liuf54f60f2012-02-28 07:46:26 +00001//===-- MipsSubtarget.h - Define Subtarget for the Mips ---------*- C++ -*-===//
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 declares 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
14#ifndef MIPSSUBTARGET_H
15#define MIPSSUBTARGET_H
16
Eric Christopherdaa9dbb2014-07-03 00:10:24 +000017#include "MipsFrameLowering.h"
18#include "MipsISelLowering.h"
19#include "MipsInstrInfo.h"
Eric Christopherb9fd9ed2014-08-07 22:02:54 +000020#include "MipsJITInfo.h"
Eric Christopher5f9fd212014-07-02 21:29:23 +000021#include "MipsSelectionDAGInfo.h"
22#include "llvm/IR/DataLayout.h"
Evan Cheng8264e272011-06-29 01:14:12 +000023#include "llvm/MC/MCInstrItineraries.h"
Reed Kotler1595f362013-04-09 19:46:01 +000024#include "llvm/Support/ErrorHandling.h"
Chandler Carruth802d7552012-12-04 07:12:27 +000025#include "llvm/Target/TargetSubtargetInfo.h"
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +000026#include <string>
27
Evan Cheng54b68e32011-07-01 20:45:01 +000028#define GET_SUBTARGETINFO_HEADER
Evan Chengc9c090d2011-07-01 22:36:09 +000029#include "MipsGenSubtargetInfo.inc"
Evan Cheng54b68e32011-07-01 20:45:01 +000030
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +000031namespace llvm {
Evan Cheng1a72add62011-07-07 07:07:08 +000032class StringRef;
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +000033
Reed Kotler1595f362013-04-09 19:46:01 +000034class MipsTargetMachine;
35
Evan Cheng54b68e32011-07-01 20:45:01 +000036class MipsSubtarget : public MipsGenSubtargetInfo {
David Blaikiea379b1812011-12-20 02:50:00 +000037 virtual void anchor();
Bruno Cardoso Lopes87beec92007-08-18 01:52:27 +000038
Bruno Cardoso Lopes80ab8f92008-07-14 14:42:54 +000039public:
Akira Hatanaka3efff6c2011-09-14 17:22:51 +000040 // NOTE: O64 will not be supported.
Bruno Cardoso Lopes80ab8f92008-07-14 14:42:54 +000041 enum MipsABIEnum {
Akira Hatanaka6de4d122011-09-21 02:45:29 +000042 UnknownABI, O32, N32, N64, EABI
Bruno Cardoso Lopesed874ef2011-03-04 17:51:39 +000043 };
Bruno Cardoso Lopes80ab8f92008-07-14 14:42:54 +000044
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +000045protected:
Daniel Sandersb7f1c6f2014-05-09 09:46:21 +000046 enum MipsArchEnum {
47 Mips1, Mips2, Mips32, Mips32r2, Mips32r6, Mips3, Mips4, Mips5, Mips64,
48 Mips64r2, Mips64r6
49 };
Bruno Cardoso Lopesc9c3f492008-07-05 19:05:21 +000050
Bruno Cardoso Lopesed874ef2011-03-04 17:51:39 +000051 // Mips architecture version
Bruno Cardoso Lopesc9c3f492008-07-05 19:05:21 +000052 MipsArchEnum MipsArchVersion;
53
Bruno Cardoso Lopesed874ef2011-03-04 17:51:39 +000054 // Mips supported ABIs
Bruno Cardoso Lopesc9c3f492008-07-05 19:05:21 +000055 MipsABIEnum MipsABI;
56
57 // IsLittle - The target is Little Endian
Bruno Cardoso Lopes326a0372008-06-04 01:45:25 +000058 bool IsLittle;
Bruno Cardoso Lopesc9c3f492008-07-05 19:05:21 +000059
60 // IsSingleFloat - The target only supports single precision float
61 // point operations. This enable the target to use all 32 32-bit
Bruno Cardoso Lopes7ceec572008-07-09 04:45:36 +000062 // floating point registers instead of only using even ones.
Bruno Cardoso Lopesc9c3f492008-07-05 19:05:21 +000063 bool IsSingleFloat;
64
Zoran Jovanovic255d00d2014-07-10 15:36:12 +000065 // IsFPXX - MIPS O32 modeless ABI.
66 bool IsFPXX;
67
Bruno Cardoso Lopes7ceec572008-07-09 04:45:36 +000068 // IsFP64bit - The target processor has 64-bit floating point registers.
Bruno Cardoso Lopesc9c3f492008-07-05 19:05:21 +000069 bool IsFP64bit;
70
Daniel Sanders7e527422014-07-10 13:38:23 +000071 /// Are odd single-precision registers permitted?
72 /// This corresponds to -modd-spreg and -mno-odd-spreg
73 bool UseOddSPReg;
74
Matheus Almeida0051f2d2014-04-16 15:48:55 +000075 // IsNan2008 - IEEE 754-2008 NaN encoding.
76 bool IsNaN2008bit;
77
Bruno Cardoso Lopesc9c3f492008-07-05 19:05:21 +000078 // IsFP64bit - General-purpose registers are 64 bits wide
79 bool IsGP64bit;
80
Bruno Cardoso Lopesbcc21392008-07-09 05:32:22 +000081 // HasVFPU - Processor has a vector floating point unit.
82 bool HasVFPU;
Bruno Cardoso Lopesc9c3f492008-07-05 19:05:21 +000083
Kai Nacke93fe5e82014-03-20 11:51:58 +000084 // CPU supports cnMIPS (Cavium Networks Octeon CPU).
85 bool HasCnMips;
86
Bruno Cardoso Lopes80ab8f92008-07-14 14:42:54 +000087 // isLinux - Target system is Linux. Is false we consider ELFOS for now.
88 bool IsLinux;
89
Akira Hatanakaad495022012-08-22 03:18:13 +000090 // UseSmallSection - Small section is used.
91 bool UseSmallSection;
92
Bruno Cardoso Lopesf714e252008-07-30 17:01:06 +000093 /// Features related to the presence of specific instructions.
Bruno Cardoso Lopesed874ef2011-03-04 17:51:39 +000094
Daniel Sandersf2056be2014-05-09 13:02:27 +000095 // HasMips3_32 - The subset of MIPS-III instructions added to MIPS32
96 bool HasMips3_32;
97
Daniel Sanders387fc152014-05-13 11:45:36 +000098 // HasMips3_32r2 - The subset of MIPS-III instructions added to MIPS32r2
99 bool HasMips3_32r2;
100
Daniel Sanders94eda2e2014-05-12 11:56:16 +0000101 // HasMips4_32 - Has the subset of MIPS-IV present in MIPS32
Daniel Sanderse57d8662014-05-09 14:06:17 +0000102 bool HasMips4_32;
103
Daniel Sanders94eda2e2014-05-12 11:56:16 +0000104 // HasMips4_32r2 - Has the subset of MIPS-IV present in MIPS32r2
105 bool HasMips4_32r2;
106
Daniel Sanders07cdea22014-05-12 12:52:44 +0000107 // HasMips5_32r2 - Has the subset of MIPS-V present in MIPS32r2
108 bool HasMips5_32r2;
109
Akira Hatanaka0faaebf2012-05-16 22:19:56 +0000110 // InMips16 -- can process Mips16 instructions
111 bool InMips16Mode;
112
Reed Kotler783c7942013-05-10 22:25:39 +0000113 // Mips16 hard float
114 bool InMips16HardFloat;
115
Reed Kotler1595f362013-04-09 19:46:01 +0000116 // PreviousInMips16 -- the function we just processed was in Mips 16 Mode
117 bool PreviousInMips16Mode;
118
Jack Carter428a06c2013-02-05 09:30:03 +0000119 // InMicroMips -- can process MicroMips instructions
120 bool InMicroMipsMode;
121
Akira Hatanaka65ce9312012-09-21 23:41:49 +0000122 // HasDSP, HasDSPR2 -- supports DSP ASE.
123 bool HasDSP, HasDSPR2;
124
Reed Kotler1595f362013-04-09 19:46:01 +0000125 // Allow mixed Mips16 and Mips32 in one source file
126 bool AllowMixed16_32;
127
Reed Kotlerfe94cc32013-04-10 16:58:04 +0000128 // Optimize for space by compiling all functions as Mips 16 unless
129 // it needs floating point. Functions needing floating point are
130 // compiled as Mips32
131 bool Os16;
132
Jack Carter3a2c2d42013-08-13 20:54:07 +0000133 // HasMSA -- supports MSA ASE.
134 bool HasMSA;
135
Bruno Cardoso Lopes87beec92007-08-18 01:52:27 +0000136 InstrItineraryData InstrItins;
137
Reed Kotler1595f362013-04-09 19:46:01 +0000138 // We can override the determination of whether we are in mips16 mode
139 // as from the command line
140 enum {NoOverride, Mips16Override, NoMips16Override} OverrideMode;
141
142 MipsTargetMachine *TM;
143
Petar Jovanovic97250162014-02-05 17:19:30 +0000144 Triple TargetTriple;
Eric Christopher1f51ddd2014-07-02 00:54:12 +0000145
Eric Christopher5f9fd212014-07-02 21:29:23 +0000146 const DataLayout DL; // Calculates type size & alignment
147 const MipsSelectionDAGInfo TSInfo;
Eric Christopherb9fd9ed2014-08-07 22:02:54 +0000148 MipsJITInfo JITInfo;
Eric Christopherdaa9dbb2014-07-03 00:10:24 +0000149 std::unique_ptr<const MipsInstrInfo> InstrInfo;
150 std::unique_ptr<const MipsFrameLowering> FrameLowering;
151 std::unique_ptr<const MipsTargetLowering> TLInfo;
Eric Christopher5f9fd212014-07-02 21:29:23 +0000152
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +0000153public:
Sanjay Patela2f658d2014-07-15 22:39:58 +0000154 /// This overrides the PostRAScheduler bit in the SchedModel for each CPU.
155 bool enablePostMachineScheduler() const override;
156 void getCriticalPathRCs(RegClassVector &CriticalPathRCs) const override;
157 CodeGenOpt::Level getOptLevelToEnablePostRAScheduler() const override;
Bruno Cardoso Lopesc9c3f492008-07-05 19:05:21 +0000158
159 /// Only O32 and EABI supported right now.
160 bool isABI_EABI() const { return MipsABI == EABI; }
Akira Hatanaka2b372612011-09-20 20:28:08 +0000161 bool isABI_N64() const { return MipsABI == N64; }
162 bool isABI_N32() const { return MipsABI == N32; }
Bruno Cardoso Lopesc9c3f492008-07-05 19:05:21 +0000163 bool isABI_O32() const { return MipsABI == O32; }
Sasa Stankovicb976fee2014-07-14 09:40:29 +0000164 bool isABI_FPXX() const { return isABI_O32() && IsFPXX; }
Bruno Cardoso Lopes80ab8f92008-07-14 14:42:54 +0000165 unsigned getTargetABI() const { return MipsABI; }
Bruno Cardoso Lopesc9c3f492008-07-05 19:05:21 +0000166
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +0000167 /// This constructor initializes the data members to match that
Daniel Dunbar31b44e82009-08-02 22:11:08 +0000168 /// of the specified triple.
Evan Chengfe6e4052011-06-30 01:53:36 +0000169 MipsSubtarget(const std::string &TT, const std::string &CPU,
Eric Christopherf74faf42014-07-18 22:34:20 +0000170 const std::string &FS, bool little, MipsTargetMachine *TM);
Bruno Cardoso Lopesed874ef2011-03-04 17:51:39 +0000171
172 /// ParseSubtargetFeatures - Parses features string setting specified
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +0000173 /// subtarget options. Definition of function is auto generated by tblgen.
Evan Cheng1a72add62011-07-07 07:07:08 +0000174 void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +0000175
Vladimir Medicfb8a2a92014-07-08 08:59:22 +0000176 bool hasMips1() const { return MipsArchVersion >= Mips1; }
Daniel Sandersd39320c2014-05-08 12:40:48 +0000177 bool hasMips2() const { return MipsArchVersion >= Mips2; }
Daniel Sandersf2056be2014-05-09 13:02:27 +0000178 bool hasMips3() const { return MipsArchVersion >= Mips3; }
Vladimir Medicfb8a2a92014-07-08 08:59:22 +0000179 bool hasMips4() const { return MipsArchVersion >= Mips4; }
180 bool hasMips5() const { return MipsArchVersion >= Mips5; }
Daniel Sanderse57d8662014-05-09 14:06:17 +0000181 bool hasMips4_32() const { return HasMips4_32; }
Daniel Sanders94eda2e2014-05-12 11:56:16 +0000182 bool hasMips4_32r2() const { return HasMips4_32r2; }
Daniel Sanders00463112014-06-16 13:18:59 +0000183 bool hasMips32() const {
184 return MipsArchVersion >= Mips32 && MipsArchVersion != Mips3 &&
185 MipsArchVersion != Mips4 && MipsArchVersion != Mips5;
186 }
Daniel Sanders1f6f0f42014-06-12 11:55:58 +0000187 bool hasMips32r2() const {
188 return MipsArchVersion == Mips32r2 || MipsArchVersion == Mips32r6 ||
Daniel Sanders6a803f62014-06-16 13:13:03 +0000189 MipsArchVersion == Mips64r2 || MipsArchVersion == Mips64r6;
Daniel Sanders1f6f0f42014-06-12 11:55:58 +0000190 }
191 bool hasMips32r6() const {
192 return MipsArchVersion == Mips32r6 || MipsArchVersion == Mips64r6;
193 }
Akira Hatanaka6e506eb2011-09-21 02:24:25 +0000194 bool hasMips64() const { return MipsArchVersion >= Mips64; }
Daniel Sanders1f6f0f42014-06-12 11:55:58 +0000195 bool hasMips64r2() const {
196 return MipsArchVersion == Mips64r2 || MipsArchVersion == Mips64r6;
197 }
Daniel Sandersb7f1c6f2014-05-09 09:46:21 +0000198 bool hasMips64r6() const { return MipsArchVersion == Mips64r6; }
Bruno Cardoso Lopes326a0372008-06-04 01:45:25 +0000199
Kai Nacke93fe5e82014-03-20 11:51:58 +0000200 bool hasCnMips() const { return HasCnMips; }
201
Bruno Cardoso Lopes326a0372008-06-04 01:45:25 +0000202 bool isLittle() const { return IsLittle; }
Zoran Jovanovic255d00d2014-07-10 15:36:12 +0000203 bool isFPXX() const { return IsFPXX; }
Douglas Gregor740ab382009-12-19 07:05:23 +0000204 bool isFP64bit() const { return IsFP64bit; }
Daniel Sanders7e527422014-07-10 13:38:23 +0000205 bool useOddSPReg() const { return UseOddSPReg; }
Sasa Stankovicf4a9e3b2014-07-29 14:39:24 +0000206 bool noOddSPReg() const { return !UseOddSPReg; }
Matheus Almeida0051f2d2014-04-16 15:48:55 +0000207 bool isNaN2008() const { return IsNaN2008bit; }
Akira Hatanakabfb66242013-08-20 23:38:40 +0000208 bool isNotFP64bit() const { return !IsFP64bit; }
Douglas Gregor740ab382009-12-19 07:05:23 +0000209 bool isGP64bit() const { return IsGP64bit; }
210 bool isGP32bit() const { return !IsGP64bit; }
211 bool isSingleFloat() const { return IsSingleFloat; }
212 bool isNotSingleFloat() const { return !IsSingleFloat; }
213 bool hasVFPU() const { return HasVFPU; }
Eric Christopher4e7d1e72014-07-18 23:41:32 +0000214 bool inMips16Mode() const { return InMips16Mode; }
Reed Kotler783c7942013-05-10 22:25:39 +0000215 bool inMips16ModeDefault() const {
Reed Kotler1595f362013-04-09 19:46:01 +0000216 return InMips16Mode;
217 }
Eric Christopher7394e232014-07-18 00:08:50 +0000218 // Hard float for mips16 means essentially to compile as soft float
219 // but to use a runtime library for soft float that is written with
220 // native mips32 floating point instructions (those runtime routines
221 // run in mips32 hard float mode).
Reed Kotler783c7942013-05-10 22:25:39 +0000222 bool inMips16HardFloat() const {
223 return inMips16Mode() && InMips16HardFloat;
224 }
Jack Carter428a06c2013-02-05 09:30:03 +0000225 bool inMicroMipsMode() const { return InMicroMipsMode; }
Akira Hatanaka65ce9312012-09-21 23:41:49 +0000226 bool hasDSP() const { return HasDSP; }
227 bool hasDSPR2() const { return HasDSPR2; }
Jack Carter3a2c2d42013-08-13 20:54:07 +0000228 bool hasMSA() const { return HasMSA; }
Douglas Gregor740ab382009-12-19 07:05:23 +0000229 bool isLinux() const { return IsLinux; }
Akira Hatanakaad495022012-08-22 03:18:13 +0000230 bool useSmallSection() const { return UseSmallSection; }
Bruno Cardoso Lopesc9c3f492008-07-05 19:05:21 +0000231
Akira Hatanakacdf4fd82012-05-22 03:10:09 +0000232 bool hasStandardEncoding() const { return !inMips16Mode(); }
233
Eric Christopher7394e232014-07-18 00:08:50 +0000234 bool abiUsesSoftFloat() const;
Reed Kotlerc03807a2013-08-30 19:40:56 +0000235
Akira Hatanakaa8a05be2013-10-07 19:06:57 +0000236 bool enableLongBranchPass() const {
237 return hasStandardEncoding() || allowMixed16_32();
238 }
239
Bruno Cardoso Lopesf714e252008-07-30 17:01:06 +0000240 /// Features related to the presence of specific instructions.
Akira Hatanaka4a3836b2013-10-09 23:36:17 +0000241 bool hasExtractInsert() const { return !inMips16Mode() && hasMips32r2(); }
Sasa Stankovicb976fee2014-07-14 09:40:29 +0000242 bool hasMTHC1() const { return hasMips32r2(); }
Jack Carterc1b17ed2013-01-18 21:20:38 +0000243
Reed Kotler783c7942013-05-10 22:25:39 +0000244 bool allowMixed16_32() const { return inMips16ModeDefault() |
245 AllowMixed16_32;}
Reed Kotler1595f362013-04-09 19:46:01 +0000246
Reed Kotlerfe94cc32013-04-10 16:58:04 +0000247 bool os16() const { return Os16;};
248
Petar Jovanovic97250162014-02-05 17:19:30 +0000249 bool isTargetNaCl() const { return TargetTriple.isOSNaCl(); }
Sasa Stankovic4c80bda2014-02-07 17:16:40 +0000250 bool isNotTargetNaCl() const { return !TargetTriple.isOSNaCl(); }
Petar Jovanovic97250162014-02-05 17:19:30 +0000251
Daniel Sanders82cd99a2014-04-16 14:38:27 +0000252 // for now constant islands are on for the whole compilation unit but we only
253 // really use them if in addition we are in mips16 mode
254 static bool useConstantIslands();
Akira Hatanaka6b2d8412013-10-29 19:29:03 +0000255
Akira Hatanaka8f1caeb2013-11-11 21:49:03 +0000256 unsigned stackAlignment() const { return hasMips64() ? 16 : 8; }
Akira Hatanaka6b2d8412013-10-29 19:29:03 +0000257
Jack Carter7f378102013-01-30 02:16:36 +0000258 // Grab relocation model
Eric Christopherf74faf42014-07-18 22:34:20 +0000259 Reloc::Model getRelocationModel() const;
Reed Kotler1595f362013-04-09 19:46:01 +0000260
Eric Christopherdaa9dbb2014-07-03 00:10:24 +0000261 MipsSubtarget &initializeSubtargetDependencies(StringRef CPU, StringRef FS,
262 const TargetMachine *TM);
Eric Christopher5b336a22014-07-02 01:14:43 +0000263
Daniel Sandersac272632014-05-23 13:18:02 +0000264 /// Does the system support unaligned memory access.
265 ///
266 /// MIPS32r6/MIPS64r6 require full unaligned access support but does not
267 /// specify which component of the system provides it. Hardware, software, and
268 /// hybrid implementations are all valid.
269 bool systemSupportsUnalignedAccess() const { return hasMips32r6(); }
Eric Christopher1f51ddd2014-07-02 00:54:12 +0000270
Eric Christopherdaa9dbb2014-07-03 00:10:24 +0000271 // Set helper classes
272 void setHelperClassesMips16();
273 void setHelperClassesMipsSE();
274
Eric Christopherb9fd9ed2014-08-07 22:02:54 +0000275 MipsJITInfo *getJITInfo() override { return &JITInfo; }
Eric Christopherd9134482014-08-04 21:25:23 +0000276 const MipsSelectionDAGInfo *getSelectionDAGInfo() const override {
277 return &TSInfo;
278 }
279 const DataLayout *getDataLayout() const override { return &DL; }
280 const MipsInstrInfo *getInstrInfo() const override { return InstrInfo.get(); }
281 const TargetFrameLowering *getFrameLowering() const override {
Eric Christopherdaa9dbb2014-07-03 00:10:24 +0000282 return FrameLowering.get();
283 }
Eric Christopherd9134482014-08-04 21:25:23 +0000284 const MipsRegisterInfo *getRegisterInfo() const override {
Eric Christopherdaa9dbb2014-07-03 00:10:24 +0000285 return &InstrInfo->getRegisterInfo();
286 }
Eric Christopherd9134482014-08-04 21:25:23 +0000287 const MipsTargetLowering *getTargetLowering() const override {
288 return TLInfo.get();
289 }
290 const InstrItineraryData *getInstrItineraryData() const override {
291 return &InstrItins;
292 }
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +0000293};
294} // End llvm namespace
295
296#endif