clang 22.0.0git
ARC.h
Go to the documentation of this file.
1//===--- ARC.h - Declare ARC target feature support -------------*- C++ -*-===//
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 declares ARC TargetInfo objects.
10//
11//===----------------------------------------------------------------------===//
12
13#ifndef LLVM_CLANG_LIB_BASIC_TARGETS_ARC_H
14#define LLVM_CLANG_LIB_BASIC_TARGETS_ARC_H
15
18#include "llvm/Support/Compiler.h"
19#include "llvm/TargetParser/Triple.h"
20
21namespace clang {
22namespace targets {
23
24class LLVM_LIBRARY_VISIBILITY ARCTargetInfo : public TargetInfo {
25public:
26 ARCTargetInfo(const llvm::Triple &Triple, const TargetOptions &)
27 : TargetInfo(Triple) {
28 NoAsmVariants = true;
29 LongLongAlign = 32;
30 SuitableAlign = 32;
37 }
38
39 void getTargetDefines(const LangOptions &Opts,
40 MacroBuilder &Builder) const override;
41
43 return {};
44 }
45
49
50 std::string_view getClobbers() const override { return ""; }
51
53 static const char *const GCCRegNames[] = {
54 "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7",
55 "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15",
56 "r16", "r17", "r18", "r19", "r20", "r21", "r22", "r23",
57 "r24", "r25", "gp", "sp", "fp", "ilink1", "r30", "blink"};
59 }
60
62 return {};
63 }
64
65 bool validateAsmConstraint(const char *&Name,
66 TargetInfo::ConstraintInfo &Info) const override {
67 return false;
68 }
69
70 bool hasBitIntType() const override { return true; }
71
72 bool isCLZForZeroUndef() const override { return false; }
73};
74
75} // namespace targets
76} // namespace clang
77
78#endif // LLVM_CLANG_LIB_BASIC_TARGETS_ARC_H
Defines the clang::TargetOptions class.
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)
BuiltinVaListKind
The different kinds of __builtin_va_list types defined by the target implementation.
Definition TargetInfo.h:333
@ VoidPtrBuiltinVaList
typedef void* __builtin_va_list;
Definition TargetInfo.h:338
void resetDataLayout(StringRef DL)
Set the data layout to the given string.
Options for controlling the target.
bool validateAsmConstraint(const char *&Name, TargetInfo::ConstraintInfo &Info) const override
Definition ARC.h:65
bool isCLZForZeroUndef() const override
The __builtin_clz* and __builtin_ctz* built-in functions are specified to have undefined results for ...
Definition ARC.h:72
ArrayRef< TargetInfo::GCCRegAlias > getGCCRegAliases() const override
Definition ARC.h:61
bool hasBitIntType() const override
Determine whether the _BitInt type is supported on this target.
Definition ARC.h:70
std::string_view getClobbers() const override
Returns a string of target-specific clobbers, in LLVM format.
Definition ARC.h:50
llvm::SmallVector< Builtin::InfosShard > getTargetBuiltins() const override
Return information about target-specific builtins for the current primary target, and info about whic...
Definition ARC.h:42
ArrayRef< const char * > getGCCRegNames() const override
Definition ARC.h:52
ARCTargetInfo(const llvm::Triple &Triple, const TargetOptions &)
Definition ARC.h:26
BuiltinVaListKind getBuiltinVaListKind() const override
Returns the kind of __builtin_va_list type that should be used with this target.
Definition ARC.h:46
Defines the clang::TargetInfo interface.
static const char *const GCCRegNames[]
Definition X86.cpp:73
The JSON file list parser is used to communicate input to InstallAPI.
unsigned UseZeroLengthBitfieldAlignment
Whether zero length bitfields (e.g., int : 0;) force alignment of the next bitfield.
Definition TargetInfo.h:187