1 //===-- MipsSubtarget.h - Define Subtarget for the Mips ---------*- C++ -*-===//
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
7 //===----------------------------------------------------------------------===//
9 // This file declares the Mips specific subclass of TargetSubtargetInfo.
11 //===----------------------------------------------------------------------===//
13 #ifndef LLVM_LIB_TARGET_MIPS_MIPSSUBTARGET_H
14 #define LLVM_LIB_TARGET_MIPS_MIPSSUBTARGET_H
16 #include "MCTargetDesc/MipsABIInfo.h"
17 #include "MipsFrameLowering.h"
18 #include "MipsISelLowering.h"
19 #include "MipsInstrInfo.h"
20 #include "llvm/CodeGen/SelectionDAGTargetInfo.h"
21 #include "llvm/CodeGen/TargetSubtargetInfo.h"
22 #include "llvm/CodeGen/GlobalISel/CallLowering.h"
23 #include "llvm/CodeGen/GlobalISel/LegalizerInfo.h"
24 #include "llvm/CodeGen/GlobalISel/RegisterBankInfo.h"
25 #include "llvm/CodeGen/GlobalISel/InstructionSelector.h"
26 #include "llvm/IR/DataLayout.h"
27 #include "llvm/MC/MCInstrItineraries.h"
28 #include "llvm/Support/ErrorHandling.h"
31 #define GET_SUBTARGETINFO_HEADER
32 #include "MipsGenSubtargetInfo.inc"
37 class MipsTargetMachine
;
39 class MipsSubtarget
: public MipsGenSubtargetInfo
{
40 virtual void anchor();
44 Mips1
, Mips2
, Mips32
, Mips32r2
, Mips32r3
, Mips32r5
, Mips32r6
, Mips32Max
,
45 Mips3
, Mips4
, Mips5
, Mips64
, Mips64r2
, Mips64r3
, Mips64r5
, Mips64r6
48 enum class CPU
{ P5600
};
50 // Used to avoid printing dsp warnings multiple times.
51 static bool DspWarningPrinted
;
53 // Used to avoid printing msa warnings multiple times.
54 static bool MSAWarningPrinted
;
56 // Used to avoid printing crc warnings multiple times.
57 static bool CRCWarningPrinted
;
59 // Used to avoid printing ginv warnings multiple times.
60 static bool GINVWarningPrinted
;
62 // Used to avoid printing virt warnings multiple times.
63 static bool VirtWarningPrinted
;
65 // Mips architecture version
66 MipsArchEnum MipsArchVersion
;
68 // Processor implementation (unused but required to exist by
69 // tablegen-erated code).
72 // IsLittle - The target is Little Endian
75 // IsSoftFloat - The target does not support any floating point instructions.
78 // IsSingleFloat - The target only supports single precision float
79 // point operations. This enable the target to use all 32 32-bit
80 // floating point registers instead of only using even ones.
83 // IsFPXX - MIPS O32 modeless ABI.
86 // NoABICalls - Disable SVR4-style position-independent code.
89 // Abs2008 - Use IEEE 754-2008 abs.fmt instruction.
92 // IsFP64bit - The target processor has 64-bit floating point registers.
95 /// Are odd single-precision registers permitted?
96 /// This corresponds to -modd-spreg and -mno-odd-spreg
99 // IsNan2008 - IEEE 754-2008 NaN encoding.
102 // IsGP64bit - General-purpose registers are 64 bits wide
105 // IsPTR64bit - Pointers are 64 bit wide
108 // HasVFPU - Processor has a vector floating point unit.
111 // CPU supports cnMIPS (Cavium Networks Octeon CPU).
114 // isLinux - Target system is Linux. Is false we consider ELFOS for now.
117 // UseSmallSection - Small section is used.
118 bool UseSmallSection
;
120 /// Features related to the presence of specific instructions.
122 // HasMips3_32 - The subset of MIPS-III instructions added to MIPS32
125 // HasMips3_32r2 - The subset of MIPS-III instructions added to MIPS32r2
128 // HasMips4_32 - Has the subset of MIPS-IV present in MIPS32
131 // HasMips4_32r2 - Has the subset of MIPS-IV present in MIPS32r2
134 // HasMips5_32r2 - Has the subset of MIPS-V present in MIPS32r2
137 // InMips16 -- can process Mips16 instructions
141 bool InMips16HardFloat
;
143 // InMicroMips -- can process MicroMips instructions
144 bool InMicroMipsMode
;
146 // HasDSP, HasDSPR2, HasDSPR3 -- supports DSP ASE.
147 bool HasDSP
, HasDSPR2
, HasDSPR3
;
149 // Allow mixed Mips16 and Mips32 in one source file
150 bool AllowMixed16_32
;
152 // Optimize for space by compiling all functions as Mips 16 unless
153 // it needs floating point. Functions needing floating point are
154 // compiled as Mips32
157 // HasMSA -- supports MSA ASE.
160 // UseTCCInDIV -- Enables the use of trapping in the assembler.
163 // Sym32 -- On Mips64 symbols are 32 bits.
166 // HasEVA -- supports EVA ASE.
169 // nomadd4 - disables generation of 4-operand madd.s, madd.d and
170 // related instructions.
173 // HasMT -- support MT ASE.
176 // HasCRC -- supports R6 CRC ASE
179 // HasVirt -- supports Virtualization ASE
182 // HasGINV -- supports R6 Global INValidate ASE
185 // Use hazard variants of the jump register instructions for indirect
186 // function calls and jump tables.
187 bool UseIndirectJumpsHazard
;
189 // Disable use of the `jal` instruction.
190 bool UseLongCalls
= false;
192 /// The minimum alignment known to hold of the stack frame on
193 /// entry to the function and which must be maintained by every function.
194 unsigned stackAlignment
;
196 /// The overridden stack alignment.
197 unsigned StackAlignOverride
;
199 InstrItineraryData InstrItins
;
201 // We can override the determination of whether we are in mips16 mode
202 // as from the command line
203 enum {NoOverride
, Mips16Override
, NoMips16Override
} OverrideMode
;
205 const MipsTargetMachine
&TM
;
209 const SelectionDAGTargetInfo TSInfo
;
210 std::unique_ptr
<const MipsInstrInfo
> InstrInfo
;
211 std::unique_ptr
<const MipsFrameLowering
> FrameLowering
;
212 std::unique_ptr
<const MipsTargetLowering
> TLInfo
;
215 bool isPositionIndependent() const;
216 /// This overrides the PostRAScheduler bit in the SchedModel for each CPU.
217 bool enablePostRAScheduler() const override
;
218 void getCriticalPathRCs(RegClassVector
&CriticalPathRCs
) const override
;
219 CodeGenOpt::Level
getOptLevelToEnablePostRAScheduler() const override
;
221 bool isABI_N64() const;
222 bool isABI_N32() const;
223 bool isABI_O32() const;
224 const MipsABIInfo
&getABI() const;
225 bool isABI_FPXX() const { return isABI_O32() && IsFPXX
; }
227 /// This constructor initializes the data members to match that
228 /// of the specified triple.
229 MipsSubtarget(const Triple
&TT
, StringRef CPU
, StringRef FS
, bool little
,
230 const MipsTargetMachine
&TM
, unsigned StackAlignOverride
);
232 /// ParseSubtargetFeatures - Parses features string setting specified
233 /// subtarget options. Definition of function is auto generated by tblgen.
234 void ParseSubtargetFeatures(StringRef CPU
, StringRef FS
);
236 bool hasMips1() const { return MipsArchVersion
>= Mips1
; }
237 bool hasMips2() const { return MipsArchVersion
>= Mips2
; }
238 bool hasMips3() const { return MipsArchVersion
>= Mips3
; }
239 bool hasMips4() const { return MipsArchVersion
>= Mips4
; }
240 bool hasMips5() const { return MipsArchVersion
>= Mips5
; }
241 bool hasMips4_32() const { return HasMips4_32
; }
242 bool hasMips4_32r2() const { return HasMips4_32r2
; }
243 bool hasMips32() const {
244 return (MipsArchVersion
>= Mips32
&& MipsArchVersion
< Mips32Max
) ||
247 bool hasMips32r2() const {
248 return (MipsArchVersion
>= Mips32r2
&& MipsArchVersion
< Mips32Max
) ||
251 bool hasMips32r3() const {
252 return (MipsArchVersion
>= Mips32r3
&& MipsArchVersion
< Mips32Max
) ||
255 bool hasMips32r5() const {
256 return (MipsArchVersion
>= Mips32r5
&& MipsArchVersion
< Mips32Max
) ||
259 bool hasMips32r6() const {
260 return (MipsArchVersion
>= Mips32r6
&& MipsArchVersion
< Mips32Max
) ||
263 bool hasMips64() const { return MipsArchVersion
>= Mips64
; }
264 bool hasMips64r2() const { return MipsArchVersion
>= Mips64r2
; }
265 bool hasMips64r3() const { return MipsArchVersion
>= Mips64r3
; }
266 bool hasMips64r5() const { return MipsArchVersion
>= Mips64r5
; }
267 bool hasMips64r6() const { return MipsArchVersion
>= Mips64r6
; }
269 bool hasCnMips() const { return HasCnMips
; }
271 bool isLittle() const { return IsLittle
; }
272 bool isABICalls() const { return !NoABICalls
; }
273 bool isFPXX() const { return IsFPXX
; }
274 bool isFP64bit() const { return IsFP64bit
; }
275 bool useOddSPReg() const { return UseOddSPReg
; }
276 bool noOddSPReg() const { return !UseOddSPReg
; }
277 bool isNaN2008() const { return IsNaN2008bit
; }
278 bool inAbs2008Mode() const { return Abs2008
; }
279 bool isGP64bit() const { return IsGP64bit
; }
280 bool isGP32bit() const { return !IsGP64bit
; }
281 unsigned getGPRSizeInBytes() const { return isGP64bit() ? 8 : 4; }
282 bool isPTR64bit() const { return IsPTR64bit
; }
283 bool isPTR32bit() const { return !IsPTR64bit
; }
284 bool hasSym32() const {
285 return (HasSym32
&& isABI_N64()) || isABI_N32() || isABI_O32();
287 bool isSingleFloat() const { return IsSingleFloat
; }
288 bool isTargetELF() const { return TargetTriple
.isOSBinFormatELF(); }
289 bool hasVFPU() const { return HasVFPU
; }
290 bool inMips16Mode() const { return InMips16Mode
; }
291 bool inMips16ModeDefault() const {
294 // Hard float for mips16 means essentially to compile as soft float
295 // but to use a runtime library for soft float that is written with
296 // native mips32 floating point instructions (those runtime routines
297 // run in mips32 hard float mode).
298 bool inMips16HardFloat() const {
299 return inMips16Mode() && InMips16HardFloat
;
301 bool inMicroMipsMode() const { return InMicroMipsMode
&& !InMips16Mode
; }
302 bool inMicroMips32r6Mode() const {
303 return inMicroMipsMode() && hasMips32r6();
305 bool hasDSP() const { return HasDSP
; }
306 bool hasDSPR2() const { return HasDSPR2
; }
307 bool hasDSPR3() const { return HasDSPR3
; }
308 bool hasMSA() const { return HasMSA
; }
309 bool disableMadd4() const { return DisableMadd4
; }
310 bool hasEVA() const { return HasEVA
; }
311 bool hasMT() const { return HasMT
; }
312 bool hasCRC() const { return HasCRC
; }
313 bool hasVirt() const { return HasVirt
; }
314 bool hasGINV() const { return HasGINV
; }
315 bool useIndirectJumpsHazard() const {
316 return UseIndirectJumpsHazard
&& hasMips32r2();
318 bool useSmallSection() const { return UseSmallSection
; }
320 bool hasStandardEncoding() const { return !InMips16Mode
&& !InMicroMipsMode
; }
322 bool useSoftFloat() const { return IsSoftFloat
; }
324 bool useLongCalls() const { return UseLongCalls
; }
326 bool enableLongBranchPass() const {
327 return hasStandardEncoding() || inMicroMipsMode() || allowMixed16_32();
330 /// Features related to the presence of specific instructions.
331 bool hasExtractInsert() const { return !inMips16Mode() && hasMips32r2(); }
332 bool hasMTHC1() const { return hasMips32r2(); }
334 bool allowMixed16_32() const { return inMips16ModeDefault() |
337 bool os16() const { return Os16
; }
339 bool isTargetNaCl() const { return TargetTriple
.isOSNaCl(); }
341 bool isXRaySupported() const override
{ return true; }
343 // for now constant islands are on for the whole compilation unit but we only
344 // really use them if in addition we are in mips16 mode
345 static bool useConstantIslands();
347 unsigned getStackAlignment() const { return stackAlignment
; }
349 // Grab relocation model
350 Reloc::Model
getRelocationModel() const;
352 MipsSubtarget
&initializeSubtargetDependencies(StringRef CPU
, StringRef FS
,
353 const TargetMachine
&TM
);
355 /// Does the system support unaligned memory access.
357 /// MIPS32r6/MIPS64r6 require full unaligned access support but does not
358 /// specify which component of the system provides it. Hardware, software, and
359 /// hybrid implementations are all valid.
360 bool systemSupportsUnalignedAccess() const { return hasMips32r6(); }
362 // Set helper classes
363 void setHelperClassesMips16();
364 void setHelperClassesMipsSE();
366 const SelectionDAGTargetInfo
*getSelectionDAGInfo() const override
{
369 const MipsInstrInfo
*getInstrInfo() const override
{ return InstrInfo
.get(); }
370 const TargetFrameLowering
*getFrameLowering() const override
{
371 return FrameLowering
.get();
373 const MipsRegisterInfo
*getRegisterInfo() const override
{
374 return &InstrInfo
->getRegisterInfo();
376 const MipsTargetLowering
*getTargetLowering() const override
{
379 const InstrItineraryData
*getInstrItineraryData() const override
{
384 // GlobalISel related APIs.
385 std::unique_ptr
<CallLowering
> CallLoweringInfo
;
386 std::unique_ptr
<LegalizerInfo
> Legalizer
;
387 std::unique_ptr
<RegisterBankInfo
> RegBankInfo
;
388 std::unique_ptr
<InstructionSelector
> InstSelector
;
391 const CallLowering
*getCallLowering() const override
;
392 const LegalizerInfo
*getLegalizerInfo() const override
;
393 const RegisterBankInfo
*getRegBankInfo() const override
;
394 const InstructionSelector
*getInstructionSelector() const override
;
396 } // End llvm namespace