blob: ea020bb30170eac57bfc6140732bd4ef3b7389e4 [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
Benjamin Kramera7c40ef2014-08-13 16:26:38 +000014#ifndef LLVM_LIB_TARGET_MIPS_MIPSSUBTARGET_H
15#define LLVM_LIB_TARGET_MIPS_MIPSSUBTARGET_H
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +000016
Chandler Carruthd9903882015-01-14 11:23:27 +000017#include "MCTargetDesc/MipsABIInfo.h"
Eric Christopherdaa9dbb2014-07-03 00:10:24 +000018#include "MipsFrameLowering.h"
19#include "MipsISelLowering.h"
20#include "MipsInstrInfo.h"
Benjamin Kramerf9172fd42016-01-27 16:32:26 +000021#include "llvm/CodeGen/SelectionDAGTargetInfo.h"
Eric Christopher5f9fd212014-07-02 21:29:23 +000022#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
Daniel Sandersb7f1c6f2014-05-09 09:46:21 +000039 enum MipsArchEnum {
Vasileios Kalintirisb2dd15f2014-11-11 11:43:55 +000040 MipsDefault,
Daniel Sanders17793142015-02-18 16:24:50 +000041 Mips1, Mips2, Mips32, Mips32r2, Mips32r3, Mips32r5, Mips32r6, Mips32Max,
42 Mips3, Mips4, Mips5, Mips64, Mips64r2, Mips64r3, Mips64r5, Mips64r6
Daniel Sandersb7f1c6f2014-05-09 09:46:21 +000043 };
Bruno Cardoso Lopesc9c3f492008-07-05 19:05:21 +000044
Daniel Sanders7727e102015-09-28 18:24:08 +000045 enum class CPU { P5600 };
46
Bruno Cardoso Lopesed874ef2011-03-04 17:51:39 +000047 // Mips architecture version
Bruno Cardoso Lopesc9c3f492008-07-05 19:05:21 +000048 MipsArchEnum MipsArchVersion;
49
Daniel Sanders7727e102015-09-28 18:24:08 +000050 // Processor implementation (unused but required to exist by
51 // tablegen-erated code).
52 CPU ProcImpl;
53
Bruno Cardoso Lopesc9c3f492008-07-05 19:05:21 +000054 // IsLittle - The target is Little Endian
Bruno Cardoso Lopes326a0372008-06-04 01:45:25 +000055 bool IsLittle;
Bruno Cardoso Lopesc9c3f492008-07-05 19:05:21 +000056
Toma Tabacu506cfd02015-05-07 10:29:52 +000057 // IsSoftFloat - The target does not support any floating point instructions.
58 bool IsSoftFloat;
59
Bruno Cardoso Lopesc9c3f492008-07-05 19:05:21 +000060 // 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
Zoran Jovanovic2e386d32015-10-12 16:07:25 +0000125 // HasDSP, HasDSPR2, HasDSPR3 -- supports DSP ASE.
126 bool HasDSP, HasDSPR2, HasDSPR3;
Akira Hatanaka65ce9312012-09-21 23:41:49 +0000127
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
Daniel Sanders3ebcaf62015-09-03 12:31:22 +0000139 // UseTCCInDIV -- Enables the use of trapping in the assembler.
140 bool UseTCCInDIV;
141
Daniel Sanderse4e83a72015-09-15 10:02:16 +0000142 // HasEVA -- supports EVA ASE.
143 bool HasEVA;
144
Bruno Cardoso Lopes87beec92007-08-18 01:52:27 +0000145 InstrItineraryData InstrItins;
146
Reed Kotler1595f362013-04-09 19:46:01 +0000147 // We can override the determination of whether we are in mips16 mode
148 // as from the command line
149 enum {NoOverride, Mips16Override, NoMips16Override} OverrideMode;
150
Eric Christopher90724282015-01-08 18:18:57 +0000151 const MipsTargetMachine &TM;
Reed Kotler1595f362013-04-09 19:46:01 +0000152
Petar Jovanovic97250162014-02-05 17:19:30 +0000153 Triple TargetTriple;
Eric Christopher1f51ddd2014-07-02 00:54:12 +0000154
Benjamin Kramerf9172fd42016-01-27 16:32:26 +0000155 const SelectionDAGTargetInfo TSInfo;
Eric Christopherdaa9dbb2014-07-03 00:10:24 +0000156 std::unique_ptr<const MipsInstrInfo> InstrInfo;
157 std::unique_ptr<const MipsFrameLowering> FrameLowering;
158 std::unique_ptr<const MipsTargetLowering> TLInfo;
Eric Christopher5f9fd212014-07-02 21:29:23 +0000159
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +0000160public:
Sanjay Patela2f658d2014-07-15 22:39:58 +0000161 /// This overrides the PostRAScheduler bit in the SchedModel for each CPU.
Matthias Braun39a2afc2015-06-13 03:42:16 +0000162 bool enablePostRAScheduler() const override;
Sanjay Patela2f658d2014-07-15 22:39:58 +0000163 void getCriticalPathRCs(RegClassVector &CriticalPathRCs) const override;
164 CodeGenOpt::Level getOptLevelToEnablePostRAScheduler() const override;
Bruno Cardoso Lopesc9c3f492008-07-05 19:05:21 +0000165
166 /// Only O32 and EABI supported right now.
Eric Christophera5762812015-01-26 17:33:46 +0000167 bool isABI_EABI() const;
168 bool isABI_N64() const;
169 bool isABI_N32() const;
170 bool isABI_O32() const;
171 const MipsABIInfo &getABI() const;
Sasa Stankovicb976fee2014-07-14 09:40:29 +0000172 bool isABI_FPXX() const { return isABI_O32() && IsFPXX; }
Bruno Cardoso Lopesc9c3f492008-07-05 19:05:21 +0000173
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +0000174 /// This constructor initializes the data members to match that
Daniel Dunbar31b44e82009-08-02 22:11:08 +0000175 /// of the specified triple.
Daniel Sandersa73f1fd2015-06-10 12:11:26 +0000176 MipsSubtarget(const Triple &TT, const std::string &CPU, const std::string &FS,
177 bool little, const MipsTargetMachine &TM);
Bruno Cardoso Lopesed874ef2011-03-04 17:51:39 +0000178
179 /// ParseSubtargetFeatures - Parses features string setting specified
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +0000180 /// subtarget options. Definition of function is auto generated by tblgen.
Evan Cheng1a72add62011-07-07 07:07:08 +0000181 void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +0000182
Vladimir Medicfb8a2a92014-07-08 08:59:22 +0000183 bool hasMips1() const { return MipsArchVersion >= Mips1; }
Daniel Sandersd39320c2014-05-08 12:40:48 +0000184 bool hasMips2() const { return MipsArchVersion >= Mips2; }
Daniel Sandersf2056be2014-05-09 13:02:27 +0000185 bool hasMips3() const { return MipsArchVersion >= Mips3; }
Vladimir Medicfb8a2a92014-07-08 08:59:22 +0000186 bool hasMips4() const { return MipsArchVersion >= Mips4; }
187 bool hasMips5() const { return MipsArchVersion >= Mips5; }
Daniel Sanderse57d8662014-05-09 14:06:17 +0000188 bool hasMips4_32() const { return HasMips4_32; }
Daniel Sanders94eda2e2014-05-12 11:56:16 +0000189 bool hasMips4_32r2() const { return HasMips4_32r2; }
Daniel Sanders00463112014-06-16 13:18:59 +0000190 bool hasMips32() const {
Daniel Sanderse67d27f2015-02-04 15:18:11 +0000191 return (MipsArchVersion >= Mips32 && MipsArchVersion < Mips32Max) ||
192 hasMips64();
Daniel Sanders00463112014-06-16 13:18:59 +0000193 }
Daniel Sanders1f6f0f42014-06-12 11:55:58 +0000194 bool hasMips32r2() const {
Daniel Sanderse67d27f2015-02-04 15:18:11 +0000195 return (MipsArchVersion >= Mips32r2 && MipsArchVersion < Mips32Max) ||
196 hasMips64r2();
Daniel Sanders1f6f0f42014-06-12 11:55:58 +0000197 }
Daniel Sanders17793142015-02-18 16:24:50 +0000198 bool hasMips32r3() const {
199 return (MipsArchVersion >= Mips32r3 && MipsArchVersion < Mips32Max) ||
200 hasMips64r2();
201 }
202 bool hasMips32r5() const {
203 return (MipsArchVersion >= Mips32r5 && MipsArchVersion < Mips32Max) ||
Vasileios Kalintiris974d4092015-07-20 12:28:56 +0000204 hasMips64r5();
Daniel Sanders17793142015-02-18 16:24:50 +0000205 }
Daniel Sanders1f6f0f42014-06-12 11:55:58 +0000206 bool hasMips32r6() const {
Daniel Sanderse67d27f2015-02-04 15:18:11 +0000207 return (MipsArchVersion >= Mips32r6 && MipsArchVersion < Mips32Max) ||
208 hasMips64r6();
Daniel Sanders1f6f0f42014-06-12 11:55:58 +0000209 }
Akira Hatanaka6e506eb2011-09-21 02:24:25 +0000210 bool hasMips64() const { return MipsArchVersion >= Mips64; }
Daniel Sanderse67d27f2015-02-04 15:18:11 +0000211 bool hasMips64r2() const { return MipsArchVersion >= Mips64r2; }
Daniel Sanders17793142015-02-18 16:24:50 +0000212 bool hasMips64r3() const { return MipsArchVersion >= Mips64r3; }
213 bool hasMips64r5() const { return MipsArchVersion >= Mips64r5; }
Daniel Sanderse67d27f2015-02-04 15:18:11 +0000214 bool hasMips64r6() const { return MipsArchVersion >= Mips64r6; }
Bruno Cardoso Lopes326a0372008-06-04 01:45:25 +0000215
Kai Nacke93fe5e82014-03-20 11:51:58 +0000216 bool hasCnMips() const { return HasCnMips; }
217
Bruno Cardoso Lopes326a0372008-06-04 01:45:25 +0000218 bool isLittle() const { return IsLittle; }
Daniel Sandersfeb61302014-08-08 15:47:17 +0000219 bool isABICalls() const { return !NoABICalls; }
Zoran Jovanovic255d00d2014-07-10 15:36:12 +0000220 bool isFPXX() const { return IsFPXX; }
Douglas Gregor740ab382009-12-19 07:05:23 +0000221 bool isFP64bit() const { return IsFP64bit; }
Daniel Sanders7e527422014-07-10 13:38:23 +0000222 bool useOddSPReg() const { return UseOddSPReg; }
Sasa Stankovicf4a9e3b2014-07-29 14:39:24 +0000223 bool noOddSPReg() const { return !UseOddSPReg; }
Matheus Almeida0051f2d2014-04-16 15:48:55 +0000224 bool isNaN2008() const { return IsNaN2008bit; }
Douglas Gregor740ab382009-12-19 07:05:23 +0000225 bool isGP64bit() const { return IsGP64bit; }
226 bool isGP32bit() const { return !IsGP64bit; }
Daniel Sanders2b746bc2014-09-09 12:11:16 +0000227 unsigned getGPRSizeInBytes() const { return isGP64bit() ? 8 : 4; }
Douglas Gregor740ab382009-12-19 07:05:23 +0000228 bool isSingleFloat() const { return IsSingleFloat; }
Douglas Gregor740ab382009-12-19 07:05:23 +0000229 bool hasVFPU() const { return HasVFPU; }
Eric Christopher4e7d1e72014-07-18 23:41:32 +0000230 bool inMips16Mode() const { return InMips16Mode; }
Reed Kotler783c7942013-05-10 22:25:39 +0000231 bool inMips16ModeDefault() const {
Reed Kotler1595f362013-04-09 19:46:01 +0000232 return InMips16Mode;
233 }
Eric Christopher7394e232014-07-18 00:08:50 +0000234 // Hard float for mips16 means essentially to compile as soft float
235 // but to use a runtime library for soft float that is written with
236 // native mips32 floating point instructions (those runtime routines
237 // run in mips32 hard float mode).
Reed Kotler783c7942013-05-10 22:25:39 +0000238 bool inMips16HardFloat() const {
239 return inMips16Mode() && InMips16HardFloat;
240 }
Jack Carter428a06c2013-02-05 09:30:03 +0000241 bool inMicroMipsMode() const { return InMicroMipsMode; }
Jozef Kolekc22555d2015-04-20 12:23:06 +0000242 bool inMicroMips32r6Mode() const { return InMicroMipsMode && hasMips32r6(); }
Zoran Jovanovic366783e2015-08-12 12:45:16 +0000243 bool inMicroMips64r6Mode() const { return InMicroMipsMode && hasMips64r6(); }
Akira Hatanaka65ce9312012-09-21 23:41:49 +0000244 bool hasDSP() const { return HasDSP; }
245 bool hasDSPR2() const { return HasDSPR2; }
Zoran Jovanovic2e386d32015-10-12 16:07:25 +0000246 bool hasDSPR3() const { return HasDSPR3; }
Jack Carter3a2c2d42013-08-13 20:54:07 +0000247 bool hasMSA() const { return HasMSA; }
Daniel Sanderse4e83a72015-09-15 10:02:16 +0000248 bool hasEVA() const { return HasEVA; }
Akira Hatanakaad495022012-08-22 03:18:13 +0000249 bool useSmallSection() const { return UseSmallSection; }
Bruno Cardoso Lopesc9c3f492008-07-05 19:05:21 +0000250
Akira Hatanakacdf4fd82012-05-22 03:10:09 +0000251 bool hasStandardEncoding() const { return !inMips16Mode(); }
252
Eric Christopher54966eb2015-05-07 23:10:23 +0000253 bool useSoftFloat() const { return IsSoftFloat; }
Reed Kotlerc03807a2013-08-30 19:40:56 +0000254
Akira Hatanakaa8a05be2013-10-07 19:06:57 +0000255 bool enableLongBranchPass() const {
256 return hasStandardEncoding() || allowMixed16_32();
257 }
258
Bruno Cardoso Lopesf714e252008-07-30 17:01:06 +0000259 /// Features related to the presence of specific instructions.
Akira Hatanaka4a3836b2013-10-09 23:36:17 +0000260 bool hasExtractInsert() const { return !inMips16Mode() && hasMips32r2(); }
Sasa Stankovicb976fee2014-07-14 09:40:29 +0000261 bool hasMTHC1() const { return hasMips32r2(); }
Jack Carterc1b17ed2013-01-18 21:20:38 +0000262
Reed Kotler783c7942013-05-10 22:25:39 +0000263 bool allowMixed16_32() const { return inMips16ModeDefault() |
Toma Tabacuf4762002015-01-16 10:45:15 +0000264 AllowMixed16_32; }
Reed Kotler1595f362013-04-09 19:46:01 +0000265
Toma Tabacuf4762002015-01-16 10:45:15 +0000266 bool os16() const { return Os16; }
Reed Kotlerfe94cc32013-04-10 16:58:04 +0000267
Petar Jovanovic97250162014-02-05 17:19:30 +0000268 bool isTargetNaCl() const { return TargetTriple.isOSNaCl(); }
269
Daniel Sanders82cd99a2014-04-16 14:38:27 +0000270 // for now constant islands are on for the whole compilation unit but we only
271 // really use them if in addition we are in mips16 mode
272 static bool useConstantIslands();
Akira Hatanaka6b2d8412013-10-29 19:29:03 +0000273
Akira Hatanaka8f1caeb2013-11-11 21:49:03 +0000274 unsigned stackAlignment() const { return hasMips64() ? 16 : 8; }
Akira Hatanaka6b2d8412013-10-29 19:29:03 +0000275
Jack Carter7f378102013-01-30 02:16:36 +0000276 // Grab relocation model
Eric Christopherf74faf42014-07-18 22:34:20 +0000277 Reloc::Model getRelocationModel() const;
Reed Kotler1595f362013-04-09 19:46:01 +0000278
Eric Christopherdaa9dbb2014-07-03 00:10:24 +0000279 MipsSubtarget &initializeSubtargetDependencies(StringRef CPU, StringRef FS,
Eric Christopher90724282015-01-08 18:18:57 +0000280 const TargetMachine &TM);
Eric Christopher5b336a22014-07-02 01:14:43 +0000281
Daniel Sandersac272632014-05-23 13:18:02 +0000282 /// Does the system support unaligned memory access.
283 ///
284 /// MIPS32r6/MIPS64r6 require full unaligned access support but does not
285 /// specify which component of the system provides it. Hardware, software, and
286 /// hybrid implementations are all valid.
287 bool systemSupportsUnalignedAccess() const { return hasMips32r6(); }
Eric Christopher1f51ddd2014-07-02 00:54:12 +0000288
Eric Christopherdaa9dbb2014-07-03 00:10:24 +0000289 // Set helper classes
290 void setHelperClassesMips16();
291 void setHelperClassesMipsSE();
292
Benjamin Kramerf9172fd42016-01-27 16:32:26 +0000293 const SelectionDAGTargetInfo *getSelectionDAGInfo() const override {
Eric Christopherd9134482014-08-04 21:25:23 +0000294 return &TSInfo;
295 }
Eric Christopherd9134482014-08-04 21:25:23 +0000296 const MipsInstrInfo *getInstrInfo() const override { return InstrInfo.get(); }
297 const TargetFrameLowering *getFrameLowering() const override {
Eric Christopherdaa9dbb2014-07-03 00:10:24 +0000298 return FrameLowering.get();
299 }
Eric Christopherd9134482014-08-04 21:25:23 +0000300 const MipsRegisterInfo *getRegisterInfo() const override {
Eric Christopherdaa9dbb2014-07-03 00:10:24 +0000301 return &InstrInfo->getRegisterInfo();
302 }
Eric Christopherd9134482014-08-04 21:25:23 +0000303 const MipsTargetLowering *getTargetLowering() const override {
304 return TLInfo.get();
305 }
306 const InstrItineraryData *getInstrItineraryData() const override {
307 return &InstrItins;
308 }
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +0000309};
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000310} // End llvm namespace
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +0000311
312#endif