blob: 524c5b332f9d7345cc356cb37eec295b9156475a [file] [log] [blame]
Anton Korobeynikov82d0a412010-01-10 12:58:08 +00001//===---- TargetInfo.cpp - Encapsulate target details -----------*- C++ -*-===//
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// These classes wrap the information about a call or function
11// definition used to handle ABI compliancy.
12//
13//===----------------------------------------------------------------------===//
14
Anton Korobeynikov82d0a412010-01-10 12:58:08 +000015#include "TargetInfo.h"
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +000016#include "ABIInfo.h"
17#include "CodeGenFunction.h"
Anders Carlsson19cc4ab2009-07-18 19:43:29 +000018#include "clang/AST/RecordLayout.h"
Sandeep Patel34c1af82011-04-05 00:23:47 +000019#include "clang/Frontend/CodeGenOptions.h"
Daniel Dunbar2c0843f2009-08-24 08:52:16 +000020#include "llvm/ADT/Triple.h"
Chandler Carruth3b844ba2013-01-02 11:45:17 +000021#include "llvm/IR/DataLayout.h"
22#include "llvm/IR/Type.h"
Daniel Dunbar28df7a52009-12-03 09:13:49 +000023#include "llvm/Support/raw_ostream.h"
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +000024using namespace clang;
25using namespace CodeGen;
26
John McCallaeeb7012010-05-27 06:19:26 +000027static void AssignToArrayRange(CodeGen::CGBuilderTy &Builder,
28 llvm::Value *Array,
29 llvm::Value *Value,
30 unsigned FirstIndex,
31 unsigned LastIndex) {
32 // Alternatively, we could emit this as a loop in the source.
33 for (unsigned I = FirstIndex; I <= LastIndex; ++I) {
34 llvm::Value *Cell = Builder.CreateConstInBoundsGEP1_32(Array, I);
35 Builder.CreateStore(Value, Cell);
36 }
37}
38
John McCalld608cdb2010-08-22 10:59:02 +000039static bool isAggregateTypeForABI(QualType T) {
John McCall9d232c82013-03-07 21:37:08 +000040 return !CodeGenFunction::hasScalarEvaluationKind(T) ||
John McCalld608cdb2010-08-22 10:59:02 +000041 T->isMemberFunctionPointerType();
42}
43
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +000044ABIInfo::~ABIInfo() {}
45
Chris Lattnerea044322010-07-29 02:01:43 +000046ASTContext &ABIInfo::getContext() const {
47 return CGT.getContext();
48}
49
50llvm::LLVMContext &ABIInfo::getVMContext() const {
51 return CGT.getLLVMContext();
52}
53
Micah Villmow25a6a842012-10-08 16:25:52 +000054const llvm::DataLayout &ABIInfo::getDataLayout() const {
55 return CGT.getDataLayout();
Chris Lattnerea044322010-07-29 02:01:43 +000056}
57
58
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +000059void ABIArgInfo::dump() const {
Chris Lattner5f9e2722011-07-23 10:55:15 +000060 raw_ostream &OS = llvm::errs();
Daniel Dunbar28df7a52009-12-03 09:13:49 +000061 OS << "(ABIArgInfo Kind=";
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +000062 switch (TheKind) {
63 case Direct:
Chris Lattner800588f2010-07-29 06:26:06 +000064 OS << "Direct Type=";
Chris Lattner2acc6e32011-07-18 04:24:23 +000065 if (llvm::Type *Ty = getCoerceToType())
Chris Lattner800588f2010-07-29 06:26:06 +000066 Ty->print(OS);
67 else
68 OS << "null";
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +000069 break;
Anton Korobeynikovcc6fa882009-06-06 09:36:29 +000070 case Extend:
Daniel Dunbar28df7a52009-12-03 09:13:49 +000071 OS << "Extend";
Anton Korobeynikovcc6fa882009-06-06 09:36:29 +000072 break;
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +000073 case Ignore:
Daniel Dunbar28df7a52009-12-03 09:13:49 +000074 OS << "Ignore";
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +000075 break;
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +000076 case Indirect:
Daniel Dunbardc6d5742010-04-21 19:10:51 +000077 OS << "Indirect Align=" << getIndirectAlign()
Joerg Sonnenbergere9b5d772011-07-15 18:23:44 +000078 << " ByVal=" << getIndirectByVal()
Daniel Dunbarcf3b6f22010-09-16 20:42:02 +000079 << " Realign=" << getIndirectRealign();
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +000080 break;
81 case Expand:
Daniel Dunbar28df7a52009-12-03 09:13:49 +000082 OS << "Expand";
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +000083 break;
84 }
Daniel Dunbar28df7a52009-12-03 09:13:49 +000085 OS << ")\n";
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +000086}
87
Anton Korobeynikov82d0a412010-01-10 12:58:08 +000088TargetCodeGenInfo::~TargetCodeGenInfo() { delete Info; }
89
John McCall49e34be2011-08-30 01:42:09 +000090// If someone can figure out a general rule for this, that would be great.
91// It's probably just doomed to be platform-dependent, though.
92unsigned TargetCodeGenInfo::getSizeOfUnwindException() const {
93 // Verified for:
94 // x86-64 FreeBSD, Linux, Darwin
95 // x86-32 FreeBSD, Linux, Darwin
96 // PowerPC Linux, Darwin
97 // ARM Darwin (*not* EABI)
Tim Northoverc264e162013-01-31 12:13:10 +000098 // AArch64 Linux
John McCall49e34be2011-08-30 01:42:09 +000099 return 32;
100}
101
John McCallde5d3c72012-02-17 03:33:10 +0000102bool TargetCodeGenInfo::isNoProtoCallVariadic(const CallArgList &args,
103 const FunctionNoProtoType *fnType) const {
John McCall01f151e2011-09-21 08:08:30 +0000104 // The following conventions are known to require this to be false:
105 // x86_stdcall
106 // MIPS
107 // For everything else, we just prefer false unless we opt out.
108 return false;
109}
110
Daniel Dunbar98303b92009-09-13 08:03:58 +0000111static bool isEmptyRecord(ASTContext &Context, QualType T, bool AllowArrays);
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000112
Sylvestre Ledruf3477c12012-09-27 10:16:10 +0000113/// isEmptyField - Return true iff a the field is "empty", that is it
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000114/// is an unnamed bit-field or an (array of) empty record(s).
Daniel Dunbar98303b92009-09-13 08:03:58 +0000115static bool isEmptyField(ASTContext &Context, const FieldDecl *FD,
116 bool AllowArrays) {
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000117 if (FD->isUnnamedBitfield())
118 return true;
119
120 QualType FT = FD->getType();
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000121
Eli Friedman7e7ad3f2011-11-18 03:47:20 +0000122 // Constant arrays of empty records count as empty, strip them off.
123 // Constant arrays of zero length always count as empty.
Daniel Dunbar98303b92009-09-13 08:03:58 +0000124 if (AllowArrays)
Eli Friedman7e7ad3f2011-11-18 03:47:20 +0000125 while (const ConstantArrayType *AT = Context.getAsConstantArrayType(FT)) {
126 if (AT->getSize() == 0)
127 return true;
Daniel Dunbar98303b92009-09-13 08:03:58 +0000128 FT = AT->getElementType();
Eli Friedman7e7ad3f2011-11-18 03:47:20 +0000129 }
Daniel Dunbar98303b92009-09-13 08:03:58 +0000130
Daniel Dunbar5ea68612010-05-17 16:46:00 +0000131 const RecordType *RT = FT->getAs<RecordType>();
132 if (!RT)
133 return false;
134
135 // C++ record fields are never empty, at least in the Itanium ABI.
136 //
137 // FIXME: We should use a predicate for whether this behavior is true in the
138 // current ABI.
139 if (isa<CXXRecordDecl>(RT->getDecl()))
140 return false;
141
Daniel Dunbar98303b92009-09-13 08:03:58 +0000142 return isEmptyRecord(Context, FT, AllowArrays);
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000143}
144
Sylvestre Ledruf3477c12012-09-27 10:16:10 +0000145/// isEmptyRecord - Return true iff a structure contains only empty
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000146/// fields. Note that a structure with a flexible array member is not
147/// considered empty.
Daniel Dunbar98303b92009-09-13 08:03:58 +0000148static bool isEmptyRecord(ASTContext &Context, QualType T, bool AllowArrays) {
Ted Kremenek6217b802009-07-29 21:53:49 +0000149 const RecordType *RT = T->getAs<RecordType>();
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000150 if (!RT)
151 return 0;
152 const RecordDecl *RD = RT->getDecl();
153 if (RD->hasFlexibleArrayMember())
154 return false;
Daniel Dunbar5ea68612010-05-17 16:46:00 +0000155
Argyrios Kyrtzidisc5f18f32011-05-17 02:17:52 +0000156 // If this is a C++ record, check the bases first.
Daniel Dunbar5ea68612010-05-17 16:46:00 +0000157 if (const CXXRecordDecl *CXXRD = dyn_cast<CXXRecordDecl>(RD))
Argyrios Kyrtzidisc5f18f32011-05-17 02:17:52 +0000158 for (CXXRecordDecl::base_class_const_iterator i = CXXRD->bases_begin(),
159 e = CXXRD->bases_end(); i != e; ++i)
160 if (!isEmptyRecord(Context, i->getType(), true))
161 return false;
Daniel Dunbar5ea68612010-05-17 16:46:00 +0000162
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000163 for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end();
164 i != e; ++i)
David Blaikie581deb32012-06-06 20:45:41 +0000165 if (!isEmptyField(Context, *i, AllowArrays))
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000166 return false;
167 return true;
168}
169
Anders Carlsson0a8f8472009-09-16 15:53:40 +0000170/// hasNonTrivialDestructorOrCopyConstructor - Determine if a type has either
171/// a non-trivial destructor or a non-trivial copy constructor.
172static bool hasNonTrivialDestructorOrCopyConstructor(const RecordType *RT) {
173 const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(RT->getDecl());
174 if (!RD)
175 return false;
Michael J. Spencer8bea82f2010-08-25 18:17:27 +0000176
Richard Smith426391c2012-11-16 00:53:38 +0000177 return !RD->hasTrivialDestructor() || RD->hasNonTrivialCopyConstructor();
Anders Carlsson0a8f8472009-09-16 15:53:40 +0000178}
179
180/// isRecordWithNonTrivialDestructorOrCopyConstructor - Determine if a type is
181/// a record type with either a non-trivial destructor or a non-trivial copy
182/// constructor.
183static bool isRecordWithNonTrivialDestructorOrCopyConstructor(QualType T) {
184 const RecordType *RT = T->getAs<RecordType>();
185 if (!RT)
186 return false;
187
188 return hasNonTrivialDestructorOrCopyConstructor(RT);
189}
190
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000191/// isSingleElementStruct - Determine if a structure is a "single
192/// element struct", i.e. it has exactly one non-empty field or
193/// exactly one field which is itself a single element
194/// struct. Structures with flexible array members are never
195/// considered single element structs.
196///
197/// \return The field declaration for the single non-empty field, if
198/// it exists.
199static const Type *isSingleElementStruct(QualType T, ASTContext &Context) {
200 const RecordType *RT = T->getAsStructureType();
201 if (!RT)
202 return 0;
203
204 const RecordDecl *RD = RT->getDecl();
205 if (RD->hasFlexibleArrayMember())
206 return 0;
207
208 const Type *Found = 0;
Michael J. Spencer8bea82f2010-08-25 18:17:27 +0000209
Daniel Dunbar9430d5a2010-05-11 21:15:36 +0000210 // If this is a C++ record, check the bases first.
211 if (const CXXRecordDecl *CXXRD = dyn_cast<CXXRecordDecl>(RD)) {
212 for (CXXRecordDecl::base_class_const_iterator i = CXXRD->bases_begin(),
213 e = CXXRD->bases_end(); i != e; ++i) {
Daniel Dunbar9430d5a2010-05-11 21:15:36 +0000214 // Ignore empty records.
Daniel Dunbar5ea68612010-05-17 16:46:00 +0000215 if (isEmptyRecord(Context, i->getType(), true))
Daniel Dunbar9430d5a2010-05-11 21:15:36 +0000216 continue;
217
218 // If we already found an element then this isn't a single-element struct.
219 if (Found)
220 return 0;
221
222 // If this is non-empty and not a single element struct, the composite
223 // cannot be a single element struct.
224 Found = isSingleElementStruct(i->getType(), Context);
225 if (!Found)
226 return 0;
227 }
228 }
229
230 // Check for single element.
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000231 for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end();
232 i != e; ++i) {
David Blaikie581deb32012-06-06 20:45:41 +0000233 const FieldDecl *FD = *i;
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000234 QualType FT = FD->getType();
235
236 // Ignore empty fields.
Daniel Dunbar98303b92009-09-13 08:03:58 +0000237 if (isEmptyField(Context, FD, true))
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000238 continue;
239
240 // If we already found an element then this isn't a single-element
241 // struct.
242 if (Found)
243 return 0;
244
245 // Treat single element arrays as the element.
246 while (const ConstantArrayType *AT = Context.getAsConstantArrayType(FT)) {
247 if (AT->getSize().getZExtValue() != 1)
248 break;
249 FT = AT->getElementType();
250 }
251
John McCalld608cdb2010-08-22 10:59:02 +0000252 if (!isAggregateTypeForABI(FT)) {
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000253 Found = FT.getTypePtr();
254 } else {
255 Found = isSingleElementStruct(FT, Context);
256 if (!Found)
257 return 0;
258 }
259 }
260
Eli Friedmanbd4d3bc2011-11-18 01:25:50 +0000261 // We don't consider a struct a single-element struct if it has
262 // padding beyond the element type.
263 if (Found && Context.getTypeSize(Found) != Context.getTypeSize(T))
264 return 0;
265
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000266 return Found;
267}
268
269static bool is32Or64BitBasicType(QualType Ty, ASTContext &Context) {
Eli Friedmandb748a32012-11-29 23:21:04 +0000270 // Treat complex types as the element type.
271 if (const ComplexType *CTy = Ty->getAs<ComplexType>())
272 Ty = CTy->getElementType();
273
274 // Check for a type which we know has a simple scalar argument-passing
275 // convention without any padding. (We're specifically looking for 32
276 // and 64-bit integer and integer-equivalents, float, and double.)
Daniel Dunbara1842d32010-05-14 03:40:53 +0000277 if (!Ty->getAs<BuiltinType>() && !Ty->hasPointerRepresentation() &&
Eli Friedmandb748a32012-11-29 23:21:04 +0000278 !Ty->isEnumeralType() && !Ty->isBlockPointerType())
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000279 return false;
280
281 uint64_t Size = Context.getTypeSize(Ty);
282 return Size == 32 || Size == 64;
283}
284
Daniel Dunbar53012f42009-11-09 01:33:53 +0000285/// canExpandIndirectArgument - Test whether an argument type which is to be
286/// passed indirectly (on the stack) would have the equivalent layout if it was
287/// expanded into separate arguments. If so, we prefer to do the latter to avoid
288/// inhibiting optimizations.
289///
290// FIXME: This predicate is missing many cases, currently it just follows
291// llvm-gcc (checks that all fields are 32-bit or 64-bit primitive types). We
292// should probably make this smarter, or better yet make the LLVM backend
293// capable of handling it.
294static bool canExpandIndirectArgument(QualType Ty, ASTContext &Context) {
295 // We can only expand structure types.
296 const RecordType *RT = Ty->getAs<RecordType>();
297 if (!RT)
298 return false;
299
300 // We can only expand (C) structures.
301 //
302 // FIXME: This needs to be generalized to handle classes as well.
303 const RecordDecl *RD = RT->getDecl();
304 if (!RD->isStruct() || isa<CXXRecordDecl>(RD))
305 return false;
306
Eli Friedman506d4e32011-11-18 01:32:26 +0000307 uint64_t Size = 0;
308
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000309 for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end();
310 i != e; ++i) {
David Blaikie581deb32012-06-06 20:45:41 +0000311 const FieldDecl *FD = *i;
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000312
313 if (!is32Or64BitBasicType(FD->getType(), Context))
314 return false;
315
316 // FIXME: Reject bit-fields wholesale; there are two problems, we don't know
317 // how to expand them yet, and the predicate for telling if a bitfield still
318 // counts as "basic" is more complicated than what we were doing previously.
319 if (FD->isBitField())
320 return false;
Eli Friedman506d4e32011-11-18 01:32:26 +0000321
322 Size += Context.getTypeSize(FD->getType());
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000323 }
324
Eli Friedman506d4e32011-11-18 01:32:26 +0000325 // Make sure there are not any holes in the struct.
326 if (Size != Context.getTypeSize(Ty))
327 return false;
328
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000329 return true;
330}
331
332namespace {
333/// DefaultABIInfo - The default implementation for ABI specific
334/// details. This implementation provides information which results in
335/// self-consistent and sensible LLVM IR generation, but does not
336/// conform to any particular ABI.
337class DefaultABIInfo : public ABIInfo {
Chris Lattnerea044322010-07-29 02:01:43 +0000338public:
339 DefaultABIInfo(CodeGen::CodeGenTypes &CGT) : ABIInfo(CGT) {}
Michael J. Spencer8bea82f2010-08-25 18:17:27 +0000340
Chris Lattnera3c109b2010-07-29 02:16:43 +0000341 ABIArgInfo classifyReturnType(QualType RetTy) const;
342 ABIArgInfo classifyArgumentType(QualType RetTy) const;
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000343
Chris Lattneree5dcd02010-07-29 02:31:05 +0000344 virtual void computeInfo(CGFunctionInfo &FI) const {
Chris Lattnera3c109b2010-07-29 02:16:43 +0000345 FI.getReturnInfo() = classifyReturnType(FI.getReturnType());
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000346 for (CGFunctionInfo::arg_iterator it = FI.arg_begin(), ie = FI.arg_end();
347 it != ie; ++it)
Chris Lattnera3c109b2010-07-29 02:16:43 +0000348 it->info = classifyArgumentType(it->type);
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000349 }
350
351 virtual llvm::Value *EmitVAArg(llvm::Value *VAListAddr, QualType Ty,
352 CodeGenFunction &CGF) const;
353};
354
Anton Korobeynikov82d0a412010-01-10 12:58:08 +0000355class DefaultTargetCodeGenInfo : public TargetCodeGenInfo {
356public:
Chris Lattnerea044322010-07-29 02:01:43 +0000357 DefaultTargetCodeGenInfo(CodeGen::CodeGenTypes &CGT)
358 : TargetCodeGenInfo(new DefaultABIInfo(CGT)) {}
Anton Korobeynikov82d0a412010-01-10 12:58:08 +0000359};
360
361llvm::Value *DefaultABIInfo::EmitVAArg(llvm::Value *VAListAddr, QualType Ty,
362 CodeGenFunction &CGF) const {
363 return 0;
364}
365
Chris Lattnera3c109b2010-07-29 02:16:43 +0000366ABIArgInfo DefaultABIInfo::classifyArgumentType(QualType Ty) const {
Jan Wen Voung90306932011-11-03 00:59:44 +0000367 if (isAggregateTypeForABI(Ty)) {
368 // Records with non trivial destructors/constructors should not be passed
369 // by value.
370 if (isRecordWithNonTrivialDestructorOrCopyConstructor(Ty))
371 return ABIArgInfo::getIndirect(0, /*ByVal=*/false);
372
Anton Korobeynikov82d0a412010-01-10 12:58:08 +0000373 return ABIArgInfo::getIndirect(0);
Jan Wen Voung90306932011-11-03 00:59:44 +0000374 }
Daniel Dunbardc6d5742010-04-21 19:10:51 +0000375
Chris Lattnera14db752010-03-11 18:19:55 +0000376 // Treat an enum type as its underlying type.
377 if (const EnumType *EnumTy = Ty->getAs<EnumType>())
378 Ty = EnumTy->getDecl()->getIntegerType();
Douglas Gregoraa74a1e2010-02-02 20:10:50 +0000379
Chris Lattnera14db752010-03-11 18:19:55 +0000380 return (Ty->isPromotableIntegerType() ?
381 ABIArgInfo::getExtend() : ABIArgInfo::getDirect());
Anton Korobeynikov82d0a412010-01-10 12:58:08 +0000382}
383
Bob Wilson0024f942011-01-10 23:54:17 +0000384ABIArgInfo DefaultABIInfo::classifyReturnType(QualType RetTy) const {
385 if (RetTy->isVoidType())
386 return ABIArgInfo::getIgnore();
387
388 if (isAggregateTypeForABI(RetTy))
389 return ABIArgInfo::getIndirect(0);
390
391 // Treat an enum type as its underlying type.
392 if (const EnumType *EnumTy = RetTy->getAs<EnumType>())
393 RetTy = EnumTy->getDecl()->getIntegerType();
394
395 return (RetTy->isPromotableIntegerType() ?
396 ABIArgInfo::getExtend() : ABIArgInfo::getDirect());
397}
398
Derek Schuff9ed63f82012-09-06 17:37:28 +0000399//===----------------------------------------------------------------------===//
400// le32/PNaCl bitcode ABI Implementation
401//===----------------------------------------------------------------------===//
402
403class PNaClABIInfo : public ABIInfo {
404 public:
405 PNaClABIInfo(CodeGen::CodeGenTypes &CGT) : ABIInfo(CGT) {}
406
407 ABIArgInfo classifyReturnType(QualType RetTy) const;
408 ABIArgInfo classifyArgumentType(QualType RetTy, unsigned &FreeRegs) const;
409
410 virtual void computeInfo(CGFunctionInfo &FI) const;
411 virtual llvm::Value *EmitVAArg(llvm::Value *VAListAddr, QualType Ty,
412 CodeGenFunction &CGF) const;
413};
414
415class PNaClTargetCodeGenInfo : public TargetCodeGenInfo {
416 public:
417 PNaClTargetCodeGenInfo(CodeGen::CodeGenTypes &CGT)
418 : TargetCodeGenInfo(new PNaClABIInfo(CGT)) {}
419};
420
421void PNaClABIInfo::computeInfo(CGFunctionInfo &FI) const {
422 FI.getReturnInfo() = classifyReturnType(FI.getReturnType());
423
424 unsigned FreeRegs = FI.getHasRegParm() ? FI.getRegParm() : 0;
425
426 for (CGFunctionInfo::arg_iterator it = FI.arg_begin(), ie = FI.arg_end();
427 it != ie; ++it)
428 it->info = classifyArgumentType(it->type, FreeRegs);
429 }
430
431llvm::Value *PNaClABIInfo::EmitVAArg(llvm::Value *VAListAddr, QualType Ty,
432 CodeGenFunction &CGF) const {
433 return 0;
434}
435
436ABIArgInfo PNaClABIInfo::classifyArgumentType(QualType Ty,
437 unsigned &FreeRegs) const {
438 if (isAggregateTypeForABI(Ty)) {
439 // Records with non trivial destructors/constructors should not be passed
440 // by value.
441 FreeRegs = 0;
442 if (isRecordWithNonTrivialDestructorOrCopyConstructor(Ty))
443 return ABIArgInfo::getIndirect(0, /*ByVal=*/false);
444
445 return ABIArgInfo::getIndirect(0);
446 }
447
448 // Treat an enum type as its underlying type.
449 if (const EnumType *EnumTy = Ty->getAs<EnumType>())
450 Ty = EnumTy->getDecl()->getIntegerType();
451
452 ABIArgInfo BaseInfo = (Ty->isPromotableIntegerType() ?
453 ABIArgInfo::getExtend() : ABIArgInfo::getDirect());
454
455 // Regparm regs hold 32 bits.
456 unsigned SizeInRegs = (getContext().getTypeSize(Ty) + 31) / 32;
457 if (SizeInRegs == 0) return BaseInfo;
458 if (SizeInRegs > FreeRegs) {
459 FreeRegs = 0;
460 return BaseInfo;
461 }
462 FreeRegs -= SizeInRegs;
463 return BaseInfo.isDirect() ?
464 ABIArgInfo::getDirectInReg(BaseInfo.getCoerceToType()) :
465 ABIArgInfo::getExtendInReg(BaseInfo.getCoerceToType());
466}
467
468ABIArgInfo PNaClABIInfo::classifyReturnType(QualType RetTy) const {
469 if (RetTy->isVoidType())
470 return ABIArgInfo::getIgnore();
471
472 if (isAggregateTypeForABI(RetTy))
473 return ABIArgInfo::getIndirect(0);
474
475 // Treat an enum type as its underlying type.
476 if (const EnumType *EnumTy = RetTy->getAs<EnumType>())
477 RetTy = EnumTy->getDecl()->getIntegerType();
478
479 return (RetTy->isPromotableIntegerType() ?
480 ABIArgInfo::getExtend() : ABIArgInfo::getDirect());
481}
482
Chad Rosier1f1df1f2013-03-25 21:00:27 +0000483/// IsX86_MMXType - Return true if this is an MMX type.
484bool IsX86_MMXType(llvm::Type *IRType) {
485 // Return true if the type is an MMX type <2 x i32>, <4 x i16>, or <8 x i8>.
Bill Wendlingbb465d72010-10-18 03:41:31 +0000486 return IRType->isVectorTy() && IRType->getPrimitiveSizeInBits() == 64 &&
487 cast<llvm::VectorType>(IRType)->getElementType()->isIntegerTy() &&
488 IRType->getScalarSizeInBits() != 64;
489}
490
Jay Foadef6de3d2011-07-11 09:56:20 +0000491static llvm::Type* X86AdjustInlineAsmType(CodeGen::CodeGenFunction &CGF,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000492 StringRef Constraint,
Jay Foadef6de3d2011-07-11 09:56:20 +0000493 llvm::Type* Ty) {
Bill Wendling0507be62011-03-07 22:47:14 +0000494 if ((Constraint == "y" || Constraint == "&y") && Ty->isVectorTy())
Peter Collingbourne4b93d662011-02-19 23:03:58 +0000495 return llvm::Type::getX86_MMXTy(CGF.getLLVMContext());
496 return Ty;
497}
498
Chris Lattnerdce5ad02010-06-28 20:05:43 +0000499//===----------------------------------------------------------------------===//
500// X86-32 ABI Implementation
501//===----------------------------------------------------------------------===//
Michael J. Spencer8bea82f2010-08-25 18:17:27 +0000502
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000503/// X86_32ABIInfo - The X86-32 ABI information.
504class X86_32ABIInfo : public ABIInfo {
Rafael Espindolab48280b2012-07-31 02:44:24 +0000505 enum Class {
506 Integer,
507 Float
508 };
509
Daniel Dunbarfb67d6c2010-09-16 20:41:56 +0000510 static const unsigned MinABIStackAlignInBytes = 4;
511
David Chisnall1e4249c2009-08-17 23:08:21 +0000512 bool IsDarwinVectorABI;
513 bool IsSmallStructInRegABI;
Eli Friedman55fc7e22012-01-25 22:46:34 +0000514 bool IsWin32FloatStructABI;
Rafael Espindolab48280b2012-07-31 02:44:24 +0000515 unsigned DefaultNumRegisterParameters;
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000516
517 static bool isRegisterSize(unsigned Size) {
518 return (Size == 8 || Size == 16 || Size == 32 || Size == 64);
519 }
520
Aaron Ballman6c60c8d2012-02-22 03:04:13 +0000521 static bool shouldReturnTypeInRegister(QualType Ty, ASTContext &Context,
522 unsigned callingConvention);
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000523
Daniel Dunbardc6d5742010-04-21 19:10:51 +0000524 /// getIndirectResult - Give a source type \arg Ty, return a suitable result
525 /// such that the argument will be passed in memory.
Rafael Espindola0b4cc952012-10-19 05:04:37 +0000526 ABIArgInfo getIndirectResult(QualType Ty, bool ByVal,
527 unsigned &FreeRegs) const;
Daniel Dunbardc6d5742010-04-21 19:10:51 +0000528
Daniel Dunbarfb67d6c2010-09-16 20:41:56 +0000529 /// \brief Return the alignment to use for the given type on the stack.
Daniel Dunbare59d8582010-09-16 20:42:06 +0000530 unsigned getTypeStackAlignInBytes(QualType Ty, unsigned Align) const;
Daniel Dunbarfb67d6c2010-09-16 20:41:56 +0000531
Rafael Espindolab48280b2012-07-31 02:44:24 +0000532 Class classify(QualType Ty) const;
Rafael Espindolab33a3c42012-07-23 23:30:29 +0000533 ABIArgInfo classifyReturnType(QualType RetTy,
Aaron Ballman6c60c8d2012-02-22 03:04:13 +0000534 unsigned callingConvention) const;
Rafael Espindolab6932692012-10-24 01:58:58 +0000535 ABIArgInfo classifyArgumentType(QualType RetTy, unsigned &FreeRegs,
536 bool IsFastCall) const;
537 bool shouldUseInReg(QualType Ty, unsigned &FreeRegs,
Rafael Espindolae4aeeaa2012-10-24 01:59:00 +0000538 bool IsFastCall, bool &NeedsPadding) const;
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000539
Rafael Espindolab33a3c42012-07-23 23:30:29 +0000540public:
541
Rafael Espindolaaa9cf8d2012-07-24 00:01:07 +0000542 virtual void computeInfo(CGFunctionInfo &FI) const;
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000543 virtual llvm::Value *EmitVAArg(llvm::Value *VAListAddr, QualType Ty,
544 CodeGenFunction &CGF) const;
545
Chad Rosier1f1df1f2013-03-25 21:00:27 +0000546 X86_32ABIInfo(CodeGen::CodeGenTypes &CGT, bool d, bool p, bool w,
Rafael Espindolab48280b2012-07-31 02:44:24 +0000547 unsigned r)
Eli Friedmanc3e0fb42011-07-08 23:31:17 +0000548 : ABIInfo(CGT), IsDarwinVectorABI(d), IsSmallStructInRegABI(p),
Chad Rosier1f1df1f2013-03-25 21:00:27 +0000549 IsWin32FloatStructABI(w), DefaultNumRegisterParameters(r) {}
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000550};
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000551
Anton Korobeynikov82d0a412010-01-10 12:58:08 +0000552class X86_32TargetCodeGenInfo : public TargetCodeGenInfo {
553public:
Eli Friedman55fc7e22012-01-25 22:46:34 +0000554 X86_32TargetCodeGenInfo(CodeGen::CodeGenTypes &CGT,
Chad Rosier1f1df1f2013-03-25 21:00:27 +0000555 bool d, bool p, bool w, unsigned r)
556 :TargetCodeGenInfo(new X86_32ABIInfo(CGT, d, p, w, r)) {}
Charles Davis74f72932010-02-13 15:54:06 +0000557
558 void SetTargetAttributes(const Decl *D, llvm::GlobalValue *GV,
559 CodeGen::CodeGenModule &CGM) const;
John McCall6374c332010-03-06 00:35:14 +0000560
561 int getDwarfEHStackPointer(CodeGen::CodeGenModule &CGM) const {
562 // Darwin uses different dwarf register numbers for EH.
563 if (CGM.isTargetDarwin()) return 5;
564
565 return 4;
566 }
567
568 bool initDwarfEHRegSizeTable(CodeGen::CodeGenFunction &CGF,
569 llvm::Value *Address) const;
Peter Collingbourne4b93d662011-02-19 23:03:58 +0000570
Jay Foadef6de3d2011-07-11 09:56:20 +0000571 llvm::Type* adjustInlineAsmType(CodeGen::CodeGenFunction &CGF,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000572 StringRef Constraint,
Jay Foadef6de3d2011-07-11 09:56:20 +0000573 llvm::Type* Ty) const {
Peter Collingbourne4b93d662011-02-19 23:03:58 +0000574 return X86AdjustInlineAsmType(CGF, Constraint, Ty);
575 }
576
Anton Korobeynikov82d0a412010-01-10 12:58:08 +0000577};
578
579}
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000580
581/// shouldReturnTypeInRegister - Determine if the given type should be
582/// passed in a register (for the Darwin ABI).
583bool X86_32ABIInfo::shouldReturnTypeInRegister(QualType Ty,
Aaron Ballman6c60c8d2012-02-22 03:04:13 +0000584 ASTContext &Context,
585 unsigned callingConvention) {
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000586 uint64_t Size = Context.getTypeSize(Ty);
587
588 // Type must be register sized.
589 if (!isRegisterSize(Size))
590 return false;
591
592 if (Ty->isVectorType()) {
593 // 64- and 128- bit vectors inside structures are not returned in
594 // registers.
595 if (Size == 64 || Size == 128)
596 return false;
597
598 return true;
599 }
600
Daniel Dunbar77115232010-05-15 00:00:30 +0000601 // If this is a builtin, pointer, enum, complex type, member pointer, or
602 // member function pointer it is ok.
Daniel Dunbara1842d32010-05-14 03:40:53 +0000603 if (Ty->getAs<BuiltinType>() || Ty->hasPointerRepresentation() ||
Daniel Dunbar55e59e12009-09-24 05:12:36 +0000604 Ty->isAnyComplexType() || Ty->isEnumeralType() ||
Daniel Dunbar77115232010-05-15 00:00:30 +0000605 Ty->isBlockPointerType() || Ty->isMemberPointerType())
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000606 return true;
607
608 // Arrays are treated like records.
609 if (const ConstantArrayType *AT = Context.getAsConstantArrayType(Ty))
Aaron Ballman6c60c8d2012-02-22 03:04:13 +0000610 return shouldReturnTypeInRegister(AT->getElementType(), Context,
611 callingConvention);
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000612
613 // Otherwise, it must be a record type.
Ted Kremenek6217b802009-07-29 21:53:49 +0000614 const RecordType *RT = Ty->getAs<RecordType>();
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000615 if (!RT) return false;
616
Anders Carlssona8874232010-01-27 03:25:19 +0000617 // FIXME: Traverse bases here too.
618
Aaron Ballman6c60c8d2012-02-22 03:04:13 +0000619 // For thiscall conventions, structures will never be returned in
620 // a register. This is for compatibility with the MSVC ABI
621 if (callingConvention == llvm::CallingConv::X86_ThisCall &&
622 RT->isStructureType()) {
623 return false;
624 }
625
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000626 // Structure types are passed in register if all fields would be
627 // passed in a register.
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000628 for (RecordDecl::field_iterator i = RT->getDecl()->field_begin(),
629 e = RT->getDecl()->field_end(); i != e; ++i) {
David Blaikie581deb32012-06-06 20:45:41 +0000630 const FieldDecl *FD = *i;
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000631
632 // Empty fields are ignored.
Daniel Dunbar98303b92009-09-13 08:03:58 +0000633 if (isEmptyField(Context, FD, true))
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000634 continue;
635
636 // Check fields recursively.
Aaron Ballman6c60c8d2012-02-22 03:04:13 +0000637 if (!shouldReturnTypeInRegister(FD->getType(), Context,
638 callingConvention))
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000639 return false;
640 }
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000641 return true;
642}
643
Aaron Ballman6c60c8d2012-02-22 03:04:13 +0000644ABIArgInfo X86_32ABIInfo::classifyReturnType(QualType RetTy,
645 unsigned callingConvention) const {
Chris Lattnera3c109b2010-07-29 02:16:43 +0000646 if (RetTy->isVoidType())
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000647 return ABIArgInfo::getIgnore();
Michael J. Spencer8bea82f2010-08-25 18:17:27 +0000648
Chris Lattnera3c109b2010-07-29 02:16:43 +0000649 if (const VectorType *VT = RetTy->getAs<VectorType>()) {
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000650 // On Darwin, some vectors are returned in registers.
David Chisnall1e4249c2009-08-17 23:08:21 +0000651 if (IsDarwinVectorABI) {
Chris Lattnera3c109b2010-07-29 02:16:43 +0000652 uint64_t Size = getContext().getTypeSize(RetTy);
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000653
654 // 128-bit vectors are a special case; they are returned in
655 // registers and we need to make sure to pick a type the LLVM
656 // backend will like.
657 if (Size == 128)
Chris Lattner800588f2010-07-29 06:26:06 +0000658 return ABIArgInfo::getDirect(llvm::VectorType::get(
Chris Lattnera3c109b2010-07-29 02:16:43 +0000659 llvm::Type::getInt64Ty(getVMContext()), 2));
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000660
661 // Always return in register if it fits in a general purpose
662 // register, or if it is 64 bits and has a single element.
663 if ((Size == 8 || Size == 16 || Size == 32) ||
664 (Size == 64 && VT->getNumElements() == 1))
Chris Lattner800588f2010-07-29 06:26:06 +0000665 return ABIArgInfo::getDirect(llvm::IntegerType::get(getVMContext(),
Chris Lattnera3c109b2010-07-29 02:16:43 +0000666 Size));
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000667
668 return ABIArgInfo::getIndirect(0);
669 }
670
671 return ABIArgInfo::getDirect();
Chris Lattnera3c109b2010-07-29 02:16:43 +0000672 }
Michael J. Spencer8bea82f2010-08-25 18:17:27 +0000673
John McCalld608cdb2010-08-22 10:59:02 +0000674 if (isAggregateTypeForABI(RetTy)) {
Anders Carlssona8874232010-01-27 03:25:19 +0000675 if (const RecordType *RT = RetTy->getAs<RecordType>()) {
Anders Carlsson40092972009-10-20 22:07:59 +0000676 // Structures with either a non-trivial destructor or a non-trivial
677 // copy constructor are always indirect.
678 if (hasNonTrivialDestructorOrCopyConstructor(RT))
679 return ABIArgInfo::getIndirect(0, /*ByVal=*/false);
Michael J. Spencer8bea82f2010-08-25 18:17:27 +0000680
Anders Carlsson40092972009-10-20 22:07:59 +0000681 // Structures with flexible arrays are always indirect.
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000682 if (RT->getDecl()->hasFlexibleArrayMember())
683 return ABIArgInfo::getIndirect(0);
Anders Carlsson40092972009-10-20 22:07:59 +0000684 }
Michael J. Spencer8bea82f2010-08-25 18:17:27 +0000685
David Chisnall1e4249c2009-08-17 23:08:21 +0000686 // If specified, structs and unions are always indirect.
687 if (!IsSmallStructInRegABI && !RetTy->isAnyComplexType())
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000688 return ABIArgInfo::getIndirect(0);
689
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000690 // Small structures which are register sized are generally returned
691 // in a register.
Aaron Ballman6c60c8d2012-02-22 03:04:13 +0000692 if (X86_32ABIInfo::shouldReturnTypeInRegister(RetTy, getContext(),
693 callingConvention)) {
Chris Lattnera3c109b2010-07-29 02:16:43 +0000694 uint64_t Size = getContext().getTypeSize(RetTy);
Eli Friedmanbd4d3bc2011-11-18 01:25:50 +0000695
696 // As a special-case, if the struct is a "single-element" struct, and
697 // the field is of type "float" or "double", return it in a
Eli Friedman55fc7e22012-01-25 22:46:34 +0000698 // floating-point register. (MSVC does not apply this special case.)
699 // We apply a similar transformation for pointer types to improve the
700 // quality of the generated IR.
Eli Friedmanbd4d3bc2011-11-18 01:25:50 +0000701 if (const Type *SeltTy = isSingleElementStruct(RetTy, getContext()))
Eli Friedman55fc7e22012-01-25 22:46:34 +0000702 if ((!IsWin32FloatStructABI && SeltTy->isRealFloatingType())
703 || SeltTy->hasPointerRepresentation())
Eli Friedmanbd4d3bc2011-11-18 01:25:50 +0000704 return ABIArgInfo::getDirect(CGT.ConvertType(QualType(SeltTy, 0)));
705
706 // FIXME: We should be able to narrow this integer in cases with dead
707 // padding.
Chris Lattner800588f2010-07-29 06:26:06 +0000708 return ABIArgInfo::getDirect(llvm::IntegerType::get(getVMContext(),Size));
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000709 }
710
711 return ABIArgInfo::getIndirect(0);
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000712 }
Michael J. Spencer8bea82f2010-08-25 18:17:27 +0000713
Chris Lattnera3c109b2010-07-29 02:16:43 +0000714 // Treat an enum type as its underlying type.
715 if (const EnumType *EnumTy = RetTy->getAs<EnumType>())
716 RetTy = EnumTy->getDecl()->getIntegerType();
717
718 return (RetTy->isPromotableIntegerType() ?
719 ABIArgInfo::getExtend() : ABIArgInfo::getDirect());
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000720}
721
Eli Friedmanf4bd4d82012-06-05 19:40:46 +0000722static bool isSSEVectorType(ASTContext &Context, QualType Ty) {
723 return Ty->getAs<VectorType>() && Context.getTypeSize(Ty) == 128;
724}
725
Daniel Dunbar93ae9472010-09-16 20:42:00 +0000726static bool isRecordWithSSEVectorType(ASTContext &Context, QualType Ty) {
727 const RecordType *RT = Ty->getAs<RecordType>();
728 if (!RT)
729 return 0;
730 const RecordDecl *RD = RT->getDecl();
731
732 // If this is a C++ record, check the bases first.
733 if (const CXXRecordDecl *CXXRD = dyn_cast<CXXRecordDecl>(RD))
734 for (CXXRecordDecl::base_class_const_iterator i = CXXRD->bases_begin(),
735 e = CXXRD->bases_end(); i != e; ++i)
736 if (!isRecordWithSSEVectorType(Context, i->getType()))
737 return false;
738
739 for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end();
740 i != e; ++i) {
741 QualType FT = i->getType();
742
Eli Friedmanf4bd4d82012-06-05 19:40:46 +0000743 if (isSSEVectorType(Context, FT))
Daniel Dunbar93ae9472010-09-16 20:42:00 +0000744 return true;
745
746 if (isRecordWithSSEVectorType(Context, FT))
747 return true;
748 }
749
750 return false;
751}
752
Daniel Dunbare59d8582010-09-16 20:42:06 +0000753unsigned X86_32ABIInfo::getTypeStackAlignInBytes(QualType Ty,
754 unsigned Align) const {
755 // Otherwise, if the alignment is less than or equal to the minimum ABI
756 // alignment, just use the default; the backend will handle this.
Daniel Dunbarfb67d6c2010-09-16 20:41:56 +0000757 if (Align <= MinABIStackAlignInBytes)
Daniel Dunbare59d8582010-09-16 20:42:06 +0000758 return 0; // Use default alignment.
759
760 // On non-Darwin, the stack type alignment is always 4.
761 if (!IsDarwinVectorABI) {
762 // Set explicit alignment, since we may need to realign the top.
Daniel Dunbarfb67d6c2010-09-16 20:41:56 +0000763 return MinABIStackAlignInBytes;
Daniel Dunbare59d8582010-09-16 20:42:06 +0000764 }
Daniel Dunbarfb67d6c2010-09-16 20:41:56 +0000765
Daniel Dunbar93ae9472010-09-16 20:42:00 +0000766 // Otherwise, if the type contains an SSE vector type, the alignment is 16.
Eli Friedmanf4bd4d82012-06-05 19:40:46 +0000767 if (Align >= 16 && (isSSEVectorType(getContext(), Ty) ||
768 isRecordWithSSEVectorType(getContext(), Ty)))
Daniel Dunbar93ae9472010-09-16 20:42:00 +0000769 return 16;
770
771 return MinABIStackAlignInBytes;
Daniel Dunbarfb67d6c2010-09-16 20:41:56 +0000772}
773
Rafael Espindola0b4cc952012-10-19 05:04:37 +0000774ABIArgInfo X86_32ABIInfo::getIndirectResult(QualType Ty, bool ByVal,
775 unsigned &FreeRegs) const {
776 if (!ByVal) {
777 if (FreeRegs) {
778 --FreeRegs; // Non byval indirects just use one pointer.
779 return ABIArgInfo::getIndirectInReg(0, false);
780 }
Daniel Dunbar46c54fb2010-04-21 19:49:55 +0000781 return ABIArgInfo::getIndirect(0, false);
Rafael Espindola0b4cc952012-10-19 05:04:37 +0000782 }
Daniel Dunbar46c54fb2010-04-21 19:49:55 +0000783
Daniel Dunbare59d8582010-09-16 20:42:06 +0000784 // Compute the byval alignment.
785 unsigned TypeAlign = getContext().getTypeAlign(Ty) / 8;
786 unsigned StackAlign = getTypeStackAlignInBytes(Ty, TypeAlign);
787 if (StackAlign == 0)
Chris Lattnerde92d732011-05-22 23:35:00 +0000788 return ABIArgInfo::getIndirect(4);
Daniel Dunbare59d8582010-09-16 20:42:06 +0000789
790 // If the stack alignment is less than the type alignment, realign the
791 // argument.
792 if (StackAlign < TypeAlign)
793 return ABIArgInfo::getIndirect(StackAlign, /*ByVal=*/true,
794 /*Realign=*/true);
795
796 return ABIArgInfo::getIndirect(StackAlign);
Daniel Dunbardc6d5742010-04-21 19:10:51 +0000797}
798
Rafael Espindolab48280b2012-07-31 02:44:24 +0000799X86_32ABIInfo::Class X86_32ABIInfo::classify(QualType Ty) const {
800 const Type *T = isSingleElementStruct(Ty, getContext());
801 if (!T)
802 T = Ty.getTypePtr();
803
804 if (const BuiltinType *BT = T->getAs<BuiltinType>()) {
805 BuiltinType::Kind K = BT->getKind();
806 if (K == BuiltinType::Float || K == BuiltinType::Double)
807 return Float;
808 }
809 return Integer;
810}
811
Rafael Espindolab6932692012-10-24 01:58:58 +0000812bool X86_32ABIInfo::shouldUseInReg(QualType Ty, unsigned &FreeRegs,
Rafael Espindolae4aeeaa2012-10-24 01:59:00 +0000813 bool IsFastCall, bool &NeedsPadding) const {
814 NeedsPadding = false;
Rafael Espindolab48280b2012-07-31 02:44:24 +0000815 Class C = classify(Ty);
816 if (C == Float)
Rafael Espindola0b4cc952012-10-19 05:04:37 +0000817 return false;
Rafael Espindolab48280b2012-07-31 02:44:24 +0000818
Rafael Espindolab6932692012-10-24 01:58:58 +0000819 unsigned Size = getContext().getTypeSize(Ty);
820 unsigned SizeInRegs = (Size + 31) / 32;
Rafael Espindola5f14fcb2012-10-23 02:04:01 +0000821
822 if (SizeInRegs == 0)
823 return false;
824
Rafael Espindolab48280b2012-07-31 02:44:24 +0000825 if (SizeInRegs > FreeRegs) {
826 FreeRegs = 0;
Rafael Espindola0b4cc952012-10-19 05:04:37 +0000827 return false;
Rafael Espindolab48280b2012-07-31 02:44:24 +0000828 }
Rafael Espindola0b4cc952012-10-19 05:04:37 +0000829
Rafael Espindolab48280b2012-07-31 02:44:24 +0000830 FreeRegs -= SizeInRegs;
Rafael Espindolab6932692012-10-24 01:58:58 +0000831
832 if (IsFastCall) {
833 if (Size > 32)
834 return false;
835
836 if (Ty->isIntegralOrEnumerationType())
837 return true;
838
839 if (Ty->isPointerType())
840 return true;
841
842 if (Ty->isReferenceType())
843 return true;
844
Rafael Espindolae4aeeaa2012-10-24 01:59:00 +0000845 if (FreeRegs)
846 NeedsPadding = true;
847
Rafael Espindolab6932692012-10-24 01:58:58 +0000848 return false;
849 }
850
Rafael Espindola0b4cc952012-10-19 05:04:37 +0000851 return true;
Rafael Espindolab48280b2012-07-31 02:44:24 +0000852}
853
Rafael Espindola0b4cc952012-10-19 05:04:37 +0000854ABIArgInfo X86_32ABIInfo::classifyArgumentType(QualType Ty,
Rafael Espindolab6932692012-10-24 01:58:58 +0000855 unsigned &FreeRegs,
856 bool IsFastCall) const {
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000857 // FIXME: Set alignment on indirect arguments.
John McCalld608cdb2010-08-22 10:59:02 +0000858 if (isAggregateTypeForABI(Ty)) {
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000859 // Structures with flexible arrays are always indirect.
Anders Carlssona8874232010-01-27 03:25:19 +0000860 if (const RecordType *RT = Ty->getAs<RecordType>()) {
861 // Structures with either a non-trivial destructor or a non-trivial
862 // copy constructor are always indirect.
863 if (hasNonTrivialDestructorOrCopyConstructor(RT))
Rafael Espindola0b4cc952012-10-19 05:04:37 +0000864 return getIndirectResult(Ty, false, FreeRegs);
Daniel Dunbardc6d5742010-04-21 19:10:51 +0000865
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000866 if (RT->getDecl()->hasFlexibleArrayMember())
Rafael Espindola0b4cc952012-10-19 05:04:37 +0000867 return getIndirectResult(Ty, true, FreeRegs);
Anders Carlssona8874232010-01-27 03:25:19 +0000868 }
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000869
Eli Friedman5a4d3522011-11-18 00:28:11 +0000870 // Ignore empty structs/unions.
Eli Friedman5a1ac892011-11-18 04:01:36 +0000871 if (isEmptyRecord(getContext(), Ty, true))
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000872 return ABIArgInfo::getIgnore();
873
Rafael Espindolae4aeeaa2012-10-24 01:59:00 +0000874 llvm::LLVMContext &LLVMContext = getVMContext();
875 llvm::IntegerType *Int32 = llvm::Type::getInt32Ty(LLVMContext);
876 bool NeedsPadding;
877 if (shouldUseInReg(Ty, FreeRegs, IsFastCall, NeedsPadding)) {
Rafael Espindola0b4cc952012-10-19 05:04:37 +0000878 unsigned SizeInRegs = (getContext().getTypeSize(Ty) + 31) / 32;
Rafael Espindola0b4cc952012-10-19 05:04:37 +0000879 SmallVector<llvm::Type*, 3> Elements;
880 for (unsigned I = 0; I < SizeInRegs; ++I)
881 Elements.push_back(Int32);
882 llvm::Type *Result = llvm::StructType::get(LLVMContext, Elements);
883 return ABIArgInfo::getDirectInReg(Result);
884 }
Rafael Espindolae4aeeaa2012-10-24 01:59:00 +0000885 llvm::IntegerType *PaddingType = NeedsPadding ? Int32 : 0;
Rafael Espindola0b4cc952012-10-19 05:04:37 +0000886
Daniel Dunbar53012f42009-11-09 01:33:53 +0000887 // Expand small (<= 128-bit) record types when we know that the stack layout
888 // of those arguments will match the struct. This is important because the
889 // LLVM backend isn't smart enough to remove byval, which inhibits many
890 // optimizations.
Chris Lattnera3c109b2010-07-29 02:16:43 +0000891 if (getContext().getTypeSize(Ty) <= 4*32 &&
892 canExpandIndirectArgument(Ty, getContext()))
Rafael Espindolae4aeeaa2012-10-24 01:59:00 +0000893 return ABIArgInfo::getExpandWithPadding(IsFastCall, PaddingType);
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000894
Rafael Espindola0b4cc952012-10-19 05:04:37 +0000895 return getIndirectResult(Ty, true, FreeRegs);
Michael J. Spencer8bea82f2010-08-25 18:17:27 +0000896 }
897
Chris Lattnerbbae8b42010-08-26 20:05:13 +0000898 if (const VectorType *VT = Ty->getAs<VectorType>()) {
Chris Lattner7b733502010-08-26 20:08:43 +0000899 // On Darwin, some vectors are passed in memory, we handle this by passing
900 // it as an i8/i16/i32/i64.
Chris Lattnerbbae8b42010-08-26 20:05:13 +0000901 if (IsDarwinVectorABI) {
902 uint64_t Size = getContext().getTypeSize(Ty);
Chris Lattnerbbae8b42010-08-26 20:05:13 +0000903 if ((Size == 8 || Size == 16 || Size == 32) ||
904 (Size == 64 && VT->getNumElements() == 1))
905 return ABIArgInfo::getDirect(llvm::IntegerType::get(getVMContext(),
906 Size));
Chris Lattnerbbae8b42010-08-26 20:05:13 +0000907 }
Bill Wendlingbb465d72010-10-18 03:41:31 +0000908
Chad Rosier1f1df1f2013-03-25 21:00:27 +0000909 if (IsX86_MMXType(CGT.ConvertType(Ty)))
910 return ABIArgInfo::getDirect(llvm::IntegerType::get(getVMContext(), 64));
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000911
Chris Lattnerbbae8b42010-08-26 20:05:13 +0000912 return ABIArgInfo::getDirect();
913 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000914
915
Chris Lattnera3c109b2010-07-29 02:16:43 +0000916 if (const EnumType *EnumTy = Ty->getAs<EnumType>())
917 Ty = EnumTy->getDecl()->getIntegerType();
Douglas Gregoraa74a1e2010-02-02 20:10:50 +0000918
Rafael Espindolae4aeeaa2012-10-24 01:59:00 +0000919 bool NeedsPadding;
920 bool InReg = shouldUseInReg(Ty, FreeRegs, IsFastCall, NeedsPadding);
Rafael Espindola0b4cc952012-10-19 05:04:37 +0000921
922 if (Ty->isPromotableIntegerType()) {
923 if (InReg)
924 return ABIArgInfo::getExtendInReg();
925 return ABIArgInfo::getExtend();
926 }
927 if (InReg)
928 return ABIArgInfo::getDirectInReg();
929 return ABIArgInfo::getDirect();
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000930}
931
Rafael Espindolaaa9cf8d2012-07-24 00:01:07 +0000932void X86_32ABIInfo::computeInfo(CGFunctionInfo &FI) const {
933 FI.getReturnInfo() = classifyReturnType(FI.getReturnType(),
934 FI.getCallingConvention());
Rafael Espindolab48280b2012-07-31 02:44:24 +0000935
Rafael Espindolab6932692012-10-24 01:58:58 +0000936 unsigned CC = FI.getCallingConvention();
937 bool IsFastCall = CC == llvm::CallingConv::X86_FastCall;
938 unsigned FreeRegs;
939 if (IsFastCall)
940 FreeRegs = 2;
941 else if (FI.getHasRegParm())
942 FreeRegs = FI.getRegParm();
943 else
944 FreeRegs = DefaultNumRegisterParameters;
Rafael Espindolab48280b2012-07-31 02:44:24 +0000945
946 // If the return value is indirect, then the hidden argument is consuming one
947 // integer register.
948 if (FI.getReturnInfo().isIndirect() && FreeRegs) {
949 --FreeRegs;
950 ABIArgInfo &Old = FI.getReturnInfo();
951 Old = ABIArgInfo::getIndirectInReg(Old.getIndirectAlign(),
952 Old.getIndirectByVal(),
953 Old.getIndirectRealign());
954 }
955
Rafael Espindolaaa9cf8d2012-07-24 00:01:07 +0000956 for (CGFunctionInfo::arg_iterator it = FI.arg_begin(), ie = FI.arg_end();
957 it != ie; ++it)
Rafael Espindolab6932692012-10-24 01:58:58 +0000958 it->info = classifyArgumentType(it->type, FreeRegs, IsFastCall);
Rafael Espindolaaa9cf8d2012-07-24 00:01:07 +0000959}
960
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000961llvm::Value *X86_32ABIInfo::EmitVAArg(llvm::Value *VAListAddr, QualType Ty,
962 CodeGenFunction &CGF) const {
Chris Lattner8b418682012-02-07 00:39:47 +0000963 llvm::Type *BPP = CGF.Int8PtrPtrTy;
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000964
965 CGBuilderTy &Builder = CGF.Builder;
966 llvm::Value *VAListAddrAsBPP = Builder.CreateBitCast(VAListAddr, BPP,
967 "ap");
968 llvm::Value *Addr = Builder.CreateLoad(VAListAddrAsBPP, "ap.cur");
Eli Friedman7b1fb812011-11-18 02:12:09 +0000969
970 // Compute if the address needs to be aligned
971 unsigned Align = CGF.getContext().getTypeAlignInChars(Ty).getQuantity();
972 Align = getTypeStackAlignInBytes(Ty, Align);
973 Align = std::max(Align, 4U);
974 if (Align > 4) {
975 // addr = (addr + align - 1) & -align;
976 llvm::Value *Offset =
977 llvm::ConstantInt::get(CGF.Int32Ty, Align - 1);
978 Addr = CGF.Builder.CreateGEP(Addr, Offset);
979 llvm::Value *AsInt = CGF.Builder.CreatePtrToInt(Addr,
980 CGF.Int32Ty);
981 llvm::Value *Mask = llvm::ConstantInt::get(CGF.Int32Ty, -Align);
982 Addr = CGF.Builder.CreateIntToPtr(CGF.Builder.CreateAnd(AsInt, Mask),
983 Addr->getType(),
984 "ap.cur.aligned");
985 }
986
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000987 llvm::Type *PTy =
Owen Anderson96e0fc72009-07-29 22:16:19 +0000988 llvm::PointerType::getUnqual(CGF.ConvertType(Ty));
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000989 llvm::Value *AddrTyped = Builder.CreateBitCast(Addr, PTy);
990
991 uint64_t Offset =
Eli Friedman7b1fb812011-11-18 02:12:09 +0000992 llvm::RoundUpToAlignment(CGF.getContext().getTypeSize(Ty) / 8, Align);
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000993 llvm::Value *NextAddr =
Chris Lattner77b89b82010-06-27 07:15:29 +0000994 Builder.CreateGEP(Addr, llvm::ConstantInt::get(CGF.Int32Ty, Offset),
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +0000995 "ap.next");
996 Builder.CreateStore(NextAddr, VAListAddrAsBPP);
997
998 return AddrTyped;
999}
1000
Charles Davis74f72932010-02-13 15:54:06 +00001001void X86_32TargetCodeGenInfo::SetTargetAttributes(const Decl *D,
1002 llvm::GlobalValue *GV,
1003 CodeGen::CodeGenModule &CGM) const {
1004 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
1005 if (FD->hasAttr<X86ForceAlignArgPointerAttr>()) {
1006 // Get the LLVM function.
1007 llvm::Function *Fn = cast<llvm::Function>(GV);
1008
1009 // Now add the 'alignstack' attribute with a value of 16.
Bill Wendling0d583392012-10-15 20:36:26 +00001010 llvm::AttrBuilder B;
Bill Wendlinge91e9ec2012-10-14 03:28:14 +00001011 B.addStackAlignmentAttr(16);
Bill Wendling909b6de2013-01-23 00:21:06 +00001012 Fn->addAttributes(llvm::AttributeSet::FunctionIndex,
1013 llvm::AttributeSet::get(CGM.getLLVMContext(),
1014 llvm::AttributeSet::FunctionIndex,
1015 B));
Charles Davis74f72932010-02-13 15:54:06 +00001016 }
1017 }
1018}
1019
John McCall6374c332010-03-06 00:35:14 +00001020bool X86_32TargetCodeGenInfo::initDwarfEHRegSizeTable(
1021 CodeGen::CodeGenFunction &CGF,
1022 llvm::Value *Address) const {
1023 CodeGen::CGBuilderTy &Builder = CGF.Builder;
John McCall6374c332010-03-06 00:35:14 +00001024
Chris Lattner8b418682012-02-07 00:39:47 +00001025 llvm::Value *Four8 = llvm::ConstantInt::get(CGF.Int8Ty, 4);
Michael J. Spencer8bea82f2010-08-25 18:17:27 +00001026
John McCall6374c332010-03-06 00:35:14 +00001027 // 0-7 are the eight integer registers; the order is different
1028 // on Darwin (for EH), but the range is the same.
1029 // 8 is %eip.
John McCallaeeb7012010-05-27 06:19:26 +00001030 AssignToArrayRange(Builder, Address, Four8, 0, 8);
John McCall6374c332010-03-06 00:35:14 +00001031
1032 if (CGF.CGM.isTargetDarwin()) {
1033 // 12-16 are st(0..4). Not sure why we stop at 4.
1034 // These have size 16, which is sizeof(long double) on
1035 // platforms with 8-byte alignment for that type.
Chris Lattner8b418682012-02-07 00:39:47 +00001036 llvm::Value *Sixteen8 = llvm::ConstantInt::get(CGF.Int8Ty, 16);
John McCallaeeb7012010-05-27 06:19:26 +00001037 AssignToArrayRange(Builder, Address, Sixteen8, 12, 16);
Michael J. Spencer8bea82f2010-08-25 18:17:27 +00001038
John McCall6374c332010-03-06 00:35:14 +00001039 } else {
1040 // 9 is %eflags, which doesn't get a size on Darwin for some
1041 // reason.
1042 Builder.CreateStore(Four8, Builder.CreateConstInBoundsGEP1_32(Address, 9));
1043
1044 // 11-16 are st(0..5). Not sure why we stop at 5.
1045 // These have size 12, which is sizeof(long double) on
1046 // platforms with 4-byte alignment for that type.
Chris Lattner8b418682012-02-07 00:39:47 +00001047 llvm::Value *Twelve8 = llvm::ConstantInt::get(CGF.Int8Ty, 12);
John McCallaeeb7012010-05-27 06:19:26 +00001048 AssignToArrayRange(Builder, Address, Twelve8, 11, 16);
1049 }
John McCall6374c332010-03-06 00:35:14 +00001050
1051 return false;
1052}
1053
Chris Lattnerdce5ad02010-06-28 20:05:43 +00001054//===----------------------------------------------------------------------===//
1055// X86-64 ABI Implementation
1056//===----------------------------------------------------------------------===//
1057
1058
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00001059namespace {
1060/// X86_64ABIInfo - The X86_64 ABI information.
1061class X86_64ABIInfo : public ABIInfo {
1062 enum Class {
1063 Integer = 0,
1064 SSE,
1065 SSEUp,
1066 X87,
1067 X87Up,
1068 ComplexX87,
1069 NoClass,
1070 Memory
1071 };
1072
1073 /// merge - Implement the X86_64 ABI merging algorithm.
1074 ///
1075 /// Merge an accumulating classification \arg Accum with a field
1076 /// classification \arg Field.
1077 ///
1078 /// \param Accum - The accumulating classification. This should
1079 /// always be either NoClass or the result of a previous merge
1080 /// call. In addition, this should never be Memory (the caller
1081 /// should just return Memory for the aggregate).
Chris Lattner1090a9b2010-06-28 21:43:59 +00001082 static Class merge(Class Accum, Class Field);
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00001083
Bruno Cardoso Lopes4943c152011-07-11 22:41:29 +00001084 /// postMerge - Implement the X86_64 ABI post merging algorithm.
1085 ///
1086 /// Post merger cleanup, reduces a malformed Hi and Lo pair to
1087 /// final MEMORY or SSE classes when necessary.
1088 ///
1089 /// \param AggregateSize - The size of the current aggregate in
1090 /// the classification process.
1091 ///
1092 /// \param Lo - The classification for the parts of the type
1093 /// residing in the low word of the containing object.
1094 ///
1095 /// \param Hi - The classification for the parts of the type
1096 /// residing in the higher words of the containing object.
1097 ///
1098 void postMerge(unsigned AggregateSize, Class &Lo, Class &Hi) const;
1099
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00001100 /// classify - Determine the x86_64 register classes in which the
1101 /// given type T should be passed.
1102 ///
1103 /// \param Lo - The classification for the parts of the type
1104 /// residing in the low word of the containing object.
1105 ///
1106 /// \param Hi - The classification for the parts of the type
1107 /// residing in the high word of the containing object.
1108 ///
1109 /// \param OffsetBase - The bit offset of this type in the
1110 /// containing object. Some parameters are classified different
1111 /// depending on whether they straddle an eightbyte boundary.
1112 ///
1113 /// If a word is unused its result will be NoClass; if a type should
1114 /// be passed in Memory then at least the classification of \arg Lo
1115 /// will be Memory.
1116 ///
Sylvestre Ledruf3477c12012-09-27 10:16:10 +00001117 /// The \arg Lo class will be NoClass iff the argument is ignored.
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00001118 ///
1119 /// If the \arg Lo class is ComplexX87, then the \arg Hi class will
1120 /// also be ComplexX87.
Chris Lattner9c254f02010-06-29 06:01:59 +00001121 void classify(QualType T, uint64_t OffsetBase, Class &Lo, Class &Hi) const;
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00001122
Bruno Cardoso Lopes4943c152011-07-11 22:41:29 +00001123 llvm::Type *GetByteVectorType(QualType Ty) const;
Chris Lattner9cbe4f02011-07-09 17:41:47 +00001124 llvm::Type *GetSSETypeAtOffset(llvm::Type *IRType,
1125 unsigned IROffset, QualType SourceTy,
1126 unsigned SourceOffset) const;
1127 llvm::Type *GetINTEGERTypeAtOffset(llvm::Type *IRType,
1128 unsigned IROffset, QualType SourceTy,
1129 unsigned SourceOffset) const;
Michael J. Spencer8bea82f2010-08-25 18:17:27 +00001130
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00001131 /// getIndirectResult - Give a source type \arg Ty, return a suitable result
Daniel Dunbar46c54fb2010-04-21 19:49:55 +00001132 /// such that the argument will be returned in memory.
Chris Lattner9c254f02010-06-29 06:01:59 +00001133 ABIArgInfo getIndirectReturnResult(QualType Ty) const;
Daniel Dunbar46c54fb2010-04-21 19:49:55 +00001134
1135 /// getIndirectResult - Give a source type \arg Ty, return a suitable result
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00001136 /// such that the argument will be passed in memory.
Daniel Dunbaredfac032012-03-10 01:03:58 +00001137 ///
1138 /// \param freeIntRegs - The number of free integer registers remaining
1139 /// available.
1140 ABIArgInfo getIndirectResult(QualType Ty, unsigned freeIntRegs) const;
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00001141
Chris Lattnera3c109b2010-07-29 02:16:43 +00001142 ABIArgInfo classifyReturnType(QualType RetTy) const;
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00001143
Bill Wendlingbb465d72010-10-18 03:41:31 +00001144 ABIArgInfo classifyArgumentType(QualType Ty,
Daniel Dunbaredfac032012-03-10 01:03:58 +00001145 unsigned freeIntRegs,
Bill Wendlingbb465d72010-10-18 03:41:31 +00001146 unsigned &neededInt,
Bill Wendling99aaae82010-10-18 23:51:38 +00001147 unsigned &neededSSE) const;
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00001148
Eli Friedmanee1ad992011-12-02 00:11:43 +00001149 bool IsIllegalVectorType(QualType Ty) const;
1150
John McCall67a57732011-04-21 01:20:55 +00001151 /// The 0.98 ABI revision clarified a lot of ambiguities,
1152 /// unfortunately in ways that were not always consistent with
1153 /// certain previous compilers. In particular, platforms which
1154 /// required strict binary compatibility with older versions of GCC
1155 /// may need to exempt themselves.
1156 bool honorsRevision0_98() const {
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001157 return !getContext().getTargetInfo().getTriple().isOSDarwin();
John McCall67a57732011-04-21 01:20:55 +00001158 }
1159
Eli Friedmanee1ad992011-12-02 00:11:43 +00001160 bool HasAVX;
Derek Schuffbabaf312012-10-11 15:52:22 +00001161 // Some ABIs (e.g. X32 ABI and Native Client OS) use 32 bit pointers on
1162 // 64-bit hardware.
1163 bool Has64BitPointers;
Eli Friedmanee1ad992011-12-02 00:11:43 +00001164
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00001165public:
Eli Friedmanee1ad992011-12-02 00:11:43 +00001166 X86_64ABIInfo(CodeGen::CodeGenTypes &CGT, bool hasavx) :
Derek Schuffbabaf312012-10-11 15:52:22 +00001167 ABIInfo(CGT), HasAVX(hasavx),
Derek Schuff90da80c2012-10-11 18:21:13 +00001168 Has64BitPointers(CGT.getDataLayout().getPointerSize(0) == 8) {
Derek Schuffbabaf312012-10-11 15:52:22 +00001169 }
Chris Lattner9c254f02010-06-29 06:01:59 +00001170
John McCallde5d3c72012-02-17 03:33:10 +00001171 bool isPassedUsingAVXType(QualType type) const {
1172 unsigned neededInt, neededSSE;
Daniel Dunbaredfac032012-03-10 01:03:58 +00001173 // The freeIntRegs argument doesn't matter here.
1174 ABIArgInfo info = classifyArgumentType(type, 0, neededInt, neededSSE);
John McCallde5d3c72012-02-17 03:33:10 +00001175 if (info.isDirect()) {
1176 llvm::Type *ty = info.getCoerceToType();
1177 if (llvm::VectorType *vectorTy = dyn_cast_or_null<llvm::VectorType>(ty))
1178 return (vectorTy->getBitWidth() > 128);
1179 }
1180 return false;
1181 }
1182
Chris Lattneree5dcd02010-07-29 02:31:05 +00001183 virtual void computeInfo(CGFunctionInfo &FI) const;
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00001184
1185 virtual llvm::Value *EmitVAArg(llvm::Value *VAListAddr, QualType Ty,
1186 CodeGenFunction &CGF) const;
1187};
Anton Korobeynikov82d0a412010-01-10 12:58:08 +00001188
Chris Lattnerf13721d2010-08-31 16:44:54 +00001189/// WinX86_64ABIInfo - The Windows X86_64 ABI information.
NAKAMURA Takumia7573222011-01-17 22:56:31 +00001190class WinX86_64ABIInfo : public ABIInfo {
1191
1192 ABIArgInfo classify(QualType Ty) const;
1193
Chris Lattnerf13721d2010-08-31 16:44:54 +00001194public:
NAKAMURA Takumia7573222011-01-17 22:56:31 +00001195 WinX86_64ABIInfo(CodeGen::CodeGenTypes &CGT) : ABIInfo(CGT) {}
1196
1197 virtual void computeInfo(CGFunctionInfo &FI) const;
Chris Lattnerf13721d2010-08-31 16:44:54 +00001198
1199 virtual llvm::Value *EmitVAArg(llvm::Value *VAListAddr, QualType Ty,
1200 CodeGenFunction &CGF) const;
1201};
1202
Anton Korobeynikov82d0a412010-01-10 12:58:08 +00001203class X86_64TargetCodeGenInfo : public TargetCodeGenInfo {
1204public:
Eli Friedmanee1ad992011-12-02 00:11:43 +00001205 X86_64TargetCodeGenInfo(CodeGen::CodeGenTypes &CGT, bool HasAVX)
Derek Schuffbabaf312012-10-11 15:52:22 +00001206 : TargetCodeGenInfo(new X86_64ABIInfo(CGT, HasAVX)) {}
John McCall6374c332010-03-06 00:35:14 +00001207
John McCallde5d3c72012-02-17 03:33:10 +00001208 const X86_64ABIInfo &getABIInfo() const {
1209 return static_cast<const X86_64ABIInfo&>(TargetCodeGenInfo::getABIInfo());
1210 }
1211
John McCall6374c332010-03-06 00:35:14 +00001212 int getDwarfEHStackPointer(CodeGen::CodeGenModule &CGM) const {
1213 return 7;
1214 }
1215
1216 bool initDwarfEHRegSizeTable(CodeGen::CodeGenFunction &CGF,
1217 llvm::Value *Address) const {
Chris Lattner8b418682012-02-07 00:39:47 +00001218 llvm::Value *Eight8 = llvm::ConstantInt::get(CGF.Int8Ty, 8);
Michael J. Spencer8bea82f2010-08-25 18:17:27 +00001219
John McCallaeeb7012010-05-27 06:19:26 +00001220 // 0-15 are the 16 integer registers.
1221 // 16 is %rip.
Chris Lattner8b418682012-02-07 00:39:47 +00001222 AssignToArrayRange(CGF.Builder, Address, Eight8, 0, 16);
John McCall6374c332010-03-06 00:35:14 +00001223 return false;
1224 }
Peter Collingbourne4b93d662011-02-19 23:03:58 +00001225
Jay Foadef6de3d2011-07-11 09:56:20 +00001226 llvm::Type* adjustInlineAsmType(CodeGen::CodeGenFunction &CGF,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001227 StringRef Constraint,
Jay Foadef6de3d2011-07-11 09:56:20 +00001228 llvm::Type* Ty) const {
Peter Collingbourne4b93d662011-02-19 23:03:58 +00001229 return X86AdjustInlineAsmType(CGF, Constraint, Ty);
1230 }
1231
John McCallde5d3c72012-02-17 03:33:10 +00001232 bool isNoProtoCallVariadic(const CallArgList &args,
1233 const FunctionNoProtoType *fnType) const {
John McCall01f151e2011-09-21 08:08:30 +00001234 // The default CC on x86-64 sets %al to the number of SSA
1235 // registers used, and GCC sets this when calling an unprototyped
Eli Friedman3ed79032011-12-01 04:53:19 +00001236 // function, so we override the default behavior. However, don't do
Eli Friedman68805fe2011-12-06 03:08:26 +00001237 // that when AVX types are involved: the ABI explicitly states it is
1238 // undefined, and it doesn't work in practice because of how the ABI
1239 // defines varargs anyway.
John McCallde5d3c72012-02-17 03:33:10 +00001240 if (fnType->getCallConv() == CC_Default || fnType->getCallConv() == CC_C) {
Eli Friedman3ed79032011-12-01 04:53:19 +00001241 bool HasAVXType = false;
John McCallde5d3c72012-02-17 03:33:10 +00001242 for (CallArgList::const_iterator
1243 it = args.begin(), ie = args.end(); it != ie; ++it) {
1244 if (getABIInfo().isPassedUsingAVXType(it->Ty)) {
1245 HasAVXType = true;
1246 break;
Eli Friedman3ed79032011-12-01 04:53:19 +00001247 }
1248 }
John McCallde5d3c72012-02-17 03:33:10 +00001249
Eli Friedman3ed79032011-12-01 04:53:19 +00001250 if (!HasAVXType)
1251 return true;
1252 }
John McCall01f151e2011-09-21 08:08:30 +00001253
John McCallde5d3c72012-02-17 03:33:10 +00001254 return TargetCodeGenInfo::isNoProtoCallVariadic(args, fnType);
John McCall01f151e2011-09-21 08:08:30 +00001255 }
1256
Anton Korobeynikov82d0a412010-01-10 12:58:08 +00001257};
1258
Chris Lattnerf13721d2010-08-31 16:44:54 +00001259class WinX86_64TargetCodeGenInfo : public TargetCodeGenInfo {
1260public:
1261 WinX86_64TargetCodeGenInfo(CodeGen::CodeGenTypes &CGT)
1262 : TargetCodeGenInfo(new WinX86_64ABIInfo(CGT)) {}
1263
1264 int getDwarfEHStackPointer(CodeGen::CodeGenModule &CGM) const {
1265 return 7;
1266 }
1267
1268 bool initDwarfEHRegSizeTable(CodeGen::CodeGenFunction &CGF,
1269 llvm::Value *Address) const {
Chris Lattner8b418682012-02-07 00:39:47 +00001270 llvm::Value *Eight8 = llvm::ConstantInt::get(CGF.Int8Ty, 8);
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001271
Chris Lattnerf13721d2010-08-31 16:44:54 +00001272 // 0-15 are the 16 integer registers.
1273 // 16 is %rip.
Chris Lattner8b418682012-02-07 00:39:47 +00001274 AssignToArrayRange(CGF.Builder, Address, Eight8, 0, 16);
Chris Lattnerf13721d2010-08-31 16:44:54 +00001275 return false;
1276 }
1277};
1278
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00001279}
1280
Bruno Cardoso Lopes4943c152011-07-11 22:41:29 +00001281void X86_64ABIInfo::postMerge(unsigned AggregateSize, Class &Lo,
1282 Class &Hi) const {
1283 // AMD64-ABI 3.2.3p2: Rule 5. Then a post merger cleanup is done:
1284 //
1285 // (a) If one of the classes is Memory, the whole argument is passed in
1286 // memory.
1287 //
1288 // (b) If X87UP is not preceded by X87, the whole argument is passed in
1289 // memory.
1290 //
1291 // (c) If the size of the aggregate exceeds two eightbytes and the first
1292 // eightbyte isn't SSE or any other eightbyte isn't SSEUP, the whole
1293 // argument is passed in memory. NOTE: This is necessary to keep the
1294 // ABI working for processors that don't support the __m256 type.
1295 //
1296 // (d) If SSEUP is not preceded by SSE or SSEUP, it is converted to SSE.
1297 //
1298 // Some of these are enforced by the merging logic. Others can arise
1299 // only with unions; for example:
1300 // union { _Complex double; unsigned; }
1301 //
1302 // Note that clauses (b) and (c) were added in 0.98.
1303 //
1304 if (Hi == Memory)
1305 Lo = Memory;
1306 if (Hi == X87Up && Lo != X87 && honorsRevision0_98())
1307 Lo = Memory;
1308 if (AggregateSize > 128 && (Lo != SSE || Hi != SSEUp))
1309 Lo = Memory;
1310 if (Hi == SSEUp && Lo != SSE)
1311 Hi = SSE;
1312}
1313
Chris Lattner1090a9b2010-06-28 21:43:59 +00001314X86_64ABIInfo::Class X86_64ABIInfo::merge(Class Accum, Class Field) {
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00001315 // AMD64-ABI 3.2.3p2: Rule 4. Each field of an object is
1316 // classified recursively so that always two fields are
1317 // considered. The resulting class is calculated according to
1318 // the classes of the fields in the eightbyte:
1319 //
1320 // (a) If both classes are equal, this is the resulting class.
1321 //
1322 // (b) If one of the classes is NO_CLASS, the resulting class is
1323 // the other class.
1324 //
1325 // (c) If one of the classes is MEMORY, the result is the MEMORY
1326 // class.
1327 //
1328 // (d) If one of the classes is INTEGER, the result is the
1329 // INTEGER.
1330 //
1331 // (e) If one of the classes is X87, X87UP, COMPLEX_X87 class,
1332 // MEMORY is used as class.
1333 //
1334 // (f) Otherwise class SSE is used.
1335
1336 // Accum should never be memory (we should have returned) or
1337 // ComplexX87 (because this cannot be passed in a structure).
1338 assert((Accum != Memory && Accum != ComplexX87) &&
1339 "Invalid accumulated classification during merge.");
1340 if (Accum == Field || Field == NoClass)
1341 return Accum;
Chris Lattner1090a9b2010-06-28 21:43:59 +00001342 if (Field == Memory)
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00001343 return Memory;
Chris Lattner1090a9b2010-06-28 21:43:59 +00001344 if (Accum == NoClass)
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00001345 return Field;
Chris Lattner1090a9b2010-06-28 21:43:59 +00001346 if (Accum == Integer || Field == Integer)
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00001347 return Integer;
Chris Lattner1090a9b2010-06-28 21:43:59 +00001348 if (Field == X87 || Field == X87Up || Field == ComplexX87 ||
1349 Accum == X87 || Accum == X87Up)
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00001350 return Memory;
Chris Lattner1090a9b2010-06-28 21:43:59 +00001351 return SSE;
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00001352}
1353
Chris Lattnerbcaedae2010-06-30 19:14:05 +00001354void X86_64ABIInfo::classify(QualType Ty, uint64_t OffsetBase,
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00001355 Class &Lo, Class &Hi) const {
1356 // FIXME: This code can be simplified by introducing a simple value class for
1357 // Class pairs with appropriate constructor methods for the various
1358 // situations.
1359
1360 // FIXME: Some of the split computations are wrong; unaligned vectors
1361 // shouldn't be passed in registers for example, so there is no chance they
1362 // can straddle an eightbyte. Verify & simplify.
1363
1364 Lo = Hi = NoClass;
1365
1366 Class &Current = OffsetBase < 64 ? Lo : Hi;
1367 Current = Memory;
1368
John McCall183700f2009-09-21 23:43:11 +00001369 if (const BuiltinType *BT = Ty->getAs<BuiltinType>()) {
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00001370 BuiltinType::Kind k = BT->getKind();
1371
1372 if (k == BuiltinType::Void) {
1373 Current = NoClass;
1374 } else if (k == BuiltinType::Int128 || k == BuiltinType::UInt128) {
1375 Lo = Integer;
1376 Hi = Integer;
1377 } else if (k >= BuiltinType::Bool && k <= BuiltinType::LongLong) {
1378 Current = Integer;
Derek Schuff7da46f92012-10-11 16:55:58 +00001379 } else if ((k == BuiltinType::Float || k == BuiltinType::Double) ||
1380 (k == BuiltinType::LongDouble &&
1381 getContext().getTargetInfo().getTriple().getOS() ==
Eli Bendersky441d9f72012-12-04 18:38:10 +00001382 llvm::Triple::NaCl)) {
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00001383 Current = SSE;
1384 } else if (k == BuiltinType::LongDouble) {
1385 Lo = X87;
1386 Hi = X87Up;
1387 }
1388 // FIXME: _Decimal32 and _Decimal64 are SSE.
1389 // FIXME: _float128 and _Decimal128 are (SSE, SSEUp).
Chris Lattner1090a9b2010-06-28 21:43:59 +00001390 return;
1391 }
Michael J. Spencer8bea82f2010-08-25 18:17:27 +00001392
Chris Lattner1090a9b2010-06-28 21:43:59 +00001393 if (const EnumType *ET = Ty->getAs<EnumType>()) {
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00001394 // Classify the underlying integer type.
Chris Lattner9c254f02010-06-29 06:01:59 +00001395 classify(ET->getDecl()->getIntegerType(), OffsetBase, Lo, Hi);
Chris Lattner1090a9b2010-06-28 21:43:59 +00001396 return;
1397 }
Michael J. Spencer8bea82f2010-08-25 18:17:27 +00001398
Chris Lattner1090a9b2010-06-28 21:43:59 +00001399 if (Ty->hasPointerRepresentation()) {
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00001400 Current = Integer;
Chris Lattner1090a9b2010-06-28 21:43:59 +00001401 return;
1402 }
Michael J. Spencer8bea82f2010-08-25 18:17:27 +00001403
Chris Lattner1090a9b2010-06-28 21:43:59 +00001404 if (Ty->isMemberPointerType()) {
Derek Schuffbabaf312012-10-11 15:52:22 +00001405 if (Ty->isMemberFunctionPointerType() && Has64BitPointers)
Daniel Dunbar67d438d2010-05-15 00:00:37 +00001406 Lo = Hi = Integer;
1407 else
1408 Current = Integer;
Chris Lattner1090a9b2010-06-28 21:43:59 +00001409 return;
1410 }
Michael J. Spencer8bea82f2010-08-25 18:17:27 +00001411
Chris Lattner1090a9b2010-06-28 21:43:59 +00001412 if (const VectorType *VT = Ty->getAs<VectorType>()) {
Chris Lattnerea044322010-07-29 02:01:43 +00001413 uint64_t Size = getContext().getTypeSize(VT);
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00001414 if (Size == 32) {
1415 // gcc passes all <4 x char>, <2 x short>, <1 x int>, <1 x
1416 // float> as integer.
1417 Current = Integer;
1418
1419 // If this type crosses an eightbyte boundary, it should be
1420 // split.
1421 uint64_t EB_Real = (OffsetBase) / 64;
1422 uint64_t EB_Imag = (OffsetBase + Size - 1) / 64;
1423 if (EB_Real != EB_Imag)
1424 Hi = Lo;
1425 } else if (Size == 64) {
1426 // gcc passes <1 x double> in memory. :(
1427 if (VT->getElementType()->isSpecificBuiltinType(BuiltinType::Double))
1428 return;
1429
1430 // gcc passes <1 x long long> as INTEGER.
Chris Lattner473f8e72010-08-26 18:03:20 +00001431 if (VT->getElementType()->isSpecificBuiltinType(BuiltinType::LongLong) ||
Chris Lattner0fefa412010-08-26 18:13:50 +00001432 VT->getElementType()->isSpecificBuiltinType(BuiltinType::ULongLong) ||
1433 VT->getElementType()->isSpecificBuiltinType(BuiltinType::Long) ||
1434 VT->getElementType()->isSpecificBuiltinType(BuiltinType::ULong))
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00001435 Current = Integer;
1436 else
1437 Current = SSE;
1438
1439 // If this type crosses an eightbyte boundary, it should be
1440 // split.
1441 if (OffsetBase && OffsetBase != 64)
1442 Hi = Lo;
Eli Friedmanee1ad992011-12-02 00:11:43 +00001443 } else if (Size == 128 || (HasAVX && Size == 256)) {
Bruno Cardoso Lopes4943c152011-07-11 22:41:29 +00001444 // Arguments of 256-bits are split into four eightbyte chunks. The
1445 // least significant one belongs to class SSE and all the others to class
1446 // SSEUP. The original Lo and Hi design considers that types can't be
1447 // greater than 128-bits, so a 64-bit split in Hi and Lo makes sense.
1448 // This design isn't correct for 256-bits, but since there're no cases
1449 // where the upper parts would need to be inspected, avoid adding
1450 // complexity and just consider Hi to match the 64-256 part.
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00001451 Lo = SSE;
1452 Hi = SSEUp;
1453 }
Chris Lattner1090a9b2010-06-28 21:43:59 +00001454 return;
1455 }
Michael J. Spencer8bea82f2010-08-25 18:17:27 +00001456
Chris Lattner1090a9b2010-06-28 21:43:59 +00001457 if (const ComplexType *CT = Ty->getAs<ComplexType>()) {
Chris Lattnerea044322010-07-29 02:01:43 +00001458 QualType ET = getContext().getCanonicalType(CT->getElementType());
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00001459
Chris Lattnerea044322010-07-29 02:01:43 +00001460 uint64_t Size = getContext().getTypeSize(Ty);
Douglas Gregor2ade35e2010-06-16 00:17:44 +00001461 if (ET->isIntegralOrEnumerationType()) {
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00001462 if (Size <= 64)
1463 Current = Integer;
1464 else if (Size <= 128)
1465 Lo = Hi = Integer;
Chris Lattnerea044322010-07-29 02:01:43 +00001466 } else if (ET == getContext().FloatTy)
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00001467 Current = SSE;
Derek Schuff7da46f92012-10-11 16:55:58 +00001468 else if (ET == getContext().DoubleTy ||
1469 (ET == getContext().LongDoubleTy &&
1470 getContext().getTargetInfo().getTriple().getOS() ==
Eli Bendersky441d9f72012-12-04 18:38:10 +00001471 llvm::Triple::NaCl))
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00001472 Lo = Hi = SSE;
Chris Lattnerea044322010-07-29 02:01:43 +00001473 else if (ET == getContext().LongDoubleTy)
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00001474 Current = ComplexX87;
1475
1476 // If this complex type crosses an eightbyte boundary then it
1477 // should be split.
1478 uint64_t EB_Real = (OffsetBase) / 64;
Chris Lattnerea044322010-07-29 02:01:43 +00001479 uint64_t EB_Imag = (OffsetBase + getContext().getTypeSize(ET)) / 64;
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00001480 if (Hi == NoClass && EB_Real != EB_Imag)
1481 Hi = Lo;
Michael J. Spencer8bea82f2010-08-25 18:17:27 +00001482
Chris Lattner1090a9b2010-06-28 21:43:59 +00001483 return;
1484 }
Michael J. Spencer8bea82f2010-08-25 18:17:27 +00001485
Chris Lattnerea044322010-07-29 02:01:43 +00001486 if (const ConstantArrayType *AT = getContext().getAsConstantArrayType(Ty)) {
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00001487 // Arrays are treated like structures.
1488
Chris Lattnerea044322010-07-29 02:01:43 +00001489 uint64_t Size = getContext().getTypeSize(Ty);
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00001490
1491 // AMD64-ABI 3.2.3p2: Rule 1. If the size of an object is larger
Bruno Cardoso Lopes4943c152011-07-11 22:41:29 +00001492 // than four eightbytes, ..., it has class MEMORY.
1493 if (Size > 256)
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00001494 return;
1495
1496 // AMD64-ABI 3.2.3p2: Rule 1. If ..., or it contains unaligned
1497 // fields, it has class MEMORY.
1498 //
1499 // Only need to check alignment of array base.
Chris Lattnerea044322010-07-29 02:01:43 +00001500 if (OffsetBase % getContext().getTypeAlign(AT->getElementType()))
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00001501 return;
1502
1503 // Otherwise implement simplified merge. We could be smarter about
1504 // this, but it isn't worth it and would be harder to verify.
1505 Current = NoClass;
Chris Lattnerea044322010-07-29 02:01:43 +00001506 uint64_t EltSize = getContext().getTypeSize(AT->getElementType());
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00001507 uint64_t ArraySize = AT->getSize().getZExtValue();
Bruno Cardoso Lopes089d8922011-07-12 01:27:38 +00001508
1509 // The only case a 256-bit wide vector could be used is when the array
1510 // contains a single 256-bit element. Since Lo and Hi logic isn't extended
1511 // to work for sizes wider than 128, early check and fallback to memory.
1512 if (Size > 128 && EltSize != 256)
1513 return;
1514
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00001515 for (uint64_t i=0, Offset=OffsetBase; i<ArraySize; ++i, Offset += EltSize) {
1516 Class FieldLo, FieldHi;
Chris Lattner9c254f02010-06-29 06:01:59 +00001517 classify(AT->getElementType(), Offset, FieldLo, FieldHi);
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00001518 Lo = merge(Lo, FieldLo);
1519 Hi = merge(Hi, FieldHi);
1520 if (Lo == Memory || Hi == Memory)
1521 break;
1522 }
1523
Bruno Cardoso Lopes4943c152011-07-11 22:41:29 +00001524 postMerge(Size, Lo, Hi);
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00001525 assert((Hi != SSEUp || Lo == SSE) && "Invalid SSEUp array classification.");
Chris Lattner1090a9b2010-06-28 21:43:59 +00001526 return;
1527 }
Michael J. Spencer8bea82f2010-08-25 18:17:27 +00001528
Chris Lattner1090a9b2010-06-28 21:43:59 +00001529 if (const RecordType *RT = Ty->getAs<RecordType>()) {
Chris Lattnerea044322010-07-29 02:01:43 +00001530 uint64_t Size = getContext().getTypeSize(Ty);
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00001531
1532 // AMD64-ABI 3.2.3p2: Rule 1. If the size of an object is larger
Bruno Cardoso Lopes4943c152011-07-11 22:41:29 +00001533 // than four eightbytes, ..., it has class MEMORY.
1534 if (Size > 256)
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00001535 return;
1536
Anders Carlsson0a8f8472009-09-16 15:53:40 +00001537 // AMD64-ABI 3.2.3p2: Rule 2. If a C++ object has either a non-trivial
1538 // copy constructor or a non-trivial destructor, it is passed by invisible
1539 // reference.
1540 if (hasNonTrivialDestructorOrCopyConstructor(RT))
1541 return;
Daniel Dunbarce9f4232009-11-22 23:01:23 +00001542
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00001543 const RecordDecl *RD = RT->getDecl();
1544
1545 // Assume variable sized types are passed in memory.
1546 if (RD->hasFlexibleArrayMember())
1547 return;
1548
Chris Lattnerea044322010-07-29 02:01:43 +00001549 const ASTRecordLayout &Layout = getContext().getASTRecordLayout(RD);
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00001550
1551 // Reset Lo class, this will be recomputed.
1552 Current = NoClass;
Daniel Dunbarce9f4232009-11-22 23:01:23 +00001553
1554 // If this is a C++ record, classify the bases first.
1555 if (const CXXRecordDecl *CXXRD = dyn_cast<CXXRecordDecl>(RD)) {
1556 for (CXXRecordDecl::base_class_const_iterator i = CXXRD->bases_begin(),
1557 e = CXXRD->bases_end(); i != e; ++i) {
1558 assert(!i->isVirtual() && !i->getType()->isDependentType() &&
1559 "Unexpected base class!");
1560 const CXXRecordDecl *Base =
1561 cast<CXXRecordDecl>(i->getType()->getAs<RecordType>()->getDecl());
1562
1563 // Classify this field.
1564 //
1565 // AMD64-ABI 3.2.3p2: Rule 3. If the size of the aggregate exceeds a
1566 // single eightbyte, each is classified separately. Each eightbyte gets
1567 // initialized to class NO_CLASS.
1568 Class FieldLo, FieldHi;
Benjamin Kramerd4f51982012-07-04 18:45:14 +00001569 uint64_t Offset =
1570 OffsetBase + getContext().toBits(Layout.getBaseClassOffset(Base));
Chris Lattner9c254f02010-06-29 06:01:59 +00001571 classify(i->getType(), Offset, FieldLo, FieldHi);
Daniel Dunbarce9f4232009-11-22 23:01:23 +00001572 Lo = merge(Lo, FieldLo);
1573 Hi = merge(Hi, FieldHi);
1574 if (Lo == Memory || Hi == Memory)
1575 break;
1576 }
1577 }
1578
1579 // Classify the fields one at a time, merging the results.
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00001580 unsigned idx = 0;
Bruno Cardoso Lopes548e4782011-07-12 22:30:58 +00001581 for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end();
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001582 i != e; ++i, ++idx) {
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00001583 uint64_t Offset = OffsetBase + Layout.getFieldOffset(idx);
1584 bool BitField = i->isBitField();
1585
Bruno Cardoso Lopesb8981df2011-07-13 21:58:55 +00001586 // AMD64-ABI 3.2.3p2: Rule 1. If the size of an object is larger than
1587 // four eightbytes, or it contains unaligned fields, it has class MEMORY.
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00001588 //
Bruno Cardoso Lopesb8981df2011-07-13 21:58:55 +00001589 // The only case a 256-bit wide vector could be used is when the struct
1590 // contains a single 256-bit element. Since Lo and Hi logic isn't extended
1591 // to work for sizes wider than 128, early check and fallback to memory.
1592 //
1593 if (Size > 128 && getContext().getTypeSize(i->getType()) != 256) {
1594 Lo = Memory;
1595 return;
1596 }
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00001597 // Note, skip this test for bit-fields, see below.
Chris Lattnerea044322010-07-29 02:01:43 +00001598 if (!BitField && Offset % getContext().getTypeAlign(i->getType())) {
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00001599 Lo = Memory;
1600 return;
1601 }
1602
1603 // Classify this field.
1604 //
1605 // AMD64-ABI 3.2.3p2: Rule 3. If the size of the aggregate
1606 // exceeds a single eightbyte, each is classified
1607 // separately. Each eightbyte gets initialized to class
1608 // NO_CLASS.
1609 Class FieldLo, FieldHi;
1610
1611 // Bit-fields require special handling, they do not force the
1612 // structure to be passed in memory even if unaligned, and
1613 // therefore they can straddle an eightbyte.
1614 if (BitField) {
1615 // Ignore padding bit-fields.
1616 if (i->isUnnamedBitfield())
1617 continue;
1618
1619 uint64_t Offset = OffsetBase + Layout.getFieldOffset(idx);
Richard Smitha6b8b2c2011-10-10 18:28:20 +00001620 uint64_t Size = i->getBitWidthValue(getContext());
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00001621
1622 uint64_t EB_Lo = Offset / 64;
1623 uint64_t EB_Hi = (Offset + Size - 1) / 64;
1624 FieldLo = FieldHi = NoClass;
1625 if (EB_Lo) {
1626 assert(EB_Hi == EB_Lo && "Invalid classification, type > 16 bytes.");
1627 FieldLo = NoClass;
1628 FieldHi = Integer;
1629 } else {
1630 FieldLo = Integer;
1631 FieldHi = EB_Hi ? Integer : NoClass;
1632 }
1633 } else
Chris Lattner9c254f02010-06-29 06:01:59 +00001634 classify(i->getType(), Offset, FieldLo, FieldHi);
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00001635 Lo = merge(Lo, FieldLo);
1636 Hi = merge(Hi, FieldHi);
1637 if (Lo == Memory || Hi == Memory)
1638 break;
1639 }
1640
Bruno Cardoso Lopes4943c152011-07-11 22:41:29 +00001641 postMerge(Size, Lo, Hi);
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00001642 }
1643}
1644
Chris Lattner9c254f02010-06-29 06:01:59 +00001645ABIArgInfo X86_64ABIInfo::getIndirectReturnResult(QualType Ty) const {
Daniel Dunbar46c54fb2010-04-21 19:49:55 +00001646 // If this is a scalar LLVM value then assume LLVM will pass it in the right
1647 // place naturally.
John McCalld608cdb2010-08-22 10:59:02 +00001648 if (!isAggregateTypeForABI(Ty)) {
Daniel Dunbar46c54fb2010-04-21 19:49:55 +00001649 // Treat an enum type as its underlying type.
1650 if (const EnumType *EnumTy = Ty->getAs<EnumType>())
1651 Ty = EnumTy->getDecl()->getIntegerType();
1652
1653 return (Ty->isPromotableIntegerType() ?
1654 ABIArgInfo::getExtend() : ABIArgInfo::getDirect());
1655 }
1656
1657 return ABIArgInfo::getIndirect(0);
1658}
1659
Eli Friedmanee1ad992011-12-02 00:11:43 +00001660bool X86_64ABIInfo::IsIllegalVectorType(QualType Ty) const {
1661 if (const VectorType *VecTy = Ty->getAs<VectorType>()) {
1662 uint64_t Size = getContext().getTypeSize(VecTy);
1663 unsigned LargestVector = HasAVX ? 256 : 128;
1664 if (Size <= 64 || Size > LargestVector)
1665 return true;
1666 }
1667
1668 return false;
1669}
1670
Daniel Dunbaredfac032012-03-10 01:03:58 +00001671ABIArgInfo X86_64ABIInfo::getIndirectResult(QualType Ty,
1672 unsigned freeIntRegs) const {
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00001673 // If this is a scalar LLVM value then assume LLVM will pass it in the right
1674 // place naturally.
Daniel Dunbaredfac032012-03-10 01:03:58 +00001675 //
1676 // This assumption is optimistic, as there could be free registers available
1677 // when we need to pass this argument in memory, and LLVM could try to pass
1678 // the argument in the free register. This does not seem to happen currently,
1679 // but this code would be much safer if we could mark the argument with
1680 // 'onstack'. See PR12193.
Eli Friedmanee1ad992011-12-02 00:11:43 +00001681 if (!isAggregateTypeForABI(Ty) && !IsIllegalVectorType(Ty)) {
Douglas Gregoraa74a1e2010-02-02 20:10:50 +00001682 // Treat an enum type as its underlying type.
1683 if (const EnumType *EnumTy = Ty->getAs<EnumType>())
1684 Ty = EnumTy->getDecl()->getIntegerType();
1685
Anton Korobeynikovcc6fa882009-06-06 09:36:29 +00001686 return (Ty->isPromotableIntegerType() ?
1687 ABIArgInfo::getExtend() : ABIArgInfo::getDirect());
Douglas Gregoraa74a1e2010-02-02 20:10:50 +00001688 }
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00001689
Daniel Dunbar46c54fb2010-04-21 19:49:55 +00001690 if (isRecordWithNonTrivialDestructorOrCopyConstructor(Ty))
1691 return ABIArgInfo::getIndirect(0, /*ByVal=*/false);
Anders Carlsson0a8f8472009-09-16 15:53:40 +00001692
Chris Lattner855d2272011-05-22 23:21:23 +00001693 // Compute the byval alignment. We specify the alignment of the byval in all
1694 // cases so that the mid-level optimizer knows the alignment of the byval.
1695 unsigned Align = std::max(getContext().getTypeAlign(Ty) / 8, 8U);
Daniel Dunbaredfac032012-03-10 01:03:58 +00001696
1697 // Attempt to avoid passing indirect results using byval when possible. This
1698 // is important for good codegen.
1699 //
1700 // We do this by coercing the value into a scalar type which the backend can
1701 // handle naturally (i.e., without using byval).
1702 //
1703 // For simplicity, we currently only do this when we have exhausted all of the
1704 // free integer registers. Doing this when there are free integer registers
1705 // would require more care, as we would have to ensure that the coerced value
1706 // did not claim the unused register. That would require either reording the
1707 // arguments to the function (so that any subsequent inreg values came first),
1708 // or only doing this optimization when there were no following arguments that
1709 // might be inreg.
1710 //
1711 // We currently expect it to be rare (particularly in well written code) for
1712 // arguments to be passed on the stack when there are still free integer
1713 // registers available (this would typically imply large structs being passed
1714 // by value), so this seems like a fair tradeoff for now.
1715 //
1716 // We can revisit this if the backend grows support for 'onstack' parameter
1717 // attributes. See PR12193.
1718 if (freeIntRegs == 0) {
1719 uint64_t Size = getContext().getTypeSize(Ty);
1720
1721 // If this type fits in an eightbyte, coerce it into the matching integral
1722 // type, which will end up on the stack (with alignment 8).
1723 if (Align == 8 && Size <= 64)
1724 return ABIArgInfo::getDirect(llvm::IntegerType::get(getVMContext(),
1725 Size));
1726 }
1727
Chris Lattner855d2272011-05-22 23:21:23 +00001728 return ABIArgInfo::getIndirect(Align);
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00001729}
1730
Bruno Cardoso Lopes4943c152011-07-11 22:41:29 +00001731/// GetByteVectorType - The ABI specifies that a value should be passed in an
1732/// full vector XMM/YMM register. Pick an LLVM IR type that will be passed as a
Chris Lattner0f408f52010-07-29 04:56:46 +00001733/// vector register.
Bruno Cardoso Lopes4943c152011-07-11 22:41:29 +00001734llvm::Type *X86_64ABIInfo::GetByteVectorType(QualType Ty) const {
Chris Lattner9cbe4f02011-07-09 17:41:47 +00001735 llvm::Type *IRType = CGT.ConvertType(Ty);
Michael J. Spencer8bea82f2010-08-25 18:17:27 +00001736
Chris Lattner15842bd2010-07-29 05:02:29 +00001737 // Wrapper structs that just contain vectors are passed just like vectors,
1738 // strip them off if present.
Chris Lattner9cbe4f02011-07-09 17:41:47 +00001739 llvm::StructType *STy = dyn_cast<llvm::StructType>(IRType);
Chris Lattner15842bd2010-07-29 05:02:29 +00001740 while (STy && STy->getNumElements() == 1) {
1741 IRType = STy->getElementType(0);
1742 STy = dyn_cast<llvm::StructType>(IRType);
1743 }
Michael J. Spencer8bea82f2010-08-25 18:17:27 +00001744
Bruno Cardoso Lopes528a8c72011-07-08 22:57:35 +00001745 // If the preferred type is a 16-byte vector, prefer to pass it.
Chris Lattner9cbe4f02011-07-09 17:41:47 +00001746 if (llvm::VectorType *VT = dyn_cast<llvm::VectorType>(IRType)){
1747 llvm::Type *EltTy = VT->getElementType();
Bruno Cardoso Lopes4943c152011-07-11 22:41:29 +00001748 unsigned BitWidth = VT->getBitWidth();
Tanya Lattnerce275672011-11-28 23:18:11 +00001749 if ((BitWidth >= 128 && BitWidth <= 256) &&
Chris Lattner0f408f52010-07-29 04:56:46 +00001750 (EltTy->isFloatTy() || EltTy->isDoubleTy() ||
1751 EltTy->isIntegerTy(8) || EltTy->isIntegerTy(16) ||
1752 EltTy->isIntegerTy(32) || EltTy->isIntegerTy(64) ||
1753 EltTy->isIntegerTy(128)))
1754 return VT;
1755 }
Michael J. Spencer8bea82f2010-08-25 18:17:27 +00001756
Chris Lattner0f408f52010-07-29 04:56:46 +00001757 return llvm::VectorType::get(llvm::Type::getDoubleTy(getVMContext()), 2);
1758}
1759
Chris Lattnere2962be2010-07-29 07:30:00 +00001760/// BitsContainNoUserData - Return true if the specified [start,end) bit range
1761/// is known to either be off the end of the specified type or being in
1762/// alignment padding. The user type specified is known to be at most 128 bits
1763/// in size, and have passed through X86_64ABIInfo::classify with a successful
1764/// classification that put one of the two halves in the INTEGER class.
1765///
1766/// It is conservatively correct to return false.
1767static bool BitsContainNoUserData(QualType Ty, unsigned StartBit,
1768 unsigned EndBit, ASTContext &Context) {
1769 // If the bytes being queried are off the end of the type, there is no user
1770 // data hiding here. This handles analysis of builtins, vectors and other
1771 // types that don't contain interesting padding.
1772 unsigned TySize = (unsigned)Context.getTypeSize(Ty);
1773 if (TySize <= StartBit)
1774 return true;
1775
Chris Lattner021c3a32010-07-29 07:43:55 +00001776 if (const ConstantArrayType *AT = Context.getAsConstantArrayType(Ty)) {
1777 unsigned EltSize = (unsigned)Context.getTypeSize(AT->getElementType());
1778 unsigned NumElts = (unsigned)AT->getSize().getZExtValue();
1779
1780 // Check each element to see if the element overlaps with the queried range.
1781 for (unsigned i = 0; i != NumElts; ++i) {
1782 // If the element is after the span we care about, then we're done..
1783 unsigned EltOffset = i*EltSize;
1784 if (EltOffset >= EndBit) break;
Michael J. Spencer8bea82f2010-08-25 18:17:27 +00001785
Chris Lattner021c3a32010-07-29 07:43:55 +00001786 unsigned EltStart = EltOffset < StartBit ? StartBit-EltOffset :0;
1787 if (!BitsContainNoUserData(AT->getElementType(), EltStart,
1788 EndBit-EltOffset, Context))
1789 return false;
1790 }
1791 // If it overlaps no elements, then it is safe to process as padding.
1792 return true;
1793 }
Michael J. Spencer8bea82f2010-08-25 18:17:27 +00001794
Chris Lattnere2962be2010-07-29 07:30:00 +00001795 if (const RecordType *RT = Ty->getAs<RecordType>()) {
1796 const RecordDecl *RD = RT->getDecl();
1797 const ASTRecordLayout &Layout = Context.getASTRecordLayout(RD);
Michael J. Spencer8bea82f2010-08-25 18:17:27 +00001798
Chris Lattnere2962be2010-07-29 07:30:00 +00001799 // If this is a C++ record, check the bases first.
1800 if (const CXXRecordDecl *CXXRD = dyn_cast<CXXRecordDecl>(RD)) {
1801 for (CXXRecordDecl::base_class_const_iterator i = CXXRD->bases_begin(),
1802 e = CXXRD->bases_end(); i != e; ++i) {
1803 assert(!i->isVirtual() && !i->getType()->isDependentType() &&
1804 "Unexpected base class!");
1805 const CXXRecordDecl *Base =
1806 cast<CXXRecordDecl>(i->getType()->getAs<RecordType>()->getDecl());
Michael J. Spencer8bea82f2010-08-25 18:17:27 +00001807
Chris Lattnere2962be2010-07-29 07:30:00 +00001808 // If the base is after the span we care about, ignore it.
Benjamin Kramerd4f51982012-07-04 18:45:14 +00001809 unsigned BaseOffset = Context.toBits(Layout.getBaseClassOffset(Base));
Chris Lattnere2962be2010-07-29 07:30:00 +00001810 if (BaseOffset >= EndBit) continue;
Michael J. Spencer8bea82f2010-08-25 18:17:27 +00001811
Chris Lattnere2962be2010-07-29 07:30:00 +00001812 unsigned BaseStart = BaseOffset < StartBit ? StartBit-BaseOffset :0;
1813 if (!BitsContainNoUserData(i->getType(), BaseStart,
1814 EndBit-BaseOffset, Context))
1815 return false;
1816 }
1817 }
Michael J. Spencer8bea82f2010-08-25 18:17:27 +00001818
Chris Lattnere2962be2010-07-29 07:30:00 +00001819 // Verify that no field has data that overlaps the region of interest. Yes
1820 // this could be sped up a lot by being smarter about queried fields,
1821 // however we're only looking at structs up to 16 bytes, so we don't care
1822 // much.
1823 unsigned idx = 0;
1824 for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end();
1825 i != e; ++i, ++idx) {
1826 unsigned FieldOffset = (unsigned)Layout.getFieldOffset(idx);
Michael J. Spencer8bea82f2010-08-25 18:17:27 +00001827
Chris Lattnere2962be2010-07-29 07:30:00 +00001828 // If we found a field after the region we care about, then we're done.
1829 if (FieldOffset >= EndBit) break;
1830
1831 unsigned FieldStart = FieldOffset < StartBit ? StartBit-FieldOffset :0;
1832 if (!BitsContainNoUserData(i->getType(), FieldStart, EndBit-FieldOffset,
1833 Context))
1834 return false;
1835 }
Michael J. Spencer8bea82f2010-08-25 18:17:27 +00001836
Chris Lattnere2962be2010-07-29 07:30:00 +00001837 // If nothing in this record overlapped the area of interest, then we're
1838 // clean.
1839 return true;
1840 }
Michael J. Spencer8bea82f2010-08-25 18:17:27 +00001841
Chris Lattnere2962be2010-07-29 07:30:00 +00001842 return false;
1843}
1844
Chris Lattner0b362002010-07-29 18:39:32 +00001845/// ContainsFloatAtOffset - Return true if the specified LLVM IR type has a
1846/// float member at the specified offset. For example, {int,{float}} has a
1847/// float at offset 4. It is conservatively correct for this routine to return
1848/// false.
Chris Lattner2acc6e32011-07-18 04:24:23 +00001849static bool ContainsFloatAtOffset(llvm::Type *IRType, unsigned IROffset,
Micah Villmow25a6a842012-10-08 16:25:52 +00001850 const llvm::DataLayout &TD) {
Chris Lattner0b362002010-07-29 18:39:32 +00001851 // Base case if we find a float.
1852 if (IROffset == 0 && IRType->isFloatTy())
1853 return true;
Michael J. Spencer8bea82f2010-08-25 18:17:27 +00001854
Chris Lattner0b362002010-07-29 18:39:32 +00001855 // If this is a struct, recurse into the field at the specified offset.
Chris Lattner2acc6e32011-07-18 04:24:23 +00001856 if (llvm::StructType *STy = dyn_cast<llvm::StructType>(IRType)) {
Chris Lattner0b362002010-07-29 18:39:32 +00001857 const llvm::StructLayout *SL = TD.getStructLayout(STy);
1858 unsigned Elt = SL->getElementContainingOffset(IROffset);
1859 IROffset -= SL->getElementOffset(Elt);
1860 return ContainsFloatAtOffset(STy->getElementType(Elt), IROffset, TD);
1861 }
Michael J. Spencer8bea82f2010-08-25 18:17:27 +00001862
Chris Lattner0b362002010-07-29 18:39:32 +00001863 // If this is an array, recurse into the field at the specified offset.
Chris Lattner2acc6e32011-07-18 04:24:23 +00001864 if (llvm::ArrayType *ATy = dyn_cast<llvm::ArrayType>(IRType)) {
1865 llvm::Type *EltTy = ATy->getElementType();
Chris Lattner0b362002010-07-29 18:39:32 +00001866 unsigned EltSize = TD.getTypeAllocSize(EltTy);
1867 IROffset -= IROffset/EltSize*EltSize;
1868 return ContainsFloatAtOffset(EltTy, IROffset, TD);
1869 }
1870
1871 return false;
1872}
1873
Chris Lattnerf47c9442010-07-29 18:13:09 +00001874
1875/// GetSSETypeAtOffset - Return a type that will be passed by the backend in the
1876/// low 8 bytes of an XMM register, corresponding to the SSE class.
Chris Lattner9cbe4f02011-07-09 17:41:47 +00001877llvm::Type *X86_64ABIInfo::
1878GetSSETypeAtOffset(llvm::Type *IRType, unsigned IROffset,
Chris Lattnerf47c9442010-07-29 18:13:09 +00001879 QualType SourceTy, unsigned SourceOffset) const {
Chris Lattnercba8d312010-07-29 18:19:50 +00001880 // The only three choices we have are either double, <2 x float>, or float. We
Chris Lattnerf47c9442010-07-29 18:13:09 +00001881 // pass as float if the last 4 bytes is just padding. This happens for
1882 // structs that contain 3 floats.
1883 if (BitsContainNoUserData(SourceTy, SourceOffset*8+32,
1884 SourceOffset*8+64, getContext()))
1885 return llvm::Type::getFloatTy(getVMContext());
Michael J. Spencer8bea82f2010-08-25 18:17:27 +00001886
Chris Lattner0b362002010-07-29 18:39:32 +00001887 // We want to pass as <2 x float> if the LLVM IR type contains a float at
1888 // offset+0 and offset+4. Walk the LLVM IR type to find out if this is the
1889 // case.
Micah Villmow25a6a842012-10-08 16:25:52 +00001890 if (ContainsFloatAtOffset(IRType, IROffset, getDataLayout()) &&
1891 ContainsFloatAtOffset(IRType, IROffset+4, getDataLayout()))
Chris Lattner22fd4ba2010-08-25 23:39:14 +00001892 return llvm::VectorType::get(llvm::Type::getFloatTy(getVMContext()), 2);
Michael J. Spencer8bea82f2010-08-25 18:17:27 +00001893
Chris Lattnerf47c9442010-07-29 18:13:09 +00001894 return llvm::Type::getDoubleTy(getVMContext());
1895}
1896
1897
Chris Lattner0d2656d2010-07-29 17:40:35 +00001898/// GetINTEGERTypeAtOffset - The ABI specifies that a value should be passed in
1899/// an 8-byte GPR. This means that we either have a scalar or we are talking
1900/// about the high or low part of an up-to-16-byte struct. This routine picks
1901/// the best LLVM IR type to represent this, which may be i64 or may be anything
Chris Lattner49382de2010-07-28 22:44:07 +00001902/// else that the backend will pass in a GPR that works better (e.g. i8, %foo*,
1903/// etc).
1904///
1905/// PrefType is an LLVM IR type that corresponds to (part of) the IR type for
1906/// the source type. IROffset is an offset in bytes into the LLVM IR type that
1907/// the 8-byte value references. PrefType may be null.
1908///
1909/// SourceTy is the source level type for the entire argument. SourceOffset is
1910/// an offset into this that we're processing (which is always either 0 or 8).
1911///
Chris Lattner9cbe4f02011-07-09 17:41:47 +00001912llvm::Type *X86_64ABIInfo::
1913GetINTEGERTypeAtOffset(llvm::Type *IRType, unsigned IROffset,
Chris Lattner0d2656d2010-07-29 17:40:35 +00001914 QualType SourceTy, unsigned SourceOffset) const {
Chris Lattnere2962be2010-07-29 07:30:00 +00001915 // If we're dealing with an un-offset LLVM IR type, then it means that we're
1916 // returning an 8-byte unit starting with it. See if we can safely use it.
1917 if (IROffset == 0) {
1918 // Pointers and int64's always fill the 8-byte unit.
Derek Schuffbabaf312012-10-11 15:52:22 +00001919 if ((isa<llvm::PointerType>(IRType) && Has64BitPointers) ||
1920 IRType->isIntegerTy(64))
Chris Lattnere2962be2010-07-29 07:30:00 +00001921 return IRType;
Chris Lattner49382de2010-07-28 22:44:07 +00001922
Chris Lattnere2962be2010-07-29 07:30:00 +00001923 // If we have a 1/2/4-byte integer, we can use it only if the rest of the
1924 // goodness in the source type is just tail padding. This is allowed to
1925 // kick in for struct {double,int} on the int, but not on
1926 // struct{double,int,int} because we wouldn't return the second int. We
1927 // have to do this analysis on the source type because we can't depend on
1928 // unions being lowered a specific way etc.
1929 if (IRType->isIntegerTy(8) || IRType->isIntegerTy(16) ||
Derek Schuffbabaf312012-10-11 15:52:22 +00001930 IRType->isIntegerTy(32) ||
1931 (isa<llvm::PointerType>(IRType) && !Has64BitPointers)) {
1932 unsigned BitWidth = isa<llvm::PointerType>(IRType) ? 32 :
1933 cast<llvm::IntegerType>(IRType)->getBitWidth();
Michael J. Spencer8bea82f2010-08-25 18:17:27 +00001934
Chris Lattnere2962be2010-07-29 07:30:00 +00001935 if (BitsContainNoUserData(SourceTy, SourceOffset*8+BitWidth,
1936 SourceOffset*8+64, getContext()))
1937 return IRType;
1938 }
1939 }
Chris Lattner49382de2010-07-28 22:44:07 +00001940
Chris Lattner2acc6e32011-07-18 04:24:23 +00001941 if (llvm::StructType *STy = dyn_cast<llvm::StructType>(IRType)) {
Chris Lattner49382de2010-07-28 22:44:07 +00001942 // If this is a struct, recurse into the field at the specified offset.
Micah Villmow25a6a842012-10-08 16:25:52 +00001943 const llvm::StructLayout *SL = getDataLayout().getStructLayout(STy);
Chris Lattner49382de2010-07-28 22:44:07 +00001944 if (IROffset < SL->getSizeInBytes()) {
1945 unsigned FieldIdx = SL->getElementContainingOffset(IROffset);
1946 IROffset -= SL->getElementOffset(FieldIdx);
Michael J. Spencer8bea82f2010-08-25 18:17:27 +00001947
Chris Lattner0d2656d2010-07-29 17:40:35 +00001948 return GetINTEGERTypeAtOffset(STy->getElementType(FieldIdx), IROffset,
1949 SourceTy, SourceOffset);
Michael J. Spencer8bea82f2010-08-25 18:17:27 +00001950 }
Chris Lattner49382de2010-07-28 22:44:07 +00001951 }
Michael J. Spencer8bea82f2010-08-25 18:17:27 +00001952
Chris Lattner2acc6e32011-07-18 04:24:23 +00001953 if (llvm::ArrayType *ATy = dyn_cast<llvm::ArrayType>(IRType)) {
Chris Lattner9cbe4f02011-07-09 17:41:47 +00001954 llvm::Type *EltTy = ATy->getElementType();
Micah Villmow25a6a842012-10-08 16:25:52 +00001955 unsigned EltSize = getDataLayout().getTypeAllocSize(EltTy);
Chris Lattner021c3a32010-07-29 07:43:55 +00001956 unsigned EltOffset = IROffset/EltSize*EltSize;
Chris Lattner0d2656d2010-07-29 17:40:35 +00001957 return GetINTEGERTypeAtOffset(EltTy, IROffset-EltOffset, SourceTy,
1958 SourceOffset);
Chris Lattner021c3a32010-07-29 07:43:55 +00001959 }
Michael J. Spencer8bea82f2010-08-25 18:17:27 +00001960
Chris Lattner49382de2010-07-28 22:44:07 +00001961 // Okay, we don't have any better idea of what to pass, so we pass this in an
1962 // integer register that isn't too big to fit the rest of the struct.
Chris Lattner9e45a3d2010-07-29 17:34:39 +00001963 unsigned TySizeInBytes =
1964 (unsigned)getContext().getTypeSizeInChars(SourceTy).getQuantity();
Chris Lattner49382de2010-07-28 22:44:07 +00001965
Chris Lattner9e45a3d2010-07-29 17:34:39 +00001966 assert(TySizeInBytes != SourceOffset && "Empty field?");
Michael J. Spencer8bea82f2010-08-25 18:17:27 +00001967
Chris Lattner49382de2010-07-28 22:44:07 +00001968 // It is always safe to classify this as an integer type up to i64 that
1969 // isn't larger than the structure.
Chris Lattner9e45a3d2010-07-29 17:34:39 +00001970 return llvm::IntegerType::get(getVMContext(),
1971 std::min(TySizeInBytes-SourceOffset, 8U)*8);
Chris Lattner9c254f02010-06-29 06:01:59 +00001972}
1973
Chris Lattner66e7b682010-09-01 00:50:20 +00001974
1975/// GetX86_64ByValArgumentPair - Given a high and low type that can ideally
1976/// be used as elements of a two register pair to pass or return, return a
1977/// first class aggregate to represent them. For example, if the low part of
1978/// a by-value argument should be passed as i32* and the high part as float,
1979/// return {i32*, float}.
Chris Lattner9cbe4f02011-07-09 17:41:47 +00001980static llvm::Type *
Jay Foadef6de3d2011-07-11 09:56:20 +00001981GetX86_64ByValArgumentPair(llvm::Type *Lo, llvm::Type *Hi,
Micah Villmow25a6a842012-10-08 16:25:52 +00001982 const llvm::DataLayout &TD) {
Chris Lattner66e7b682010-09-01 00:50:20 +00001983 // In order to correctly satisfy the ABI, we need to the high part to start
1984 // at offset 8. If the high and low parts we inferred are both 4-byte types
1985 // (e.g. i32 and i32) then the resultant struct type ({i32,i32}) won't have
1986 // the second element at offset 8. Check for this:
1987 unsigned LoSize = (unsigned)TD.getTypeAllocSize(Lo);
1988 unsigned HiAlign = TD.getABITypeAlignment(Hi);
Micah Villmow25a6a842012-10-08 16:25:52 +00001989 unsigned HiStart = llvm::DataLayout::RoundUpAlignment(LoSize, HiAlign);
Chris Lattner66e7b682010-09-01 00:50:20 +00001990 assert(HiStart != 0 && HiStart <= 8 && "Invalid x86-64 argument pair!");
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001991
Chris Lattner66e7b682010-09-01 00:50:20 +00001992 // To handle this, we have to increase the size of the low part so that the
1993 // second element will start at an 8 byte offset. We can't increase the size
1994 // of the second element because it might make us access off the end of the
1995 // struct.
1996 if (HiStart != 8) {
1997 // There are only two sorts of types the ABI generation code can produce for
1998 // the low part of a pair that aren't 8 bytes in size: float or i8/i16/i32.
1999 // Promote these to a larger type.
2000 if (Lo->isFloatTy())
2001 Lo = llvm::Type::getDoubleTy(Lo->getContext());
2002 else {
2003 assert(Lo->isIntegerTy() && "Invalid/unknown lo type");
2004 Lo = llvm::Type::getInt64Ty(Lo->getContext());
2005 }
2006 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +00002007
Chris Lattner9cbe4f02011-07-09 17:41:47 +00002008 llvm::StructType *Result = llvm::StructType::get(Lo, Hi, NULL);
Michael J. Spencer9cac4942010-10-19 06:39:39 +00002009
2010
Chris Lattner66e7b682010-09-01 00:50:20 +00002011 // Verify that the second element is at an 8-byte offset.
2012 assert(TD.getStructLayout(Result)->getElementOffset(1) == 8 &&
2013 "Invalid x86-64 argument pair!");
2014 return Result;
2015}
2016
Chris Lattner519f68c2010-07-28 23:06:14 +00002017ABIArgInfo X86_64ABIInfo::
Chris Lattnera3c109b2010-07-29 02:16:43 +00002018classifyReturnType(QualType RetTy) const {
Chris Lattner519f68c2010-07-28 23:06:14 +00002019 // AMD64-ABI 3.2.3p4: Rule 1. Classify the return type with the
2020 // classification algorithm.
2021 X86_64ABIInfo::Class Lo, Hi;
2022 classify(RetTy, 0, Lo, Hi);
2023
2024 // Check some invariants.
2025 assert((Hi != Memory || Lo == Memory) && "Invalid memory classification.");
Chris Lattner519f68c2010-07-28 23:06:14 +00002026 assert((Hi != SSEUp || Lo == SSE) && "Invalid SSEUp classification.");
2027
Chris Lattner9cbe4f02011-07-09 17:41:47 +00002028 llvm::Type *ResType = 0;
Chris Lattner519f68c2010-07-28 23:06:14 +00002029 switch (Lo) {
2030 case NoClass:
Chris Lattner117e3f42010-07-30 04:02:24 +00002031 if (Hi == NoClass)
2032 return ABIArgInfo::getIgnore();
2033 // If the low part is just padding, it takes no register, leave ResType
2034 // null.
2035 assert((Hi == SSE || Hi == Integer || Hi == X87Up) &&
2036 "Unknown missing lo part");
2037 break;
Chris Lattner519f68c2010-07-28 23:06:14 +00002038
2039 case SSEUp:
2040 case X87Up:
David Blaikieb219cfc2011-09-23 05:06:16 +00002041 llvm_unreachable("Invalid classification for lo word.");
Chris Lattner519f68c2010-07-28 23:06:14 +00002042
2043 // AMD64-ABI 3.2.3p4: Rule 2. Types of class memory are returned via
2044 // hidden argument.
2045 case Memory:
2046 return getIndirectReturnResult(RetTy);
2047
2048 // AMD64-ABI 3.2.3p4: Rule 3. If the class is INTEGER, the next
2049 // available register of the sequence %rax, %rdx is used.
2050 case Integer:
Chris Lattner9cbe4f02011-07-09 17:41:47 +00002051 ResType = GetINTEGERTypeAtOffset(CGT.ConvertType(RetTy), 0, RetTy, 0);
Michael J. Spencer8bea82f2010-08-25 18:17:27 +00002052
Chris Lattnereb518b42010-07-29 21:42:50 +00002053 // If we have a sign or zero extended integer, make sure to return Extend
2054 // so that the parameter gets the right LLVM IR attributes.
2055 if (Hi == NoClass && isa<llvm::IntegerType>(ResType)) {
2056 // Treat an enum type as its underlying type.
2057 if (const EnumType *EnumTy = RetTy->getAs<EnumType>())
2058 RetTy = EnumTy->getDecl()->getIntegerType();
Michael J. Spencer8bea82f2010-08-25 18:17:27 +00002059
Chris Lattnereb518b42010-07-29 21:42:50 +00002060 if (RetTy->isIntegralOrEnumerationType() &&
2061 RetTy->isPromotableIntegerType())
2062 return ABIArgInfo::getExtend();
2063 }
Chris Lattner519f68c2010-07-28 23:06:14 +00002064 break;
2065
2066 // AMD64-ABI 3.2.3p4: Rule 4. If the class is SSE, the next
2067 // available SSE register of the sequence %xmm0, %xmm1 is used.
2068 case SSE:
Chris Lattner9cbe4f02011-07-09 17:41:47 +00002069 ResType = GetSSETypeAtOffset(CGT.ConvertType(RetTy), 0, RetTy, 0);
Chris Lattner0b30c672010-07-28 23:12:33 +00002070 break;
Chris Lattner519f68c2010-07-28 23:06:14 +00002071
2072 // AMD64-ABI 3.2.3p4: Rule 6. If the class is X87, the value is
2073 // returned on the X87 stack in %st0 as 80-bit x87 number.
2074 case X87:
Chris Lattnerea044322010-07-29 02:01:43 +00002075 ResType = llvm::Type::getX86_FP80Ty(getVMContext());
Chris Lattner0b30c672010-07-28 23:12:33 +00002076 break;
Chris Lattner519f68c2010-07-28 23:06:14 +00002077
2078 // AMD64-ABI 3.2.3p4: Rule 8. If the class is COMPLEX_X87, the real
2079 // part of the value is returned in %st0 and the imaginary part in
2080 // %st1.
2081 case ComplexX87:
2082 assert(Hi == ComplexX87 && "Unexpected ComplexX87 classification.");
Chris Lattner7650d952011-06-18 22:49:11 +00002083 ResType = llvm::StructType::get(llvm::Type::getX86_FP80Ty(getVMContext()),
Chris Lattnerea044322010-07-29 02:01:43 +00002084 llvm::Type::getX86_FP80Ty(getVMContext()),
Chris Lattner519f68c2010-07-28 23:06:14 +00002085 NULL);
2086 break;
2087 }
2088
Chris Lattner9cbe4f02011-07-09 17:41:47 +00002089 llvm::Type *HighPart = 0;
Chris Lattner519f68c2010-07-28 23:06:14 +00002090 switch (Hi) {
2091 // Memory was handled previously and X87 should
2092 // never occur as a hi class.
2093 case Memory:
2094 case X87:
David Blaikieb219cfc2011-09-23 05:06:16 +00002095 llvm_unreachable("Invalid classification for hi word.");
Chris Lattner519f68c2010-07-28 23:06:14 +00002096
2097 case ComplexX87: // Previously handled.
Chris Lattner0b30c672010-07-28 23:12:33 +00002098 case NoClass:
2099 break;
Chris Lattner519f68c2010-07-28 23:06:14 +00002100
Chris Lattner3db4dde2010-09-01 00:20:33 +00002101 case Integer:
Chris Lattner9cbe4f02011-07-09 17:41:47 +00002102 HighPart = GetINTEGERTypeAtOffset(CGT.ConvertType(RetTy), 8, RetTy, 8);
Chris Lattner3db4dde2010-09-01 00:20:33 +00002103 if (Lo == NoClass) // Return HighPart at offset 8 in memory.
2104 return ABIArgInfo::getDirect(HighPart, 8);
Chris Lattner519f68c2010-07-28 23:06:14 +00002105 break;
Chris Lattner3db4dde2010-09-01 00:20:33 +00002106 case SSE:
Chris Lattner9cbe4f02011-07-09 17:41:47 +00002107 HighPart = GetSSETypeAtOffset(CGT.ConvertType(RetTy), 8, RetTy, 8);
Chris Lattner3db4dde2010-09-01 00:20:33 +00002108 if (Lo == NoClass) // Return HighPart at offset 8 in memory.
2109 return ABIArgInfo::getDirect(HighPart, 8);
Chris Lattner519f68c2010-07-28 23:06:14 +00002110 break;
2111
2112 // AMD64-ABI 3.2.3p4: Rule 5. If the class is SSEUP, the eightbyte
Bruno Cardoso Lopes4943c152011-07-11 22:41:29 +00002113 // is passed in the next available eightbyte chunk if the last used
2114 // vector register.
Chris Lattner519f68c2010-07-28 23:06:14 +00002115 //
Chris Lattnerfc8f0e12011-04-15 05:22:18 +00002116 // SSEUP should always be preceded by SSE, just widen.
Chris Lattner519f68c2010-07-28 23:06:14 +00002117 case SSEUp:
2118 assert(Lo == SSE && "Unexpected SSEUp classification.");
Bruno Cardoso Lopes4943c152011-07-11 22:41:29 +00002119 ResType = GetByteVectorType(RetTy);
Chris Lattner519f68c2010-07-28 23:06:14 +00002120 break;
2121
2122 // AMD64-ABI 3.2.3p4: Rule 7. If the class is X87UP, the value is
2123 // returned together with the previous X87 value in %st0.
2124 case X87Up:
Chris Lattnerfc8f0e12011-04-15 05:22:18 +00002125 // If X87Up is preceded by X87, we don't need to do
Chris Lattner519f68c2010-07-28 23:06:14 +00002126 // anything. However, in some cases with unions it may not be
Chris Lattnerfc8f0e12011-04-15 05:22:18 +00002127 // preceded by X87. In such situations we follow gcc and pass the
Chris Lattner519f68c2010-07-28 23:06:14 +00002128 // extra bits in an SSE reg.
Chris Lattner603519d2010-07-29 17:49:08 +00002129 if (Lo != X87) {
Chris Lattner9cbe4f02011-07-09 17:41:47 +00002130 HighPart = GetSSETypeAtOffset(CGT.ConvertType(RetTy), 8, RetTy, 8);
Chris Lattner3db4dde2010-09-01 00:20:33 +00002131 if (Lo == NoClass) // Return HighPart at offset 8 in memory.
2132 return ABIArgInfo::getDirect(HighPart, 8);
Chris Lattner603519d2010-07-29 17:49:08 +00002133 }
Chris Lattner519f68c2010-07-28 23:06:14 +00002134 break;
2135 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +00002136
Chris Lattner3db4dde2010-09-01 00:20:33 +00002137 // If a high part was specified, merge it together with the low part. It is
Chris Lattner645406a2010-09-01 00:24:35 +00002138 // known to pass in the high eightbyte of the result. We do this by forming a
2139 // first class struct aggregate with the high and low part: {low, high}
Chris Lattner66e7b682010-09-01 00:50:20 +00002140 if (HighPart)
Micah Villmow25a6a842012-10-08 16:25:52 +00002141 ResType = GetX86_64ByValArgumentPair(ResType, HighPart, getDataLayout());
Chris Lattner519f68c2010-07-28 23:06:14 +00002142
Chris Lattnereb518b42010-07-29 21:42:50 +00002143 return ABIArgInfo::getDirect(ResType);
Chris Lattner519f68c2010-07-28 23:06:14 +00002144}
2145
Daniel Dunbaredfac032012-03-10 01:03:58 +00002146ABIArgInfo X86_64ABIInfo::classifyArgumentType(
2147 QualType Ty, unsigned freeIntRegs, unsigned &neededInt, unsigned &neededSSE)
2148 const
2149{
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00002150 X86_64ABIInfo::Class Lo, Hi;
Chris Lattner9c254f02010-06-29 06:01:59 +00002151 classify(Ty, 0, Lo, Hi);
Michael J. Spencer8bea82f2010-08-25 18:17:27 +00002152
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00002153 // Check some invariants.
2154 // FIXME: Enforce these by construction.
2155 assert((Hi != Memory || Lo == Memory) && "Invalid memory classification.");
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00002156 assert((Hi != SSEUp || Lo == SSE) && "Invalid SSEUp classification.");
2157
2158 neededInt = 0;
2159 neededSSE = 0;
Chris Lattner9cbe4f02011-07-09 17:41:47 +00002160 llvm::Type *ResType = 0;
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00002161 switch (Lo) {
2162 case NoClass:
Chris Lattner117e3f42010-07-30 04:02:24 +00002163 if (Hi == NoClass)
2164 return ABIArgInfo::getIgnore();
2165 // If the low part is just padding, it takes no register, leave ResType
2166 // null.
2167 assert((Hi == SSE || Hi == Integer || Hi == X87Up) &&
2168 "Unknown missing lo part");
2169 break;
Michael J. Spencer8bea82f2010-08-25 18:17:27 +00002170
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00002171 // AMD64-ABI 3.2.3p3: Rule 1. If the class is MEMORY, pass the argument
2172 // on the stack.
2173 case Memory:
2174
2175 // AMD64-ABI 3.2.3p3: Rule 5. If the class is X87, X87UP or
2176 // COMPLEX_X87, it is passed in memory.
2177 case X87:
2178 case ComplexX87:
Eli Friedmanded137f2011-06-29 07:04:55 +00002179 if (isRecordWithNonTrivialDestructorOrCopyConstructor(Ty))
2180 ++neededInt;
Daniel Dunbaredfac032012-03-10 01:03:58 +00002181 return getIndirectResult(Ty, freeIntRegs);
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00002182
2183 case SSEUp:
2184 case X87Up:
David Blaikieb219cfc2011-09-23 05:06:16 +00002185 llvm_unreachable("Invalid classification for lo word.");
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00002186
2187 // AMD64-ABI 3.2.3p3: Rule 2. If the class is INTEGER, the next
2188 // available register of the sequence %rdi, %rsi, %rdx, %rcx, %r8
2189 // and %r9 is used.
2190 case Integer:
Chris Lattner9c254f02010-06-29 06:01:59 +00002191 ++neededInt;
Michael J. Spencer8bea82f2010-08-25 18:17:27 +00002192
Chris Lattner49382de2010-07-28 22:44:07 +00002193 // Pick an 8-byte type based on the preferred type.
Chris Lattner9cbe4f02011-07-09 17:41:47 +00002194 ResType = GetINTEGERTypeAtOffset(CGT.ConvertType(Ty), 0, Ty, 0);
Chris Lattnereb518b42010-07-29 21:42:50 +00002195
2196 // If we have a sign or zero extended integer, make sure to return Extend
2197 // so that the parameter gets the right LLVM IR attributes.
2198 if (Hi == NoClass && isa<llvm::IntegerType>(ResType)) {
2199 // Treat an enum type as its underlying type.
2200 if (const EnumType *EnumTy = Ty->getAs<EnumType>())
2201 Ty = EnumTy->getDecl()->getIntegerType();
Michael J. Spencer8bea82f2010-08-25 18:17:27 +00002202
Chris Lattnereb518b42010-07-29 21:42:50 +00002203 if (Ty->isIntegralOrEnumerationType() &&
2204 Ty->isPromotableIntegerType())
2205 return ABIArgInfo::getExtend();
2206 }
Michael J. Spencer8bea82f2010-08-25 18:17:27 +00002207
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00002208 break;
2209
2210 // AMD64-ABI 3.2.3p3: Rule 3. If the class is SSE, the next
2211 // available SSE register is used, the registers are taken in the
2212 // order from %xmm0 to %xmm7.
Bill Wendlingbb465d72010-10-18 03:41:31 +00002213 case SSE: {
Chris Lattner9cbe4f02011-07-09 17:41:47 +00002214 llvm::Type *IRType = CGT.ConvertType(Ty);
Eli Friedman14508ff2011-07-02 00:57:27 +00002215 ResType = GetSSETypeAtOffset(IRType, 0, Ty, 0);
Bill Wendling99aaae82010-10-18 23:51:38 +00002216 ++neededSSE;
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00002217 break;
2218 }
Bill Wendlingbb465d72010-10-18 03:41:31 +00002219 }
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00002220
Chris Lattner9cbe4f02011-07-09 17:41:47 +00002221 llvm::Type *HighPart = 0;
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00002222 switch (Hi) {
2223 // Memory was handled previously, ComplexX87 and X87 should
Chris Lattnerfc8f0e12011-04-15 05:22:18 +00002224 // never occur as hi classes, and X87Up must be preceded by X87,
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00002225 // which is passed in memory.
2226 case Memory:
2227 case X87:
2228 case ComplexX87:
David Blaikieb219cfc2011-09-23 05:06:16 +00002229 llvm_unreachable("Invalid classification for hi word.");
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00002230
2231 case NoClass: break;
Michael J. Spencer8bea82f2010-08-25 18:17:27 +00002232
Chris Lattner645406a2010-09-01 00:24:35 +00002233 case Integer:
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00002234 ++neededInt;
Chris Lattner49382de2010-07-28 22:44:07 +00002235 // Pick an 8-byte type based on the preferred type.
Chris Lattner9cbe4f02011-07-09 17:41:47 +00002236 HighPart = GetINTEGERTypeAtOffset(CGT.ConvertType(Ty), 8, Ty, 8);
Michael J. Spencer8bea82f2010-08-25 18:17:27 +00002237
Chris Lattner645406a2010-09-01 00:24:35 +00002238 if (Lo == NoClass) // Pass HighPart at offset 8 in memory.
2239 return ABIArgInfo::getDirect(HighPart, 8);
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00002240 break;
2241
2242 // X87Up generally doesn't occur here (long double is passed in
2243 // memory), except in situations involving unions.
2244 case X87Up:
Chris Lattner645406a2010-09-01 00:24:35 +00002245 case SSE:
Chris Lattner9cbe4f02011-07-09 17:41:47 +00002246 HighPart = GetSSETypeAtOffset(CGT.ConvertType(Ty), 8, Ty, 8);
Michael J. Spencer8bea82f2010-08-25 18:17:27 +00002247
Chris Lattner645406a2010-09-01 00:24:35 +00002248 if (Lo == NoClass) // Pass HighPart at offset 8 in memory.
2249 return ABIArgInfo::getDirect(HighPart, 8);
Chris Lattner117e3f42010-07-30 04:02:24 +00002250
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00002251 ++neededSSE;
2252 break;
2253
2254 // AMD64-ABI 3.2.3p3: Rule 4. If the class is SSEUP, the
2255 // eightbyte is passed in the upper half of the last used SSE
Michael J. Spencer8bea82f2010-08-25 18:17:27 +00002256 // register. This only happens when 128-bit vectors are passed.
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00002257 case SSEUp:
Chris Lattnerab5722e2010-07-28 23:47:21 +00002258 assert(Lo == SSE && "Unexpected SSEUp classification");
Bruno Cardoso Lopes4943c152011-07-11 22:41:29 +00002259 ResType = GetByteVectorType(Ty);
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00002260 break;
2261 }
2262
Chris Lattner645406a2010-09-01 00:24:35 +00002263 // If a high part was specified, merge it together with the low part. It is
2264 // known to pass in the high eightbyte of the result. We do this by forming a
2265 // first class struct aggregate with the high and low part: {low, high}
2266 if (HighPart)
Micah Villmow25a6a842012-10-08 16:25:52 +00002267 ResType = GetX86_64ByValArgumentPair(ResType, HighPart, getDataLayout());
Michael J. Spencer9cac4942010-10-19 06:39:39 +00002268
Chris Lattnereb518b42010-07-29 21:42:50 +00002269 return ABIArgInfo::getDirect(ResType);
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00002270}
2271
Chris Lattneree5dcd02010-07-29 02:31:05 +00002272void X86_64ABIInfo::computeInfo(CGFunctionInfo &FI) const {
Michael J. Spencer8bea82f2010-08-25 18:17:27 +00002273
Chris Lattnera3c109b2010-07-29 02:16:43 +00002274 FI.getReturnInfo() = classifyReturnType(FI.getReturnType());
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00002275
2276 // Keep track of the number of assigned registers.
Bill Wendling99aaae82010-10-18 23:51:38 +00002277 unsigned freeIntRegs = 6, freeSSERegs = 8;
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00002278
2279 // If the return value is indirect, then the hidden argument is consuming one
2280 // integer register.
2281 if (FI.getReturnInfo().isIndirect())
2282 --freeIntRegs;
2283
2284 // AMD64-ABI 3.2.3p3: Once arguments are classified, the registers
2285 // get assigned (in left-to-right order) for passing as follows...
2286 for (CGFunctionInfo::arg_iterator it = FI.arg_begin(), ie = FI.arg_end();
2287 it != ie; ++it) {
Bill Wendling99aaae82010-10-18 23:51:38 +00002288 unsigned neededInt, neededSSE;
Daniel Dunbaredfac032012-03-10 01:03:58 +00002289 it->info = classifyArgumentType(it->type, freeIntRegs, neededInt,
2290 neededSSE);
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00002291
2292 // AMD64-ABI 3.2.3p3: If there are no registers available for any
2293 // eightbyte of an argument, the whole argument is passed on the
2294 // stack. If registers have already been assigned for some
2295 // eightbytes of such an argument, the assignments get reverted.
Bill Wendling99aaae82010-10-18 23:51:38 +00002296 if (freeIntRegs >= neededInt && freeSSERegs >= neededSSE) {
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00002297 freeIntRegs -= neededInt;
2298 freeSSERegs -= neededSSE;
2299 } else {
Daniel Dunbaredfac032012-03-10 01:03:58 +00002300 it->info = getIndirectResult(it->type, freeIntRegs);
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00002301 }
2302 }
2303}
2304
2305static llvm::Value *EmitVAArgFromMemory(llvm::Value *VAListAddr,
2306 QualType Ty,
2307 CodeGenFunction &CGF) {
2308 llvm::Value *overflow_arg_area_p =
2309 CGF.Builder.CreateStructGEP(VAListAddr, 2, "overflow_arg_area_p");
2310 llvm::Value *overflow_arg_area =
2311 CGF.Builder.CreateLoad(overflow_arg_area_p, "overflow_arg_area");
2312
2313 // AMD64-ABI 3.5.7p5: Step 7. Align l->overflow_arg_area upwards to a 16
2314 // byte boundary if alignment needed by type exceeds 8 byte boundary.
Eli Friedman8d2fe422011-11-18 02:44:19 +00002315 // It isn't stated explicitly in the standard, but in practice we use
2316 // alignment greater than 16 where necessary.
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00002317 uint64_t Align = CGF.getContext().getTypeAlign(Ty) / 8;
2318 if (Align > 8) {
Eli Friedman8d2fe422011-11-18 02:44:19 +00002319 // overflow_arg_area = (overflow_arg_area + align - 1) & -align;
Owen Anderson0032b272009-08-13 21:57:51 +00002320 llvm::Value *Offset =
Eli Friedman8d2fe422011-11-18 02:44:19 +00002321 llvm::ConstantInt::get(CGF.Int64Ty, Align - 1);
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00002322 overflow_arg_area = CGF.Builder.CreateGEP(overflow_arg_area, Offset);
2323 llvm::Value *AsInt = CGF.Builder.CreatePtrToInt(overflow_arg_area,
Chris Lattner77b89b82010-06-27 07:15:29 +00002324 CGF.Int64Ty);
Eli Friedman8d2fe422011-11-18 02:44:19 +00002325 llvm::Value *Mask = llvm::ConstantInt::get(CGF.Int64Ty, -(uint64_t)Align);
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00002326 overflow_arg_area =
2327 CGF.Builder.CreateIntToPtr(CGF.Builder.CreateAnd(AsInt, Mask),
2328 overflow_arg_area->getType(),
2329 "overflow_arg_area.align");
2330 }
2331
2332 // AMD64-ABI 3.5.7p5: Step 8. Fetch type from l->overflow_arg_area.
Chris Lattner2acc6e32011-07-18 04:24:23 +00002333 llvm::Type *LTy = CGF.ConvertTypeForMem(Ty);
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00002334 llvm::Value *Res =
2335 CGF.Builder.CreateBitCast(overflow_arg_area,
Owen Anderson96e0fc72009-07-29 22:16:19 +00002336 llvm::PointerType::getUnqual(LTy));
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00002337
2338 // AMD64-ABI 3.5.7p5: Step 9. Set l->overflow_arg_area to:
2339 // l->overflow_arg_area + sizeof(type).
2340 // AMD64-ABI 3.5.7p5: Step 10. Align l->overflow_arg_area upwards to
2341 // an 8 byte boundary.
2342
2343 uint64_t SizeInBytes = (CGF.getContext().getTypeSize(Ty) + 7) / 8;
Owen Anderson0032b272009-08-13 21:57:51 +00002344 llvm::Value *Offset =
Chris Lattner77b89b82010-06-27 07:15:29 +00002345 llvm::ConstantInt::get(CGF.Int32Ty, (SizeInBytes + 7) & ~7);
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00002346 overflow_arg_area = CGF.Builder.CreateGEP(overflow_arg_area, Offset,
2347 "overflow_arg_area.next");
2348 CGF.Builder.CreateStore(overflow_arg_area, overflow_arg_area_p);
2349
2350 // AMD64-ABI 3.5.7p5: Step 11. Return the fetched type.
2351 return Res;
2352}
2353
2354llvm::Value *X86_64ABIInfo::EmitVAArg(llvm::Value *VAListAddr, QualType Ty,
2355 CodeGenFunction &CGF) const {
2356 // Assume that va_list type is correct; should be pointer to LLVM type:
2357 // struct {
2358 // i32 gp_offset;
2359 // i32 fp_offset;
2360 // i8* overflow_arg_area;
2361 // i8* reg_save_area;
2362 // };
Bill Wendling99aaae82010-10-18 23:51:38 +00002363 unsigned neededInt, neededSSE;
Michael J. Spencer8bea82f2010-08-25 18:17:27 +00002364
Chris Lattnera14db752010-03-11 18:19:55 +00002365 Ty = CGF.getContext().getCanonicalType(Ty);
Daniel Dunbaredfac032012-03-10 01:03:58 +00002366 ABIArgInfo AI = classifyArgumentType(Ty, 0, neededInt, neededSSE);
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00002367
2368 // AMD64-ABI 3.5.7p5: Step 1. Determine whether type may be passed
2369 // in the registers. If not go to step 7.
2370 if (!neededInt && !neededSSE)
2371 return EmitVAArgFromMemory(VAListAddr, Ty, CGF);
2372
2373 // AMD64-ABI 3.5.7p5: Step 2. Compute num_gp to hold the number of
2374 // general purpose registers needed to pass type and num_fp to hold
2375 // the number of floating point registers needed.
2376
2377 // AMD64-ABI 3.5.7p5: Step 3. Verify whether arguments fit into
2378 // registers. In the case: l->gp_offset > 48 - num_gp * 8 or
2379 // l->fp_offset > 304 - num_fp * 16 go to step 7.
2380 //
2381 // NOTE: 304 is a typo, there are (6 * 8 + 8 * 16) = 176 bytes of
2382 // register save space).
2383
2384 llvm::Value *InRegs = 0;
2385 llvm::Value *gp_offset_p = 0, *gp_offset = 0;
2386 llvm::Value *fp_offset_p = 0, *fp_offset = 0;
2387 if (neededInt) {
2388 gp_offset_p = CGF.Builder.CreateStructGEP(VAListAddr, 0, "gp_offset_p");
2389 gp_offset = CGF.Builder.CreateLoad(gp_offset_p, "gp_offset");
Chris Lattner1090a9b2010-06-28 21:43:59 +00002390 InRegs = llvm::ConstantInt::get(CGF.Int32Ty, 48 - neededInt * 8);
2391 InRegs = CGF.Builder.CreateICmpULE(gp_offset, InRegs, "fits_in_gp");
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00002392 }
2393
2394 if (neededSSE) {
2395 fp_offset_p = CGF.Builder.CreateStructGEP(VAListAddr, 1, "fp_offset_p");
2396 fp_offset = CGF.Builder.CreateLoad(fp_offset_p, "fp_offset");
2397 llvm::Value *FitsInFP =
Chris Lattner1090a9b2010-06-28 21:43:59 +00002398 llvm::ConstantInt::get(CGF.Int32Ty, 176 - neededSSE * 16);
2399 FitsInFP = CGF.Builder.CreateICmpULE(fp_offset, FitsInFP, "fits_in_fp");
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00002400 InRegs = InRegs ? CGF.Builder.CreateAnd(InRegs, FitsInFP) : FitsInFP;
2401 }
2402
2403 llvm::BasicBlock *InRegBlock = CGF.createBasicBlock("vaarg.in_reg");
2404 llvm::BasicBlock *InMemBlock = CGF.createBasicBlock("vaarg.in_mem");
2405 llvm::BasicBlock *ContBlock = CGF.createBasicBlock("vaarg.end");
2406 CGF.Builder.CreateCondBr(InRegs, InRegBlock, InMemBlock);
2407
2408 // Emit code to load the value if it was passed in registers.
2409
2410 CGF.EmitBlock(InRegBlock);
2411
2412 // AMD64-ABI 3.5.7p5: Step 4. Fetch type from l->reg_save_area with
2413 // an offset of l->gp_offset and/or l->fp_offset. This may require
2414 // copying to a temporary location in case the parameter is passed
2415 // in different register classes or requires an alignment greater
2416 // than 8 for general purpose registers and 16 for XMM registers.
2417 //
2418 // FIXME: This really results in shameful code when we end up needing to
2419 // collect arguments from different places; often what should result in a
2420 // simple assembling of a structure from scattered addresses has many more
2421 // loads than necessary. Can we clean this up?
Chris Lattner2acc6e32011-07-18 04:24:23 +00002422 llvm::Type *LTy = CGF.ConvertTypeForMem(Ty);
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00002423 llvm::Value *RegAddr =
2424 CGF.Builder.CreateLoad(CGF.Builder.CreateStructGEP(VAListAddr, 3),
2425 "reg_save_area");
2426 if (neededInt && neededSSE) {
2427 // FIXME: Cleanup.
Chris Lattner800588f2010-07-29 06:26:06 +00002428 assert(AI.isDirect() && "Unexpected ABI info for mixed regs");
Chris Lattner2acc6e32011-07-18 04:24:23 +00002429 llvm::StructType *ST = cast<llvm::StructType>(AI.getCoerceToType());
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00002430 llvm::Value *Tmp = CGF.CreateTempAlloca(ST);
2431 assert(ST->getNumElements() == 2 && "Unexpected ABI info for mixed regs");
Chris Lattner2acc6e32011-07-18 04:24:23 +00002432 llvm::Type *TyLo = ST->getElementType(0);
2433 llvm::Type *TyHi = ST->getElementType(1);
Chris Lattnera8b7a7d2010-08-26 06:28:35 +00002434 assert((TyLo->isFPOrFPVectorTy() ^ TyHi->isFPOrFPVectorTy()) &&
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00002435 "Unexpected ABI info for mixed regs");
Chris Lattner2acc6e32011-07-18 04:24:23 +00002436 llvm::Type *PTyLo = llvm::PointerType::getUnqual(TyLo);
2437 llvm::Type *PTyHi = llvm::PointerType::getUnqual(TyHi);
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00002438 llvm::Value *GPAddr = CGF.Builder.CreateGEP(RegAddr, gp_offset);
2439 llvm::Value *FPAddr = CGF.Builder.CreateGEP(RegAddr, fp_offset);
Duncan Sandsf177d9d2010-02-15 16:14:01 +00002440 llvm::Value *RegLoAddr = TyLo->isFloatingPointTy() ? FPAddr : GPAddr;
2441 llvm::Value *RegHiAddr = TyLo->isFloatingPointTy() ? GPAddr : FPAddr;
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00002442 llvm::Value *V =
2443 CGF.Builder.CreateLoad(CGF.Builder.CreateBitCast(RegLoAddr, PTyLo));
2444 CGF.Builder.CreateStore(V, CGF.Builder.CreateStructGEP(Tmp, 0));
2445 V = CGF.Builder.CreateLoad(CGF.Builder.CreateBitCast(RegHiAddr, PTyHi));
2446 CGF.Builder.CreateStore(V, CGF.Builder.CreateStructGEP(Tmp, 1));
2447
Owen Andersona1cf15f2009-07-14 23:10:40 +00002448 RegAddr = CGF.Builder.CreateBitCast(Tmp,
Owen Anderson96e0fc72009-07-29 22:16:19 +00002449 llvm::PointerType::getUnqual(LTy));
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00002450 } else if (neededInt) {
2451 RegAddr = CGF.Builder.CreateGEP(RegAddr, gp_offset);
2452 RegAddr = CGF.Builder.CreateBitCast(RegAddr,
Owen Anderson96e0fc72009-07-29 22:16:19 +00002453 llvm::PointerType::getUnqual(LTy));
Chris Lattnerdce5ad02010-06-28 20:05:43 +00002454 } else if (neededSSE == 1) {
2455 RegAddr = CGF.Builder.CreateGEP(RegAddr, fp_offset);
2456 RegAddr = CGF.Builder.CreateBitCast(RegAddr,
2457 llvm::PointerType::getUnqual(LTy));
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00002458 } else {
Chris Lattnerdce5ad02010-06-28 20:05:43 +00002459 assert(neededSSE == 2 && "Invalid number of needed registers!");
2460 // SSE registers are spaced 16 bytes apart in the register save
2461 // area, we need to collect the two eightbytes together.
2462 llvm::Value *RegAddrLo = CGF.Builder.CreateGEP(RegAddr, fp_offset);
Chris Lattner1090a9b2010-06-28 21:43:59 +00002463 llvm::Value *RegAddrHi = CGF.Builder.CreateConstGEP1_32(RegAddrLo, 16);
Chris Lattner8b418682012-02-07 00:39:47 +00002464 llvm::Type *DoubleTy = CGF.DoubleTy;
Chris Lattner2acc6e32011-07-18 04:24:23 +00002465 llvm::Type *DblPtrTy =
Chris Lattnerdce5ad02010-06-28 20:05:43 +00002466 llvm::PointerType::getUnqual(DoubleTy);
Chris Lattner2acc6e32011-07-18 04:24:23 +00002467 llvm::StructType *ST = llvm::StructType::get(DoubleTy,
Chris Lattnerdce5ad02010-06-28 20:05:43 +00002468 DoubleTy, NULL);
2469 llvm::Value *V, *Tmp = CGF.CreateTempAlloca(ST);
2470 V = CGF.Builder.CreateLoad(CGF.Builder.CreateBitCast(RegAddrLo,
2471 DblPtrTy));
2472 CGF.Builder.CreateStore(V, CGF.Builder.CreateStructGEP(Tmp, 0));
2473 V = CGF.Builder.CreateLoad(CGF.Builder.CreateBitCast(RegAddrHi,
2474 DblPtrTy));
2475 CGF.Builder.CreateStore(V, CGF.Builder.CreateStructGEP(Tmp, 1));
2476 RegAddr = CGF.Builder.CreateBitCast(Tmp,
2477 llvm::PointerType::getUnqual(LTy));
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00002478 }
2479
2480 // AMD64-ABI 3.5.7p5: Step 5. Set:
2481 // l->gp_offset = l->gp_offset + num_gp * 8
2482 // l->fp_offset = l->fp_offset + num_fp * 16.
2483 if (neededInt) {
Chris Lattner77b89b82010-06-27 07:15:29 +00002484 llvm::Value *Offset = llvm::ConstantInt::get(CGF.Int32Ty, neededInt * 8);
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00002485 CGF.Builder.CreateStore(CGF.Builder.CreateAdd(gp_offset, Offset),
2486 gp_offset_p);
2487 }
2488 if (neededSSE) {
Chris Lattner77b89b82010-06-27 07:15:29 +00002489 llvm::Value *Offset = llvm::ConstantInt::get(CGF.Int32Ty, neededSSE * 16);
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00002490 CGF.Builder.CreateStore(CGF.Builder.CreateAdd(fp_offset, Offset),
2491 fp_offset_p);
2492 }
2493 CGF.EmitBranch(ContBlock);
2494
2495 // Emit code to load the value if it was passed in memory.
2496
2497 CGF.EmitBlock(InMemBlock);
2498 llvm::Value *MemAddr = EmitVAArgFromMemory(VAListAddr, Ty, CGF);
2499
2500 // Return the appropriate result.
2501
2502 CGF.EmitBlock(ContBlock);
Jay Foadbbf3bac2011-03-30 11:28:58 +00002503 llvm::PHINode *ResAddr = CGF.Builder.CreatePHI(RegAddr->getType(), 2,
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00002504 "vaarg.addr");
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00002505 ResAddr->addIncoming(RegAddr, InRegBlock);
2506 ResAddr->addIncoming(MemAddr, InMemBlock);
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00002507 return ResAddr;
2508}
2509
NAKAMURA Takumia7573222011-01-17 22:56:31 +00002510ABIArgInfo WinX86_64ABIInfo::classify(QualType Ty) const {
2511
2512 if (Ty->isVoidType())
2513 return ABIArgInfo::getIgnore();
2514
2515 if (const EnumType *EnumTy = Ty->getAs<EnumType>())
2516 Ty = EnumTy->getDecl()->getIntegerType();
2517
2518 uint64_t Size = getContext().getTypeSize(Ty);
2519
2520 if (const RecordType *RT = Ty->getAs<RecordType>()) {
NAKAMURA Takumiff8be0e2011-01-19 00:11:33 +00002521 if (hasNonTrivialDestructorOrCopyConstructor(RT) ||
2522 RT->getDecl()->hasFlexibleArrayMember())
NAKAMURA Takumia7573222011-01-17 22:56:31 +00002523 return ABIArgInfo::getIndirect(0, /*ByVal=*/false);
2524
NAKAMURA Takumi6f174332011-02-22 03:56:57 +00002525 // FIXME: mingw-w64-gcc emits 128-bit struct as i128
2526 if (Size == 128 &&
Eli Friedman55fc7e22012-01-25 22:46:34 +00002527 getContext().getTargetInfo().getTriple().getOS()
2528 == llvm::Triple::MinGW32)
NAKAMURA Takumi6f174332011-02-22 03:56:57 +00002529 return ABIArgInfo::getDirect(llvm::IntegerType::get(getVMContext(),
2530 Size));
2531
2532 // MS x64 ABI requirement: "Any argument that doesn't fit in 8 bytes, or is
2533 // not 1, 2, 4, or 8 bytes, must be passed by reference."
2534 if (Size <= 64 &&
NAKAMURA Takumiff8be0e2011-01-19 00:11:33 +00002535 (Size & (Size - 1)) == 0)
NAKAMURA Takumia7573222011-01-17 22:56:31 +00002536 return ABIArgInfo::getDirect(llvm::IntegerType::get(getVMContext(),
2537 Size));
2538
2539 return ABIArgInfo::getIndirect(0, /*ByVal=*/false);
2540 }
2541
2542 if (Ty->isPromotableIntegerType())
2543 return ABIArgInfo::getExtend();
2544
2545 return ABIArgInfo::getDirect();
2546}
2547
2548void WinX86_64ABIInfo::computeInfo(CGFunctionInfo &FI) const {
2549
2550 QualType RetTy = FI.getReturnType();
2551 FI.getReturnInfo() = classify(RetTy);
2552
NAKAMURA Takumia7573222011-01-17 22:56:31 +00002553 for (CGFunctionInfo::arg_iterator it = FI.arg_begin(), ie = FI.arg_end();
2554 it != ie; ++it)
2555 it->info = classify(it->type);
2556}
2557
Chris Lattnerf13721d2010-08-31 16:44:54 +00002558llvm::Value *WinX86_64ABIInfo::EmitVAArg(llvm::Value *VAListAddr, QualType Ty,
2559 CodeGenFunction &CGF) const {
Chris Lattner8b418682012-02-07 00:39:47 +00002560 llvm::Type *BPP = CGF.Int8PtrPtrTy;
Chris Lattnerdce5ad02010-06-28 20:05:43 +00002561
Chris Lattnerf13721d2010-08-31 16:44:54 +00002562 CGBuilderTy &Builder = CGF.Builder;
2563 llvm::Value *VAListAddrAsBPP = Builder.CreateBitCast(VAListAddr, BPP,
2564 "ap");
2565 llvm::Value *Addr = Builder.CreateLoad(VAListAddrAsBPP, "ap.cur");
2566 llvm::Type *PTy =
2567 llvm::PointerType::getUnqual(CGF.ConvertType(Ty));
2568 llvm::Value *AddrTyped = Builder.CreateBitCast(Addr, PTy);
2569
2570 uint64_t Offset =
2571 llvm::RoundUpToAlignment(CGF.getContext().getTypeSize(Ty) / 8, 8);
2572 llvm::Value *NextAddr =
2573 Builder.CreateGEP(Addr, llvm::ConstantInt::get(CGF.Int32Ty, Offset),
2574 "ap.next");
2575 Builder.CreateStore(NextAddr, VAListAddrAsBPP);
2576
2577 return AddrTyped;
2578}
Chris Lattnerdce5ad02010-06-28 20:05:43 +00002579
Benjamin Kramerc6f84cf2012-10-20 13:02:06 +00002580namespace {
2581
Derek Schuff263366f2012-10-16 22:30:41 +00002582class NaClX86_64ABIInfo : public ABIInfo {
2583 public:
2584 NaClX86_64ABIInfo(CodeGen::CodeGenTypes &CGT, bool HasAVX)
2585 : ABIInfo(CGT), PInfo(CGT), NInfo(CGT, HasAVX) {}
2586 virtual void computeInfo(CGFunctionInfo &FI) const;
2587 virtual llvm::Value *EmitVAArg(llvm::Value *VAListAddr, QualType Ty,
2588 CodeGenFunction &CGF) const;
2589 private:
2590 PNaClABIInfo PInfo; // Used for generating calls with pnaclcall callingconv.
2591 X86_64ABIInfo NInfo; // Used for everything else.
2592};
2593
2594class NaClX86_64TargetCodeGenInfo : public TargetCodeGenInfo {
2595 public:
2596 NaClX86_64TargetCodeGenInfo(CodeGen::CodeGenTypes &CGT, bool HasAVX)
2597 : TargetCodeGenInfo(new NaClX86_64ABIInfo(CGT, HasAVX)) {}
2598};
2599
Benjamin Kramerc6f84cf2012-10-20 13:02:06 +00002600}
2601
Derek Schuff263366f2012-10-16 22:30:41 +00002602void NaClX86_64ABIInfo::computeInfo(CGFunctionInfo &FI) const {
2603 if (FI.getASTCallingConvention() == CC_PnaclCall)
2604 PInfo.computeInfo(FI);
2605 else
2606 NInfo.computeInfo(FI);
2607}
2608
2609llvm::Value *NaClX86_64ABIInfo::EmitVAArg(llvm::Value *VAListAddr, QualType Ty,
2610 CodeGenFunction &CGF) const {
2611 // Always use the native convention; calling pnacl-style varargs functions
2612 // is unuspported.
2613 return NInfo.EmitVAArg(VAListAddr, Ty, CGF);
2614}
2615
2616
John McCallec853ba2010-03-11 00:10:12 +00002617// PowerPC-32
2618
2619namespace {
2620class PPC32TargetCodeGenInfo : public DefaultTargetCodeGenInfo {
2621public:
Chris Lattnerea044322010-07-29 02:01:43 +00002622 PPC32TargetCodeGenInfo(CodeGenTypes &CGT) : DefaultTargetCodeGenInfo(CGT) {}
Michael J. Spencer8bea82f2010-08-25 18:17:27 +00002623
John McCallec853ba2010-03-11 00:10:12 +00002624 int getDwarfEHStackPointer(CodeGen::CodeGenModule &M) const {
2625 // This is recovered from gcc output.
2626 return 1; // r1 is the dedicated stack pointer
2627 }
2628
2629 bool initDwarfEHRegSizeTable(CodeGen::CodeGenFunction &CGF,
Michael J. Spencer8bea82f2010-08-25 18:17:27 +00002630 llvm::Value *Address) const;
John McCallec853ba2010-03-11 00:10:12 +00002631};
2632
2633}
2634
2635bool
2636PPC32TargetCodeGenInfo::initDwarfEHRegSizeTable(CodeGen::CodeGenFunction &CGF,
2637 llvm::Value *Address) const {
2638 // This is calculated from the LLVM and GCC tables and verified
2639 // against gcc output. AFAIK all ABIs use the same encoding.
2640
2641 CodeGen::CGBuilderTy &Builder = CGF.Builder;
John McCallec853ba2010-03-11 00:10:12 +00002642
Chris Lattner8b418682012-02-07 00:39:47 +00002643 llvm::IntegerType *i8 = CGF.Int8Ty;
John McCallec853ba2010-03-11 00:10:12 +00002644 llvm::Value *Four8 = llvm::ConstantInt::get(i8, 4);
2645 llvm::Value *Eight8 = llvm::ConstantInt::get(i8, 8);
2646 llvm::Value *Sixteen8 = llvm::ConstantInt::get(i8, 16);
2647
2648 // 0-31: r0-31, the 4-byte general-purpose registers
John McCallaeeb7012010-05-27 06:19:26 +00002649 AssignToArrayRange(Builder, Address, Four8, 0, 31);
John McCallec853ba2010-03-11 00:10:12 +00002650
2651 // 32-63: fp0-31, the 8-byte floating-point registers
John McCallaeeb7012010-05-27 06:19:26 +00002652 AssignToArrayRange(Builder, Address, Eight8, 32, 63);
John McCallec853ba2010-03-11 00:10:12 +00002653
2654 // 64-76 are various 4-byte special-purpose registers:
2655 // 64: mq
2656 // 65: lr
2657 // 66: ctr
2658 // 67: ap
2659 // 68-75 cr0-7
2660 // 76: xer
John McCallaeeb7012010-05-27 06:19:26 +00002661 AssignToArrayRange(Builder, Address, Four8, 64, 76);
John McCallec853ba2010-03-11 00:10:12 +00002662
2663 // 77-108: v0-31, the 16-byte vector registers
John McCallaeeb7012010-05-27 06:19:26 +00002664 AssignToArrayRange(Builder, Address, Sixteen8, 77, 108);
John McCallec853ba2010-03-11 00:10:12 +00002665
2666 // 109: vrsave
2667 // 110: vscr
2668 // 111: spe_acc
2669 // 112: spefscr
2670 // 113: sfp
John McCallaeeb7012010-05-27 06:19:26 +00002671 AssignToArrayRange(Builder, Address, Four8, 109, 113);
John McCallec853ba2010-03-11 00:10:12 +00002672
Michael J. Spencer8bea82f2010-08-25 18:17:27 +00002673 return false;
John McCallec853ba2010-03-11 00:10:12 +00002674}
2675
Roman Divacky0fbc4b92012-05-09 18:22:46 +00002676// PowerPC-64
2677
2678namespace {
Bill Schmidt2fc107f2012-10-03 19:18:57 +00002679/// PPC64_SVR4_ABIInfo - The 64-bit PowerPC ELF (SVR4) ABI information.
2680class PPC64_SVR4_ABIInfo : public DefaultABIInfo {
2681
2682public:
2683 PPC64_SVR4_ABIInfo(CodeGen::CodeGenTypes &CGT) : DefaultABIInfo(CGT) {}
2684
Ulrich Weigand71c0dcc2012-11-05 19:13:42 +00002685 bool isPromotableTypeForABI(QualType Ty) const;
2686
2687 ABIArgInfo classifyReturnType(QualType RetTy) const;
2688 ABIArgInfo classifyArgumentType(QualType Ty) const;
2689
Bill Schmidtb1f5fe02012-10-12 19:26:17 +00002690 // TODO: We can add more logic to computeInfo to improve performance.
2691 // Example: For aggregate arguments that fit in a register, we could
2692 // use getDirectInReg (as is done below for structs containing a single
2693 // floating-point value) to avoid pushing them to memory on function
2694 // entry. This would require changing the logic in PPCISelLowering
2695 // when lowering the parameters in the caller and args in the callee.
2696 virtual void computeInfo(CGFunctionInfo &FI) const {
2697 FI.getReturnInfo() = classifyReturnType(FI.getReturnType());
2698 for (CGFunctionInfo::arg_iterator it = FI.arg_begin(), ie = FI.arg_end();
2699 it != ie; ++it) {
2700 // We rely on the default argument classification for the most part.
2701 // One exception: An aggregate containing a single floating-point
2702 // item must be passed in a register if one is available.
2703 const Type *T = isSingleElementStruct(it->type, getContext());
2704 if (T) {
2705 const BuiltinType *BT = T->getAs<BuiltinType>();
2706 if (BT && BT->isFloatingPoint()) {
2707 QualType QT(T, 0);
2708 it->info = ABIArgInfo::getDirectInReg(CGT.ConvertType(QT));
2709 continue;
2710 }
2711 }
2712 it->info = classifyArgumentType(it->type);
2713 }
2714 }
Bill Schmidt2fc107f2012-10-03 19:18:57 +00002715
2716 virtual llvm::Value *EmitVAArg(llvm::Value *VAListAddr,
2717 QualType Ty,
2718 CodeGenFunction &CGF) const;
2719};
2720
2721class PPC64_SVR4_TargetCodeGenInfo : public TargetCodeGenInfo {
2722public:
2723 PPC64_SVR4_TargetCodeGenInfo(CodeGenTypes &CGT)
2724 : TargetCodeGenInfo(new PPC64_SVR4_ABIInfo(CGT)) {}
2725
2726 int getDwarfEHStackPointer(CodeGen::CodeGenModule &M) const {
2727 // This is recovered from gcc output.
2728 return 1; // r1 is the dedicated stack pointer
2729 }
2730
2731 bool initDwarfEHRegSizeTable(CodeGen::CodeGenFunction &CGF,
2732 llvm::Value *Address) const;
2733};
2734
Roman Divacky0fbc4b92012-05-09 18:22:46 +00002735class PPC64TargetCodeGenInfo : public DefaultTargetCodeGenInfo {
2736public:
2737 PPC64TargetCodeGenInfo(CodeGenTypes &CGT) : DefaultTargetCodeGenInfo(CGT) {}
2738
2739 int getDwarfEHStackPointer(CodeGen::CodeGenModule &M) const {
2740 // This is recovered from gcc output.
2741 return 1; // r1 is the dedicated stack pointer
2742 }
2743
2744 bool initDwarfEHRegSizeTable(CodeGen::CodeGenFunction &CGF,
2745 llvm::Value *Address) const;
2746};
2747
2748}
2749
Ulrich Weigand71c0dcc2012-11-05 19:13:42 +00002750// Return true if the ABI requires Ty to be passed sign- or zero-
2751// extended to 64 bits.
2752bool
2753PPC64_SVR4_ABIInfo::isPromotableTypeForABI(QualType Ty) const {
2754 // Treat an enum type as its underlying type.
2755 if (const EnumType *EnumTy = Ty->getAs<EnumType>())
2756 Ty = EnumTy->getDecl()->getIntegerType();
2757
2758 // Promotable integer types are required to be promoted by the ABI.
2759 if (Ty->isPromotableIntegerType())
2760 return true;
2761
2762 // In addition to the usual promotable integer types, we also need to
2763 // extend all 32-bit types, since the ABI requires promotion to 64 bits.
2764 if (const BuiltinType *BT = Ty->getAs<BuiltinType>())
2765 switch (BT->getKind()) {
2766 case BuiltinType::Int:
2767 case BuiltinType::UInt:
2768 return true;
2769 default:
2770 break;
2771 }
2772
2773 return false;
2774}
2775
2776ABIArgInfo
2777PPC64_SVR4_ABIInfo::classifyArgumentType(QualType Ty) const {
Bill Schmidtc9715fc2012-11-27 02:46:43 +00002778 if (Ty->isAnyComplexType())
2779 return ABIArgInfo::getDirect();
2780
Ulrich Weigand71c0dcc2012-11-05 19:13:42 +00002781 if (isAggregateTypeForABI(Ty)) {
2782 // Records with non trivial destructors/constructors should not be passed
2783 // by value.
2784 if (isRecordWithNonTrivialDestructorOrCopyConstructor(Ty))
2785 return ABIArgInfo::getIndirect(0, /*ByVal=*/false);
2786
2787 return ABIArgInfo::getIndirect(0);
2788 }
2789
2790 return (isPromotableTypeForABI(Ty) ?
2791 ABIArgInfo::getExtend() : ABIArgInfo::getDirect());
2792}
2793
2794ABIArgInfo
2795PPC64_SVR4_ABIInfo::classifyReturnType(QualType RetTy) const {
2796 if (RetTy->isVoidType())
2797 return ABIArgInfo::getIgnore();
2798
Bill Schmidt9e6111a2012-12-17 04:20:17 +00002799 if (RetTy->isAnyComplexType())
2800 return ABIArgInfo::getDirect();
2801
Ulrich Weigand71c0dcc2012-11-05 19:13:42 +00002802 if (isAggregateTypeForABI(RetTy))
2803 return ABIArgInfo::getIndirect(0);
2804
2805 return (isPromotableTypeForABI(RetTy) ?
2806 ABIArgInfo::getExtend() : ABIArgInfo::getDirect());
2807}
2808
Bill Schmidt2fc107f2012-10-03 19:18:57 +00002809// Based on ARMABIInfo::EmitVAArg, adjusted for 64-bit machine.
2810llvm::Value *PPC64_SVR4_ABIInfo::EmitVAArg(llvm::Value *VAListAddr,
2811 QualType Ty,
2812 CodeGenFunction &CGF) const {
2813 llvm::Type *BP = CGF.Int8PtrTy;
2814 llvm::Type *BPP = CGF.Int8PtrPtrTy;
2815
2816 CGBuilderTy &Builder = CGF.Builder;
2817 llvm::Value *VAListAddrAsBPP = Builder.CreateBitCast(VAListAddr, BPP, "ap");
2818 llvm::Value *Addr = Builder.CreateLoad(VAListAddrAsBPP, "ap.cur");
2819
Bill Schmidt19f8e852013-01-14 17:45:36 +00002820 // Update the va_list pointer. The pointer should be bumped by the
2821 // size of the object. We can trust getTypeSize() except for a complex
2822 // type whose base type is smaller than a doubleword. For these, the
2823 // size of the object is 16 bytes; see below for further explanation.
Bill Schmidt2fc107f2012-10-03 19:18:57 +00002824 unsigned SizeInBytes = CGF.getContext().getTypeSize(Ty) / 8;
Bill Schmidt19f8e852013-01-14 17:45:36 +00002825 QualType BaseTy;
2826 unsigned CplxBaseSize = 0;
2827
2828 if (const ComplexType *CTy = Ty->getAs<ComplexType>()) {
2829 BaseTy = CTy->getElementType();
2830 CplxBaseSize = CGF.getContext().getTypeSize(BaseTy) / 8;
2831 if (CplxBaseSize < 8)
2832 SizeInBytes = 16;
2833 }
2834
Bill Schmidt2fc107f2012-10-03 19:18:57 +00002835 unsigned Offset = llvm::RoundUpToAlignment(SizeInBytes, 8);
2836 llvm::Value *NextAddr =
2837 Builder.CreateGEP(Addr, llvm::ConstantInt::get(CGF.Int64Ty, Offset),
2838 "ap.next");
2839 Builder.CreateStore(NextAddr, VAListAddrAsBPP);
2840
Bill Schmidt19f8e852013-01-14 17:45:36 +00002841 // If we have a complex type and the base type is smaller than 8 bytes,
2842 // the ABI calls for the real and imaginary parts to be right-adjusted
2843 // in separate doublewords. However, Clang expects us to produce a
2844 // pointer to a structure with the two parts packed tightly. So generate
2845 // loads of the real and imaginary parts relative to the va_list pointer,
2846 // and store them to a temporary structure.
2847 if (CplxBaseSize && CplxBaseSize < 8) {
2848 llvm::Value *RealAddr = Builder.CreatePtrToInt(Addr, CGF.Int64Ty);
2849 llvm::Value *ImagAddr = RealAddr;
2850 RealAddr = Builder.CreateAdd(RealAddr, Builder.getInt64(8 - CplxBaseSize));
2851 ImagAddr = Builder.CreateAdd(ImagAddr, Builder.getInt64(16 - CplxBaseSize));
2852 llvm::Type *PBaseTy = llvm::PointerType::getUnqual(CGF.ConvertType(BaseTy));
2853 RealAddr = Builder.CreateIntToPtr(RealAddr, PBaseTy);
2854 ImagAddr = Builder.CreateIntToPtr(ImagAddr, PBaseTy);
2855 llvm::Value *Real = Builder.CreateLoad(RealAddr, false, ".vareal");
2856 llvm::Value *Imag = Builder.CreateLoad(ImagAddr, false, ".vaimag");
2857 llvm::Value *Ptr = CGF.CreateTempAlloca(CGT.ConvertTypeForMem(Ty),
2858 "vacplx");
2859 llvm::Value *RealPtr = Builder.CreateStructGEP(Ptr, 0, ".real");
2860 llvm::Value *ImagPtr = Builder.CreateStructGEP(Ptr, 1, ".imag");
2861 Builder.CreateStore(Real, RealPtr, false);
2862 Builder.CreateStore(Imag, ImagPtr, false);
2863 return Ptr;
2864 }
2865
Bill Schmidt2fc107f2012-10-03 19:18:57 +00002866 // If the argument is smaller than 8 bytes, it is right-adjusted in
2867 // its doubleword slot. Adjust the pointer to pick it up from the
2868 // correct offset.
2869 if (SizeInBytes < 8) {
2870 llvm::Value *AddrAsInt = Builder.CreatePtrToInt(Addr, CGF.Int64Ty);
2871 AddrAsInt = Builder.CreateAdd(AddrAsInt, Builder.getInt64(8 - SizeInBytes));
2872 Addr = Builder.CreateIntToPtr(AddrAsInt, BP);
2873 }
2874
2875 llvm::Type *PTy = llvm::PointerType::getUnqual(CGF.ConvertType(Ty));
2876 return Builder.CreateBitCast(Addr, PTy);
2877}
2878
2879static bool
2880PPC64_initDwarfEHRegSizeTable(CodeGen::CodeGenFunction &CGF,
2881 llvm::Value *Address) {
Roman Divacky0fbc4b92012-05-09 18:22:46 +00002882 // This is calculated from the LLVM and GCC tables and verified
2883 // against gcc output. AFAIK all ABIs use the same encoding.
2884
2885 CodeGen::CGBuilderTy &Builder = CGF.Builder;
2886
2887 llvm::IntegerType *i8 = CGF.Int8Ty;
2888 llvm::Value *Four8 = llvm::ConstantInt::get(i8, 4);
2889 llvm::Value *Eight8 = llvm::ConstantInt::get(i8, 8);
2890 llvm::Value *Sixteen8 = llvm::ConstantInt::get(i8, 16);
2891
2892 // 0-31: r0-31, the 8-byte general-purpose registers
2893 AssignToArrayRange(Builder, Address, Eight8, 0, 31);
2894
2895 // 32-63: fp0-31, the 8-byte floating-point registers
2896 AssignToArrayRange(Builder, Address, Eight8, 32, 63);
2897
2898 // 64-76 are various 4-byte special-purpose registers:
2899 // 64: mq
2900 // 65: lr
2901 // 66: ctr
2902 // 67: ap
2903 // 68-75 cr0-7
2904 // 76: xer
2905 AssignToArrayRange(Builder, Address, Four8, 64, 76);
2906
2907 // 77-108: v0-31, the 16-byte vector registers
2908 AssignToArrayRange(Builder, Address, Sixteen8, 77, 108);
2909
2910 // 109: vrsave
2911 // 110: vscr
2912 // 111: spe_acc
2913 // 112: spefscr
2914 // 113: sfp
2915 AssignToArrayRange(Builder, Address, Four8, 109, 113);
2916
2917 return false;
2918}
John McCallec853ba2010-03-11 00:10:12 +00002919
Bill Schmidt2fc107f2012-10-03 19:18:57 +00002920bool
2921PPC64_SVR4_TargetCodeGenInfo::initDwarfEHRegSizeTable(
2922 CodeGen::CodeGenFunction &CGF,
2923 llvm::Value *Address) const {
2924
2925 return PPC64_initDwarfEHRegSizeTable(CGF, Address);
2926}
2927
2928bool
2929PPC64TargetCodeGenInfo::initDwarfEHRegSizeTable(CodeGen::CodeGenFunction &CGF,
2930 llvm::Value *Address) const {
2931
2932 return PPC64_initDwarfEHRegSizeTable(CGF, Address);
2933}
2934
Chris Lattnerdce5ad02010-06-28 20:05:43 +00002935//===----------------------------------------------------------------------===//
Daniel Dunbar34d91fd2009-09-12 00:59:49 +00002936// ARM ABI Implementation
Chris Lattnerdce5ad02010-06-28 20:05:43 +00002937//===----------------------------------------------------------------------===//
Daniel Dunbar34d91fd2009-09-12 00:59:49 +00002938
2939namespace {
2940
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00002941class ARMABIInfo : public ABIInfo {
Daniel Dunbar5e7bace2009-09-12 01:00:39 +00002942public:
2943 enum ABIKind {
2944 APCS = 0,
2945 AAPCS = 1,
2946 AAPCS_VFP
2947 };
2948
2949private:
2950 ABIKind Kind;
2951
2952public:
John McCallbd7370a2013-02-28 19:01:20 +00002953 ARMABIInfo(CodeGenTypes &CGT, ABIKind _Kind) : ABIInfo(CGT), Kind(_Kind) {
2954 setRuntimeCC();
2955 }
Daniel Dunbar5e7bace2009-09-12 01:00:39 +00002956
John McCall49e34be2011-08-30 01:42:09 +00002957 bool isEABI() const {
Eli Friedman55fc7e22012-01-25 22:46:34 +00002958 StringRef Env =
2959 getContext().getTargetInfo().getTriple().getEnvironmentName();
Logan Chien94a71422012-09-02 09:30:11 +00002960 return (Env == "gnueabi" || Env == "eabi" ||
2961 Env == "android" || Env == "androideabi");
John McCall49e34be2011-08-30 01:42:09 +00002962 }
2963
Daniel Dunbar5e7bace2009-09-12 01:00:39 +00002964private:
2965 ABIKind getABIKind() const { return Kind; }
2966
Chris Lattnera3c109b2010-07-29 02:16:43 +00002967 ABIArgInfo classifyReturnType(QualType RetTy) const;
Manman Ren710c5172012-10-31 19:02:26 +00002968 ABIArgInfo classifyArgumentType(QualType RetTy, int *VFPRegs,
2969 unsigned &AllocatedVFP,
Manman Renb3fa55f2012-10-30 23:21:41 +00002970 bool &IsHA) const;
Manman Ren97f81572012-10-16 19:18:39 +00002971 bool isIllegalVectorType(QualType Ty) const;
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00002972
Chris Lattneree5dcd02010-07-29 02:31:05 +00002973 virtual void computeInfo(CGFunctionInfo &FI) const;
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00002974
2975 virtual llvm::Value *EmitVAArg(llvm::Value *VAListAddr, QualType Ty,
2976 CodeGenFunction &CGF) const;
John McCallbd7370a2013-02-28 19:01:20 +00002977
2978 llvm::CallingConv::ID getLLVMDefaultCC() const;
2979 llvm::CallingConv::ID getABIDefaultCC() const;
2980 void setRuntimeCC();
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00002981};
2982
Anton Korobeynikov82d0a412010-01-10 12:58:08 +00002983class ARMTargetCodeGenInfo : public TargetCodeGenInfo {
2984public:
Chris Lattnerea044322010-07-29 02:01:43 +00002985 ARMTargetCodeGenInfo(CodeGenTypes &CGT, ARMABIInfo::ABIKind K)
2986 :TargetCodeGenInfo(new ARMABIInfo(CGT, K)) {}
John McCall6374c332010-03-06 00:35:14 +00002987
John McCall49e34be2011-08-30 01:42:09 +00002988 const ARMABIInfo &getABIInfo() const {
2989 return static_cast<const ARMABIInfo&>(TargetCodeGenInfo::getABIInfo());
2990 }
2991
John McCall6374c332010-03-06 00:35:14 +00002992 int getDwarfEHStackPointer(CodeGen::CodeGenModule &M) const {
2993 return 13;
2994 }
Roman Divacky09345d12011-05-18 19:36:54 +00002995
Chris Lattner5f9e2722011-07-23 10:55:15 +00002996 StringRef getARCRetainAutoreleasedReturnValueMarker() const {
John McCallf85e1932011-06-15 23:02:42 +00002997 return "mov\tr7, r7\t\t@ marker for objc_retainAutoreleaseReturnValue";
2998 }
2999
Roman Divacky09345d12011-05-18 19:36:54 +00003000 bool initDwarfEHRegSizeTable(CodeGen::CodeGenFunction &CGF,
3001 llvm::Value *Address) const {
Chris Lattner8b418682012-02-07 00:39:47 +00003002 llvm::Value *Four8 = llvm::ConstantInt::get(CGF.Int8Ty, 4);
Roman Divacky09345d12011-05-18 19:36:54 +00003003
3004 // 0-15 are the 16 integer registers.
Chris Lattner8b418682012-02-07 00:39:47 +00003005 AssignToArrayRange(CGF.Builder, Address, Four8, 0, 15);
Roman Divacky09345d12011-05-18 19:36:54 +00003006 return false;
3007 }
John McCall49e34be2011-08-30 01:42:09 +00003008
3009 unsigned getSizeOfUnwindException() const {
3010 if (getABIInfo().isEABI()) return 88;
3011 return TargetCodeGenInfo::getSizeOfUnwindException();
3012 }
Anton Korobeynikov82d0a412010-01-10 12:58:08 +00003013};
3014
Daniel Dunbar34d91fd2009-09-12 00:59:49 +00003015}
3016
Chris Lattneree5dcd02010-07-29 02:31:05 +00003017void ARMABIInfo::computeInfo(CGFunctionInfo &FI) const {
Manman Renb3fa55f2012-10-30 23:21:41 +00003018 // To correctly handle Homogeneous Aggregate, we need to keep track of the
Manman Ren710c5172012-10-31 19:02:26 +00003019 // VFP registers allocated so far.
Manman Renb3fa55f2012-10-30 23:21:41 +00003020 // C.1.vfp If the argument is a VFP CPRC and there are sufficient consecutive
3021 // VFP registers of the appropriate type unallocated then the argument is
3022 // allocated to the lowest-numbered sequence of such registers.
3023 // C.2.vfp If the argument is a VFP CPRC then any VFP registers that are
3024 // unallocated are marked as unavailable.
3025 unsigned AllocatedVFP = 0;
Manman Ren710c5172012-10-31 19:02:26 +00003026 int VFPRegs[16] = { 0 };
Chris Lattnera3c109b2010-07-29 02:16:43 +00003027 FI.getReturnInfo() = classifyReturnType(FI.getReturnType());
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00003028 for (CGFunctionInfo::arg_iterator it = FI.arg_begin(), ie = FI.arg_end();
Manman Renb3fa55f2012-10-30 23:21:41 +00003029 it != ie; ++it) {
3030 unsigned PreAllocation = AllocatedVFP;
3031 bool IsHA = false;
3032 // 6.1.2.3 There is one VFP co-processor register class using registers
3033 // s0-s15 (d0-d7) for passing arguments.
3034 const unsigned NumVFPs = 16;
Manman Ren710c5172012-10-31 19:02:26 +00003035 it->info = classifyArgumentType(it->type, VFPRegs, AllocatedVFP, IsHA);
Manman Renb3fa55f2012-10-30 23:21:41 +00003036 // If we do not have enough VFP registers for the HA, any VFP registers
3037 // that are unallocated are marked as unavailable. To achieve this, we add
3038 // padding of (NumVFPs - PreAllocation) floats.
3039 if (IsHA && AllocatedVFP > NumVFPs && PreAllocation < NumVFPs) {
3040 llvm::Type *PaddingTy = llvm::ArrayType::get(
3041 llvm::Type::getFloatTy(getVMContext()), NumVFPs - PreAllocation);
3042 it->info = ABIArgInfo::getExpandWithPadding(false, PaddingTy);
3043 }
3044 }
Daniel Dunbar5e7bace2009-09-12 01:00:39 +00003045
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003046 // Always honor user-specified calling convention.
3047 if (FI.getCallingConvention() != llvm::CallingConv::C)
3048 return;
3049
John McCallbd7370a2013-02-28 19:01:20 +00003050 llvm::CallingConv::ID cc = getRuntimeCC();
3051 if (cc != llvm::CallingConv::C)
3052 FI.setEffectiveCallingConvention(cc);
3053}
Rafael Espindola25117ab2010-06-16 16:13:39 +00003054
John McCallbd7370a2013-02-28 19:01:20 +00003055/// Return the default calling convention that LLVM will use.
3056llvm::CallingConv::ID ARMABIInfo::getLLVMDefaultCC() const {
3057 // The default calling convention that LLVM will infer.
3058 if (getContext().getTargetInfo().getTriple().getEnvironmentName()=="gnueabihf")
3059 return llvm::CallingConv::ARM_AAPCS_VFP;
3060 else if (isEABI())
3061 return llvm::CallingConv::ARM_AAPCS;
3062 else
3063 return llvm::CallingConv::ARM_APCS;
3064}
3065
3066/// Return the calling convention that our ABI would like us to use
3067/// as the C calling convention.
3068llvm::CallingConv::ID ARMABIInfo::getABIDefaultCC() const {
Daniel Dunbar5e7bace2009-09-12 01:00:39 +00003069 switch (getABIKind()) {
John McCallbd7370a2013-02-28 19:01:20 +00003070 case APCS: return llvm::CallingConv::ARM_APCS;
3071 case AAPCS: return llvm::CallingConv::ARM_AAPCS;
3072 case AAPCS_VFP: return llvm::CallingConv::ARM_AAPCS_VFP;
Daniel Dunbar5e7bace2009-09-12 01:00:39 +00003073 }
John McCallbd7370a2013-02-28 19:01:20 +00003074 llvm_unreachable("bad ABI kind");
3075}
3076
3077void ARMABIInfo::setRuntimeCC() {
3078 assert(getRuntimeCC() == llvm::CallingConv::C);
3079
3080 // Don't muddy up the IR with a ton of explicit annotations if
3081 // they'd just match what LLVM will infer from the triple.
3082 llvm::CallingConv::ID abiCC = getABIDefaultCC();
3083 if (abiCC != getLLVMDefaultCC())
3084 RuntimeCC = abiCC;
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00003085}
3086
Bob Wilson194f06a2011-08-03 05:58:22 +00003087/// isHomogeneousAggregate - Return true if a type is an AAPCS-VFP homogeneous
3088/// aggregate. If HAMembers is non-null, the number of base elements
3089/// contained in the type is returned through it; this is used for the
3090/// recursive calls that check aggregate component types.
3091static bool isHomogeneousAggregate(QualType Ty, const Type *&Base,
3092 ASTContext &Context,
3093 uint64_t *HAMembers = 0) {
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +00003094 uint64_t Members = 0;
Bob Wilson194f06a2011-08-03 05:58:22 +00003095 if (const ConstantArrayType *AT = Context.getAsConstantArrayType(Ty)) {
3096 if (!isHomogeneousAggregate(AT->getElementType(), Base, Context, &Members))
3097 return false;
3098 Members *= AT->getSize().getZExtValue();
3099 } else if (const RecordType *RT = Ty->getAs<RecordType>()) {
3100 const RecordDecl *RD = RT->getDecl();
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +00003101 if (RD->hasFlexibleArrayMember())
Bob Wilson194f06a2011-08-03 05:58:22 +00003102 return false;
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +00003103
Bob Wilson194f06a2011-08-03 05:58:22 +00003104 Members = 0;
3105 for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end();
3106 i != e; ++i) {
David Blaikie581deb32012-06-06 20:45:41 +00003107 const FieldDecl *FD = *i;
Bob Wilson194f06a2011-08-03 05:58:22 +00003108 uint64_t FldMembers;
3109 if (!isHomogeneousAggregate(FD->getType(), Base, Context, &FldMembers))
3110 return false;
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +00003111
3112 Members = (RD->isUnion() ?
3113 std::max(Members, FldMembers) : Members + FldMembers);
Bob Wilson194f06a2011-08-03 05:58:22 +00003114 }
3115 } else {
3116 Members = 1;
3117 if (const ComplexType *CT = Ty->getAs<ComplexType>()) {
3118 Members = 2;
3119 Ty = CT->getElementType();
3120 }
3121
3122 // Homogeneous aggregates for AAPCS-VFP must have base types of float,
3123 // double, or 64-bit or 128-bit vectors.
3124 if (const BuiltinType *BT = Ty->getAs<BuiltinType>()) {
3125 if (BT->getKind() != BuiltinType::Float &&
Tim Northoveradfa45f2012-07-20 22:29:29 +00003126 BT->getKind() != BuiltinType::Double &&
3127 BT->getKind() != BuiltinType::LongDouble)
Bob Wilson194f06a2011-08-03 05:58:22 +00003128 return false;
3129 } else if (const VectorType *VT = Ty->getAs<VectorType>()) {
3130 unsigned VecSize = Context.getTypeSize(VT);
3131 if (VecSize != 64 && VecSize != 128)
3132 return false;
3133 } else {
3134 return false;
3135 }
3136
3137 // The base type must be the same for all members. Vector types of the
3138 // same total size are treated as being equivalent here.
3139 const Type *TyPtr = Ty.getTypePtr();
3140 if (!Base)
3141 Base = TyPtr;
3142 if (Base != TyPtr &&
3143 (!Base->isVectorType() || !TyPtr->isVectorType() ||
3144 Context.getTypeSize(Base) != Context.getTypeSize(TyPtr)))
3145 return false;
3146 }
3147
3148 // Homogeneous Aggregates can have at most 4 members of the base type.
3149 if (HAMembers)
3150 *HAMembers = Members;
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +00003151
3152 return (Members > 0 && Members <= 4);
Bob Wilson194f06a2011-08-03 05:58:22 +00003153}
3154
Manman Ren710c5172012-10-31 19:02:26 +00003155/// markAllocatedVFPs - update VFPRegs according to the alignment and
3156/// number of VFP registers (unit is S register) requested.
3157static void markAllocatedVFPs(int *VFPRegs, unsigned &AllocatedVFP,
3158 unsigned Alignment,
3159 unsigned NumRequired) {
3160 // Early Exit.
3161 if (AllocatedVFP >= 16)
3162 return;
3163 // C.1.vfp If the argument is a VFP CPRC and there are sufficient consecutive
3164 // VFP registers of the appropriate type unallocated then the argument is
3165 // allocated to the lowest-numbered sequence of such registers.
3166 for (unsigned I = 0; I < 16; I += Alignment) {
3167 bool FoundSlot = true;
3168 for (unsigned J = I, JEnd = I + NumRequired; J < JEnd; J++)
3169 if (J >= 16 || VFPRegs[J]) {
3170 FoundSlot = false;
3171 break;
3172 }
3173 if (FoundSlot) {
3174 for (unsigned J = I, JEnd = I + NumRequired; J < JEnd; J++)
3175 VFPRegs[J] = 1;
3176 AllocatedVFP += NumRequired;
3177 return;
3178 }
3179 }
3180 // C.2.vfp If the argument is a VFP CPRC then any VFP registers that are
3181 // unallocated are marked as unavailable.
3182 for (unsigned I = 0; I < 16; I++)
3183 VFPRegs[I] = 1;
3184 AllocatedVFP = 17; // We do not have enough VFP registers.
3185}
3186
3187ABIArgInfo ARMABIInfo::classifyArgumentType(QualType Ty, int *VFPRegs,
3188 unsigned &AllocatedVFP,
Manman Renb3fa55f2012-10-30 23:21:41 +00003189 bool &IsHA) const {
3190 // We update number of allocated VFPs according to
3191 // 6.1.2.1 The following argument types are VFP CPRCs:
3192 // A single-precision floating-point type (including promoted
3193 // half-precision types); A double-precision floating-point type;
3194 // A 64-bit or 128-bit containerized vector type; Homogeneous Aggregate
3195 // with a Base Type of a single- or double-precision floating-point type,
3196 // 64-bit containerized vectors or 128-bit containerized vectors with one
3197 // to four Elements.
3198
Manman Ren97f81572012-10-16 19:18:39 +00003199 // Handle illegal vector types here.
3200 if (isIllegalVectorType(Ty)) {
3201 uint64_t Size = getContext().getTypeSize(Ty);
3202 if (Size <= 32) {
3203 llvm::Type *ResType =
3204 llvm::Type::getInt32Ty(getVMContext());
3205 return ABIArgInfo::getDirect(ResType);
3206 }
3207 if (Size == 64) {
3208 llvm::Type *ResType = llvm::VectorType::get(
3209 llvm::Type::getInt32Ty(getVMContext()), 2);
Manman Ren710c5172012-10-31 19:02:26 +00003210 markAllocatedVFPs(VFPRegs, AllocatedVFP, 2, 2);
Manman Ren97f81572012-10-16 19:18:39 +00003211 return ABIArgInfo::getDirect(ResType);
3212 }
3213 if (Size == 128) {
3214 llvm::Type *ResType = llvm::VectorType::get(
3215 llvm::Type::getInt32Ty(getVMContext()), 4);
Manman Ren710c5172012-10-31 19:02:26 +00003216 markAllocatedVFPs(VFPRegs, AllocatedVFP, 4, 4);
Manman Ren97f81572012-10-16 19:18:39 +00003217 return ABIArgInfo::getDirect(ResType);
3218 }
3219 return ABIArgInfo::getIndirect(0, /*ByVal=*/false);
3220 }
Manman Ren710c5172012-10-31 19:02:26 +00003221 // Update VFPRegs for legal vector types.
Manman Renb3fa55f2012-10-30 23:21:41 +00003222 if (const VectorType *VT = Ty->getAs<VectorType>()) {
3223 uint64_t Size = getContext().getTypeSize(VT);
3224 // Size of a legal vector should be power of 2 and above 64.
Manman Ren710c5172012-10-31 19:02:26 +00003225 markAllocatedVFPs(VFPRegs, AllocatedVFP, Size >= 128 ? 4 : 2, Size / 32);
Manman Renb3fa55f2012-10-30 23:21:41 +00003226 }
Manman Ren710c5172012-10-31 19:02:26 +00003227 // Update VFPRegs for floating point types.
Manman Renb3fa55f2012-10-30 23:21:41 +00003228 if (const BuiltinType *BT = Ty->getAs<BuiltinType>()) {
3229 if (BT->getKind() == BuiltinType::Half ||
3230 BT->getKind() == BuiltinType::Float)
Manman Ren710c5172012-10-31 19:02:26 +00003231 markAllocatedVFPs(VFPRegs, AllocatedVFP, 1, 1);
Manman Renb3fa55f2012-10-30 23:21:41 +00003232 if (BT->getKind() == BuiltinType::Double ||
Manman Ren710c5172012-10-31 19:02:26 +00003233 BT->getKind() == BuiltinType::LongDouble)
3234 markAllocatedVFPs(VFPRegs, AllocatedVFP, 2, 2);
Manman Renb3fa55f2012-10-30 23:21:41 +00003235 }
Manman Ren97f81572012-10-16 19:18:39 +00003236
John McCalld608cdb2010-08-22 10:59:02 +00003237 if (!isAggregateTypeForABI(Ty)) {
Douglas Gregoraa74a1e2010-02-02 20:10:50 +00003238 // Treat an enum type as its underlying type.
3239 if (const EnumType *EnumTy = Ty->getAs<EnumType>())
3240 Ty = EnumTy->getDecl()->getIntegerType();
3241
Anton Korobeynikovcc6fa882009-06-06 09:36:29 +00003242 return (Ty->isPromotableIntegerType() ?
3243 ABIArgInfo::getExtend() : ABIArgInfo::getDirect());
Douglas Gregoraa74a1e2010-02-02 20:10:50 +00003244 }
Daniel Dunbar98303b92009-09-13 08:03:58 +00003245
Daniel Dunbar42025572009-09-14 21:54:03 +00003246 // Ignore empty records.
Chris Lattnera3c109b2010-07-29 02:16:43 +00003247 if (isEmptyRecord(getContext(), Ty, true))
Daniel Dunbar42025572009-09-14 21:54:03 +00003248 return ABIArgInfo::getIgnore();
3249
Rafael Espindola0eb1d972010-06-08 02:42:08 +00003250 // Structures with either a non-trivial destructor or a non-trivial
3251 // copy constructor are always indirect.
3252 if (isRecordWithNonTrivialDestructorOrCopyConstructor(Ty))
3253 return ABIArgInfo::getIndirect(0, /*ByVal=*/false);
3254
Bob Wilson194f06a2011-08-03 05:58:22 +00003255 if (getABIKind() == ARMABIInfo::AAPCS_VFP) {
Manman Renb3fa55f2012-10-30 23:21:41 +00003256 // Homogeneous Aggregates need to be expanded when we can fit the aggregate
3257 // into VFP registers.
Bob Wilson194f06a2011-08-03 05:58:22 +00003258 const Type *Base = 0;
Manman Renb3fa55f2012-10-30 23:21:41 +00003259 uint64_t Members = 0;
3260 if (isHomogeneousAggregate(Ty, Base, getContext(), &Members)) {
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +00003261 assert(Base && "Base class should be set for homogeneous aggregate");
Manman Renb3fa55f2012-10-30 23:21:41 +00003262 // Base can be a floating-point or a vector.
3263 if (Base->isVectorType()) {
3264 // ElementSize is in number of floats.
3265 unsigned ElementSize = getContext().getTypeSize(Base) == 64 ? 2 : 4;
Manman Rencb489dd2012-11-06 19:05:29 +00003266 markAllocatedVFPs(VFPRegs, AllocatedVFP, ElementSize,
3267 Members * ElementSize);
Manman Renb3fa55f2012-10-30 23:21:41 +00003268 } else if (Base->isSpecificBuiltinType(BuiltinType::Float))
Manman Ren710c5172012-10-31 19:02:26 +00003269 markAllocatedVFPs(VFPRegs, AllocatedVFP, 1, Members);
Manman Renb3fa55f2012-10-30 23:21:41 +00003270 else {
3271 assert(Base->isSpecificBuiltinType(BuiltinType::Double) ||
3272 Base->isSpecificBuiltinType(BuiltinType::LongDouble));
Manman Ren710c5172012-10-31 19:02:26 +00003273 markAllocatedVFPs(VFPRegs, AllocatedVFP, 2, Members * 2);
Manman Renb3fa55f2012-10-30 23:21:41 +00003274 }
3275 IsHA = true;
Bob Wilson194f06a2011-08-03 05:58:22 +00003276 return ABIArgInfo::getExpand();
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +00003277 }
Bob Wilson194f06a2011-08-03 05:58:22 +00003278 }
3279
Manman Ren634b3d22012-08-13 21:23:55 +00003280 // Support byval for ARM.
Manman Rencb489dd2012-11-06 19:05:29 +00003281 // The ABI alignment for APCS is 4-byte and for AAPCS at least 4-byte and at
3282 // most 8-byte. We realign the indirect argument if type alignment is bigger
3283 // than ABI alignment.
Manman Renfd1ba912012-11-05 22:42:46 +00003284 uint64_t ABIAlign = 4;
3285 uint64_t TyAlign = getContext().getTypeAlign(Ty) / 8;
3286 if (getABIKind() == ARMABIInfo::AAPCS_VFP ||
3287 getABIKind() == ARMABIInfo::AAPCS)
3288 ABIAlign = std::min(std::max(TyAlign, (uint64_t)4), (uint64_t)8);
Manman Ren885ad692012-11-06 04:58:01 +00003289 if (getContext().getTypeSizeInChars(Ty) > CharUnits::fromQuantity(64)) {
3290 return ABIArgInfo::getIndirect(0, /*ByVal=*/true,
Manman Rencb489dd2012-11-06 19:05:29 +00003291 /*Realign=*/TyAlign > ABIAlign);
Eli Friedman79f30982012-08-09 00:31:40 +00003292 }
3293
Daniel Dunbar8aa87c72010-09-23 01:54:28 +00003294 // Otherwise, pass by coercing to a structure of the appropriate size.
Chris Lattner2acc6e32011-07-18 04:24:23 +00003295 llvm::Type* ElemTy;
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00003296 unsigned SizeRegs;
Eli Friedman79f30982012-08-09 00:31:40 +00003297 // FIXME: Try to match the types of the arguments more accurately where
3298 // we can.
3299 if (getContext().getTypeAlign(Ty) <= 32) {
Bob Wilson53fc1a62011-08-01 23:39:04 +00003300 ElemTy = llvm::Type::getInt32Ty(getVMContext());
3301 SizeRegs = (getContext().getTypeSize(Ty) + 31) / 32;
Manman Ren78eb76e2012-06-25 22:04:00 +00003302 } else {
Manman Ren78eb76e2012-06-25 22:04:00 +00003303 ElemTy = llvm::Type::getInt64Ty(getVMContext());
3304 SizeRegs = (getContext().getTypeSize(Ty) + 63) / 64;
Stuart Hastings67d097e2011-04-27 17:24:02 +00003305 }
Stuart Hastingsb7f62d02011-04-28 18:16:06 +00003306
Chris Lattner9cbe4f02011-07-09 17:41:47 +00003307 llvm::Type *STy =
Chris Lattner7650d952011-06-18 22:49:11 +00003308 llvm::StructType::get(llvm::ArrayType::get(ElemTy, SizeRegs), NULL);
Stuart Hastingsb7f62d02011-04-28 18:16:06 +00003309 return ABIArgInfo::getDirect(STy);
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00003310}
3311
Chris Lattnera3c109b2010-07-29 02:16:43 +00003312static bool isIntegerLikeType(QualType Ty, ASTContext &Context,
Daniel Dunbar98303b92009-09-13 08:03:58 +00003313 llvm::LLVMContext &VMContext) {
3314 // APCS, C Language Calling Conventions, Non-Simple Return Values: A structure
3315 // is called integer-like if its size is less than or equal to one word, and
3316 // the offset of each of its addressable sub-fields is zero.
3317
3318 uint64_t Size = Context.getTypeSize(Ty);
3319
3320 // Check that the type fits in a word.
3321 if (Size > 32)
3322 return false;
3323
3324 // FIXME: Handle vector types!
3325 if (Ty->isVectorType())
3326 return false;
3327
Daniel Dunbarb0d58192009-09-14 02:20:34 +00003328 // Float types are never treated as "integer like".
3329 if (Ty->isRealFloatingType())
3330 return false;
3331
Daniel Dunbar98303b92009-09-13 08:03:58 +00003332 // If this is a builtin or pointer type then it is ok.
John McCall183700f2009-09-21 23:43:11 +00003333 if (Ty->getAs<BuiltinType>() || Ty->isPointerType())
Daniel Dunbar98303b92009-09-13 08:03:58 +00003334 return true;
3335
Daniel Dunbar45815812010-02-01 23:31:26 +00003336 // Small complex integer types are "integer like".
3337 if (const ComplexType *CT = Ty->getAs<ComplexType>())
3338 return isIntegerLikeType(CT->getElementType(), Context, VMContext);
Daniel Dunbar98303b92009-09-13 08:03:58 +00003339
3340 // Single element and zero sized arrays should be allowed, by the definition
3341 // above, but they are not.
3342
3343 // Otherwise, it must be a record type.
3344 const RecordType *RT = Ty->getAs<RecordType>();
3345 if (!RT) return false;
3346
3347 // Ignore records with flexible arrays.
3348 const RecordDecl *RD = RT->getDecl();
3349 if (RD->hasFlexibleArrayMember())
3350 return false;
3351
3352 // Check that all sub-fields are at offset 0, and are themselves "integer
3353 // like".
3354 const ASTRecordLayout &Layout = Context.getASTRecordLayout(RD);
3355
3356 bool HadField = false;
3357 unsigned idx = 0;
3358 for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end();
3359 i != e; ++i, ++idx) {
David Blaikie581deb32012-06-06 20:45:41 +00003360 const FieldDecl *FD = *i;
Daniel Dunbar98303b92009-09-13 08:03:58 +00003361
Daniel Dunbar679855a2010-01-29 03:22:29 +00003362 // Bit-fields are not addressable, we only need to verify they are "integer
3363 // like". We still have to disallow a subsequent non-bitfield, for example:
3364 // struct { int : 0; int x }
3365 // is non-integer like according to gcc.
3366 if (FD->isBitField()) {
3367 if (!RD->isUnion())
3368 HadField = true;
Daniel Dunbar98303b92009-09-13 08:03:58 +00003369
Daniel Dunbar679855a2010-01-29 03:22:29 +00003370 if (!isIntegerLikeType(FD->getType(), Context, VMContext))
3371 return false;
Daniel Dunbar98303b92009-09-13 08:03:58 +00003372
Daniel Dunbar679855a2010-01-29 03:22:29 +00003373 continue;
Daniel Dunbar98303b92009-09-13 08:03:58 +00003374 }
3375
Daniel Dunbar679855a2010-01-29 03:22:29 +00003376 // Check if this field is at offset 0.
3377 if (Layout.getFieldOffset(idx) != 0)
3378 return false;
3379
Daniel Dunbar98303b92009-09-13 08:03:58 +00003380 if (!isIntegerLikeType(FD->getType(), Context, VMContext))
3381 return false;
Michael J. Spencer8bea82f2010-08-25 18:17:27 +00003382
Daniel Dunbar679855a2010-01-29 03:22:29 +00003383 // Only allow at most one field in a structure. This doesn't match the
3384 // wording above, but follows gcc in situations with a field following an
3385 // empty structure.
Daniel Dunbar98303b92009-09-13 08:03:58 +00003386 if (!RD->isUnion()) {
3387 if (HadField)
3388 return false;
3389
3390 HadField = true;
3391 }
3392 }
3393
3394 return true;
3395}
3396
Chris Lattnera3c109b2010-07-29 02:16:43 +00003397ABIArgInfo ARMABIInfo::classifyReturnType(QualType RetTy) const {
Daniel Dunbar98303b92009-09-13 08:03:58 +00003398 if (RetTy->isVoidType())
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00003399 return ABIArgInfo::getIgnore();
Daniel Dunbar98303b92009-09-13 08:03:58 +00003400
Daniel Dunbarf554b1c2010-09-23 01:54:32 +00003401 // Large vector types should be returned via memory.
3402 if (RetTy->isVectorType() && getContext().getTypeSize(RetTy) > 128)
3403 return ABIArgInfo::getIndirect(0);
3404
John McCalld608cdb2010-08-22 10:59:02 +00003405 if (!isAggregateTypeForABI(RetTy)) {
Douglas Gregoraa74a1e2010-02-02 20:10:50 +00003406 // Treat an enum type as its underlying type.
3407 if (const EnumType *EnumTy = RetTy->getAs<EnumType>())
3408 RetTy = EnumTy->getDecl()->getIntegerType();
3409
Anton Korobeynikovcc6fa882009-06-06 09:36:29 +00003410 return (RetTy->isPromotableIntegerType() ?
3411 ABIArgInfo::getExtend() : ABIArgInfo::getDirect());
Douglas Gregoraa74a1e2010-02-02 20:10:50 +00003412 }
Daniel Dunbar98303b92009-09-13 08:03:58 +00003413
Rafael Espindola0eb1d972010-06-08 02:42:08 +00003414 // Structures with either a non-trivial destructor or a non-trivial
3415 // copy constructor are always indirect.
3416 if (isRecordWithNonTrivialDestructorOrCopyConstructor(RetTy))
3417 return ABIArgInfo::getIndirect(0, /*ByVal=*/false);
3418
Daniel Dunbar98303b92009-09-13 08:03:58 +00003419 // Are we following APCS?
3420 if (getABIKind() == APCS) {
Chris Lattnera3c109b2010-07-29 02:16:43 +00003421 if (isEmptyRecord(getContext(), RetTy, false))
Daniel Dunbar98303b92009-09-13 08:03:58 +00003422 return ABIArgInfo::getIgnore();
3423
Daniel Dunbar4cc753f2010-02-01 23:31:19 +00003424 // Complex types are all returned as packed integers.
3425 //
3426 // FIXME: Consider using 2 x vector types if the back end handles them
3427 // correctly.
3428 if (RetTy->isAnyComplexType())
Chris Lattner800588f2010-07-29 06:26:06 +00003429 return ABIArgInfo::getDirect(llvm::IntegerType::get(getVMContext(),
Chris Lattnera3c109b2010-07-29 02:16:43 +00003430 getContext().getTypeSize(RetTy)));
Daniel Dunbar4cc753f2010-02-01 23:31:19 +00003431
Daniel Dunbar98303b92009-09-13 08:03:58 +00003432 // Integer like structures are returned in r0.
Chris Lattnera3c109b2010-07-29 02:16:43 +00003433 if (isIntegerLikeType(RetTy, getContext(), getVMContext())) {
Daniel Dunbar98303b92009-09-13 08:03:58 +00003434 // Return in the smallest viable integer type.
Chris Lattnera3c109b2010-07-29 02:16:43 +00003435 uint64_t Size = getContext().getTypeSize(RetTy);
Daniel Dunbar98303b92009-09-13 08:03:58 +00003436 if (Size <= 8)
Chris Lattner800588f2010-07-29 06:26:06 +00003437 return ABIArgInfo::getDirect(llvm::Type::getInt8Ty(getVMContext()));
Daniel Dunbar98303b92009-09-13 08:03:58 +00003438 if (Size <= 16)
Chris Lattner800588f2010-07-29 06:26:06 +00003439 return ABIArgInfo::getDirect(llvm::Type::getInt16Ty(getVMContext()));
3440 return ABIArgInfo::getDirect(llvm::Type::getInt32Ty(getVMContext()));
Daniel Dunbar98303b92009-09-13 08:03:58 +00003441 }
3442
3443 // Otherwise return in memory.
3444 return ABIArgInfo::getIndirect(0);
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00003445 }
Daniel Dunbar98303b92009-09-13 08:03:58 +00003446
3447 // Otherwise this is an AAPCS variant.
3448
Chris Lattnera3c109b2010-07-29 02:16:43 +00003449 if (isEmptyRecord(getContext(), RetTy, true))
Daniel Dunbar16a08082009-09-14 00:56:55 +00003450 return ABIArgInfo::getIgnore();
3451
Bob Wilson3b694fa2011-11-02 04:51:36 +00003452 // Check for homogeneous aggregates with AAPCS-VFP.
3453 if (getABIKind() == AAPCS_VFP) {
3454 const Type *Base = 0;
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +00003455 if (isHomogeneousAggregate(RetTy, Base, getContext())) {
3456 assert(Base && "Base class should be set for homogeneous aggregate");
Bob Wilson3b694fa2011-11-02 04:51:36 +00003457 // Homogeneous Aggregates are returned directly.
3458 return ABIArgInfo::getDirect();
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +00003459 }
Bob Wilson3b694fa2011-11-02 04:51:36 +00003460 }
3461
Daniel Dunbar98303b92009-09-13 08:03:58 +00003462 // Aggregates <= 4 bytes are returned in r0; other aggregates
3463 // are returned indirectly.
Chris Lattnera3c109b2010-07-29 02:16:43 +00003464 uint64_t Size = getContext().getTypeSize(RetTy);
Daniel Dunbar16a08082009-09-14 00:56:55 +00003465 if (Size <= 32) {
3466 // Return in the smallest viable integer type.
3467 if (Size <= 8)
Chris Lattner800588f2010-07-29 06:26:06 +00003468 return ABIArgInfo::getDirect(llvm::Type::getInt8Ty(getVMContext()));
Daniel Dunbar16a08082009-09-14 00:56:55 +00003469 if (Size <= 16)
Chris Lattner800588f2010-07-29 06:26:06 +00003470 return ABIArgInfo::getDirect(llvm::Type::getInt16Ty(getVMContext()));
3471 return ABIArgInfo::getDirect(llvm::Type::getInt32Ty(getVMContext()));
Daniel Dunbar16a08082009-09-14 00:56:55 +00003472 }
3473
Daniel Dunbar98303b92009-09-13 08:03:58 +00003474 return ABIArgInfo::getIndirect(0);
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00003475}
3476
Manman Ren97f81572012-10-16 19:18:39 +00003477/// isIllegalVector - check whether Ty is an illegal vector type.
3478bool ARMABIInfo::isIllegalVectorType(QualType Ty) const {
3479 if (const VectorType *VT = Ty->getAs<VectorType>()) {
3480 // Check whether VT is legal.
3481 unsigned NumElements = VT->getNumElements();
3482 uint64_t Size = getContext().getTypeSize(VT);
3483 // NumElements should be power of 2.
3484 if ((NumElements & (NumElements - 1)) != 0)
3485 return true;
3486 // Size should be greater than 32 bits.
3487 return Size <= 32;
3488 }
3489 return false;
3490}
3491
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00003492llvm::Value *ARMABIInfo::EmitVAArg(llvm::Value *VAListAddr, QualType Ty,
Chris Lattner77b89b82010-06-27 07:15:29 +00003493 CodeGenFunction &CGF) const {
Chris Lattner8b418682012-02-07 00:39:47 +00003494 llvm::Type *BP = CGF.Int8PtrTy;
3495 llvm::Type *BPP = CGF.Int8PtrPtrTy;
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00003496
3497 CGBuilderTy &Builder = CGF.Builder;
Chris Lattner8b418682012-02-07 00:39:47 +00003498 llvm::Value *VAListAddrAsBPP = Builder.CreateBitCast(VAListAddr, BPP, "ap");
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00003499 llvm::Value *Addr = Builder.CreateLoad(VAListAddrAsBPP, "ap.cur");
Manman Rend105e732012-10-16 19:01:37 +00003500
3501 uint64_t Size = CGF.getContext().getTypeSize(Ty) / 8;
Rafael Espindolae164c182011-08-02 22:33:37 +00003502 uint64_t TyAlign = CGF.getContext().getTypeAlign(Ty) / 8;
Manman Ren97f81572012-10-16 19:18:39 +00003503 bool IsIndirect = false;
Manman Rend105e732012-10-16 19:01:37 +00003504
3505 // The ABI alignment for 64-bit or 128-bit vectors is 8 for AAPCS and 4 for
3506 // APCS. For AAPCS, the ABI alignment is at least 4-byte and at most 8-byte.
Manman Ren93371022012-10-16 19:51:48 +00003507 if (getABIKind() == ARMABIInfo::AAPCS_VFP ||
3508 getABIKind() == ARMABIInfo::AAPCS)
3509 TyAlign = std::min(std::max(TyAlign, (uint64_t)4), (uint64_t)8);
3510 else
3511 TyAlign = 4;
Manman Ren97f81572012-10-16 19:18:39 +00003512 // Use indirect if size of the illegal vector is bigger than 16 bytes.
3513 if (isIllegalVectorType(Ty) && Size > 16) {
3514 IsIndirect = true;
3515 Size = 4;
3516 TyAlign = 4;
3517 }
Manman Rend105e732012-10-16 19:01:37 +00003518
3519 // Handle address alignment for ABI alignment > 4 bytes.
Rafael Espindolae164c182011-08-02 22:33:37 +00003520 if (TyAlign > 4) {
3521 assert((TyAlign & (TyAlign - 1)) == 0 &&
3522 "Alignment is not power of 2!");
3523 llvm::Value *AddrAsInt = Builder.CreatePtrToInt(Addr, CGF.Int32Ty);
3524 AddrAsInt = Builder.CreateAdd(AddrAsInt, Builder.getInt32(TyAlign - 1));
3525 AddrAsInt = Builder.CreateAnd(AddrAsInt, Builder.getInt32(~(TyAlign - 1)));
Manman Rend105e732012-10-16 19:01:37 +00003526 Addr = Builder.CreateIntToPtr(AddrAsInt, BP, "ap.align");
Rafael Espindolae164c182011-08-02 22:33:37 +00003527 }
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00003528
3529 uint64_t Offset =
Manman Rend105e732012-10-16 19:01:37 +00003530 llvm::RoundUpToAlignment(Size, 4);
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00003531 llvm::Value *NextAddr =
Chris Lattner77b89b82010-06-27 07:15:29 +00003532 Builder.CreateGEP(Addr, llvm::ConstantInt::get(CGF.Int32Ty, Offset),
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00003533 "ap.next");
3534 Builder.CreateStore(NextAddr, VAListAddrAsBPP);
3535
Manman Ren97f81572012-10-16 19:18:39 +00003536 if (IsIndirect)
3537 Addr = Builder.CreateLoad(Builder.CreateBitCast(Addr, BPP));
Manman Ren93371022012-10-16 19:51:48 +00003538 else if (TyAlign < CGF.getContext().getTypeAlign(Ty) / 8) {
Manman Rend105e732012-10-16 19:01:37 +00003539 // We can't directly cast ap.cur to pointer to a vector type, since ap.cur
3540 // may not be correctly aligned for the vector type. We create an aligned
3541 // temporary space and copy the content over from ap.cur to the temporary
3542 // space. This is necessary if the natural alignment of the type is greater
3543 // than the ABI alignment.
3544 llvm::Type *I8PtrTy = Builder.getInt8PtrTy();
3545 CharUnits CharSize = getContext().getTypeSizeInChars(Ty);
3546 llvm::Value *AlignedTemp = CGF.CreateTempAlloca(CGF.ConvertType(Ty),
3547 "var.align");
3548 llvm::Value *Dst = Builder.CreateBitCast(AlignedTemp, I8PtrTy);
3549 llvm::Value *Src = Builder.CreateBitCast(Addr, I8PtrTy);
3550 Builder.CreateMemCpy(Dst, Src,
3551 llvm::ConstantInt::get(CGF.IntPtrTy, CharSize.getQuantity()),
3552 TyAlign, false);
3553 Addr = AlignedTemp; //The content is in aligned location.
3554 }
3555 llvm::Type *PTy =
3556 llvm::PointerType::getUnqual(CGF.ConvertType(Ty));
3557 llvm::Value *AddrTyped = Builder.CreateBitCast(Addr, PTy);
3558
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00003559 return AddrTyped;
3560}
3561
Benjamin Kramerc6f84cf2012-10-20 13:02:06 +00003562namespace {
3563
Derek Schuff263366f2012-10-16 22:30:41 +00003564class NaClARMABIInfo : public ABIInfo {
3565 public:
3566 NaClARMABIInfo(CodeGen::CodeGenTypes &CGT, ARMABIInfo::ABIKind Kind)
3567 : ABIInfo(CGT), PInfo(CGT), NInfo(CGT, Kind) {}
3568 virtual void computeInfo(CGFunctionInfo &FI) const;
3569 virtual llvm::Value *EmitVAArg(llvm::Value *VAListAddr, QualType Ty,
3570 CodeGenFunction &CGF) const;
3571 private:
3572 PNaClABIInfo PInfo; // Used for generating calls with pnaclcall callingconv.
3573 ARMABIInfo NInfo; // Used for everything else.
3574};
3575
3576class NaClARMTargetCodeGenInfo : public TargetCodeGenInfo {
3577 public:
3578 NaClARMTargetCodeGenInfo(CodeGen::CodeGenTypes &CGT, ARMABIInfo::ABIKind Kind)
3579 : TargetCodeGenInfo(new NaClARMABIInfo(CGT, Kind)) {}
3580};
3581
Benjamin Kramerc6f84cf2012-10-20 13:02:06 +00003582}
3583
Derek Schuff263366f2012-10-16 22:30:41 +00003584void NaClARMABIInfo::computeInfo(CGFunctionInfo &FI) const {
3585 if (FI.getASTCallingConvention() == CC_PnaclCall)
3586 PInfo.computeInfo(FI);
3587 else
3588 static_cast<const ABIInfo&>(NInfo).computeInfo(FI);
3589}
3590
3591llvm::Value *NaClARMABIInfo::EmitVAArg(llvm::Value *VAListAddr, QualType Ty,
3592 CodeGenFunction &CGF) const {
3593 // Always use the native convention; calling pnacl-style varargs functions
3594 // is unsupported.
3595 return static_cast<const ABIInfo&>(NInfo).EmitVAArg(VAListAddr, Ty, CGF);
3596}
3597
Chris Lattnerdce5ad02010-06-28 20:05:43 +00003598//===----------------------------------------------------------------------===//
Tim Northoverc264e162013-01-31 12:13:10 +00003599// AArch64 ABI Implementation
3600//===----------------------------------------------------------------------===//
3601
3602namespace {
3603
3604class AArch64ABIInfo : public ABIInfo {
3605public:
3606 AArch64ABIInfo(CodeGenTypes &CGT) : ABIInfo(CGT) {}
3607
3608private:
3609 // The AArch64 PCS is explicit about return types and argument types being
3610 // handled identically, so we don't need to draw a distinction between
3611 // Argument and Return classification.
3612 ABIArgInfo classifyGenericType(QualType Ty, int &FreeIntRegs,
3613 int &FreeVFPRegs) const;
3614
3615 ABIArgInfo tryUseRegs(QualType Ty, int &FreeRegs, int RegsNeeded, bool IsInt,
3616 llvm::Type *DirectTy = 0) const;
3617
3618 virtual void computeInfo(CGFunctionInfo &FI) const;
3619
3620 virtual llvm::Value *EmitVAArg(llvm::Value *VAListAddr, QualType Ty,
3621 CodeGenFunction &CGF) const;
3622};
3623
3624class AArch64TargetCodeGenInfo : public TargetCodeGenInfo {
3625public:
3626 AArch64TargetCodeGenInfo(CodeGenTypes &CGT)
3627 :TargetCodeGenInfo(new AArch64ABIInfo(CGT)) {}
3628
3629 const AArch64ABIInfo &getABIInfo() const {
3630 return static_cast<const AArch64ABIInfo&>(TargetCodeGenInfo::getABIInfo());
3631 }
3632
3633 int getDwarfEHStackPointer(CodeGen::CodeGenModule &M) const {
3634 return 31;
3635 }
3636
3637 bool initDwarfEHRegSizeTable(CodeGen::CodeGenFunction &CGF,
3638 llvm::Value *Address) const {
3639 // 0-31 are x0-x30 and sp: 8 bytes each
3640 llvm::Value *Eight8 = llvm::ConstantInt::get(CGF.Int8Ty, 8);
3641 AssignToArrayRange(CGF.Builder, Address, Eight8, 0, 31);
3642
3643 // 64-95 are v0-v31: 16 bytes each
3644 llvm::Value *Sixteen8 = llvm::ConstantInt::get(CGF.Int8Ty, 16);
3645 AssignToArrayRange(CGF.Builder, Address, Sixteen8, 64, 95);
3646
3647 return false;
3648 }
3649
3650};
3651
3652}
3653
3654void AArch64ABIInfo::computeInfo(CGFunctionInfo &FI) const {
3655 int FreeIntRegs = 8, FreeVFPRegs = 8;
3656
3657 FI.getReturnInfo() = classifyGenericType(FI.getReturnType(),
3658 FreeIntRegs, FreeVFPRegs);
3659
3660 FreeIntRegs = FreeVFPRegs = 8;
3661 for (CGFunctionInfo::arg_iterator it = FI.arg_begin(), ie = FI.arg_end();
3662 it != ie; ++it) {
3663 it->info = classifyGenericType(it->type, FreeIntRegs, FreeVFPRegs);
3664
3665 }
3666}
3667
3668ABIArgInfo
3669AArch64ABIInfo::tryUseRegs(QualType Ty, int &FreeRegs, int RegsNeeded,
3670 bool IsInt, llvm::Type *DirectTy) const {
3671 if (FreeRegs >= RegsNeeded) {
3672 FreeRegs -= RegsNeeded;
3673 return ABIArgInfo::getDirect(DirectTy);
3674 }
3675
3676 llvm::Type *Padding = 0;
3677
3678 // We need padding so that later arguments don't get filled in anyway. That
3679 // wouldn't happen if only ByVal arguments followed in the same category, but
3680 // a large structure will simply seem to be a pointer as far as LLVM is
3681 // concerned.
3682 if (FreeRegs > 0) {
3683 if (IsInt)
3684 Padding = llvm::Type::getInt64Ty(getVMContext());
3685 else
3686 Padding = llvm::Type::getFloatTy(getVMContext());
3687
3688 // Either [N x i64] or [N x float].
3689 Padding = llvm::ArrayType::get(Padding, FreeRegs);
3690 FreeRegs = 0;
3691 }
3692
3693 return ABIArgInfo::getIndirect(getContext().getTypeAlign(Ty) / 8,
3694 /*IsByVal=*/ true, /*Realign=*/ false,
3695 Padding);
3696}
3697
3698
3699ABIArgInfo AArch64ABIInfo::classifyGenericType(QualType Ty,
3700 int &FreeIntRegs,
3701 int &FreeVFPRegs) const {
3702 // Can only occurs for return, but harmless otherwise.
3703 if (Ty->isVoidType())
3704 return ABIArgInfo::getIgnore();
3705
3706 // Large vector types should be returned via memory. There's no such concept
3707 // in the ABI, but they'd be over 16 bytes anyway so no matter how they're
3708 // classified they'd go into memory (see B.3).
3709 if (Ty->isVectorType() && getContext().getTypeSize(Ty) > 128) {
3710 if (FreeIntRegs > 0)
3711 --FreeIntRegs;
3712 return ABIArgInfo::getIndirect(0, /*ByVal=*/false);
3713 }
3714
3715 // All non-aggregate LLVM types have a concrete ABI representation so they can
3716 // be passed directly. After this block we're guaranteed to be in a
3717 // complicated case.
3718 if (!isAggregateTypeForABI(Ty)) {
3719 // Treat an enum type as its underlying type.
3720 if (const EnumType *EnumTy = Ty->getAs<EnumType>())
3721 Ty = EnumTy->getDecl()->getIntegerType();
3722
3723 if (Ty->isFloatingType() || Ty->isVectorType())
3724 return tryUseRegs(Ty, FreeVFPRegs, /*RegsNeeded=*/ 1, /*IsInt=*/ false);
3725
3726 assert(getContext().getTypeSize(Ty) <= 128 &&
3727 "unexpectedly large scalar type");
3728
3729 int RegsNeeded = getContext().getTypeSize(Ty) > 64 ? 2 : 1;
3730
3731 // If the type may need padding registers to ensure "alignment", we must be
3732 // careful when this is accounted for. Increasing the effective size covers
3733 // all cases.
3734 if (getContext().getTypeAlign(Ty) == 128)
3735 RegsNeeded += FreeIntRegs % 2 != 0;
3736
3737 return tryUseRegs(Ty, FreeIntRegs, RegsNeeded, /*IsInt=*/ true);
3738 }
3739
3740 // Structures with either a non-trivial destructor or a non-trivial
3741 // copy constructor are always indirect.
3742 if (isRecordWithNonTrivialDestructorOrCopyConstructor(Ty)) {
3743 if (FreeIntRegs > 0)
3744 --FreeIntRegs;
3745 return ABIArgInfo::getIndirect(0, /*ByVal=*/false);
3746 }
3747
3748 if (isEmptyRecord(getContext(), Ty, true)) {
3749 if (!getContext().getLangOpts().CPlusPlus) {
3750 // Empty structs outside C++ mode are a GNU extension, so no ABI can
3751 // possibly tell us what to do. It turns out (I believe) that GCC ignores
3752 // the object for parameter-passsing purposes.
3753 return ABIArgInfo::getIgnore();
3754 }
3755
3756 // The combination of C++98 9p5 (sizeof(struct) != 0) and the pseudocode
3757 // description of va_arg in the PCS require that an empty struct does
3758 // actually occupy space for parameter-passing. I'm hoping for a
3759 // clarification giving an explicit paragraph to point to in future.
3760 return tryUseRegs(Ty, FreeIntRegs, /*RegsNeeded=*/ 1, /*IsInt=*/ true,
3761 llvm::Type::getInt8Ty(getVMContext()));
3762 }
3763
3764 // Homogeneous vector aggregates get passed in registers or on the stack.
3765 const Type *Base = 0;
3766 uint64_t NumMembers = 0;
3767 if (isHomogeneousAggregate(Ty, Base, getContext(), &NumMembers)) {
3768 assert(Base && "Base class should be set for homogeneous aggregate");
3769 // Homogeneous aggregates are passed and returned directly.
3770 return tryUseRegs(Ty, FreeVFPRegs, /*RegsNeeded=*/ NumMembers,
3771 /*IsInt=*/ false);
3772 }
3773
3774 uint64_t Size = getContext().getTypeSize(Ty);
3775 if (Size <= 128) {
3776 // Small structs can use the same direct type whether they're in registers
3777 // or on the stack.
3778 llvm::Type *BaseTy;
3779 unsigned NumBases;
3780 int SizeInRegs = (Size + 63) / 64;
3781
3782 if (getContext().getTypeAlign(Ty) == 128) {
3783 BaseTy = llvm::Type::getIntNTy(getVMContext(), 128);
3784 NumBases = 1;
3785
3786 // If the type may need padding registers to ensure "alignment", we must
3787 // be careful when this is accounted for. Increasing the effective size
3788 // covers all cases.
3789 SizeInRegs += FreeIntRegs % 2 != 0;
3790 } else {
3791 BaseTy = llvm::Type::getInt64Ty(getVMContext());
3792 NumBases = SizeInRegs;
3793 }
3794 llvm::Type *DirectTy = llvm::ArrayType::get(BaseTy, NumBases);
3795
3796 return tryUseRegs(Ty, FreeIntRegs, /*RegsNeeded=*/ SizeInRegs,
3797 /*IsInt=*/ true, DirectTy);
3798 }
3799
3800 // If the aggregate is > 16 bytes, it's passed and returned indirectly. In
3801 // LLVM terms the return uses an "sret" pointer, but that's handled elsewhere.
3802 --FreeIntRegs;
3803 return ABIArgInfo::getIndirect(0, /* byVal = */ false);
3804}
3805
3806llvm::Value *AArch64ABIInfo::EmitVAArg(llvm::Value *VAListAddr, QualType Ty,
3807 CodeGenFunction &CGF) const {
3808 // The AArch64 va_list type and handling is specified in the Procedure Call
3809 // Standard, section B.4:
3810 //
3811 // struct {
3812 // void *__stack;
3813 // void *__gr_top;
3814 // void *__vr_top;
3815 // int __gr_offs;
3816 // int __vr_offs;
3817 // };
3818
3819 assert(!CGF.CGM.getDataLayout().isBigEndian()
3820 && "va_arg not implemented for big-endian AArch64");
3821
3822 int FreeIntRegs = 8, FreeVFPRegs = 8;
3823 Ty = CGF.getContext().getCanonicalType(Ty);
3824 ABIArgInfo AI = classifyGenericType(Ty, FreeIntRegs, FreeVFPRegs);
3825
3826 llvm::BasicBlock *MaybeRegBlock = CGF.createBasicBlock("vaarg.maybe_reg");
3827 llvm::BasicBlock *InRegBlock = CGF.createBasicBlock("vaarg.in_reg");
3828 llvm::BasicBlock *OnStackBlock = CGF.createBasicBlock("vaarg.on_stack");
3829 llvm::BasicBlock *ContBlock = CGF.createBasicBlock("vaarg.end");
3830
3831 llvm::Value *reg_offs_p = 0, *reg_offs = 0;
3832 int reg_top_index;
3833 int RegSize;
3834 if (FreeIntRegs < 8) {
3835 assert(FreeVFPRegs == 8 && "Arguments never split between int & VFP regs");
3836 // 3 is the field number of __gr_offs
3837 reg_offs_p = CGF.Builder.CreateStructGEP(VAListAddr, 3, "gr_offs_p");
3838 reg_offs = CGF.Builder.CreateLoad(reg_offs_p, "gr_offs");
3839 reg_top_index = 1; // field number for __gr_top
3840 RegSize = 8 * (8 - FreeIntRegs);
3841 } else {
3842 assert(FreeVFPRegs < 8 && "Argument must go in VFP or int regs");
3843 // 4 is the field number of __vr_offs.
3844 reg_offs_p = CGF.Builder.CreateStructGEP(VAListAddr, 4, "vr_offs_p");
3845 reg_offs = CGF.Builder.CreateLoad(reg_offs_p, "vr_offs");
3846 reg_top_index = 2; // field number for __vr_top
3847 RegSize = 16 * (8 - FreeVFPRegs);
3848 }
3849
3850 //=======================================
3851 // Find out where argument was passed
3852 //=======================================
3853
3854 // If reg_offs >= 0 we're already using the stack for this type of
3855 // argument. We don't want to keep updating reg_offs (in case it overflows,
3856 // though anyone passing 2GB of arguments, each at most 16 bytes, deserves
3857 // whatever they get).
3858 llvm::Value *UsingStack = 0;
3859 UsingStack = CGF.Builder.CreateICmpSGE(reg_offs,
3860 llvm::ConstantInt::get(CGF.Int32Ty, 0));
3861
3862 CGF.Builder.CreateCondBr(UsingStack, OnStackBlock, MaybeRegBlock);
3863
3864 // Otherwise, at least some kind of argument could go in these registers, the
3865 // quesiton is whether this particular type is too big.
3866 CGF.EmitBlock(MaybeRegBlock);
3867
3868 // Integer arguments may need to correct register alignment (for example a
3869 // "struct { __int128 a; };" gets passed in x_2N, x_{2N+1}). In this case we
3870 // align __gr_offs to calculate the potential address.
3871 if (FreeIntRegs < 8 && AI.isDirect() && getContext().getTypeAlign(Ty) > 64) {
3872 int Align = getContext().getTypeAlign(Ty) / 8;
3873
3874 reg_offs = CGF.Builder.CreateAdd(reg_offs,
3875 llvm::ConstantInt::get(CGF.Int32Ty, Align - 1),
3876 "align_regoffs");
3877 reg_offs = CGF.Builder.CreateAnd(reg_offs,
3878 llvm::ConstantInt::get(CGF.Int32Ty, -Align),
3879 "aligned_regoffs");
3880 }
3881
3882 // Update the gr_offs/vr_offs pointer for next call to va_arg on this va_list.
3883 llvm::Value *NewOffset = 0;
3884 NewOffset = CGF.Builder.CreateAdd(reg_offs,
3885 llvm::ConstantInt::get(CGF.Int32Ty, RegSize),
3886 "new_reg_offs");
3887 CGF.Builder.CreateStore(NewOffset, reg_offs_p);
3888
3889 // Now we're in a position to decide whether this argument really was in
3890 // registers or not.
3891 llvm::Value *InRegs = 0;
3892 InRegs = CGF.Builder.CreateICmpSLE(NewOffset,
3893 llvm::ConstantInt::get(CGF.Int32Ty, 0),
3894 "inreg");
3895
3896 CGF.Builder.CreateCondBr(InRegs, InRegBlock, OnStackBlock);
3897
3898 //=======================================
3899 // Argument was in registers
3900 //=======================================
3901
3902 // Now we emit the code for if the argument was originally passed in
3903 // registers. First start the appropriate block:
3904 CGF.EmitBlock(InRegBlock);
3905
3906 llvm::Value *reg_top_p = 0, *reg_top = 0;
3907 reg_top_p = CGF.Builder.CreateStructGEP(VAListAddr, reg_top_index, "reg_top_p");
3908 reg_top = CGF.Builder.CreateLoad(reg_top_p, "reg_top");
3909 llvm::Value *BaseAddr = CGF.Builder.CreateGEP(reg_top, reg_offs);
3910 llvm::Value *RegAddr = 0;
3911 llvm::Type *MemTy = llvm::PointerType::getUnqual(CGF.ConvertTypeForMem(Ty));
3912
3913 if (!AI.isDirect()) {
3914 // If it's been passed indirectly (actually a struct), whatever we find from
3915 // stored registers or on the stack will actually be a struct **.
3916 MemTy = llvm::PointerType::getUnqual(MemTy);
3917 }
3918
3919 const Type *Base = 0;
3920 uint64_t NumMembers;
3921 if (isHomogeneousAggregate(Ty, Base, getContext(), &NumMembers)
3922 && NumMembers > 1) {
3923 // Homogeneous aggregates passed in registers will have their elements split
3924 // and stored 16-bytes apart regardless of size (they're notionally in qN,
3925 // qN+1, ...). We reload and store into a temporary local variable
3926 // contiguously.
3927 assert(AI.isDirect() && "Homogeneous aggregates should be passed directly");
3928 llvm::Type *BaseTy = CGF.ConvertType(QualType(Base, 0));
3929 llvm::Type *HFATy = llvm::ArrayType::get(BaseTy, NumMembers);
3930 llvm::Value *Tmp = CGF.CreateTempAlloca(HFATy);
3931
3932 for (unsigned i = 0; i < NumMembers; ++i) {
3933 llvm::Value *BaseOffset = llvm::ConstantInt::get(CGF.Int32Ty, 16 * i);
3934 llvm::Value *LoadAddr = CGF.Builder.CreateGEP(BaseAddr, BaseOffset);
3935 LoadAddr = CGF.Builder.CreateBitCast(LoadAddr,
3936 llvm::PointerType::getUnqual(BaseTy));
3937 llvm::Value *StoreAddr = CGF.Builder.CreateStructGEP(Tmp, i);
3938
3939 llvm::Value *Elem = CGF.Builder.CreateLoad(LoadAddr);
3940 CGF.Builder.CreateStore(Elem, StoreAddr);
3941 }
3942
3943 RegAddr = CGF.Builder.CreateBitCast(Tmp, MemTy);
3944 } else {
3945 // Otherwise the object is contiguous in memory
3946 RegAddr = CGF.Builder.CreateBitCast(BaseAddr, MemTy);
3947 }
3948
3949 CGF.EmitBranch(ContBlock);
3950
3951 //=======================================
3952 // Argument was on the stack
3953 //=======================================
3954 CGF.EmitBlock(OnStackBlock);
3955
3956 llvm::Value *stack_p = 0, *OnStackAddr = 0;
3957 stack_p = CGF.Builder.CreateStructGEP(VAListAddr, 0, "stack_p");
3958 OnStackAddr = CGF.Builder.CreateLoad(stack_p, "stack");
3959
3960 // Again, stack arguments may need realigmnent. In this case both integer and
3961 // floating-point ones might be affected.
3962 if (AI.isDirect() && getContext().getTypeAlign(Ty) > 64) {
3963 int Align = getContext().getTypeAlign(Ty) / 8;
3964
3965 OnStackAddr = CGF.Builder.CreatePtrToInt(OnStackAddr, CGF.Int64Ty);
3966
3967 OnStackAddr = CGF.Builder.CreateAdd(OnStackAddr,
3968 llvm::ConstantInt::get(CGF.Int64Ty, Align - 1),
3969 "align_stack");
3970 OnStackAddr = CGF.Builder.CreateAnd(OnStackAddr,
3971 llvm::ConstantInt::get(CGF.Int64Ty, -Align),
3972 "align_stack");
3973
3974 OnStackAddr = CGF.Builder.CreateIntToPtr(OnStackAddr, CGF.Int8PtrTy);
3975 }
3976
3977 uint64_t StackSize;
3978 if (AI.isDirect())
3979 StackSize = getContext().getTypeSize(Ty) / 8;
3980 else
3981 StackSize = 8;
3982
3983 // All stack slots are 8 bytes
3984 StackSize = llvm::RoundUpToAlignment(StackSize, 8);
3985
3986 llvm::Value *StackSizeC = llvm::ConstantInt::get(CGF.Int32Ty, StackSize);
3987 llvm::Value *NewStack = CGF.Builder.CreateGEP(OnStackAddr, StackSizeC,
3988 "new_stack");
3989
3990 // Write the new value of __stack for the next call to va_arg
3991 CGF.Builder.CreateStore(NewStack, stack_p);
3992
3993 OnStackAddr = CGF.Builder.CreateBitCast(OnStackAddr, MemTy);
3994
3995 CGF.EmitBranch(ContBlock);
3996
3997 //=======================================
3998 // Tidy up
3999 //=======================================
4000 CGF.EmitBlock(ContBlock);
4001
4002 llvm::PHINode *ResAddr = CGF.Builder.CreatePHI(MemTy, 2, "vaarg.addr");
4003 ResAddr->addIncoming(RegAddr, InRegBlock);
4004 ResAddr->addIncoming(OnStackAddr, OnStackBlock);
4005
4006 if (AI.isDirect())
4007 return ResAddr;
4008
4009 return CGF.Builder.CreateLoad(ResAddr, "vaarg.addr");
4010}
4011
4012//===----------------------------------------------------------------------===//
Justin Holewinski2c585b92012-05-24 17:43:12 +00004013// NVPTX ABI Implementation
Justin Holewinski0259c3a2011-04-22 11:10:38 +00004014//===----------------------------------------------------------------------===//
4015
4016namespace {
4017
Justin Holewinski2c585b92012-05-24 17:43:12 +00004018class NVPTXABIInfo : public ABIInfo {
Justin Holewinski0259c3a2011-04-22 11:10:38 +00004019public:
John McCallbd7370a2013-02-28 19:01:20 +00004020 NVPTXABIInfo(CodeGenTypes &CGT) : ABIInfo(CGT) { setRuntimeCC(); }
Justin Holewinski0259c3a2011-04-22 11:10:38 +00004021
4022 ABIArgInfo classifyReturnType(QualType RetTy) const;
4023 ABIArgInfo classifyArgumentType(QualType Ty) const;
4024
4025 virtual void computeInfo(CGFunctionInfo &FI) const;
4026 virtual llvm::Value *EmitVAArg(llvm::Value *VAListAddr, QualType Ty,
4027 CodeGenFunction &CFG) const;
John McCallbd7370a2013-02-28 19:01:20 +00004028private:
4029 void setRuntimeCC();
Justin Holewinski0259c3a2011-04-22 11:10:38 +00004030};
4031
Justin Holewinski2c585b92012-05-24 17:43:12 +00004032class NVPTXTargetCodeGenInfo : public TargetCodeGenInfo {
Justin Holewinski0259c3a2011-04-22 11:10:38 +00004033public:
Justin Holewinski2c585b92012-05-24 17:43:12 +00004034 NVPTXTargetCodeGenInfo(CodeGenTypes &CGT)
4035 : TargetCodeGenInfo(new NVPTXABIInfo(CGT)) {}
Justin Holewinski818eafb2011-10-05 17:58:44 +00004036
Peter Collingbourne2f7aa992011-10-13 16:24:41 +00004037 virtual void SetTargetAttributes(const Decl *D, llvm::GlobalValue *GV,
4038 CodeGen::CodeGenModule &M) const;
Justin Holewinski0259c3a2011-04-22 11:10:38 +00004039};
4040
Justin Holewinski2c585b92012-05-24 17:43:12 +00004041ABIArgInfo NVPTXABIInfo::classifyReturnType(QualType RetTy) const {
Justin Holewinski0259c3a2011-04-22 11:10:38 +00004042 if (RetTy->isVoidType())
4043 return ABIArgInfo::getIgnore();
4044 if (isAggregateTypeForABI(RetTy))
4045 return ABIArgInfo::getIndirect(0);
4046 return ABIArgInfo::getDirect();
4047}
4048
Justin Holewinski2c585b92012-05-24 17:43:12 +00004049ABIArgInfo NVPTXABIInfo::classifyArgumentType(QualType Ty) const {
Justin Holewinski0259c3a2011-04-22 11:10:38 +00004050 if (isAggregateTypeForABI(Ty))
4051 return ABIArgInfo::getIndirect(0);
4052
4053 return ABIArgInfo::getDirect();
4054}
4055
Justin Holewinski2c585b92012-05-24 17:43:12 +00004056void NVPTXABIInfo::computeInfo(CGFunctionInfo &FI) const {
Justin Holewinski0259c3a2011-04-22 11:10:38 +00004057 FI.getReturnInfo() = classifyReturnType(FI.getReturnType());
4058 for (CGFunctionInfo::arg_iterator it = FI.arg_begin(), ie = FI.arg_end();
4059 it != ie; ++it)
4060 it->info = classifyArgumentType(it->type);
4061
4062 // Always honor user-specified calling convention.
4063 if (FI.getCallingConvention() != llvm::CallingConv::C)
4064 return;
4065
John McCallbd7370a2013-02-28 19:01:20 +00004066 FI.setEffectiveCallingConvention(getRuntimeCC());
4067}
4068
4069void NVPTXABIInfo::setRuntimeCC() {
Justin Holewinski0259c3a2011-04-22 11:10:38 +00004070 // Calling convention as default by an ABI.
Justin Holewinski2c585b92012-05-24 17:43:12 +00004071 // We're still using the PTX_Kernel/PTX_Device calling conventions here,
4072 // but we should switch to NVVM metadata later on.
David Blaikie4e4d0842012-03-11 07:00:24 +00004073 const LangOptions &LangOpts = getContext().getLangOpts();
Peter Collingbourne744d90b2011-10-06 16:49:54 +00004074 if (LangOpts.OpenCL || LangOpts.CUDA) {
4075 // If we are in OpenCL or CUDA mode, then default to device functions
John McCallbd7370a2013-02-28 19:01:20 +00004076 RuntimeCC = llvm::CallingConv::PTX_Device;
Justin Holewinski818eafb2011-10-05 17:58:44 +00004077 } else {
4078 // If we are in standard C/C++ mode, use the triple to decide on the default
4079 StringRef Env =
4080 getContext().getTargetInfo().getTriple().getEnvironmentName();
4081 if (Env == "device")
John McCallbd7370a2013-02-28 19:01:20 +00004082 RuntimeCC = llvm::CallingConv::PTX_Device;
Justin Holewinski818eafb2011-10-05 17:58:44 +00004083 else
John McCallbd7370a2013-02-28 19:01:20 +00004084 RuntimeCC = llvm::CallingConv::PTX_Kernel;
Justin Holewinski818eafb2011-10-05 17:58:44 +00004085 }
Justin Holewinski0259c3a2011-04-22 11:10:38 +00004086}
4087
Justin Holewinski2c585b92012-05-24 17:43:12 +00004088llvm::Value *NVPTXABIInfo::EmitVAArg(llvm::Value *VAListAddr, QualType Ty,
4089 CodeGenFunction &CFG) const {
4090 llvm_unreachable("NVPTX does not support varargs");
Justin Holewinski0259c3a2011-04-22 11:10:38 +00004091}
4092
Justin Holewinski2c585b92012-05-24 17:43:12 +00004093void NVPTXTargetCodeGenInfo::
4094SetTargetAttributes(const Decl *D, llvm::GlobalValue *GV,
4095 CodeGen::CodeGenModule &M) const{
Justin Holewinski818eafb2011-10-05 17:58:44 +00004096 const FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
4097 if (!FD) return;
4098
4099 llvm::Function *F = cast<llvm::Function>(GV);
4100
4101 // Perform special handling in OpenCL mode
David Blaikie4e4d0842012-03-11 07:00:24 +00004102 if (M.getLangOpts().OpenCL) {
Justin Holewinski818eafb2011-10-05 17:58:44 +00004103 // Use OpenCL function attributes to set proper calling conventions
4104 // By default, all functions are device functions
Justin Holewinski818eafb2011-10-05 17:58:44 +00004105 if (FD->hasAttr<OpenCLKernelAttr>()) {
4106 // OpenCL __kernel functions get a kernel calling convention
Peter Collingbourne744d90b2011-10-06 16:49:54 +00004107 F->setCallingConv(llvm::CallingConv::PTX_Kernel);
Justin Holewinski818eafb2011-10-05 17:58:44 +00004108 // And kernel functions are not subject to inlining
Bill Wendling72390b32012-12-20 19:27:06 +00004109 F->addFnAttr(llvm::Attribute::NoInline);
Justin Holewinski818eafb2011-10-05 17:58:44 +00004110 }
Peter Collingbourne744d90b2011-10-06 16:49:54 +00004111 }
Justin Holewinski818eafb2011-10-05 17:58:44 +00004112
Peter Collingbourne744d90b2011-10-06 16:49:54 +00004113 // Perform special handling in CUDA mode.
David Blaikie4e4d0842012-03-11 07:00:24 +00004114 if (M.getLangOpts().CUDA) {
Peter Collingbourne744d90b2011-10-06 16:49:54 +00004115 // CUDA __global__ functions get a kernel calling convention. Since
4116 // __global__ functions cannot be called from the device, we do not
4117 // need to set the noinline attribute.
4118 if (FD->getAttr<CUDAGlobalAttr>())
4119 F->setCallingConv(llvm::CallingConv::PTX_Kernel);
Justin Holewinski818eafb2011-10-05 17:58:44 +00004120 }
4121}
4122
Justin Holewinski0259c3a2011-04-22 11:10:38 +00004123}
4124
4125//===----------------------------------------------------------------------===//
Wesley Peck276fdf42010-12-19 19:57:51 +00004126// MBlaze ABI Implementation
4127//===----------------------------------------------------------------------===//
4128
4129namespace {
4130
4131class MBlazeABIInfo : public ABIInfo {
4132public:
4133 MBlazeABIInfo(CodeGenTypes &CGT) : ABIInfo(CGT) {}
4134
4135 bool isPromotableIntegerType(QualType Ty) const;
4136
4137 ABIArgInfo classifyReturnType(QualType RetTy) const;
4138 ABIArgInfo classifyArgumentType(QualType RetTy) const;
4139
4140 virtual void computeInfo(CGFunctionInfo &FI) const {
4141 FI.getReturnInfo() = classifyReturnType(FI.getReturnType());
4142 for (CGFunctionInfo::arg_iterator it = FI.arg_begin(), ie = FI.arg_end();
4143 it != ie; ++it)
4144 it->info = classifyArgumentType(it->type);
4145 }
4146
4147 virtual llvm::Value *EmitVAArg(llvm::Value *VAListAddr, QualType Ty,
4148 CodeGenFunction &CGF) const;
4149};
4150
4151class MBlazeTargetCodeGenInfo : public TargetCodeGenInfo {
4152public:
4153 MBlazeTargetCodeGenInfo(CodeGenTypes &CGT)
4154 : TargetCodeGenInfo(new MBlazeABIInfo(CGT)) {}
4155 void SetTargetAttributes(const Decl *D, llvm::GlobalValue *GV,
4156 CodeGen::CodeGenModule &M) const;
4157};
4158
4159}
4160
4161bool MBlazeABIInfo::isPromotableIntegerType(QualType Ty) const {
4162 // MBlaze ABI requires all 8 and 16 bit quantities to be extended.
4163 if (const BuiltinType *BT = Ty->getAs<BuiltinType>())
4164 switch (BT->getKind()) {
4165 case BuiltinType::Bool:
4166 case BuiltinType::Char_S:
4167 case BuiltinType::Char_U:
4168 case BuiltinType::SChar:
4169 case BuiltinType::UChar:
4170 case BuiltinType::Short:
4171 case BuiltinType::UShort:
4172 return true;
4173 default:
4174 return false;
4175 }
4176 return false;
4177}
4178
4179llvm::Value *MBlazeABIInfo::EmitVAArg(llvm::Value *VAListAddr, QualType Ty,
4180 CodeGenFunction &CGF) const {
4181 // FIXME: Implement
4182 return 0;
4183}
4184
4185
4186ABIArgInfo MBlazeABIInfo::classifyReturnType(QualType RetTy) const {
4187 if (RetTy->isVoidType())
4188 return ABIArgInfo::getIgnore();
4189 if (isAggregateTypeForABI(RetTy))
4190 return ABIArgInfo::getIndirect(0);
4191
4192 return (isPromotableIntegerType(RetTy) ?
4193 ABIArgInfo::getExtend() : ABIArgInfo::getDirect());
4194}
4195
4196ABIArgInfo MBlazeABIInfo::classifyArgumentType(QualType Ty) const {
4197 if (isAggregateTypeForABI(Ty))
4198 return ABIArgInfo::getIndirect(0);
4199
4200 return (isPromotableIntegerType(Ty) ?
4201 ABIArgInfo::getExtend() : ABIArgInfo::getDirect());
4202}
4203
4204void MBlazeTargetCodeGenInfo::SetTargetAttributes(const Decl *D,
4205 llvm::GlobalValue *GV,
4206 CodeGen::CodeGenModule &M)
4207 const {
4208 const FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
4209 if (!FD) return;
NAKAMURA Takumi125b4cb2011-02-17 08:50:50 +00004210
Wesley Peck276fdf42010-12-19 19:57:51 +00004211 llvm::CallingConv::ID CC = llvm::CallingConv::C;
4212 if (FD->hasAttr<MBlazeInterruptHandlerAttr>())
4213 CC = llvm::CallingConv::MBLAZE_INTR;
4214 else if (FD->hasAttr<MBlazeSaveVolatilesAttr>())
4215 CC = llvm::CallingConv::MBLAZE_SVOL;
4216
4217 if (CC != llvm::CallingConv::C) {
4218 // Handle 'interrupt_handler' attribute:
4219 llvm::Function *F = cast<llvm::Function>(GV);
4220
4221 // Step 1: Set ISR calling convention.
4222 F->setCallingConv(CC);
4223
4224 // Step 2: Add attributes goodness.
Bill Wendling72390b32012-12-20 19:27:06 +00004225 F->addFnAttr(llvm::Attribute::NoInline);
Wesley Peck276fdf42010-12-19 19:57:51 +00004226 }
4227
4228 // Step 3: Emit _interrupt_handler alias.
4229 if (CC == llvm::CallingConv::MBLAZE_INTR)
4230 new llvm::GlobalAlias(GV->getType(), llvm::Function::ExternalLinkage,
4231 "_interrupt_handler", GV, &M.getModule());
4232}
4233
4234
4235//===----------------------------------------------------------------------===//
Anton Korobeynikov82d0a412010-01-10 12:58:08 +00004236// MSP430 ABI Implementation
Chris Lattnerdce5ad02010-06-28 20:05:43 +00004237//===----------------------------------------------------------------------===//
Anton Korobeynikov82d0a412010-01-10 12:58:08 +00004238
4239namespace {
4240
4241class MSP430TargetCodeGenInfo : public TargetCodeGenInfo {
4242public:
Chris Lattnerea044322010-07-29 02:01:43 +00004243 MSP430TargetCodeGenInfo(CodeGenTypes &CGT)
4244 : TargetCodeGenInfo(new DefaultABIInfo(CGT)) {}
Anton Korobeynikov82d0a412010-01-10 12:58:08 +00004245 void SetTargetAttributes(const Decl *D, llvm::GlobalValue *GV,
4246 CodeGen::CodeGenModule &M) const;
4247};
4248
4249}
4250
4251void MSP430TargetCodeGenInfo::SetTargetAttributes(const Decl *D,
4252 llvm::GlobalValue *GV,
4253 CodeGen::CodeGenModule &M) const {
4254 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
4255 if (const MSP430InterruptAttr *attr = FD->getAttr<MSP430InterruptAttr>()) {
4256 // Handle 'interrupt' attribute:
4257 llvm::Function *F = cast<llvm::Function>(GV);
4258
4259 // Step 1: Set ISR calling convention.
4260 F->setCallingConv(llvm::CallingConv::MSP430_INTR);
4261
4262 // Step 2: Add attributes goodness.
Bill Wendling72390b32012-12-20 19:27:06 +00004263 F->addFnAttr(llvm::Attribute::NoInline);
Anton Korobeynikov82d0a412010-01-10 12:58:08 +00004264
4265 // Step 3: Emit ISR vector alias.
Anton Korobeynikovf419a852012-11-26 18:59:10 +00004266 unsigned Num = attr->getNumber() / 2;
Anton Korobeynikov82d0a412010-01-10 12:58:08 +00004267 new llvm::GlobalAlias(GV->getType(), llvm::Function::ExternalLinkage,
Anton Korobeynikovf419a852012-11-26 18:59:10 +00004268 "__isr_" + Twine(Num),
Anton Korobeynikov82d0a412010-01-10 12:58:08 +00004269 GV, &M.getModule());
4270 }
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00004271 }
4272}
4273
Chris Lattnerdce5ad02010-06-28 20:05:43 +00004274//===----------------------------------------------------------------------===//
John McCallaeeb7012010-05-27 06:19:26 +00004275// MIPS ABI Implementation. This works for both little-endian and
4276// big-endian variants.
Chris Lattnerdce5ad02010-06-28 20:05:43 +00004277//===----------------------------------------------------------------------===//
4278
John McCallaeeb7012010-05-27 06:19:26 +00004279namespace {
Akira Hatanaka619e8872011-06-02 00:09:17 +00004280class MipsABIInfo : public ABIInfo {
Akira Hatanakac0e3b662011-11-02 23:14:57 +00004281 bool IsO32;
Akira Hatanakac359f202012-07-03 19:24:06 +00004282 unsigned MinABIStackAlignInBytes, StackAlignInBytes;
4283 void CoerceToIntArgs(uint64_t TySize,
4284 SmallVector<llvm::Type*, 8> &ArgList) const;
Akira Hatanaka91338cf2012-05-11 21:56:58 +00004285 llvm::Type* HandleAggregates(QualType Ty, uint64_t TySize) const;
Akira Hatanakac7ecc2e2012-01-04 03:34:42 +00004286 llvm::Type* returnAggregateInRegs(QualType RetTy, uint64_t Size) const;
Akira Hatanakaa33fd392012-01-09 19:31:25 +00004287 llvm::Type* getPaddingType(uint64_t Align, uint64_t Offset) const;
Akira Hatanaka619e8872011-06-02 00:09:17 +00004288public:
Akira Hatanakab551dd32011-11-03 00:05:50 +00004289 MipsABIInfo(CodeGenTypes &CGT, bool _IsO32) :
Akira Hatanakac359f202012-07-03 19:24:06 +00004290 ABIInfo(CGT), IsO32(_IsO32), MinABIStackAlignInBytes(IsO32 ? 4 : 8),
4291 StackAlignInBytes(IsO32 ? 8 : 16) {}
Akira Hatanaka619e8872011-06-02 00:09:17 +00004292
4293 ABIArgInfo classifyReturnType(QualType RetTy) const;
Akira Hatanakaf0cc2082012-01-07 00:25:33 +00004294 ABIArgInfo classifyArgumentType(QualType RetTy, uint64_t &Offset) const;
Akira Hatanaka619e8872011-06-02 00:09:17 +00004295 virtual void computeInfo(CGFunctionInfo &FI) const;
4296 virtual llvm::Value *EmitVAArg(llvm::Value *VAListAddr, QualType Ty,
4297 CodeGenFunction &CGF) const;
4298};
4299
John McCallaeeb7012010-05-27 06:19:26 +00004300class MIPSTargetCodeGenInfo : public TargetCodeGenInfo {
Akira Hatanakae624fa02011-09-20 18:23:28 +00004301 unsigned SizeOfUnwindException;
John McCallaeeb7012010-05-27 06:19:26 +00004302public:
Akira Hatanakac0e3b662011-11-02 23:14:57 +00004303 MIPSTargetCodeGenInfo(CodeGenTypes &CGT, bool IsO32)
4304 : TargetCodeGenInfo(new MipsABIInfo(CGT, IsO32)),
4305 SizeOfUnwindException(IsO32 ? 24 : 32) {}
John McCallaeeb7012010-05-27 06:19:26 +00004306
4307 int getDwarfEHStackPointer(CodeGen::CodeGenModule &CGM) const {
4308 return 29;
4309 }
4310
Reed Kotler7dfd1822013-01-16 17:10:28 +00004311 void SetTargetAttributes(const Decl *D, llvm::GlobalValue *GV,
4312 CodeGen::CodeGenModule &CGM) const {
Reed Kotlerad4b8b42013-03-13 20:40:30 +00004313 const FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
4314 if (!FD) return;
Rafael Espindolad8e6d6d2013-03-19 14:32:23 +00004315 llvm::Function *Fn = cast<llvm::Function>(GV);
Reed Kotlerad4b8b42013-03-13 20:40:30 +00004316 if (FD->hasAttr<Mips16Attr>()) {
4317 Fn->addFnAttr("mips16");
4318 }
4319 else if (FD->hasAttr<NoMips16Attr>()) {
4320 Fn->addFnAttr("nomips16");
4321 }
Reed Kotler7dfd1822013-01-16 17:10:28 +00004322 }
Reed Kotlerad4b8b42013-03-13 20:40:30 +00004323
John McCallaeeb7012010-05-27 06:19:26 +00004324 bool initDwarfEHRegSizeTable(CodeGen::CodeGenFunction &CGF,
Michael J. Spencer8bea82f2010-08-25 18:17:27 +00004325 llvm::Value *Address) const;
John McCall49e34be2011-08-30 01:42:09 +00004326
4327 unsigned getSizeOfUnwindException() const {
Akira Hatanakae624fa02011-09-20 18:23:28 +00004328 return SizeOfUnwindException;
John McCall49e34be2011-08-30 01:42:09 +00004329 }
John McCallaeeb7012010-05-27 06:19:26 +00004330};
4331}
4332
Akira Hatanakac359f202012-07-03 19:24:06 +00004333void MipsABIInfo::CoerceToIntArgs(uint64_t TySize,
4334 SmallVector<llvm::Type*, 8> &ArgList) const {
4335 llvm::IntegerType *IntTy =
4336 llvm::IntegerType::get(getVMContext(), MinABIStackAlignInBytes * 8);
Akira Hatanaka91338cf2012-05-11 21:56:58 +00004337
4338 // Add (TySize / MinABIStackAlignInBytes) args of IntTy.
4339 for (unsigned N = TySize / (MinABIStackAlignInBytes * 8); N; --N)
4340 ArgList.push_back(IntTy);
4341
4342 // If necessary, add one more integer type to ArgList.
4343 unsigned R = TySize % (MinABIStackAlignInBytes * 8);
4344
4345 if (R)
4346 ArgList.push_back(llvm::IntegerType::get(getVMContext(), R));
Akira Hatanaka91338cf2012-05-11 21:56:58 +00004347}
4348
Akira Hatanakad5a257f2011-11-02 23:54:49 +00004349// In N32/64, an aligned double precision floating point field is passed in
4350// a register.
Akira Hatanaka91338cf2012-05-11 21:56:58 +00004351llvm::Type* MipsABIInfo::HandleAggregates(QualType Ty, uint64_t TySize) const {
Akira Hatanakac359f202012-07-03 19:24:06 +00004352 SmallVector<llvm::Type*, 8> ArgList, IntArgList;
4353
4354 if (IsO32) {
4355 CoerceToIntArgs(TySize, ArgList);
4356 return llvm::StructType::get(getVMContext(), ArgList);
4357 }
Akira Hatanakad5a257f2011-11-02 23:54:49 +00004358
Akira Hatanaka2afd23d2012-01-12 00:52:17 +00004359 if (Ty->isComplexType())
4360 return CGT.ConvertType(Ty);
Akira Hatanaka6d1080f2012-01-10 23:12:19 +00004361
Akira Hatanakaa34e9212012-02-09 19:54:16 +00004362 const RecordType *RT = Ty->getAs<RecordType>();
Akira Hatanakad5a257f2011-11-02 23:54:49 +00004363
Akira Hatanakac359f202012-07-03 19:24:06 +00004364 // Unions/vectors are passed in integer registers.
4365 if (!RT || !RT->isStructureOrClassType()) {
4366 CoerceToIntArgs(TySize, ArgList);
4367 return llvm::StructType::get(getVMContext(), ArgList);
4368 }
Akira Hatanakad5a257f2011-11-02 23:54:49 +00004369
4370 const RecordDecl *RD = RT->getDecl();
4371 const ASTRecordLayout &Layout = getContext().getASTRecordLayout(RD);
Akira Hatanaka91338cf2012-05-11 21:56:58 +00004372 assert(!(TySize % 8) && "Size of structure must be multiple of 8.");
Akira Hatanakad5a257f2011-11-02 23:54:49 +00004373
Akira Hatanakad5a257f2011-11-02 23:54:49 +00004374 uint64_t LastOffset = 0;
4375 unsigned idx = 0;
4376 llvm::IntegerType *I64 = llvm::IntegerType::get(getVMContext(), 64);
4377
Akira Hatanakaa34e9212012-02-09 19:54:16 +00004378 // Iterate over fields in the struct/class and check if there are any aligned
4379 // double fields.
Akira Hatanakad5a257f2011-11-02 23:54:49 +00004380 for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end();
4381 i != e; ++i, ++idx) {
David Blaikie262bc182012-04-30 02:36:29 +00004382 const QualType Ty = i->getType();
Akira Hatanakad5a257f2011-11-02 23:54:49 +00004383 const BuiltinType *BT = Ty->getAs<BuiltinType>();
4384
4385 if (!BT || BT->getKind() != BuiltinType::Double)
4386 continue;
4387
4388 uint64_t Offset = Layout.getFieldOffset(idx);
4389 if (Offset % 64) // Ignore doubles that are not aligned.
4390 continue;
4391
4392 // Add ((Offset - LastOffset) / 64) args of type i64.
4393 for (unsigned j = (Offset - LastOffset) / 64; j > 0; --j)
4394 ArgList.push_back(I64);
4395
4396 // Add double type.
4397 ArgList.push_back(llvm::Type::getDoubleTy(getVMContext()));
4398 LastOffset = Offset + 64;
4399 }
4400
Akira Hatanakac359f202012-07-03 19:24:06 +00004401 CoerceToIntArgs(TySize - LastOffset, IntArgList);
4402 ArgList.append(IntArgList.begin(), IntArgList.end());
Akira Hatanakad5a257f2011-11-02 23:54:49 +00004403
4404 return llvm::StructType::get(getVMContext(), ArgList);
4405}
4406
Akira Hatanakaa33fd392012-01-09 19:31:25 +00004407llvm::Type *MipsABIInfo::getPaddingType(uint64_t Align, uint64_t Offset) const {
Akira Hatanaka91338cf2012-05-11 21:56:58 +00004408 assert((Offset % MinABIStackAlignInBytes) == 0);
Akira Hatanakaa33fd392012-01-09 19:31:25 +00004409
Akira Hatanaka91338cf2012-05-11 21:56:58 +00004410 if ((Align - 1) & Offset)
4411 return llvm::IntegerType::get(getVMContext(), MinABIStackAlignInBytes * 8);
4412
4413 return 0;
Akira Hatanakaa33fd392012-01-09 19:31:25 +00004414}
Akira Hatanaka9659d592012-01-10 22:44:52 +00004415
Akira Hatanakaf0cc2082012-01-07 00:25:33 +00004416ABIArgInfo
4417MipsABIInfo::classifyArgumentType(QualType Ty, uint64_t &Offset) const {
Akira Hatanakaa33fd392012-01-09 19:31:25 +00004418 uint64_t OrigOffset = Offset;
Akira Hatanaka91338cf2012-05-11 21:56:58 +00004419 uint64_t TySize = getContext().getTypeSize(Ty);
Akira Hatanakaa33fd392012-01-09 19:31:25 +00004420 uint64_t Align = getContext().getTypeAlign(Ty) / 8;
Akira Hatanaka91338cf2012-05-11 21:56:58 +00004421
Akira Hatanakac359f202012-07-03 19:24:06 +00004422 Align = std::min(std::max(Align, (uint64_t)MinABIStackAlignInBytes),
4423 (uint64_t)StackAlignInBytes);
Akira Hatanaka91338cf2012-05-11 21:56:58 +00004424 Offset = llvm::RoundUpToAlignment(Offset, Align);
4425 Offset += llvm::RoundUpToAlignment(TySize, Align * 8) / 8;
Akira Hatanakaa33fd392012-01-09 19:31:25 +00004426
Akira Hatanakac359f202012-07-03 19:24:06 +00004427 if (isAggregateTypeForABI(Ty) || Ty->isVectorType()) {
Akira Hatanaka619e8872011-06-02 00:09:17 +00004428 // Ignore empty aggregates.
Akira Hatanakaf0cc2082012-01-07 00:25:33 +00004429 if (TySize == 0)
Akira Hatanaka619e8872011-06-02 00:09:17 +00004430 return ABIArgInfo::getIgnore();
4431
Akira Hatanaka511949b2011-08-01 18:09:58 +00004432 // Records with non trivial destructors/constructors should not be passed
4433 // by value.
Akira Hatanakaf0cc2082012-01-07 00:25:33 +00004434 if (isRecordWithNonTrivialDestructorOrCopyConstructor(Ty)) {
Akira Hatanaka91338cf2012-05-11 21:56:58 +00004435 Offset = OrigOffset + MinABIStackAlignInBytes;
Akira Hatanaka511949b2011-08-01 18:09:58 +00004436 return ABIArgInfo::getIndirect(0, /*ByVal=*/false);
Akira Hatanakaf0cc2082012-01-07 00:25:33 +00004437 }
Akira Hatanaka511949b2011-08-01 18:09:58 +00004438
Akira Hatanaka91338cf2012-05-11 21:56:58 +00004439 // If we have reached here, aggregates are passed directly by coercing to
4440 // another structure type. Padding is inserted if the offset of the
4441 // aggregate is unaligned.
4442 return ABIArgInfo::getDirect(HandleAggregates(Ty, TySize), 0,
4443 getPaddingType(Align, OrigOffset));
Akira Hatanaka619e8872011-06-02 00:09:17 +00004444 }
4445
4446 // Treat an enum type as its underlying type.
4447 if (const EnumType *EnumTy = Ty->getAs<EnumType>())
4448 Ty = EnumTy->getDecl()->getIntegerType();
4449
Akira Hatanakaa33fd392012-01-09 19:31:25 +00004450 if (Ty->isPromotableIntegerType())
4451 return ABIArgInfo::getExtend();
4452
Akira Hatanaka4055cfc2013-01-24 21:47:33 +00004453 return ABIArgInfo::getDirect(0, 0,
4454 IsO32 ? 0 : getPaddingType(Align, OrigOffset));
Akira Hatanaka619e8872011-06-02 00:09:17 +00004455}
4456
Akira Hatanakac7ecc2e2012-01-04 03:34:42 +00004457llvm::Type*
4458MipsABIInfo::returnAggregateInRegs(QualType RetTy, uint64_t Size) const {
Akira Hatanakada54ff32012-02-09 18:49:26 +00004459 const RecordType *RT = RetTy->getAs<RecordType>();
Akira Hatanakac359f202012-07-03 19:24:06 +00004460 SmallVector<llvm::Type*, 8> RTList;
Akira Hatanakac7ecc2e2012-01-04 03:34:42 +00004461
Akira Hatanakada54ff32012-02-09 18:49:26 +00004462 if (RT && RT->isStructureOrClassType()) {
Akira Hatanakac7ecc2e2012-01-04 03:34:42 +00004463 const RecordDecl *RD = RT->getDecl();
Akira Hatanakada54ff32012-02-09 18:49:26 +00004464 const ASTRecordLayout &Layout = getContext().getASTRecordLayout(RD);
4465 unsigned FieldCnt = Layout.getFieldCount();
Akira Hatanakac7ecc2e2012-01-04 03:34:42 +00004466
Akira Hatanakada54ff32012-02-09 18:49:26 +00004467 // N32/64 returns struct/classes in floating point registers if the
4468 // following conditions are met:
4469 // 1. The size of the struct/class is no larger than 128-bit.
4470 // 2. The struct/class has one or two fields all of which are floating
4471 // point types.
4472 // 3. The offset of the first field is zero (this follows what gcc does).
4473 //
4474 // Any other composite results are returned in integer registers.
4475 //
4476 if (FieldCnt && (FieldCnt <= 2) && !Layout.getFieldOffset(0)) {
4477 RecordDecl::field_iterator b = RD->field_begin(), e = RD->field_end();
4478 for (; b != e; ++b) {
David Blaikie262bc182012-04-30 02:36:29 +00004479 const BuiltinType *BT = b->getType()->getAs<BuiltinType>();
Akira Hatanakac7ecc2e2012-01-04 03:34:42 +00004480
Akira Hatanakada54ff32012-02-09 18:49:26 +00004481 if (!BT || !BT->isFloatingPoint())
4482 break;
Akira Hatanakac7ecc2e2012-01-04 03:34:42 +00004483
David Blaikie262bc182012-04-30 02:36:29 +00004484 RTList.push_back(CGT.ConvertType(b->getType()));
Akira Hatanakada54ff32012-02-09 18:49:26 +00004485 }
4486
4487 if (b == e)
4488 return llvm::StructType::get(getVMContext(), RTList,
4489 RD->hasAttr<PackedAttr>());
4490
4491 RTList.clear();
Akira Hatanakac7ecc2e2012-01-04 03:34:42 +00004492 }
Akira Hatanakac7ecc2e2012-01-04 03:34:42 +00004493 }
4494
Akira Hatanakac359f202012-07-03 19:24:06 +00004495 CoerceToIntArgs(Size, RTList);
Akira Hatanakac7ecc2e2012-01-04 03:34:42 +00004496 return llvm::StructType::get(getVMContext(), RTList);
4497}
4498
Akira Hatanaka619e8872011-06-02 00:09:17 +00004499ABIArgInfo MipsABIInfo::classifyReturnType(QualType RetTy) const {
Akira Hatanakaa8536c02012-01-23 23:18:57 +00004500 uint64_t Size = getContext().getTypeSize(RetTy);
4501
4502 if (RetTy->isVoidType() || Size == 0)
Akira Hatanaka619e8872011-06-02 00:09:17 +00004503 return ABIArgInfo::getIgnore();
4504
Akira Hatanaka8aeb1472012-05-11 21:01:17 +00004505 if (isAggregateTypeForABI(RetTy) || RetTy->isVectorType()) {
Akira Hatanakac7ecc2e2012-01-04 03:34:42 +00004506 if (Size <= 128) {
4507 if (RetTy->isAnyComplexType())
4508 return ABIArgInfo::getDirect();
4509
Akira Hatanakac359f202012-07-03 19:24:06 +00004510 // O32 returns integer vectors in registers.
4511 if (IsO32 && RetTy->isVectorType() && !RetTy->hasFloatingRepresentation())
4512 return ABIArgInfo::getDirect(returnAggregateInRegs(RetTy, Size));
4513
Akira Hatanaka526cdfb2012-02-08 01:31:22 +00004514 if (!IsO32 && !isRecordWithNonTrivialDestructorOrCopyConstructor(RetTy))
Akira Hatanakac7ecc2e2012-01-04 03:34:42 +00004515 return ABIArgInfo::getDirect(returnAggregateInRegs(RetTy, Size));
4516 }
Akira Hatanaka619e8872011-06-02 00:09:17 +00004517
4518 return ABIArgInfo::getIndirect(0);
4519 }
4520
4521 // Treat an enum type as its underlying type.
4522 if (const EnumType *EnumTy = RetTy->getAs<EnumType>())
4523 RetTy = EnumTy->getDecl()->getIntegerType();
4524
4525 return (RetTy->isPromotableIntegerType() ?
4526 ABIArgInfo::getExtend() : ABIArgInfo::getDirect());
4527}
4528
4529void MipsABIInfo::computeInfo(CGFunctionInfo &FI) const {
Akira Hatanakacc662542012-01-12 01:10:09 +00004530 ABIArgInfo &RetInfo = FI.getReturnInfo();
4531 RetInfo = classifyReturnType(FI.getReturnType());
4532
4533 // Check if a pointer to an aggregate is passed as a hidden argument.
Akira Hatanaka91338cf2012-05-11 21:56:58 +00004534 uint64_t Offset = RetInfo.isIndirect() ? MinABIStackAlignInBytes : 0;
Akira Hatanakacc662542012-01-12 01:10:09 +00004535
Akira Hatanaka619e8872011-06-02 00:09:17 +00004536 for (CGFunctionInfo::arg_iterator it = FI.arg_begin(), ie = FI.arg_end();
4537 it != ie; ++it)
Akira Hatanakaf0cc2082012-01-07 00:25:33 +00004538 it->info = classifyArgumentType(it->type, Offset);
Akira Hatanaka619e8872011-06-02 00:09:17 +00004539}
4540
4541llvm::Value* MipsABIInfo::EmitVAArg(llvm::Value *VAListAddr, QualType Ty,
4542 CodeGenFunction &CGF) const {
Chris Lattner8b418682012-02-07 00:39:47 +00004543 llvm::Type *BP = CGF.Int8PtrTy;
4544 llvm::Type *BPP = CGF.Int8PtrPtrTy;
Akira Hatanakac35e69d2011-08-01 20:48:01 +00004545
4546 CGBuilderTy &Builder = CGF.Builder;
4547 llvm::Value *VAListAddrAsBPP = Builder.CreateBitCast(VAListAddr, BPP, "ap");
4548 llvm::Value *Addr = Builder.CreateLoad(VAListAddrAsBPP, "ap.cur");
Akira Hatanaka8f675e42012-01-23 23:59:52 +00004549 int64_t TypeAlign = getContext().getTypeAlign(Ty) / 8;
Akira Hatanakac35e69d2011-08-01 20:48:01 +00004550 llvm::Type *PTy = llvm::PointerType::getUnqual(CGF.ConvertType(Ty));
4551 llvm::Value *AddrTyped;
Akira Hatanaka8f675e42012-01-23 23:59:52 +00004552 unsigned PtrWidth = getContext().getTargetInfo().getPointerWidth(0);
4553 llvm::IntegerType *IntTy = (PtrWidth == 32) ? CGF.Int32Ty : CGF.Int64Ty;
Akira Hatanakac35e69d2011-08-01 20:48:01 +00004554
4555 if (TypeAlign > MinABIStackAlignInBytes) {
Akira Hatanaka8f675e42012-01-23 23:59:52 +00004556 llvm::Value *AddrAsInt = CGF.Builder.CreatePtrToInt(Addr, IntTy);
4557 llvm::Value *Inc = llvm::ConstantInt::get(IntTy, TypeAlign - 1);
4558 llvm::Value *Mask = llvm::ConstantInt::get(IntTy, -TypeAlign);
4559 llvm::Value *Add = CGF.Builder.CreateAdd(AddrAsInt, Inc);
Akira Hatanakac35e69d2011-08-01 20:48:01 +00004560 llvm::Value *And = CGF.Builder.CreateAnd(Add, Mask);
4561 AddrTyped = CGF.Builder.CreateIntToPtr(And, PTy);
4562 }
4563 else
4564 AddrTyped = Builder.CreateBitCast(Addr, PTy);
4565
4566 llvm::Value *AlignedAddr = Builder.CreateBitCast(AddrTyped, BP);
Akira Hatanaka8f675e42012-01-23 23:59:52 +00004567 TypeAlign = std::max((unsigned)TypeAlign, MinABIStackAlignInBytes);
Akira Hatanakac35e69d2011-08-01 20:48:01 +00004568 uint64_t Offset =
4569 llvm::RoundUpToAlignment(CGF.getContext().getTypeSize(Ty) / 8, TypeAlign);
4570 llvm::Value *NextAddr =
Akira Hatanaka8f675e42012-01-23 23:59:52 +00004571 Builder.CreateGEP(AlignedAddr, llvm::ConstantInt::get(IntTy, Offset),
Akira Hatanakac35e69d2011-08-01 20:48:01 +00004572 "ap.next");
4573 Builder.CreateStore(NextAddr, VAListAddrAsBPP);
4574
4575 return AddrTyped;
Akira Hatanaka619e8872011-06-02 00:09:17 +00004576}
4577
John McCallaeeb7012010-05-27 06:19:26 +00004578bool
4579MIPSTargetCodeGenInfo::initDwarfEHRegSizeTable(CodeGen::CodeGenFunction &CGF,
4580 llvm::Value *Address) const {
4581 // This information comes from gcc's implementation, which seems to
4582 // as canonical as it gets.
4583
John McCallaeeb7012010-05-27 06:19:26 +00004584 // Everything on MIPS is 4 bytes. Double-precision FP registers
4585 // are aliased to pairs of single-precision FP registers.
Chris Lattner8b418682012-02-07 00:39:47 +00004586 llvm::Value *Four8 = llvm::ConstantInt::get(CGF.Int8Ty, 4);
John McCallaeeb7012010-05-27 06:19:26 +00004587
4588 // 0-31 are the general purpose registers, $0 - $31.
4589 // 32-63 are the floating-point registers, $f0 - $f31.
4590 // 64 and 65 are the multiply/divide registers, $hi and $lo.
4591 // 66 is the (notional, I think) register for signal-handler return.
Chris Lattner8b418682012-02-07 00:39:47 +00004592 AssignToArrayRange(CGF.Builder, Address, Four8, 0, 65);
John McCallaeeb7012010-05-27 06:19:26 +00004593
4594 // 67-74 are the floating-point status registers, $fcc0 - $fcc7.
4595 // They are one bit wide and ignored here.
4596
4597 // 80-111 are the coprocessor 0 registers, $c0r0 - $c0r31.
4598 // (coprocessor 1 is the FP unit)
4599 // 112-143 are the coprocessor 2 registers, $c2r0 - $c2r31.
4600 // 144-175 are the coprocessor 3 registers, $c3r0 - $c3r31.
4601 // 176-181 are the DSP accumulator registers.
Chris Lattner8b418682012-02-07 00:39:47 +00004602 AssignToArrayRange(CGF.Builder, Address, Four8, 80, 181);
John McCallaeeb7012010-05-27 06:19:26 +00004603 return false;
4604}
4605
Peter Collingbourne2f7aa992011-10-13 16:24:41 +00004606//===----------------------------------------------------------------------===//
4607// TCE ABI Implementation (see http://tce.cs.tut.fi). Uses mostly the defaults.
4608// Currently subclassed only to implement custom OpenCL C function attribute
4609// handling.
4610//===----------------------------------------------------------------------===//
4611
4612namespace {
4613
4614class TCETargetCodeGenInfo : public DefaultTargetCodeGenInfo {
4615public:
4616 TCETargetCodeGenInfo(CodeGenTypes &CGT)
4617 : DefaultTargetCodeGenInfo(CGT) {}
4618
4619 virtual void SetTargetAttributes(const Decl *D, llvm::GlobalValue *GV,
4620 CodeGen::CodeGenModule &M) const;
4621};
4622
4623void TCETargetCodeGenInfo::SetTargetAttributes(const Decl *D,
4624 llvm::GlobalValue *GV,
4625 CodeGen::CodeGenModule &M) const {
4626 const FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
4627 if (!FD) return;
4628
4629 llvm::Function *F = cast<llvm::Function>(GV);
4630
David Blaikie4e4d0842012-03-11 07:00:24 +00004631 if (M.getLangOpts().OpenCL) {
Peter Collingbourne2f7aa992011-10-13 16:24:41 +00004632 if (FD->hasAttr<OpenCLKernelAttr>()) {
4633 // OpenCL C Kernel functions are not subject to inlining
Bill Wendling72390b32012-12-20 19:27:06 +00004634 F->addFnAttr(llvm::Attribute::NoInline);
Peter Collingbourne2f7aa992011-10-13 16:24:41 +00004635
4636 if (FD->hasAttr<ReqdWorkGroupSizeAttr>()) {
4637
4638 // Convert the reqd_work_group_size() attributes to metadata.
4639 llvm::LLVMContext &Context = F->getContext();
4640 llvm::NamedMDNode *OpenCLMetadata =
4641 M.getModule().getOrInsertNamedMetadata("opencl.kernel_wg_size_info");
4642
4643 SmallVector<llvm::Value*, 5> Operands;
4644 Operands.push_back(F);
4645
Chris Lattner8b418682012-02-07 00:39:47 +00004646 Operands.push_back(llvm::Constant::getIntegerValue(M.Int32Ty,
4647 llvm::APInt(32,
4648 FD->getAttr<ReqdWorkGroupSizeAttr>()->getXDim())));
4649 Operands.push_back(llvm::Constant::getIntegerValue(M.Int32Ty,
4650 llvm::APInt(32,
Peter Collingbourne2f7aa992011-10-13 16:24:41 +00004651 FD->getAttr<ReqdWorkGroupSizeAttr>()->getYDim())));
Chris Lattner8b418682012-02-07 00:39:47 +00004652 Operands.push_back(llvm::Constant::getIntegerValue(M.Int32Ty,
4653 llvm::APInt(32,
Peter Collingbourne2f7aa992011-10-13 16:24:41 +00004654 FD->getAttr<ReqdWorkGroupSizeAttr>()->getZDim())));
4655
4656 // Add a boolean constant operand for "required" (true) or "hint" (false)
4657 // for implementing the work_group_size_hint attr later. Currently
4658 // always true as the hint is not yet implemented.
Chris Lattner8b418682012-02-07 00:39:47 +00004659 Operands.push_back(llvm::ConstantInt::getTrue(Context));
Peter Collingbourne2f7aa992011-10-13 16:24:41 +00004660 OpenCLMetadata->addOperand(llvm::MDNode::get(Context, Operands));
4661 }
4662 }
4663 }
4664}
4665
4666}
John McCallaeeb7012010-05-27 06:19:26 +00004667
Tony Linthicum96319392011-12-12 21:14:55 +00004668//===----------------------------------------------------------------------===//
4669// Hexagon ABI Implementation
4670//===----------------------------------------------------------------------===//
4671
4672namespace {
4673
4674class HexagonABIInfo : public ABIInfo {
4675
4676
4677public:
4678 HexagonABIInfo(CodeGenTypes &CGT) : ABIInfo(CGT) {}
4679
4680private:
4681
4682 ABIArgInfo classifyReturnType(QualType RetTy) const;
4683 ABIArgInfo classifyArgumentType(QualType RetTy) const;
4684
4685 virtual void computeInfo(CGFunctionInfo &FI) const;
4686
4687 virtual llvm::Value *EmitVAArg(llvm::Value *VAListAddr, QualType Ty,
4688 CodeGenFunction &CGF) const;
4689};
4690
4691class HexagonTargetCodeGenInfo : public TargetCodeGenInfo {
4692public:
4693 HexagonTargetCodeGenInfo(CodeGenTypes &CGT)
4694 :TargetCodeGenInfo(new HexagonABIInfo(CGT)) {}
4695
4696 int getDwarfEHStackPointer(CodeGen::CodeGenModule &M) const {
4697 return 29;
4698 }
4699};
4700
4701}
4702
4703void HexagonABIInfo::computeInfo(CGFunctionInfo &FI) const {
4704 FI.getReturnInfo() = classifyReturnType(FI.getReturnType());
4705 for (CGFunctionInfo::arg_iterator it = FI.arg_begin(), ie = FI.arg_end();
4706 it != ie; ++it)
4707 it->info = classifyArgumentType(it->type);
4708}
4709
4710ABIArgInfo HexagonABIInfo::classifyArgumentType(QualType Ty) const {
4711 if (!isAggregateTypeForABI(Ty)) {
4712 // Treat an enum type as its underlying type.
4713 if (const EnumType *EnumTy = Ty->getAs<EnumType>())
4714 Ty = EnumTy->getDecl()->getIntegerType();
4715
4716 return (Ty->isPromotableIntegerType() ?
4717 ABIArgInfo::getExtend() : ABIArgInfo::getDirect());
4718 }
4719
4720 // Ignore empty records.
4721 if (isEmptyRecord(getContext(), Ty, true))
4722 return ABIArgInfo::getIgnore();
4723
4724 // Structures with either a non-trivial destructor or a non-trivial
4725 // copy constructor are always indirect.
4726 if (isRecordWithNonTrivialDestructorOrCopyConstructor(Ty))
4727 return ABIArgInfo::getIndirect(0, /*ByVal=*/false);
4728
4729 uint64_t Size = getContext().getTypeSize(Ty);
4730 if (Size > 64)
4731 return ABIArgInfo::getIndirect(0, /*ByVal=*/true);
4732 // Pass in the smallest viable integer type.
4733 else if (Size > 32)
4734 return ABIArgInfo::getDirect(llvm::Type::getInt64Ty(getVMContext()));
4735 else if (Size > 16)
4736 return ABIArgInfo::getDirect(llvm::Type::getInt32Ty(getVMContext()));
4737 else if (Size > 8)
4738 return ABIArgInfo::getDirect(llvm::Type::getInt16Ty(getVMContext()));
4739 else
4740 return ABIArgInfo::getDirect(llvm::Type::getInt8Ty(getVMContext()));
4741}
4742
4743ABIArgInfo HexagonABIInfo::classifyReturnType(QualType RetTy) const {
4744 if (RetTy->isVoidType())
4745 return ABIArgInfo::getIgnore();
4746
4747 // Large vector types should be returned via memory.
4748 if (RetTy->isVectorType() && getContext().getTypeSize(RetTy) > 64)
4749 return ABIArgInfo::getIndirect(0);
4750
4751 if (!isAggregateTypeForABI(RetTy)) {
4752 // Treat an enum type as its underlying type.
4753 if (const EnumType *EnumTy = RetTy->getAs<EnumType>())
4754 RetTy = EnumTy->getDecl()->getIntegerType();
4755
4756 return (RetTy->isPromotableIntegerType() ?
4757 ABIArgInfo::getExtend() : ABIArgInfo::getDirect());
4758 }
4759
4760 // Structures with either a non-trivial destructor or a non-trivial
4761 // copy constructor are always indirect.
4762 if (isRecordWithNonTrivialDestructorOrCopyConstructor(RetTy))
4763 return ABIArgInfo::getIndirect(0, /*ByVal=*/false);
4764
4765 if (isEmptyRecord(getContext(), RetTy, true))
4766 return ABIArgInfo::getIgnore();
4767
4768 // Aggregates <= 8 bytes are returned in r0; other aggregates
4769 // are returned indirectly.
4770 uint64_t Size = getContext().getTypeSize(RetTy);
4771 if (Size <= 64) {
4772 // Return in the smallest viable integer type.
4773 if (Size <= 8)
4774 return ABIArgInfo::getDirect(llvm::Type::getInt8Ty(getVMContext()));
4775 if (Size <= 16)
4776 return ABIArgInfo::getDirect(llvm::Type::getInt16Ty(getVMContext()));
4777 if (Size <= 32)
4778 return ABIArgInfo::getDirect(llvm::Type::getInt32Ty(getVMContext()));
4779 return ABIArgInfo::getDirect(llvm::Type::getInt64Ty(getVMContext()));
4780 }
4781
4782 return ABIArgInfo::getIndirect(0, /*ByVal=*/true);
4783}
4784
4785llvm::Value *HexagonABIInfo::EmitVAArg(llvm::Value *VAListAddr, QualType Ty,
Chris Lattner8b418682012-02-07 00:39:47 +00004786 CodeGenFunction &CGF) const {
Tony Linthicum96319392011-12-12 21:14:55 +00004787 // FIXME: Need to handle alignment
Chris Lattner8b418682012-02-07 00:39:47 +00004788 llvm::Type *BPP = CGF.Int8PtrPtrTy;
Tony Linthicum96319392011-12-12 21:14:55 +00004789
4790 CGBuilderTy &Builder = CGF.Builder;
4791 llvm::Value *VAListAddrAsBPP = Builder.CreateBitCast(VAListAddr, BPP,
4792 "ap");
4793 llvm::Value *Addr = Builder.CreateLoad(VAListAddrAsBPP, "ap.cur");
4794 llvm::Type *PTy =
4795 llvm::PointerType::getUnqual(CGF.ConvertType(Ty));
4796 llvm::Value *AddrTyped = Builder.CreateBitCast(Addr, PTy);
4797
4798 uint64_t Offset =
4799 llvm::RoundUpToAlignment(CGF.getContext().getTypeSize(Ty) / 8, 4);
4800 llvm::Value *NextAddr =
4801 Builder.CreateGEP(Addr, llvm::ConstantInt::get(CGF.Int32Ty, Offset),
4802 "ap.next");
4803 Builder.CreateStore(NextAddr, VAListAddrAsBPP);
4804
4805 return AddrTyped;
4806}
4807
4808
Chris Lattnerea044322010-07-29 02:01:43 +00004809const TargetCodeGenInfo &CodeGenModule::getTargetCodeGenInfo() {
Anton Korobeynikov82d0a412010-01-10 12:58:08 +00004810 if (TheTargetCodeGenInfo)
4811 return *TheTargetCodeGenInfo;
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00004812
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00004813 const llvm::Triple &Triple = getContext().getTargetInfo().getTriple();
Daniel Dunbar1752ee42009-08-24 09:10:05 +00004814 switch (Triple.getArch()) {
Daniel Dunbar2c0843f2009-08-24 08:52:16 +00004815 default:
Chris Lattnerea044322010-07-29 02:01:43 +00004816 return *(TheTargetCodeGenInfo = new DefaultTargetCodeGenInfo(Types));
Daniel Dunbar2c0843f2009-08-24 08:52:16 +00004817
Derek Schuff9ed63f82012-09-06 17:37:28 +00004818 case llvm::Triple::le32:
4819 return *(TheTargetCodeGenInfo = new PNaClTargetCodeGenInfo(Types));
John McCallaeeb7012010-05-27 06:19:26 +00004820 case llvm::Triple::mips:
4821 case llvm::Triple::mipsel:
Akira Hatanakac0e3b662011-11-02 23:14:57 +00004822 return *(TheTargetCodeGenInfo = new MIPSTargetCodeGenInfo(Types, true));
John McCallaeeb7012010-05-27 06:19:26 +00004823
Akira Hatanaka8c6dfbe2011-09-20 18:30:57 +00004824 case llvm::Triple::mips64:
4825 case llvm::Triple::mips64el:
Akira Hatanakac0e3b662011-11-02 23:14:57 +00004826 return *(TheTargetCodeGenInfo = new MIPSTargetCodeGenInfo(Types, false));
Akira Hatanaka8c6dfbe2011-09-20 18:30:57 +00004827
Tim Northoverc264e162013-01-31 12:13:10 +00004828 case llvm::Triple::aarch64:
4829 return *(TheTargetCodeGenInfo = new AArch64TargetCodeGenInfo(Types));
4830
Daniel Dunbar34d91fd2009-09-12 00:59:49 +00004831 case llvm::Triple::arm:
4832 case llvm::Triple::thumb:
Sandeep Patel34c1af82011-04-05 00:23:47 +00004833 {
4834 ARMABIInfo::ABIKind Kind = ARMABIInfo::AAPCS;
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00004835 if (strcmp(getContext().getTargetInfo().getABI(), "apcs-gnu") == 0)
Sandeep Patel34c1af82011-04-05 00:23:47 +00004836 Kind = ARMABIInfo::APCS;
David Tweedb16abb12012-10-25 13:33:01 +00004837 else if (CodeGenOpts.FloatABI == "hard" ||
4838 (CodeGenOpts.FloatABI != "soft" && Triple.getEnvironment()==llvm::Triple::GNUEABIHF))
Sandeep Patel34c1af82011-04-05 00:23:47 +00004839 Kind = ARMABIInfo::AAPCS_VFP;
4840
Derek Schuff263366f2012-10-16 22:30:41 +00004841 switch (Triple.getOS()) {
Eli Bendersky441d9f72012-12-04 18:38:10 +00004842 case llvm::Triple::NaCl:
Derek Schuff263366f2012-10-16 22:30:41 +00004843 return *(TheTargetCodeGenInfo =
4844 new NaClARMTargetCodeGenInfo(Types, Kind));
4845 default:
4846 return *(TheTargetCodeGenInfo =
4847 new ARMTargetCodeGenInfo(Types, Kind));
4848 }
Sandeep Patel34c1af82011-04-05 00:23:47 +00004849 }
Daniel Dunbar34d91fd2009-09-12 00:59:49 +00004850
John McCallec853ba2010-03-11 00:10:12 +00004851 case llvm::Triple::ppc:
Chris Lattnerea044322010-07-29 02:01:43 +00004852 return *(TheTargetCodeGenInfo = new PPC32TargetCodeGenInfo(Types));
Roman Divacky0fbc4b92012-05-09 18:22:46 +00004853 case llvm::Triple::ppc64:
Bill Schmidt2fc107f2012-10-03 19:18:57 +00004854 if (Triple.isOSBinFormatELF())
4855 return *(TheTargetCodeGenInfo = new PPC64_SVR4_TargetCodeGenInfo(Types));
4856 else
4857 return *(TheTargetCodeGenInfo = new PPC64TargetCodeGenInfo(Types));
John McCallec853ba2010-03-11 00:10:12 +00004858
Peter Collingbourneedb66f32012-05-20 23:28:41 +00004859 case llvm::Triple::nvptx:
4860 case llvm::Triple::nvptx64:
Justin Holewinski2c585b92012-05-24 17:43:12 +00004861 return *(TheTargetCodeGenInfo = new NVPTXTargetCodeGenInfo(Types));
Justin Holewinski0259c3a2011-04-22 11:10:38 +00004862
Wesley Peck276fdf42010-12-19 19:57:51 +00004863 case llvm::Triple::mblaze:
4864 return *(TheTargetCodeGenInfo = new MBlazeTargetCodeGenInfo(Types));
4865
Anton Korobeynikov82d0a412010-01-10 12:58:08 +00004866 case llvm::Triple::msp430:
Chris Lattnerea044322010-07-29 02:01:43 +00004867 return *(TheTargetCodeGenInfo = new MSP430TargetCodeGenInfo(Types));
Daniel Dunbar34d91fd2009-09-12 00:59:49 +00004868
Peter Collingbourne2f7aa992011-10-13 16:24:41 +00004869 case llvm::Triple::tce:
4870 return *(TheTargetCodeGenInfo = new TCETargetCodeGenInfo(Types));
4871
Eli Friedmanc3e0fb42011-07-08 23:31:17 +00004872 case llvm::Triple::x86: {
Daniel Dunbardb57a4c2011-04-19 21:43:27 +00004873 if (Triple.isOSDarwin())
Anton Korobeynikov82d0a412010-01-10 12:58:08 +00004874 return *(TheTargetCodeGenInfo =
Chad Rosier1f1df1f2013-03-25 21:00:27 +00004875 new X86_32TargetCodeGenInfo(Types, true, true, false,
Rafael Espindolab48280b2012-07-31 02:44:24 +00004876 CodeGenOpts.NumRegisterParameters));
Daniel Dunbardb57a4c2011-04-19 21:43:27 +00004877
4878 switch (Triple.getOS()) {
Daniel Dunbar2c0843f2009-08-24 08:52:16 +00004879 case llvm::Triple::Cygwin:
Daniel Dunbar2c0843f2009-08-24 08:52:16 +00004880 case llvm::Triple::MinGW32:
Edward O'Callaghan727e2682009-10-21 11:58:24 +00004881 case llvm::Triple::AuroraUX:
4882 case llvm::Triple::DragonFly:
David Chisnall75c135a2009-09-03 01:48:05 +00004883 case llvm::Triple::FreeBSD:
Daniel Dunbar2c0843f2009-08-24 08:52:16 +00004884 case llvm::Triple::OpenBSD:
Eli Friedman42f74f22012-08-08 23:57:20 +00004885 case llvm::Triple::Bitrig:
Anton Korobeynikov82d0a412010-01-10 12:58:08 +00004886 return *(TheTargetCodeGenInfo =
Chad Rosier1f1df1f2013-03-25 21:00:27 +00004887 new X86_32TargetCodeGenInfo(Types, false, true, false,
Rafael Espindolab48280b2012-07-31 02:44:24 +00004888 CodeGenOpts.NumRegisterParameters));
Eli Friedman55fc7e22012-01-25 22:46:34 +00004889
4890 case llvm::Triple::Win32:
4891 return *(TheTargetCodeGenInfo =
Chad Rosier1f1df1f2013-03-25 21:00:27 +00004892 new X86_32TargetCodeGenInfo(Types, false, true, true,
Rafael Espindolab48280b2012-07-31 02:44:24 +00004893 CodeGenOpts.NumRegisterParameters));
Daniel Dunbar2c0843f2009-08-24 08:52:16 +00004894
4895 default:
Anton Korobeynikov82d0a412010-01-10 12:58:08 +00004896 return *(TheTargetCodeGenInfo =
Chad Rosier1f1df1f2013-03-25 21:00:27 +00004897 new X86_32TargetCodeGenInfo(Types, false, false, false,
Rafael Espindolab48280b2012-07-31 02:44:24 +00004898 CodeGenOpts.NumRegisterParameters));
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00004899 }
Eli Friedmanc3e0fb42011-07-08 23:31:17 +00004900 }
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00004901
Eli Friedmanee1ad992011-12-02 00:11:43 +00004902 case llvm::Triple::x86_64: {
4903 bool HasAVX = strcmp(getContext().getTargetInfo().getABI(), "avx") == 0;
4904
Chris Lattnerf13721d2010-08-31 16:44:54 +00004905 switch (Triple.getOS()) {
4906 case llvm::Triple::Win32:
NAKAMURA Takumi0aa20572011-02-17 08:51:38 +00004907 case llvm::Triple::MinGW32:
Chris Lattnerf13721d2010-08-31 16:44:54 +00004908 case llvm::Triple::Cygwin:
4909 return *(TheTargetCodeGenInfo = new WinX86_64TargetCodeGenInfo(Types));
Eli Bendersky441d9f72012-12-04 18:38:10 +00004910 case llvm::Triple::NaCl:
Derek Schuff263366f2012-10-16 22:30:41 +00004911 return *(TheTargetCodeGenInfo = new NaClX86_64TargetCodeGenInfo(Types, HasAVX));
Chris Lattnerf13721d2010-08-31 16:44:54 +00004912 default:
Eli Friedmanee1ad992011-12-02 00:11:43 +00004913 return *(TheTargetCodeGenInfo = new X86_64TargetCodeGenInfo(Types,
4914 HasAVX));
Chris Lattnerf13721d2010-08-31 16:44:54 +00004915 }
Daniel Dunbar2c0843f2009-08-24 08:52:16 +00004916 }
Tony Linthicum96319392011-12-12 21:14:55 +00004917 case llvm::Triple::hexagon:
4918 return *(TheTargetCodeGenInfo = new HexagonTargetCodeGenInfo(Types));
Eli Friedmanee1ad992011-12-02 00:11:43 +00004919 }
Anton Korobeynikovc4a59eb2009-06-05 22:08:42 +00004920}