1 //===- CSKY.cpp -----------------------------------------------------------===//
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 #include "ABIInfoImpl.h"
10 #include "TargetInfo.h"
11
12 using namespace clang;
13 using namespace clang::CodeGen;
14
15 //===----------------------------------------------------------------------===//
16 // CSKY ABI Implementation
17 //===----------------------------------------------------------------------===//
18 namespace {
19 class CSKYABIInfo : public DefaultABIInfo {
20 static const int NumArgGPRs = 4;
21 static const int NumArgFPRs = 4;
22
23 static const unsigned XLen = 32;
24 unsigned FLen;
25
26 public:
CSKYABIInfo(CodeGen::CodeGenTypes & CGT,unsigned FLen)27 CSKYABIInfo(CodeGen::CodeGenTypes &CGT, unsigned FLen)
28 : DefaultABIInfo(CGT), FLen(FLen) {}
29
30 void computeInfo(CGFunctionInfo &FI) const override;
31 ABIArgInfo classifyArgumentType(QualType Ty, int &ArgGPRsLeft,
32 int &ArgFPRsLeft,
33 bool isReturnType = false) const;
34 ABIArgInfo classifyReturnType(QualType RetTy) const;
35
36 Address EmitVAArg(CodeGenFunction &CGF, Address VAListAddr,
37 QualType Ty) const override;
38 };
39
40 } // end anonymous namespace
41
computeInfo(CGFunctionInfo & FI) const42 void CSKYABIInfo::computeInfo(CGFunctionInfo &FI) const {
43 QualType RetTy = FI.getReturnType();
44 if (!getCXXABI().classifyReturnType(FI))
45 FI.getReturnInfo() = classifyReturnType(RetTy);
46
47 bool IsRetIndirect = FI.getReturnInfo().getKind() == ABIArgInfo::Indirect;
48
49 // We must track the number of GPRs used in order to conform to the CSKY
50 // ABI, as integer scalars passed in registers should have signext/zeroext
51 // when promoted.
52 int ArgGPRsLeft = IsRetIndirect ? NumArgGPRs - 1 : NumArgGPRs;
53 int ArgFPRsLeft = FLen ? NumArgFPRs : 0;
54
55 for (auto &ArgInfo : FI.arguments()) {
56 ArgInfo.info = classifyArgumentType(ArgInfo.type, ArgGPRsLeft, ArgFPRsLeft);
57 }
58 }
59
EmitVAArg(CodeGenFunction & CGF,Address VAListAddr,QualType Ty) const60 Address CSKYABIInfo::EmitVAArg(CodeGenFunction &CGF, Address VAListAddr,
61 QualType Ty) const {
62 CharUnits SlotSize = CharUnits::fromQuantity(XLen / 8);
63
64 // Empty records are ignored for parameter passing purposes.
65 if (isEmptyRecord(getContext(), Ty, true)) {
66 return Address(CGF.Builder.CreateLoad(VAListAddr),
67 CGF.ConvertTypeForMem(Ty), SlotSize);
68 }
69
70 auto TInfo = getContext().getTypeInfoInChars(Ty);
71
72 return emitVoidPtrVAArg(CGF, VAListAddr, Ty, false, TInfo, SlotSize,
73 /*AllowHigherAlign=*/true);
74 }
75
classifyArgumentType(QualType Ty,int & ArgGPRsLeft,int & ArgFPRsLeft,bool isReturnType) const76 ABIArgInfo CSKYABIInfo::classifyArgumentType(QualType Ty, int &ArgGPRsLeft,
77 int &ArgFPRsLeft,
78 bool isReturnType) const {
79 assert(ArgGPRsLeft <= NumArgGPRs && "Arg GPR tracking underflow");
80 Ty = useFirstFieldIfTransparentUnion(Ty);
81
82 // Structures with either a non-trivial destructor or a non-trivial
83 // copy constructor are always passed indirectly.
84 if (CGCXXABI::RecordArgABI RAA = getRecordArgABI(Ty, getCXXABI())) {
85 if (ArgGPRsLeft)
86 ArgGPRsLeft -= 1;
87 return getNaturalAlignIndirect(Ty, /*ByVal=*/RAA ==
88 CGCXXABI::RAA_DirectInMemory);
89 }
90
91 // Ignore empty structs/unions.
92 if (isEmptyRecord(getContext(), Ty, true))
93 return ABIArgInfo::getIgnore();
94
95 if (!Ty->getAsUnionType())
96 if (const Type *SeltTy = isSingleElementStruct(Ty, getContext()))
97 return ABIArgInfo::getDirect(CGT.ConvertType(QualType(SeltTy, 0)));
98
99 uint64_t Size = getContext().getTypeSize(Ty);
100 // Pass floating point values via FPRs if possible.
101 if (Ty->isFloatingType() && !Ty->isComplexType() && FLen >= Size &&
102 ArgFPRsLeft) {
103 ArgFPRsLeft--;
104 return ABIArgInfo::getDirect();
105 }
106
107 // Complex types for the hard float ABI must be passed direct rather than
108 // using CoerceAndExpand.
109 if (Ty->isComplexType() && FLen && !isReturnType) {
110 QualType EltTy = Ty->castAs<ComplexType>()->getElementType();
111 if (getContext().getTypeSize(EltTy) <= FLen) {
112 ArgFPRsLeft -= 2;
113 return ABIArgInfo::getDirect();
114 }
115 }
116
117 if (!isAggregateTypeForABI(Ty)) {
118 // Treat an enum type as its underlying type.
119 if (const EnumType *EnumTy = Ty->getAs<EnumType>())
120 Ty = EnumTy->getDecl()->getIntegerType();
121
122 // All integral types are promoted to XLen width, unless passed on the
123 // stack.
124 if (Size < XLen && Ty->isIntegralOrEnumerationType())
125 return ABIArgInfo::getExtend(Ty);
126
127 if (const auto *EIT = Ty->getAs<BitIntType>()) {
128 if (EIT->getNumBits() < XLen)
129 return ABIArgInfo::getExtend(Ty);
130 }
131
132 return ABIArgInfo::getDirect();
133 }
134
135 // For argument type, the first 4*XLen parts of aggregate will be passed
136 // in registers, and the rest will be passed in stack.
137 // So we can coerce to integers directly and let backend handle it correctly.
138 // For return type, aggregate which <= 2*XLen will be returned in registers.
139 // Otherwise, aggregate will be returned indirectly.
140 if (!isReturnType || (isReturnType && Size <= 2 * XLen)) {
141 if (Size <= XLen) {
142 return ABIArgInfo::getDirect(
143 llvm::IntegerType::get(getVMContext(), XLen));
144 } else {
145 return ABIArgInfo::getDirect(llvm::ArrayType::get(
146 llvm::IntegerType::get(getVMContext(), XLen), (Size + 31) / XLen));
147 }
148 }
149 return getNaturalAlignIndirect(Ty, /*ByVal=*/false);
150 }
151
classifyReturnType(QualType RetTy) const152 ABIArgInfo CSKYABIInfo::classifyReturnType(QualType RetTy) const {
153 if (RetTy->isVoidType())
154 return ABIArgInfo::getIgnore();
155
156 int ArgGPRsLeft = 2;
157 int ArgFPRsLeft = FLen ? 1 : 0;
158
159 // The rules for return and argument types are the same, so defer to
160 // classifyArgumentType.
161 return classifyArgumentType(RetTy, ArgGPRsLeft, ArgFPRsLeft, true);
162 }
163
164 namespace {
165 class CSKYTargetCodeGenInfo : public TargetCodeGenInfo {
166 public:
CSKYTargetCodeGenInfo(CodeGen::CodeGenTypes & CGT,unsigned FLen)167 CSKYTargetCodeGenInfo(CodeGen::CodeGenTypes &CGT, unsigned FLen)
168 : TargetCodeGenInfo(std::make_unique<CSKYABIInfo>(CGT, FLen)) {}
169 };
170 } // end anonymous namespace
171
172 std::unique_ptr<TargetCodeGenInfo>
createCSKYTargetCodeGenInfo(CodeGenModule & CGM,unsigned FLen)173 CodeGen::createCSKYTargetCodeGenInfo(CodeGenModule &CGM, unsigned FLen) {
174 return std::make_unique<CSKYTargetCodeGenInfo>(CGM.getTypes(), FLen);
175 }
176