Silence -Wunused-variable in release builds.
[llvm/stm8.git] / lib / Target / Mips / MipsSubtarget.h
blob533d4afe073ee21a8f58c42d6d52a8633a28f50a
1 //=====-- MipsSubtarget.h - Define Subtarget for the Mips -----*- C++ -*--====//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file declares the Mips specific subclass of TargetSubtargetInfo.
12 //===----------------------------------------------------------------------===//
14 #ifndef MIPSSUBTARGET_H
15 #define MIPSSUBTARGET_H
17 #include "llvm/Target/TargetSubtargetInfo.h"
18 #include "llvm/MC/MCInstrItineraries.h"
19 #include <string>
21 #define GET_SUBTARGETINFO_HEADER
22 #include "MipsGenSubtargetInfo.inc"
24 namespace llvm {
25 class StringRef;
27 class MipsSubtarget : public MipsGenSubtargetInfo {
29 public:
30 enum MipsABIEnum {
31 O32, O64, N32, N64, EABI
34 protected:
36 enum MipsArchEnum {
37 Mips1, Mips2, Mips3, Mips4, Mips32, Mips32r2
40 // Mips architecture version
41 MipsArchEnum MipsArchVersion;
43 // Mips supported ABIs
44 MipsABIEnum MipsABI;
46 // IsLittle - The target is Little Endian
47 bool IsLittle;
49 // IsSingleFloat - The target only supports single precision float
50 // point operations. This enable the target to use all 32 32-bit
51 // floating point registers instead of only using even ones.
52 bool IsSingleFloat;
54 // IsFP64bit - The target processor has 64-bit floating point registers.
55 bool IsFP64bit;
57 // IsFP64bit - General-purpose registers are 64 bits wide
58 bool IsGP64bit;
60 // HasVFPU - Processor has a vector floating point unit.
61 bool HasVFPU;
63 // isLinux - Target system is Linux. Is false we consider ELFOS for now.
64 bool IsLinux;
66 /// Features related to the presence of specific instructions.
68 // HasSEInReg - SEB and SEH (signext in register) instructions.
69 bool HasSEInReg;
71 // HasCondMov - Conditional mov (MOVZ, MOVN) instructions.
72 bool HasCondMov;
74 // HasMulDivAdd - Multiply add and sub (MADD, MADDu, MSUB, MSUBu)
75 // instructions.
76 bool HasMulDivAdd;
78 // HasMinMax - MIN and MAX instructions.
79 bool HasMinMax;
81 // HasSwap - Byte and half swap instructions.
82 bool HasSwap;
84 // HasBitCount - Count leading '1' and '0' bits.
85 bool HasBitCount;
87 InstrItineraryData InstrItins;
89 public:
91 /// Only O32 and EABI supported right now.
92 bool isABI_EABI() const { return MipsABI == EABI; }
93 bool isABI_O32() const { return MipsABI == O32; }
94 unsigned getTargetABI() const { return MipsABI; }
96 /// This constructor initializes the data members to match that
97 /// of the specified triple.
98 MipsSubtarget(const std::string &TT, const std::string &CPU,
99 const std::string &FS, bool little);
101 /// ParseSubtargetFeatures - Parses features string setting specified
102 /// subtarget options. Definition of function is auto generated by tblgen.
103 void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
105 bool isMips1() const { return MipsArchVersion == Mips1; }
106 bool isMips32() const { return MipsArchVersion >= Mips32; }
107 bool isMips32r2() const { return MipsArchVersion == Mips32r2; }
109 bool isLittle() const { return IsLittle; }
110 bool isFP64bit() const { return IsFP64bit; }
111 bool isGP64bit() const { return IsGP64bit; }
112 bool isGP32bit() const { return !IsGP64bit; }
113 bool isSingleFloat() const { return IsSingleFloat; }
114 bool isNotSingleFloat() const { return !IsSingleFloat; }
115 bool hasVFPU() const { return HasVFPU; }
116 bool isLinux() const { return IsLinux; }
118 /// Features related to the presence of specific instructions.
119 bool hasSEInReg() const { return HasSEInReg; }
120 bool hasCondMov() const { return HasCondMov; }
121 bool hasMulDivAdd() const { return HasMulDivAdd; }
122 bool hasMinMax() const { return HasMinMax; }
123 bool hasSwap() const { return HasSwap; }
124 bool hasBitCount() const { return HasBitCount; }
126 } // End llvm namespace
128 #endif