clang  19.0.0git
Mips.cpp
Go to the documentation of this file.
1 //===--- Mips.cpp - Implement Mips target feature support -----------------===//
2 //
3 // 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
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This file implements Mips TargetInfo objects.
10 //
11 //===----------------------------------------------------------------------===//
12 
13 #include "Mips.h"
14 #include "Targets.h"
15 #include "clang/Basic/Diagnostic.h"
18 #include "llvm/ADT/StringSwitch.h"
19 
20 using namespace clang;
21 using namespace clang::targets;
22 
23 static constexpr Builtin::Info BuiltinInfo[] = {
24 #define BUILTIN(ID, TYPE, ATTRS) \
25  {#ID, TYPE, ATTRS, nullptr, HeaderDesc::NO_HEADER, ALL_LANGUAGES},
26 #define LIBBUILTIN(ID, TYPE, ATTRS, HEADER) \
27  {#ID, TYPE, ATTRS, nullptr, HeaderDesc::HEADER, ALL_LANGUAGES},
28 #include "clang/Basic/BuiltinsMips.def"
29 };
30 
32  return llvm::StringSwitch<bool>(CPU)
33  .Case("mips3", true)
34  .Case("mips4", true)
35  .Case("mips5", true)
36  .Case("mips64", true)
37  .Case("mips64r2", true)
38  .Case("mips64r3", true)
39  .Case("mips64r5", true)
40  .Case("mips64r6", true)
41  .Case("octeon", true)
42  .Case("octeon+", true)
43  .Default(false);
44 }
45 
46 static constexpr llvm::StringLiteral ValidCPUNames[] = {
47  {"mips1"}, {"mips2"}, {"mips3"}, {"mips4"}, {"mips5"},
48  {"mips32"}, {"mips32r2"}, {"mips32r3"}, {"mips32r5"}, {"mips32r6"},
49  {"mips64"}, {"mips64r2"}, {"mips64r3"}, {"mips64r5"}, {"mips64r6"},
50  {"octeon"}, {"octeon+"}, {"p5600"}};
51 
52 bool MipsTargetInfo::isValidCPUName(StringRef Name) const {
53  return llvm::is_contained(ValidCPUNames, Name);
54 }
55 
57  SmallVectorImpl<StringRef> &Values) const {
58  Values.append(std::begin(ValidCPUNames), std::end(ValidCPUNames));
59 }
60 
61 unsigned MipsTargetInfo::getISARev() const {
62  return llvm::StringSwitch<unsigned>(getCPU())
63  .Cases("mips32", "mips64", 1)
64  .Cases("mips32r2", "mips64r2", "octeon", "octeon+", 2)
65  .Cases("mips32r3", "mips64r3", 3)
66  .Cases("mips32r5", "mips64r5", 5)
67  .Cases("mips32r6", "mips64r6", 6)
68  .Default(0);
69 }
70 
72  MacroBuilder &Builder) const {
73  if (BigEndian) {
74  DefineStd(Builder, "MIPSEB", Opts);
75  Builder.defineMacro("_MIPSEB");
76  } else {
77  DefineStd(Builder, "MIPSEL", Opts);
78  Builder.defineMacro("_MIPSEL");
79  }
80 
81  Builder.defineMacro("__mips__");
82  Builder.defineMacro("_mips");
83  if (Opts.GNUMode)
84  Builder.defineMacro("mips");
85 
86  if (ABI == "o32") {
87  Builder.defineMacro("__mips", "32");
88  Builder.defineMacro("_MIPS_ISA", "_MIPS_ISA_MIPS32");
89  } else {
90  Builder.defineMacro("__mips", "64");
91  Builder.defineMacro("__mips64");
92  Builder.defineMacro("__mips64__");
93  Builder.defineMacro("_MIPS_ISA", "_MIPS_ISA_MIPS64");
94  }
95 
96  const std::string ISARev = std::to_string(getISARev());
97 
98  if (!ISARev.empty())
99  Builder.defineMacro("__mips_isa_rev", ISARev);
100 
101  if (ABI == "o32") {
102  Builder.defineMacro("__mips_o32");
103  Builder.defineMacro("_ABIO32", "1");
104  Builder.defineMacro("_MIPS_SIM", "_ABIO32");
105  } else if (ABI == "n32") {
106  Builder.defineMacro("__mips_n32");
107  Builder.defineMacro("_ABIN32", "2");
108  Builder.defineMacro("_MIPS_SIM", "_ABIN32");
109  } else if (ABI == "n64") {
110  Builder.defineMacro("__mips_n64");
111  Builder.defineMacro("_ABI64", "3");
112  Builder.defineMacro("_MIPS_SIM", "_ABI64");
113  } else
114  llvm_unreachable("Invalid ABI.");
115 
116  if (!IsNoABICalls) {
117  Builder.defineMacro("__mips_abicalls");
118  if (CanUseBSDABICalls)
119  Builder.defineMacro("__ABICALLS__");
120  }
121 
122  Builder.defineMacro("__REGISTER_PREFIX__", "");
123 
124  switch (FloatABI) {
125  case HardFloat:
126  Builder.defineMacro("__mips_hard_float", Twine(1));
127  break;
128  case SoftFloat:
129  Builder.defineMacro("__mips_soft_float", Twine(1));
130  break;
131  }
132 
133  if (IsSingleFloat)
134  Builder.defineMacro("__mips_single_float", Twine(1));
135 
136  switch (FPMode) {
137  case FPXX:
138  Builder.defineMacro("__mips_fpr", Twine(0));
139  break;
140  case FP32:
141  Builder.defineMacro("__mips_fpr", Twine(32));
142  break;
143  case FP64:
144  Builder.defineMacro("__mips_fpr", Twine(64));
145  break;
146 }
147 
148  if (FPMode == FP64 || IsSingleFloat)
149  Builder.defineMacro("_MIPS_FPSET", Twine(32));
150  else
151  Builder.defineMacro("_MIPS_FPSET", Twine(16));
152  if (NoOddSpreg)
153  Builder.defineMacro("_MIPS_SPFPSET", Twine(16));
154  else
155  Builder.defineMacro("_MIPS_SPFPSET", Twine(32));
156 
157  if (IsMips16)
158  Builder.defineMacro("__mips16", Twine(1));
159 
160  if (IsMicromips)
161  Builder.defineMacro("__mips_micromips", Twine(1));
162 
163  if (IsNan2008)
164  Builder.defineMacro("__mips_nan2008", Twine(1));
165 
166  if (IsAbs2008)
167  Builder.defineMacro("__mips_abs2008", Twine(1));
168 
169  switch (DspRev) {
170  default:
171  break;
172  case DSP1:
173  Builder.defineMacro("__mips_dsp_rev", Twine(1));
174  Builder.defineMacro("__mips_dsp", Twine(1));
175  break;
176  case DSP2:
177  Builder.defineMacro("__mips_dsp_rev", Twine(2));
178  Builder.defineMacro("__mips_dspr2", Twine(1));
179  Builder.defineMacro("__mips_dsp", Twine(1));
180  break;
181  }
182 
183  if (HasMSA)
184  Builder.defineMacro("__mips_msa", Twine(1));
185 
186  if (DisableMadd4)
187  Builder.defineMacro("__mips_no_madd4", Twine(1));
188 
189  Builder.defineMacro("_MIPS_SZPTR", Twine(getPointerWidth(LangAS::Default)));
190  Builder.defineMacro("_MIPS_SZINT", Twine(getIntWidth()));
191  Builder.defineMacro("_MIPS_SZLONG", Twine(getLongWidth()));
192 
193  Builder.defineMacro("_MIPS_ARCH", "\"" + CPU + "\"");
194  if (CPU == "octeon+")
195  Builder.defineMacro("_MIPS_ARCH_OCTEONP");
196  else
197  Builder.defineMacro("_MIPS_ARCH_" + StringRef(CPU).upper());
198 
199  if (StringRef(CPU).starts_with("octeon"))
200  Builder.defineMacro("__OCTEON__");
201 
202  if (CPU != "mips1") {
203  Builder.defineMacro("__GCC_HAVE_SYNC_COMPARE_AND_SWAP_1");
204  Builder.defineMacro("__GCC_HAVE_SYNC_COMPARE_AND_SWAP_2");
205  Builder.defineMacro("__GCC_HAVE_SYNC_COMPARE_AND_SWAP_4");
206  }
207 
208  // 32-bit MIPS processors don't have the necessary lld/scd instructions
209  // found in 64-bit processors. In the case of O32 on a 64-bit processor,
210  // the instructions exist but using them violates the ABI since they
211  // require 64-bit GPRs and O32 only supports 32-bit GPRs.
212  if (ABI == "n32" || ABI == "n64")
213  Builder.defineMacro("__GCC_HAVE_SYNC_COMPARE_AND_SWAP_8");
214 }
215 
216 bool MipsTargetInfo::hasFeature(StringRef Feature) const {
217  return llvm::StringSwitch<bool>(Feature)
218  .Case("mips", true)
219  .Case("dsp", DspRev >= DSP1)
220  .Case("dspr2", DspRev >= DSP2)
221  .Case("fp64", FPMode == FP64)
222  .Case("msa", HasMSA)
223  .Default(false);
224 }
225 
229 }
230 
232  return llvm::StringSwitch<unsigned>(ABI)
233  .Case("o32", 32)
234  .Case("n32", 64)
235  .Case("n64", 64)
236  .Default(getPointerWidth(LangAS::Default));
237 }
238 
240  // microMIPS64R6 backend was removed.
241  if (getTriple().isMIPS64() && IsMicromips && (ABI == "n32" || ABI == "n64")) {
242  Diags.Report(diag::err_target_unsupported_cpu_for_micromips) << CPU;
243  return false;
244  }
245 
246  // 64-bit ABI's require 64-bit CPU's.
247  if (!processorSupportsGPR64() && (ABI == "n32" || ABI == "n64")) {
248  Diags.Report(diag::err_target_unsupported_abi) << ABI << CPU;
249  return false;
250  }
251 
252  // -fpxx is valid only for the o32 ABI
253  if (FPMode == FPXX && (ABI == "n32" || ABI == "n64")) {
254  Diags.Report(diag::err_unsupported_abi_for_opt) << "-mfpxx" << "o32";
255  return false;
256  }
257 
258  // -mfp32 and n32/n64 ABIs are incompatible
259  if (FPMode != FP64 && FPMode != FPXX && !IsSingleFloat &&
260  (ABI == "n32" || ABI == "n64")) {
261  Diags.Report(diag::err_opt_not_valid_with_opt) << "-mfpxx" << CPU;
262  return false;
263  }
264  // Mips revision 6 and -mfp32 are incompatible
265  if (FPMode != FP64 && FPMode != FPXX && (CPU == "mips32r6" ||
266  CPU == "mips64r6")) {
267  Diags.Report(diag::err_opt_not_valid_with_opt) << "-mfp32" << CPU;
268  return false;
269  }
270  // Option -mfp64 permitted on Mips32 iff revision 2 or higher is present
271  if (FPMode == FP64 && (CPU == "mips1" || CPU == "mips2" ||
272  getISARev() < 2) && ABI == "o32") {
273  Diags.Report(diag::err_mips_fp64_req) << "-mfp64";
274  return false;
275  }
276  // FPXX requires mips2+
277  if (FPMode == FPXX && CPU == "mips1") {
278  Diags.Report(diag::err_opt_not_valid_with_opt) << "-mfpxx" << CPU;
279  return false;
280  }
281  // -mmsa with -msoft-float makes nonsense
282  if (FloatABI == SoftFloat && HasMSA) {
283  Diags.Report(diag::err_opt_not_valid_with_opt) << "-msoft-float"
284  << "-mmsa";
285  return false;
286  }
287  // Option -mmsa permitted on Mips32 iff revision 2 or higher is present
288  if (HasMSA && (CPU == "mips1" || CPU == "mips2" || getISARev() < 2) &&
289  ABI == "o32") {
290  Diags.Report(diag::err_mips_fp64_req) << "-mmsa";
291  return false;
292  }
293  // MSA requires FP64
294  if (FPMode == FPXX && HasMSA) {
295  Diags.Report(diag::err_opt_not_valid_with_opt) << "-mfpxx"
296  << "-mmsa";
297  return false;
298  }
299  if (FPMode == FP32 && HasMSA) {
300  Diags.Report(diag::err_opt_not_valid_with_opt) << "-mfp32"
301  << "-mmsa";
302  return false;
303  }
304 
305  return true;
306 }
Defines the Diagnostic-related interfaces.
static constexpr Builtin::Info BuiltinInfo[]
Definition: Mips.cpp:23
static constexpr llvm::StringLiteral ValidCPUNames[]
Definition: Mips.cpp:46
Defines the clang::MacroBuilder utility class.
Enumerates target-specific builtins in their own namespaces within namespace clang.
Concrete class used by the front-end to report problems and issues.
Definition: Diagnostic.h:193
DiagnosticBuilder Report(SourceLocation Loc, unsigned DiagID)
Issue the message to the client.
Definition: Diagnostic.h:1553
Keeps track of the various options that can be enabled, which controls the dialect of C or C++ that i...
Definition: LangOptions.h:482
uint64_t getPointerWidth(LangAS AddrSpace) const
Return the width of pointers on this target, for the specified address space.
Definition: TargetInfo.h:472
unsigned getIntWidth() const
getIntWidth/Align - Return the size of 'signed int' and 'unsigned int' for this target,...
Definition: TargetInfo.h:509
const llvm::Triple & getTriple() const
Returns the target triple of the primary target.
Definition: TargetInfo.h:1256
unsigned getLongWidth() const
getLongWidth/Align - Return the size of 'signed long' and 'unsigned long' for this target,...
Definition: TargetInfo.h:514
void getTargetDefines(const LangOptions &Opts, MacroBuilder &Builder) const override
===-— Other target property query methods -----------------------—===//
Definition: Mips.cpp:71
enum clang::targets::MipsTargetInfo::FPModeEnum FPMode
void fillValidCPUList(SmallVectorImpl< StringRef > &Values) const override
Fill a SmallVectorImpl with the valid values to setCPU.
Definition: Mips.cpp:56
bool processorSupportsGPR64() const
Definition: Mips.cpp:31
unsigned getUnwindWordWidth() const override
Definition: Mips.cpp:231
ArrayRef< Builtin::Info > getTargetBuiltins() const override
Return information about target-specific builtins for the current primary target, and info about whic...
Definition: Mips.cpp:226
bool isValidCPUName(StringRef Name) const override
Determine whether this TargetInfo supports the given CPU name.
Definition: Mips.cpp:52
const std::string & getCPU() const
Definition: Mips.h:179
unsigned getISARev() const
Definition: Mips.cpp:61
bool hasFeature(StringRef Feature) const override
Determine whether the given target has the given feature.
Definition: Mips.cpp:216
bool validateTarget(DiagnosticsEngine &Diags) const override
Check the target is valid after it is fully initialized.
Definition: Mips.cpp:239
void DefineStd(MacroBuilder &Builder, StringRef MacroName, const LangOptions &Opts)
DefineStd - Define a macro name and standard variants.
Definition: Targets.cpp:60
The JSON file list parser is used to communicate input to InstallAPI.