blob: 1961b273e3f4da4d0cc6ae4d1f297debc1798bc3 [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
Daniel Sandersfeb61302014-08-08 15:47:17 +000068 // NoABICalls - Disable SVR4-style position-independent code.
69 bool NoABICalls;
Daniel Sanders35837ac2014-08-08 10:01:29 +000070
Bruno Cardoso Lopes7ceec572008-07-09 04:45:36 +000071 // IsFP64bit - The target processor has 64-bit floating point registers.
Bruno Cardoso Lopesc9c3f492008-07-05 19:05:21 +000072 bool IsFP64bit;
73
Daniel Sanders7e527422014-07-10 13:38:23 +000074 /// Are odd single-precision registers permitted?
75 /// This corresponds to -modd-spreg and -mno-odd-spreg
76 bool UseOddSPReg;
77
Matheus Almeida0051f2d2014-04-16 15:48:55 +000078 // IsNan2008 - IEEE 754-2008 NaN encoding.
79 bool IsNaN2008bit;
80
Bruno Cardoso Lopesc9c3f492008-07-05 19:05:21 +000081 // IsFP64bit - General-purpose registers are 64 bits wide
82 bool IsGP64bit;
83
Bruno Cardoso Lopesbcc21392008-07-09 05:32:22 +000084 // HasVFPU - Processor has a vector floating point unit.
85 bool HasVFPU;
Bruno Cardoso Lopesc9c3f492008-07-05 19:05:21 +000086
Kai Nacke93fe5e82014-03-20 11:51:58 +000087 // CPU supports cnMIPS (Cavium Networks Octeon CPU).
88 bool HasCnMips;
89
Bruno Cardoso Lopes80ab8f92008-07-14 14:42:54 +000090 // isLinux - Target system is Linux. Is false we consider ELFOS for now.
91 bool IsLinux;
92
Akira Hatanakaad495022012-08-22 03:18:13 +000093 // UseSmallSection - Small section is used.
94 bool UseSmallSection;
95
Bruno Cardoso Lopesf714e252008-07-30 17:01:06 +000096 /// Features related to the presence of specific instructions.
Bruno Cardoso Lopesed874ef2011-03-04 17:51:39 +000097
Daniel Sandersf2056be2014-05-09 13:02:27 +000098 // HasMips3_32 - The subset of MIPS-III instructions added to MIPS32
99 bool HasMips3_32;
100
Daniel Sanders387fc152014-05-13 11:45:36 +0000101 // HasMips3_32r2 - The subset of MIPS-III instructions added to MIPS32r2
102 bool HasMips3_32r2;
103
Daniel Sanders94eda2e2014-05-12 11:56:16 +0000104 // HasMips4_32 - Has the subset of MIPS-IV present in MIPS32
Daniel Sanderse57d8662014-05-09 14:06:17 +0000105 bool HasMips4_32;
106
Daniel Sanders94eda2e2014-05-12 11:56:16 +0000107 // HasMips4_32r2 - Has the subset of MIPS-IV present in MIPS32r2
108 bool HasMips4_32r2;
109
Daniel Sanders07cdea22014-05-12 12:52:44 +0000110 // HasMips5_32r2 - Has the subset of MIPS-V present in MIPS32r2
111 bool HasMips5_32r2;
112
Akira Hatanaka0faaebf2012-05-16 22:19:56 +0000113 // InMips16 -- can process Mips16 instructions
114 bool InMips16Mode;
115
Reed Kotler783c7942013-05-10 22:25:39 +0000116 // Mips16 hard float
117 bool InMips16HardFloat;
118
Reed Kotler1595f362013-04-09 19:46:01 +0000119 // PreviousInMips16 -- the function we just processed was in Mips 16 Mode
120 bool PreviousInMips16Mode;
121
Jack Carter428a06c2013-02-05 09:30:03 +0000122 // InMicroMips -- can process MicroMips instructions
123 bool InMicroMipsMode;
124
Akira Hatanaka65ce9312012-09-21 23:41:49 +0000125 // HasDSP, HasDSPR2 -- supports DSP ASE.
126 bool HasDSP, HasDSPR2;
127
Reed Kotler1595f362013-04-09 19:46:01 +0000128 // Allow mixed Mips16 and Mips32 in one source file
129 bool AllowMixed16_32;
130
Reed Kotlerfe94cc32013-04-10 16:58:04 +0000131 // Optimize for space by compiling all functions as Mips 16 unless
132 // it needs floating point. Functions needing floating point are
133 // compiled as Mips32
134 bool Os16;
135
Jack Carter3a2c2d42013-08-13 20:54:07 +0000136 // HasMSA -- supports MSA ASE.
137 bool HasMSA;
138
Bruno Cardoso Lopes87beec92007-08-18 01:52:27 +0000139 InstrItineraryData InstrItins;
140
Reed Kotler1595f362013-04-09 19:46:01 +0000141 // We can override the determination of whether we are in mips16 mode
142 // as from the command line
143 enum {NoOverride, Mips16Override, NoMips16Override} OverrideMode;
144
145 MipsTargetMachine *TM;
146
Petar Jovanovic97250162014-02-05 17:19:30 +0000147 Triple TargetTriple;
Eric Christopher1f51ddd2014-07-02 00:54:12 +0000148
Eric Christopher5f9fd212014-07-02 21:29:23 +0000149 const DataLayout DL; // Calculates type size & alignment
150 const MipsSelectionDAGInfo TSInfo;
Eric Christopherb9fd9ed2014-08-07 22:02:54 +0000151 MipsJITInfo JITInfo;
Eric Christopherdaa9dbb2014-07-03 00:10:24 +0000152 std::unique_ptr<const MipsInstrInfo> InstrInfo;
153 std::unique_ptr<const MipsFrameLowering> FrameLowering;
154 std::unique_ptr<const MipsTargetLowering> TLInfo;
Eric Christopher5f9fd212014-07-02 21:29:23 +0000155
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +0000156public:
Sanjay Patela2f658d2014-07-15 22:39:58 +0000157 /// This overrides the PostRAScheduler bit in the SchedModel for each CPU.
158 bool enablePostMachineScheduler() const override;
159 void getCriticalPathRCs(RegClassVector &CriticalPathRCs) const override;
160 CodeGenOpt::Level getOptLevelToEnablePostRAScheduler() const override;
Bruno Cardoso Lopesc9c3f492008-07-05 19:05:21 +0000161
162 /// Only O32 and EABI supported right now.
163 bool isABI_EABI() const { return MipsABI == EABI; }
Akira Hatanaka2b372612011-09-20 20:28:08 +0000164 bool isABI_N64() const { return MipsABI == N64; }
165 bool isABI_N32() const { return MipsABI == N32; }
Bruno Cardoso Lopesc9c3f492008-07-05 19:05:21 +0000166 bool isABI_O32() const { return MipsABI == O32; }
Sasa Stankovicb976fee2014-07-14 09:40:29 +0000167 bool isABI_FPXX() const { return isABI_O32() && IsFPXX; }
Bruno Cardoso Lopes80ab8f92008-07-14 14:42:54 +0000168 unsigned getTargetABI() const { return MipsABI; }
Bruno Cardoso Lopesc9c3f492008-07-05 19:05:21 +0000169
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +0000170 /// This constructor initializes the data members to match that
Daniel Dunbar31b44e82009-08-02 22:11:08 +0000171 /// of the specified triple.
Evan Chengfe6e4052011-06-30 01:53:36 +0000172 MipsSubtarget(const std::string &TT, const std::string &CPU,
Eric Christopherf74faf42014-07-18 22:34:20 +0000173 const std::string &FS, bool little, MipsTargetMachine *TM);
Bruno Cardoso Lopesed874ef2011-03-04 17:51:39 +0000174
175 /// ParseSubtargetFeatures - Parses features string setting specified
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +0000176 /// subtarget options. Definition of function is auto generated by tblgen.
Evan Cheng1a72add62011-07-07 07:07:08 +0000177 void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +0000178
Vladimir Medicfb8a2a92014-07-08 08:59:22 +0000179 bool hasMips1() const { return MipsArchVersion >= Mips1; }
Daniel Sandersd39320c2014-05-08 12:40:48 +0000180 bool hasMips2() const { return MipsArchVersion >= Mips2; }
Daniel Sandersf2056be2014-05-09 13:02:27 +0000181 bool hasMips3() const { return MipsArchVersion >= Mips3; }
Vladimir Medicfb8a2a92014-07-08 08:59:22 +0000182 bool hasMips4() const { return MipsArchVersion >= Mips4; }
183 bool hasMips5() const { return MipsArchVersion >= Mips5; }
Daniel Sanderse57d8662014-05-09 14:06:17 +0000184 bool hasMips4_32() const { return HasMips4_32; }
Daniel Sanders94eda2e2014-05-12 11:56:16 +0000185 bool hasMips4_32r2() const { return HasMips4_32r2; }
Daniel Sanders00463112014-06-16 13:18:59 +0000186 bool hasMips32() const {
187 return MipsArchVersion >= Mips32 && MipsArchVersion != Mips3 &&
188 MipsArchVersion != Mips4 && MipsArchVersion != Mips5;
189 }
Daniel Sanders1f6f0f42014-06-12 11:55:58 +0000190 bool hasMips32r2() const {
191 return MipsArchVersion == Mips32r2 || MipsArchVersion == Mips32r6 ||
Daniel Sanders6a803f62014-06-16 13:13:03 +0000192 MipsArchVersion == Mips64r2 || MipsArchVersion == Mips64r6;
Daniel Sanders1f6f0f42014-06-12 11:55:58 +0000193 }
194 bool hasMips32r6() const {
195 return MipsArchVersion == Mips32r6 || MipsArchVersion == Mips64r6;
196 }
Akira Hatanaka6e506eb2011-09-21 02:24:25 +0000197 bool hasMips64() const { return MipsArchVersion >= Mips64; }
Daniel Sanders1f6f0f42014-06-12 11:55:58 +0000198 bool hasMips64r2() const {
199 return MipsArchVersion == Mips64r2 || MipsArchVersion == Mips64r6;
200 }
Daniel Sandersb7f1c6f2014-05-09 09:46:21 +0000201 bool hasMips64r6() const { return MipsArchVersion == Mips64r6; }
Bruno Cardoso Lopes326a0372008-06-04 01:45:25 +0000202
Kai Nacke93fe5e82014-03-20 11:51:58 +0000203 bool hasCnMips() const { return HasCnMips; }
204
Bruno Cardoso Lopes326a0372008-06-04 01:45:25 +0000205 bool isLittle() const { return IsLittle; }
Daniel Sandersfeb61302014-08-08 15:47:17 +0000206 bool isABICalls() const { return !NoABICalls; }
Zoran Jovanovic255d00d2014-07-10 15:36:12 +0000207 bool isFPXX() const { return IsFPXX; }
Douglas Gregor740ab382009-12-19 07:05:23 +0000208 bool isFP64bit() const { return IsFP64bit; }
Daniel Sanders7e527422014-07-10 13:38:23 +0000209 bool useOddSPReg() const { return UseOddSPReg; }
Sasa Stankovicf4a9e3b2014-07-29 14:39:24 +0000210 bool noOddSPReg() const { return !UseOddSPReg; }
Matheus Almeida0051f2d2014-04-16 15:48:55 +0000211 bool isNaN2008() const { return IsNaN2008bit; }
Akira Hatanakabfb66242013-08-20 23:38:40 +0000212 bool isNotFP64bit() const { return !IsFP64bit; }
Douglas Gregor740ab382009-12-19 07:05:23 +0000213 bool isGP64bit() const { return IsGP64bit; }
214 bool isGP32bit() const { return !IsGP64bit; }
215 bool isSingleFloat() const { return IsSingleFloat; }
216 bool isNotSingleFloat() const { return !IsSingleFloat; }
217 bool hasVFPU() const { return HasVFPU; }
Eric Christopher4e7d1e72014-07-18 23:41:32 +0000218 bool inMips16Mode() const { return InMips16Mode; }
Reed Kotler783c7942013-05-10 22:25:39 +0000219 bool inMips16ModeDefault() const {
Reed Kotler1595f362013-04-09 19:46:01 +0000220 return InMips16Mode;
221 }
Eric Christopher7394e232014-07-18 00:08:50 +0000222 // Hard float for mips16 means essentially to compile as soft float
223 // but to use a runtime library for soft float that is written with
224 // native mips32 floating point instructions (those runtime routines
225 // run in mips32 hard float mode).
Reed Kotler783c7942013-05-10 22:25:39 +0000226 bool inMips16HardFloat() const {
227 return inMips16Mode() && InMips16HardFloat;
228 }
Jack Carter428a06c2013-02-05 09:30:03 +0000229 bool inMicroMipsMode() const { return InMicroMipsMode; }
Akira Hatanaka65ce9312012-09-21 23:41:49 +0000230 bool hasDSP() const { return HasDSP; }
231 bool hasDSPR2() const { return HasDSPR2; }
Jack Carter3a2c2d42013-08-13 20:54:07 +0000232 bool hasMSA() const { return HasMSA; }
Douglas Gregor740ab382009-12-19 07:05:23 +0000233 bool isLinux() const { return IsLinux; }
Akira Hatanakaad495022012-08-22 03:18:13 +0000234 bool useSmallSection() const { return UseSmallSection; }
Bruno Cardoso Lopesc9c3f492008-07-05 19:05:21 +0000235
Akira Hatanakacdf4fd82012-05-22 03:10:09 +0000236 bool hasStandardEncoding() const { return !inMips16Mode(); }
237
Eric Christopher7394e232014-07-18 00:08:50 +0000238 bool abiUsesSoftFloat() const;
Reed Kotlerc03807a2013-08-30 19:40:56 +0000239
Akira Hatanakaa8a05be2013-10-07 19:06:57 +0000240 bool enableLongBranchPass() const {
241 return hasStandardEncoding() || allowMixed16_32();
242 }
243
Bruno Cardoso Lopesf714e252008-07-30 17:01:06 +0000244 /// Features related to the presence of specific instructions.
Akira Hatanaka4a3836b2013-10-09 23:36:17 +0000245 bool hasExtractInsert() const { return !inMips16Mode() && hasMips32r2(); }
Sasa Stankovicb976fee2014-07-14 09:40:29 +0000246 bool hasMTHC1() const { return hasMips32r2(); }
Jack Carterc1b17ed2013-01-18 21:20:38 +0000247
Reed Kotler783c7942013-05-10 22:25:39 +0000248 bool allowMixed16_32() const { return inMips16ModeDefault() |
249 AllowMixed16_32;}
Reed Kotler1595f362013-04-09 19:46:01 +0000250
Reed Kotlerfe94cc32013-04-10 16:58:04 +0000251 bool os16() const { return Os16;};
252
Petar Jovanovic97250162014-02-05 17:19:30 +0000253 bool isTargetNaCl() const { return TargetTriple.isOSNaCl(); }
Sasa Stankovic4c80bda2014-02-07 17:16:40 +0000254 bool isNotTargetNaCl() const { return !TargetTriple.isOSNaCl(); }
Petar Jovanovic97250162014-02-05 17:19:30 +0000255
Daniel Sanders82cd99a2014-04-16 14:38:27 +0000256 // for now constant islands are on for the whole compilation unit but we only
257 // really use them if in addition we are in mips16 mode
258 static bool useConstantIslands();
Akira Hatanaka6b2d8412013-10-29 19:29:03 +0000259
Akira Hatanaka8f1caeb2013-11-11 21:49:03 +0000260 unsigned stackAlignment() const { return hasMips64() ? 16 : 8; }
Akira Hatanaka6b2d8412013-10-29 19:29:03 +0000261
Jack Carter7f378102013-01-30 02:16:36 +0000262 // Grab relocation model
Eric Christopherf74faf42014-07-18 22:34:20 +0000263 Reloc::Model getRelocationModel() const;
Reed Kotler1595f362013-04-09 19:46:01 +0000264
Eric Christopherdaa9dbb2014-07-03 00:10:24 +0000265 MipsSubtarget &initializeSubtargetDependencies(StringRef CPU, StringRef FS,
266 const TargetMachine *TM);
Eric Christopher5b336a22014-07-02 01:14:43 +0000267
Daniel Sandersac272632014-05-23 13:18:02 +0000268 /// Does the system support unaligned memory access.
269 ///
270 /// MIPS32r6/MIPS64r6 require full unaligned access support but does not
271 /// specify which component of the system provides it. Hardware, software, and
272 /// hybrid implementations are all valid.
273 bool systemSupportsUnalignedAccess() const { return hasMips32r6(); }
Eric Christopher1f51ddd2014-07-02 00:54:12 +0000274
Eric Christopherdaa9dbb2014-07-03 00:10:24 +0000275 // Set helper classes
276 void setHelperClassesMips16();
277 void setHelperClassesMipsSE();
278
Eric Christopherb9fd9ed2014-08-07 22:02:54 +0000279 MipsJITInfo *getJITInfo() override { return &JITInfo; }
Eric Christopherd9134482014-08-04 21:25:23 +0000280 const MipsSelectionDAGInfo *getSelectionDAGInfo() const override {
281 return &TSInfo;
282 }
283 const DataLayout *getDataLayout() const override { return &DL; }
284 const MipsInstrInfo *getInstrInfo() const override { return InstrInfo.get(); }
285 const TargetFrameLowering *getFrameLowering() const override {
Eric Christopherdaa9dbb2014-07-03 00:10:24 +0000286 return FrameLowering.get();
287 }
Eric Christopherd9134482014-08-04 21:25:23 +0000288 const MipsRegisterInfo *getRegisterInfo() const override {
Eric Christopherdaa9dbb2014-07-03 00:10:24 +0000289 return &InstrInfo->getRegisterInfo();
290 }
Eric Christopherd9134482014-08-04 21:25:23 +0000291 const MipsTargetLowering *getTargetLowering() const override {
292 return TLInfo.get();
293 }
294 const InstrItineraryData *getInstrItineraryData() const override {
295 return &InstrItins;
296 }
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +0000297};
298} // End llvm namespace
299
300#endif