clang 24.0.0git
M68k.cpp
Go to the documentation of this file.
1//===--- M68k.cpp - Implement M68k targets 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 M68k TargetInfo objects.
10//
11//===----------------------------------------------------------------------===//
12
13#include "M68k.h"
16#include "llvm/ADT/StringRef.h"
17#include "llvm/ADT/StringSwitch.h"
18#include "llvm/TargetParser/TargetParser.h"
19#include <cstdint>
20#include <cstring>
21#include <limits>
22#include <optional>
23
24namespace clang {
25namespace targets {
26
27// Linux/m68k ("old") uses the ABI from Sun Microsystems a.out
28// for m68k, and uses 16-bit alignments for int/long/pointers.
29//
30// NetBSD/m68k uses the ABI from SVR4 for m68k,
31// which uses 32-bit alignments for int/long/pointers.
32//
33// Ref. https://github.com/M680x0/issues/issues/13 and
34// https://github.com/llvm/llvm-project/issues/199826
35//
36// Arguably this ought to respect -malign-int, as suggested
37// above, this code doesn't so far.
38
39M68kTargetInfo::M68kTargetInfo(const llvm::Triple &Triple,
40 const TargetOptions &Opts)
41 : TargetInfo(Triple), TargetOpts(Opts) {
43
47 if (getTriple().isOSNetBSD()) {
49 } else {
51 }
52}
53
54bool M68kTargetInfo::setCPU(StringRef Name) {
55 CPU = llvm::StringSwitch<CPUKind>(Name)
56 .Case("generic", CK_68000)
57 .Case("M68000", CK_68000)
58 .Case("M68010", CK_68010)
59 .Case("M68020", CK_68020)
60 .Case("M68030", CK_68030)
61 .Case("M68040", CK_68040)
62 .Case("M68060", CK_68060)
63 .Default(CK_Unknown);
64 return CPU != CK_Unknown;
65}
66
68 MacroBuilder &Builder) const {
69 using llvm::Twine;
70
71 Builder.defineMacro("__m68k__");
72
73 DefineStd(Builder, "mc68000", Opts);
74
75 // For sub-architecture
76 switch (CPU) {
77 case CK_68010:
78 DefineStd(Builder, "mc68010", Opts);
79 break;
80 case CK_68020:
81 DefineStd(Builder, "mc68020", Opts);
82 break;
83 case CK_68030:
84 DefineStd(Builder, "mc68030", Opts);
85 break;
86 case CK_68040:
87 DefineStd(Builder, "mc68040", Opts);
88 break;
89 case CK_68060:
90 DefineStd(Builder, "mc68060", Opts);
91 break;
92 default:
93 break;
94 }
95
96 if (CPU >= CK_68020) {
97 Builder.defineMacro("__GCC_HAVE_SYNC_COMPARE_AND_SWAP_1");
98 Builder.defineMacro("__GCC_HAVE_SYNC_COMPARE_AND_SWAP_2");
99 Builder.defineMacro("__GCC_HAVE_SYNC_COMPARE_AND_SWAP_4");
100 }
101
102 // Floating point
103 if (TargetOpts.FeatureMap.lookup("isa-68881") ||
104 TargetOpts.FeatureMap.lookup("isa-68882"))
105 Builder.defineMacro("__HAVE_68881__");
106}
107
110 // FIXME: Implement.
111 return {};
112}
113
114bool M68kTargetInfo::hasFeature(StringRef Feature) const {
115 // FIXME elaborate moar
116 return Feature == "M68000";
117}
118
119const char *const M68kTargetInfo::GCCRegNames[] = {
120 "d0", "d1", "d2", "d3", "d4", "d5", "d6", "d7",
121 "a0", "a1", "a2", "a3", "a4", "a5", "a6", "sp",
122 "pc"};
123
127
128const TargetInfo::GCCRegAlias M68kTargetInfo::GCCRegAliases[] = {
129 {{"bp"}, "a5"},
130 {{"fp"}, "a6"},
131 {{"usp", "ssp", "isp", "a7"}, "sp"},
132};
133
137
139 const char *&Name, TargetInfo::ConstraintInfo &info) const {
140 switch (*Name) {
141 case 'a': // address register
142 case 'd': // data register
143 info.setAllowsRegister();
144 return true;
145 case 'I': // constant integer in the range [1,8]
146 info.setRequiresImmediate(1, 8);
147 return true;
148 case 'J': // constant signed 16-bit integer
149 info.setRequiresImmediate(std::numeric_limits<int16_t>::min(),
150 std::numeric_limits<int16_t>::max());
151 return true;
152 case 'K': // constant that is NOT in the range of [-0x80, 0x80)
153 info.setRequiresImmediate();
154 return true;
155 case 'L': // constant integer in the range [-8,-1]
156 info.setRequiresImmediate(-8, -1);
157 return true;
158 case 'M': // constant that is NOT in the range of [-0x100, 0x100]
159 info.setRequiresImmediate();
160 return true;
161 case 'N': // constant integer in the range [24,31]
162 info.setRequiresImmediate(24, 31);
163 return true;
164 case 'O': // constant integer 16
165 info.setRequiresImmediate(16);
166 return true;
167 case 'P': // constant integer in the range [8,15]
168 info.setRequiresImmediate(8, 15);
169 return true;
170 case 'C':
171 ++Name;
172 switch (*Name) {
173 case '0': // constant integer 0
174 info.setRequiresImmediate(0);
175 return true;
176 case 'i': // constant integer
177 case 'j': // integer constant that doesn't fit in 16 bits
178 info.setRequiresImmediate();
179 return true;
180 default:
181 break;
182 }
183 break;
184 case 'Q': // address register indirect addressing
185 case 'U': // address register indirect w/ constant offset addressing
186 // TODO: Handle 'S' (basically 'm' when pc-rel is enforced) when
187 // '-mpcrel' flag is properly handled by the driver.
188 info.setAllowsMemory();
189 return true;
190 default:
191 break;
192 }
193 return false;
194}
195
196std::optional<std::string>
198 char C;
199 switch (EscChar) {
200 case '.':
201 case '#':
202 C = EscChar;
203 break;
204 case '/':
205 C = '%';
206 break;
207 case '$':
208 C = 's';
209 break;
210 case '&':
211 C = 'd';
212 break;
213 default:
214 return std::nullopt;
215 }
216
217 return std::string(1, C);
218}
219
220std::string M68kTargetInfo::convertConstraint(const char *&Constraint) const {
221 if (*Constraint == 'C')
222 // Two-character constraint; add "^" hint for later parsing
223 return std::string("^") + std::string(Constraint++, 2);
224
225 return std::string(1, *Constraint);
226}
227
228std::string_view M68kTargetInfo::getClobbers() const {
229 // FIXME: Is this really right?
230 return "";
231}
232
236
239 switch (CC) {
240 case CC_C:
241 case CC_M68kRTD:
242 return CCCR_OK;
243 default:
245 }
246}
247} // namespace targets
248} // namespace clang
Defines the Diagnostic-related interfaces.
Defines enum values for all the target-independent builtin functions.
Keeps track of the various options that can be enabled, which controls the dialect of C or C++ that i...
TargetInfo(const llvm::Triple &T)
const llvm::Triple & getTriple() const
Returns the target triple of the primary target.
BuiltinVaListKind
The different kinds of __builtin_va_list types defined by the target implementation.
Definition TargetInfo.h:339
@ VoidPtrBuiltinVaList
typedef void* __builtin_va_list;
Definition TargetInfo.h:344
virtual CallingConvCheckResult checkCallingConvention(CallingConv CC) const
Determines whether a given calling convention is valid for the target.
void resetDataLayout()
Set the data layout based on current triple and ABI.
Options for controlling the target.
std::string convertConstraint(const char *&Constraint) const override
Definition M68k.cpp:220
bool hasFeature(StringRef Feature) const override
Determine whether the given target has the given feature.
Definition M68k.cpp:114
std::optional< std::string > handleAsmEscapedChar(char EscChar) const override
Replace some escaped characters with another string based on target-specific rules.
Definition M68k.cpp:197
BuiltinVaListKind getBuiltinVaListKind() const override
Returns the kind of __builtin_va_list type that should be used with this target.
Definition M68k.cpp:233
M68kTargetInfo(const llvm::Triple &Triple, const TargetOptions &)
Definition M68k.cpp:39
CallingConvCheckResult checkCallingConvention(CallingConv CC) const override
Determines whether a given calling convention is valid for the target.
Definition M68k.cpp:238
void getTargetDefines(const LangOptions &Opts, MacroBuilder &Builder) const override
===-— Other target property query methods -----------------------—===//
Definition M68k.cpp:67
bool setCPU(StringRef Name) override
Target the specified CPU.
Definition M68k.cpp:54
std::string_view getClobbers() const override
Returns a string of target-specific clobbers, in LLVM format.
Definition M68k.cpp:228
ArrayRef< TargetInfo::GCCRegAlias > getGCCRegAliases() const override
Definition M68k.cpp:134
ArrayRef< const char * > getGCCRegNames() const override
Definition M68k.cpp:124
bool validateAsmConstraint(const char *&Name, TargetInfo::ConstraintInfo &info) const override
Definition M68k.cpp:138
llvm::SmallVector< Builtin::InfosShard > getTargetBuiltins() const override
Return information about target-specific builtins for the current primary target, and info about whic...
Definition M68k.cpp:109
LLVM_LIBRARY_VISIBILITY void DefineStd(clang::MacroBuilder &Builder, llvm::StringRef MacroName, const clang::LangOptions &Opts)
Define a macro name and standard variants.
Top level wrappers for InstallAPI frontend operations.
CallingConv
CallingConv - Specifies the calling convention that a function uses.
Definition Specifiers.h:279
@ CC_M68kRTD
Definition Specifiers.h:299