1 //===--- RISCV.h - Declare RISCV 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 RISCV TargetInfo objects.
10 //
11 //===----------------------------------------------------------------------===//
12 
13 #ifndef LLVM_CLANG_LIB_BASIC_TARGETS_RISCV_H
14 #define LLVM_CLANG_LIB_BASIC_TARGETS_RISCV_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 #include "llvm/Support/RISCVISAInfo.h"
21 
22 namespace clang {
23 namespace targets {
24 
25 // RISC-V Target
26 class RISCVTargetInfo : public TargetInfo {
27 protected:
28   std::string ABI, CPU;
29   std::unique_ptr<llvm::RISCVISAInfo> ISAInfo;
30   static const Builtin::Info BuiltinInfo[];
31 
32 public:
33   RISCVTargetInfo(const llvm::Triple &Triple, const TargetOptions &)
34       : TargetInfo(Triple) {
35     LongDoubleWidth = 128;
36     LongDoubleAlign = 128;
37     LongDoubleFormat = &llvm::APFloat::IEEEquad();
38     SuitableAlign = 128;
39     WCharType = SignedInt;
40     WIntType = UnsignedInt;
41     HasRISCVVTypes = true;
42     MCountName = "_mcount";
43     HasFloat16 = true;
44   }
45 
46   bool setCPU(const std::string &Name) override {
47     if (!isValidCPUName(Name))
48       return false;
49     CPU = Name;
50     return true;
51   }
52 
53   StringRef getABI() const override { return ABI; }
54   void getTargetDefines(const LangOptions &Opts,
55                         MacroBuilder &Builder) const override;
56 
57   ArrayRef<Builtin::Info> getTargetBuiltins() const override;
58 
59   BuiltinVaListKind getBuiltinVaListKind() const override {
60     return TargetInfo::VoidPtrBuiltinVaList;
61   }
62 
63   const char *getClobbers() const override { return ""; }
64 
65   StringRef getConstraintRegister(StringRef Constraint,
66                                   StringRef Expression) const override {
67     return Expression;
68   }
69 
70   ArrayRef<const char *> getGCCRegNames() const override;
71 
72   int getEHDataRegisterNumber(unsigned RegNo) const override {
73     if (RegNo == 0)
74       return 10;
75     else if (RegNo == 1)
76       return 11;
77     else
78       return -1;
79   }
80 
81   ArrayRef<TargetInfo::GCCRegAlias> getGCCRegAliases() const override;
82 
83   bool validateAsmConstraint(const char *&Name,
84                              TargetInfo::ConstraintInfo &Info) const override;
85 
86   std::string convertConstraint(const char *&Constraint) const override;
87 
88   bool
89   initFeatureMap(llvm::StringMap<bool> &Features, DiagnosticsEngine &Diags,
90                  StringRef CPU,
91                  const std::vector<std::string> &FeaturesVec) const override;
92 
93   bool hasFeature(StringRef Feature) const override;
94 
95   bool handleTargetFeatures(std::vector<std::string> &Features,
96                             DiagnosticsEngine &Diags) override;
97 
98   bool hasBitIntType() const override { return true; }
99 };
100 class LLVM_LIBRARY_VISIBILITY RISCV32TargetInfo : public RISCVTargetInfo {
101 public:
102   RISCV32TargetInfo(const llvm::Triple &Triple, const TargetOptions &Opts)
103       : RISCVTargetInfo(Triple, Opts) {
104     IntPtrType = SignedInt;
105     PtrDiffType = SignedInt;
106     SizeType = UnsignedInt;
107     resetDataLayout("e-m:e-p:32:32-i64:64-n32-S128");
108   }
109 
110   bool setABI(const std::string &Name) override {
111     if (Name == "ilp32" || Name == "ilp32f" || Name == "ilp32d") {
112       ABI = Name;
113       return true;
114     }
115     return false;
116   }
117 
118   bool isValidCPUName(StringRef Name) const override;
119   void fillValidCPUList(SmallVectorImpl<StringRef> &Values) const override;
120   bool isValidTuneCPUName(StringRef Name) const override;
121   void fillValidTuneCPUList(SmallVectorImpl<StringRef> &Values) const override;
122 
123   void setMaxAtomicWidth() override {
124     MaxAtomicPromoteWidth = 128;
125 
126     if (ISAInfo->hasExtension("a"))
127       MaxAtomicInlineWidth = 32;
128   }
129 };
130 class LLVM_LIBRARY_VISIBILITY RISCV64TargetInfo : public RISCVTargetInfo {
131 public:
132   RISCV64TargetInfo(const llvm::Triple &Triple, const TargetOptions &Opts)
133       : RISCVTargetInfo(Triple, Opts) {
134     LongWidth = LongAlign = PointerWidth = PointerAlign = 64;
135     IntMaxType = Int64Type = SignedLong;
136     resetDataLayout("e-m:e-p:64:64-i64:64-i128:128-n64-S128");
137   }
138 
139   bool setABI(const std::string &Name) override {
140     if (Name == "lp64" || Name == "lp64f" || Name == "lp64d") {
141       ABI = Name;
142       return true;
143     }
144     return false;
145   }
146 
147   bool isValidCPUName(StringRef Name) const override;
148   void fillValidCPUList(SmallVectorImpl<StringRef> &Values) const override;
149   bool isValidTuneCPUName(StringRef Name) const override;
150   void fillValidTuneCPUList(SmallVectorImpl<StringRef> &Values) const override;
151 
152   void setMaxAtomicWidth() override {
153     MaxAtomicPromoteWidth = 128;
154 
155     if (ISAInfo->hasExtension("a"))
156       MaxAtomicInlineWidth = 64;
157   }
158 };
159 } // namespace targets
160 } // namespace clang
161 
162 #endif // LLVM_CLANG_LIB_BASIC_TARGETS_RISCV_H
163