blob: 75bf91545421bd77e252a2abc3ef8d37f0d891a9 [file] [log] [blame]
Jia Liuf54f60f2012-02-28 07:46:26 +00001//===-- Mips.td - Describe the Mips Target Machine ---------*- tablegen -*-===//
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 Lopesf3c55802007-08-18 02:18:07 +00009// This is the top level entry point for the Mips target.
Akira Hatanakae2489122011-04-15 21:51:11 +000010//===----------------------------------------------------------------------===//
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +000011
Akira Hatanakae2489122011-04-15 21:51:11 +000012//===----------------------------------------------------------------------===//
Bruno Cardoso Lopesf3c55802007-08-18 02:18:07 +000013// Target-independent interfaces
Akira Hatanakae2489122011-04-15 21:51:11 +000014//===----------------------------------------------------------------------===//
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +000015
Evan Cheng977e7be2008-11-24 07:34:46 +000016include "llvm/Target/Target.td"
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +000017
Daniel Sanders3dc2c012014-05-07 10:27:09 +000018// 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.
22class PredicateControl {
23 // Predicates for the encoding scheme in use such as HasStdEnc
24 list<Predicate> EncodingPredicates = [];
Daniel Sanders13d72092014-05-07 12:48:37 +000025 // Predicates for the GPR size such as IsGP64bit
26 list<Predicate> GPRPredicates = [];
Simon Dardis4fbf76f2016-06-14 11:29:28 +000027 // Predicates for the PTR size such as IsPTR64bit
28 list<Predicate> PTRPredicates = [];
Daniel Sanders13d72092014-05-07 12:48:37 +000029 // Predicates for the FGR size and layout such as IsFP64bit
30 list<Predicate> FGRPredicates = [];
Simon Dardis1f0fe562018-03-12 13:16:12 +000031 // Predicates for the instruction group membership such as ISA's.
Daniel Sanders9c1b1be2014-05-07 13:57:22 +000032 list<Predicate> InsnPredicates = [];
Simon Dardis1f0fe562018-03-12 13:16:12 +000033 // Predicate for the ASE that an instruction belongs to.
34 list<Predicate> ASEPredicate = [];
Toma Tabacu506cfd02015-05-07 10:29:52 +000035 // Predicate for marking the instruction as usable in hard-float mode only.
36 list<Predicate> HardFloatPredicate = [];
Daniel Sanders3dc2c012014-05-07 10:27:09 +000037 // Predicates for anything else
38 list<Predicate> AdditionalPredicates = [];
39 list<Predicate> Predicates = !listconcat(EncodingPredicates,
Daniel Sanders13d72092014-05-07 12:48:37 +000040 GPRPredicates,
Simon Dardis4fbf76f2016-06-14 11:29:28 +000041 PTRPredicates,
Daniel Sanders13d72092014-05-07 12:48:37 +000042 FGRPredicates,
Daniel Sanders9c1b1be2014-05-07 13:57:22 +000043 InsnPredicates,
Toma Tabacu506cfd02015-05-07 10:29:52 +000044 HardFloatPredicate,
Simon Dardis1f0fe562018-03-12 13:16:12 +000045 ASEPredicate,
Daniel Sanders3dc2c012014-05-07 10:27:09 +000046 AdditionalPredicates);
47}
48
49// Like Requires<> but for the AdditionalPredicates list
50class AdditionalRequires<list<Predicate> preds> {
51 list<Predicate> AdditionalPredicates = preds;
52}
53
Akira Hatanakae2489122011-04-15 21:51:11 +000054//===----------------------------------------------------------------------===//
Bruno Cardoso Lopesc9c3f492008-07-05 19:05:21 +000055// Register File, Calling Conv, Instruction Descriptions
Akira Hatanakae2489122011-04-15 21:51:11 +000056//===----------------------------------------------------------------------===//
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +000057
58include "MipsRegisterInfo.td"
Bruno Cardoso Lopesf3c55802007-08-18 02:18:07 +000059include "MipsSchedule.td"
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +000060include "MipsInstrInfo.td"
Bruno Cardoso Lopesf3c55802007-08-18 02:18:07 +000061include "MipsCallingConv.td"
Petar Jovanovic366857a2018-04-11 15:12:32 +000062include "MipsRegisterBanks.td"
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +000063
Simon Dardis6c3591d2016-08-02 10:32:00 +000064// Avoid forward declaration issues.
65include "MipsScheduleP5600.td"
Simon Dardisbd271542016-09-01 14:53:53 +000066include "MipsScheduleGeneric.td"
Simon Dardis6c3591d2016-08-02 10:32:00 +000067
Jakob Stoklund Olesenb93331f2010-04-05 03:10:20 +000068def MipsInstrInfo : InstrInfo;
Bruno Cardoso Lopesf3c55802007-08-18 02:18:07 +000069
Akira Hatanakae2489122011-04-15 21:51:11 +000070//===----------------------------------------------------------------------===//
71// Mips Subtarget features //
72//===----------------------------------------------------------------------===//
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +000073
Daniel Sandersfeb61302014-08-08 15:47:17 +000074def FeatureNoABICalls : SubtargetFeature<"noabicalls", "NoABICalls", "true",
Toma Tabacu344c1672015-02-27 10:44:02 +000075 "Disable SVR4-style position-independent code">;
Simon Dardis4fbf76f2016-06-14 11:29:28 +000076def FeaturePTR64Bit : SubtargetFeature<"ptr64", "IsPTR64bit", "true",
77 "Pointers are 64-bit wide">;
Bruno Cardoso Lopesbcc21392008-07-09 05:32:22 +000078def FeatureGP64Bit : SubtargetFeature<"gp64", "IsGP64bit", "true",
Toma Tabacu344c1672015-02-27 10:44:02 +000079 "General Purpose Registers are 64-bit wide">;
Bruno Cardoso Lopesbcc21392008-07-09 05:32:22 +000080def FeatureFP64Bit : SubtargetFeature<"fp64", "IsFP64bit", "true",
Toma Tabacu344c1672015-02-27 10:44:02 +000081 "Support 64-bit FP registers">;
Zoran Jovanovic255d00d2014-07-10 15:36:12 +000082def FeatureFPXX : SubtargetFeature<"fpxx", "IsFPXX", "true",
Toma Tabacu344c1672015-02-27 10:44:02 +000083 "Support for FPXX">;
Matheus Almeida0051f2d2014-04-16 15:48:55 +000084def FeatureNaN2008 : SubtargetFeature<"nan2008", "IsNaN2008bit", "true",
Toma Tabacu344c1672015-02-27 10:44:02 +000085 "IEEE 754-2008 NaN encoding">;
Bruno Cardoso Lopesbcc21392008-07-09 05:32:22 +000086def FeatureSingleFloat : SubtargetFeature<"single-float", "IsSingleFloat",
Akira Hatanakae2489122011-04-15 21:51:11 +000087 "true", "Only supports single precision float">;
Toma Tabacu506cfd02015-05-07 10:29:52 +000088def FeatureSoftFloat : SubtargetFeature<"soft-float", "IsSoftFloat", "true",
89 "Does not support floating point instructions">;
Daniel Sanders7e527422014-07-10 13:38:23 +000090def FeatureNoOddSPReg : SubtargetFeature<"nooddspreg", "UseOddSPReg", "false",
91 "Disable odd numbered single-precision "
92 "registers">;
Bruno Cardoso Lopes9c656fe2010-11-08 21:42:32 +000093def FeatureVFPU : SubtargetFeature<"vfpu", "HasVFPU",
Toma Tabacu344c1672015-02-27 10:44:02 +000094 "true", "Enable vector FPU instructions">;
Daniel Sandersd2409532014-05-07 16:25:22 +000095def FeatureMips1 : SubtargetFeature<"mips1", "MipsArchVersion", "Mips1",
96 "Mips I ISA Support [highly experimental]">;
97def FeatureMips2 : SubtargetFeature<"mips2", "MipsArchVersion", "Mips2",
98 "Mips II ISA Support [highly experimental]",
99 [FeatureMips1]>;
Daniel Sandersf2056be2014-05-09 13:02:27 +0000100def FeatureMips3_32 : SubtargetFeature<"mips3_32", "HasMips3_32", "true",
101 "Subset of MIPS-III that is also in MIPS32 "
102 "[highly experimental]">;
Daniel Sanders387fc152014-05-13 11:45:36 +0000103def FeatureMips3_32r2 : SubtargetFeature<"mips3_32r2", "HasMips3_32r2", "true",
104 "Subset of MIPS-III that is also in MIPS32r2 "
105 "[highly experimental]">;
Daniel Sandersf2056be2014-05-09 13:02:27 +0000106def FeatureMips3 : SubtargetFeature<"mips3", "MipsArchVersion", "Mips3",
107 "MIPS III ISA Support [highly experimental]",
108 [FeatureMips2, FeatureMips3_32,
Daniel Sanders387fc152014-05-13 11:45:36 +0000109 FeatureMips3_32r2, FeatureGP64Bit,
110 FeatureFP64Bit]>;
Daniel Sanderse57d8662014-05-09 14:06:17 +0000111def FeatureMips4_32 : SubtargetFeature<"mips4_32", "HasMips4_32", "true",
112 "Subset of MIPS-IV that is also in MIPS32 "
113 "[highly experimental]">;
Daniel Sanders94eda2e2014-05-12 11:56:16 +0000114def FeatureMips4_32r2 : SubtargetFeature<"mips4_32r2", "HasMips4_32r2", "true",
115 "Subset of MIPS-IV that is also in MIPS32r2 "
116 "[highly experimental]">;
Daniel Sandersf2056be2014-05-09 13:02:27 +0000117def FeatureMips4 : SubtargetFeature<"mips4", "MipsArchVersion",
118 "Mips4", "MIPS IV ISA Support",
Daniel Sanderse57d8662014-05-09 14:06:17 +0000119 [FeatureMips3, FeatureMips4_32,
Daniel Sanders94eda2e2014-05-12 11:56:16 +0000120 FeatureMips4_32r2]>;
Daniel Sanders07cdea22014-05-12 12:52:44 +0000121def FeatureMips5_32r2 : SubtargetFeature<"mips5_32r2", "HasMips5_32r2", "true",
122 "Subset of MIPS-V that is also in MIPS32r2 "
123 "[highly experimental]">;
Daniel Sandersf2056be2014-05-09 13:02:27 +0000124def FeatureMips5 : SubtargetFeature<"mips5", "MipsArchVersion", "Mips5",
125 "MIPS V ISA Support [highly experimental]",
Daniel Sanders07cdea22014-05-12 12:52:44 +0000126 [FeatureMips4, FeatureMips5_32r2]>;
Akira Hatanakae2489122011-04-15 21:51:11 +0000127def FeatureMips32 : SubtargetFeature<"mips32", "MipsArchVersion", "Mips32",
128 "Mips32 ISA Support",
Daniel Sandersf2056be2014-05-09 13:02:27 +0000129 [FeatureMips2, FeatureMips3_32,
Daniel Sanders070fd1c2014-05-12 12:41:59 +0000130 FeatureMips4_32]>;
Bruno Cardoso Lopes9c656fe2010-11-08 21:42:32 +0000131def FeatureMips32r2 : SubtargetFeature<"mips32r2", "MipsArchVersion",
132 "Mips32r2", "Mips32r2 ISA Support",
Daniel Sanders387fc152014-05-13 11:45:36 +0000133 [FeatureMips3_32r2, FeatureMips4_32r2,
134 FeatureMips5_32r2, FeatureMips32]>;
Daniel Sanders17793142015-02-18 16:24:50 +0000135def FeatureMips32r3 : SubtargetFeature<"mips32r3", "MipsArchVersion",
136 "Mips32r3", "Mips32r3 ISA Support",
137 [FeatureMips32r2]>;
138def FeatureMips32r5 : SubtargetFeature<"mips32r5", "MipsArchVersion",
139 "Mips32r5", "Mips32r5 ISA Support",
140 [FeatureMips32r3]>;
Daniel Sandersb7f1c6f2014-05-09 09:46:21 +0000141def FeatureMips32r6 : SubtargetFeature<"mips32r6", "MipsArchVersion",
142 "Mips32r6",
143 "Mips32r6 ISA Support [experimental]",
Daniel Sanders17793142015-02-18 16:24:50 +0000144 [FeatureMips32r5, FeatureFP64Bit,
Daniel Sandersb7f1c6f2014-05-09 09:46:21 +0000145 FeatureNaN2008]>;
Akira Hatanaka2b372612011-09-20 20:28:08 +0000146def FeatureMips64 : SubtargetFeature<"mips64", "MipsArchVersion",
147 "Mips64", "Mips64 ISA Support",
Daniel Sanders94eda2e2014-05-12 11:56:16 +0000148 [FeatureMips5, FeatureMips32]>;
Akira Hatanaka2b372612011-09-20 20:28:08 +0000149def FeatureMips64r2 : SubtargetFeature<"mips64r2", "MipsArchVersion",
150 "Mips64r2", "Mips64r2 ISA Support",
151 [FeatureMips64, FeatureMips32r2]>;
Daniel Sanders17793142015-02-18 16:24:50 +0000152def FeatureMips64r3 : SubtargetFeature<"mips64r3", "MipsArchVersion",
153 "Mips64r3", "Mips64r3 ISA Support",
154 [FeatureMips64r2, FeatureMips32r3]>;
155def FeatureMips64r5 : SubtargetFeature<"mips64r5", "MipsArchVersion",
156 "Mips64r5", "Mips64r5 ISA Support",
157 [FeatureMips64r3, FeatureMips32r5]>;
Daniel Sandersb7f1c6f2014-05-09 09:46:21 +0000158def FeatureMips64r6 : SubtargetFeature<"mips64r6", "MipsArchVersion",
159 "Mips64r6",
160 "Mips64r6 ISA Support [experimental]",
Daniel Sanders17793142015-02-18 16:24:50 +0000161 [FeatureMips32r6, FeatureMips64r5,
Daniel Sanders0ac5ec52014-05-12 15:12:45 +0000162 FeatureNaN2008]>;
Simon Dardisca74dd72017-01-27 11:36:52 +0000163def FeatureSym32 : SubtargetFeature<"sym32", "HasSym32", "true",
164 "Symbols are 32 bit on Mips64">;
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +0000165
Akira Hatanaka0faaebf2012-05-16 22:19:56 +0000166def FeatureMips16 : SubtargetFeature<"mips16", "InMips16Mode", "true",
167 "Mips16 mode">;
168
Akira Hatanaka65ce9312012-09-21 23:41:49 +0000169def FeatureDSP : SubtargetFeature<"dsp", "HasDSP", "true", "Mips DSP ASE">;
170def FeatureDSPR2 : SubtargetFeature<"dspr2", "HasDSPR2", "true",
171 "Mips DSP-R2 ASE", [FeatureDSP]>;
Zoran Jovanovic2e386d32015-10-12 16:07:25 +0000172def FeatureDSPR3
173 : SubtargetFeature<"dspr3", "HasDSPR3", "true", "Mips DSP-R3 ASE",
174 [ FeatureDSP, FeatureDSPR2 ]>;
Akira Hatanaka65ce9312012-09-21 23:41:49 +0000175
Jack Carter3a2c2d42013-08-13 20:54:07 +0000176def FeatureMSA : SubtargetFeature<"msa", "HasMSA", "true", "Mips MSA ASE">;
177
Daniel Sanderse4e83a72015-09-15 10:02:16 +0000178def FeatureEVA : SubtargetFeature<"eva", "HasEVA", "true", "Mips EVA ASE">;
179
Petar Jovanovic3408caf2018-03-14 14:13:31 +0000180def FeatureCRC : SubtargetFeature<"crc", "HasCRC", "true", "Mips R6 CRC ASE">;
181
Jack Carter428a06c2013-02-05 09:30:03 +0000182def FeatureMicroMips : SubtargetFeature<"micromips", "InMicroMipsMode", "true",
183 "microMips mode">;
184
Kai Nacke93fe5e82014-03-20 11:51:58 +0000185def FeatureCnMips : SubtargetFeature<"cnmips", "HasCnMips",
186 "true", "Octeon cnMIPS Support",
187 [FeatureMips64r2]>;
188
Daniel Sanders3ebcaf62015-09-03 12:31:22 +0000189def FeatureUseTCCInDIV : SubtargetFeature<
190 "use-tcc-in-div",
191 "UseTCCInDIV", "false",
192 "Force the assembler to use trapping">;
193
Petar Jovanovic64fb7a82017-06-06 15:33:01 +0000194def FeatureMadd4 : SubtargetFeature<"nomadd4", "DisableMadd4", "true",
195 "Disable 4-operand madd.fmt and related instructions">;
196
Simon Dardisae719c52017-07-11 18:03:20 +0000197def FeatureMT : SubtargetFeature<"mt", "HasMT", "true", "Mips MT ASE">;
198
Simon Atanasyanf217c7b2017-07-15 07:14:25 +0000199def FeatureLongCalls : SubtargetFeature<"long-calls", "UseLongCalls", "true",
200 "Disable use of the jal instruction">;
201
Simon Dardis7bc8ad52018-02-21 00:06:53 +0000202def FeatureUseIndirectJumpsHazard : SubtargetFeature<"use-indirect-jump-hazard",
203 "UseIndirectJumpsHazard",
204 "true", "Use indirect jump"
205 " guards to prevent certain speculation based attacks">;
Akira Hatanakae2489122011-04-15 21:51:11 +0000206//===----------------------------------------------------------------------===//
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +0000207// Mips processors supported.
Akira Hatanakae2489122011-04-15 21:51:11 +0000208//===----------------------------------------------------------------------===//
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +0000209
Daniel Sanders7727e102015-09-28 18:24:08 +0000210def ImplP5600 : SubtargetFeature<"p5600", "ProcImpl",
211 "MipsSubtarget::CPU::P5600",
212 "The P5600 Processor", [FeatureMips32r5]>;
213
Bruno Cardoso Lopesc9c3f492008-07-05 19:05:21 +0000214class Proc<string Name, list<SubtargetFeature> Features>
Simon Dardisbd271542016-09-01 14:53:53 +0000215 : ProcessorModel<Name, MipsGenericModel, Features>;
Bruno Cardoso Lopesc9c3f492008-07-05 19:05:21 +0000216
Eric Christophera5762812015-01-26 17:33:46 +0000217def : Proc<"mips1", [FeatureMips1]>;
218def : Proc<"mips2", [FeatureMips2]>;
219def : Proc<"mips32", [FeatureMips32]>;
220def : Proc<"mips32r2", [FeatureMips32r2]>;
Daniel Sanders17793142015-02-18 16:24:50 +0000221def : Proc<"mips32r3", [FeatureMips32r3]>;
222def : Proc<"mips32r5", [FeatureMips32r5]>;
Eric Christophera5762812015-01-26 17:33:46 +0000223def : Proc<"mips32r6", [FeatureMips32r6]>;
Daniel Sandersd2409532014-05-07 16:25:22 +0000224
Eric Christophera5762812015-01-26 17:33:46 +0000225def : Proc<"mips3", [FeatureMips3]>;
226def : Proc<"mips4", [FeatureMips4]>;
227def : Proc<"mips5", [FeatureMips5]>;
228def : Proc<"mips64", [FeatureMips64]>;
229def : Proc<"mips64r2", [FeatureMips64r2]>;
Daniel Sanders17793142015-02-18 16:24:50 +0000230def : Proc<"mips64r3", [FeatureMips64r3]>;
231def : Proc<"mips64r5", [FeatureMips64r5]>;
Eric Christophera5762812015-01-26 17:33:46 +0000232def : Proc<"mips64r6", [FeatureMips64r6]>;
Eric Christophera5762812015-01-26 17:33:46 +0000233def : Proc<"octeon", [FeatureMips64r2, FeatureCnMips]>;
Daniel Sanders7727e102015-09-28 18:24:08 +0000234def : ProcessorModel<"p5600", MipsP5600Model, [ImplP5600]>;
Bruno Cardoso Lopes9c656fe2010-11-08 21:42:32 +0000235
Akira Hatanaka7605630c2012-08-17 20:16:42 +0000236def MipsAsmParser : AsmParser {
237 let ShouldEmitMatchRegisterName = 0;
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +0000238}
Akira Hatanaka9c6028f2011-07-07 23:56:50 +0000239
Akira Hatanaka7605630c2012-08-17 20:16:42 +0000240def MipsAsmParserVariant : AsmParserVariant {
241 int Variant = 0;
242
243 // Recognize hard coded registers.
244 string RegisterPrefix = "$";
245}
246
247def Mips : Target {
248 let InstructionSet = MipsInstrInfo;
249 let AssemblyParsers = [MipsAsmParser];
Akira Hatanaka7605630c2012-08-17 20:16:42 +0000250 let AssemblyParserVariants = [MipsAsmParserVariant];
Geoff Berryf8bf2ec2018-02-23 18:25:08 +0000251 let AllowRegisterRenaming = 1;
Akira Hatanaka7605630c2012-08-17 20:16:42 +0000252}