[mips][mips64r6] Add experimental support for MIPS32r6 and MIPS64r6
[oota-llvm.git] / lib / Target / Mips / Mips.td
1 //===-- Mips.td - Describe the Mips Target Machine ---------*- tablegen -*-===//
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 // This is the top level entry point for the Mips target.
10 //===----------------------------------------------------------------------===//
11
12 //===----------------------------------------------------------------------===//
13 // Target-independent interfaces
14 //===----------------------------------------------------------------------===//
15
16 include "llvm/Target/Target.td"
17
18 // The overall idea of the PredicateControl class is to chop the Predicates list
19 // into subsets that are usually overridden independently. This allows
20 // subclasses to partially override the predicates of their superclasses without
21 // having to re-add all the existing predicates.
22 class PredicateControl {
23   // Predicates for the encoding scheme in use such as HasStdEnc
24   list<Predicate> EncodingPredicates = [];
25   // Predicates for the GPR size such as IsGP64bit
26   list<Predicate> GPRPredicates = [];
27   // Predicates for the FGR size and layout such as IsFP64bit
28   list<Predicate> FGRPredicates = [];
29   // Predicates for the instruction group membership such as ISA's and ASE's
30   list<Predicate> InsnPredicates = [];
31   // Predicates for anything else
32   list<Predicate> AdditionalPredicates = [];
33   list<Predicate> Predicates = !listconcat(EncodingPredicates,
34                                            GPRPredicates,
35                                            FGRPredicates,
36                                            InsnPredicates,
37                                            AdditionalPredicates);
38 }
39
40 // Like Requires<> but for the AdditionalPredicates list
41 class AdditionalRequires<list<Predicate> preds> {
42   list<Predicate> AdditionalPredicates = preds;
43 }
44
45 //===----------------------------------------------------------------------===//
46 // Register File, Calling Conv, Instruction Descriptions
47 //===----------------------------------------------------------------------===//
48
49 include "MipsRegisterInfo.td"
50 include "MipsSchedule.td"
51 include "MipsInstrInfo.td"
52 include "MipsCallingConv.td"
53
54 def MipsInstrInfo : InstrInfo;
55
56 //===----------------------------------------------------------------------===//
57 // Mips Subtarget features                                                    //
58 //===----------------------------------------------------------------------===//
59
60 def FeatureGP64Bit     : SubtargetFeature<"gp64", "IsGP64bit", "true",
61                                 "General Purpose Registers are 64-bit wide.">;
62 def FeatureFP64Bit     : SubtargetFeature<"fp64", "IsFP64bit", "true",
63                                 "Support 64-bit FP registers.">;
64 def FeatureNaN2008     : SubtargetFeature<"nan2008", "IsNaN2008bit", "true",
65                                 "IEEE 754-2008 NaN encoding.">;
66 def FeatureSingleFloat : SubtargetFeature<"single-float", "IsSingleFloat",
67                                 "true", "Only supports single precision float">;
68 def FeatureO32         : SubtargetFeature<"o32", "MipsABI", "O32",
69                                 "Enable o32 ABI">;
70 def FeatureN32         : SubtargetFeature<"n32", "MipsABI", "N32",
71                                 "Enable n32 ABI">;
72 def FeatureN64         : SubtargetFeature<"n64", "MipsABI", "N64",
73                                 "Enable n64 ABI">;
74 def FeatureEABI        : SubtargetFeature<"eabi", "MipsABI", "EABI",
75                                 "Enable eabi ABI">;
76 def FeatureVFPU        : SubtargetFeature<"vfpu", "HasVFPU",
77                                 "true", "Enable vector FPU instructions.">;
78 def FeatureSEInReg     : SubtargetFeature<"seinreg", "HasSEInReg", "true",
79                                 "Enable 'signext in register' instructions.">;
80 def FeatureCondMov     : SubtargetFeature<"condmov", "HasCondMov", "true",
81                                 "Enable 'conditional move' instructions.">;
82 def FeatureSwap        : SubtargetFeature<"swap", "HasSwap", "true",
83                                 "Enable 'byte/half swap' instructions.">;
84 def FeatureBitCount    : SubtargetFeature<"bitcount", "HasBitCount", "true",
85                                 "Enable 'count leading bits' instructions.">;
86 def FeatureFPIdx       : SubtargetFeature<"fpidx", "HasFPIdx", "true",
87                                 "Enable 'FP indexed load/store' instructions.">;
88 def FeatureMips1       : SubtargetFeature<"mips1", "MipsArchVersion", "Mips1",
89                                 "Mips I ISA Support [highly experimental]">;
90 def FeatureMips2       : SubtargetFeature<"mips2", "MipsArchVersion", "Mips2",
91                                 "Mips II ISA Support [highly experimental]",
92                                 [FeatureMips1]>;
93 def FeatureMips32      : SubtargetFeature<"mips32", "MipsArchVersion", "Mips32",
94                                 "Mips32 ISA Support",
95                                 [FeatureMips2, FeatureCondMov,
96                                  FeatureBitCount]>;
97 def FeatureMips32r2    : SubtargetFeature<"mips32r2", "MipsArchVersion",
98                                 "Mips32r2", "Mips32r2 ISA Support",
99                                 [FeatureMips32, FeatureSEInReg, FeatureSwap,
100                                  FeatureFPIdx]>;
101 def FeatureMips32r6    : SubtargetFeature<"mips32r6", "MipsArchVersion",
102                                 "Mips32r6",
103                                 "Mips32r6 ISA Support [experimental]",
104                                 [FeatureMips32r2, FeatureFP64Bit,
105                                  FeatureNaN2008]>;
106 // FIXME: Need to check whether FPIdx belongs in the MIPS-III or MIPS-IV Implies
107 //        list but for now it doesn't matter since FPIdx isn't actually attached
108 //        to any instructions.
109 def FeatureMips3       : SubtargetFeature<"mips3", "MipsArchVersion", "Mips3",
110                                 "MIPS III ISA Support [highly experimental]",
111                                 [FeatureMips2, FeatureGP64Bit, FeatureFP64Bit]>;
112 def FeatureMips4       : SubtargetFeature<"mips4", "MipsArchVersion",
113                                 "Mips4", "MIPS IV ISA Support",
114                                 [FeatureMips3, FeatureFPIdx, FeatureCondMov]>;
115 def FeatureMips5       : SubtargetFeature<"mips5", "MipsArchVersion", "Mips5",
116                                 "MIPS V ISA Support [highly experimental]",
117                                 [FeatureMips4]>;
118 def FeatureMips64      : SubtargetFeature<"mips64", "MipsArchVersion",
119                                 "Mips64", "Mips64 ISA Support",
120                                 [FeatureMips5, FeatureMips32, FeatureFPIdx]>;
121 def FeatureMips64r2    : SubtargetFeature<"mips64r2", "MipsArchVersion",
122                                 "Mips64r2", "Mips64r2 ISA Support",
123                                 [FeatureMips64, FeatureMips32r2]>;
124 def FeatureMips64r6    : SubtargetFeature<"mips64r6", "MipsArchVersion",
125                                 "Mips64r6",
126                                 "Mips64r6 ISA Support [experimental]",
127                                 [FeatureMips64r2, FeatureNaN2008]>;
128
129 def FeatureMips16  : SubtargetFeature<"mips16", "InMips16Mode", "true",
130                                       "Mips16 mode">;
131
132 def FeatureDSP : SubtargetFeature<"dsp", "HasDSP", "true", "Mips DSP ASE">;
133 def FeatureDSPR2 : SubtargetFeature<"dspr2", "HasDSPR2", "true",
134                                     "Mips DSP-R2 ASE", [FeatureDSP]>;
135
136 def FeatureMSA : SubtargetFeature<"msa", "HasMSA", "true", "Mips MSA ASE">;
137
138 def FeatureMicroMips  : SubtargetFeature<"micromips", "InMicroMipsMode", "true",
139                                          "microMips mode">;
140
141 def FeatureCnMips     : SubtargetFeature<"cnmips", "HasCnMips",
142                                 "true", "Octeon cnMIPS Support",
143                                 [FeatureMips64r2]>;
144
145 //===----------------------------------------------------------------------===//
146 // Mips processors supported.
147 //===----------------------------------------------------------------------===//
148
149 class Proc<string Name, list<SubtargetFeature> Features>
150  : Processor<Name, MipsGenericItineraries, Features>;
151
152 def : Proc<"mips1", [FeatureMips1, FeatureO32]>;
153 def : Proc<"mips2", [FeatureMips2, FeatureO32]>;
154 def : Proc<"mips32", [FeatureMips32, FeatureO32]>;
155 def : Proc<"mips32r2", [FeatureMips32r2, FeatureO32]>;
156 def : Proc<"mips32r6", [FeatureMips32r6, FeatureO32]>;
157
158 def : Proc<"mips3", [FeatureMips3, FeatureN64]>;
159 def : Proc<"mips4", [FeatureMips4, FeatureN64]>;
160 def : Proc<"mips5", [FeatureMips5, FeatureN64]>;
161 def : Proc<"mips64", [FeatureMips64, FeatureN64]>;
162 def : Proc<"mips64r2", [FeatureMips64r2, FeatureN64]>;
163 def : Proc<"mips64r6", [FeatureMips64r6, FeatureN64]>;
164 def : Proc<"mips16", [FeatureMips16, FeatureO32]>;
165 def : Proc<"octeon", [FeatureMips64r2, FeatureN64, FeatureCnMips]>;
166
167 def MipsAsmParser : AsmParser {
168   let ShouldEmitMatchRegisterName = 0;
169   let MnemonicContainsDot = 1;
170 }
171
172 def MipsAsmParserVariant : AsmParserVariant {
173   int Variant = 0;
174
175   // Recognize hard coded registers.
176   string RegisterPrefix = "$";
177 }
178
179 def Mips : Target {
180   let InstructionSet = MipsInstrInfo;
181   let AssemblyParsers = [MipsAsmParser];
182   let AssemblyParserVariants = [MipsAsmParserVariant];
183 }