blob: 474cda84a40ec4c7af3c44c7dc2f82048f4c88cf [file] [log] [blame]
Erich Keaneebba5922017-07-21 22:37:03 +00001//===--- Mips.h - Declare Mips target feature support -----------*- C++ -*-===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// 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
Erich Keaneebba5922017-07-21 22:37:03 +00006//
7//===----------------------------------------------------------------------===//
8//
9// This file declares Mips TargetInfo objects.
10//
11//===----------------------------------------------------------------------===//
12
13#ifndef LLVM_CLANG_LIB_BASIC_TARGETS_MIPS_H
14#define LLVM_CLANG_LIB_BASIC_TARGETS_MIPS_H
15
16#include "clang/Basic/TargetInfo.h"
17#include "clang/Basic/TargetOptions.h"
18#include "llvm/ADT/Triple.h"
19#include "llvm/Support/Compiler.h"
20
21namespace clang {
22namespace targets {
23
24class LLVM_LIBRARY_VISIBILITY MipsTargetInfo : public TargetInfo {
25 void setDataLayout() {
26 StringRef Layout;
27
28 if (ABI == "o32")
29 Layout = "m:m-p:32:32-i8:8:32-i16:16:32-i64:64-n32-S64";
30 else if (ABI == "n32")
31 Layout = "m:e-p:32:32-i8:8:32-i16:16:32-i64:64-n32:64-S128";
32 else if (ABI == "n64")
33 Layout = "m:e-i8:8:32-i16:16:32-i64:64-n32:64-S128";
34 else
35 llvm_unreachable("Invalid ABI");
36
37 if (BigEndian)
38 resetDataLayout(("E-" + Layout).str());
39 else
40 resetDataLayout(("e-" + Layout).str());
41 }
42
43 static const Builtin::Info BuiltinInfo[];
44 std::string CPU;
45 bool IsMips16;
46 bool IsMicromips;
47 bool IsNan2008;
Petar Jovanovic50765112017-08-24 16:06:30 +000048 bool IsAbs2008;
Erich Keaneebba5922017-07-21 22:37:03 +000049 bool IsSingleFloat;
50 bool IsNoABICalls;
51 bool CanUseBSDABICalls;
52 enum MipsFloatABI { HardFloat, SoftFloat } FloatABI;
53 enum DspRevEnum { NoDSP, DSP1, DSP2 } DspRev;
54 bool HasMSA;
Stefan Maksimovic76391b12017-08-11 11:03:54 +000055 bool DisableMadd4;
Simon Dardis0bc2d9b2018-02-21 00:05:05 +000056 bool UseIndirectJumpHazard;
Erich Keaneebba5922017-07-21 22:37:03 +000057
58protected:
Stefan Maksimoviceb632562018-08-22 09:26:25 +000059 enum FPModeEnum { FPXX, FP32, FP64 } FPMode;
Erich Keaneebba5922017-07-21 22:37:03 +000060 std::string ABI;
61
62public:
63 MipsTargetInfo(const llvm::Triple &Triple, const TargetOptions &)
64 : TargetInfo(Triple), IsMips16(false), IsMicromips(false),
Petar Jovanovic50765112017-08-24 16:06:30 +000065 IsNan2008(false), IsAbs2008(false), IsSingleFloat(false),
66 IsNoABICalls(false), CanUseBSDABICalls(false), FloatABI(HardFloat),
Simon Dardis0bc2d9b2018-02-21 00:05:05 +000067 DspRev(NoDSP), HasMSA(false), DisableMadd4(false),
Stefan Maksimoviceb632562018-08-22 09:26:25 +000068 UseIndirectJumpHazard(false), FPMode(FPXX) {
Erich Keaneebba5922017-07-21 22:37:03 +000069 TheCXXABI.set(TargetCXXABI::GenericMIPS);
70
Simon Atanasyandb81c7b2018-10-15 22:43:23 +000071 if (Triple.isMIPS32())
72 setABI("o32");
73 else if (Triple.getEnvironment() == llvm::Triple::GNUABIN32)
74 setABI("n32");
75 else
76 setABI("n64");
Erich Keaneebba5922017-07-21 22:37:03 +000077
78 CPU = ABI == "o32" ? "mips32r2" : "mips64r2";
79
Michal Gorny5a409d02018-12-20 13:09:30 +000080 CanUseBSDABICalls = Triple.isOSFreeBSD() ||
81 Triple.isOSOpenBSD();
Erich Keaneebba5922017-07-21 22:37:03 +000082 }
83
Petar Jovanovic9d1c0942017-08-22 13:35:27 +000084 bool isIEEE754_2008Default() const {
Erich Keaneebba5922017-07-21 22:37:03 +000085 return CPU == "mips32r6" || CPU == "mips64r6";
86 }
87
88 bool isFP64Default() const {
89 return CPU == "mips32r6" || ABI == "n32" || ABI == "n64" || ABI == "64";
90 }
91
92 bool isNan2008() const override { return IsNan2008; }
93
94 bool processorSupportsGPR64() const;
95
96 StringRef getABI() const override { return ABI; }
97
98 bool setABI(const std::string &Name) override {
99 if (Name == "o32") {
100 setO32ABITypes();
101 ABI = Name;
102 return true;
103 }
104
105 if (Name == "n32") {
106 setN32ABITypes();
107 ABI = Name;
108 return true;
109 }
110 if (Name == "n64") {
111 setN64ABITypes();
112 ABI = Name;
113 return true;
114 }
115 return false;
116 }
117
118 void setO32ABITypes() {
119 Int64Type = SignedLongLong;
120 IntMaxType = Int64Type;
121 LongDoubleFormat = &llvm::APFloat::IEEEdouble();
122 LongDoubleWidth = LongDoubleAlign = 64;
123 LongWidth = LongAlign = 32;
124 MaxAtomicPromoteWidth = MaxAtomicInlineWidth = 32;
125 PointerWidth = PointerAlign = 32;
126 PtrDiffType = SignedInt;
127 SizeType = UnsignedInt;
128 SuitableAlign = 64;
129 }
130
131 void setN32N64ABITypes() {
132 LongDoubleWidth = LongDoubleAlign = 128;
133 LongDoubleFormat = &llvm::APFloat::IEEEquad();
Michal Gorny5a409d02018-12-20 13:09:30 +0000134 if (getTriple().isOSFreeBSD()) {
Erich Keaneebba5922017-07-21 22:37:03 +0000135 LongDoubleWidth = LongDoubleAlign = 64;
136 LongDoubleFormat = &llvm::APFloat::IEEEdouble();
137 }
138 MaxAtomicPromoteWidth = MaxAtomicInlineWidth = 64;
139 SuitableAlign = 128;
140 }
141
142 void setN64ABITypes() {
143 setN32N64ABITypes();
Michal Gorny5a409d02018-12-20 13:09:30 +0000144 if (getTriple().isOSOpenBSD()) {
Erich Keaneebba5922017-07-21 22:37:03 +0000145 Int64Type = SignedLongLong;
146 } else {
147 Int64Type = SignedLong;
148 }
149 IntMaxType = Int64Type;
150 LongWidth = LongAlign = 64;
151 PointerWidth = PointerAlign = 64;
152 PtrDiffType = SignedLong;
153 SizeType = UnsignedLong;
154 }
155
156 void setN32ABITypes() {
157 setN32N64ABITypes();
158 Int64Type = SignedLongLong;
159 IntMaxType = Int64Type;
160 LongWidth = LongAlign = 32;
161 PointerWidth = PointerAlign = 32;
162 PtrDiffType = SignedInt;
163 SizeType = UnsignedInt;
164 }
165
166 bool isValidCPUName(StringRef Name) const override;
Erich Keanee44bdb32018-02-08 23:16:55 +0000167 void fillValidCPUList(SmallVectorImpl<StringRef> &Values) const override;
Erich Keaneebba5922017-07-21 22:37:03 +0000168
169 bool setCPU(const std::string &Name) override {
170 CPU = Name;
171 return isValidCPUName(Name);
172 }
173
174 const std::string &getCPU() const { return CPU; }
175 bool
176 initFeatureMap(llvm::StringMap<bool> &Features, DiagnosticsEngine &Diags,
177 StringRef CPU,
178 const std::vector<std::string> &FeaturesVec) const override {
179 if (CPU.empty())
180 CPU = getCPU();
181 if (CPU == "octeon")
182 Features["mips64r2"] = Features["cnmips"] = true;
183 else
184 Features[CPU] = true;
185 return TargetInfo::initFeatureMap(Features, Diags, CPU, FeaturesVec);
186 }
187
Stefan Maksimoviceb632562018-08-22 09:26:25 +0000188 unsigned getISARev() const;
189
Erich Keaneebba5922017-07-21 22:37:03 +0000190 void getTargetDefines(const LangOptions &Opts,
191 MacroBuilder &Builder) const override;
192
193 ArrayRef<Builtin::Info> getTargetBuiltins() const override;
194
195 bool hasFeature(StringRef Feature) const override;
196
197 BuiltinVaListKind getBuiltinVaListKind() const override {
198 return TargetInfo::VoidPtrBuiltinVaList;
199 }
200
201 ArrayRef<const char *> getGCCRegNames() const override {
202 static const char *const GCCRegNames[] = {
203 // CPU register names
204 // Must match second column of GCCRegAliases
205 "$0", "$1", "$2", "$3", "$4", "$5", "$6", "$7", "$8", "$9", "$10",
206 "$11", "$12", "$13", "$14", "$15", "$16", "$17", "$18", "$19", "$20",
207 "$21", "$22", "$23", "$24", "$25", "$26", "$27", "$28", "$29", "$30",
208 "$31",
209 // Floating point register names
210 "$f0", "$f1", "$f2", "$f3", "$f4", "$f5", "$f6", "$f7", "$f8", "$f9",
211 "$f10", "$f11", "$f12", "$f13", "$f14", "$f15", "$f16", "$f17", "$f18",
212 "$f19", "$f20", "$f21", "$f22", "$f23", "$f24", "$f25", "$f26", "$f27",
213 "$f28", "$f29", "$f30", "$f31",
214 // Hi/lo and condition register names
215 "hi", "lo", "", "$fcc0", "$fcc1", "$fcc2", "$fcc3", "$fcc4", "$fcc5",
216 "$fcc6", "$fcc7", "$ac1hi", "$ac1lo", "$ac2hi", "$ac2lo", "$ac3hi",
217 "$ac3lo",
218 // MSA register names
219 "$w0", "$w1", "$w2", "$w3", "$w4", "$w5", "$w6", "$w7", "$w8", "$w9",
220 "$w10", "$w11", "$w12", "$w13", "$w14", "$w15", "$w16", "$w17", "$w18",
221 "$w19", "$w20", "$w21", "$w22", "$w23", "$w24", "$w25", "$w26", "$w27",
222 "$w28", "$w29", "$w30", "$w31",
223 // MSA control register names
224 "$msair", "$msacsr", "$msaaccess", "$msasave", "$msamodify",
225 "$msarequest", "$msamap", "$msaunmap"
226 };
227 return llvm::makeArrayRef(GCCRegNames);
228 }
229
230 bool validateAsmConstraint(const char *&Name,
231 TargetInfo::ConstraintInfo &Info) const override {
232 switch (*Name) {
233 default:
234 return false;
235 case 'r': // CPU registers.
236 case 'd': // Equivalent to "r" unless generating MIPS16 code.
237 case 'y': // Equivalent to "r", backward compatibility only.
238 case 'f': // floating-point registers.
239 case 'c': // $25 for indirect jumps
240 case 'l': // lo register
241 case 'x': // hilo register pair
242 Info.setAllowsRegister();
243 return true;
244 case 'I': // Signed 16-bit constant
245 case 'J': // Integer 0
246 case 'K': // Unsigned 16-bit constant
247 case 'L': // Signed 32-bit constant, lower 16-bit zeros (for lui)
248 case 'M': // Constants not loadable via lui, addiu, or ori
249 case 'N': // Constant -1 to -65535
250 case 'O': // A signed 15-bit constant
251 case 'P': // A constant between 1 go 65535
252 return true;
253 case 'R': // An address that can be used in a non-macro load or store
254 Info.setAllowsMemory();
255 return true;
256 case 'Z':
257 if (Name[1] == 'C') { // An address usable by ll, and sc.
258 Info.setAllowsMemory();
259 Name++; // Skip over 'Z'.
260 return true;
261 }
262 return false;
263 }
264 }
265
266 std::string convertConstraint(const char *&Constraint) const override {
267 std::string R;
268 switch (*Constraint) {
269 case 'Z': // Two-character constraint; add "^" hint for later parsing.
270 if (Constraint[1] == 'C') {
271 R = std::string("^") + std::string(Constraint, 2);
272 Constraint++;
273 return R;
274 }
275 break;
276 }
277 return TargetInfo::convertConstraint(Constraint);
278 }
279
280 const char *getClobbers() const override {
281 // In GCC, $1 is not widely used in generated code (it's used only in a few
282 // specific situations), so there is no real need for users to add it to
283 // the clobbers list if they want to use it in their inline assembly code.
284 //
285 // In LLVM, $1 is treated as a normal GPR and is always allocatable during
286 // code generation, so using it in inline assembly without adding it to the
287 // clobbers list can cause conflicts between the inline assembly code and
288 // the surrounding generated code.
289 //
290 // Another problem is that LLVM is allowed to choose $1 for inline assembly
291 // operands, which will conflict with the ".set at" assembler option (which
292 // we use only for inline assembly, in order to maintain compatibility with
293 // GCC) and will also conflict with the user's usage of $1.
294 //
295 // The easiest way to avoid these conflicts and keep $1 as an allocatable
296 // register for generated code is to automatically clobber $1 for all inline
297 // assembly code.
298 //
299 // FIXME: We should automatically clobber $1 only for inline assembly code
300 // which actually uses it. This would allow LLVM to use $1 for inline
301 // assembly operands if the user's assembly code doesn't use it.
302 return "~{$1}";
303 }
304
305 bool handleTargetFeatures(std::vector<std::string> &Features,
306 DiagnosticsEngine &Diags) override {
307 IsMips16 = false;
308 IsMicromips = false;
Petar Jovanovic9d1c0942017-08-22 13:35:27 +0000309 IsNan2008 = isIEEE754_2008Default();
Petar Jovanovic50765112017-08-24 16:06:30 +0000310 IsAbs2008 = isIEEE754_2008Default();
Erich Keaneebba5922017-07-21 22:37:03 +0000311 IsSingleFloat = false;
312 FloatABI = HardFloat;
313 DspRev = NoDSP;
Stefan Maksimoviceb632562018-08-22 09:26:25 +0000314 FPMode = isFP64Default() ? FP64 : FPXX;
Erich Keaneebba5922017-07-21 22:37:03 +0000315
316 for (const auto &Feature : Features) {
317 if (Feature == "+single-float")
318 IsSingleFloat = true;
319 else if (Feature == "+soft-float")
320 FloatABI = SoftFloat;
321 else if (Feature == "+mips16")
322 IsMips16 = true;
323 else if (Feature == "+micromips")
324 IsMicromips = true;
325 else if (Feature == "+dsp")
326 DspRev = std::max(DspRev, DSP1);
327 else if (Feature == "+dspr2")
328 DspRev = std::max(DspRev, DSP2);
329 else if (Feature == "+msa")
330 HasMSA = true;
Stefan Maksimovic76391b12017-08-11 11:03:54 +0000331 else if (Feature == "+nomadd4")
332 DisableMadd4 = true;
Erich Keaneebba5922017-07-21 22:37:03 +0000333 else if (Feature == "+fp64")
Stefan Maksimoviceb632562018-08-22 09:26:25 +0000334 FPMode = FP64;
Erich Keaneebba5922017-07-21 22:37:03 +0000335 else if (Feature == "-fp64")
Stefan Maksimoviceb632562018-08-22 09:26:25 +0000336 FPMode = FP32;
337 else if (Feature == "+fpxx")
338 FPMode = FPXX;
Erich Keaneebba5922017-07-21 22:37:03 +0000339 else if (Feature == "+nan2008")
340 IsNan2008 = true;
341 else if (Feature == "-nan2008")
342 IsNan2008 = false;
Petar Jovanovic50765112017-08-24 16:06:30 +0000343 else if (Feature == "+abs2008")
344 IsAbs2008 = true;
345 else if (Feature == "-abs2008")
346 IsAbs2008 = false;
Erich Keaneebba5922017-07-21 22:37:03 +0000347 else if (Feature == "+noabicalls")
348 IsNoABICalls = true;
Simon Dardis0bc2d9b2018-02-21 00:05:05 +0000349 else if (Feature == "+use-indirect-jump-hazard")
350 UseIndirectJumpHazard = true;
Erich Keaneebba5922017-07-21 22:37:03 +0000351 }
352
353 setDataLayout();
354
355 return true;
356 }
357
358 int getEHDataRegisterNumber(unsigned RegNo) const override {
359 if (RegNo == 0)
360 return 4;
361 if (RegNo == 1)
362 return 5;
363 return -1;
364 }
365
366 bool isCLZForZeroUndef() const override { return false; }
367
368 ArrayRef<TargetInfo::GCCRegAlias> getGCCRegAliases() const override {
369 static const TargetInfo::GCCRegAlias O32RegAliases[] = {
370 {{"at"}, "$1"}, {{"v0"}, "$2"}, {{"v1"}, "$3"},
371 {{"a0"}, "$4"}, {{"a1"}, "$5"}, {{"a2"}, "$6"},
372 {{"a3"}, "$7"}, {{"t0"}, "$8"}, {{"t1"}, "$9"},
373 {{"t2"}, "$10"}, {{"t3"}, "$11"}, {{"t4"}, "$12"},
374 {{"t5"}, "$13"}, {{"t6"}, "$14"}, {{"t7"}, "$15"},
375 {{"s0"}, "$16"}, {{"s1"}, "$17"}, {{"s2"}, "$18"},
376 {{"s3"}, "$19"}, {{"s4"}, "$20"}, {{"s5"}, "$21"},
377 {{"s6"}, "$22"}, {{"s7"}, "$23"}, {{"t8"}, "$24"},
378 {{"t9"}, "$25"}, {{"k0"}, "$26"}, {{"k1"}, "$27"},
379 {{"gp"}, "$28"}, {{"sp", "$sp"}, "$29"}, {{"fp", "$fp"}, "$30"},
380 {{"ra"}, "$31"}
381 };
382 static const TargetInfo::GCCRegAlias NewABIRegAliases[] = {
383 {{"at"}, "$1"}, {{"v0"}, "$2"}, {{"v1"}, "$3"},
384 {{"a0"}, "$4"}, {{"a1"}, "$5"}, {{"a2"}, "$6"},
385 {{"a3"}, "$7"}, {{"a4"}, "$8"}, {{"a5"}, "$9"},
386 {{"a6"}, "$10"}, {{"a7"}, "$11"}, {{"t0"}, "$12"},
387 {{"t1"}, "$13"}, {{"t2"}, "$14"}, {{"t3"}, "$15"},
388 {{"s0"}, "$16"}, {{"s1"}, "$17"}, {{"s2"}, "$18"},
389 {{"s3"}, "$19"}, {{"s4"}, "$20"}, {{"s5"}, "$21"},
390 {{"s6"}, "$22"}, {{"s7"}, "$23"}, {{"t8"}, "$24"},
391 {{"t9"}, "$25"}, {{"k0"}, "$26"}, {{"k1"}, "$27"},
392 {{"gp"}, "$28"}, {{"sp", "$sp"}, "$29"}, {{"fp", "$fp"}, "$30"},
393 {{"ra"}, "$31"}
394 };
395 if (ABI == "o32")
396 return llvm::makeArrayRef(O32RegAliases);
397 return llvm::makeArrayRef(NewABIRegAliases);
398 }
399
Mandeep Singh Grangac24bb52018-02-25 03:58:23 +0000400 bool hasInt128Type() const override {
401 return (ABI == "n32" || ABI == "n64") || getTargetOpts().ForceEnableInt128;
402 }
Erich Keaneebba5922017-07-21 22:37:03 +0000403
Simon Atanasyan4c22a572019-02-13 18:27:09 +0000404 unsigned getUnwindWordWidth() const override;
405
Erich Keaneebba5922017-07-21 22:37:03 +0000406 bool validateTarget(DiagnosticsEngine &Diags) const override;
407};
408} // namespace targets
409} // namespace clang
410
411#endif // LLVM_CLANG_LIB_BASIC_TARGETS_MIPS_H