blob: 18367d1602ba4da0617cd18b51e2a5e020a74cc3 [file] [log] [blame]
Anton Korobeynikov55bcea12010-01-10 12:58:08 +00001//===---- TargetInfo.cpp - Encapsulate target details -----------*- C++ -*-===//
Anton Korobeynikov244360d2009-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 Korobeynikov55bcea12010-01-10 12:58:08 +000015#include "TargetInfo.h"
Anton Korobeynikov244360d2009-06-05 22:08:42 +000016#include "ABIInfo.h"
Timur Iskhodzhanov8fe501d2013-04-17 12:54:10 +000017#include "CGCXXABI.h"
Reid Kleckner9b3e3df2014-09-04 20:04:38 +000018#include "CGValue.h"
Anton Korobeynikov244360d2009-06-05 22:08:42 +000019#include "CodeGenFunction.h"
Anders Carlsson15b73de2009-07-18 19:43:29 +000020#include "clang/AST/RecordLayout.h"
Mark Laceya8e7df32013-10-30 21:53:58 +000021#include "clang/CodeGen/CGFunctionInfo.h"
John McCall12f23522016-04-04 18:33:08 +000022#include "clang/CodeGen/SwiftCallingConv.h"
Saleem Abdulrasool10a49722016-04-08 16:52:00 +000023#include "clang/Frontend/CodeGenOptions.h"
Matt Arsenault43fae6c2014-12-04 20:38:18 +000024#include "llvm/ADT/StringExtras.h"
Daniel Dunbare3532f82009-08-24 08:52:16 +000025#include "llvm/ADT/Triple.h"
Chandler Carruthffd55512013-01-02 11:45:17 +000026#include "llvm/IR/DataLayout.h"
27#include "llvm/IR/Type.h"
Daniel Dunbar7230fa52009-12-03 09:13:49 +000028#include "llvm/Support/raw_ostream.h"
Saleem Abdulrasool10a49722016-04-08 16:52:00 +000029#include <algorithm> // std::sort
Robert Lytton844aeeb2014-05-02 09:33:20 +000030
Anton Korobeynikov244360d2009-06-05 22:08:42 +000031using namespace clang;
32using namespace CodeGen;
33
Pirama Arumuga Nainarbb846a32016-07-27 19:01:51 +000034// Helper for coercing an aggregate argument or return value into an integer
35// array of the same size (including padding) and alignment. This alternate
36// coercion happens only for the RenderScript ABI and can be removed after
37// runtimes that rely on it are no longer supported.
38//
39// RenderScript assumes that the size of the argument / return value in the IR
40// is the same as the size of the corresponding qualified type. This helper
41// coerces the aggregate type into an array of the same size (including
42// padding). This coercion is used in lieu of expansion of struct members or
43// other canonical coercions that return a coerced-type of larger size.
44//
45// Ty - The argument / return value type
46// Context - The associated ASTContext
47// LLVMContext - The associated LLVMContext
48static ABIArgInfo coerceToIntArray(QualType Ty,
49 ASTContext &Context,
50 llvm::LLVMContext &LLVMContext) {
51 // Alignment and Size are measured in bits.
52 const uint64_t Size = Context.getTypeSize(Ty);
53 const uint64_t Alignment = Context.getTypeAlign(Ty);
54 llvm::Type *IntType = llvm::Type::getIntNTy(LLVMContext, Alignment);
55 const uint64_t NumElements = (Size + Alignment - 1) / Alignment;
56 return ABIArgInfo::getDirect(llvm::ArrayType::get(IntType, NumElements));
57}
58
John McCall943fae92010-05-27 06:19:26 +000059static void AssignToArrayRange(CodeGen::CGBuilderTy &Builder,
60 llvm::Value *Array,
61 llvm::Value *Value,
62 unsigned FirstIndex,
63 unsigned LastIndex) {
64 // Alternatively, we could emit this as a loop in the source.
65 for (unsigned I = FirstIndex; I <= LastIndex; ++I) {
David Blaikiefb901c7a2015-04-04 15:12:29 +000066 llvm::Value *Cell =
67 Builder.CreateConstInBoundsGEP1_32(Builder.getInt8Ty(), Array, I);
John McCall7f416cc2015-09-08 08:05:57 +000068 Builder.CreateAlignedStore(Value, Cell, CharUnits::One());
John McCall943fae92010-05-27 06:19:26 +000069 }
70}
71
John McCalla1dee5302010-08-22 10:59:02 +000072static bool isAggregateTypeForABI(QualType T) {
John McCall47fb9502013-03-07 21:37:08 +000073 return !CodeGenFunction::hasScalarEvaluationKind(T) ||
John McCalla1dee5302010-08-22 10:59:02 +000074 T->isMemberFunctionPointerType();
75}
76
John McCall7f416cc2015-09-08 08:05:57 +000077ABIArgInfo
78ABIInfo::getNaturalAlignIndirect(QualType Ty, bool ByRef, bool Realign,
79 llvm::Type *Padding) const {
80 return ABIArgInfo::getIndirect(getContext().getTypeAlignInChars(Ty),
81 ByRef, Realign, Padding);
82}
83
84ABIArgInfo
85ABIInfo::getNaturalAlignIndirectInReg(QualType Ty, bool Realign) const {
86 return ABIArgInfo::getIndirectInReg(getContext().getTypeAlignInChars(Ty),
87 /*ByRef*/ false, Realign);
88}
89
Charles Davisc7d5c942015-09-17 20:55:33 +000090Address ABIInfo::EmitMSVAArg(CodeGenFunction &CGF, Address VAListAddr,
91 QualType Ty) const {
92 return Address::invalid();
93}
94
Angel Garcia Gomez637d1e62015-10-20 13:23:58 +000095ABIInfo::~ABIInfo() {}
Anton Korobeynikov244360d2009-06-05 22:08:42 +000096
John McCall12f23522016-04-04 18:33:08 +000097/// Does the given lowering require more than the given number of
98/// registers when expanded?
99///
100/// This is intended to be the basis of a reasonable basic implementation
101/// of should{Pass,Return}IndirectlyForSwift.
102///
103/// For most targets, a limit of four total registers is reasonable; this
104/// limits the amount of code required in order to move around the value
105/// in case it wasn't produced immediately prior to the call by the caller
106/// (or wasn't produced in exactly the right registers) or isn't used
107/// immediately within the callee. But some targets may need to further
108/// limit the register count due to an inability to support that many
109/// return registers.
110static bool occupiesMoreThan(CodeGenTypes &cgt,
111 ArrayRef<llvm::Type*> scalarTypes,
112 unsigned maxAllRegisters) {
113 unsigned intCount = 0, fpCount = 0;
114 for (llvm::Type *type : scalarTypes) {
115 if (type->isPointerTy()) {
116 intCount++;
117 } else if (auto intTy = dyn_cast<llvm::IntegerType>(type)) {
118 auto ptrWidth = cgt.getTarget().getPointerWidth(0);
119 intCount += (intTy->getBitWidth() + ptrWidth - 1) / ptrWidth;
120 } else {
121 assert(type->isVectorTy() || type->isFloatingPointTy());
122 fpCount++;
123 }
124 }
125
126 return (intCount + fpCount > maxAllRegisters);
127}
128
129bool SwiftABIInfo::isLegalVectorTypeForSwift(CharUnits vectorSize,
130 llvm::Type *eltTy,
131 unsigned numElts) const {
132 // The default implementation of this assumes that the target guarantees
133 // 128-bit SIMD support but nothing more.
134 return (vectorSize.getQuantity() > 8 && vectorSize.getQuantity() <= 16);
135}
136
Timur Iskhodzhanov8fe501d2013-04-17 12:54:10 +0000137static CGCXXABI::RecordArgABI getRecordArgABI(const RecordType *RT,
Mark Lacey3825e832013-10-06 01:33:34 +0000138 CGCXXABI &CXXABI) {
Timur Iskhodzhanov8fe501d2013-04-17 12:54:10 +0000139 const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(RT->getDecl());
140 if (!RD)
141 return CGCXXABI::RAA_Default;
Mark Lacey3825e832013-10-06 01:33:34 +0000142 return CXXABI.getRecordArgABI(RD);
Timur Iskhodzhanov8fe501d2013-04-17 12:54:10 +0000143}
144
145static CGCXXABI::RecordArgABI getRecordArgABI(QualType T,
Mark Lacey3825e832013-10-06 01:33:34 +0000146 CGCXXABI &CXXABI) {
Timur Iskhodzhanov8fe501d2013-04-17 12:54:10 +0000147 const RecordType *RT = T->getAs<RecordType>();
148 if (!RT)
149 return CGCXXABI::RAA_Default;
Mark Lacey3825e832013-10-06 01:33:34 +0000150 return getRecordArgABI(RT, CXXABI);
151}
152
Reid Klecknerb1be6832014-11-15 01:41:41 +0000153/// Pass transparent unions as if they were the type of the first element. Sema
154/// should ensure that all elements of the union have the same "machine type".
155static QualType useFirstFieldIfTransparentUnion(QualType Ty) {
156 if (const RecordType *UT = Ty->getAsUnionType()) {
157 const RecordDecl *UD = UT->getDecl();
158 if (UD->hasAttr<TransparentUnionAttr>()) {
159 assert(!UD->field_empty() && "sema created an empty transparent union");
160 return UD->field_begin()->getType();
161 }
162 }
163 return Ty;
164}
165
Mark Lacey3825e832013-10-06 01:33:34 +0000166CGCXXABI &ABIInfo::getCXXABI() const {
167 return CGT.getCXXABI();
Timur Iskhodzhanov8fe501d2013-04-17 12:54:10 +0000168}
169
Chris Lattner2b037972010-07-29 02:01:43 +0000170ASTContext &ABIInfo::getContext() const {
171 return CGT.getContext();
172}
173
174llvm::LLVMContext &ABIInfo::getVMContext() const {
175 return CGT.getLLVMContext();
176}
177
Micah Villmowdd31ca12012-10-08 16:25:52 +0000178const llvm::DataLayout &ABIInfo::getDataLayout() const {
179 return CGT.getDataLayout();
Chris Lattner2b037972010-07-29 02:01:43 +0000180}
181
John McCallc8e01702013-04-16 22:48:15 +0000182const TargetInfo &ABIInfo::getTarget() const {
183 return CGT.getTarget();
184}
Chris Lattner2b037972010-07-29 02:01:43 +0000185
Nirav Dave9a8f97e2016-02-22 16:48:42 +0000186bool ABIInfo:: isAndroid() const { return getTarget().getTriple().isAndroid(); }
187
Reid Klecknere9f6a712014-10-31 17:10:41 +0000188bool ABIInfo::isHomogeneousAggregateBaseType(QualType Ty) const {
189 return false;
190}
191
192bool ABIInfo::isHomogeneousAggregateSmallEnough(const Type *Base,
193 uint64_t Members) const {
194 return false;
195}
196
Petar Jovanovic1a3f9652015-05-26 21:07:19 +0000197bool ABIInfo::shouldSignExtUnsignedType(QualType Ty) const {
198 return false;
199}
200
Yaron Kerencdae9412016-01-29 19:38:18 +0000201LLVM_DUMP_METHOD void ABIArgInfo::dump() const {
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000202 raw_ostream &OS = llvm::errs();
Daniel Dunbar7230fa52009-12-03 09:13:49 +0000203 OS << "(ABIArgInfo Kind=";
Anton Korobeynikov244360d2009-06-05 22:08:42 +0000204 switch (TheKind) {
205 case Direct:
Chris Lattnerfe34c1d2010-07-29 06:26:06 +0000206 OS << "Direct Type=";
Chris Lattner2192fe52011-07-18 04:24:23 +0000207 if (llvm::Type *Ty = getCoerceToType())
Chris Lattnerfe34c1d2010-07-29 06:26:06 +0000208 Ty->print(OS);
209 else
210 OS << "null";
Anton Korobeynikov244360d2009-06-05 22:08:42 +0000211 break;
Anton Korobeynikov18adbf52009-06-06 09:36:29 +0000212 case Extend:
Daniel Dunbar7230fa52009-12-03 09:13:49 +0000213 OS << "Extend";
Anton Korobeynikov18adbf52009-06-06 09:36:29 +0000214 break;
Anton Korobeynikov244360d2009-06-05 22:08:42 +0000215 case Ignore:
Daniel Dunbar7230fa52009-12-03 09:13:49 +0000216 OS << "Ignore";
Anton Korobeynikov244360d2009-06-05 22:08:42 +0000217 break;
Reid Kleckner314ef7b2014-02-01 00:04:45 +0000218 case InAlloca:
219 OS << "InAlloca Offset=" << getInAllocaFieldIndex();
220 break;
Anton Korobeynikov244360d2009-06-05 22:08:42 +0000221 case Indirect:
John McCall7f416cc2015-09-08 08:05:57 +0000222 OS << "Indirect Align=" << getIndirectAlign().getQuantity()
Joerg Sonnenberger4921fe22011-07-15 18:23:44 +0000223 << " ByVal=" << getIndirectByVal()
Daniel Dunbar7b7c2932010-09-16 20:42:02 +0000224 << " Realign=" << getIndirectRealign();
Anton Korobeynikov244360d2009-06-05 22:08:42 +0000225 break;
226 case Expand:
Daniel Dunbar7230fa52009-12-03 09:13:49 +0000227 OS << "Expand";
Anton Korobeynikov244360d2009-06-05 22:08:42 +0000228 break;
John McCallf26e73d2016-03-11 04:30:43 +0000229 case CoerceAndExpand:
230 OS << "CoerceAndExpand Type=";
231 getCoerceAndExpandType()->print(OS);
232 break;
Anton Korobeynikov244360d2009-06-05 22:08:42 +0000233 }
Daniel Dunbar7230fa52009-12-03 09:13:49 +0000234 OS << ")\n";
Anton Korobeynikov244360d2009-06-05 22:08:42 +0000235}
236
Petar Jovanovic402257b2015-12-04 00:26:47 +0000237// Dynamically round a pointer up to a multiple of the given alignment.
238static llvm::Value *emitRoundPointerUpToAlignment(CodeGenFunction &CGF,
239 llvm::Value *Ptr,
240 CharUnits Align) {
241 llvm::Value *PtrAsInt = Ptr;
242 // OverflowArgArea = (OverflowArgArea + Align - 1) & -Align;
243 PtrAsInt = CGF.Builder.CreatePtrToInt(PtrAsInt, CGF.IntPtrTy);
244 PtrAsInt = CGF.Builder.CreateAdd(PtrAsInt,
245 llvm::ConstantInt::get(CGF.IntPtrTy, Align.getQuantity() - 1));
246 PtrAsInt = CGF.Builder.CreateAnd(PtrAsInt,
247 llvm::ConstantInt::get(CGF.IntPtrTy, -Align.getQuantity()));
248 PtrAsInt = CGF.Builder.CreateIntToPtr(PtrAsInt,
249 Ptr->getType(),
250 Ptr->getName() + ".aligned");
251 return PtrAsInt;
252}
253
John McCall7f416cc2015-09-08 08:05:57 +0000254/// Emit va_arg for a platform using the common void* representation,
255/// where arguments are simply emitted in an array of slots on the stack.
256///
257/// This version implements the core direct-value passing rules.
258///
259/// \param SlotSize - The size and alignment of a stack slot.
260/// Each argument will be allocated to a multiple of this number of
261/// slots, and all the slots will be aligned to this value.
262/// \param AllowHigherAlign - The slot alignment is not a cap;
263/// an argument type with an alignment greater than the slot size
264/// will be emitted on a higher-alignment address, potentially
265/// leaving one or more empty slots behind as padding. If this
266/// is false, the returned address might be less-aligned than
267/// DirectAlign.
268static Address emitVoidPtrDirectVAArg(CodeGenFunction &CGF,
269 Address VAListAddr,
270 llvm::Type *DirectTy,
271 CharUnits DirectSize,
272 CharUnits DirectAlign,
273 CharUnits SlotSize,
274 bool AllowHigherAlign) {
275 // Cast the element type to i8* if necessary. Some platforms define
276 // va_list as a struct containing an i8* instead of just an i8*.
277 if (VAListAddr.getElementType() != CGF.Int8PtrTy)
278 VAListAddr = CGF.Builder.CreateElementBitCast(VAListAddr, CGF.Int8PtrTy);
279
280 llvm::Value *Ptr = CGF.Builder.CreateLoad(VAListAddr, "argp.cur");
281
282 // If the CC aligns values higher than the slot size, do so if needed.
283 Address Addr = Address::invalid();
284 if (AllowHigherAlign && DirectAlign > SlotSize) {
Petar Jovanovic402257b2015-12-04 00:26:47 +0000285 Addr = Address(emitRoundPointerUpToAlignment(CGF, Ptr, DirectAlign),
286 DirectAlign);
John McCall7f416cc2015-09-08 08:05:57 +0000287 } else {
Petar Jovanovic402257b2015-12-04 00:26:47 +0000288 Addr = Address(Ptr, SlotSize);
John McCall7f416cc2015-09-08 08:05:57 +0000289 }
290
291 // Advance the pointer past the argument, then store that back.
Rui Ueyama83aa9792016-01-14 21:00:27 +0000292 CharUnits FullDirectSize = DirectSize.alignTo(SlotSize);
John McCall7f416cc2015-09-08 08:05:57 +0000293 llvm::Value *NextPtr =
294 CGF.Builder.CreateConstInBoundsByteGEP(Addr.getPointer(), FullDirectSize,
295 "argp.next");
296 CGF.Builder.CreateStore(NextPtr, VAListAddr);
297
298 // If the argument is smaller than a slot, and this is a big-endian
299 // target, the argument will be right-adjusted in its slot.
Strahinja Petrovic515a1eb2016-06-24 12:12:41 +0000300 if (DirectSize < SlotSize && CGF.CGM.getDataLayout().isBigEndian() &&
301 !DirectTy->isStructTy()) {
John McCall7f416cc2015-09-08 08:05:57 +0000302 Addr = CGF.Builder.CreateConstInBoundsByteGEP(Addr, SlotSize - DirectSize);
303 }
304
305 Addr = CGF.Builder.CreateElementBitCast(Addr, DirectTy);
306 return Addr;
307}
308
309/// Emit va_arg for a platform using the common void* representation,
310/// where arguments are simply emitted in an array of slots on the stack.
311///
312/// \param IsIndirect - Values of this type are passed indirectly.
313/// \param ValueInfo - The size and alignment of this type, generally
314/// computed with getContext().getTypeInfoInChars(ValueTy).
315/// \param SlotSizeAndAlign - The size and alignment of a stack slot.
316/// Each argument will be allocated to a multiple of this number of
317/// slots, and all the slots will be aligned to this value.
318/// \param AllowHigherAlign - The slot alignment is not a cap;
319/// an argument type with an alignment greater than the slot size
320/// will be emitted on a higher-alignment address, potentially
321/// leaving one or more empty slots behind as padding.
322static Address emitVoidPtrVAArg(CodeGenFunction &CGF, Address VAListAddr,
323 QualType ValueTy, bool IsIndirect,
324 std::pair<CharUnits, CharUnits> ValueInfo,
325 CharUnits SlotSizeAndAlign,
326 bool AllowHigherAlign) {
327 // The size and alignment of the value that was passed directly.
328 CharUnits DirectSize, DirectAlign;
329 if (IsIndirect) {
330 DirectSize = CGF.getPointerSize();
331 DirectAlign = CGF.getPointerAlign();
332 } else {
333 DirectSize = ValueInfo.first;
334 DirectAlign = ValueInfo.second;
335 }
336
337 // Cast the address we've calculated to the right type.
338 llvm::Type *DirectTy = CGF.ConvertTypeForMem(ValueTy);
339 if (IsIndirect)
340 DirectTy = DirectTy->getPointerTo(0);
341
342 Address Addr = emitVoidPtrDirectVAArg(CGF, VAListAddr, DirectTy,
343 DirectSize, DirectAlign,
344 SlotSizeAndAlign,
345 AllowHigherAlign);
346
347 if (IsIndirect) {
348 Addr = Address(CGF.Builder.CreateLoad(Addr), ValueInfo.second);
349 }
350
351 return Addr;
352
353}
354
355static Address emitMergePHI(CodeGenFunction &CGF,
356 Address Addr1, llvm::BasicBlock *Block1,
357 Address Addr2, llvm::BasicBlock *Block2,
358 const llvm::Twine &Name = "") {
359 assert(Addr1.getType() == Addr2.getType());
360 llvm::PHINode *PHI = CGF.Builder.CreatePHI(Addr1.getType(), 2, Name);
361 PHI->addIncoming(Addr1.getPointer(), Block1);
362 PHI->addIncoming(Addr2.getPointer(), Block2);
363 CharUnits Align = std::min(Addr1.getAlignment(), Addr2.getAlignment());
364 return Address(PHI, Align);
365}
366
Anton Korobeynikov55bcea12010-01-10 12:58:08 +0000367TargetCodeGenInfo::~TargetCodeGenInfo() { delete Info; }
368
John McCall3480ef22011-08-30 01:42:09 +0000369// If someone can figure out a general rule for this, that would be great.
370// It's probably just doomed to be platform-dependent, though.
371unsigned TargetCodeGenInfo::getSizeOfUnwindException() const {
372 // Verified for:
373 // x86-64 FreeBSD, Linux, Darwin
374 // x86-32 FreeBSD, Linux, Darwin
375 // PowerPC Linux, Darwin
376 // ARM Darwin (*not* EABI)
Tim Northover9bb857a2013-01-31 12:13:10 +0000377 // AArch64 Linux
John McCall3480ef22011-08-30 01:42:09 +0000378 return 32;
379}
380
John McCalla729c622012-02-17 03:33:10 +0000381bool TargetCodeGenInfo::isNoProtoCallVariadic(const CallArgList &args,
382 const FunctionNoProtoType *fnType) const {
John McCallcbc038a2011-09-21 08:08:30 +0000383 // The following conventions are known to require this to be false:
384 // x86_stdcall
385 // MIPS
386 // For everything else, we just prefer false unless we opt out.
387 return false;
388}
389
Reid Klecknere43f0fe2013-05-08 13:44:39 +0000390void
391TargetCodeGenInfo::getDependentLibraryOption(llvm::StringRef Lib,
392 llvm::SmallString<24> &Opt) const {
393 // This assumes the user is passing a library name like "rt" instead of a
394 // filename like "librt.a/so", and that they don't care whether it's static or
395 // dynamic.
396 Opt = "-l";
397 Opt += Lib;
398}
399
Nikolay Haustov8c6538b2016-06-30 09:06:33 +0000400unsigned TargetCodeGenInfo::getOpenCLKernelCallingConv() const {
401 return llvm::CallingConv::C;
402}
Yaxun Liu37ceede2016-07-20 19:21:11 +0000403
Yaxun Liu402804b2016-12-15 08:09:08 +0000404llvm::Constant *TargetCodeGenInfo::getNullPointer(const CodeGen::CodeGenModule &CGM,
405 llvm::PointerType *T, QualType QT) const {
406 return llvm::ConstantPointerNull::get(T);
407}
408
409llvm::Value *TargetCodeGenInfo::performAddrSpaceCast(
410 CodeGen::CodeGenFunction &CGF, llvm::Value *Src, QualType SrcTy,
411 QualType DestTy) const {
412 // Since target may map different address spaces in AST to the same address
413 // space, an address space conversion may end up as a bitcast.
414 return CGF.Builder.CreatePointerBitCastOrAddrSpaceCast(Src,
415 CGF.ConvertType(DestTy));
416}
417
Daniel Dunbar626f1d82009-09-13 08:03:58 +0000418static bool isEmptyRecord(ASTContext &Context, QualType T, bool AllowArrays);
Anton Korobeynikov244360d2009-06-05 22:08:42 +0000419
Sylvestre Ledru33b5baf2012-09-27 10:16:10 +0000420/// isEmptyField - Return true iff a the field is "empty", that is it
Anton Korobeynikov244360d2009-06-05 22:08:42 +0000421/// is an unnamed bit-field or an (array of) empty record(s).
Daniel Dunbar626f1d82009-09-13 08:03:58 +0000422static bool isEmptyField(ASTContext &Context, const FieldDecl *FD,
423 bool AllowArrays) {
Anton Korobeynikov244360d2009-06-05 22:08:42 +0000424 if (FD->isUnnamedBitfield())
425 return true;
426
427 QualType FT = FD->getType();
Anton Korobeynikov244360d2009-06-05 22:08:42 +0000428
Eli Friedman0b3f2012011-11-18 03:47:20 +0000429 // Constant arrays of empty records count as empty, strip them off.
430 // Constant arrays of zero length always count as empty.
Daniel Dunbar626f1d82009-09-13 08:03:58 +0000431 if (AllowArrays)
Eli Friedman0b3f2012011-11-18 03:47:20 +0000432 while (const ConstantArrayType *AT = Context.getAsConstantArrayType(FT)) {
433 if (AT->getSize() == 0)
434 return true;
Daniel Dunbar626f1d82009-09-13 08:03:58 +0000435 FT = AT->getElementType();
Eli Friedman0b3f2012011-11-18 03:47:20 +0000436 }
Daniel Dunbar626f1d82009-09-13 08:03:58 +0000437
Daniel Dunbarcd20ce12010-05-17 16:46:00 +0000438 const RecordType *RT = FT->getAs<RecordType>();
439 if (!RT)
440 return false;
441
442 // C++ record fields are never empty, at least in the Itanium ABI.
443 //
444 // FIXME: We should use a predicate for whether this behavior is true in the
445 // current ABI.
446 if (isa<CXXRecordDecl>(RT->getDecl()))
447 return false;
448
Daniel Dunbar626f1d82009-09-13 08:03:58 +0000449 return isEmptyRecord(Context, FT, AllowArrays);
Anton Korobeynikov244360d2009-06-05 22:08:42 +0000450}
451
Sylvestre Ledru33b5baf2012-09-27 10:16:10 +0000452/// isEmptyRecord - Return true iff a structure contains only empty
Anton Korobeynikov244360d2009-06-05 22:08:42 +0000453/// fields. Note that a structure with a flexible array member is not
454/// considered empty.
Daniel Dunbar626f1d82009-09-13 08:03:58 +0000455static bool isEmptyRecord(ASTContext &Context, QualType T, bool AllowArrays) {
Ted Kremenekc23c7e62009-07-29 21:53:49 +0000456 const RecordType *RT = T->getAs<RecordType>();
Anton Korobeynikov244360d2009-06-05 22:08:42 +0000457 if (!RT)
Denis Zobnin380b2242016-02-11 11:26:03 +0000458 return false;
Anton Korobeynikov244360d2009-06-05 22:08:42 +0000459 const RecordDecl *RD = RT->getDecl();
460 if (RD->hasFlexibleArrayMember())
461 return false;
Daniel Dunbarcd20ce12010-05-17 16:46:00 +0000462
Argyrios Kyrtzidisd42411f2011-05-17 02:17:52 +0000463 // If this is a C++ record, check the bases first.
Daniel Dunbarcd20ce12010-05-17 16:46:00 +0000464 if (const CXXRecordDecl *CXXRD = dyn_cast<CXXRecordDecl>(RD))
Aaron Ballman574705e2014-03-13 15:41:46 +0000465 for (const auto &I : CXXRD->bases())
466 if (!isEmptyRecord(Context, I.getType(), true))
Argyrios Kyrtzidisd42411f2011-05-17 02:17:52 +0000467 return false;
Daniel Dunbarcd20ce12010-05-17 16:46:00 +0000468
Aaron Ballmane8a8bae2014-03-08 20:12:42 +0000469 for (const auto *I : RD->fields())
470 if (!isEmptyField(Context, I, AllowArrays))
Anton Korobeynikov244360d2009-06-05 22:08:42 +0000471 return false;
472 return true;
473}
474
475/// isSingleElementStruct - Determine if a structure is a "single
476/// element struct", i.e. it has exactly one non-empty field or
477/// exactly one field which is itself a single element
478/// struct. Structures with flexible array members are never
479/// considered single element structs.
480///
481/// \return The field declaration for the single non-empty field, if
482/// it exists.
483static const Type *isSingleElementStruct(QualType T, ASTContext &Context) {
Benjamin Kramer83b1bf32015-03-02 16:09:24 +0000484 const RecordType *RT = T->getAs<RecordType>();
Anton Korobeynikov244360d2009-06-05 22:08:42 +0000485 if (!RT)
Craig Topper8a13c412014-05-21 05:09:00 +0000486 return nullptr;
Anton Korobeynikov244360d2009-06-05 22:08:42 +0000487
488 const RecordDecl *RD = RT->getDecl();
489 if (RD->hasFlexibleArrayMember())
Craig Topper8a13c412014-05-21 05:09:00 +0000490 return nullptr;
Anton Korobeynikov244360d2009-06-05 22:08:42 +0000491
Craig Topper8a13c412014-05-21 05:09:00 +0000492 const Type *Found = nullptr;
Michael J. Spencerb2f376b2010-08-25 18:17:27 +0000493
Daniel Dunbar12ebb472010-05-11 21:15:36 +0000494 // If this is a C++ record, check the bases first.
495 if (const CXXRecordDecl *CXXRD = dyn_cast<CXXRecordDecl>(RD)) {
Aaron Ballman574705e2014-03-13 15:41:46 +0000496 for (const auto &I : CXXRD->bases()) {
Daniel Dunbar12ebb472010-05-11 21:15:36 +0000497 // Ignore empty records.
Aaron Ballman574705e2014-03-13 15:41:46 +0000498 if (isEmptyRecord(Context, I.getType(), true))
Daniel Dunbar12ebb472010-05-11 21:15:36 +0000499 continue;
500
501 // If we already found an element then this isn't a single-element struct.
502 if (Found)
Craig Topper8a13c412014-05-21 05:09:00 +0000503 return nullptr;
Daniel Dunbar12ebb472010-05-11 21:15:36 +0000504
505 // If this is non-empty and not a single element struct, the composite
506 // cannot be a single element struct.
Aaron Ballman574705e2014-03-13 15:41:46 +0000507 Found = isSingleElementStruct(I.getType(), Context);
Daniel Dunbar12ebb472010-05-11 21:15:36 +0000508 if (!Found)
Craig Topper8a13c412014-05-21 05:09:00 +0000509 return nullptr;
Daniel Dunbar12ebb472010-05-11 21:15:36 +0000510 }
511 }
512
513 // Check for single element.
Aaron Ballmane8a8bae2014-03-08 20:12:42 +0000514 for (const auto *FD : RD->fields()) {
Anton Korobeynikov244360d2009-06-05 22:08:42 +0000515 QualType FT = FD->getType();
516
517 // Ignore empty fields.
Daniel Dunbar626f1d82009-09-13 08:03:58 +0000518 if (isEmptyField(Context, FD, true))
Anton Korobeynikov244360d2009-06-05 22:08:42 +0000519 continue;
520
521 // If we already found an element then this isn't a single-element
522 // struct.
523 if (Found)
Craig Topper8a13c412014-05-21 05:09:00 +0000524 return nullptr;
Anton Korobeynikov244360d2009-06-05 22:08:42 +0000525
526 // Treat single element arrays as the element.
527 while (const ConstantArrayType *AT = Context.getAsConstantArrayType(FT)) {
528 if (AT->getSize().getZExtValue() != 1)
529 break;
530 FT = AT->getElementType();
531 }
532
John McCalla1dee5302010-08-22 10:59:02 +0000533 if (!isAggregateTypeForABI(FT)) {
Anton Korobeynikov244360d2009-06-05 22:08:42 +0000534 Found = FT.getTypePtr();
535 } else {
536 Found = isSingleElementStruct(FT, Context);
537 if (!Found)
Craig Topper8a13c412014-05-21 05:09:00 +0000538 return nullptr;
Anton Korobeynikov244360d2009-06-05 22:08:42 +0000539 }
540 }
541
Eli Friedmanee945342011-11-18 01:25:50 +0000542 // We don't consider a struct a single-element struct if it has
543 // padding beyond the element type.
544 if (Found && Context.getTypeSize(Found) != Context.getTypeSize(T))
Craig Topper8a13c412014-05-21 05:09:00 +0000545 return nullptr;
Eli Friedmanee945342011-11-18 01:25:50 +0000546
Anton Korobeynikov244360d2009-06-05 22:08:42 +0000547 return Found;
548}
549
Anton Korobeynikov244360d2009-06-05 22:08:42 +0000550namespace {
James Y Knight29b5f082016-02-24 02:59:33 +0000551Address EmitVAArgInstr(CodeGenFunction &CGF, Address VAListAddr, QualType Ty,
552 const ABIArgInfo &AI) {
553 // This default implementation defers to the llvm backend's va_arg
554 // instruction. It can handle only passing arguments directly
555 // (typically only handled in the backend for primitive types), or
556 // aggregates passed indirectly by pointer (NOTE: if the "byval"
557 // flag has ABI impact in the callee, this implementation cannot
558 // work.)
559
560 // Only a few cases are covered here at the moment -- those needed
561 // by the default abi.
562 llvm::Value *Val;
563
564 if (AI.isIndirect()) {
565 assert(!AI.getPaddingType() &&
Richard Smith81ef0e12016-05-14 01:21:40 +0000566 "Unexpected PaddingType seen in arginfo in generic VAArg emitter!");
James Y Knight29b5f082016-02-24 02:59:33 +0000567 assert(
568 !AI.getIndirectRealign() &&
Richard Smith81ef0e12016-05-14 01:21:40 +0000569 "Unexpected IndirectRealign seen in arginfo in generic VAArg emitter!");
James Y Knight29b5f082016-02-24 02:59:33 +0000570
571 auto TyInfo = CGF.getContext().getTypeInfoInChars(Ty);
572 CharUnits TyAlignForABI = TyInfo.second;
573
574 llvm::Type *BaseTy =
575 llvm::PointerType::getUnqual(CGF.ConvertTypeForMem(Ty));
576 llvm::Value *Addr =
577 CGF.Builder.CreateVAArg(VAListAddr.getPointer(), BaseTy);
578 return Address(Addr, TyAlignForABI);
579 } else {
580 assert((AI.isDirect() || AI.isExtend()) &&
581 "Unexpected ArgInfo Kind in generic VAArg emitter!");
582
583 assert(!AI.getInReg() &&
Richard Smith81ef0e12016-05-14 01:21:40 +0000584 "Unexpected InReg seen in arginfo in generic VAArg emitter!");
James Y Knight29b5f082016-02-24 02:59:33 +0000585 assert(!AI.getPaddingType() &&
Richard Smith81ef0e12016-05-14 01:21:40 +0000586 "Unexpected PaddingType seen in arginfo in generic VAArg emitter!");
James Y Knight29b5f082016-02-24 02:59:33 +0000587 assert(!AI.getDirectOffset() &&
Richard Smith81ef0e12016-05-14 01:21:40 +0000588 "Unexpected DirectOffset seen in arginfo in generic VAArg emitter!");
James Y Knight29b5f082016-02-24 02:59:33 +0000589 assert(!AI.getCoerceToType() &&
Richard Smith81ef0e12016-05-14 01:21:40 +0000590 "Unexpected CoerceToType seen in arginfo in generic VAArg emitter!");
James Y Knight29b5f082016-02-24 02:59:33 +0000591
592 Address Temp = CGF.CreateMemTemp(Ty, "varet");
593 Val = CGF.Builder.CreateVAArg(VAListAddr.getPointer(), CGF.ConvertType(Ty));
594 CGF.Builder.CreateStore(Val, Temp);
595 return Temp;
596 }
597}
598
Anton Korobeynikov244360d2009-06-05 22:08:42 +0000599/// DefaultABIInfo - The default implementation for ABI specific
600/// details. This implementation provides information which results in
601/// self-consistent and sensible LLVM IR generation, but does not
602/// conform to any particular ABI.
603class DefaultABIInfo : public ABIInfo {
Chris Lattner2b037972010-07-29 02:01:43 +0000604public:
605 DefaultABIInfo(CodeGen::CodeGenTypes &CGT) : ABIInfo(CGT) {}
Michael J. Spencerb2f376b2010-08-25 18:17:27 +0000606
Chris Lattner458b2aa2010-07-29 02:16:43 +0000607 ABIArgInfo classifyReturnType(QualType RetTy) const;
608 ABIArgInfo classifyArgumentType(QualType RetTy) const;
Anton Korobeynikov244360d2009-06-05 22:08:42 +0000609
Craig Topper4f12f102014-03-12 06:41:41 +0000610 void computeInfo(CGFunctionInfo &FI) const override {
Reid Kleckner40ca9132014-05-13 22:05:45 +0000611 if (!getCXXABI().classifyReturnType(FI))
612 FI.getReturnInfo() = classifyReturnType(FI.getReturnType());
Aaron Ballmanec47bc22014-03-17 18:10:01 +0000613 for (auto &I : FI.arguments())
614 I.info = classifyArgumentType(I.type);
Anton Korobeynikov244360d2009-06-05 22:08:42 +0000615 }
616
John McCall7f416cc2015-09-08 08:05:57 +0000617 Address EmitVAArg(CodeGenFunction &CGF, Address VAListAddr,
James Y Knight29b5f082016-02-24 02:59:33 +0000618 QualType Ty) const override {
619 return EmitVAArgInstr(CGF, VAListAddr, Ty, classifyArgumentType(Ty));
620 }
Anton Korobeynikov244360d2009-06-05 22:08:42 +0000621};
622
Anton Korobeynikov55bcea12010-01-10 12:58:08 +0000623class DefaultTargetCodeGenInfo : public TargetCodeGenInfo {
624public:
Chris Lattner2b037972010-07-29 02:01:43 +0000625 DefaultTargetCodeGenInfo(CodeGen::CodeGenTypes &CGT)
626 : TargetCodeGenInfo(new DefaultABIInfo(CGT)) {}
Anton Korobeynikov55bcea12010-01-10 12:58:08 +0000627};
628
Chris Lattner458b2aa2010-07-29 02:16:43 +0000629ABIArgInfo DefaultABIInfo::classifyArgumentType(QualType Ty) const {
Reid Klecknerac385062015-05-18 22:46:30 +0000630 Ty = useFirstFieldIfTransparentUnion(Ty);
631
632 if (isAggregateTypeForABI(Ty)) {
633 // Records with non-trivial destructors/copy-constructors should not be
634 // passed by value.
635 if (CGCXXABI::RecordArgABI RAA = getRecordArgABI(Ty, getCXXABI()))
John McCall7f416cc2015-09-08 08:05:57 +0000636 return getNaturalAlignIndirect(Ty, RAA == CGCXXABI::RAA_DirectInMemory);
Reid Klecknerac385062015-05-18 22:46:30 +0000637
John McCall7f416cc2015-09-08 08:05:57 +0000638 return getNaturalAlignIndirect(Ty);
Reid Klecknerac385062015-05-18 22:46:30 +0000639 }
Daniel Dunbar557893d2010-04-21 19:10:51 +0000640
Chris Lattner9723d6c2010-03-11 18:19:55 +0000641 // Treat an enum type as its underlying type.
642 if (const EnumType *EnumTy = Ty->getAs<EnumType>())
643 Ty = EnumTy->getDecl()->getIntegerType();
Douglas Gregora71cc152010-02-02 20:10:50 +0000644
Chris Lattner9723d6c2010-03-11 18:19:55 +0000645 return (Ty->isPromotableIntegerType() ?
646 ABIArgInfo::getExtend() : ABIArgInfo::getDirect());
Anton Korobeynikov55bcea12010-01-10 12:58:08 +0000647}
648
Bob Wilsonbd4520b2011-01-10 23:54:17 +0000649ABIArgInfo DefaultABIInfo::classifyReturnType(QualType RetTy) const {
650 if (RetTy->isVoidType())
651 return ABIArgInfo::getIgnore();
652
653 if (isAggregateTypeForABI(RetTy))
John McCall7f416cc2015-09-08 08:05:57 +0000654 return getNaturalAlignIndirect(RetTy);
Bob Wilsonbd4520b2011-01-10 23:54:17 +0000655
656 // Treat an enum type as its underlying type.
657 if (const EnumType *EnumTy = RetTy->getAs<EnumType>())
658 RetTy = EnumTy->getDecl()->getIntegerType();
659
660 return (RetTy->isPromotableIntegerType() ?
661 ABIArgInfo::getExtend() : ABIArgInfo::getDirect());
662}
663
Derek Schuff09338a22012-09-06 17:37:28 +0000664//===----------------------------------------------------------------------===//
Dan Gohmanc2853072015-09-03 22:51:53 +0000665// WebAssembly ABI Implementation
666//
667// This is a very simple ABI that relies a lot on DefaultABIInfo.
668//===----------------------------------------------------------------------===//
669
670class WebAssemblyABIInfo final : public DefaultABIInfo {
671public:
672 explicit WebAssemblyABIInfo(CodeGen::CodeGenTypes &CGT)
673 : DefaultABIInfo(CGT) {}
674
675private:
676 ABIArgInfo classifyReturnType(QualType RetTy) const;
677 ABIArgInfo classifyArgumentType(QualType Ty) const;
678
679 // DefaultABIInfo's classifyReturnType and classifyArgumentType are
Richard Smith81ef0e12016-05-14 01:21:40 +0000680 // non-virtual, but computeInfo and EmitVAArg are virtual, so we
James Y Knight29b5f082016-02-24 02:59:33 +0000681 // overload them.
Dan Gohmanc2853072015-09-03 22:51:53 +0000682 void computeInfo(CGFunctionInfo &FI) const override {
683 if (!getCXXABI().classifyReturnType(FI))
684 FI.getReturnInfo() = classifyReturnType(FI.getReturnType());
685 for (auto &Arg : FI.arguments())
686 Arg.info = classifyArgumentType(Arg.type);
687 }
Dan Gohman1fcd10c2016-02-22 19:17:40 +0000688
689 Address EmitVAArg(CodeGenFunction &CGF, Address VAListAddr,
690 QualType Ty) const override;
Dan Gohmanc2853072015-09-03 22:51:53 +0000691};
692
693class WebAssemblyTargetCodeGenInfo final : public TargetCodeGenInfo {
694public:
695 explicit WebAssemblyTargetCodeGenInfo(CodeGen::CodeGenTypes &CGT)
696 : TargetCodeGenInfo(new WebAssemblyABIInfo(CGT)) {}
697};
698
699/// \brief Classify argument of given type \p Ty.
700ABIArgInfo WebAssemblyABIInfo::classifyArgumentType(QualType Ty) const {
701 Ty = useFirstFieldIfTransparentUnion(Ty);
702
703 if (isAggregateTypeForABI(Ty)) {
704 // Records with non-trivial destructors/copy-constructors should not be
705 // passed by value.
Dan Gohmanc2853072015-09-03 22:51:53 +0000706 if (auto RAA = getRecordArgABI(Ty, getCXXABI()))
John McCall7f416cc2015-09-08 08:05:57 +0000707 return getNaturalAlignIndirect(Ty, RAA == CGCXXABI::RAA_DirectInMemory);
Dan Gohmanc2853072015-09-03 22:51:53 +0000708 // Ignore empty structs/unions.
709 if (isEmptyRecord(getContext(), Ty, true))
710 return ABIArgInfo::getIgnore();
711 // Lower single-element structs to just pass a regular value. TODO: We
712 // could do reasonable-size multiple-element structs too, using getExpand(),
713 // though watch out for things like bitfields.
714 if (const Type *SeltTy = isSingleElementStruct(Ty, getContext()))
715 return ABIArgInfo::getDirect(CGT.ConvertType(QualType(SeltTy, 0)));
Dan Gohmanc2853072015-09-03 22:51:53 +0000716 }
717
718 // Otherwise just do the default thing.
719 return DefaultABIInfo::classifyArgumentType(Ty);
720}
721
722ABIArgInfo WebAssemblyABIInfo::classifyReturnType(QualType RetTy) const {
723 if (isAggregateTypeForABI(RetTy)) {
724 // Records with non-trivial destructors/copy-constructors should not be
725 // returned by value.
726 if (!getRecordArgABI(RetTy, getCXXABI())) {
727 // Ignore empty structs/unions.
728 if (isEmptyRecord(getContext(), RetTy, true))
729 return ABIArgInfo::getIgnore();
730 // Lower single-element structs to just return a regular value. TODO: We
731 // could do reasonable-size multiple-element structs too, using
732 // ABIArgInfo::getDirect().
733 if (const Type *SeltTy = isSingleElementStruct(RetTy, getContext()))
734 return ABIArgInfo::getDirect(CGT.ConvertType(QualType(SeltTy, 0)));
735 }
736 }
737
738 // Otherwise just do the default thing.
739 return DefaultABIInfo::classifyReturnType(RetTy);
740}
741
Dan Gohman1fcd10c2016-02-22 19:17:40 +0000742Address WebAssemblyABIInfo::EmitVAArg(CodeGenFunction &CGF, Address VAListAddr,
743 QualType Ty) const {
744 return emitVoidPtrVAArg(CGF, VAListAddr, Ty, /*Indirect=*/ false,
745 getContext().getTypeInfoInChars(Ty),
746 CharUnits::fromQuantity(4),
747 /*AllowHigherAlign=*/ true);
748}
749
Dan Gohmanc2853072015-09-03 22:51:53 +0000750//===----------------------------------------------------------------------===//
Derek Schuff09338a22012-09-06 17:37:28 +0000751// le32/PNaCl bitcode ABI Implementation
Eli Bendersky4f6791c2013-04-08 21:31:01 +0000752//
753// This is a simplified version of the x86_32 ABI. Arguments and return values
754// are always passed on the stack.
Derek Schuff09338a22012-09-06 17:37:28 +0000755//===----------------------------------------------------------------------===//
756
757class PNaClABIInfo : public ABIInfo {
758 public:
759 PNaClABIInfo(CodeGen::CodeGenTypes &CGT) : ABIInfo(CGT) {}
760
761 ABIArgInfo classifyReturnType(QualType RetTy) const;
Eli Bendersky4f6791c2013-04-08 21:31:01 +0000762 ABIArgInfo classifyArgumentType(QualType RetTy) const;
Derek Schuff09338a22012-09-06 17:37:28 +0000763
Craig Topper4f12f102014-03-12 06:41:41 +0000764 void computeInfo(CGFunctionInfo &FI) const override;
John McCall7f416cc2015-09-08 08:05:57 +0000765 Address EmitVAArg(CodeGenFunction &CGF,
766 Address VAListAddr, QualType Ty) const override;
Derek Schuff09338a22012-09-06 17:37:28 +0000767};
768
769class PNaClTargetCodeGenInfo : public TargetCodeGenInfo {
770 public:
771 PNaClTargetCodeGenInfo(CodeGen::CodeGenTypes &CGT)
772 : TargetCodeGenInfo(new PNaClABIInfo(CGT)) {}
773};
774
775void PNaClABIInfo::computeInfo(CGFunctionInfo &FI) const {
Reid Kleckner40ca9132014-05-13 22:05:45 +0000776 if (!getCXXABI().classifyReturnType(FI))
Derek Schuff09338a22012-09-06 17:37:28 +0000777 FI.getReturnInfo() = classifyReturnType(FI.getReturnType());
778
Reid Kleckner40ca9132014-05-13 22:05:45 +0000779 for (auto &I : FI.arguments())
780 I.info = classifyArgumentType(I.type);
781}
Derek Schuff09338a22012-09-06 17:37:28 +0000782
John McCall7f416cc2015-09-08 08:05:57 +0000783Address PNaClABIInfo::EmitVAArg(CodeGenFunction &CGF, Address VAListAddr,
784 QualType Ty) const {
James Y Knight29b5f082016-02-24 02:59:33 +0000785 // The PNaCL ABI is a bit odd, in that varargs don't use normal
786 // function classification. Structs get passed directly for varargs
787 // functions, through a rewriting transform in
788 // pnacl-llvm/lib/Transforms/NaCl/ExpandVarArgs.cpp, which allows
789 // this target to actually support a va_arg instructions with an
790 // aggregate type, unlike other targets.
791 return EmitVAArgInstr(CGF, VAListAddr, Ty, ABIArgInfo::getDirect());
Derek Schuff09338a22012-09-06 17:37:28 +0000792}
793
Eli Bendersky4f6791c2013-04-08 21:31:01 +0000794/// \brief Classify argument of given type \p Ty.
795ABIArgInfo PNaClABIInfo::classifyArgumentType(QualType Ty) const {
Derek Schuff09338a22012-09-06 17:37:28 +0000796 if (isAggregateTypeForABI(Ty)) {
Mark Lacey3825e832013-10-06 01:33:34 +0000797 if (CGCXXABI::RecordArgABI RAA = getRecordArgABI(Ty, getCXXABI()))
John McCall7f416cc2015-09-08 08:05:57 +0000798 return getNaturalAlignIndirect(Ty, RAA == CGCXXABI::RAA_DirectInMemory);
799 return getNaturalAlignIndirect(Ty);
Eli Bendersky4f6791c2013-04-08 21:31:01 +0000800 } else if (const EnumType *EnumTy = Ty->getAs<EnumType>()) {
801 // Treat an enum type as its underlying type.
Derek Schuff09338a22012-09-06 17:37:28 +0000802 Ty = EnumTy->getDecl()->getIntegerType();
Eli Bendersky4f6791c2013-04-08 21:31:01 +0000803 } else if (Ty->isFloatingType()) {
804 // Floating-point types don't go inreg.
805 return ABIArgInfo::getDirect();
Derek Schuff09338a22012-09-06 17:37:28 +0000806 }
Eli Bendersky4f6791c2013-04-08 21:31:01 +0000807
808 return (Ty->isPromotableIntegerType() ?
809 ABIArgInfo::getExtend() : ABIArgInfo::getDirect());
Derek Schuff09338a22012-09-06 17:37:28 +0000810}
811
812ABIArgInfo PNaClABIInfo::classifyReturnType(QualType RetTy) const {
813 if (RetTy->isVoidType())
814 return ABIArgInfo::getIgnore();
815
Eli Benderskye20dad62013-04-04 22:49:35 +0000816 // In the PNaCl ABI we always return records/structures on the stack.
Derek Schuff09338a22012-09-06 17:37:28 +0000817 if (isAggregateTypeForABI(RetTy))
John McCall7f416cc2015-09-08 08:05:57 +0000818 return getNaturalAlignIndirect(RetTy);
Derek Schuff09338a22012-09-06 17:37:28 +0000819
820 // Treat an enum type as its underlying type.
821 if (const EnumType *EnumTy = RetTy->getAs<EnumType>())
822 RetTy = EnumTy->getDecl()->getIntegerType();
823
824 return (RetTy->isPromotableIntegerType() ?
825 ABIArgInfo::getExtend() : ABIArgInfo::getDirect());
826}
827
Chad Rosier651c1832013-03-25 21:00:27 +0000828/// IsX86_MMXType - Return true if this is an MMX type.
829bool IsX86_MMXType(llvm::Type *IRType) {
830 // Return true if the type is an MMX type <2 x i32>, <4 x i16>, or <8 x i8>.
Bill Wendling5cd41c42010-10-18 03:41:31 +0000831 return IRType->isVectorTy() && IRType->getPrimitiveSizeInBits() == 64 &&
832 cast<llvm::VectorType>(IRType)->getElementType()->isIntegerTy() &&
833 IRType->getScalarSizeInBits() != 64;
834}
835
Jay Foad7c57be32011-07-11 09:56:20 +0000836static llvm::Type* X86AdjustInlineAsmType(CodeGen::CodeGenFunction &CGF,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000837 StringRef Constraint,
Jay Foad7c57be32011-07-11 09:56:20 +0000838 llvm::Type* Ty) {
Tim Northover0ae93912013-06-07 00:04:50 +0000839 if ((Constraint == "y" || Constraint == "&y") && Ty->isVectorTy()) {
840 if (cast<llvm::VectorType>(Ty)->getBitWidth() != 64) {
841 // Invalid MMX constraint
Craig Topper8a13c412014-05-21 05:09:00 +0000842 return nullptr;
Tim Northover0ae93912013-06-07 00:04:50 +0000843 }
844
Peter Collingbourne8f5cf742011-02-19 23:03:58 +0000845 return llvm::Type::getX86_MMXTy(CGF.getLLVMContext());
Tim Northover0ae93912013-06-07 00:04:50 +0000846 }
847
848 // No operation needed
Peter Collingbourne8f5cf742011-02-19 23:03:58 +0000849 return Ty;
850}
851
Reid Kleckner80944df2014-10-31 22:00:51 +0000852/// Returns true if this type can be passed in SSE registers with the
853/// X86_VectorCall calling convention. Shared between x86_32 and x86_64.
854static bool isX86VectorTypeForVectorCall(ASTContext &Context, QualType Ty) {
855 if (const BuiltinType *BT = Ty->getAs<BuiltinType>()) {
856 if (BT->isFloatingPoint() && BT->getKind() != BuiltinType::Half)
857 return true;
858 } else if (const VectorType *VT = Ty->getAs<VectorType>()) {
859 // vectorcall can pass XMM, YMM, and ZMM vectors. We don't pass SSE1 MMX
860 // registers specially.
861 unsigned VecSize = Context.getTypeSize(VT);
862 if (VecSize == 128 || VecSize == 256 || VecSize == 512)
863 return true;
864 }
865 return false;
866}
867
868/// Returns true if this aggregate is small enough to be passed in SSE registers
869/// in the X86_VectorCall calling convention. Shared between x86_32 and x86_64.
870static bool isX86VectorCallAggregateSmallEnough(uint64_t NumMembers) {
871 return NumMembers <= 4;
872}
873
Erich Keane521ed962017-01-05 00:20:51 +0000874/// Returns a Homogeneous Vector Aggregate ABIArgInfo, used in X86.
875static ABIArgInfo getDirectX86Hva(llvm::Type* T = nullptr) {
876 auto AI = ABIArgInfo::getDirect(T);
877 AI.setInReg(true);
878 AI.setCanBeFlattened(false);
879 return AI;
880}
881
Chris Lattner0cf24192010-06-28 20:05:43 +0000882//===----------------------------------------------------------------------===//
883// X86-32 ABI Implementation
884//===----------------------------------------------------------------------===//
Michael J. Spencerb2f376b2010-08-25 18:17:27 +0000885
Reid Kleckner661f35b2014-01-18 01:12:41 +0000886/// \brief Similar to llvm::CCState, but for Clang.
887struct CCState {
Reid Kleckner80944df2014-10-31 22:00:51 +0000888 CCState(unsigned CC) : CC(CC), FreeRegs(0), FreeSSERegs(0) {}
Reid Kleckner661f35b2014-01-18 01:12:41 +0000889
890 unsigned CC;
891 unsigned FreeRegs;
Reid Kleckner80944df2014-10-31 22:00:51 +0000892 unsigned FreeSSERegs;
Reid Kleckner661f35b2014-01-18 01:12:41 +0000893};
894
Erich Keane521ed962017-01-05 00:20:51 +0000895enum {
896 // Vectorcall only allows the first 6 parameters to be passed in registers.
897 VectorcallMaxParamNumAsReg = 6
898};
899
Anton Korobeynikov244360d2009-06-05 22:08:42 +0000900/// X86_32ABIInfo - The X86-32 ABI information.
John McCall12f23522016-04-04 18:33:08 +0000901class X86_32ABIInfo : public SwiftABIInfo {
Rafael Espindola06b2b4a2012-07-31 02:44:24 +0000902 enum Class {
903 Integer,
904 Float
905 };
906
Daniel Dunbar8a6c91f2010-09-16 20:41:56 +0000907 static const unsigned MinABIStackAlignInBytes = 4;
908
David Chisnallde3a0692009-08-17 23:08:21 +0000909 bool IsDarwinVectorABI;
Michael Kupersteindc745202015-10-19 07:52:25 +0000910 bool IsRetSmallStructInRegABI;
Timur Iskhodzhanov8fe501d2013-04-17 12:54:10 +0000911 bool IsWin32StructABI;
Michael Kupersteinb1ec50d2015-10-19 08:09:43 +0000912 bool IsSoftFloatABI;
Michael Kuperstein68901882015-10-25 08:18:20 +0000913 bool IsMCUABI;
Rafael Espindola06b2b4a2012-07-31 02:44:24 +0000914 unsigned DefaultNumRegisterParameters;
Anton Korobeynikov244360d2009-06-05 22:08:42 +0000915
916 static bool isRegisterSize(unsigned Size) {
917 return (Size == 8 || Size == 16 || Size == 32 || Size == 64);
918 }
919
Reid Kleckner80944df2014-10-31 22:00:51 +0000920 bool isHomogeneousAggregateBaseType(QualType Ty) const override {
921 // FIXME: Assumes vectorcall is in use.
922 return isX86VectorTypeForVectorCall(getContext(), Ty);
923 }
924
925 bool isHomogeneousAggregateSmallEnough(const Type *Ty,
926 uint64_t NumMembers) const override {
927 // FIXME: Assumes vectorcall is in use.
928 return isX86VectorCallAggregateSmallEnough(NumMembers);
929 }
930
Reid Kleckner40ca9132014-05-13 22:05:45 +0000931 bool shouldReturnTypeInRegister(QualType Ty, ASTContext &Context) const;
Anton Korobeynikov244360d2009-06-05 22:08:42 +0000932
Daniel Dunbar557893d2010-04-21 19:10:51 +0000933 /// getIndirectResult - Give a source type \arg Ty, return a suitable result
934 /// such that the argument will be passed in memory.
Reid Kleckner661f35b2014-01-18 01:12:41 +0000935 ABIArgInfo getIndirectResult(QualType Ty, bool ByVal, CCState &State) const;
936
John McCall7f416cc2015-09-08 08:05:57 +0000937 ABIArgInfo getIndirectReturnResult(QualType Ty, CCState &State) const;
Daniel Dunbar557893d2010-04-21 19:10:51 +0000938
Daniel Dunbar8a6c91f2010-09-16 20:41:56 +0000939 /// \brief Return the alignment to use for the given type on the stack.
Daniel Dunbardd38fbc2010-09-16 20:42:06 +0000940 unsigned getTypeStackAlignInBytes(QualType Ty, unsigned Align) const;
Daniel Dunbar8a6c91f2010-09-16 20:41:56 +0000941
Rafael Espindola06b2b4a2012-07-31 02:44:24 +0000942 Class classify(QualType Ty) const;
Reid Kleckner40ca9132014-05-13 22:05:45 +0000943 ABIArgInfo classifyReturnType(QualType RetTy, CCState &State) const;
Reid Kleckner661f35b2014-01-18 01:12:41 +0000944 ABIArgInfo classifyArgumentType(QualType RetTy, CCState &State) const;
Erich Keane521ed962017-01-05 00:20:51 +0000945 ABIArgInfo reclassifyHvaArgType(QualType RetTy, CCState &State,
946 const ABIArgInfo& current) const;
Michael Kupersteinf3163dc2015-12-28 14:39:54 +0000947 /// \brief Updates the number of available free registers, returns
948 /// true if any registers were allocated.
949 bool updateFreeRegs(QualType Ty, CCState &State) const;
950
951 bool shouldAggregateUseDirect(QualType Ty, CCState &State, bool &InReg,
952 bool &NeedsPadding) const;
953 bool shouldPrimitiveUseInReg(QualType Ty, CCState &State) const;
Anton Korobeynikov244360d2009-06-05 22:08:42 +0000954
Reid Kleckner04046052016-05-02 17:41:07 +0000955 bool canExpandIndirectArgument(QualType Ty) const;
956
Reid Kleckner314ef7b2014-02-01 00:04:45 +0000957 /// \brief Rewrite the function info so that all memory arguments use
958 /// inalloca.
959 void rewriteWithInAlloca(CGFunctionInfo &FI) const;
960
961 void addFieldToArgStruct(SmallVector<llvm::Type *, 6> &FrameFields,
John McCall7f416cc2015-09-08 08:05:57 +0000962 CharUnits &StackOffset, ABIArgInfo &Info,
Reid Kleckner314ef7b2014-02-01 00:04:45 +0000963 QualType Type) const;
Erich Keane521ed962017-01-05 00:20:51 +0000964 void computeVectorCallArgs(CGFunctionInfo &FI, CCState &State,
965 bool &UsedInAlloca) const;
Reid Kleckner314ef7b2014-02-01 00:04:45 +0000966
Rafael Espindola75419dc2012-07-23 23:30:29 +0000967public:
968
Craig Topper4f12f102014-03-12 06:41:41 +0000969 void computeInfo(CGFunctionInfo &FI) const override;
John McCall7f416cc2015-09-08 08:05:57 +0000970 Address EmitVAArg(CodeGenFunction &CGF, Address VAListAddr,
971 QualType Ty) const override;
Anton Korobeynikov244360d2009-06-05 22:08:42 +0000972
Michael Kupersteindc745202015-10-19 07:52:25 +0000973 X86_32ABIInfo(CodeGen::CodeGenTypes &CGT, bool DarwinVectorABI,
974 bool RetSmallStructInRegABI, bool Win32StructABI,
Michael Kupersteinb1ec50d2015-10-19 08:09:43 +0000975 unsigned NumRegisterParameters, bool SoftFloatABI)
John McCall12f23522016-04-04 18:33:08 +0000976 : SwiftABIInfo(CGT), IsDarwinVectorABI(DarwinVectorABI),
Michael Kupersteindc745202015-10-19 07:52:25 +0000977 IsRetSmallStructInRegABI(RetSmallStructInRegABI),
978 IsWin32StructABI(Win32StructABI),
Manuel Klimekab2e28e2015-10-19 08:43:46 +0000979 IsSoftFloatABI(SoftFloatABI),
Michael Kupersteind749f232015-10-27 07:46:22 +0000980 IsMCUABI(CGT.getTarget().getTriple().isOSIAMCU()),
Manuel Klimekab2e28e2015-10-19 08:43:46 +0000981 DefaultNumRegisterParameters(NumRegisterParameters) {}
John McCall12f23522016-04-04 18:33:08 +0000982
983 bool shouldPassIndirectlyForSwift(CharUnits totalSize,
984 ArrayRef<llvm::Type*> scalars,
985 bool asReturnValue) const override {
986 // LLVM's x86-32 lowering currently only assigns up to three
987 // integer registers and three fp registers. Oddly, it'll use up to
988 // four vector registers for vectors, but those can overlap with the
989 // scalar registers.
990 return occupiesMoreThan(CGT, scalars, /*total*/ 3);
991 }
Arnold Schwaighoferb0f2c332016-12-01 18:07:38 +0000992
993 bool isSwiftErrorInRegister() const override {
994 // x86-32 lowering does not support passing swifterror in a register.
995 return false;
996 }
Anton Korobeynikov244360d2009-06-05 22:08:42 +0000997};
Anton Korobeynikov244360d2009-06-05 22:08:42 +0000998
Anton Korobeynikov55bcea12010-01-10 12:58:08 +0000999class X86_32TargetCodeGenInfo : public TargetCodeGenInfo {
1000public:
Michael Kupersteindc745202015-10-19 07:52:25 +00001001 X86_32TargetCodeGenInfo(CodeGen::CodeGenTypes &CGT, bool DarwinVectorABI,
1002 bool RetSmallStructInRegABI, bool Win32StructABI,
Michael Kupersteinb1ec50d2015-10-19 08:09:43 +00001003 unsigned NumRegisterParameters, bool SoftFloatABI)
1004 : TargetCodeGenInfo(new X86_32ABIInfo(
1005 CGT, DarwinVectorABI, RetSmallStructInRegABI, Win32StructABI,
1006 NumRegisterParameters, SoftFloatABI)) {}
Charles Davis4ea31ab2010-02-13 15:54:06 +00001007
John McCall1fe2a8c2013-06-18 02:46:29 +00001008 static bool isStructReturnInRegABI(
1009 const llvm::Triple &Triple, const CodeGenOptions &Opts);
1010
Eric Christopher162c91c2015-06-05 22:03:00 +00001011 void setTargetAttributes(const Decl *D, llvm::GlobalValue *GV,
Craig Topper4f12f102014-03-12 06:41:41 +00001012 CodeGen::CodeGenModule &CGM) const override;
John McCallbeec5a02010-03-06 00:35:14 +00001013
Craig Topper4f12f102014-03-12 06:41:41 +00001014 int getDwarfEHStackPointer(CodeGen::CodeGenModule &CGM) const override {
John McCallbeec5a02010-03-06 00:35:14 +00001015 // Darwin uses different dwarf register numbers for EH.
John McCallc8e01702013-04-16 22:48:15 +00001016 if (CGM.getTarget().getTriple().isOSDarwin()) return 5;
John McCallbeec5a02010-03-06 00:35:14 +00001017 return 4;
1018 }
1019
1020 bool initDwarfEHRegSizeTable(CodeGen::CodeGenFunction &CGF,
Craig Topper4f12f102014-03-12 06:41:41 +00001021 llvm::Value *Address) const override;
Peter Collingbourne8f5cf742011-02-19 23:03:58 +00001022
Jay Foad7c57be32011-07-11 09:56:20 +00001023 llvm::Type* adjustInlineAsmType(CodeGen::CodeGenFunction &CGF,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001024 StringRef Constraint,
Craig Topper4f12f102014-03-12 06:41:41 +00001025 llvm::Type* Ty) const override {
Peter Collingbourne8f5cf742011-02-19 23:03:58 +00001026 return X86AdjustInlineAsmType(CGF, Constraint, Ty);
1027 }
1028
Reid Kleckner9b3e3df2014-09-04 20:04:38 +00001029 void addReturnRegisterOutputs(CodeGenFunction &CGF, LValue ReturnValue,
1030 std::string &Constraints,
1031 std::vector<llvm::Type *> &ResultRegTypes,
1032 std::vector<llvm::Type *> &ResultTruncRegTypes,
1033 std::vector<LValue> &ResultRegDests,
1034 std::string &AsmString,
1035 unsigned NumOutputs) const override;
1036
Craig Topper4f12f102014-03-12 06:41:41 +00001037 llvm::Constant *
1038 getUBSanFunctionSignature(CodeGen::CodeGenModule &CGM) const override {
Peter Collingbourneb453cd62013-10-20 21:29:19 +00001039 unsigned Sig = (0xeb << 0) | // jmp rel8
1040 (0x06 << 8) | // .+0x08
1041 ('F' << 16) |
1042 ('T' << 24);
1043 return llvm::ConstantInt::get(CGM.Int32Ty, Sig);
1044 }
John McCall01391782016-02-05 21:37:38 +00001045
1046 StringRef getARCRetainAutoreleasedReturnValueMarker() const override {
1047 return "movl\t%ebp, %ebp"
1048 "\t\t## marker for objc_retainAutoreleaseReturnValue";
1049 }
Anton Korobeynikov55bcea12010-01-10 12:58:08 +00001050};
1051
Alexander Kornienkoab9db512015-06-22 23:07:51 +00001052}
Anton Korobeynikov244360d2009-06-05 22:08:42 +00001053
Reid Kleckner9b3e3df2014-09-04 20:04:38 +00001054/// Rewrite input constraint references after adding some output constraints.
1055/// In the case where there is one output and one input and we add one output,
1056/// we need to replace all operand references greater than or equal to 1:
1057/// mov $0, $1
1058/// mov eax, $1
1059/// The result will be:
1060/// mov $0, $2
1061/// mov eax, $2
1062static void rewriteInputConstraintReferences(unsigned FirstIn,
1063 unsigned NumNewOuts,
1064 std::string &AsmString) {
1065 std::string Buf;
1066 llvm::raw_string_ostream OS(Buf);
1067 size_t Pos = 0;
1068 while (Pos < AsmString.size()) {
1069 size_t DollarStart = AsmString.find('$', Pos);
1070 if (DollarStart == std::string::npos)
1071 DollarStart = AsmString.size();
1072 size_t DollarEnd = AsmString.find_first_not_of('$', DollarStart);
1073 if (DollarEnd == std::string::npos)
1074 DollarEnd = AsmString.size();
1075 OS << StringRef(&AsmString[Pos], DollarEnd - Pos);
1076 Pos = DollarEnd;
1077 size_t NumDollars = DollarEnd - DollarStart;
1078 if (NumDollars % 2 != 0 && Pos < AsmString.size()) {
1079 // We have an operand reference.
1080 size_t DigitStart = Pos;
1081 size_t DigitEnd = AsmString.find_first_not_of("0123456789", DigitStart);
1082 if (DigitEnd == std::string::npos)
1083 DigitEnd = AsmString.size();
1084 StringRef OperandStr(&AsmString[DigitStart], DigitEnd - DigitStart);
1085 unsigned OperandIndex;
1086 if (!OperandStr.getAsInteger(10, OperandIndex)) {
1087 if (OperandIndex >= FirstIn)
1088 OperandIndex += NumNewOuts;
1089 OS << OperandIndex;
1090 } else {
1091 OS << OperandStr;
1092 }
1093 Pos = DigitEnd;
1094 }
1095 }
1096 AsmString = std::move(OS.str());
1097}
1098
1099/// Add output constraints for EAX:EDX because they are return registers.
1100void X86_32TargetCodeGenInfo::addReturnRegisterOutputs(
1101 CodeGenFunction &CGF, LValue ReturnSlot, std::string &Constraints,
1102 std::vector<llvm::Type *> &ResultRegTypes,
1103 std::vector<llvm::Type *> &ResultTruncRegTypes,
1104 std::vector<LValue> &ResultRegDests, std::string &AsmString,
1105 unsigned NumOutputs) const {
1106 uint64_t RetWidth = CGF.getContext().getTypeSize(ReturnSlot.getType());
1107
1108 // Use the EAX constraint if the width is 32 or smaller and EAX:EDX if it is
1109 // larger.
1110 if (!Constraints.empty())
1111 Constraints += ',';
1112 if (RetWidth <= 32) {
1113 Constraints += "={eax}";
1114 ResultRegTypes.push_back(CGF.Int32Ty);
1115 } else {
1116 // Use the 'A' constraint for EAX:EDX.
1117 Constraints += "=A";
1118 ResultRegTypes.push_back(CGF.Int64Ty);
1119 }
1120
1121 // Truncate EAX or EAX:EDX to an integer of the appropriate size.
1122 llvm::Type *CoerceTy = llvm::IntegerType::get(CGF.getLLVMContext(), RetWidth);
1123 ResultTruncRegTypes.push_back(CoerceTy);
1124
1125 // Coerce the integer by bitcasting the return slot pointer.
1126 ReturnSlot.setAddress(CGF.Builder.CreateBitCast(ReturnSlot.getAddress(),
1127 CoerceTy->getPointerTo()));
1128 ResultRegDests.push_back(ReturnSlot);
1129
1130 rewriteInputConstraintReferences(NumOutputs, 1, AsmString);
1131}
1132
Anton Korobeynikov244360d2009-06-05 22:08:42 +00001133/// shouldReturnTypeInRegister - Determine if the given type should be
Michael Kuperstein68901882015-10-25 08:18:20 +00001134/// returned in a register (for the Darwin and MCU ABI).
Reid Kleckner40ca9132014-05-13 22:05:45 +00001135bool X86_32ABIInfo::shouldReturnTypeInRegister(QualType Ty,
1136 ASTContext &Context) const {
Anton Korobeynikov244360d2009-06-05 22:08:42 +00001137 uint64_t Size = Context.getTypeSize(Ty);
1138
Michael Kupersteinf3163dc2015-12-28 14:39:54 +00001139 // For i386, type must be register sized.
1140 // For the MCU ABI, it only needs to be <= 8-byte
1141 if ((IsMCUABI && Size > 64) || (!IsMCUABI && !isRegisterSize(Size)))
1142 return false;
Anton Korobeynikov244360d2009-06-05 22:08:42 +00001143
1144 if (Ty->isVectorType()) {
1145 // 64- and 128- bit vectors inside structures are not returned in
1146 // registers.
1147 if (Size == 64 || Size == 128)
1148 return false;
1149
1150 return true;
1151 }
1152
Daniel Dunbar4bd95c62010-05-15 00:00:30 +00001153 // If this is a builtin, pointer, enum, complex type, member pointer, or
1154 // member function pointer it is ok.
Daniel Dunbar6b45b672010-05-14 03:40:53 +00001155 if (Ty->getAs<BuiltinType>() || Ty->hasPointerRepresentation() ||
Daniel Dunbarb3b1e532009-09-24 05:12:36 +00001156 Ty->isAnyComplexType() || Ty->isEnumeralType() ||
Daniel Dunbar4bd95c62010-05-15 00:00:30 +00001157 Ty->isBlockPointerType() || Ty->isMemberPointerType())
Anton Korobeynikov244360d2009-06-05 22:08:42 +00001158 return true;
1159
1160 // Arrays are treated like records.
1161 if (const ConstantArrayType *AT = Context.getAsConstantArrayType(Ty))
Reid Kleckner40ca9132014-05-13 22:05:45 +00001162 return shouldReturnTypeInRegister(AT->getElementType(), Context);
Anton Korobeynikov244360d2009-06-05 22:08:42 +00001163
1164 // Otherwise, it must be a record type.
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001165 const RecordType *RT = Ty->getAs<RecordType>();
Anton Korobeynikov244360d2009-06-05 22:08:42 +00001166 if (!RT) return false;
1167
Anders Carlsson40446e82010-01-27 03:25:19 +00001168 // FIXME: Traverse bases here too.
1169
Anton Korobeynikov244360d2009-06-05 22:08:42 +00001170 // Structure types are passed in register if all fields would be
1171 // passed in a register.
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00001172 for (const auto *FD : RT->getDecl()->fields()) {
Anton Korobeynikov244360d2009-06-05 22:08:42 +00001173 // Empty fields are ignored.
Daniel Dunbar626f1d82009-09-13 08:03:58 +00001174 if (isEmptyField(Context, FD, true))
Anton Korobeynikov244360d2009-06-05 22:08:42 +00001175 continue;
1176
1177 // Check fields recursively.
Reid Kleckner40ca9132014-05-13 22:05:45 +00001178 if (!shouldReturnTypeInRegister(FD->getType(), Context))
Anton Korobeynikov244360d2009-06-05 22:08:42 +00001179 return false;
1180 }
Anton Korobeynikov244360d2009-06-05 22:08:42 +00001181 return true;
1182}
1183
Reid Kleckner04046052016-05-02 17:41:07 +00001184static bool is32Or64BitBasicType(QualType Ty, ASTContext &Context) {
1185 // Treat complex types as the element type.
1186 if (const ComplexType *CTy = Ty->getAs<ComplexType>())
1187 Ty = CTy->getElementType();
1188
1189 // Check for a type which we know has a simple scalar argument-passing
1190 // convention without any padding. (We're specifically looking for 32
1191 // and 64-bit integer and integer-equivalents, float, and double.)
1192 if (!Ty->getAs<BuiltinType>() && !Ty->hasPointerRepresentation() &&
1193 !Ty->isEnumeralType() && !Ty->isBlockPointerType())
1194 return false;
1195
1196 uint64_t Size = Context.getTypeSize(Ty);
1197 return Size == 32 || Size == 64;
1198}
1199
Reid Kleckner791bbf62017-01-13 17:18:19 +00001200static bool addFieldSizes(ASTContext &Context, const RecordDecl *RD,
1201 uint64_t &Size) {
1202 for (const auto *FD : RD->fields()) {
1203 // Scalar arguments on the stack get 4 byte alignment on x86. If the
1204 // argument is smaller than 32-bits, expanding the struct will create
1205 // alignment padding.
1206 if (!is32Or64BitBasicType(FD->getType(), Context))
1207 return false;
1208
1209 // FIXME: Reject bit-fields wholesale; there are two problems, we don't know
1210 // how to expand them yet, and the predicate for telling if a bitfield still
1211 // counts as "basic" is more complicated than what we were doing previously.
1212 if (FD->isBitField())
1213 return false;
1214
1215 Size += Context.getTypeSize(FD->getType());
1216 }
1217 return true;
1218}
1219
1220static bool addBaseAndFieldSizes(ASTContext &Context, const CXXRecordDecl *RD,
1221 uint64_t &Size) {
1222 // Don't do this if there are any non-empty bases.
1223 for (const CXXBaseSpecifier &Base : RD->bases()) {
1224 if (!addBaseAndFieldSizes(Context, Base.getType()->getAsCXXRecordDecl(),
1225 Size))
1226 return false;
1227 }
1228 if (!addFieldSizes(Context, RD, Size))
1229 return false;
1230 return true;
1231}
1232
Reid Kleckner04046052016-05-02 17:41:07 +00001233/// Test whether an argument type which is to be passed indirectly (on the
1234/// stack) would have the equivalent layout if it was expanded into separate
1235/// arguments. If so, we prefer to do the latter to avoid inhibiting
1236/// optimizations.
1237bool X86_32ABIInfo::canExpandIndirectArgument(QualType Ty) const {
1238 // We can only expand structure types.
1239 const RecordType *RT = Ty->getAs<RecordType>();
1240 if (!RT)
1241 return false;
1242 const RecordDecl *RD = RT->getDecl();
Reid Kleckner791bbf62017-01-13 17:18:19 +00001243 uint64_t Size = 0;
Reid Kleckner04046052016-05-02 17:41:07 +00001244 if (const CXXRecordDecl *CXXRD = dyn_cast<CXXRecordDecl>(RD)) {
Reid Kleckner791bbf62017-01-13 17:18:19 +00001245 if (!IsWin32StructABI) {
Reid Kleckner04046052016-05-02 17:41:07 +00001246 // On non-Windows, we have to conservatively match our old bitcode
1247 // prototypes in order to be ABI-compatible at the bitcode level.
1248 if (!CXXRD->isCLike())
1249 return false;
1250 } else {
1251 // Don't do this for dynamic classes.
1252 if (CXXRD->isDynamicClass())
1253 return false;
Reid Kleckner04046052016-05-02 17:41:07 +00001254 }
Reid Kleckner791bbf62017-01-13 17:18:19 +00001255 if (!addBaseAndFieldSizes(getContext(), CXXRD, Size))
Reid Kleckner04046052016-05-02 17:41:07 +00001256 return false;
Reid Kleckner791bbf62017-01-13 17:18:19 +00001257 } else {
1258 if (!addFieldSizes(getContext(), RD, Size))
Reid Kleckner04046052016-05-02 17:41:07 +00001259 return false;
Reid Kleckner04046052016-05-02 17:41:07 +00001260 }
1261
1262 // We can do this if there was no alignment padding.
1263 return Size == getContext().getTypeSize(Ty);
1264}
1265
John McCall7f416cc2015-09-08 08:05:57 +00001266ABIArgInfo X86_32ABIInfo::getIndirectReturnResult(QualType RetTy, CCState &State) const {
Reid Kleckner661f35b2014-01-18 01:12:41 +00001267 // If the return value is indirect, then the hidden argument is consuming one
1268 // integer register.
1269 if (State.FreeRegs) {
1270 --State.FreeRegs;
Michael Kupersteinf3163dc2015-12-28 14:39:54 +00001271 if (!IsMCUABI)
1272 return getNaturalAlignIndirectInReg(RetTy);
Reid Kleckner661f35b2014-01-18 01:12:41 +00001273 }
John McCall7f416cc2015-09-08 08:05:57 +00001274 return getNaturalAlignIndirect(RetTy, /*ByVal=*/false);
Reid Kleckner661f35b2014-01-18 01:12:41 +00001275}
1276
Eric Christopher7565e0d2015-05-29 23:09:49 +00001277ABIArgInfo X86_32ABIInfo::classifyReturnType(QualType RetTy,
1278 CCState &State) const {
Chris Lattner458b2aa2010-07-29 02:16:43 +00001279 if (RetTy->isVoidType())
Anton Korobeynikov244360d2009-06-05 22:08:42 +00001280 return ABIArgInfo::getIgnore();
Michael J. Spencerb2f376b2010-08-25 18:17:27 +00001281
Reid Kleckner80944df2014-10-31 22:00:51 +00001282 const Type *Base = nullptr;
1283 uint64_t NumElts = 0;
Erich Keane757d3172016-11-02 18:29:35 +00001284 if ((State.CC == llvm::CallingConv::X86_VectorCall ||
1285 State.CC == llvm::CallingConv::X86_RegCall) &&
Reid Kleckner80944df2014-10-31 22:00:51 +00001286 isHomogeneousAggregate(RetTy, Base, NumElts)) {
1287 // The LLVM struct type for such an aggregate should lower properly.
1288 return ABIArgInfo::getDirect();
1289 }
1290
Chris Lattner458b2aa2010-07-29 02:16:43 +00001291 if (const VectorType *VT = RetTy->getAs<VectorType>()) {
Anton Korobeynikov244360d2009-06-05 22:08:42 +00001292 // On Darwin, some vectors are returned in registers.
David Chisnallde3a0692009-08-17 23:08:21 +00001293 if (IsDarwinVectorABI) {
Chris Lattner458b2aa2010-07-29 02:16:43 +00001294 uint64_t Size = getContext().getTypeSize(RetTy);
Anton Korobeynikov244360d2009-06-05 22:08:42 +00001295
1296 // 128-bit vectors are a special case; they are returned in
1297 // registers and we need to make sure to pick a type the LLVM
1298 // backend will like.
1299 if (Size == 128)
Chris Lattnerfe34c1d2010-07-29 06:26:06 +00001300 return ABIArgInfo::getDirect(llvm::VectorType::get(
Chris Lattner458b2aa2010-07-29 02:16:43 +00001301 llvm::Type::getInt64Ty(getVMContext()), 2));
Anton Korobeynikov244360d2009-06-05 22:08:42 +00001302
1303 // Always return in register if it fits in a general purpose
1304 // register, or if it is 64 bits and has a single element.
1305 if ((Size == 8 || Size == 16 || Size == 32) ||
1306 (Size == 64 && VT->getNumElements() == 1))
Chris Lattnerfe34c1d2010-07-29 06:26:06 +00001307 return ABIArgInfo::getDirect(llvm::IntegerType::get(getVMContext(),
Chris Lattner458b2aa2010-07-29 02:16:43 +00001308 Size));
Anton Korobeynikov244360d2009-06-05 22:08:42 +00001309
John McCall7f416cc2015-09-08 08:05:57 +00001310 return getIndirectReturnResult(RetTy, State);
Anton Korobeynikov244360d2009-06-05 22:08:42 +00001311 }
1312
1313 return ABIArgInfo::getDirect();
Chris Lattner458b2aa2010-07-29 02:16:43 +00001314 }
Michael J. Spencerb2f376b2010-08-25 18:17:27 +00001315
John McCalla1dee5302010-08-22 10:59:02 +00001316 if (isAggregateTypeForABI(RetTy)) {
Anders Carlsson40446e82010-01-27 03:25:19 +00001317 if (const RecordType *RT = RetTy->getAs<RecordType>()) {
Anders Carlsson5789c492009-10-20 22:07:59 +00001318 // Structures with flexible arrays are always indirect.
Anton Korobeynikov244360d2009-06-05 22:08:42 +00001319 if (RT->getDecl()->hasFlexibleArrayMember())
John McCall7f416cc2015-09-08 08:05:57 +00001320 return getIndirectReturnResult(RetTy, State);
Anders Carlsson5789c492009-10-20 22:07:59 +00001321 }
Michael J. Spencerb2f376b2010-08-25 18:17:27 +00001322
David Chisnallde3a0692009-08-17 23:08:21 +00001323 // If specified, structs and unions are always indirect.
Michael Kupersteindc745202015-10-19 07:52:25 +00001324 if (!IsRetSmallStructInRegABI && !RetTy->isAnyComplexType())
John McCall7f416cc2015-09-08 08:05:57 +00001325 return getIndirectReturnResult(RetTy, State);
Anton Korobeynikov244360d2009-06-05 22:08:42 +00001326
Denis Zobnin380b2242016-02-11 11:26:03 +00001327 // Ignore empty structs/unions.
1328 if (isEmptyRecord(getContext(), RetTy, true))
1329 return ABIArgInfo::getIgnore();
1330
Anton Korobeynikov244360d2009-06-05 22:08:42 +00001331 // Small structures which are register sized are generally returned
1332 // in a register.
Reid Kleckner40ca9132014-05-13 22:05:45 +00001333 if (shouldReturnTypeInRegister(RetTy, getContext())) {
Chris Lattner458b2aa2010-07-29 02:16:43 +00001334 uint64_t Size = getContext().getTypeSize(RetTy);
Eli Friedmanee945342011-11-18 01:25:50 +00001335
1336 // As a special-case, if the struct is a "single-element" struct, and
1337 // the field is of type "float" or "double", return it in a
Eli Friedmana98d1f82012-01-25 22:46:34 +00001338 // floating-point register. (MSVC does not apply this special case.)
1339 // We apply a similar transformation for pointer types to improve the
1340 // quality of the generated IR.
Eli Friedmanee945342011-11-18 01:25:50 +00001341 if (const Type *SeltTy = isSingleElementStruct(RetTy, getContext()))
Timur Iskhodzhanov8fe501d2013-04-17 12:54:10 +00001342 if ((!IsWin32StructABI && SeltTy->isRealFloatingType())
Eli Friedmana98d1f82012-01-25 22:46:34 +00001343 || SeltTy->hasPointerRepresentation())
Eli Friedmanee945342011-11-18 01:25:50 +00001344 return ABIArgInfo::getDirect(CGT.ConvertType(QualType(SeltTy, 0)));
1345
1346 // FIXME: We should be able to narrow this integer in cases with dead
1347 // padding.
Chris Lattnerfe34c1d2010-07-29 06:26:06 +00001348 return ABIArgInfo::getDirect(llvm::IntegerType::get(getVMContext(),Size));
Anton Korobeynikov244360d2009-06-05 22:08:42 +00001349 }
1350
John McCall7f416cc2015-09-08 08:05:57 +00001351 return getIndirectReturnResult(RetTy, State);
Anton Korobeynikov244360d2009-06-05 22:08:42 +00001352 }
Michael J. Spencerb2f376b2010-08-25 18:17:27 +00001353
Chris Lattner458b2aa2010-07-29 02:16:43 +00001354 // Treat an enum type as its underlying type.
1355 if (const EnumType *EnumTy = RetTy->getAs<EnumType>())
1356 RetTy = EnumTy->getDecl()->getIntegerType();
1357
1358 return (RetTy->isPromotableIntegerType() ?
1359 ABIArgInfo::getExtend() : ABIArgInfo::getDirect());
Anton Korobeynikov244360d2009-06-05 22:08:42 +00001360}
1361
Eli Friedman7919bea2012-06-05 19:40:46 +00001362static bool isSSEVectorType(ASTContext &Context, QualType Ty) {
1363 return Ty->getAs<VectorType>() && Context.getTypeSize(Ty) == 128;
1364}
1365
Daniel Dunbared23de32010-09-16 20:42:00 +00001366static bool isRecordWithSSEVectorType(ASTContext &Context, QualType Ty) {
1367 const RecordType *RT = Ty->getAs<RecordType>();
1368 if (!RT)
1369 return 0;
1370 const RecordDecl *RD = RT->getDecl();
1371
1372 // If this is a C++ record, check the bases first.
1373 if (const CXXRecordDecl *CXXRD = dyn_cast<CXXRecordDecl>(RD))
Aaron Ballman574705e2014-03-13 15:41:46 +00001374 for (const auto &I : CXXRD->bases())
1375 if (!isRecordWithSSEVectorType(Context, I.getType()))
Daniel Dunbared23de32010-09-16 20:42:00 +00001376 return false;
1377
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00001378 for (const auto *i : RD->fields()) {
Daniel Dunbared23de32010-09-16 20:42:00 +00001379 QualType FT = i->getType();
1380
Eli Friedman7919bea2012-06-05 19:40:46 +00001381 if (isSSEVectorType(Context, FT))
Daniel Dunbared23de32010-09-16 20:42:00 +00001382 return true;
1383
1384 if (isRecordWithSSEVectorType(Context, FT))
1385 return true;
1386 }
1387
1388 return false;
1389}
1390
Daniel Dunbardd38fbc2010-09-16 20:42:06 +00001391unsigned X86_32ABIInfo::getTypeStackAlignInBytes(QualType Ty,
1392 unsigned Align) const {
1393 // Otherwise, if the alignment is less than or equal to the minimum ABI
1394 // alignment, just use the default; the backend will handle this.
Daniel Dunbar8a6c91f2010-09-16 20:41:56 +00001395 if (Align <= MinABIStackAlignInBytes)
Daniel Dunbardd38fbc2010-09-16 20:42:06 +00001396 return 0; // Use default alignment.
1397
1398 // On non-Darwin, the stack type alignment is always 4.
1399 if (!IsDarwinVectorABI) {
1400 // Set explicit alignment, since we may need to realign the top.
Daniel Dunbar8a6c91f2010-09-16 20:41:56 +00001401 return MinABIStackAlignInBytes;
Daniel Dunbardd38fbc2010-09-16 20:42:06 +00001402 }
Daniel Dunbar8a6c91f2010-09-16 20:41:56 +00001403
Daniel Dunbared23de32010-09-16 20:42:00 +00001404 // Otherwise, if the type contains an SSE vector type, the alignment is 16.
Eli Friedman7919bea2012-06-05 19:40:46 +00001405 if (Align >= 16 && (isSSEVectorType(getContext(), Ty) ||
1406 isRecordWithSSEVectorType(getContext(), Ty)))
Daniel Dunbared23de32010-09-16 20:42:00 +00001407 return 16;
1408
1409 return MinABIStackAlignInBytes;
Daniel Dunbar8a6c91f2010-09-16 20:41:56 +00001410}
1411
Rafael Espindola703c47f2012-10-19 05:04:37 +00001412ABIArgInfo X86_32ABIInfo::getIndirectResult(QualType Ty, bool ByVal,
Reid Kleckner661f35b2014-01-18 01:12:41 +00001413 CCState &State) const {
Rafael Espindola703c47f2012-10-19 05:04:37 +00001414 if (!ByVal) {
Reid Kleckner661f35b2014-01-18 01:12:41 +00001415 if (State.FreeRegs) {
1416 --State.FreeRegs; // Non-byval indirects just use one pointer.
Michael Kupersteinf3163dc2015-12-28 14:39:54 +00001417 if (!IsMCUABI)
1418 return getNaturalAlignIndirectInReg(Ty);
Rafael Espindola703c47f2012-10-19 05:04:37 +00001419 }
John McCall7f416cc2015-09-08 08:05:57 +00001420 return getNaturalAlignIndirect(Ty, false);
Rafael Espindola703c47f2012-10-19 05:04:37 +00001421 }
Daniel Dunbar53fac692010-04-21 19:49:55 +00001422
Daniel Dunbardd38fbc2010-09-16 20:42:06 +00001423 // Compute the byval alignment.
1424 unsigned TypeAlign = getContext().getTypeAlign(Ty) / 8;
1425 unsigned StackAlign = getTypeStackAlignInBytes(Ty, TypeAlign);
1426 if (StackAlign == 0)
John McCall7f416cc2015-09-08 08:05:57 +00001427 return ABIArgInfo::getIndirect(CharUnits::fromQuantity(4), /*ByVal=*/true);
Daniel Dunbardd38fbc2010-09-16 20:42:06 +00001428
1429 // If the stack alignment is less than the type alignment, realign the
1430 // argument.
Reid Kleckner314ef7b2014-02-01 00:04:45 +00001431 bool Realign = TypeAlign > StackAlign;
John McCall7f416cc2015-09-08 08:05:57 +00001432 return ABIArgInfo::getIndirect(CharUnits::fromQuantity(StackAlign),
1433 /*ByVal=*/true, Realign);
Daniel Dunbar557893d2010-04-21 19:10:51 +00001434}
1435
Rafael Espindola06b2b4a2012-07-31 02:44:24 +00001436X86_32ABIInfo::Class X86_32ABIInfo::classify(QualType Ty) const {
1437 const Type *T = isSingleElementStruct(Ty, getContext());
1438 if (!T)
1439 T = Ty.getTypePtr();
1440
1441 if (const BuiltinType *BT = T->getAs<BuiltinType>()) {
1442 BuiltinType::Kind K = BT->getKind();
1443 if (K == BuiltinType::Float || K == BuiltinType::Double)
1444 return Float;
1445 }
1446 return Integer;
1447}
1448
Michael Kupersteinf3163dc2015-12-28 14:39:54 +00001449bool X86_32ABIInfo::updateFreeRegs(QualType Ty, CCState &State) const {
Michael Kupersteinb1ec50d2015-10-19 08:09:43 +00001450 if (!IsSoftFloatABI) {
1451 Class C = classify(Ty);
1452 if (C == Float)
1453 return false;
1454 }
Rafael Espindola06b2b4a2012-07-31 02:44:24 +00001455
Rafael Espindola077dd592012-10-24 01:58:58 +00001456 unsigned Size = getContext().getTypeSize(Ty);
1457 unsigned SizeInRegs = (Size + 31) / 32;
Rafael Espindolae2a9e902012-10-23 02:04:01 +00001458
1459 if (SizeInRegs == 0)
1460 return false;
1461
Michael Kuperstein68901882015-10-25 08:18:20 +00001462 if (!IsMCUABI) {
1463 if (SizeInRegs > State.FreeRegs) {
1464 State.FreeRegs = 0;
1465 return false;
1466 }
1467 } else {
1468 // The MCU psABI allows passing parameters in-reg even if there are
1469 // earlier parameters that are passed on the stack. Also,
1470 // it does not allow passing >8-byte structs in-register,
1471 // even if there are 3 free registers available.
1472 if (SizeInRegs > State.FreeRegs || SizeInRegs > 2)
1473 return false;
Rafael Espindola06b2b4a2012-07-31 02:44:24 +00001474 }
Rafael Espindola703c47f2012-10-19 05:04:37 +00001475
Reid Kleckner661f35b2014-01-18 01:12:41 +00001476 State.FreeRegs -= SizeInRegs;
Michael Kupersteinf3163dc2015-12-28 14:39:54 +00001477 return true;
1478}
1479
1480bool X86_32ABIInfo::shouldAggregateUseDirect(QualType Ty, CCState &State,
1481 bool &InReg,
1482 bool &NeedsPadding) const {
Reid Kleckner04046052016-05-02 17:41:07 +00001483 // On Windows, aggregates other than HFAs are never passed in registers, and
1484 // they do not consume register slots. Homogenous floating-point aggregates
1485 // (HFAs) have already been dealt with at this point.
1486 if (IsWin32StructABI && isAggregateTypeForABI(Ty))
1487 return false;
1488
Michael Kupersteinf3163dc2015-12-28 14:39:54 +00001489 NeedsPadding = false;
1490 InReg = !IsMCUABI;
1491
1492 if (!updateFreeRegs(Ty, State))
1493 return false;
1494
1495 if (IsMCUABI)
1496 return true;
Rafael Espindola077dd592012-10-24 01:58:58 +00001497
Reid Kleckner80944df2014-10-31 22:00:51 +00001498 if (State.CC == llvm::CallingConv::X86_FastCall ||
Erich Keane757d3172016-11-02 18:29:35 +00001499 State.CC == llvm::CallingConv::X86_VectorCall ||
1500 State.CC == llvm::CallingConv::X86_RegCall) {
Michael Kupersteinf3163dc2015-12-28 14:39:54 +00001501 if (getContext().getTypeSize(Ty) <= 32 && State.FreeRegs)
Rafael Espindolafad28de2012-10-24 01:59:00 +00001502 NeedsPadding = true;
1503
Rafael Espindola077dd592012-10-24 01:58:58 +00001504 return false;
1505 }
1506
Rafael Espindola703c47f2012-10-19 05:04:37 +00001507 return true;
Rafael Espindola06b2b4a2012-07-31 02:44:24 +00001508}
1509
Michael Kupersteinf3163dc2015-12-28 14:39:54 +00001510bool X86_32ABIInfo::shouldPrimitiveUseInReg(QualType Ty, CCState &State) const {
1511 if (!updateFreeRegs(Ty, State))
1512 return false;
1513
1514 if (IsMCUABI)
1515 return false;
1516
1517 if (State.CC == llvm::CallingConv::X86_FastCall ||
Erich Keane757d3172016-11-02 18:29:35 +00001518 State.CC == llvm::CallingConv::X86_VectorCall ||
1519 State.CC == llvm::CallingConv::X86_RegCall) {
Michael Kupersteinf3163dc2015-12-28 14:39:54 +00001520 if (getContext().getTypeSize(Ty) > 32)
1521 return false;
1522
1523 return (Ty->isIntegralOrEnumerationType() || Ty->isPointerType() ||
1524 Ty->isReferenceType());
1525 }
1526
1527 return true;
1528}
1529
Erich Keane521ed962017-01-05 00:20:51 +00001530ABIArgInfo
1531X86_32ABIInfo::reclassifyHvaArgType(QualType Ty, CCState &State,
1532 const ABIArgInfo &current) const {
1533 // Assumes vectorCall calling convention.
1534 const Type *Base = nullptr;
1535 uint64_t NumElts = 0;
1536
1537 if (!Ty->isBuiltinType() && !Ty->isVectorType() &&
1538 isHomogeneousAggregate(Ty, Base, NumElts)) {
1539 if (State.FreeSSERegs >= NumElts) {
1540 // HVA types get passed directly in registers if there is room.
1541 State.FreeSSERegs -= NumElts;
1542 return getDirectX86Hva();
1543 }
1544 // If there's no room, the HVA gets passed as normal indirect
1545 // structure.
1546 return getIndirectResult(Ty, /*ByVal=*/false, State);
1547 }
1548 return current;
1549}
1550
Reid Kleckner314ef7b2014-02-01 00:04:45 +00001551ABIArgInfo X86_32ABIInfo::classifyArgumentType(QualType Ty,
1552 CCState &State) const {
Anton Korobeynikov244360d2009-06-05 22:08:42 +00001553 // FIXME: Set alignment on indirect arguments.
Reid Kleckner314ef7b2014-02-01 00:04:45 +00001554
Reid Klecknerb1be6832014-11-15 01:41:41 +00001555 Ty = useFirstFieldIfTransparentUnion(Ty);
1556
Reid Kleckner80944df2014-10-31 22:00:51 +00001557 // Check with the C++ ABI first.
1558 const RecordType *RT = Ty->getAs<RecordType>();
1559 if (RT) {
1560 CGCXXABI::RecordArgABI RAA = getRecordArgABI(RT, getCXXABI());
1561 if (RAA == CGCXXABI::RAA_Indirect) {
1562 return getIndirectResult(Ty, false, State);
1563 } else if (RAA == CGCXXABI::RAA_DirectInMemory) {
1564 // The field index doesn't matter, we'll fix it up later.
1565 return ABIArgInfo::getInAlloca(/*FieldIndex=*/0);
1566 }
1567 }
1568
1569 // vectorcall adds the concept of a homogenous vector aggregate, similar
Erich Keane521ed962017-01-05 00:20:51 +00001570 // to other targets, regcall uses some of the HVA rules.
Reid Kleckner80944df2014-10-31 22:00:51 +00001571 const Type *Base = nullptr;
1572 uint64_t NumElts = 0;
Erich Keane757d3172016-11-02 18:29:35 +00001573 if ((State.CC == llvm::CallingConv::X86_VectorCall ||
1574 State.CC == llvm::CallingConv::X86_RegCall) &&
Reid Kleckner80944df2014-10-31 22:00:51 +00001575 isHomogeneousAggregate(Ty, Base, NumElts)) {
Erich Keane521ed962017-01-05 00:20:51 +00001576
1577 if (State.CC == llvm::CallingConv::X86_RegCall) {
1578 if (State.FreeSSERegs >= NumElts) {
1579 State.FreeSSERegs -= NumElts;
1580 if (Ty->isBuiltinType() || Ty->isVectorType())
1581 return ABIArgInfo::getDirect();
1582 return ABIArgInfo::getExpand();
1583
1584 }
1585 return getIndirectResult(Ty, /*ByVal=*/false, State);
1586 } else if (State.CC == llvm::CallingConv::X86_VectorCall) {
1587 if (State.FreeSSERegs >= NumElts && (Ty->isBuiltinType() || Ty->isVectorType())) {
1588 // Actual floating-point types get registers first time through if
1589 // there is registers available
1590 State.FreeSSERegs -= NumElts;
Reid Kleckner80944df2014-10-31 22:00:51 +00001591 return ABIArgInfo::getDirect();
Erich Keane521ed962017-01-05 00:20:51 +00001592 } else if (!Ty->isBuiltinType() && !Ty->isVectorType()) {
1593 // HVA Types only get registers after everything else has been
1594 // set, so it gets set as indirect for now.
1595 return ABIArgInfo::getIndirect(getContext().getTypeAlignInChars(Ty));
1596 }
Reid Kleckner80944df2014-10-31 22:00:51 +00001597 }
Reid Kleckner80944df2014-10-31 22:00:51 +00001598 }
1599
1600 if (isAggregateTypeForABI(Ty)) {
Reid Kleckner04046052016-05-02 17:41:07 +00001601 // Structures with flexible arrays are always indirect.
1602 // FIXME: This should not be byval!
1603 if (RT && RT->getDecl()->hasFlexibleArrayMember())
1604 return getIndirectResult(Ty, true, State);
Daniel Dunbar557893d2010-04-21 19:10:51 +00001605
Reid Kleckner04046052016-05-02 17:41:07 +00001606 // Ignore empty structs/unions on non-Windows.
1607 if (!IsWin32StructABI && isEmptyRecord(getContext(), Ty, true))
Anton Korobeynikov244360d2009-06-05 22:08:42 +00001608 return ABIArgInfo::getIgnore();
1609
Rafael Espindolafad28de2012-10-24 01:59:00 +00001610 llvm::LLVMContext &LLVMContext = getVMContext();
1611 llvm::IntegerType *Int32 = llvm::Type::getInt32Ty(LLVMContext);
Reid Kleckner04046052016-05-02 17:41:07 +00001612 bool NeedsPadding = false;
1613 bool InReg;
Michael Kupersteinf3163dc2015-12-28 14:39:54 +00001614 if (shouldAggregateUseDirect(Ty, State, InReg, NeedsPadding)) {
Rafael Espindola703c47f2012-10-19 05:04:37 +00001615 unsigned SizeInRegs = (getContext().getTypeSize(Ty) + 31) / 32;
Craig Topperac9201a2013-07-08 04:47:18 +00001616 SmallVector<llvm::Type*, 3> Elements(SizeInRegs, Int32);
Rafael Espindola703c47f2012-10-19 05:04:37 +00001617 llvm::Type *Result = llvm::StructType::get(LLVMContext, Elements);
Michael Kupersteinf3163dc2015-12-28 14:39:54 +00001618 if (InReg)
1619 return ABIArgInfo::getDirectInReg(Result);
1620 else
1621 return ABIArgInfo::getDirect(Result);
Rafael Espindola703c47f2012-10-19 05:04:37 +00001622 }
Craig Topper8a13c412014-05-21 05:09:00 +00001623 llvm::IntegerType *PaddingType = NeedsPadding ? Int32 : nullptr;
Rafael Espindola703c47f2012-10-19 05:04:37 +00001624
Daniel Dunbar11c08c82009-11-09 01:33:53 +00001625 // Expand small (<= 128-bit) record types when we know that the stack layout
1626 // of those arguments will match the struct. This is important because the
1627 // LLVM backend isn't smart enough to remove byval, which inhibits many
1628 // optimizations.
Michael Kupersteinf3163dc2015-12-28 14:39:54 +00001629 // Don't do this for the MCU if there are still free integer registers
1630 // (see X86_64 ABI for full explanation).
Reid Kleckner04046052016-05-02 17:41:07 +00001631 if (getContext().getTypeSize(Ty) <= 4 * 32 &&
1632 (!IsMCUABI || State.FreeRegs == 0) && canExpandIndirectArgument(Ty))
Reid Kleckner661f35b2014-01-18 01:12:41 +00001633 return ABIArgInfo::getExpandWithPadding(
Reid Kleckner80944df2014-10-31 22:00:51 +00001634 State.CC == llvm::CallingConv::X86_FastCall ||
Erich Keane757d3172016-11-02 18:29:35 +00001635 State.CC == llvm::CallingConv::X86_VectorCall ||
1636 State.CC == llvm::CallingConv::X86_RegCall,
Reid Kleckner80944df2014-10-31 22:00:51 +00001637 PaddingType);
Anton Korobeynikov244360d2009-06-05 22:08:42 +00001638
Reid Kleckner661f35b2014-01-18 01:12:41 +00001639 return getIndirectResult(Ty, true, State);
Michael J. Spencerb2f376b2010-08-25 18:17:27 +00001640 }
1641
Chris Lattnerd774ae92010-08-26 20:05:13 +00001642 if (const VectorType *VT = Ty->getAs<VectorType>()) {
Chris Lattnerd7e54802010-08-26 20:08:43 +00001643 // On Darwin, some vectors are passed in memory, we handle this by passing
1644 // it as an i8/i16/i32/i64.
Chris Lattnerd774ae92010-08-26 20:05:13 +00001645 if (IsDarwinVectorABI) {
1646 uint64_t Size = getContext().getTypeSize(Ty);
Chris Lattnerd774ae92010-08-26 20:05:13 +00001647 if ((Size == 8 || Size == 16 || Size == 32) ||
1648 (Size == 64 && VT->getNumElements() == 1))
1649 return ABIArgInfo::getDirect(llvm::IntegerType::get(getVMContext(),
1650 Size));
Chris Lattnerd774ae92010-08-26 20:05:13 +00001651 }
Bill Wendling5cd41c42010-10-18 03:41:31 +00001652
Chad Rosier651c1832013-03-25 21:00:27 +00001653 if (IsX86_MMXType(CGT.ConvertType(Ty)))
1654 return ABIArgInfo::getDirect(llvm::IntegerType::get(getVMContext(), 64));
Michael J. Spencerf5a1fbc2010-10-19 06:39:39 +00001655
Chris Lattnerd774ae92010-08-26 20:05:13 +00001656 return ABIArgInfo::getDirect();
1657 }
Michael J. Spencerf5a1fbc2010-10-19 06:39:39 +00001658
1659
Chris Lattner458b2aa2010-07-29 02:16:43 +00001660 if (const EnumType *EnumTy = Ty->getAs<EnumType>())
1661 Ty = EnumTy->getDecl()->getIntegerType();
Douglas Gregora71cc152010-02-02 20:10:50 +00001662
Michael Kupersteinf3163dc2015-12-28 14:39:54 +00001663 bool InReg = shouldPrimitiveUseInReg(Ty, State);
Rafael Espindola703c47f2012-10-19 05:04:37 +00001664
1665 if (Ty->isPromotableIntegerType()) {
1666 if (InReg)
1667 return ABIArgInfo::getExtendInReg();
1668 return ABIArgInfo::getExtend();
1669 }
Michael Kupersteinf3163dc2015-12-28 14:39:54 +00001670
Rafael Espindola703c47f2012-10-19 05:04:37 +00001671 if (InReg)
1672 return ABIArgInfo::getDirectInReg();
1673 return ABIArgInfo::getDirect();
Anton Korobeynikov244360d2009-06-05 22:08:42 +00001674}
1675
Erich Keane521ed962017-01-05 00:20:51 +00001676void X86_32ABIInfo::computeVectorCallArgs(CGFunctionInfo &FI, CCState &State,
1677 bool &UsedInAlloca) const {
1678 // Vectorcall only allows the first 6 parameters to be passed in registers,
1679 // and homogeneous vector aggregates are only put into registers as a second
1680 // priority.
1681 unsigned Count = 0;
1682 CCState ZeroState = State;
1683 ZeroState.FreeRegs = ZeroState.FreeSSERegs = 0;
1684 // HVAs must be done as a second priority for registers, so the deferred
1685 // items are dealt with by going through the pattern a second time.
1686 for (auto &I : FI.arguments()) {
1687 if (Count < VectorcallMaxParamNumAsReg)
1688 I.info = classifyArgumentType(I.type, State);
1689 else
1690 // Parameters after the 6th cannot be passed in registers,
1691 // so pretend there are no registers left for them.
1692 I.info = classifyArgumentType(I.type, ZeroState);
1693 UsedInAlloca |= (I.info.getKind() == ABIArgInfo::InAlloca);
1694 ++Count;
1695 }
1696 Count = 0;
1697 // Go through the arguments a second time to get HVAs registers if there
1698 // are still some available.
1699 for (auto &I : FI.arguments()) {
1700 if (Count < VectorcallMaxParamNumAsReg)
1701 I.info = reclassifyHvaArgType(I.type, State, I.info);
1702 ++Count;
1703 }
1704}
1705
Rafael Espindolaa6472962012-07-24 00:01:07 +00001706void X86_32ABIInfo::computeInfo(CGFunctionInfo &FI) const {
Reid Kleckner661f35b2014-01-18 01:12:41 +00001707 CCState State(FI.getCallingConvention());
Michael Kupersteinf3163dc2015-12-28 14:39:54 +00001708 if (IsMCUABI)
1709 State.FreeRegs = 3;
1710 else if (State.CC == llvm::CallingConv::X86_FastCall)
Reid Kleckner661f35b2014-01-18 01:12:41 +00001711 State.FreeRegs = 2;
Reid Kleckner80944df2014-10-31 22:00:51 +00001712 else if (State.CC == llvm::CallingConv::X86_VectorCall) {
1713 State.FreeRegs = 2;
1714 State.FreeSSERegs = 6;
1715 } else if (FI.getHasRegParm())
Reid Kleckner661f35b2014-01-18 01:12:41 +00001716 State.FreeRegs = FI.getRegParm();
Erich Keane757d3172016-11-02 18:29:35 +00001717 else if (State.CC == llvm::CallingConv::X86_RegCall) {
1718 State.FreeRegs = 5;
1719 State.FreeSSERegs = 8;
1720 } else
Reid Kleckner661f35b2014-01-18 01:12:41 +00001721 State.FreeRegs = DefaultNumRegisterParameters;
Rafael Espindola06b2b4a2012-07-31 02:44:24 +00001722
Reid Kleckner677539d2014-07-10 01:58:55 +00001723 if (!getCXXABI().classifyReturnType(FI)) {
Reid Kleckner40ca9132014-05-13 22:05:45 +00001724 FI.getReturnInfo() = classifyReturnType(FI.getReturnType(), State);
Reid Kleckner677539d2014-07-10 01:58:55 +00001725 } else if (FI.getReturnInfo().isIndirect()) {
1726 // The C++ ABI is not aware of register usage, so we have to check if the
1727 // return value was sret and put it in a register ourselves if appropriate.
1728 if (State.FreeRegs) {
1729 --State.FreeRegs; // The sret parameter consumes a register.
Michael Kupersteinf3163dc2015-12-28 14:39:54 +00001730 if (!IsMCUABI)
1731 FI.getReturnInfo().setInReg(true);
Reid Kleckner677539d2014-07-10 01:58:55 +00001732 }
1733 }
Rafael Espindola06b2b4a2012-07-31 02:44:24 +00001734
Peter Collingbournef7706832014-12-12 23:41:25 +00001735 // The chain argument effectively gives us another free register.
1736 if (FI.isChainCall())
1737 ++State.FreeRegs;
1738
Reid Kleckner314ef7b2014-02-01 00:04:45 +00001739 bool UsedInAlloca = false;
Erich Keane521ed962017-01-05 00:20:51 +00001740 if (State.CC == llvm::CallingConv::X86_VectorCall) {
1741 computeVectorCallArgs(FI, State, UsedInAlloca);
1742 } else {
1743 // If not vectorcall, revert to normal behavior.
1744 for (auto &I : FI.arguments()) {
1745 I.info = classifyArgumentType(I.type, State);
1746 UsedInAlloca |= (I.info.getKind() == ABIArgInfo::InAlloca);
1747 }
Reid Kleckner314ef7b2014-02-01 00:04:45 +00001748 }
1749
1750 // If we needed to use inalloca for any argument, do a second pass and rewrite
1751 // all the memory arguments to use inalloca.
1752 if (UsedInAlloca)
1753 rewriteWithInAlloca(FI);
1754}
1755
1756void
1757X86_32ABIInfo::addFieldToArgStruct(SmallVector<llvm::Type *, 6> &FrameFields,
John McCall7f416cc2015-09-08 08:05:57 +00001758 CharUnits &StackOffset, ABIArgInfo &Info,
1759 QualType Type) const {
1760 // Arguments are always 4-byte-aligned.
1761 CharUnits FieldAlign = CharUnits::fromQuantity(4);
1762
1763 assert(StackOffset.isMultipleOf(FieldAlign) && "unaligned inalloca struct");
Reid Klecknerd378a712014-04-10 19:09:43 +00001764 Info = ABIArgInfo::getInAlloca(FrameFields.size());
1765 FrameFields.push_back(CGT.ConvertTypeForMem(Type));
John McCall7f416cc2015-09-08 08:05:57 +00001766 StackOffset += getContext().getTypeSizeInChars(Type);
Reid Klecknerd378a712014-04-10 19:09:43 +00001767
John McCall7f416cc2015-09-08 08:05:57 +00001768 // Insert padding bytes to respect alignment.
1769 CharUnits FieldEnd = StackOffset;
Rui Ueyama83aa9792016-01-14 21:00:27 +00001770 StackOffset = FieldEnd.alignTo(FieldAlign);
John McCall7f416cc2015-09-08 08:05:57 +00001771 if (StackOffset != FieldEnd) {
1772 CharUnits NumBytes = StackOffset - FieldEnd;
Reid Kleckner314ef7b2014-02-01 00:04:45 +00001773 llvm::Type *Ty = llvm::Type::getInt8Ty(getVMContext());
John McCall7f416cc2015-09-08 08:05:57 +00001774 Ty = llvm::ArrayType::get(Ty, NumBytes.getQuantity());
Reid Kleckner314ef7b2014-02-01 00:04:45 +00001775 FrameFields.push_back(Ty);
1776 }
Reid Kleckner314ef7b2014-02-01 00:04:45 +00001777}
1778
Reid Kleckner852361d2014-07-26 00:12:26 +00001779static bool isArgInAlloca(const ABIArgInfo &Info) {
1780 // Leave ignored and inreg arguments alone.
1781 switch (Info.getKind()) {
1782 case ABIArgInfo::InAlloca:
1783 return true;
1784 case ABIArgInfo::Indirect:
1785 assert(Info.getIndirectByVal());
1786 return true;
1787 case ABIArgInfo::Ignore:
1788 return false;
1789 case ABIArgInfo::Direct:
1790 case ABIArgInfo::Extend:
Reid Kleckner852361d2014-07-26 00:12:26 +00001791 if (Info.getInReg())
1792 return false;
1793 return true;
Reid Kleckner04046052016-05-02 17:41:07 +00001794 case ABIArgInfo::Expand:
1795 case ABIArgInfo::CoerceAndExpand:
1796 // These are aggregate types which are never passed in registers when
1797 // inalloca is involved.
1798 return true;
Reid Kleckner852361d2014-07-26 00:12:26 +00001799 }
1800 llvm_unreachable("invalid enum");
1801}
1802
Reid Kleckner314ef7b2014-02-01 00:04:45 +00001803void X86_32ABIInfo::rewriteWithInAlloca(CGFunctionInfo &FI) const {
1804 assert(IsWin32StructABI && "inalloca only supported on win32");
1805
1806 // Build a packed struct type for all of the arguments in memory.
1807 SmallVector<llvm::Type *, 6> FrameFields;
1808
John McCall7f416cc2015-09-08 08:05:57 +00001809 // The stack alignment is always 4.
1810 CharUnits StackAlign = CharUnits::fromQuantity(4);
1811
1812 CharUnits StackOffset;
Reid Kleckner852361d2014-07-26 00:12:26 +00001813 CGFunctionInfo::arg_iterator I = FI.arg_begin(), E = FI.arg_end();
1814
1815 // Put 'this' into the struct before 'sret', if necessary.
1816 bool IsThisCall =
1817 FI.getCallingConvention() == llvm::CallingConv::X86_ThisCall;
1818 ABIArgInfo &Ret = FI.getReturnInfo();
1819 if (Ret.isIndirect() && Ret.isSRetAfterThis() && !IsThisCall &&
1820 isArgInAlloca(I->info)) {
1821 addFieldToArgStruct(FrameFields, StackOffset, I->info, I->type);
1822 ++I;
1823 }
Reid Kleckner314ef7b2014-02-01 00:04:45 +00001824
1825 // Put the sret parameter into the inalloca struct if it's in memory.
Reid Kleckner314ef7b2014-02-01 00:04:45 +00001826 if (Ret.isIndirect() && !Ret.getInReg()) {
1827 CanQualType PtrTy = getContext().getPointerType(FI.getReturnType());
1828 addFieldToArgStruct(FrameFields, StackOffset, Ret, PtrTy);
Reid Klecknerfab1e892014-02-25 00:59:14 +00001829 // On Windows, the hidden sret parameter is always returned in eax.
1830 Ret.setInAllocaSRet(IsWin32StructABI);
Reid Kleckner314ef7b2014-02-01 00:04:45 +00001831 }
1832
1833 // Skip the 'this' parameter in ecx.
Reid Kleckner852361d2014-07-26 00:12:26 +00001834 if (IsThisCall)
Reid Kleckner314ef7b2014-02-01 00:04:45 +00001835 ++I;
1836
1837 // Put arguments passed in memory into the struct.
1838 for (; I != E; ++I) {
Reid Kleckner852361d2014-07-26 00:12:26 +00001839 if (isArgInAlloca(I->info))
1840 addFieldToArgStruct(FrameFields, StackOffset, I->info, I->type);
Reid Kleckner314ef7b2014-02-01 00:04:45 +00001841 }
1842
1843 FI.setArgStruct(llvm::StructType::get(getVMContext(), FrameFields,
John McCall7f416cc2015-09-08 08:05:57 +00001844 /*isPacked=*/true),
1845 StackAlign);
Rafael Espindolaa6472962012-07-24 00:01:07 +00001846}
1847
John McCall7f416cc2015-09-08 08:05:57 +00001848Address X86_32ABIInfo::EmitVAArg(CodeGenFunction &CGF,
1849 Address VAListAddr, QualType Ty) const {
Anton Korobeynikov244360d2009-06-05 22:08:42 +00001850
John McCall7f416cc2015-09-08 08:05:57 +00001851 auto TypeInfo = getContext().getTypeInfoInChars(Ty);
Eli Friedman1d7dd3b2011-11-18 02:12:09 +00001852
John McCall7f416cc2015-09-08 08:05:57 +00001853 // x86-32 changes the alignment of certain arguments on the stack.
1854 //
1855 // Just messing with TypeInfo like this works because we never pass
1856 // anything indirectly.
1857 TypeInfo.second = CharUnits::fromQuantity(
1858 getTypeStackAlignInBytes(Ty, TypeInfo.second.getQuantity()));
Eli Friedman1d7dd3b2011-11-18 02:12:09 +00001859
John McCall7f416cc2015-09-08 08:05:57 +00001860 return emitVoidPtrVAArg(CGF, VAListAddr, Ty, /*Indirect*/ false,
1861 TypeInfo, CharUnits::fromQuantity(4),
1862 /*AllowHigherAlign*/ true);
Anton Korobeynikov244360d2009-06-05 22:08:42 +00001863}
1864
Richard Sandiforddcb8d9c2014-07-08 11:10:34 +00001865bool X86_32TargetCodeGenInfo::isStructReturnInRegABI(
1866 const llvm::Triple &Triple, const CodeGenOptions &Opts) {
1867 assert(Triple.getArch() == llvm::Triple::x86);
1868
1869 switch (Opts.getStructReturnConvention()) {
1870 case CodeGenOptions::SRCK_Default:
1871 break;
1872 case CodeGenOptions::SRCK_OnStack: // -fpcc-struct-return
1873 return false;
1874 case CodeGenOptions::SRCK_InRegs: // -freg-struct-return
1875 return true;
1876 }
1877
Michael Kupersteind749f232015-10-27 07:46:22 +00001878 if (Triple.isOSDarwin() || Triple.isOSIAMCU())
Richard Sandiforddcb8d9c2014-07-08 11:10:34 +00001879 return true;
1880
1881 switch (Triple.getOS()) {
Richard Sandiforddcb8d9c2014-07-08 11:10:34 +00001882 case llvm::Triple::DragonFly:
1883 case llvm::Triple::FreeBSD:
1884 case llvm::Triple::OpenBSD:
1885 case llvm::Triple::Bitrig:
Richard Sandiforddcb8d9c2014-07-08 11:10:34 +00001886 case llvm::Triple::Win32:
Reid Kleckner2918fef2014-11-24 22:05:42 +00001887 return true;
Richard Sandiforddcb8d9c2014-07-08 11:10:34 +00001888 default:
1889 return false;
1890 }
1891}
1892
Eric Christopher162c91c2015-06-05 22:03:00 +00001893void X86_32TargetCodeGenInfo::setTargetAttributes(const Decl *D,
Charles Davis4ea31ab2010-02-13 15:54:06 +00001894 llvm::GlobalValue *GV,
1895 CodeGen::CodeGenModule &CGM) const {
Akira Hatanakaaec6b2c2015-10-08 20:26:34 +00001896 if (const FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(D)) {
Charles Davis4ea31ab2010-02-13 15:54:06 +00001897 if (FD->hasAttr<X86ForceAlignArgPointerAttr>()) {
1898 // Get the LLVM function.
1899 llvm::Function *Fn = cast<llvm::Function>(GV);
1900
1901 // Now add the 'alignstack' attribute with a value of 16.
Bill Wendlinga514ebc2012-10-15 20:36:26 +00001902 llvm::AttrBuilder B;
Bill Wendlingccf94c92012-10-14 03:28:14 +00001903 B.addStackAlignmentAttr(16);
Reid Kleckneree4930b2017-05-02 22:07:37 +00001904 Fn->addAttributes(llvm::AttributeList::FunctionIndex, B);
Charles Davis4ea31ab2010-02-13 15:54:06 +00001905 }
Alexey Bataevd51e9932016-01-15 04:06:31 +00001906 if (FD->hasAttr<AnyX86InterruptAttr>()) {
1907 llvm::Function *Fn = cast<llvm::Function>(GV);
1908 Fn->setCallingConv(llvm::CallingConv::X86_INTR);
1909 }
Charles Davis4ea31ab2010-02-13 15:54:06 +00001910 }
1911}
1912
John McCallbeec5a02010-03-06 00:35:14 +00001913bool X86_32TargetCodeGenInfo::initDwarfEHRegSizeTable(
1914 CodeGen::CodeGenFunction &CGF,
1915 llvm::Value *Address) const {
1916 CodeGen::CGBuilderTy &Builder = CGF.Builder;
John McCallbeec5a02010-03-06 00:35:14 +00001917
Chris Lattnerece04092012-02-07 00:39:47 +00001918 llvm::Value *Four8 = llvm::ConstantInt::get(CGF.Int8Ty, 4);
Michael J. Spencerb2f376b2010-08-25 18:17:27 +00001919
John McCallbeec5a02010-03-06 00:35:14 +00001920 // 0-7 are the eight integer registers; the order is different
1921 // on Darwin (for EH), but the range is the same.
1922 // 8 is %eip.
John McCall943fae92010-05-27 06:19:26 +00001923 AssignToArrayRange(Builder, Address, Four8, 0, 8);
John McCallbeec5a02010-03-06 00:35:14 +00001924
John McCallc8e01702013-04-16 22:48:15 +00001925 if (CGF.CGM.getTarget().getTriple().isOSDarwin()) {
John McCallbeec5a02010-03-06 00:35:14 +00001926 // 12-16 are st(0..4). Not sure why we stop at 4.
1927 // These have size 16, which is sizeof(long double) on
1928 // platforms with 8-byte alignment for that type.
Chris Lattnerece04092012-02-07 00:39:47 +00001929 llvm::Value *Sixteen8 = llvm::ConstantInt::get(CGF.Int8Ty, 16);
John McCall943fae92010-05-27 06:19:26 +00001930 AssignToArrayRange(Builder, Address, Sixteen8, 12, 16);
Michael J. Spencerb2f376b2010-08-25 18:17:27 +00001931
John McCallbeec5a02010-03-06 00:35:14 +00001932 } else {
1933 // 9 is %eflags, which doesn't get a size on Darwin for some
1934 // reason.
John McCall7f416cc2015-09-08 08:05:57 +00001935 Builder.CreateAlignedStore(
1936 Four8, Builder.CreateConstInBoundsGEP1_32(CGF.Int8Ty, Address, 9),
1937 CharUnits::One());
John McCallbeec5a02010-03-06 00:35:14 +00001938
1939 // 11-16 are st(0..5). Not sure why we stop at 5.
1940 // These have size 12, which is sizeof(long double) on
1941 // platforms with 4-byte alignment for that type.
Chris Lattnerece04092012-02-07 00:39:47 +00001942 llvm::Value *Twelve8 = llvm::ConstantInt::get(CGF.Int8Ty, 12);
John McCall943fae92010-05-27 06:19:26 +00001943 AssignToArrayRange(Builder, Address, Twelve8, 11, 16);
1944 }
John McCallbeec5a02010-03-06 00:35:14 +00001945
1946 return false;
1947}
1948
Chris Lattner0cf24192010-06-28 20:05:43 +00001949//===----------------------------------------------------------------------===//
1950// X86-64 ABI Implementation
1951//===----------------------------------------------------------------------===//
1952
1953
Anton Korobeynikov244360d2009-06-05 22:08:42 +00001954namespace {
Ahmed Bougachad39a4152015-06-22 21:30:39 +00001955/// The AVX ABI level for X86 targets.
1956enum class X86AVXABILevel {
1957 None,
Ahmed Bougacha0b938282015-06-22 21:31:43 +00001958 AVX,
1959 AVX512
Ahmed Bougachad39a4152015-06-22 21:30:39 +00001960};
1961
1962/// \p returns the size in bits of the largest (native) vector for \p AVXLevel.
1963static unsigned getNativeVectorSizeForAVXABI(X86AVXABILevel AVXLevel) {
1964 switch (AVXLevel) {
Ahmed Bougacha0b938282015-06-22 21:31:43 +00001965 case X86AVXABILevel::AVX512:
1966 return 512;
Ahmed Bougachad39a4152015-06-22 21:30:39 +00001967 case X86AVXABILevel::AVX:
1968 return 256;
1969 case X86AVXABILevel::None:
1970 return 128;
1971 }
Yaron Kerenb76cb042015-06-23 09:45:42 +00001972 llvm_unreachable("Unknown AVXLevel");
Ahmed Bougachad39a4152015-06-22 21:30:39 +00001973}
1974
Anton Korobeynikov244360d2009-06-05 22:08:42 +00001975/// X86_64ABIInfo - The X86_64 ABI information.
John McCall12f23522016-04-04 18:33:08 +00001976class X86_64ABIInfo : public SwiftABIInfo {
Anton Korobeynikov244360d2009-06-05 22:08:42 +00001977 enum Class {
1978 Integer = 0,
1979 SSE,
1980 SSEUp,
1981 X87,
1982 X87Up,
1983 ComplexX87,
1984 NoClass,
1985 Memory
1986 };
1987
1988 /// merge - Implement the X86_64 ABI merging algorithm.
1989 ///
1990 /// Merge an accumulating classification \arg Accum with a field
1991 /// classification \arg Field.
1992 ///
1993 /// \param Accum - The accumulating classification. This should
1994 /// always be either NoClass or the result of a previous merge
1995 /// call. In addition, this should never be Memory (the caller
1996 /// should just return Memory for the aggregate).
Chris Lattnerd776fb12010-06-28 21:43:59 +00001997 static Class merge(Class Accum, Class Field);
Anton Korobeynikov244360d2009-06-05 22:08:42 +00001998
Bruno Cardoso Lopes21a41bb2011-07-11 22:41:29 +00001999 /// postMerge - Implement the X86_64 ABI post merging algorithm.
2000 ///
2001 /// Post merger cleanup, reduces a malformed Hi and Lo pair to
2002 /// final MEMORY or SSE classes when necessary.
2003 ///
2004 /// \param AggregateSize - The size of the current aggregate in
2005 /// the classification process.
2006 ///
2007 /// \param Lo - The classification for the parts of the type
2008 /// residing in the low word of the containing object.
2009 ///
2010 /// \param Hi - The classification for the parts of the type
2011 /// residing in the higher words of the containing object.
2012 ///
2013 void postMerge(unsigned AggregateSize, Class &Lo, Class &Hi) const;
2014
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002015 /// classify - Determine the x86_64 register classes in which the
2016 /// given type T should be passed.
2017 ///
2018 /// \param Lo - The classification for the parts of the type
2019 /// residing in the low word of the containing object.
2020 ///
2021 /// \param Hi - The classification for the parts of the type
2022 /// residing in the high word of the containing object.
2023 ///
2024 /// \param OffsetBase - The bit offset of this type in the
2025 /// containing object. Some parameters are classified different
2026 /// depending on whether they straddle an eightbyte boundary.
2027 ///
Eli Friedman96fd2642013-06-12 00:13:45 +00002028 /// \param isNamedArg - Whether the argument in question is a "named"
2029 /// argument, as used in AMD64-ABI 3.5.7.
2030 ///
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002031 /// If a word is unused its result will be NoClass; if a type should
2032 /// be passed in Memory then at least the classification of \arg Lo
2033 /// will be Memory.
2034 ///
Sylvestre Ledru33b5baf2012-09-27 10:16:10 +00002035 /// The \arg Lo class will be NoClass iff the argument is ignored.
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002036 ///
2037 /// If the \arg Lo class is ComplexX87, then the \arg Hi class will
2038 /// also be ComplexX87.
Eli Friedman96fd2642013-06-12 00:13:45 +00002039 void classify(QualType T, uint64_t OffsetBase, Class &Lo, Class &Hi,
2040 bool isNamedArg) const;
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002041
Bruno Cardoso Lopes21a41bb2011-07-11 22:41:29 +00002042 llvm::Type *GetByteVectorType(QualType Ty) const;
Chris Lattnera5f58b02011-07-09 17:41:47 +00002043 llvm::Type *GetSSETypeAtOffset(llvm::Type *IRType,
2044 unsigned IROffset, QualType SourceTy,
2045 unsigned SourceOffset) const;
2046 llvm::Type *GetINTEGERTypeAtOffset(llvm::Type *IRType,
2047 unsigned IROffset, QualType SourceTy,
2048 unsigned SourceOffset) const;
Michael J. Spencerb2f376b2010-08-25 18:17:27 +00002049
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002050 /// getIndirectResult - Give a source type \arg Ty, return a suitable result
Daniel Dunbar53fac692010-04-21 19:49:55 +00002051 /// such that the argument will be returned in memory.
Chris Lattner22a931e2010-06-29 06:01:59 +00002052 ABIArgInfo getIndirectReturnResult(QualType Ty) const;
Daniel Dunbar53fac692010-04-21 19:49:55 +00002053
2054 /// getIndirectResult - Give a source type \arg Ty, return a suitable result
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002055 /// such that the argument will be passed in memory.
Daniel Dunbarf07b5ec2012-03-10 01:03:58 +00002056 ///
2057 /// \param freeIntRegs - The number of free integer registers remaining
2058 /// available.
2059 ABIArgInfo getIndirectResult(QualType Ty, unsigned freeIntRegs) const;
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002060
Chris Lattner458b2aa2010-07-29 02:16:43 +00002061 ABIArgInfo classifyReturnType(QualType RetTy) const;
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002062
Erich Keane757d3172016-11-02 18:29:35 +00002063 ABIArgInfo classifyArgumentType(QualType Ty, unsigned freeIntRegs,
2064 unsigned &neededInt, unsigned &neededSSE,
Eli Friedman96fd2642013-06-12 00:13:45 +00002065 bool isNamedArg) const;
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002066
Erich Keane757d3172016-11-02 18:29:35 +00002067 ABIArgInfo classifyRegCallStructType(QualType Ty, unsigned &NeededInt,
2068 unsigned &NeededSSE) const;
2069
2070 ABIArgInfo classifyRegCallStructTypeImpl(QualType Ty, unsigned &NeededInt,
2071 unsigned &NeededSSE) const;
2072
Eli Friedmanbfd5add2011-12-02 00:11:43 +00002073 bool IsIllegalVectorType(QualType Ty) const;
2074
John McCalle0fda732011-04-21 01:20:55 +00002075 /// The 0.98 ABI revision clarified a lot of ambiguities,
2076 /// unfortunately in ways that were not always consistent with
2077 /// certain previous compilers. In particular, platforms which
2078 /// required strict binary compatibility with older versions of GCC
2079 /// may need to exempt themselves.
2080 bool honorsRevision0_98() const {
John McCallc8e01702013-04-16 22:48:15 +00002081 return !getTarget().getTriple().isOSDarwin();
John McCalle0fda732011-04-21 01:20:55 +00002082 }
2083
David Majnemere2ae2282016-03-04 05:26:16 +00002084 /// GCC classifies <1 x long long> as SSE but compatibility with older clang
2085 // compilers require us to classify it as INTEGER.
2086 bool classifyIntegerMMXAsSSE() const {
2087 const llvm::Triple &Triple = getTarget().getTriple();
2088 if (Triple.isOSDarwin() || Triple.getOS() == llvm::Triple::PS4)
2089 return false;
2090 if (Triple.isOSFreeBSD() && Triple.getOSMajorVersion() >= 10)
2091 return false;
2092 return true;
2093 }
2094
Ahmed Bougachad39a4152015-06-22 21:30:39 +00002095 X86AVXABILevel AVXLevel;
Derek Schuffc7dd7222012-10-11 15:52:22 +00002096 // Some ABIs (e.g. X32 ABI and Native Client OS) use 32 bit pointers on
2097 // 64-bit hardware.
2098 bool Has64BitPointers;
Eli Friedmanbfd5add2011-12-02 00:11:43 +00002099
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002100public:
Ahmed Bougachad39a4152015-06-22 21:30:39 +00002101 X86_64ABIInfo(CodeGen::CodeGenTypes &CGT, X86AVXABILevel AVXLevel) :
John McCall12f23522016-04-04 18:33:08 +00002102 SwiftABIInfo(CGT), AVXLevel(AVXLevel),
Derek Schuff8a872f32012-10-11 18:21:13 +00002103 Has64BitPointers(CGT.getDataLayout().getPointerSize(0) == 8) {
Derek Schuffc7dd7222012-10-11 15:52:22 +00002104 }
Chris Lattner22a931e2010-06-29 06:01:59 +00002105
John McCalla729c622012-02-17 03:33:10 +00002106 bool isPassedUsingAVXType(QualType type) const {
2107 unsigned neededInt, neededSSE;
Daniel Dunbarf07b5ec2012-03-10 01:03:58 +00002108 // The freeIntRegs argument doesn't matter here.
Eli Friedman96fd2642013-06-12 00:13:45 +00002109 ABIArgInfo info = classifyArgumentType(type, 0, neededInt, neededSSE,
2110 /*isNamedArg*/true);
John McCalla729c622012-02-17 03:33:10 +00002111 if (info.isDirect()) {
2112 llvm::Type *ty = info.getCoerceToType();
2113 if (llvm::VectorType *vectorTy = dyn_cast_or_null<llvm::VectorType>(ty))
2114 return (vectorTy->getBitWidth() > 128);
2115 }
2116 return false;
2117 }
2118
Craig Topper4f12f102014-03-12 06:41:41 +00002119 void computeInfo(CGFunctionInfo &FI) const override;
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002120
John McCall7f416cc2015-09-08 08:05:57 +00002121 Address EmitVAArg(CodeGenFunction &CGF, Address VAListAddr,
2122 QualType Ty) const override;
Charles Davisc7d5c942015-09-17 20:55:33 +00002123 Address EmitMSVAArg(CodeGenFunction &CGF, Address VAListAddr,
2124 QualType Ty) const override;
Peter Collingbourne69b004d2015-02-25 23:18:42 +00002125
2126 bool has64BitPointers() const {
2127 return Has64BitPointers;
2128 }
John McCall12f23522016-04-04 18:33:08 +00002129
2130 bool shouldPassIndirectlyForSwift(CharUnits totalSize,
2131 ArrayRef<llvm::Type*> scalars,
2132 bool asReturnValue) const override {
2133 return occupiesMoreThan(CGT, scalars, /*total*/ 4);
2134 }
Arnold Schwaighoferb0f2c332016-12-01 18:07:38 +00002135 bool isSwiftErrorInRegister() const override {
2136 return true;
2137 }
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002138};
Anton Korobeynikov55bcea12010-01-10 12:58:08 +00002139
Chris Lattner04dc9572010-08-31 16:44:54 +00002140/// WinX86_64ABIInfo - The Windows X86_64 ABI information.
Arnold Schwaighofer4fc955e2016-10-12 18:59:24 +00002141class WinX86_64ABIInfo : public SwiftABIInfo {
Chris Lattner04dc9572010-08-31 16:44:54 +00002142public:
Reid Kleckner11a17192015-10-28 22:29:52 +00002143 WinX86_64ABIInfo(CodeGen::CodeGenTypes &CGT)
Arnold Schwaighofer4fc955e2016-10-12 18:59:24 +00002144 : SwiftABIInfo(CGT),
Reid Kleckner11a17192015-10-28 22:29:52 +00002145 IsMingw64(getTarget().getTriple().isWindowsGNUEnvironment()) {}
NAKAMURA Takumibd91f502011-01-17 22:56:31 +00002146
Craig Topper4f12f102014-03-12 06:41:41 +00002147 void computeInfo(CGFunctionInfo &FI) const override;
Chris Lattner04dc9572010-08-31 16:44:54 +00002148
John McCall7f416cc2015-09-08 08:05:57 +00002149 Address EmitVAArg(CodeGenFunction &CGF, Address VAListAddr,
2150 QualType Ty) const override;
Reid Kleckner80944df2014-10-31 22:00:51 +00002151
2152 bool isHomogeneousAggregateBaseType(QualType Ty) const override {
2153 // FIXME: Assumes vectorcall is in use.
2154 return isX86VectorTypeForVectorCall(getContext(), Ty);
2155 }
2156
2157 bool isHomogeneousAggregateSmallEnough(const Type *Ty,
2158 uint64_t NumMembers) const override {
2159 // FIXME: Assumes vectorcall is in use.
2160 return isX86VectorCallAggregateSmallEnough(NumMembers);
2161 }
Reid Kleckner11a17192015-10-28 22:29:52 +00002162
Arnold Schwaighofer4fc955e2016-10-12 18:59:24 +00002163 bool shouldPassIndirectlyForSwift(CharUnits totalSize,
2164 ArrayRef<llvm::Type *> scalars,
2165 bool asReturnValue) const override {
2166 return occupiesMoreThan(CGT, scalars, /*total*/ 4);
2167 }
2168
Arnold Schwaighoferb0f2c332016-12-01 18:07:38 +00002169 bool isSwiftErrorInRegister() const override {
2170 return true;
2171 }
2172
Reid Kleckner11a17192015-10-28 22:29:52 +00002173private:
Erich Keane521ed962017-01-05 00:20:51 +00002174 ABIArgInfo classify(QualType Ty, unsigned &FreeSSERegs, bool IsReturnType,
2175 bool IsVectorCall, bool IsRegCall) const;
2176 ABIArgInfo reclassifyHvaArgType(QualType Ty, unsigned &FreeSSERegs,
2177 const ABIArgInfo &current) const;
2178 void computeVectorCallArgs(CGFunctionInfo &FI, unsigned FreeSSERegs,
2179 bool IsVectorCall, bool IsRegCall) const;
Reid Kleckner11a17192015-10-28 22:29:52 +00002180
Erich Keane521ed962017-01-05 00:20:51 +00002181 bool IsMingw64;
Chris Lattner04dc9572010-08-31 16:44:54 +00002182};
2183
Anton Korobeynikov55bcea12010-01-10 12:58:08 +00002184class X86_64TargetCodeGenInfo : public TargetCodeGenInfo {
2185public:
Ahmed Bougachad39a4152015-06-22 21:30:39 +00002186 X86_64TargetCodeGenInfo(CodeGen::CodeGenTypes &CGT, X86AVXABILevel AVXLevel)
Alexey Bataev00396512015-07-02 03:40:19 +00002187 : TargetCodeGenInfo(new X86_64ABIInfo(CGT, AVXLevel)) {}
John McCallbeec5a02010-03-06 00:35:14 +00002188
John McCalla729c622012-02-17 03:33:10 +00002189 const X86_64ABIInfo &getABIInfo() const {
2190 return static_cast<const X86_64ABIInfo&>(TargetCodeGenInfo::getABIInfo());
2191 }
2192
Craig Topper4f12f102014-03-12 06:41:41 +00002193 int getDwarfEHStackPointer(CodeGen::CodeGenModule &CGM) const override {
John McCallbeec5a02010-03-06 00:35:14 +00002194 return 7;
2195 }
2196
2197 bool initDwarfEHRegSizeTable(CodeGen::CodeGenFunction &CGF,
Craig Topper4f12f102014-03-12 06:41:41 +00002198 llvm::Value *Address) const override {
Chris Lattnerece04092012-02-07 00:39:47 +00002199 llvm::Value *Eight8 = llvm::ConstantInt::get(CGF.Int8Ty, 8);
Michael J. Spencerb2f376b2010-08-25 18:17:27 +00002200
John McCall943fae92010-05-27 06:19:26 +00002201 // 0-15 are the 16 integer registers.
2202 // 16 is %rip.
Chris Lattnerece04092012-02-07 00:39:47 +00002203 AssignToArrayRange(CGF.Builder, Address, Eight8, 0, 16);
John McCallbeec5a02010-03-06 00:35:14 +00002204 return false;
2205 }
Peter Collingbourne8f5cf742011-02-19 23:03:58 +00002206
Jay Foad7c57be32011-07-11 09:56:20 +00002207 llvm::Type* adjustInlineAsmType(CodeGen::CodeGenFunction &CGF,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002208 StringRef Constraint,
Craig Topper4f12f102014-03-12 06:41:41 +00002209 llvm::Type* Ty) const override {
Peter Collingbourne8f5cf742011-02-19 23:03:58 +00002210 return X86AdjustInlineAsmType(CGF, Constraint, Ty);
2211 }
2212
John McCalla729c622012-02-17 03:33:10 +00002213 bool isNoProtoCallVariadic(const CallArgList &args,
Craig Topper4f12f102014-03-12 06:41:41 +00002214 const FunctionNoProtoType *fnType) const override {
John McCallcbc038a2011-09-21 08:08:30 +00002215 // The default CC on x86-64 sets %al to the number of SSA
2216 // registers used, and GCC sets this when calling an unprototyped
Eli Friedmanf37bd2f2011-12-01 04:53:19 +00002217 // function, so we override the default behavior. However, don't do
Eli Friedmanb8e45b22011-12-06 03:08:26 +00002218 // that when AVX types are involved: the ABI explicitly states it is
2219 // undefined, and it doesn't work in practice because of how the ABI
2220 // defines varargs anyway.
Reid Kleckner78af0702013-08-27 23:08:25 +00002221 if (fnType->getCallConv() == CC_C) {
Eli Friedmanf37bd2f2011-12-01 04:53:19 +00002222 bool HasAVXType = false;
John McCalla729c622012-02-17 03:33:10 +00002223 for (CallArgList::const_iterator
2224 it = args.begin(), ie = args.end(); it != ie; ++it) {
2225 if (getABIInfo().isPassedUsingAVXType(it->Ty)) {
2226 HasAVXType = true;
2227 break;
Eli Friedmanf37bd2f2011-12-01 04:53:19 +00002228 }
2229 }
John McCalla729c622012-02-17 03:33:10 +00002230
Eli Friedmanf37bd2f2011-12-01 04:53:19 +00002231 if (!HasAVXType)
2232 return true;
2233 }
John McCallcbc038a2011-09-21 08:08:30 +00002234
John McCalla729c622012-02-17 03:33:10 +00002235 return TargetCodeGenInfo::isNoProtoCallVariadic(args, fnType);
John McCallcbc038a2011-09-21 08:08:30 +00002236 }
2237
Craig Topper4f12f102014-03-12 06:41:41 +00002238 llvm::Constant *
2239 getUBSanFunctionSignature(CodeGen::CodeGenModule &CGM) const override {
Peter Collingbourne69b004d2015-02-25 23:18:42 +00002240 unsigned Sig;
2241 if (getABIInfo().has64BitPointers())
2242 Sig = (0xeb << 0) | // jmp rel8
2243 (0x0a << 8) | // .+0x0c
2244 ('F' << 16) |
2245 ('T' << 24);
2246 else
2247 Sig = (0xeb << 0) | // jmp rel8
2248 (0x06 << 8) | // .+0x08
2249 ('F' << 16) |
2250 ('T' << 24);
Peter Collingbourneb453cd62013-10-20 21:29:19 +00002251 return llvm::ConstantInt::get(CGM.Int32Ty, Sig);
2252 }
Alexey Bataevd51e9932016-01-15 04:06:31 +00002253
2254 void setTargetAttributes(const Decl *D, llvm::GlobalValue *GV,
2255 CodeGen::CodeGenModule &CGM) const override {
2256 if (const FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(D)) {
2257 if (FD->hasAttr<AnyX86InterruptAttr>()) {
2258 llvm::Function *Fn = cast<llvm::Function>(GV);
2259 Fn->setCallingConv(llvm::CallingConv::X86_INTR);
2260 }
2261 }
2262 }
Anton Korobeynikov55bcea12010-01-10 12:58:08 +00002263};
2264
Alex Rosenberg12207fa2015-01-27 14:47:44 +00002265class PS4TargetCodeGenInfo : public X86_64TargetCodeGenInfo {
2266public:
Ahmed Bougachad39a4152015-06-22 21:30:39 +00002267 PS4TargetCodeGenInfo(CodeGen::CodeGenTypes &CGT, X86AVXABILevel AVXLevel)
2268 : X86_64TargetCodeGenInfo(CGT, AVXLevel) {}
Alex Rosenberg12207fa2015-01-27 14:47:44 +00002269
2270 void getDependentLibraryOption(llvm::StringRef Lib,
Alexander Kornienko34eb2072015-04-11 02:00:23 +00002271 llvm::SmallString<24> &Opt) const override {
Alex Rosenberg12207fa2015-01-27 14:47:44 +00002272 Opt = "\01";
Yunzhong Gaod65200c2015-07-20 17:46:56 +00002273 // If the argument contains a space, enclose it in quotes.
2274 if (Lib.find(" ") != StringRef::npos)
2275 Opt += "\"" + Lib.str() + "\"";
2276 else
2277 Opt += Lib;
Alex Rosenberg12207fa2015-01-27 14:47:44 +00002278 }
2279};
2280
Aaron Ballmanef50ee92013-05-24 15:06:56 +00002281static std::string qualifyWindowsLibrary(llvm::StringRef Lib) {
Michael Kupersteinf0e4ccf2015-02-16 11:57:43 +00002282 // If the argument does not end in .lib, automatically add the suffix.
2283 // If the argument contains a space, enclose it in quotes.
2284 // This matches the behavior of MSVC.
2285 bool Quote = (Lib.find(" ") != StringRef::npos);
2286 std::string ArgStr = Quote ? "\"" : "";
2287 ArgStr += Lib;
Rui Ueyama727025a2013-10-31 19:12:53 +00002288 if (!Lib.endswith_lower(".lib"))
Aaron Ballmanef50ee92013-05-24 15:06:56 +00002289 ArgStr += ".lib";
Michael Kupersteinf0e4ccf2015-02-16 11:57:43 +00002290 ArgStr += Quote ? "\"" : "";
Aaron Ballmanef50ee92013-05-24 15:06:56 +00002291 return ArgStr;
2292}
2293
Reid Klecknere43f0fe2013-05-08 13:44:39 +00002294class WinX86_32TargetCodeGenInfo : public X86_32TargetCodeGenInfo {
2295public:
John McCall1fe2a8c2013-06-18 02:46:29 +00002296 WinX86_32TargetCodeGenInfo(CodeGen::CodeGenTypes &CGT,
Michael Kupersteindc745202015-10-19 07:52:25 +00002297 bool DarwinVectorABI, bool RetSmallStructInRegABI, bool Win32StructABI,
2298 unsigned NumRegisterParameters)
2299 : X86_32TargetCodeGenInfo(CGT, DarwinVectorABI, RetSmallStructInRegABI,
Michael Kupersteinb1ec50d2015-10-19 08:09:43 +00002300 Win32StructABI, NumRegisterParameters, false) {}
Reid Klecknere43f0fe2013-05-08 13:44:39 +00002301
Eric Christopher162c91c2015-06-05 22:03:00 +00002302 void setTargetAttributes(const Decl *D, llvm::GlobalValue *GV,
Hans Wennborg77dc2362015-01-20 19:45:50 +00002303 CodeGen::CodeGenModule &CGM) const override;
2304
Reid Klecknere43f0fe2013-05-08 13:44:39 +00002305 void getDependentLibraryOption(llvm::StringRef Lib,
Craig Topper4f12f102014-03-12 06:41:41 +00002306 llvm::SmallString<24> &Opt) const override {
Reid Klecknere43f0fe2013-05-08 13:44:39 +00002307 Opt = "/DEFAULTLIB:";
Aaron Ballmanef50ee92013-05-24 15:06:56 +00002308 Opt += qualifyWindowsLibrary(Lib);
Reid Klecknere43f0fe2013-05-08 13:44:39 +00002309 }
Aaron Ballman5d041be2013-06-04 02:07:14 +00002310
2311 void getDetectMismatchOption(llvm::StringRef Name,
2312 llvm::StringRef Value,
Craig Topper4f12f102014-03-12 06:41:41 +00002313 llvm::SmallString<32> &Opt) const override {
Eli Friedmanf60b8ce2013-06-07 22:42:22 +00002314 Opt = "/FAILIFMISMATCH:\"" + Name.str() + "=" + Value.str() + "\"";
Aaron Ballman5d041be2013-06-04 02:07:14 +00002315 }
Reid Klecknere43f0fe2013-05-08 13:44:39 +00002316};
2317
Hans Wennborg77dc2362015-01-20 19:45:50 +00002318static void addStackProbeSizeTargetAttribute(const Decl *D,
2319 llvm::GlobalValue *GV,
2320 CodeGen::CodeGenModule &CGM) {
Akira Hatanakaaec6b2c2015-10-08 20:26:34 +00002321 if (D && isa<FunctionDecl>(D)) {
Hans Wennborg77dc2362015-01-20 19:45:50 +00002322 if (CGM.getCodeGenOpts().StackProbeSize != 4096) {
2323 llvm::Function *Fn = cast<llvm::Function>(GV);
2324
Eric Christopher7565e0d2015-05-29 23:09:49 +00002325 Fn->addFnAttr("stack-probe-size",
2326 llvm::utostr(CGM.getCodeGenOpts().StackProbeSize));
Hans Wennborg77dc2362015-01-20 19:45:50 +00002327 }
2328 }
2329}
2330
Eric Christopher162c91c2015-06-05 22:03:00 +00002331void WinX86_32TargetCodeGenInfo::setTargetAttributes(const Decl *D,
Hans Wennborg77dc2362015-01-20 19:45:50 +00002332 llvm::GlobalValue *GV,
2333 CodeGen::CodeGenModule &CGM) const {
Eric Christopher162c91c2015-06-05 22:03:00 +00002334 X86_32TargetCodeGenInfo::setTargetAttributes(D, GV, CGM);
Hans Wennborg77dc2362015-01-20 19:45:50 +00002335
2336 addStackProbeSizeTargetAttribute(D, GV, CGM);
2337}
2338
Chris Lattner04dc9572010-08-31 16:44:54 +00002339class WinX86_64TargetCodeGenInfo : public TargetCodeGenInfo {
2340public:
Ahmed Bougachad39a4152015-06-22 21:30:39 +00002341 WinX86_64TargetCodeGenInfo(CodeGen::CodeGenTypes &CGT,
2342 X86AVXABILevel AVXLevel)
Alexey Bataev00396512015-07-02 03:40:19 +00002343 : TargetCodeGenInfo(new WinX86_64ABIInfo(CGT)) {}
Chris Lattner04dc9572010-08-31 16:44:54 +00002344
Eric Christopher162c91c2015-06-05 22:03:00 +00002345 void setTargetAttributes(const Decl *D, llvm::GlobalValue *GV,
Hans Wennborg77dc2362015-01-20 19:45:50 +00002346 CodeGen::CodeGenModule &CGM) const override;
2347
Craig Topper4f12f102014-03-12 06:41:41 +00002348 int getDwarfEHStackPointer(CodeGen::CodeGenModule &CGM) const override {
Chris Lattner04dc9572010-08-31 16:44:54 +00002349 return 7;
2350 }
2351
2352 bool initDwarfEHRegSizeTable(CodeGen::CodeGenFunction &CGF,
Craig Topper4f12f102014-03-12 06:41:41 +00002353 llvm::Value *Address) const override {
Chris Lattnerece04092012-02-07 00:39:47 +00002354 llvm::Value *Eight8 = llvm::ConstantInt::get(CGF.Int8Ty, 8);
Michael J. Spencerf5a1fbc2010-10-19 06:39:39 +00002355
Chris Lattner04dc9572010-08-31 16:44:54 +00002356 // 0-15 are the 16 integer registers.
2357 // 16 is %rip.
Chris Lattnerece04092012-02-07 00:39:47 +00002358 AssignToArrayRange(CGF.Builder, Address, Eight8, 0, 16);
Chris Lattner04dc9572010-08-31 16:44:54 +00002359 return false;
2360 }
Reid Klecknere43f0fe2013-05-08 13:44:39 +00002361
2362 void getDependentLibraryOption(llvm::StringRef Lib,
Craig Topper4f12f102014-03-12 06:41:41 +00002363 llvm::SmallString<24> &Opt) const override {
Reid Klecknere43f0fe2013-05-08 13:44:39 +00002364 Opt = "/DEFAULTLIB:";
Aaron Ballmanef50ee92013-05-24 15:06:56 +00002365 Opt += qualifyWindowsLibrary(Lib);
Reid Klecknere43f0fe2013-05-08 13:44:39 +00002366 }
Aaron Ballman5d041be2013-06-04 02:07:14 +00002367
2368 void getDetectMismatchOption(llvm::StringRef Name,
2369 llvm::StringRef Value,
Craig Topper4f12f102014-03-12 06:41:41 +00002370 llvm::SmallString<32> &Opt) const override {
Eli Friedmanf60b8ce2013-06-07 22:42:22 +00002371 Opt = "/FAILIFMISMATCH:\"" + Name.str() + "=" + Value.str() + "\"";
Aaron Ballman5d041be2013-06-04 02:07:14 +00002372 }
Chris Lattner04dc9572010-08-31 16:44:54 +00002373};
2374
Eric Christopher162c91c2015-06-05 22:03:00 +00002375void WinX86_64TargetCodeGenInfo::setTargetAttributes(const Decl *D,
Hans Wennborg77dc2362015-01-20 19:45:50 +00002376 llvm::GlobalValue *GV,
2377 CodeGen::CodeGenModule &CGM) const {
Eric Christopher162c91c2015-06-05 22:03:00 +00002378 TargetCodeGenInfo::setTargetAttributes(D, GV, CGM);
Hans Wennborg77dc2362015-01-20 19:45:50 +00002379
Alexey Bataevd51e9932016-01-15 04:06:31 +00002380 if (const FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(D)) {
2381 if (FD->hasAttr<AnyX86InterruptAttr>()) {
2382 llvm::Function *Fn = cast<llvm::Function>(GV);
2383 Fn->setCallingConv(llvm::CallingConv::X86_INTR);
2384 }
2385 }
2386
Hans Wennborg77dc2362015-01-20 19:45:50 +00002387 addStackProbeSizeTargetAttribute(D, GV, CGM);
2388}
Alexander Kornienkoab9db512015-06-22 23:07:51 +00002389}
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002390
Bruno Cardoso Lopes21a41bb2011-07-11 22:41:29 +00002391void X86_64ABIInfo::postMerge(unsigned AggregateSize, Class &Lo,
2392 Class &Hi) const {
2393 // AMD64-ABI 3.2.3p2: Rule 5. Then a post merger cleanup is done:
2394 //
2395 // (a) If one of the classes is Memory, the whole argument is passed in
2396 // memory.
2397 //
2398 // (b) If X87UP is not preceded by X87, the whole argument is passed in
2399 // memory.
2400 //
2401 // (c) If the size of the aggregate exceeds two eightbytes and the first
2402 // eightbyte isn't SSE or any other eightbyte isn't SSEUP, the whole
2403 // argument is passed in memory. NOTE: This is necessary to keep the
2404 // ABI working for processors that don't support the __m256 type.
2405 //
2406 // (d) If SSEUP is not preceded by SSE or SSEUP, it is converted to SSE.
2407 //
2408 // Some of these are enforced by the merging logic. Others can arise
2409 // only with unions; for example:
2410 // union { _Complex double; unsigned; }
2411 //
2412 // Note that clauses (b) and (c) were added in 0.98.
2413 //
2414 if (Hi == Memory)
2415 Lo = Memory;
2416 if (Hi == X87Up && Lo != X87 && honorsRevision0_98())
2417 Lo = Memory;
2418 if (AggregateSize > 128 && (Lo != SSE || Hi != SSEUp))
2419 Lo = Memory;
2420 if (Hi == SSEUp && Lo != SSE)
2421 Hi = SSE;
2422}
2423
Chris Lattnerd776fb12010-06-28 21:43:59 +00002424X86_64ABIInfo::Class X86_64ABIInfo::merge(Class Accum, Class Field) {
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002425 // AMD64-ABI 3.2.3p2: Rule 4. Each field of an object is
2426 // classified recursively so that always two fields are
2427 // considered. The resulting class is calculated according to
2428 // the classes of the fields in the eightbyte:
2429 //
2430 // (a) If both classes are equal, this is the resulting class.
2431 //
2432 // (b) If one of the classes is NO_CLASS, the resulting class is
2433 // the other class.
2434 //
2435 // (c) If one of the classes is MEMORY, the result is the MEMORY
2436 // class.
2437 //
2438 // (d) If one of the classes is INTEGER, the result is the
2439 // INTEGER.
2440 //
2441 // (e) If one of the classes is X87, X87UP, COMPLEX_X87 class,
2442 // MEMORY is used as class.
2443 //
2444 // (f) Otherwise class SSE is used.
2445
2446 // Accum should never be memory (we should have returned) or
2447 // ComplexX87 (because this cannot be passed in a structure).
2448 assert((Accum != Memory && Accum != ComplexX87) &&
2449 "Invalid accumulated classification during merge.");
2450 if (Accum == Field || Field == NoClass)
2451 return Accum;
Chris Lattnerd776fb12010-06-28 21:43:59 +00002452 if (Field == Memory)
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002453 return Memory;
Chris Lattnerd776fb12010-06-28 21:43:59 +00002454 if (Accum == NoClass)
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002455 return Field;
Chris Lattnerd776fb12010-06-28 21:43:59 +00002456 if (Accum == Integer || Field == Integer)
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002457 return Integer;
Chris Lattnerd776fb12010-06-28 21:43:59 +00002458 if (Field == X87 || Field == X87Up || Field == ComplexX87 ||
2459 Accum == X87 || Accum == X87Up)
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002460 return Memory;
Chris Lattnerd776fb12010-06-28 21:43:59 +00002461 return SSE;
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002462}
2463
Chris Lattner5c740f12010-06-30 19:14:05 +00002464void X86_64ABIInfo::classify(QualType Ty, uint64_t OffsetBase,
Eli Friedman96fd2642013-06-12 00:13:45 +00002465 Class &Lo, Class &Hi, bool isNamedArg) const {
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002466 // FIXME: This code can be simplified by introducing a simple value class for
2467 // Class pairs with appropriate constructor methods for the various
2468 // situations.
2469
2470 // FIXME: Some of the split computations are wrong; unaligned vectors
2471 // shouldn't be passed in registers for example, so there is no chance they
2472 // can straddle an eightbyte. Verify & simplify.
2473
2474 Lo = Hi = NoClass;
2475
2476 Class &Current = OffsetBase < 64 ? Lo : Hi;
2477 Current = Memory;
2478
John McCall9dd450b2009-09-21 23:43:11 +00002479 if (const BuiltinType *BT = Ty->getAs<BuiltinType>()) {
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002480 BuiltinType::Kind k = BT->getKind();
2481
2482 if (k == BuiltinType::Void) {
2483 Current = NoClass;
2484 } else if (k == BuiltinType::Int128 || k == BuiltinType::UInt128) {
2485 Lo = Integer;
2486 Hi = Integer;
2487 } else if (k >= BuiltinType::Bool && k <= BuiltinType::LongLong) {
2488 Current = Integer;
Chih-Hung Hsieh241a8902015-08-10 17:33:31 +00002489 } else if (k == BuiltinType::Float || k == BuiltinType::Double) {
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002490 Current = SSE;
2491 } else if (k == BuiltinType::LongDouble) {
Chih-Hung Hsieh241a8902015-08-10 17:33:31 +00002492 const llvm::fltSemantics *LDF = &getTarget().getLongDoubleFormat();
Stephan Bergmann17c7f702016-12-14 11:57:17 +00002493 if (LDF == &llvm::APFloat::IEEEquad()) {
Chih-Hung Hsieh241a8902015-08-10 17:33:31 +00002494 Lo = SSE;
2495 Hi = SSEUp;
Stephan Bergmann17c7f702016-12-14 11:57:17 +00002496 } else if (LDF == &llvm::APFloat::x87DoubleExtended()) {
Chih-Hung Hsieh241a8902015-08-10 17:33:31 +00002497 Lo = X87;
2498 Hi = X87Up;
Stephan Bergmann17c7f702016-12-14 11:57:17 +00002499 } else if (LDF == &llvm::APFloat::IEEEdouble()) {
Chih-Hung Hsieh241a8902015-08-10 17:33:31 +00002500 Current = SSE;
2501 } else
2502 llvm_unreachable("unexpected long double representation!");
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002503 }
2504 // FIXME: _Decimal32 and _Decimal64 are SSE.
2505 // FIXME: _float128 and _Decimal128 are (SSE, SSEUp).
Chris Lattnerd776fb12010-06-28 21:43:59 +00002506 return;
2507 }
Michael J. Spencerb2f376b2010-08-25 18:17:27 +00002508
Chris Lattnerd776fb12010-06-28 21:43:59 +00002509 if (const EnumType *ET = Ty->getAs<EnumType>()) {
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002510 // Classify the underlying integer type.
Eli Friedman96fd2642013-06-12 00:13:45 +00002511 classify(ET->getDecl()->getIntegerType(), OffsetBase, Lo, Hi, isNamedArg);
Chris Lattnerd776fb12010-06-28 21:43:59 +00002512 return;
2513 }
Michael J. Spencerb2f376b2010-08-25 18:17:27 +00002514
Chris Lattnerd776fb12010-06-28 21:43:59 +00002515 if (Ty->hasPointerRepresentation()) {
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002516 Current = Integer;
Chris Lattnerd776fb12010-06-28 21:43:59 +00002517 return;
2518 }
Michael J. Spencerb2f376b2010-08-25 18:17:27 +00002519
Chris Lattnerd776fb12010-06-28 21:43:59 +00002520 if (Ty->isMemberPointerType()) {
Jan Wen Voung01c21e82014-10-02 16:56:57 +00002521 if (Ty->isMemberFunctionPointerType()) {
2522 if (Has64BitPointers) {
2523 // If Has64BitPointers, this is an {i64, i64}, so classify both
2524 // Lo and Hi now.
2525 Lo = Hi = Integer;
2526 } else {
2527 // Otherwise, with 32-bit pointers, this is an {i32, i32}. If that
2528 // straddles an eightbyte boundary, Hi should be classified as well.
2529 uint64_t EB_FuncPtr = (OffsetBase) / 64;
2530 uint64_t EB_ThisAdj = (OffsetBase + 64 - 1) / 64;
2531 if (EB_FuncPtr != EB_ThisAdj) {
2532 Lo = Hi = Integer;
2533 } else {
2534 Current = Integer;
2535 }
2536 }
2537 } else {
Daniel Dunbar36d4d152010-05-15 00:00:37 +00002538 Current = Integer;
Jan Wen Voung01c21e82014-10-02 16:56:57 +00002539 }
Chris Lattnerd776fb12010-06-28 21:43:59 +00002540 return;
2541 }
Michael J. Spencerb2f376b2010-08-25 18:17:27 +00002542
Chris Lattnerd776fb12010-06-28 21:43:59 +00002543 if (const VectorType *VT = Ty->getAs<VectorType>()) {
Chris Lattner2b037972010-07-29 02:01:43 +00002544 uint64_t Size = getContext().getTypeSize(VT);
David Majnemerf8d14db2015-07-17 05:49:13 +00002545 if (Size == 1 || Size == 8 || Size == 16 || Size == 32) {
2546 // gcc passes the following as integer:
2547 // 4 bytes - <4 x char>, <2 x short>, <1 x int>, <1 x float>
2548 // 2 bytes - <2 x char>, <1 x short>
2549 // 1 byte - <1 x char>
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002550 Current = Integer;
2551
2552 // If this type crosses an eightbyte boundary, it should be
2553 // split.
David Majnemerf8d14db2015-07-17 05:49:13 +00002554 uint64_t EB_Lo = (OffsetBase) / 64;
2555 uint64_t EB_Hi = (OffsetBase + Size - 1) / 64;
2556 if (EB_Lo != EB_Hi)
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002557 Hi = Lo;
2558 } else if (Size == 64) {
David Majnemere2ae2282016-03-04 05:26:16 +00002559 QualType ElementType = VT->getElementType();
2560
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002561 // gcc passes <1 x double> in memory. :(
David Majnemere2ae2282016-03-04 05:26:16 +00002562 if (ElementType->isSpecificBuiltinType(BuiltinType::Double))
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002563 return;
2564
David Majnemere2ae2282016-03-04 05:26:16 +00002565 // gcc passes <1 x long long> as SSE but clang used to unconditionally
2566 // pass them as integer. For platforms where clang is the de facto
2567 // platform compiler, we must continue to use integer.
2568 if (!classifyIntegerMMXAsSSE() &&
2569 (ElementType->isSpecificBuiltinType(BuiltinType::LongLong) ||
2570 ElementType->isSpecificBuiltinType(BuiltinType::ULongLong) ||
2571 ElementType->isSpecificBuiltinType(BuiltinType::Long) ||
2572 ElementType->isSpecificBuiltinType(BuiltinType::ULong)))
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002573 Current = Integer;
2574 else
2575 Current = SSE;
2576
2577 // If this type crosses an eightbyte boundary, it should be
2578 // split.
2579 if (OffsetBase && OffsetBase != 64)
2580 Hi = Lo;
Ahmed Bougachad39a4152015-06-22 21:30:39 +00002581 } else if (Size == 128 ||
2582 (isNamedArg && Size <= getNativeVectorSizeForAVXABI(AVXLevel))) {
Bruno Cardoso Lopes21a41bb2011-07-11 22:41:29 +00002583 // Arguments of 256-bits are split into four eightbyte chunks. The
2584 // least significant one belongs to class SSE and all the others to class
2585 // SSEUP. The original Lo and Hi design considers that types can't be
2586 // greater than 128-bits, so a 64-bit split in Hi and Lo makes sense.
2587 // This design isn't correct for 256-bits, but since there're no cases
2588 // where the upper parts would need to be inspected, avoid adding
2589 // complexity and just consider Hi to match the 64-256 part.
Eli Friedman96fd2642013-06-12 00:13:45 +00002590 //
2591 // Note that per 3.5.7 of AMD64-ABI, 256-bit args are only passed in
2592 // registers if they are "named", i.e. not part of the "..." of a
2593 // variadic function.
Ahmed Bougacha0b938282015-06-22 21:31:43 +00002594 //
2595 // Similarly, per 3.2.3. of the AVX512 draft, 512-bits ("named") args are
2596 // split into eight eightbyte chunks, one SSE and seven SSEUP.
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002597 Lo = SSE;
2598 Hi = SSEUp;
2599 }
Chris Lattnerd776fb12010-06-28 21:43:59 +00002600 return;
2601 }
Michael J. Spencerb2f376b2010-08-25 18:17:27 +00002602
Chris Lattnerd776fb12010-06-28 21:43:59 +00002603 if (const ComplexType *CT = Ty->getAs<ComplexType>()) {
Chris Lattner2b037972010-07-29 02:01:43 +00002604 QualType ET = getContext().getCanonicalType(CT->getElementType());
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002605
Chris Lattner2b037972010-07-29 02:01:43 +00002606 uint64_t Size = getContext().getTypeSize(Ty);
Douglas Gregorb90df602010-06-16 00:17:44 +00002607 if (ET->isIntegralOrEnumerationType()) {
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002608 if (Size <= 64)
2609 Current = Integer;
2610 else if (Size <= 128)
2611 Lo = Hi = Integer;
Chih-Hung Hsieh241a8902015-08-10 17:33:31 +00002612 } else if (ET == getContext().FloatTy) {
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002613 Current = SSE;
Chih-Hung Hsieh241a8902015-08-10 17:33:31 +00002614 } else if (ET == getContext().DoubleTy) {
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002615 Lo = Hi = SSE;
Chih-Hung Hsieh241a8902015-08-10 17:33:31 +00002616 } else if (ET == getContext().LongDoubleTy) {
2617 const llvm::fltSemantics *LDF = &getTarget().getLongDoubleFormat();
Stephan Bergmann17c7f702016-12-14 11:57:17 +00002618 if (LDF == &llvm::APFloat::IEEEquad())
Chih-Hung Hsieh241a8902015-08-10 17:33:31 +00002619 Current = Memory;
Stephan Bergmann17c7f702016-12-14 11:57:17 +00002620 else if (LDF == &llvm::APFloat::x87DoubleExtended())
Chih-Hung Hsieh241a8902015-08-10 17:33:31 +00002621 Current = ComplexX87;
Stephan Bergmann17c7f702016-12-14 11:57:17 +00002622 else if (LDF == &llvm::APFloat::IEEEdouble())
Chih-Hung Hsieh241a8902015-08-10 17:33:31 +00002623 Lo = Hi = SSE;
2624 else
2625 llvm_unreachable("unexpected long double representation!");
2626 }
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002627
2628 // If this complex type crosses an eightbyte boundary then it
2629 // should be split.
2630 uint64_t EB_Real = (OffsetBase) / 64;
Chris Lattner2b037972010-07-29 02:01:43 +00002631 uint64_t EB_Imag = (OffsetBase + getContext().getTypeSize(ET)) / 64;
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002632 if (Hi == NoClass && EB_Real != EB_Imag)
2633 Hi = Lo;
Michael J. Spencerb2f376b2010-08-25 18:17:27 +00002634
Chris Lattnerd776fb12010-06-28 21:43:59 +00002635 return;
2636 }
Michael J. Spencerb2f376b2010-08-25 18:17:27 +00002637
Chris Lattner2b037972010-07-29 02:01:43 +00002638 if (const ConstantArrayType *AT = getContext().getAsConstantArrayType(Ty)) {
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002639 // Arrays are treated like structures.
2640
Chris Lattner2b037972010-07-29 02:01:43 +00002641 uint64_t Size = getContext().getTypeSize(Ty);
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002642
2643 // AMD64-ABI 3.2.3p2: Rule 1. If the size of an object is larger
David Majnemerb229cb02016-08-15 06:39:18 +00002644 // than eight eightbytes, ..., it has class MEMORY.
2645 if (Size > 512)
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002646 return;
2647
2648 // AMD64-ABI 3.2.3p2: Rule 1. If ..., or it contains unaligned
2649 // fields, it has class MEMORY.
2650 //
2651 // Only need to check alignment of array base.
Chris Lattner2b037972010-07-29 02:01:43 +00002652 if (OffsetBase % getContext().getTypeAlign(AT->getElementType()))
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002653 return;
2654
2655 // Otherwise implement simplified merge. We could be smarter about
2656 // this, but it isn't worth it and would be harder to verify.
2657 Current = NoClass;
Chris Lattner2b037972010-07-29 02:01:43 +00002658 uint64_t EltSize = getContext().getTypeSize(AT->getElementType());
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002659 uint64_t ArraySize = AT->getSize().getZExtValue();
Bruno Cardoso Lopes75541d02011-07-12 01:27:38 +00002660
2661 // The only case a 256-bit wide vector could be used is when the array
2662 // contains a single 256-bit element. Since Lo and Hi logic isn't extended
2663 // to work for sizes wider than 128, early check and fallback to memory.
David Majnemerb229cb02016-08-15 06:39:18 +00002664 //
2665 if (Size > 128 &&
2666 (Size != EltSize || Size > getNativeVectorSizeForAVXABI(AVXLevel)))
Bruno Cardoso Lopes75541d02011-07-12 01:27:38 +00002667 return;
2668
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002669 for (uint64_t i=0, Offset=OffsetBase; i<ArraySize; ++i, Offset += EltSize) {
2670 Class FieldLo, FieldHi;
Eli Friedman96fd2642013-06-12 00:13:45 +00002671 classify(AT->getElementType(), Offset, FieldLo, FieldHi, isNamedArg);
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002672 Lo = merge(Lo, FieldLo);
2673 Hi = merge(Hi, FieldHi);
2674 if (Lo == Memory || Hi == Memory)
2675 break;
2676 }
2677
Bruno Cardoso Lopes21a41bb2011-07-11 22:41:29 +00002678 postMerge(Size, Lo, Hi);
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002679 assert((Hi != SSEUp || Lo == SSE) && "Invalid SSEUp array classification.");
Chris Lattnerd776fb12010-06-28 21:43:59 +00002680 return;
2681 }
Michael J. Spencerb2f376b2010-08-25 18:17:27 +00002682
Chris Lattnerd776fb12010-06-28 21:43:59 +00002683 if (const RecordType *RT = Ty->getAs<RecordType>()) {
Chris Lattner2b037972010-07-29 02:01:43 +00002684 uint64_t Size = getContext().getTypeSize(Ty);
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002685
2686 // AMD64-ABI 3.2.3p2: Rule 1. If the size of an object is larger
David Majnemerb229cb02016-08-15 06:39:18 +00002687 // than eight eightbytes, ..., it has class MEMORY.
2688 if (Size > 512)
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002689 return;
2690
Anders Carlsson20759ad2009-09-16 15:53:40 +00002691 // AMD64-ABI 3.2.3p2: Rule 2. If a C++ object has either a non-trivial
2692 // copy constructor or a non-trivial destructor, it is passed by invisible
2693 // reference.
Mark Lacey3825e832013-10-06 01:33:34 +00002694 if (getRecordArgABI(RT, getCXXABI()))
Anders Carlsson20759ad2009-09-16 15:53:40 +00002695 return;
Daniel Dunbare1cd0152009-11-22 23:01:23 +00002696
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002697 const RecordDecl *RD = RT->getDecl();
2698
2699 // Assume variable sized types are passed in memory.
2700 if (RD->hasFlexibleArrayMember())
2701 return;
2702
Chris Lattner2b037972010-07-29 02:01:43 +00002703 const ASTRecordLayout &Layout = getContext().getASTRecordLayout(RD);
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002704
2705 // Reset Lo class, this will be recomputed.
2706 Current = NoClass;
Daniel Dunbare1cd0152009-11-22 23:01:23 +00002707
2708 // If this is a C++ record, classify the bases first.
2709 if (const CXXRecordDecl *CXXRD = dyn_cast<CXXRecordDecl>(RD)) {
Aaron Ballman574705e2014-03-13 15:41:46 +00002710 for (const auto &I : CXXRD->bases()) {
2711 assert(!I.isVirtual() && !I.getType()->isDependentType() &&
Daniel Dunbare1cd0152009-11-22 23:01:23 +00002712 "Unexpected base class!");
2713 const CXXRecordDecl *Base =
Aaron Ballman574705e2014-03-13 15:41:46 +00002714 cast<CXXRecordDecl>(I.getType()->getAs<RecordType>()->getDecl());
Daniel Dunbare1cd0152009-11-22 23:01:23 +00002715
2716 // Classify this field.
2717 //
2718 // AMD64-ABI 3.2.3p2: Rule 3. If the size of the aggregate exceeds a
2719 // single eightbyte, each is classified separately. Each eightbyte gets
2720 // initialized to class NO_CLASS.
2721 Class FieldLo, FieldHi;
Benjamin Kramer2ef30312012-07-04 18:45:14 +00002722 uint64_t Offset =
2723 OffsetBase + getContext().toBits(Layout.getBaseClassOffset(Base));
Aaron Ballman574705e2014-03-13 15:41:46 +00002724 classify(I.getType(), Offset, FieldLo, FieldHi, isNamedArg);
Daniel Dunbare1cd0152009-11-22 23:01:23 +00002725 Lo = merge(Lo, FieldLo);
2726 Hi = merge(Hi, FieldHi);
David Majnemercefbc7c2015-07-08 05:14:29 +00002727 if (Lo == Memory || Hi == Memory) {
2728 postMerge(Size, Lo, Hi);
2729 return;
2730 }
Daniel Dunbare1cd0152009-11-22 23:01:23 +00002731 }
2732 }
2733
2734 // Classify the fields one at a time, merging the results.
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002735 unsigned idx = 0;
Bruno Cardoso Lopes0aadf832011-07-12 22:30:58 +00002736 for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end();
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00002737 i != e; ++i, ++idx) {
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002738 uint64_t Offset = OffsetBase + Layout.getFieldOffset(idx);
2739 bool BitField = i->isBitField();
2740
David Majnemerb439dfe2016-08-15 07:20:40 +00002741 // Ignore padding bit-fields.
2742 if (BitField && i->isUnnamedBitfield())
2743 continue;
2744
Bruno Cardoso Lopes98154a72011-07-13 21:58:55 +00002745 // AMD64-ABI 3.2.3p2: Rule 1. If the size of an object is larger than
2746 // four eightbytes, or it contains unaligned fields, it has class MEMORY.
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002747 //
Bruno Cardoso Lopes98154a72011-07-13 21:58:55 +00002748 // The only case a 256-bit wide vector could be used is when the struct
2749 // contains a single 256-bit element. Since Lo and Hi logic isn't extended
2750 // to work for sizes wider than 128, early check and fallback to memory.
2751 //
David Majnemerb229cb02016-08-15 06:39:18 +00002752 if (Size > 128 && (Size != getContext().getTypeSize(i->getType()) ||
2753 Size > getNativeVectorSizeForAVXABI(AVXLevel))) {
Bruno Cardoso Lopes98154a72011-07-13 21:58:55 +00002754 Lo = Memory;
David Majnemer699dd042015-07-08 05:07:05 +00002755 postMerge(Size, Lo, Hi);
Bruno Cardoso Lopes98154a72011-07-13 21:58:55 +00002756 return;
2757 }
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002758 // Note, skip this test for bit-fields, see below.
Chris Lattner2b037972010-07-29 02:01:43 +00002759 if (!BitField && Offset % getContext().getTypeAlign(i->getType())) {
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002760 Lo = Memory;
David Majnemer699dd042015-07-08 05:07:05 +00002761 postMerge(Size, Lo, Hi);
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002762 return;
2763 }
2764
2765 // Classify this field.
2766 //
2767 // AMD64-ABI 3.2.3p2: Rule 3. If the size of the aggregate
2768 // exceeds a single eightbyte, each is classified
2769 // separately. Each eightbyte gets initialized to class
2770 // NO_CLASS.
2771 Class FieldLo, FieldHi;
2772
2773 // Bit-fields require special handling, they do not force the
2774 // structure to be passed in memory even if unaligned, and
2775 // therefore they can straddle an eightbyte.
2776 if (BitField) {
David Majnemerb439dfe2016-08-15 07:20:40 +00002777 assert(!i->isUnnamedBitfield());
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002778 uint64_t Offset = OffsetBase + Layout.getFieldOffset(idx);
Richard Smithcaf33902011-10-10 18:28:20 +00002779 uint64_t Size = i->getBitWidthValue(getContext());
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002780
2781 uint64_t EB_Lo = Offset / 64;
2782 uint64_t EB_Hi = (Offset + Size - 1) / 64;
Sylvestre Ledru0c4813e2013-10-06 09:54:18 +00002783
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002784 if (EB_Lo) {
2785 assert(EB_Hi == EB_Lo && "Invalid classification, type > 16 bytes.");
2786 FieldLo = NoClass;
2787 FieldHi = Integer;
2788 } else {
2789 FieldLo = Integer;
2790 FieldHi = EB_Hi ? Integer : NoClass;
2791 }
2792 } else
Eli Friedman96fd2642013-06-12 00:13:45 +00002793 classify(i->getType(), Offset, FieldLo, FieldHi, isNamedArg);
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002794 Lo = merge(Lo, FieldLo);
2795 Hi = merge(Hi, FieldHi);
2796 if (Lo == Memory || Hi == Memory)
2797 break;
2798 }
2799
Bruno Cardoso Lopes21a41bb2011-07-11 22:41:29 +00002800 postMerge(Size, Lo, Hi);
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002801 }
2802}
2803
Chris Lattner22a931e2010-06-29 06:01:59 +00002804ABIArgInfo X86_64ABIInfo::getIndirectReturnResult(QualType Ty) const {
Daniel Dunbar53fac692010-04-21 19:49:55 +00002805 // If this is a scalar LLVM value then assume LLVM will pass it in the right
2806 // place naturally.
John McCalla1dee5302010-08-22 10:59:02 +00002807 if (!isAggregateTypeForABI(Ty)) {
Daniel Dunbar53fac692010-04-21 19:49:55 +00002808 // Treat an enum type as its underlying type.
2809 if (const EnumType *EnumTy = Ty->getAs<EnumType>())
2810 Ty = EnumTy->getDecl()->getIntegerType();
2811
2812 return (Ty->isPromotableIntegerType() ?
2813 ABIArgInfo::getExtend() : ABIArgInfo::getDirect());
2814 }
2815
John McCall7f416cc2015-09-08 08:05:57 +00002816 return getNaturalAlignIndirect(Ty);
Daniel Dunbar53fac692010-04-21 19:49:55 +00002817}
2818
Eli Friedmanbfd5add2011-12-02 00:11:43 +00002819bool X86_64ABIInfo::IsIllegalVectorType(QualType Ty) const {
2820 if (const VectorType *VecTy = Ty->getAs<VectorType>()) {
2821 uint64_t Size = getContext().getTypeSize(VecTy);
Ahmed Bougachad39a4152015-06-22 21:30:39 +00002822 unsigned LargestVector = getNativeVectorSizeForAVXABI(AVXLevel);
Eli Friedmanbfd5add2011-12-02 00:11:43 +00002823 if (Size <= 64 || Size > LargestVector)
2824 return true;
2825 }
2826
2827 return false;
2828}
2829
Daniel Dunbarf07b5ec2012-03-10 01:03:58 +00002830ABIArgInfo X86_64ABIInfo::getIndirectResult(QualType Ty,
2831 unsigned freeIntRegs) const {
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002832 // If this is a scalar LLVM value then assume LLVM will pass it in the right
2833 // place naturally.
Daniel Dunbarf07b5ec2012-03-10 01:03:58 +00002834 //
2835 // This assumption is optimistic, as there could be free registers available
2836 // when we need to pass this argument in memory, and LLVM could try to pass
2837 // the argument in the free register. This does not seem to happen currently,
2838 // but this code would be much safer if we could mark the argument with
2839 // 'onstack'. See PR12193.
Eli Friedmanbfd5add2011-12-02 00:11:43 +00002840 if (!isAggregateTypeForABI(Ty) && !IsIllegalVectorType(Ty)) {
Douglas Gregora71cc152010-02-02 20:10:50 +00002841 // Treat an enum type as its underlying type.
2842 if (const EnumType *EnumTy = Ty->getAs<EnumType>())
2843 Ty = EnumTy->getDecl()->getIntegerType();
2844
Anton Korobeynikov18adbf52009-06-06 09:36:29 +00002845 return (Ty->isPromotableIntegerType() ?
2846 ABIArgInfo::getExtend() : ABIArgInfo::getDirect());
Douglas Gregora71cc152010-02-02 20:10:50 +00002847 }
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002848
Mark Lacey3825e832013-10-06 01:33:34 +00002849 if (CGCXXABI::RecordArgABI RAA = getRecordArgABI(Ty, getCXXABI()))
John McCall7f416cc2015-09-08 08:05:57 +00002850 return getNaturalAlignIndirect(Ty, RAA == CGCXXABI::RAA_DirectInMemory);
Anders Carlsson20759ad2009-09-16 15:53:40 +00002851
Chris Lattner44c2b902011-05-22 23:21:23 +00002852 // Compute the byval alignment. We specify the alignment of the byval in all
2853 // cases so that the mid-level optimizer knows the alignment of the byval.
2854 unsigned Align = std::max(getContext().getTypeAlign(Ty) / 8, 8U);
Daniel Dunbarf07b5ec2012-03-10 01:03:58 +00002855
2856 // Attempt to avoid passing indirect results using byval when possible. This
2857 // is important for good codegen.
2858 //
2859 // We do this by coercing the value into a scalar type which the backend can
2860 // handle naturally (i.e., without using byval).
2861 //
2862 // For simplicity, we currently only do this when we have exhausted all of the
2863 // free integer registers. Doing this when there are free integer registers
2864 // would require more care, as we would have to ensure that the coerced value
2865 // did not claim the unused register. That would require either reording the
2866 // arguments to the function (so that any subsequent inreg values came first),
2867 // or only doing this optimization when there were no following arguments that
2868 // might be inreg.
2869 //
2870 // We currently expect it to be rare (particularly in well written code) for
2871 // arguments to be passed on the stack when there are still free integer
2872 // registers available (this would typically imply large structs being passed
2873 // by value), so this seems like a fair tradeoff for now.
2874 //
2875 // We can revisit this if the backend grows support for 'onstack' parameter
2876 // attributes. See PR12193.
2877 if (freeIntRegs == 0) {
2878 uint64_t Size = getContext().getTypeSize(Ty);
2879
2880 // If this type fits in an eightbyte, coerce it into the matching integral
2881 // type, which will end up on the stack (with alignment 8).
2882 if (Align == 8 && Size <= 64)
2883 return ABIArgInfo::getDirect(llvm::IntegerType::get(getVMContext(),
2884 Size));
2885 }
2886
John McCall7f416cc2015-09-08 08:05:57 +00002887 return ABIArgInfo::getIndirect(CharUnits::fromQuantity(Align));
Anton Korobeynikov244360d2009-06-05 22:08:42 +00002888}
2889
Sanjay Pateleb2af4e2015-02-16 17:26:51 +00002890/// The ABI specifies that a value should be passed in a full vector XMM/YMM
2891/// register. Pick an LLVM IR type that will be passed as a vector register.
Bruno Cardoso Lopes21a41bb2011-07-11 22:41:29 +00002892llvm::Type *X86_64ABIInfo::GetByteVectorType(QualType Ty) const {
Sanjay Pateleb2af4e2015-02-16 17:26:51 +00002893 // Wrapper structs/arrays that only contain vectors are passed just like
2894 // vectors; strip them off if present.
2895 if (const Type *InnerTy = isSingleElementStruct(Ty, getContext()))
2896 Ty = QualType(InnerTy, 0);
Michael J. Spencerb2f376b2010-08-25 18:17:27 +00002897
Sanjay Pateleb2af4e2015-02-16 17:26:51 +00002898 llvm::Type *IRType = CGT.ConvertType(Ty);
Chih-Hung Hsieh241a8902015-08-10 17:33:31 +00002899 if (isa<llvm::VectorType>(IRType) ||
2900 IRType->getTypeID() == llvm::Type::FP128TyID)
Andrea Di Biagioe7347c62015-06-02 19:34:40 +00002901 return IRType;
2902
2903 // We couldn't find the preferred IR vector type for 'Ty'.
2904 uint64_t Size = getContext().getTypeSize(Ty);
David Majnemerb229cb02016-08-15 06:39:18 +00002905 assert((Size == 128 || Size == 256 || Size == 512) && "Invalid type found!");
Andrea Di Biagioe7347c62015-06-02 19:34:40 +00002906
2907 // Return a LLVM IR vector type based on the size of 'Ty'.
2908 return llvm::VectorType::get(llvm::Type::getDoubleTy(getVMContext()),
2909 Size / 64);
Chris Lattner4200fe42010-07-29 04:56:46 +00002910}
2911
Chris Lattnerc8b7b532010-07-29 07:30:00 +00002912/// BitsContainNoUserData - Return true if the specified [start,end) bit range
2913/// is known to either be off the end of the specified type or being in
2914/// alignment padding. The user type specified is known to be at most 128 bits
2915/// in size, and have passed through X86_64ABIInfo::classify with a successful
2916/// classification that put one of the two halves in the INTEGER class.
2917///
2918/// It is conservatively correct to return false.
2919static bool BitsContainNoUserData(QualType Ty, unsigned StartBit,
2920 unsigned EndBit, ASTContext &Context) {
2921 // If the bytes being queried are off the end of the type, there is no user
2922 // data hiding here. This handles analysis of builtins, vectors and other
2923 // types that don't contain interesting padding.
2924 unsigned TySize = (unsigned)Context.getTypeSize(Ty);
2925 if (TySize <= StartBit)
2926 return true;
2927
Chris Lattner98076a22010-07-29 07:43:55 +00002928 if (const ConstantArrayType *AT = Context.getAsConstantArrayType(Ty)) {
2929 unsigned EltSize = (unsigned)Context.getTypeSize(AT->getElementType());
2930 unsigned NumElts = (unsigned)AT->getSize().getZExtValue();
2931
2932 // Check each element to see if the element overlaps with the queried range.
2933 for (unsigned i = 0; i != NumElts; ++i) {
2934 // If the element is after the span we care about, then we're done..
2935 unsigned EltOffset = i*EltSize;
2936 if (EltOffset >= EndBit) break;
Michael J. Spencerb2f376b2010-08-25 18:17:27 +00002937
Chris Lattner98076a22010-07-29 07:43:55 +00002938 unsigned EltStart = EltOffset < StartBit ? StartBit-EltOffset :0;
2939 if (!BitsContainNoUserData(AT->getElementType(), EltStart,
2940 EndBit-EltOffset, Context))
2941 return false;
2942 }
2943 // If it overlaps no elements, then it is safe to process as padding.
2944 return true;
2945 }
Michael J. Spencerb2f376b2010-08-25 18:17:27 +00002946
Chris Lattnerc8b7b532010-07-29 07:30:00 +00002947 if (const RecordType *RT = Ty->getAs<RecordType>()) {
2948 const RecordDecl *RD = RT->getDecl();
2949 const ASTRecordLayout &Layout = Context.getASTRecordLayout(RD);
Michael J. Spencerb2f376b2010-08-25 18:17:27 +00002950
Chris Lattnerc8b7b532010-07-29 07:30:00 +00002951 // If this is a C++ record, check the bases first.
2952 if (const CXXRecordDecl *CXXRD = dyn_cast<CXXRecordDecl>(RD)) {
Aaron Ballman574705e2014-03-13 15:41:46 +00002953 for (const auto &I : CXXRD->bases()) {
2954 assert(!I.isVirtual() && !I.getType()->isDependentType() &&
Chris Lattnerc8b7b532010-07-29 07:30:00 +00002955 "Unexpected base class!");
2956 const CXXRecordDecl *Base =
Aaron Ballman574705e2014-03-13 15:41:46 +00002957 cast<CXXRecordDecl>(I.getType()->getAs<RecordType>()->getDecl());
Michael J. Spencerb2f376b2010-08-25 18:17:27 +00002958
Chris Lattnerc8b7b532010-07-29 07:30:00 +00002959 // If the base is after the span we care about, ignore it.
Benjamin Kramer2ef30312012-07-04 18:45:14 +00002960 unsigned BaseOffset = Context.toBits(Layout.getBaseClassOffset(Base));
Chris Lattnerc8b7b532010-07-29 07:30:00 +00002961 if (BaseOffset >= EndBit) continue;
Michael J. Spencerb2f376b2010-08-25 18:17:27 +00002962
Chris Lattnerc8b7b532010-07-29 07:30:00 +00002963 unsigned BaseStart = BaseOffset < StartBit ? StartBit-BaseOffset :0;
Aaron Ballman574705e2014-03-13 15:41:46 +00002964 if (!BitsContainNoUserData(I.getType(), BaseStart,
Chris Lattnerc8b7b532010-07-29 07:30:00 +00002965 EndBit-BaseOffset, Context))
2966 return false;
2967 }
2968 }
Michael J. Spencerb2f376b2010-08-25 18:17:27 +00002969
Chris Lattnerc8b7b532010-07-29 07:30:00 +00002970 // Verify that no field has data that overlaps the region of interest. Yes
2971 // this could be sped up a lot by being smarter about queried fields,
2972 // however we're only looking at structs up to 16 bytes, so we don't care
2973 // much.
2974 unsigned idx = 0;
2975 for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end();
2976 i != e; ++i, ++idx) {
2977 unsigned FieldOffset = (unsigned)Layout.getFieldOffset(idx);
Michael J. Spencerb2f376b2010-08-25 18:17:27 +00002978
Chris Lattnerc8b7b532010-07-29 07:30:00 +00002979 // If we found a field after the region we care about, then we're done.
2980 if (FieldOffset >= EndBit) break;
2981
2982 unsigned FieldStart = FieldOffset < StartBit ? StartBit-FieldOffset :0;
2983 if (!BitsContainNoUserData(i->getType(), FieldStart, EndBit-FieldOffset,
2984 Context))
2985 return false;
2986 }
Michael J. Spencerb2f376b2010-08-25 18:17:27 +00002987
Chris Lattnerc8b7b532010-07-29 07:30:00 +00002988 // If nothing in this record overlapped the area of interest, then we're
2989 // clean.
2990 return true;
2991 }
Michael J. Spencerb2f376b2010-08-25 18:17:27 +00002992
Chris Lattnerc8b7b532010-07-29 07:30:00 +00002993 return false;
2994}
2995
Chris Lattnere556a712010-07-29 18:39:32 +00002996/// ContainsFloatAtOffset - Return true if the specified LLVM IR type has a
2997/// float member at the specified offset. For example, {int,{float}} has a
2998/// float at offset 4. It is conservatively correct for this routine to return
2999/// false.
Chris Lattner2192fe52011-07-18 04:24:23 +00003000static bool ContainsFloatAtOffset(llvm::Type *IRType, unsigned IROffset,
Micah Villmowdd31ca12012-10-08 16:25:52 +00003001 const llvm::DataLayout &TD) {
Chris Lattnere556a712010-07-29 18:39:32 +00003002 // Base case if we find a float.
3003 if (IROffset == 0 && IRType->isFloatTy())
3004 return true;
Michael J. Spencerb2f376b2010-08-25 18:17:27 +00003005
Chris Lattnere556a712010-07-29 18:39:32 +00003006 // If this is a struct, recurse into the field at the specified offset.
Chris Lattner2192fe52011-07-18 04:24:23 +00003007 if (llvm::StructType *STy = dyn_cast<llvm::StructType>(IRType)) {
Chris Lattnere556a712010-07-29 18:39:32 +00003008 const llvm::StructLayout *SL = TD.getStructLayout(STy);
3009 unsigned Elt = SL->getElementContainingOffset(IROffset);
3010 IROffset -= SL->getElementOffset(Elt);
3011 return ContainsFloatAtOffset(STy->getElementType(Elt), IROffset, TD);
3012 }
Michael J. Spencerb2f376b2010-08-25 18:17:27 +00003013
Chris Lattnere556a712010-07-29 18:39:32 +00003014 // If this is an array, recurse into the field at the specified offset.
Chris Lattner2192fe52011-07-18 04:24:23 +00003015 if (llvm::ArrayType *ATy = dyn_cast<llvm::ArrayType>(IRType)) {
3016 llvm::Type *EltTy = ATy->getElementType();
Chris Lattnere556a712010-07-29 18:39:32 +00003017 unsigned EltSize = TD.getTypeAllocSize(EltTy);
3018 IROffset -= IROffset/EltSize*EltSize;
3019 return ContainsFloatAtOffset(EltTy, IROffset, TD);
3020 }
3021
3022 return false;
3023}
3024
Chris Lattner7f4b81a2010-07-29 18:13:09 +00003025
3026/// GetSSETypeAtOffset - Return a type that will be passed by the backend in the
3027/// low 8 bytes of an XMM register, corresponding to the SSE class.
Chris Lattnera5f58b02011-07-09 17:41:47 +00003028llvm::Type *X86_64ABIInfo::
3029GetSSETypeAtOffset(llvm::Type *IRType, unsigned IROffset,
Chris Lattner7f4b81a2010-07-29 18:13:09 +00003030 QualType SourceTy, unsigned SourceOffset) const {
Chris Lattner50a357e2010-07-29 18:19:50 +00003031 // The only three choices we have are either double, <2 x float>, or float. We
Chris Lattner7f4b81a2010-07-29 18:13:09 +00003032 // pass as float if the last 4 bytes is just padding. This happens for
3033 // structs that contain 3 floats.
3034 if (BitsContainNoUserData(SourceTy, SourceOffset*8+32,
3035 SourceOffset*8+64, getContext()))
3036 return llvm::Type::getFloatTy(getVMContext());
Michael J. Spencerb2f376b2010-08-25 18:17:27 +00003037
Chris Lattnere556a712010-07-29 18:39:32 +00003038 // We want to pass as <2 x float> if the LLVM IR type contains a float at
3039 // offset+0 and offset+4. Walk the LLVM IR type to find out if this is the
3040 // case.
Micah Villmowdd31ca12012-10-08 16:25:52 +00003041 if (ContainsFloatAtOffset(IRType, IROffset, getDataLayout()) &&
3042 ContainsFloatAtOffset(IRType, IROffset+4, getDataLayout()))
Chris Lattner9f8b4512010-08-25 23:39:14 +00003043 return llvm::VectorType::get(llvm::Type::getFloatTy(getVMContext()), 2);
Michael J. Spencerb2f376b2010-08-25 18:17:27 +00003044
Chris Lattner7f4b81a2010-07-29 18:13:09 +00003045 return llvm::Type::getDoubleTy(getVMContext());
3046}
3047
3048
Chris Lattner1c56d9a2010-07-29 17:40:35 +00003049/// GetINTEGERTypeAtOffset - The ABI specifies that a value should be passed in
3050/// an 8-byte GPR. This means that we either have a scalar or we are talking
3051/// about the high or low part of an up-to-16-byte struct. This routine picks
3052/// the best LLVM IR type to represent this, which may be i64 or may be anything
Chris Lattnerb22f1c82010-07-28 22:44:07 +00003053/// else that the backend will pass in a GPR that works better (e.g. i8, %foo*,
3054/// etc).
3055///
3056/// PrefType is an LLVM IR type that corresponds to (part of) the IR type for
3057/// the source type. IROffset is an offset in bytes into the LLVM IR type that
3058/// the 8-byte value references. PrefType may be null.
3059///
Alp Toker9907f082014-07-09 14:06:35 +00003060/// SourceTy is the source-level type for the entire argument. SourceOffset is
Chris Lattnerb22f1c82010-07-28 22:44:07 +00003061/// an offset into this that we're processing (which is always either 0 or 8).
3062///
Chris Lattnera5f58b02011-07-09 17:41:47 +00003063llvm::Type *X86_64ABIInfo::
3064GetINTEGERTypeAtOffset(llvm::Type *IRType, unsigned IROffset,
Chris Lattner1c56d9a2010-07-29 17:40:35 +00003065 QualType SourceTy, unsigned SourceOffset) const {
Chris Lattnerc8b7b532010-07-29 07:30:00 +00003066 // If we're dealing with an un-offset LLVM IR type, then it means that we're
3067 // returning an 8-byte unit starting with it. See if we can safely use it.
3068 if (IROffset == 0) {
3069 // Pointers and int64's always fill the 8-byte unit.
Derek Schuffc7dd7222012-10-11 15:52:22 +00003070 if ((isa<llvm::PointerType>(IRType) && Has64BitPointers) ||
3071 IRType->isIntegerTy(64))
Chris Lattnerc8b7b532010-07-29 07:30:00 +00003072 return IRType;
Chris Lattnerb22f1c82010-07-28 22:44:07 +00003073
Chris Lattnerc8b7b532010-07-29 07:30:00 +00003074 // If we have a 1/2/4-byte integer, we can use it only if the rest of the
3075 // goodness in the source type is just tail padding. This is allowed to
3076 // kick in for struct {double,int} on the int, but not on
3077 // struct{double,int,int} because we wouldn't return the second int. We
3078 // have to do this analysis on the source type because we can't depend on
3079 // unions being lowered a specific way etc.
3080 if (IRType->isIntegerTy(8) || IRType->isIntegerTy(16) ||
Derek Schuffc7dd7222012-10-11 15:52:22 +00003081 IRType->isIntegerTy(32) ||
3082 (isa<llvm::PointerType>(IRType) && !Has64BitPointers)) {
3083 unsigned BitWidth = isa<llvm::PointerType>(IRType) ? 32 :
3084 cast<llvm::IntegerType>(IRType)->getBitWidth();
Michael J. Spencerb2f376b2010-08-25 18:17:27 +00003085
Chris Lattnerc8b7b532010-07-29 07:30:00 +00003086 if (BitsContainNoUserData(SourceTy, SourceOffset*8+BitWidth,
3087 SourceOffset*8+64, getContext()))
3088 return IRType;
3089 }
3090 }
Chris Lattnerb22f1c82010-07-28 22:44:07 +00003091
Chris Lattner2192fe52011-07-18 04:24:23 +00003092 if (llvm::StructType *STy = dyn_cast<llvm::StructType>(IRType)) {
Chris Lattnerb22f1c82010-07-28 22:44:07 +00003093 // If this is a struct, recurse into the field at the specified offset.
Micah Villmowdd31ca12012-10-08 16:25:52 +00003094 const llvm::StructLayout *SL = getDataLayout().getStructLayout(STy);
Chris Lattnerb22f1c82010-07-28 22:44:07 +00003095 if (IROffset < SL->getSizeInBytes()) {
3096 unsigned FieldIdx = SL->getElementContainingOffset(IROffset);
3097 IROffset -= SL->getElementOffset(FieldIdx);
Michael J. Spencerb2f376b2010-08-25 18:17:27 +00003098
Chris Lattner1c56d9a2010-07-29 17:40:35 +00003099 return GetINTEGERTypeAtOffset(STy->getElementType(FieldIdx), IROffset,
3100 SourceTy, SourceOffset);
Michael J. Spencerb2f376b2010-08-25 18:17:27 +00003101 }
Chris Lattnerb22f1c82010-07-28 22:44:07 +00003102 }
Michael J. Spencerb2f376b2010-08-25 18:17:27 +00003103
Chris Lattner2192fe52011-07-18 04:24:23 +00003104 if (llvm::ArrayType *ATy = dyn_cast<llvm::ArrayType>(IRType)) {
Chris Lattnera5f58b02011-07-09 17:41:47 +00003105 llvm::Type *EltTy = ATy->getElementType();
Micah Villmowdd31ca12012-10-08 16:25:52 +00003106 unsigned EltSize = getDataLayout().getTypeAllocSize(EltTy);
Chris Lattner98076a22010-07-29 07:43:55 +00003107 unsigned EltOffset = IROffset/EltSize*EltSize;
Chris Lattner1c56d9a2010-07-29 17:40:35 +00003108 return GetINTEGERTypeAtOffset(EltTy, IROffset-EltOffset, SourceTy,
3109 SourceOffset);
Chris Lattner98076a22010-07-29 07:43:55 +00003110 }
Michael J. Spencerb2f376b2010-08-25 18:17:27 +00003111
Chris Lattnerb22f1c82010-07-28 22:44:07 +00003112 // Okay, we don't have any better idea of what to pass, so we pass this in an
3113 // integer register that isn't too big to fit the rest of the struct.
Chris Lattner3f763422010-07-29 17:34:39 +00003114 unsigned TySizeInBytes =
3115 (unsigned)getContext().getTypeSizeInChars(SourceTy).getQuantity();
Chris Lattnerb22f1c82010-07-28 22:44:07 +00003116
Chris Lattner3f763422010-07-29 17:34:39 +00003117 assert(TySizeInBytes != SourceOffset && "Empty field?");
Michael J. Spencerb2f376b2010-08-25 18:17:27 +00003118
Chris Lattnerb22f1c82010-07-28 22:44:07 +00003119 // It is always safe to classify this as an integer type up to i64 that
3120 // isn't larger than the structure.
Chris Lattner3f763422010-07-29 17:34:39 +00003121 return llvm::IntegerType::get(getVMContext(),
3122 std::min(TySizeInBytes-SourceOffset, 8U)*8);
Chris Lattner22a931e2010-06-29 06:01:59 +00003123}
3124
Chris Lattnerd426c8e2010-09-01 00:50:20 +00003125
3126/// GetX86_64ByValArgumentPair - Given a high and low type that can ideally
3127/// be used as elements of a two register pair to pass or return, return a
3128/// first class aggregate to represent them. For example, if the low part of
3129/// a by-value argument should be passed as i32* and the high part as float,
3130/// return {i32*, float}.
Chris Lattnera5f58b02011-07-09 17:41:47 +00003131static llvm::Type *
Jay Foad7c57be32011-07-11 09:56:20 +00003132GetX86_64ByValArgumentPair(llvm::Type *Lo, llvm::Type *Hi,
Micah Villmowdd31ca12012-10-08 16:25:52 +00003133 const llvm::DataLayout &TD) {
Chris Lattnerd426c8e2010-09-01 00:50:20 +00003134 // In order to correctly satisfy the ABI, we need to the high part to start
3135 // at offset 8. If the high and low parts we inferred are both 4-byte types
3136 // (e.g. i32 and i32) then the resultant struct type ({i32,i32}) won't have
3137 // the second element at offset 8. Check for this:
3138 unsigned LoSize = (unsigned)TD.getTypeAllocSize(Lo);
3139 unsigned HiAlign = TD.getABITypeAlignment(Hi);
Rui Ueyama83aa9792016-01-14 21:00:27 +00003140 unsigned HiStart = llvm::alignTo(LoSize, HiAlign);
Chris Lattnerd426c8e2010-09-01 00:50:20 +00003141 assert(HiStart != 0 && HiStart <= 8 && "Invalid x86-64 argument pair!");
Michael J. Spencerf5a1fbc2010-10-19 06:39:39 +00003142
Chris Lattnerd426c8e2010-09-01 00:50:20 +00003143 // To handle this, we have to increase the size of the low part so that the
3144 // second element will start at an 8 byte offset. We can't increase the size
3145 // of the second element because it might make us access off the end of the
3146 // struct.
3147 if (HiStart != 8) {
Derek Schuff5ec51282015-06-24 22:36:38 +00003148 // There are usually two sorts of types the ABI generation code can produce
3149 // for the low part of a pair that aren't 8 bytes in size: float or
3150 // i8/i16/i32. This can also include pointers when they are 32-bit (X32 and
3151 // NaCl).
Chris Lattnerd426c8e2010-09-01 00:50:20 +00003152 // Promote these to a larger type.
3153 if (Lo->isFloatTy())
3154 Lo = llvm::Type::getDoubleTy(Lo->getContext());
3155 else {
Derek Schuff3c6a48d2015-06-24 22:36:36 +00003156 assert((Lo->isIntegerTy() || Lo->isPointerTy())
3157 && "Invalid/unknown lo type");
Chris Lattnerd426c8e2010-09-01 00:50:20 +00003158 Lo = llvm::Type::getInt64Ty(Lo->getContext());
3159 }
3160 }
Michael J. Spencerf5a1fbc2010-10-19 06:39:39 +00003161
Serge Guelton1d993272017-05-09 19:31:30 +00003162 llvm::StructType *Result = llvm::StructType::get(Lo, Hi);
Michael J. Spencerf5a1fbc2010-10-19 06:39:39 +00003163
Chris Lattnerd426c8e2010-09-01 00:50:20 +00003164 // Verify that the second element is at an 8-byte offset.
3165 assert(TD.getStructLayout(Result)->getElementOffset(1) == 8 &&
3166 "Invalid x86-64 argument pair!");
3167 return Result;
3168}
3169
Chris Lattner31faff52010-07-28 23:06:14 +00003170ABIArgInfo X86_64ABIInfo::
Chris Lattner458b2aa2010-07-29 02:16:43 +00003171classifyReturnType(QualType RetTy) const {
Chris Lattner31faff52010-07-28 23:06:14 +00003172 // AMD64-ABI 3.2.3p4: Rule 1. Classify the return type with the
3173 // classification algorithm.
3174 X86_64ABIInfo::Class Lo, Hi;
Eli Friedman96fd2642013-06-12 00:13:45 +00003175 classify(RetTy, 0, Lo, Hi, /*isNamedArg*/ true);
Chris Lattner31faff52010-07-28 23:06:14 +00003176
3177 // Check some invariants.
3178 assert((Hi != Memory || Lo == Memory) && "Invalid memory classification.");
Chris Lattner31faff52010-07-28 23:06:14 +00003179 assert((Hi != SSEUp || Lo == SSE) && "Invalid SSEUp classification.");
3180
Craig Topper8a13c412014-05-21 05:09:00 +00003181 llvm::Type *ResType = nullptr;
Chris Lattner31faff52010-07-28 23:06:14 +00003182 switch (Lo) {
3183 case NoClass:
Chris Lattner8a2f3c72010-07-30 04:02:24 +00003184 if (Hi == NoClass)
3185 return ABIArgInfo::getIgnore();
3186 // If the low part is just padding, it takes no register, leave ResType
3187 // null.
3188 assert((Hi == SSE || Hi == Integer || Hi == X87Up) &&
3189 "Unknown missing lo part");
3190 break;
Chris Lattner31faff52010-07-28 23:06:14 +00003191
3192 case SSEUp:
3193 case X87Up:
David Blaikie83d382b2011-09-23 05:06:16 +00003194 llvm_unreachable("Invalid classification for lo word.");
Chris Lattner31faff52010-07-28 23:06:14 +00003195
3196 // AMD64-ABI 3.2.3p4: Rule 2. Types of class memory are returned via
3197 // hidden argument.
3198 case Memory:
3199 return getIndirectReturnResult(RetTy);
3200
3201 // AMD64-ABI 3.2.3p4: Rule 3. If the class is INTEGER, the next
3202 // available register of the sequence %rax, %rdx is used.
3203 case Integer:
Chris Lattnera5f58b02011-07-09 17:41:47 +00003204 ResType = GetINTEGERTypeAtOffset(CGT.ConvertType(RetTy), 0, RetTy, 0);
Michael J. Spencerb2f376b2010-08-25 18:17:27 +00003205
Chris Lattner1f3a0632010-07-29 21:42:50 +00003206 // If we have a sign or zero extended integer, make sure to return Extend
3207 // so that the parameter gets the right LLVM IR attributes.
3208 if (Hi == NoClass && isa<llvm::IntegerType>(ResType)) {
3209 // Treat an enum type as its underlying type.
3210 if (const EnumType *EnumTy = RetTy->getAs<EnumType>())
3211 RetTy = EnumTy->getDecl()->getIntegerType();
Michael J. Spencerb2f376b2010-08-25 18:17:27 +00003212
Chris Lattner1f3a0632010-07-29 21:42:50 +00003213 if (RetTy->isIntegralOrEnumerationType() &&
3214 RetTy->isPromotableIntegerType())
3215 return ABIArgInfo::getExtend();
3216 }
Chris Lattner31faff52010-07-28 23:06:14 +00003217 break;
3218
3219 // AMD64-ABI 3.2.3p4: Rule 4. If the class is SSE, the next
3220 // available SSE register of the sequence %xmm0, %xmm1 is used.
3221 case SSE:
Chris Lattnera5f58b02011-07-09 17:41:47 +00003222 ResType = GetSSETypeAtOffset(CGT.ConvertType(RetTy), 0, RetTy, 0);
Chris Lattnerfa560fe2010-07-28 23:12:33 +00003223 break;
Chris Lattner31faff52010-07-28 23:06:14 +00003224
3225 // AMD64-ABI 3.2.3p4: Rule 6. If the class is X87, the value is
3226 // returned on the X87 stack in %st0 as 80-bit x87 number.
3227 case X87:
Chris Lattner2b037972010-07-29 02:01:43 +00003228 ResType = llvm::Type::getX86_FP80Ty(getVMContext());
Chris Lattnerfa560fe2010-07-28 23:12:33 +00003229 break;
Chris Lattner31faff52010-07-28 23:06:14 +00003230
3231 // AMD64-ABI 3.2.3p4: Rule 8. If the class is COMPLEX_X87, the real
3232 // part of the value is returned in %st0 and the imaginary part in
3233 // %st1.
3234 case ComplexX87:
3235 assert(Hi == ComplexX87 && "Unexpected ComplexX87 classification.");
Chris Lattner845511f2011-06-18 22:49:11 +00003236 ResType = llvm::StructType::get(llvm::Type::getX86_FP80Ty(getVMContext()),
Serge Guelton1d993272017-05-09 19:31:30 +00003237 llvm::Type::getX86_FP80Ty(getVMContext()));
Chris Lattner31faff52010-07-28 23:06:14 +00003238 break;
3239 }
3240
Craig Topper8a13c412014-05-21 05:09:00 +00003241 llvm::Type *HighPart = nullptr;
Chris Lattner31faff52010-07-28 23:06:14 +00003242 switch (Hi) {
3243 // Memory was handled previously and X87 should
3244 // never occur as a hi class.
3245 case Memory:
3246 case X87:
David Blaikie83d382b2011-09-23 05:06:16 +00003247 llvm_unreachable("Invalid classification for hi word.");
Chris Lattner31faff52010-07-28 23:06:14 +00003248
3249 case ComplexX87: // Previously handled.
Chris Lattnerfa560fe2010-07-28 23:12:33 +00003250 case NoClass:
3251 break;
Chris Lattner31faff52010-07-28 23:06:14 +00003252
Chris Lattner52b3c132010-09-01 00:20:33 +00003253 case Integer:
Chris Lattnera5f58b02011-07-09 17:41:47 +00003254 HighPart = GetINTEGERTypeAtOffset(CGT.ConvertType(RetTy), 8, RetTy, 8);
Chris Lattner52b3c132010-09-01 00:20:33 +00003255 if (Lo == NoClass) // Return HighPart at offset 8 in memory.
3256 return ABIArgInfo::getDirect(HighPart, 8);
Chris Lattner31faff52010-07-28 23:06:14 +00003257 break;
Chris Lattner52b3c132010-09-01 00:20:33 +00003258 case SSE:
Chris Lattnera5f58b02011-07-09 17:41:47 +00003259 HighPart = GetSSETypeAtOffset(CGT.ConvertType(RetTy), 8, RetTy, 8);
Chris Lattner52b3c132010-09-01 00:20:33 +00003260 if (Lo == NoClass) // Return HighPart at offset 8 in memory.
3261 return ABIArgInfo::getDirect(HighPart, 8);
Chris Lattner31faff52010-07-28 23:06:14 +00003262 break;
3263
3264 // AMD64-ABI 3.2.3p4: Rule 5. If the class is SSEUP, the eightbyte
Bruno Cardoso Lopes21a41bb2011-07-11 22:41:29 +00003265 // is passed in the next available eightbyte chunk if the last used
3266 // vector register.
Chris Lattner31faff52010-07-28 23:06:14 +00003267 //
Chris Lattner57540c52011-04-15 05:22:18 +00003268 // SSEUP should always be preceded by SSE, just widen.
Chris Lattner31faff52010-07-28 23:06:14 +00003269 case SSEUp:
3270 assert(Lo == SSE && "Unexpected SSEUp classification.");
Bruno Cardoso Lopes21a41bb2011-07-11 22:41:29 +00003271 ResType = GetByteVectorType(RetTy);
Chris Lattner31faff52010-07-28 23:06:14 +00003272 break;
3273
3274 // AMD64-ABI 3.2.3p4: Rule 7. If the class is X87UP, the value is
3275 // returned together with the previous X87 value in %st0.
3276 case X87Up:
Chris Lattner57540c52011-04-15 05:22:18 +00003277 // If X87Up is preceded by X87, we don't need to do
Chris Lattner31faff52010-07-28 23:06:14 +00003278 // anything. However, in some cases with unions it may not be
Chris Lattner57540c52011-04-15 05:22:18 +00003279 // preceded by X87. In such situations we follow gcc and pass the
Chris Lattner31faff52010-07-28 23:06:14 +00003280 // extra bits in an SSE reg.
Chris Lattnerc95a3982010-07-29 17:49:08 +00003281 if (Lo != X87) {
Chris Lattnera5f58b02011-07-09 17:41:47 +00003282 HighPart = GetSSETypeAtOffset(CGT.ConvertType(RetTy), 8, RetTy, 8);
Chris Lattner52b3c132010-09-01 00:20:33 +00003283 if (Lo == NoClass) // Return HighPart at offset 8 in memory.
3284 return ABIArgInfo::getDirect(HighPart, 8);
Chris Lattnerc95a3982010-07-29 17:49:08 +00003285 }
Chris Lattner31faff52010-07-28 23:06:14 +00003286 break;
3287 }
Michael J. Spencerf5a1fbc2010-10-19 06:39:39 +00003288
Chris Lattner52b3c132010-09-01 00:20:33 +00003289 // If a high part was specified, merge it together with the low part. It is
Chris Lattnerbe5eb172010-09-01 00:24:35 +00003290 // known to pass in the high eightbyte of the result. We do this by forming a
3291 // first class struct aggregate with the high and low part: {low, high}
Chris Lattnerd426c8e2010-09-01 00:50:20 +00003292 if (HighPart)
Micah Villmowdd31ca12012-10-08 16:25:52 +00003293 ResType = GetX86_64ByValArgumentPair(ResType, HighPart, getDataLayout());
Chris Lattner31faff52010-07-28 23:06:14 +00003294
Chris Lattner1f3a0632010-07-29 21:42:50 +00003295 return ABIArgInfo::getDirect(ResType);
Chris Lattner31faff52010-07-28 23:06:14 +00003296}
3297
Daniel Dunbarf07b5ec2012-03-10 01:03:58 +00003298ABIArgInfo X86_64ABIInfo::classifyArgumentType(
Eli Friedman96fd2642013-06-12 00:13:45 +00003299 QualType Ty, unsigned freeIntRegs, unsigned &neededInt, unsigned &neededSSE,
3300 bool isNamedArg)
Daniel Dunbarf07b5ec2012-03-10 01:03:58 +00003301 const
3302{
Reid Klecknerb1be6832014-11-15 01:41:41 +00003303 Ty = useFirstFieldIfTransparentUnion(Ty);
3304
Anton Korobeynikov244360d2009-06-05 22:08:42 +00003305 X86_64ABIInfo::Class Lo, Hi;
Eli Friedman96fd2642013-06-12 00:13:45 +00003306 classify(Ty, 0, Lo, Hi, isNamedArg);
Michael J. Spencerb2f376b2010-08-25 18:17:27 +00003307
Anton Korobeynikov244360d2009-06-05 22:08:42 +00003308 // Check some invariants.
3309 // FIXME: Enforce these by construction.
3310 assert((Hi != Memory || Lo == Memory) && "Invalid memory classification.");
Anton Korobeynikov244360d2009-06-05 22:08:42 +00003311 assert((Hi != SSEUp || Lo == SSE) && "Invalid SSEUp classification.");
3312
3313 neededInt = 0;
3314 neededSSE = 0;
Craig Topper8a13c412014-05-21 05:09:00 +00003315 llvm::Type *ResType = nullptr;
Anton Korobeynikov244360d2009-06-05 22:08:42 +00003316 switch (Lo) {
3317 case NoClass:
Chris Lattner8a2f3c72010-07-30 04:02:24 +00003318 if (Hi == NoClass)
3319 return ABIArgInfo::getIgnore();
3320 // If the low part is just padding, it takes no register, leave ResType
3321 // null.
3322 assert((Hi == SSE || Hi == Integer || Hi == X87Up) &&
3323 "Unknown missing lo part");
3324 break;
Michael J. Spencerb2f376b2010-08-25 18:17:27 +00003325
Anton Korobeynikov244360d2009-06-05 22:08:42 +00003326 // AMD64-ABI 3.2.3p3: Rule 1. If the class is MEMORY, pass the argument
3327 // on the stack.
3328 case Memory:
3329
3330 // AMD64-ABI 3.2.3p3: Rule 5. If the class is X87, X87UP or
3331 // COMPLEX_X87, it is passed in memory.
3332 case X87:
3333 case ComplexX87:
Mark Lacey3825e832013-10-06 01:33:34 +00003334 if (getRecordArgABI(Ty, getCXXABI()) == CGCXXABI::RAA_Indirect)
Eli Friedman4774b7e2011-06-29 07:04:55 +00003335 ++neededInt;
Daniel Dunbarf07b5ec2012-03-10 01:03:58 +00003336 return getIndirectResult(Ty, freeIntRegs);
Anton Korobeynikov244360d2009-06-05 22:08:42 +00003337
3338 case SSEUp:
3339 case X87Up:
David Blaikie83d382b2011-09-23 05:06:16 +00003340 llvm_unreachable("Invalid classification for lo word.");
Anton Korobeynikov244360d2009-06-05 22:08:42 +00003341
3342 // AMD64-ABI 3.2.3p3: Rule 2. If the class is INTEGER, the next
3343 // available register of the sequence %rdi, %rsi, %rdx, %rcx, %r8
3344 // and %r9 is used.
3345 case Integer:
Chris Lattner22a931e2010-06-29 06:01:59 +00003346 ++neededInt;
Michael J. Spencerb2f376b2010-08-25 18:17:27 +00003347
Chris Lattnerb22f1c82010-07-28 22:44:07 +00003348 // Pick an 8-byte type based on the preferred type.
Chris Lattnera5f58b02011-07-09 17:41:47 +00003349 ResType = GetINTEGERTypeAtOffset(CGT.ConvertType(Ty), 0, Ty, 0);
Chris Lattner1f3a0632010-07-29 21:42:50 +00003350
3351 // If we have a sign or zero extended integer, make sure to return Extend
3352 // so that the parameter gets the right LLVM IR attributes.
3353 if (Hi == NoClass && isa<llvm::IntegerType>(ResType)) {
3354 // Treat an enum type as its underlying type.
3355 if (const EnumType *EnumTy = Ty->getAs<EnumType>())
3356 Ty = EnumTy->getDecl()->getIntegerType();
Michael J. Spencerb2f376b2010-08-25 18:17:27 +00003357
Chris Lattner1f3a0632010-07-29 21:42:50 +00003358 if (Ty->isIntegralOrEnumerationType() &&
3359 Ty->isPromotableIntegerType())
3360 return ABIArgInfo::getExtend();
3361 }
Michael J. Spencerb2f376b2010-08-25 18:17:27 +00003362
Anton Korobeynikov244360d2009-06-05 22:08:42 +00003363 break;
3364
3365 // AMD64-ABI 3.2.3p3: Rule 3. If the class is SSE, the next
3366 // available SSE register is used, the registers are taken in the
3367 // order from %xmm0 to %xmm7.
Bill Wendling5cd41c42010-10-18 03:41:31 +00003368 case SSE: {
Chris Lattnera5f58b02011-07-09 17:41:47 +00003369 llvm::Type *IRType = CGT.ConvertType(Ty);
Eli Friedman1310c682011-07-02 00:57:27 +00003370 ResType = GetSSETypeAtOffset(IRType, 0, Ty, 0);
Bill Wendling9987c0e2010-10-18 23:51:38 +00003371 ++neededSSE;
Anton Korobeynikov244360d2009-06-05 22:08:42 +00003372 break;
3373 }
Bill Wendling5cd41c42010-10-18 03:41:31 +00003374 }
Anton Korobeynikov244360d2009-06-05 22:08:42 +00003375
Craig Topper8a13c412014-05-21 05:09:00 +00003376 llvm::Type *HighPart = nullptr;
Anton Korobeynikov244360d2009-06-05 22:08:42 +00003377 switch (Hi) {
3378 // Memory was handled previously, ComplexX87 and X87 should
Chris Lattner57540c52011-04-15 05:22:18 +00003379 // never occur as hi classes, and X87Up must be preceded by X87,
Anton Korobeynikov244360d2009-06-05 22:08:42 +00003380 // which is passed in memory.
3381 case Memory:
3382 case X87:
3383 case ComplexX87:
David Blaikie83d382b2011-09-23 05:06:16 +00003384 llvm_unreachable("Invalid classification for hi word.");
Anton Korobeynikov244360d2009-06-05 22:08:42 +00003385
3386 case NoClass: break;
Michael J. Spencerb2f376b2010-08-25 18:17:27 +00003387
Chris Lattnerbe5eb172010-09-01 00:24:35 +00003388 case Integer:
Anton Korobeynikov244360d2009-06-05 22:08:42 +00003389 ++neededInt;
Chris Lattnerb22f1c82010-07-28 22:44:07 +00003390 // Pick an 8-byte type based on the preferred type.
Chris Lattnera5f58b02011-07-09 17:41:47 +00003391 HighPart = GetINTEGERTypeAtOffset(CGT.ConvertType(Ty), 8, Ty, 8);
Michael J. Spencerb2f376b2010-08-25 18:17:27 +00003392
Chris Lattnerbe5eb172010-09-01 00:24:35 +00003393 if (Lo == NoClass) // Pass HighPart at offset 8 in memory.
3394 return ABIArgInfo::getDirect(HighPart, 8);
Anton Korobeynikov244360d2009-06-05 22:08:42 +00003395 break;
3396
3397 // X87Up generally doesn't occur here (long double is passed in
3398 // memory), except in situations involving unions.
3399 case X87Up:
Chris Lattnerbe5eb172010-09-01 00:24:35 +00003400 case SSE:
Chris Lattnera5f58b02011-07-09 17:41:47 +00003401 HighPart = GetSSETypeAtOffset(CGT.ConvertType(Ty), 8, Ty, 8);
Michael J. Spencerb2f376b2010-08-25 18:17:27 +00003402
Chris Lattnerbe5eb172010-09-01 00:24:35 +00003403 if (Lo == NoClass) // Pass HighPart at offset 8 in memory.
3404 return ABIArgInfo::getDirect(HighPart, 8);
Chris Lattner8a2f3c72010-07-30 04:02:24 +00003405
Anton Korobeynikov244360d2009-06-05 22:08:42 +00003406 ++neededSSE;
3407 break;
3408
3409 // AMD64-ABI 3.2.3p3: Rule 4. If the class is SSEUP, the
3410 // eightbyte is passed in the upper half of the last used SSE
Michael J. Spencerb2f376b2010-08-25 18:17:27 +00003411 // register. This only happens when 128-bit vectors are passed.
Anton Korobeynikov244360d2009-06-05 22:08:42 +00003412 case SSEUp:
Chris Lattnerf4ba08a2010-07-28 23:47:21 +00003413 assert(Lo == SSE && "Unexpected SSEUp classification");
Bruno Cardoso Lopes21a41bb2011-07-11 22:41:29 +00003414 ResType = GetByteVectorType(Ty);
Anton Korobeynikov244360d2009-06-05 22:08:42 +00003415 break;
3416 }
3417
Chris Lattnerbe5eb172010-09-01 00:24:35 +00003418 // If a high part was specified, merge it together with the low part. It is
3419 // known to pass in the high eightbyte of the result. We do this by forming a
3420 // first class struct aggregate with the high and low part: {low, high}
3421 if (HighPart)
Micah Villmowdd31ca12012-10-08 16:25:52 +00003422 ResType = GetX86_64ByValArgumentPair(ResType, HighPart, getDataLayout());
Michael J. Spencerf5a1fbc2010-10-19 06:39:39 +00003423
Chris Lattner1f3a0632010-07-29 21:42:50 +00003424 return ABIArgInfo::getDirect(ResType);
Anton Korobeynikov244360d2009-06-05 22:08:42 +00003425}
3426
Erich Keane757d3172016-11-02 18:29:35 +00003427ABIArgInfo
3428X86_64ABIInfo::classifyRegCallStructTypeImpl(QualType Ty, unsigned &NeededInt,
3429 unsigned &NeededSSE) const {
3430 auto RT = Ty->getAs<RecordType>();
3431 assert(RT && "classifyRegCallStructType only valid with struct types");
3432
3433 if (RT->getDecl()->hasFlexibleArrayMember())
3434 return getIndirectReturnResult(Ty);
3435
3436 // Sum up bases
3437 if (auto CXXRD = dyn_cast<CXXRecordDecl>(RT->getDecl())) {
3438 if (CXXRD->isDynamicClass()) {
3439 NeededInt = NeededSSE = 0;
3440 return getIndirectReturnResult(Ty);
3441 }
3442
3443 for (const auto &I : CXXRD->bases())
3444 if (classifyRegCallStructTypeImpl(I.getType(), NeededInt, NeededSSE)
3445 .isIndirect()) {
3446 NeededInt = NeededSSE = 0;
3447 return getIndirectReturnResult(Ty);
3448 }
3449 }
3450
3451 // Sum up members
3452 for (const auto *FD : RT->getDecl()->fields()) {
3453 if (FD->getType()->isRecordType() && !FD->getType()->isUnionType()) {
3454 if (classifyRegCallStructTypeImpl(FD->getType(), NeededInt, NeededSSE)
3455 .isIndirect()) {
3456 NeededInt = NeededSSE = 0;
3457 return getIndirectReturnResult(Ty);
3458 }
3459 } else {
3460 unsigned LocalNeededInt, LocalNeededSSE;
3461 if (classifyArgumentType(FD->getType(), UINT_MAX, LocalNeededInt,
3462 LocalNeededSSE, true)
3463 .isIndirect()) {
3464 NeededInt = NeededSSE = 0;
3465 return getIndirectReturnResult(Ty);
3466 }
3467 NeededInt += LocalNeededInt;
3468 NeededSSE += LocalNeededSSE;
3469 }
3470 }
3471
3472 return ABIArgInfo::getDirect();
3473}
3474
3475ABIArgInfo X86_64ABIInfo::classifyRegCallStructType(QualType Ty,
3476 unsigned &NeededInt,
3477 unsigned &NeededSSE) const {
3478
3479 NeededInt = 0;
3480 NeededSSE = 0;
3481
3482 return classifyRegCallStructTypeImpl(Ty, NeededInt, NeededSSE);
3483}
3484
Chris Lattner22326a12010-07-29 02:31:05 +00003485void X86_64ABIInfo::computeInfo(CGFunctionInfo &FI) const {
Michael J. Spencerb2f376b2010-08-25 18:17:27 +00003486
Erich Keane757d3172016-11-02 18:29:35 +00003487 bool IsRegCall = FI.getCallingConvention() == llvm::CallingConv::X86_RegCall;
Anton Korobeynikov244360d2009-06-05 22:08:42 +00003488
3489 // Keep track of the number of assigned registers.
Erich Keane757d3172016-11-02 18:29:35 +00003490 unsigned FreeIntRegs = IsRegCall ? 11 : 6;
3491 unsigned FreeSSERegs = IsRegCall ? 16 : 8;
3492 unsigned NeededInt, NeededSSE;
3493
3494 if (IsRegCall && FI.getReturnType()->getTypePtr()->isRecordType() &&
3495 !FI.getReturnType()->getTypePtr()->isUnionType()) {
3496 FI.getReturnInfo() =
3497 classifyRegCallStructType(FI.getReturnType(), NeededInt, NeededSSE);
3498 if (FreeIntRegs >= NeededInt && FreeSSERegs >= NeededSSE) {
3499 FreeIntRegs -= NeededInt;
3500 FreeSSERegs -= NeededSSE;
3501 } else {
3502 FI.getReturnInfo() = getIndirectReturnResult(FI.getReturnType());
3503 }
3504 } else if (!getCXXABI().classifyReturnType(FI))
3505 FI.getReturnInfo() = classifyReturnType(FI.getReturnType());
Anton Korobeynikov244360d2009-06-05 22:08:42 +00003506
3507 // If the return value is indirect, then the hidden argument is consuming one
3508 // integer register.
3509 if (FI.getReturnInfo().isIndirect())
Erich Keane757d3172016-11-02 18:29:35 +00003510 --FreeIntRegs;
Anton Korobeynikov244360d2009-06-05 22:08:42 +00003511
Peter Collingbournef7706832014-12-12 23:41:25 +00003512 // The chain argument effectively gives us another free register.
3513 if (FI.isChainCall())
Erich Keane757d3172016-11-02 18:29:35 +00003514 ++FreeIntRegs;
Peter Collingbournef7706832014-12-12 23:41:25 +00003515
Alexey Samsonov34625dd2014-09-29 21:21:48 +00003516 unsigned NumRequiredArgs = FI.getNumRequiredArgs();
Anton Korobeynikov244360d2009-06-05 22:08:42 +00003517 // AMD64-ABI 3.2.3p3: Once arguments are classified, the registers
3518 // get assigned (in left-to-right order) for passing as follows...
Alexey Samsonov34625dd2014-09-29 21:21:48 +00003519 unsigned ArgNo = 0;
Anton Korobeynikov244360d2009-06-05 22:08:42 +00003520 for (CGFunctionInfo::arg_iterator it = FI.arg_begin(), ie = FI.arg_end();
Alexey Samsonov34625dd2014-09-29 21:21:48 +00003521 it != ie; ++it, ++ArgNo) {
3522 bool IsNamedArg = ArgNo < NumRequiredArgs;
Eli Friedman96fd2642013-06-12 00:13:45 +00003523
Erich Keane757d3172016-11-02 18:29:35 +00003524 if (IsRegCall && it->type->isStructureOrClassType())
3525 it->info = classifyRegCallStructType(it->type, NeededInt, NeededSSE);
3526 else
3527 it->info = classifyArgumentType(it->type, FreeIntRegs, NeededInt,
3528 NeededSSE, IsNamedArg);
Anton Korobeynikov244360d2009-06-05 22:08:42 +00003529
3530 // AMD64-ABI 3.2.3p3: If there are no registers available for any
3531 // eightbyte of an argument, the whole argument is passed on the
3532 // stack. If registers have already been assigned for some
3533 // eightbytes of such an argument, the assignments get reverted.
Erich Keane757d3172016-11-02 18:29:35 +00003534 if (FreeIntRegs >= NeededInt && FreeSSERegs >= NeededSSE) {
3535 FreeIntRegs -= NeededInt;
3536 FreeSSERegs -= NeededSSE;
Anton Korobeynikov244360d2009-06-05 22:08:42 +00003537 } else {
Erich Keane757d3172016-11-02 18:29:35 +00003538 it->info = getIndirectResult(it->type, FreeIntRegs);
Anton Korobeynikov244360d2009-06-05 22:08:42 +00003539 }
3540 }
3541}
3542
John McCall7f416cc2015-09-08 08:05:57 +00003543static Address EmitX86_64VAArgFromMemory(CodeGenFunction &CGF,
3544 Address VAListAddr, QualType Ty) {
3545 Address overflow_arg_area_p = CGF.Builder.CreateStructGEP(
3546 VAListAddr, 2, CharUnits::fromQuantity(8), "overflow_arg_area_p");
Anton Korobeynikov244360d2009-06-05 22:08:42 +00003547 llvm::Value *overflow_arg_area =
3548 CGF.Builder.CreateLoad(overflow_arg_area_p, "overflow_arg_area");
3549
3550 // AMD64-ABI 3.5.7p5: Step 7. Align l->overflow_arg_area upwards to a 16
3551 // byte boundary if alignment needed by type exceeds 8 byte boundary.
Eli Friedmana1748562011-11-18 02:44:19 +00003552 // It isn't stated explicitly in the standard, but in practice we use
3553 // alignment greater than 16 where necessary.
Petar Jovanovic402257b2015-12-04 00:26:47 +00003554 CharUnits Align = CGF.getContext().getTypeAlignInChars(Ty);
3555 if (Align > CharUnits::fromQuantity(8)) {
3556 overflow_arg_area = emitRoundPointerUpToAlignment(CGF, overflow_arg_area,
3557 Align);
Anton Korobeynikov244360d2009-06-05 22:08:42 +00003558 }
3559
3560 // AMD64-ABI 3.5.7p5: Step 8. Fetch type from l->overflow_arg_area.
Chris Lattner2192fe52011-07-18 04:24:23 +00003561 llvm::Type *LTy = CGF.ConvertTypeForMem(Ty);
Anton Korobeynikov244360d2009-06-05 22:08:42 +00003562 llvm::Value *Res =
3563 CGF.Builder.CreateBitCast(overflow_arg_area,
Owen Anderson9793f0e2009-07-29 22:16:19 +00003564 llvm::PointerType::getUnqual(LTy));
Anton Korobeynikov244360d2009-06-05 22:08:42 +00003565
3566 // AMD64-ABI 3.5.7p5: Step 9. Set l->overflow_arg_area to:
3567 // l->overflow_arg_area + sizeof(type).
3568 // AMD64-ABI 3.5.7p5: Step 10. Align l->overflow_arg_area upwards to
3569 // an 8 byte boundary.
3570
3571 uint64_t SizeInBytes = (CGF.getContext().getTypeSize(Ty) + 7) / 8;
Owen Anderson41a75022009-08-13 21:57:51 +00003572 llvm::Value *Offset =
Chris Lattner5e016ae2010-06-27 07:15:29 +00003573 llvm::ConstantInt::get(CGF.Int32Ty, (SizeInBytes + 7) & ~7);
Anton Korobeynikov244360d2009-06-05 22:08:42 +00003574 overflow_arg_area = CGF.Builder.CreateGEP(overflow_arg_area, Offset,
3575 "overflow_arg_area.next");
3576 CGF.Builder.CreateStore(overflow_arg_area, overflow_arg_area_p);
3577
3578 // AMD64-ABI 3.5.7p5: Step 11. Return the fetched type.
Petar Jovanovic402257b2015-12-04 00:26:47 +00003579 return Address(Res, Align);
Anton Korobeynikov244360d2009-06-05 22:08:42 +00003580}
3581
John McCall7f416cc2015-09-08 08:05:57 +00003582Address X86_64ABIInfo::EmitVAArg(CodeGenFunction &CGF, Address VAListAddr,
3583 QualType Ty) const {
Anton Korobeynikov244360d2009-06-05 22:08:42 +00003584 // Assume that va_list type is correct; should be pointer to LLVM type:
3585 // struct {
3586 // i32 gp_offset;
3587 // i32 fp_offset;
3588 // i8* overflow_arg_area;
3589 // i8* reg_save_area;
3590 // };
Bill Wendling9987c0e2010-10-18 23:51:38 +00003591 unsigned neededInt, neededSSE;
Michael J. Spencerb2f376b2010-08-25 18:17:27 +00003592
John McCall7f416cc2015-09-08 08:05:57 +00003593 Ty = getContext().getCanonicalType(Ty);
Eric Christopher7565e0d2015-05-29 23:09:49 +00003594 ABIArgInfo AI = classifyArgumentType(Ty, 0, neededInt, neededSSE,
Eli Friedman96fd2642013-06-12 00:13:45 +00003595 /*isNamedArg*/false);
Anton Korobeynikov244360d2009-06-05 22:08:42 +00003596
3597 // AMD64-ABI 3.5.7p5: Step 1. Determine whether type may be passed
3598 // in the registers. If not go to step 7.
3599 if (!neededInt && !neededSSE)
John McCall7f416cc2015-09-08 08:05:57 +00003600 return EmitX86_64VAArgFromMemory(CGF, VAListAddr, Ty);
Anton Korobeynikov244360d2009-06-05 22:08:42 +00003601
3602 // AMD64-ABI 3.5.7p5: Step 2. Compute num_gp to hold the number of
3603 // general purpose registers needed to pass type and num_fp to hold
3604 // the number of floating point registers needed.
3605
3606 // AMD64-ABI 3.5.7p5: Step 3. Verify whether arguments fit into
3607 // registers. In the case: l->gp_offset > 48 - num_gp * 8 or
3608 // l->fp_offset > 304 - num_fp * 16 go to step 7.
3609 //
3610 // NOTE: 304 is a typo, there are (6 * 8 + 8 * 16) = 176 bytes of
3611 // register save space).
3612
Craig Topper8a13c412014-05-21 05:09:00 +00003613 llvm::Value *InRegs = nullptr;
John McCall7f416cc2015-09-08 08:05:57 +00003614 Address gp_offset_p = Address::invalid(), fp_offset_p = Address::invalid();
3615 llvm::Value *gp_offset = nullptr, *fp_offset = nullptr;
Anton Korobeynikov244360d2009-06-05 22:08:42 +00003616 if (neededInt) {
David Blaikie1ed728c2015-04-05 22:45:47 +00003617 gp_offset_p =
John McCall7f416cc2015-09-08 08:05:57 +00003618 CGF.Builder.CreateStructGEP(VAListAddr, 0, CharUnits::Zero(),
3619 "gp_offset_p");
Anton Korobeynikov244360d2009-06-05 22:08:42 +00003620 gp_offset = CGF.Builder.CreateLoad(gp_offset_p, "gp_offset");
Chris Lattnerd776fb12010-06-28 21:43:59 +00003621 InRegs = llvm::ConstantInt::get(CGF.Int32Ty, 48 - neededInt * 8);
3622 InRegs = CGF.Builder.CreateICmpULE(gp_offset, InRegs, "fits_in_gp");
Anton Korobeynikov244360d2009-06-05 22:08:42 +00003623 }
3624
3625 if (neededSSE) {
David Blaikie1ed728c2015-04-05 22:45:47 +00003626 fp_offset_p =
John McCall7f416cc2015-09-08 08:05:57 +00003627 CGF.Builder.CreateStructGEP(VAListAddr, 1, CharUnits::fromQuantity(4),
3628 "fp_offset_p");
Anton Korobeynikov244360d2009-06-05 22:08:42 +00003629 fp_offset = CGF.Builder.CreateLoad(fp_offset_p, "fp_offset");
3630 llvm::Value *FitsInFP =
Chris Lattnerd776fb12010-06-28 21:43:59 +00003631 llvm::ConstantInt::get(CGF.Int32Ty, 176 - neededSSE * 16);
3632 FitsInFP = CGF.Builder.CreateICmpULE(fp_offset, FitsInFP, "fits_in_fp");
Anton Korobeynikov244360d2009-06-05 22:08:42 +00003633 InRegs = InRegs ? CGF.Builder.CreateAnd(InRegs, FitsInFP) : FitsInFP;
3634 }
3635
3636 llvm::BasicBlock *InRegBlock = CGF.createBasicBlock("vaarg.in_reg");
3637 llvm::BasicBlock *InMemBlock = CGF.createBasicBlock("vaarg.in_mem");
3638 llvm::BasicBlock *ContBlock = CGF.createBasicBlock("vaarg.end");
3639 CGF.Builder.CreateCondBr(InRegs, InRegBlock, InMemBlock);
3640
3641 // Emit code to load the value if it was passed in registers.
3642
3643 CGF.EmitBlock(InRegBlock);
3644
3645 // AMD64-ABI 3.5.7p5: Step 4. Fetch type from l->reg_save_area with
3646 // an offset of l->gp_offset and/or l->fp_offset. This may require
3647 // copying to a temporary location in case the parameter is passed
3648 // in different register classes or requires an alignment greater
3649 // than 8 for general purpose registers and 16 for XMM registers.
3650 //
3651 // FIXME: This really results in shameful code when we end up needing to
3652 // collect arguments from different places; often what should result in a
3653 // simple assembling of a structure from scattered addresses has many more
3654 // loads than necessary. Can we clean this up?
Chris Lattner2192fe52011-07-18 04:24:23 +00003655 llvm::Type *LTy = CGF.ConvertTypeForMem(Ty);
John McCall7f416cc2015-09-08 08:05:57 +00003656 llvm::Value *RegSaveArea = CGF.Builder.CreateLoad(
3657 CGF.Builder.CreateStructGEP(VAListAddr, 3, CharUnits::fromQuantity(16)),
3658 "reg_save_area");
3659
3660 Address RegAddr = Address::invalid();
Anton Korobeynikov244360d2009-06-05 22:08:42 +00003661 if (neededInt && neededSSE) {
3662 // FIXME: Cleanup.
Chris Lattnerfe34c1d2010-07-29 06:26:06 +00003663 assert(AI.isDirect() && "Unexpected ABI info for mixed regs");
Chris Lattner2192fe52011-07-18 04:24:23 +00003664 llvm::StructType *ST = cast<llvm::StructType>(AI.getCoerceToType());
John McCall7f416cc2015-09-08 08:05:57 +00003665 Address Tmp = CGF.CreateMemTemp(Ty);
3666 Tmp = CGF.Builder.CreateElementBitCast(Tmp, ST);
Anton Korobeynikov244360d2009-06-05 22:08:42 +00003667 assert(ST->getNumElements() == 2 && "Unexpected ABI info for mixed regs");
Chris Lattner2192fe52011-07-18 04:24:23 +00003668 llvm::Type *TyLo = ST->getElementType(0);
3669 llvm::Type *TyHi = ST->getElementType(1);
Chris Lattner51e1cc22010-08-26 06:28:35 +00003670 assert((TyLo->isFPOrFPVectorTy() ^ TyHi->isFPOrFPVectorTy()) &&
Anton Korobeynikov244360d2009-06-05 22:08:42 +00003671 "Unexpected ABI info for mixed regs");
Chris Lattner2192fe52011-07-18 04:24:23 +00003672 llvm::Type *PTyLo = llvm::PointerType::getUnqual(TyLo);
3673 llvm::Type *PTyHi = llvm::PointerType::getUnqual(TyHi);
John McCall7f416cc2015-09-08 08:05:57 +00003674 llvm::Value *GPAddr = CGF.Builder.CreateGEP(RegSaveArea, gp_offset);
3675 llvm::Value *FPAddr = CGF.Builder.CreateGEP(RegSaveArea, fp_offset);
Rafael Espindola0a500af2014-06-24 20:01:50 +00003676 llvm::Value *RegLoAddr = TyLo->isFPOrFPVectorTy() ? FPAddr : GPAddr;
3677 llvm::Value *RegHiAddr = TyLo->isFPOrFPVectorTy() ? GPAddr : FPAddr;
Anton Korobeynikov244360d2009-06-05 22:08:42 +00003678
John McCall7f416cc2015-09-08 08:05:57 +00003679 // Copy the first element.
Peter Collingbourneb367c562016-11-28 22:30:21 +00003680 // FIXME: Our choice of alignment here and below is probably pessimistic.
3681 llvm::Value *V = CGF.Builder.CreateAlignedLoad(
3682 TyLo, CGF.Builder.CreateBitCast(RegLoAddr, PTyLo),
3683 CharUnits::fromQuantity(getDataLayout().getABITypeAlignment(TyLo)));
John McCall7f416cc2015-09-08 08:05:57 +00003684 CGF.Builder.CreateStore(V,
3685 CGF.Builder.CreateStructGEP(Tmp, 0, CharUnits::Zero()));
3686
3687 // Copy the second element.
Peter Collingbourneb367c562016-11-28 22:30:21 +00003688 V = CGF.Builder.CreateAlignedLoad(
3689 TyHi, CGF.Builder.CreateBitCast(RegHiAddr, PTyHi),
3690 CharUnits::fromQuantity(getDataLayout().getABITypeAlignment(TyHi)));
John McCall7f416cc2015-09-08 08:05:57 +00003691 CharUnits Offset = CharUnits::fromQuantity(
3692 getDataLayout().getStructLayout(ST)->getElementOffset(1));
3693 CGF.Builder.CreateStore(V, CGF.Builder.CreateStructGEP(Tmp, 1, Offset));
3694
3695 RegAddr = CGF.Builder.CreateElementBitCast(Tmp, LTy);
Anton Korobeynikov244360d2009-06-05 22:08:42 +00003696 } else if (neededInt) {
John McCall7f416cc2015-09-08 08:05:57 +00003697 RegAddr = Address(CGF.Builder.CreateGEP(RegSaveArea, gp_offset),
3698 CharUnits::fromQuantity(8));
3699 RegAddr = CGF.Builder.CreateElementBitCast(RegAddr, LTy);
Eli Friedmanc11c1692013-06-07 23:20:55 +00003700
3701 // Copy to a temporary if necessary to ensure the appropriate alignment.
3702 std::pair<CharUnits, CharUnits> SizeAlign =
John McCall7f416cc2015-09-08 08:05:57 +00003703 getContext().getTypeInfoInChars(Ty);
Eli Friedmanc11c1692013-06-07 23:20:55 +00003704 uint64_t TySize = SizeAlign.first.getQuantity();
John McCall7f416cc2015-09-08 08:05:57 +00003705 CharUnits TyAlign = SizeAlign.second;
3706
3707 // Copy into a temporary if the type is more aligned than the
3708 // register save area.
3709 if (TyAlign.getQuantity() > 8) {
3710 Address Tmp = CGF.CreateMemTemp(Ty);
3711 CGF.Builder.CreateMemCpy(Tmp, RegAddr, TySize, false);
Eli Friedmanc11c1692013-06-07 23:20:55 +00003712 RegAddr = Tmp;
3713 }
John McCall7f416cc2015-09-08 08:05:57 +00003714
Chris Lattner0cf24192010-06-28 20:05:43 +00003715 } else if (neededSSE == 1) {
John McCall7f416cc2015-09-08 08:05:57 +00003716 RegAddr = Address(CGF.Builder.CreateGEP(RegSaveArea, fp_offset),
3717 CharUnits::fromQuantity(16));
3718 RegAddr = CGF.Builder.CreateElementBitCast(RegAddr, LTy);
Anton Korobeynikov244360d2009-06-05 22:08:42 +00003719 } else {
Chris Lattner0cf24192010-06-28 20:05:43 +00003720 assert(neededSSE == 2 && "Invalid number of needed registers!");
3721 // SSE registers are spaced 16 bytes apart in the register save
3722 // area, we need to collect the two eightbytes together.
John McCall7f416cc2015-09-08 08:05:57 +00003723 // The ABI isn't explicit about this, but it seems reasonable
3724 // to assume that the slots are 16-byte aligned, since the stack is
3725 // naturally 16-byte aligned and the prologue is expected to store
3726 // all the SSE registers to the RSA.
3727 Address RegAddrLo = Address(CGF.Builder.CreateGEP(RegSaveArea, fp_offset),
3728 CharUnits::fromQuantity(16));
3729 Address RegAddrHi =
3730 CGF.Builder.CreateConstInBoundsByteGEP(RegAddrLo,
3731 CharUnits::fromQuantity(16));
Chris Lattnerece04092012-02-07 00:39:47 +00003732 llvm::Type *DoubleTy = CGF.DoubleTy;
Serge Guelton1d993272017-05-09 19:31:30 +00003733 llvm::StructType *ST = llvm::StructType::get(DoubleTy, DoubleTy);
John McCall7f416cc2015-09-08 08:05:57 +00003734 llvm::Value *V;
3735 Address Tmp = CGF.CreateMemTemp(Ty);
3736 Tmp = CGF.Builder.CreateElementBitCast(Tmp, ST);
3737 V = CGF.Builder.CreateLoad(
3738 CGF.Builder.CreateElementBitCast(RegAddrLo, DoubleTy));
3739 CGF.Builder.CreateStore(V,
3740 CGF.Builder.CreateStructGEP(Tmp, 0, CharUnits::Zero()));
3741 V = CGF.Builder.CreateLoad(
3742 CGF.Builder.CreateElementBitCast(RegAddrHi, DoubleTy));
3743 CGF.Builder.CreateStore(V,
3744 CGF.Builder.CreateStructGEP(Tmp, 1, CharUnits::fromQuantity(8)));
3745
3746 RegAddr = CGF.Builder.CreateElementBitCast(Tmp, LTy);
Anton Korobeynikov244360d2009-06-05 22:08:42 +00003747 }
3748
3749 // AMD64-ABI 3.5.7p5: Step 5. Set:
3750 // l->gp_offset = l->gp_offset + num_gp * 8
3751 // l->fp_offset = l->fp_offset + num_fp * 16.
3752 if (neededInt) {
Chris Lattner5e016ae2010-06-27 07:15:29 +00003753 llvm::Value *Offset = llvm::ConstantInt::get(CGF.Int32Ty, neededInt * 8);
Anton Korobeynikov244360d2009-06-05 22:08:42 +00003754 CGF.Builder.CreateStore(CGF.Builder.CreateAdd(gp_offset, Offset),
3755 gp_offset_p);
3756 }
3757 if (neededSSE) {
Chris Lattner5e016ae2010-06-27 07:15:29 +00003758 llvm::Value *Offset = llvm::ConstantInt::get(CGF.Int32Ty, neededSSE * 16);
Anton Korobeynikov244360d2009-06-05 22:08:42 +00003759 CGF.Builder.CreateStore(CGF.Builder.CreateAdd(fp_offset, Offset),
3760 fp_offset_p);
3761 }
3762 CGF.EmitBranch(ContBlock);
3763
3764 // Emit code to load the value if it was passed in memory.
3765
3766 CGF.EmitBlock(InMemBlock);
John McCall7f416cc2015-09-08 08:05:57 +00003767 Address MemAddr = EmitX86_64VAArgFromMemory(CGF, VAListAddr, Ty);
Anton Korobeynikov244360d2009-06-05 22:08:42 +00003768
3769 // Return the appropriate result.
3770
3771 CGF.EmitBlock(ContBlock);
John McCall7f416cc2015-09-08 08:05:57 +00003772 Address ResAddr = emitMergePHI(CGF, RegAddr, InRegBlock, MemAddr, InMemBlock,
3773 "vaarg.addr");
Anton Korobeynikov244360d2009-06-05 22:08:42 +00003774 return ResAddr;
3775}
3776
Charles Davisc7d5c942015-09-17 20:55:33 +00003777Address X86_64ABIInfo::EmitMSVAArg(CodeGenFunction &CGF, Address VAListAddr,
3778 QualType Ty) const {
3779 return emitVoidPtrVAArg(CGF, VAListAddr, Ty, /*indirect*/ false,
3780 CGF.getContext().getTypeInfoInChars(Ty),
3781 CharUnits::fromQuantity(8),
3782 /*allowHigherAlign*/ false);
3783}
3784
Erich Keane521ed962017-01-05 00:20:51 +00003785ABIArgInfo
3786WinX86_64ABIInfo::reclassifyHvaArgType(QualType Ty, unsigned &FreeSSERegs,
3787 const ABIArgInfo &current) const {
3788 // Assumes vectorCall calling convention.
3789 const Type *Base = nullptr;
3790 uint64_t NumElts = 0;
3791
3792 if (!Ty->isBuiltinType() && !Ty->isVectorType() &&
3793 isHomogeneousAggregate(Ty, Base, NumElts) && FreeSSERegs >= NumElts) {
3794 FreeSSERegs -= NumElts;
3795 return getDirectX86Hva();
3796 }
3797 return current;
3798}
3799
Reid Kleckner80944df2014-10-31 22:00:51 +00003800ABIArgInfo WinX86_64ABIInfo::classify(QualType Ty, unsigned &FreeSSERegs,
Erich Keane521ed962017-01-05 00:20:51 +00003801 bool IsReturnType, bool IsVectorCall,
3802 bool IsRegCall) const {
NAKAMURA Takumibd91f502011-01-17 22:56:31 +00003803
3804 if (Ty->isVoidType())
3805 return ABIArgInfo::getIgnore();
3806
3807 if (const EnumType *EnumTy = Ty->getAs<EnumType>())
3808 Ty = EnumTy->getDecl()->getIntegerType();
3809
Reid Kleckner80944df2014-10-31 22:00:51 +00003810 TypeInfo Info = getContext().getTypeInfo(Ty);
3811 uint64_t Width = Info.Width;
Reid Kleckner11a17192015-10-28 22:29:52 +00003812 CharUnits Align = getContext().toCharUnitsFromBits(Info.Align);
NAKAMURA Takumibd91f502011-01-17 22:56:31 +00003813
Reid Kleckner9005f412014-05-02 00:51:20 +00003814 const RecordType *RT = Ty->getAs<RecordType>();
3815 if (RT) {
Reid Kleckner40ca9132014-05-13 22:05:45 +00003816 if (!IsReturnType) {
Mark Lacey3825e832013-10-06 01:33:34 +00003817 if (CGCXXABI::RecordArgABI RAA = getRecordArgABI(RT, getCXXABI()))
John McCall7f416cc2015-09-08 08:05:57 +00003818 return getNaturalAlignIndirect(Ty, RAA == CGCXXABI::RAA_DirectInMemory);
Timur Iskhodzhanov8fe501d2013-04-17 12:54:10 +00003819 }
3820
3821 if (RT->getDecl()->hasFlexibleArrayMember())
John McCall7f416cc2015-09-08 08:05:57 +00003822 return getNaturalAlignIndirect(Ty, /*ByVal=*/false);
NAKAMURA Takumibd91f502011-01-17 22:56:31 +00003823
Reid Kleckner9005f412014-05-02 00:51:20 +00003824 }
NAKAMURA Takumif8a6e802011-02-22 03:56:57 +00003825
Reid Kleckner80944df2014-10-31 22:00:51 +00003826 const Type *Base = nullptr;
3827 uint64_t NumElts = 0;
Erich Keane521ed962017-01-05 00:20:51 +00003828 // vectorcall adds the concept of a homogenous vector aggregate, similar to
3829 // other targets.
3830 if ((IsVectorCall || IsRegCall) &&
3831 isHomogeneousAggregate(Ty, Base, NumElts)) {
3832 if (IsRegCall) {
3833 if (FreeSSERegs >= NumElts) {
3834 FreeSSERegs -= NumElts;
3835 if (IsReturnType || Ty->isBuiltinType() || Ty->isVectorType())
3836 return ABIArgInfo::getDirect();
3837 return ABIArgInfo::getExpand();
3838 }
3839 return ABIArgInfo::getIndirect(Align, /*ByVal=*/false);
3840 } else if (IsVectorCall) {
3841 if (FreeSSERegs >= NumElts &&
3842 (IsReturnType || Ty->isBuiltinType() || Ty->isVectorType())) {
3843 FreeSSERegs -= NumElts;
Reid Kleckner80944df2014-10-31 22:00:51 +00003844 return ABIArgInfo::getDirect();
Erich Keane521ed962017-01-05 00:20:51 +00003845 } else if (IsReturnType) {
3846 return ABIArgInfo::getExpand();
3847 } else if (!Ty->isBuiltinType() && !Ty->isVectorType()) {
3848 // HVAs are delayed and reclassified in the 2nd step.
3849 return ABIArgInfo::getIndirect(Align, /*ByVal=*/false);
3850 }
Reid Kleckner80944df2014-10-31 22:00:51 +00003851 }
Reid Kleckner80944df2014-10-31 22:00:51 +00003852 }
3853
Reid Klecknerec87fec2014-05-02 01:17:12 +00003854 if (Ty->isMemberPointerType()) {
Reid Kleckner7f5f0f32014-05-02 01:14:59 +00003855 // If the member pointer is represented by an LLVM int or ptr, pass it
3856 // directly.
3857 llvm::Type *LLTy = CGT.ConvertType(Ty);
3858 if (LLTy->isPointerTy() || LLTy->isIntegerTy())
3859 return ABIArgInfo::getDirect();
Reid Kleckner9005f412014-05-02 00:51:20 +00003860 }
3861
Michael Kuperstein4f818702015-02-24 09:35:58 +00003862 if (RT || Ty->isAnyComplexType() || Ty->isMemberPointerType()) {
NAKAMURA Takumif8a6e802011-02-22 03:56:57 +00003863 // MS x64 ABI requirement: "Any argument that doesn't fit in 8 bytes, or is
3864 // not 1, 2, 4, or 8 bytes, must be passed by reference."
Reid Kleckner80944df2014-10-31 22:00:51 +00003865 if (Width > 64 || !llvm::isPowerOf2_64(Width))
John McCall7f416cc2015-09-08 08:05:57 +00003866 return getNaturalAlignIndirect(Ty, /*ByVal=*/false);
NAKAMURA Takumibd91f502011-01-17 22:56:31 +00003867
Reid Kleckner9005f412014-05-02 00:51:20 +00003868 // Otherwise, coerce it to a small integer.
Reid Kleckner80944df2014-10-31 22:00:51 +00003869 return ABIArgInfo::getDirect(llvm::IntegerType::get(getVMContext(), Width));
NAKAMURA Takumibd91f502011-01-17 22:56:31 +00003870 }
3871
Julien Lerouge10dcff82014-08-27 00:36:55 +00003872 // Bool type is always extended to the ABI, other builtin types are not
3873 // extended.
3874 const BuiltinType *BT = Ty->getAs<BuiltinType>();
3875 if (BT && BT->getKind() == BuiltinType::Bool)
Julien Lerougee8d34fa2014-08-26 22:11:53 +00003876 return ABIArgInfo::getExtend();
3877
Reid Kleckner11a17192015-10-28 22:29:52 +00003878 // Mingw64 GCC uses the old 80 bit extended precision floating point unit. It
3879 // passes them indirectly through memory.
3880 if (IsMingw64 && BT && BT->getKind() == BuiltinType::LongDouble) {
3881 const llvm::fltSemantics *LDF = &getTarget().getLongDoubleFormat();
Stephan Bergmann17c7f702016-12-14 11:57:17 +00003882 if (LDF == &llvm::APFloat::x87DoubleExtended())
Reid Kleckner11a17192015-10-28 22:29:52 +00003883 return ABIArgInfo::getIndirect(Align, /*ByVal=*/false);
3884 }
3885
NAKAMURA Takumibd91f502011-01-17 22:56:31 +00003886 return ABIArgInfo::getDirect();
3887}
3888
Erich Keane521ed962017-01-05 00:20:51 +00003889void WinX86_64ABIInfo::computeVectorCallArgs(CGFunctionInfo &FI,
3890 unsigned FreeSSERegs,
3891 bool IsVectorCall,
3892 bool IsRegCall) const {
3893 unsigned Count = 0;
3894 for (auto &I : FI.arguments()) {
3895 if (Count < VectorcallMaxParamNumAsReg)
3896 I.info = classify(I.type, FreeSSERegs, false, IsVectorCall, IsRegCall);
3897 else {
3898 // Since these cannot be passed in registers, pretend no registers
3899 // are left.
3900 unsigned ZeroSSERegsAvail = 0;
3901 I.info = classify(I.type, /*FreeSSERegs=*/ZeroSSERegsAvail, false,
3902 IsVectorCall, IsRegCall);
3903 }
3904 ++Count;
3905 }
3906
3907 Count = 0;
3908 for (auto &I : FI.arguments()) {
3909 if (Count < VectorcallMaxParamNumAsReg)
3910 I.info = reclassifyHvaArgType(I.type, FreeSSERegs, I.info);
3911 ++Count;
3912 }
3913}
3914
NAKAMURA Takumibd91f502011-01-17 22:56:31 +00003915void WinX86_64ABIInfo::computeInfo(CGFunctionInfo &FI) const {
Reid Kleckner80944df2014-10-31 22:00:51 +00003916 bool IsVectorCall =
3917 FI.getCallingConvention() == llvm::CallingConv::X86_VectorCall;
Erich Keane757d3172016-11-02 18:29:35 +00003918 bool IsRegCall = FI.getCallingConvention() == llvm::CallingConv::X86_RegCall;
Reid Kleckner37abaca2014-05-09 22:46:15 +00003919
Erich Keane757d3172016-11-02 18:29:35 +00003920 unsigned FreeSSERegs = 0;
3921 if (IsVectorCall) {
3922 // We can use up to 4 SSE return registers with vectorcall.
3923 FreeSSERegs = 4;
3924 } else if (IsRegCall) {
3925 // RegCall gives us 16 SSE registers.
3926 FreeSSERegs = 16;
3927 }
3928
Reid Kleckner80944df2014-10-31 22:00:51 +00003929 if (!getCXXABI().classifyReturnType(FI))
Erich Keane521ed962017-01-05 00:20:51 +00003930 FI.getReturnInfo() = classify(FI.getReturnType(), FreeSSERegs, true,
3931 IsVectorCall, IsRegCall);
Reid Kleckner80944df2014-10-31 22:00:51 +00003932
Erich Keane757d3172016-11-02 18:29:35 +00003933 if (IsVectorCall) {
3934 // We can use up to 6 SSE register parameters with vectorcall.
3935 FreeSSERegs = 6;
3936 } else if (IsRegCall) {
Erich Keane521ed962017-01-05 00:20:51 +00003937 // RegCall gives us 16 SSE registers, we can reuse the return registers.
Erich Keane757d3172016-11-02 18:29:35 +00003938 FreeSSERegs = 16;
3939 }
3940
Erich Keane521ed962017-01-05 00:20:51 +00003941 if (IsVectorCall) {
3942 computeVectorCallArgs(FI, FreeSSERegs, IsVectorCall, IsRegCall);
3943 } else {
3944 for (auto &I : FI.arguments())
3945 I.info = classify(I.type, FreeSSERegs, false, IsVectorCall, IsRegCall);
3946 }
3947
NAKAMURA Takumibd91f502011-01-17 22:56:31 +00003948}
3949
John McCall7f416cc2015-09-08 08:05:57 +00003950Address WinX86_64ABIInfo::EmitVAArg(CodeGenFunction &CGF, Address VAListAddr,
3951 QualType Ty) const {
Reid Klecknerb04449d2016-08-25 20:42:26 +00003952
3953 bool IsIndirect = false;
3954
3955 // MS x64 ABI requirement: "Any argument that doesn't fit in 8 bytes, or is
3956 // not 1, 2, 4, or 8 bytes, must be passed by reference."
3957 if (isAggregateTypeForABI(Ty) || Ty->isMemberPointerType()) {
3958 uint64_t Width = getContext().getTypeSize(Ty);
3959 IsIndirect = Width > 64 || !llvm::isPowerOf2_64(Width);
3960 }
3961
3962 return emitVoidPtrVAArg(CGF, VAListAddr, Ty, IsIndirect,
John McCall7f416cc2015-09-08 08:05:57 +00003963 CGF.getContext().getTypeInfoInChars(Ty),
3964 CharUnits::fromQuantity(8),
3965 /*allowHigherAlign*/ false);
Chris Lattner04dc9572010-08-31 16:44:54 +00003966}
Chris Lattner0cf24192010-06-28 20:05:43 +00003967
John McCallea8d8bb2010-03-11 00:10:12 +00003968// PowerPC-32
John McCallea8d8bb2010-03-11 00:10:12 +00003969namespace {
Roman Divacky8a12d842014-11-03 18:32:54 +00003970/// PPC32_SVR4_ABIInfo - The 32-bit PowerPC ELF (SVR4) ABI information.
3971class PPC32_SVR4_ABIInfo : public DefaultABIInfo {
Petar Jovanovic88a328f2015-12-14 17:51:50 +00003972bool IsSoftFloatABI;
John McCallea8d8bb2010-03-11 00:10:12 +00003973public:
Petar Jovanovic88a328f2015-12-14 17:51:50 +00003974 PPC32_SVR4_ABIInfo(CodeGen::CodeGenTypes &CGT, bool SoftFloatABI)
3975 : DefaultABIInfo(CGT), IsSoftFloatABI(SoftFloatABI) {}
Roman Divacky8a12d842014-11-03 18:32:54 +00003976
John McCall7f416cc2015-09-08 08:05:57 +00003977 Address EmitVAArg(CodeGenFunction &CGF, Address VAListAddr,
3978 QualType Ty) const override;
Roman Divacky8a12d842014-11-03 18:32:54 +00003979};
3980
3981class PPC32TargetCodeGenInfo : public TargetCodeGenInfo {
3982public:
Petar Jovanovic88a328f2015-12-14 17:51:50 +00003983 PPC32TargetCodeGenInfo(CodeGenTypes &CGT, bool SoftFloatABI)
3984 : TargetCodeGenInfo(new PPC32_SVR4_ABIInfo(CGT, SoftFloatABI)) {}
Michael J. Spencerb2f376b2010-08-25 18:17:27 +00003985
Craig Topper4f12f102014-03-12 06:41:41 +00003986 int getDwarfEHStackPointer(CodeGen::CodeGenModule &M) const override {
John McCallea8d8bb2010-03-11 00:10:12 +00003987 // This is recovered from gcc output.
3988 return 1; // r1 is the dedicated stack pointer
3989 }
3990
3991 bool initDwarfEHRegSizeTable(CodeGen::CodeGenFunction &CGF,
Craig Topper4f12f102014-03-12 06:41:41 +00003992 llvm::Value *Address) const override;
John McCallea8d8bb2010-03-11 00:10:12 +00003993};
3994
Alexander Kornienkoab9db512015-06-22 23:07:51 +00003995}
John McCallea8d8bb2010-03-11 00:10:12 +00003996
James Y Knight29b5f082016-02-24 02:59:33 +00003997// TODO: this implementation is now likely redundant with
3998// DefaultABIInfo::EmitVAArg.
John McCall7f416cc2015-09-08 08:05:57 +00003999Address PPC32_SVR4_ABIInfo::EmitVAArg(CodeGenFunction &CGF, Address VAList,
4000 QualType Ty) const {
Roman Divacky039b9702016-02-20 08:31:24 +00004001 const unsigned OverflowLimit = 8;
Roman Divacky8a12d842014-11-03 18:32:54 +00004002 if (const ComplexType *CTy = Ty->getAs<ComplexType>()) {
4003 // TODO: Implement this. For now ignore.
4004 (void)CTy;
James Y Knight29b5f082016-02-24 02:59:33 +00004005 return Address::invalid(); // FIXME?
Roman Divacky8a12d842014-11-03 18:32:54 +00004006 }
4007
John McCall7f416cc2015-09-08 08:05:57 +00004008 // struct __va_list_tag {
4009 // unsigned char gpr;
4010 // unsigned char fpr;
4011 // unsigned short reserved;
4012 // void *overflow_arg_area;
4013 // void *reg_save_area;
4014 // };
4015
Roman Divacky8a12d842014-11-03 18:32:54 +00004016 bool isI64 = Ty->isIntegerType() && getContext().getTypeSize(Ty) == 64;
Eric Christopher7565e0d2015-05-29 23:09:49 +00004017 bool isInt =
4018 Ty->isIntegerType() || Ty->isPointerType() || Ty->isAggregateType();
Petar Jovanovic88a328f2015-12-14 17:51:50 +00004019 bool isF64 = Ty->isFloatingType() && getContext().getTypeSize(Ty) == 64;
John McCall7f416cc2015-09-08 08:05:57 +00004020
4021 // All aggregates are passed indirectly? That doesn't seem consistent
4022 // with the argument-lowering code.
4023 bool isIndirect = Ty->isAggregateType();
Roman Divacky8a12d842014-11-03 18:32:54 +00004024
4025 CGBuilderTy &Builder = CGF.Builder;
John McCall7f416cc2015-09-08 08:05:57 +00004026
4027 // The calling convention either uses 1-2 GPRs or 1 FPR.
4028 Address NumRegsAddr = Address::invalid();
Petar Jovanovic88a328f2015-12-14 17:51:50 +00004029 if (isInt || IsSoftFloatABI) {
John McCall7f416cc2015-09-08 08:05:57 +00004030 NumRegsAddr = Builder.CreateStructGEP(VAList, 0, CharUnits::Zero(), "gpr");
4031 } else {
4032 NumRegsAddr = Builder.CreateStructGEP(VAList, 1, CharUnits::One(), "fpr");
Roman Divacky8a12d842014-11-03 18:32:54 +00004033 }
John McCall7f416cc2015-09-08 08:05:57 +00004034
4035 llvm::Value *NumRegs = Builder.CreateLoad(NumRegsAddr, "numUsedRegs");
4036
4037 // "Align" the register count when TY is i64.
Petar Jovanovic88a328f2015-12-14 17:51:50 +00004038 if (isI64 || (isF64 && IsSoftFloatABI)) {
John McCall7f416cc2015-09-08 08:05:57 +00004039 NumRegs = Builder.CreateAdd(NumRegs, Builder.getInt8(1));
4040 NumRegs = Builder.CreateAnd(NumRegs, Builder.getInt8((uint8_t) ~1U));
4041 }
Roman Divacky8a12d842014-11-03 18:32:54 +00004042
Eric Christopher7565e0d2015-05-29 23:09:49 +00004043 llvm::Value *CC =
Roman Divacky039b9702016-02-20 08:31:24 +00004044 Builder.CreateICmpULT(NumRegs, Builder.getInt8(OverflowLimit), "cond");
Roman Divacky8a12d842014-11-03 18:32:54 +00004045
4046 llvm::BasicBlock *UsingRegs = CGF.createBasicBlock("using_regs");
4047 llvm::BasicBlock *UsingOverflow = CGF.createBasicBlock("using_overflow");
4048 llvm::BasicBlock *Cont = CGF.createBasicBlock("cont");
4049
4050 Builder.CreateCondBr(CC, UsingRegs, UsingOverflow);
4051
John McCall7f416cc2015-09-08 08:05:57 +00004052 llvm::Type *DirectTy = CGF.ConvertType(Ty);
4053 if (isIndirect) DirectTy = DirectTy->getPointerTo(0);
Roman Divacky8a12d842014-11-03 18:32:54 +00004054
John McCall7f416cc2015-09-08 08:05:57 +00004055 // Case 1: consume registers.
4056 Address RegAddr = Address::invalid();
4057 {
4058 CGF.EmitBlock(UsingRegs);
4059
4060 Address RegSaveAreaPtr =
4061 Builder.CreateStructGEP(VAList, 4, CharUnits::fromQuantity(8));
4062 RegAddr = Address(Builder.CreateLoad(RegSaveAreaPtr),
4063 CharUnits::fromQuantity(8));
4064 assert(RegAddr.getElementType() == CGF.Int8Ty);
4065
4066 // Floating-point registers start after the general-purpose registers.
Petar Jovanovic88a328f2015-12-14 17:51:50 +00004067 if (!(isInt || IsSoftFloatABI)) {
John McCall7f416cc2015-09-08 08:05:57 +00004068 RegAddr = Builder.CreateConstInBoundsByteGEP(RegAddr,
4069 CharUnits::fromQuantity(32));
4070 }
4071
4072 // Get the address of the saved value by scaling the number of
4073 // registers we've used by the number of
Petar Jovanovic88a328f2015-12-14 17:51:50 +00004074 CharUnits RegSize = CharUnits::fromQuantity((isInt || IsSoftFloatABI) ? 4 : 8);
John McCall7f416cc2015-09-08 08:05:57 +00004075 llvm::Value *RegOffset =
4076 Builder.CreateMul(NumRegs, Builder.getInt8(RegSize.getQuantity()));
4077 RegAddr = Address(Builder.CreateInBoundsGEP(CGF.Int8Ty,
4078 RegAddr.getPointer(), RegOffset),
4079 RegAddr.getAlignment().alignmentOfArrayElement(RegSize));
4080 RegAddr = Builder.CreateElementBitCast(RegAddr, DirectTy);
4081
4082 // Increase the used-register count.
Petar Jovanovic88a328f2015-12-14 17:51:50 +00004083 NumRegs =
4084 Builder.CreateAdd(NumRegs,
4085 Builder.getInt8((isI64 || (isF64 && IsSoftFloatABI)) ? 2 : 1));
John McCall7f416cc2015-09-08 08:05:57 +00004086 Builder.CreateStore(NumRegs, NumRegsAddr);
4087
4088 CGF.EmitBranch(Cont);
Roman Divacky8a12d842014-11-03 18:32:54 +00004089 }
Roman Divacky8a12d842014-11-03 18:32:54 +00004090
John McCall7f416cc2015-09-08 08:05:57 +00004091 // Case 2: consume space in the overflow area.
4092 Address MemAddr = Address::invalid();
4093 {
4094 CGF.EmitBlock(UsingOverflow);
Roman Divacky8a12d842014-11-03 18:32:54 +00004095
Roman Divacky039b9702016-02-20 08:31:24 +00004096 Builder.CreateStore(Builder.getInt8(OverflowLimit), NumRegsAddr);
4097
John McCall7f416cc2015-09-08 08:05:57 +00004098 // Everything in the overflow area is rounded up to a size of at least 4.
4099 CharUnits OverflowAreaAlign = CharUnits::fromQuantity(4);
4100
4101 CharUnits Size;
4102 if (!isIndirect) {
4103 auto TypeInfo = CGF.getContext().getTypeInfoInChars(Ty);
Rui Ueyama83aa9792016-01-14 21:00:27 +00004104 Size = TypeInfo.first.alignTo(OverflowAreaAlign);
John McCall7f416cc2015-09-08 08:05:57 +00004105 } else {
4106 Size = CGF.getPointerSize();
4107 }
4108
4109 Address OverflowAreaAddr =
4110 Builder.CreateStructGEP(VAList, 3, CharUnits::fromQuantity(4));
Petar Jovanovic402257b2015-12-04 00:26:47 +00004111 Address OverflowArea(Builder.CreateLoad(OverflowAreaAddr, "argp.cur"),
John McCall7f416cc2015-09-08 08:05:57 +00004112 OverflowAreaAlign);
Petar Jovanovic402257b2015-12-04 00:26:47 +00004113 // Round up address of argument to alignment
4114 CharUnits Align = CGF.getContext().getTypeAlignInChars(Ty);
4115 if (Align > OverflowAreaAlign) {
4116 llvm::Value *Ptr = OverflowArea.getPointer();
4117 OverflowArea = Address(emitRoundPointerUpToAlignment(CGF, Ptr, Align),
4118 Align);
4119 }
4120
John McCall7f416cc2015-09-08 08:05:57 +00004121 MemAddr = Builder.CreateElementBitCast(OverflowArea, DirectTy);
4122
4123 // Increase the overflow area.
4124 OverflowArea = Builder.CreateConstInBoundsByteGEP(OverflowArea, Size);
4125 Builder.CreateStore(OverflowArea.getPointer(), OverflowAreaAddr);
4126 CGF.EmitBranch(Cont);
4127 }
Roman Divacky8a12d842014-11-03 18:32:54 +00004128
4129 CGF.EmitBlock(Cont);
4130
John McCall7f416cc2015-09-08 08:05:57 +00004131 // Merge the cases with a phi.
4132 Address Result = emitMergePHI(CGF, RegAddr, UsingRegs, MemAddr, UsingOverflow,
4133 "vaarg.addr");
Roman Divacky8a12d842014-11-03 18:32:54 +00004134
John McCall7f416cc2015-09-08 08:05:57 +00004135 // Load the pointer if the argument was passed indirectly.
4136 if (isIndirect) {
4137 Result = Address(Builder.CreateLoad(Result, "aggr"),
4138 getContext().getTypeAlignInChars(Ty));
Roman Divacky8a12d842014-11-03 18:32:54 +00004139 }
4140
4141 return Result;
4142}
4143
John McCallea8d8bb2010-03-11 00:10:12 +00004144bool
4145PPC32TargetCodeGenInfo::initDwarfEHRegSizeTable(CodeGen::CodeGenFunction &CGF,
4146 llvm::Value *Address) const {
4147 // This is calculated from the LLVM and GCC tables and verified
4148 // against gcc output. AFAIK all ABIs use the same encoding.
4149
4150 CodeGen::CGBuilderTy &Builder = CGF.Builder;
John McCallea8d8bb2010-03-11 00:10:12 +00004151
Chris Lattnerece04092012-02-07 00:39:47 +00004152 llvm::IntegerType *i8 = CGF.Int8Ty;
John McCallea8d8bb2010-03-11 00:10:12 +00004153 llvm::Value *Four8 = llvm::ConstantInt::get(i8, 4);
4154 llvm::Value *Eight8 = llvm::ConstantInt::get(i8, 8);
4155 llvm::Value *Sixteen8 = llvm::ConstantInt::get(i8, 16);
4156
4157 // 0-31: r0-31, the 4-byte general-purpose registers
John McCall943fae92010-05-27 06:19:26 +00004158 AssignToArrayRange(Builder, Address, Four8, 0, 31);
John McCallea8d8bb2010-03-11 00:10:12 +00004159
4160 // 32-63: fp0-31, the 8-byte floating-point registers
John McCall943fae92010-05-27 06:19:26 +00004161 AssignToArrayRange(Builder, Address, Eight8, 32, 63);
John McCallea8d8bb2010-03-11 00:10:12 +00004162
4163 // 64-76 are various 4-byte special-purpose registers:
4164 // 64: mq
4165 // 65: lr
4166 // 66: ctr
4167 // 67: ap
4168 // 68-75 cr0-7
4169 // 76: xer
John McCall943fae92010-05-27 06:19:26 +00004170 AssignToArrayRange(Builder, Address, Four8, 64, 76);
John McCallea8d8bb2010-03-11 00:10:12 +00004171
4172 // 77-108: v0-31, the 16-byte vector registers
John McCall943fae92010-05-27 06:19:26 +00004173 AssignToArrayRange(Builder, Address, Sixteen8, 77, 108);
John McCallea8d8bb2010-03-11 00:10:12 +00004174
4175 // 109: vrsave
4176 // 110: vscr
4177 // 111: spe_acc
4178 // 112: spefscr
4179 // 113: sfp
John McCall943fae92010-05-27 06:19:26 +00004180 AssignToArrayRange(Builder, Address, Four8, 109, 113);
John McCallea8d8bb2010-03-11 00:10:12 +00004181
Michael J. Spencerb2f376b2010-08-25 18:17:27 +00004182 return false;
John McCallea8d8bb2010-03-11 00:10:12 +00004183}
4184
Roman Divackyd966e722012-05-09 18:22:46 +00004185// PowerPC-64
4186
4187namespace {
Bill Schmidt25cb3492012-10-03 19:18:57 +00004188/// PPC64_SVR4_ABIInfo - The 64-bit PowerPC ELF (SVR4) ABI information.
James Y Knight29b5f082016-02-24 02:59:33 +00004189class PPC64_SVR4_ABIInfo : public ABIInfo {
Ulrich Weigandb7122372014-07-21 00:48:09 +00004190public:
4191 enum ABIKind {
4192 ELFv1 = 0,
4193 ELFv2
4194 };
4195
4196private:
4197 static const unsigned GPRBits = 64;
4198 ABIKind Kind;
Hal Finkel0d0a1a52015-03-11 19:14:15 +00004199 bool HasQPX;
Hal Finkel415c2a32016-10-02 02:10:45 +00004200 bool IsSoftFloatABI;
Hal Finkel0d0a1a52015-03-11 19:14:15 +00004201
4202 // A vector of float or double will be promoted to <4 x f32> or <4 x f64> and
4203 // will be passed in a QPX register.
4204 bool IsQPXVectorTy(const Type *Ty) const {
4205 if (!HasQPX)
4206 return false;
4207
4208 if (const VectorType *VT = Ty->getAs<VectorType>()) {
4209 unsigned NumElements = VT->getNumElements();
4210 if (NumElements == 1)
4211 return false;
4212
4213 if (VT->getElementType()->isSpecificBuiltinType(BuiltinType::Double)) {
4214 if (getContext().getTypeSize(Ty) <= 256)
4215 return true;
4216 } else if (VT->getElementType()->
4217 isSpecificBuiltinType(BuiltinType::Float)) {
4218 if (getContext().getTypeSize(Ty) <= 128)
4219 return true;
4220 }
4221 }
4222
4223 return false;
4224 }
4225
4226 bool IsQPXVectorTy(QualType Ty) const {
4227 return IsQPXVectorTy(Ty.getTypePtr());
4228 }
Bill Schmidt25cb3492012-10-03 19:18:57 +00004229
4230public:
Hal Finkel415c2a32016-10-02 02:10:45 +00004231 PPC64_SVR4_ABIInfo(CodeGen::CodeGenTypes &CGT, ABIKind Kind, bool HasQPX,
4232 bool SoftFloatABI)
4233 : ABIInfo(CGT), Kind(Kind), HasQPX(HasQPX),
4234 IsSoftFloatABI(SoftFloatABI) {}
Bill Schmidt25cb3492012-10-03 19:18:57 +00004235
Ulrich Weigand77ed89d2012-11-05 19:13:42 +00004236 bool isPromotableTypeForABI(QualType Ty) const;
John McCall7f416cc2015-09-08 08:05:57 +00004237 CharUnits getParamTypeAlignment(QualType Ty) const;
Ulrich Weigand77ed89d2012-11-05 19:13:42 +00004238
4239 ABIArgInfo classifyReturnType(QualType RetTy) const;
4240 ABIArgInfo classifyArgumentType(QualType Ty) const;
4241
Reid Klecknere9f6a712014-10-31 17:10:41 +00004242 bool isHomogeneousAggregateBaseType(QualType Ty) const override;
4243 bool isHomogeneousAggregateSmallEnough(const Type *Ty,
4244 uint64_t Members) const override;
4245
Bill Schmidt84d37792012-10-12 19:26:17 +00004246 // TODO: We can add more logic to computeInfo to improve performance.
4247 // Example: For aggregate arguments that fit in a register, we could
4248 // use getDirectInReg (as is done below for structs containing a single
4249 // floating-point value) to avoid pushing them to memory on function
4250 // entry. This would require changing the logic in PPCISelLowering
4251 // when lowering the parameters in the caller and args in the callee.
Craig Topper4f12f102014-03-12 06:41:41 +00004252 void computeInfo(CGFunctionInfo &FI) const override {
Reid Kleckner40ca9132014-05-13 22:05:45 +00004253 if (!getCXXABI().classifyReturnType(FI))
4254 FI.getReturnInfo() = classifyReturnType(FI.getReturnType());
Aaron Ballmanec47bc22014-03-17 18:10:01 +00004255 for (auto &I : FI.arguments()) {
Bill Schmidt84d37792012-10-12 19:26:17 +00004256 // We rely on the default argument classification for the most part.
4257 // One exception: An aggregate containing a single floating-point
Bill Schmidt179afae2013-07-23 22:15:57 +00004258 // or vector item must be passed in a register if one is available.
Aaron Ballmanec47bc22014-03-17 18:10:01 +00004259 const Type *T = isSingleElementStruct(I.type, getContext());
Bill Schmidt84d37792012-10-12 19:26:17 +00004260 if (T) {
4261 const BuiltinType *BT = T->getAs<BuiltinType>();
Hal Finkel0d0a1a52015-03-11 19:14:15 +00004262 if (IsQPXVectorTy(T) ||
4263 (T->isVectorType() && getContext().getTypeSize(T) == 128) ||
Ulrich Weigandf4eba982014-07-10 16:39:01 +00004264 (BT && BT->isFloatingPoint())) {
Bill Schmidt84d37792012-10-12 19:26:17 +00004265 QualType QT(T, 0);
Aaron Ballmanec47bc22014-03-17 18:10:01 +00004266 I.info = ABIArgInfo::getDirectInReg(CGT.ConvertType(QT));
Bill Schmidt84d37792012-10-12 19:26:17 +00004267 continue;
4268 }
4269 }
Aaron Ballmanec47bc22014-03-17 18:10:01 +00004270 I.info = classifyArgumentType(I.type);
Bill Schmidt84d37792012-10-12 19:26:17 +00004271 }
4272 }
Bill Schmidt25cb3492012-10-03 19:18:57 +00004273
John McCall7f416cc2015-09-08 08:05:57 +00004274 Address EmitVAArg(CodeGenFunction &CGF, Address VAListAddr,
4275 QualType Ty) const override;
Bill Schmidt25cb3492012-10-03 19:18:57 +00004276};
4277
4278class PPC64_SVR4_TargetCodeGenInfo : public TargetCodeGenInfo {
Hal Finkel0d0a1a52015-03-11 19:14:15 +00004279
Bill Schmidt25cb3492012-10-03 19:18:57 +00004280public:
Ulrich Weigandb7122372014-07-21 00:48:09 +00004281 PPC64_SVR4_TargetCodeGenInfo(CodeGenTypes &CGT,
Hal Finkel415c2a32016-10-02 02:10:45 +00004282 PPC64_SVR4_ABIInfo::ABIKind Kind, bool HasQPX,
4283 bool SoftFloatABI)
4284 : TargetCodeGenInfo(new PPC64_SVR4_ABIInfo(CGT, Kind, HasQPX,
4285 SoftFloatABI)) {}
Bill Schmidt25cb3492012-10-03 19:18:57 +00004286
Craig Topper4f12f102014-03-12 06:41:41 +00004287 int getDwarfEHStackPointer(CodeGen::CodeGenModule &M) const override {
Bill Schmidt25cb3492012-10-03 19:18:57 +00004288 // This is recovered from gcc output.
4289 return 1; // r1 is the dedicated stack pointer
4290 }
4291
4292 bool initDwarfEHRegSizeTable(CodeGen::CodeGenFunction &CGF,
Craig Topper4f12f102014-03-12 06:41:41 +00004293 llvm::Value *Address) const override;
Bill Schmidt25cb3492012-10-03 19:18:57 +00004294};
4295
Roman Divackyd966e722012-05-09 18:22:46 +00004296class PPC64TargetCodeGenInfo : public DefaultTargetCodeGenInfo {
4297public:
4298 PPC64TargetCodeGenInfo(CodeGenTypes &CGT) : DefaultTargetCodeGenInfo(CGT) {}
4299
Craig Topper4f12f102014-03-12 06:41:41 +00004300 int getDwarfEHStackPointer(CodeGen::CodeGenModule &M) const override {
Roman Divackyd966e722012-05-09 18:22:46 +00004301 // This is recovered from gcc output.
4302 return 1; // r1 is the dedicated stack pointer
4303 }
4304
4305 bool initDwarfEHRegSizeTable(CodeGen::CodeGenFunction &CGF,
Craig Topper4f12f102014-03-12 06:41:41 +00004306 llvm::Value *Address) const override;
Roman Divackyd966e722012-05-09 18:22:46 +00004307};
4308
Alexander Kornienkoab9db512015-06-22 23:07:51 +00004309}
Roman Divackyd966e722012-05-09 18:22:46 +00004310
Ulrich Weigand77ed89d2012-11-05 19:13:42 +00004311// Return true if the ABI requires Ty to be passed sign- or zero-
4312// extended to 64 bits.
4313bool
4314PPC64_SVR4_ABIInfo::isPromotableTypeForABI(QualType Ty) const {
4315 // Treat an enum type as its underlying type.
4316 if (const EnumType *EnumTy = Ty->getAs<EnumType>())
4317 Ty = EnumTy->getDecl()->getIntegerType();
4318
4319 // Promotable integer types are required to be promoted by the ABI.
4320 if (Ty->isPromotableIntegerType())
4321 return true;
4322
4323 // In addition to the usual promotable integer types, we also need to
4324 // extend all 32-bit types, since the ABI requires promotion to 64 bits.
4325 if (const BuiltinType *BT = Ty->getAs<BuiltinType>())
4326 switch (BT->getKind()) {
4327 case BuiltinType::Int:
4328 case BuiltinType::UInt:
4329 return true;
4330 default:
4331 break;
4332 }
4333
4334 return false;
4335}
4336
John McCall7f416cc2015-09-08 08:05:57 +00004337/// isAlignedParamType - Determine whether a type requires 16-byte or
4338/// higher alignment in the parameter area. Always returns at least 8.
4339CharUnits PPC64_SVR4_ABIInfo::getParamTypeAlignment(QualType Ty) const {
Ulrich Weigand581badc2014-07-10 17:20:07 +00004340 // Complex types are passed just like their elements.
4341 if (const ComplexType *CTy = Ty->getAs<ComplexType>())
4342 Ty = CTy->getElementType();
4343
4344 // Only vector types of size 16 bytes need alignment (larger types are
4345 // passed via reference, smaller types are not aligned).
Hal Finkel0d0a1a52015-03-11 19:14:15 +00004346 if (IsQPXVectorTy(Ty)) {
4347 if (getContext().getTypeSize(Ty) > 128)
John McCall7f416cc2015-09-08 08:05:57 +00004348 return CharUnits::fromQuantity(32);
Hal Finkel0d0a1a52015-03-11 19:14:15 +00004349
John McCall7f416cc2015-09-08 08:05:57 +00004350 return CharUnits::fromQuantity(16);
Hal Finkel0d0a1a52015-03-11 19:14:15 +00004351 } else if (Ty->isVectorType()) {
John McCall7f416cc2015-09-08 08:05:57 +00004352 return CharUnits::fromQuantity(getContext().getTypeSize(Ty) == 128 ? 16 : 8);
Hal Finkel0d0a1a52015-03-11 19:14:15 +00004353 }
Ulrich Weigand581badc2014-07-10 17:20:07 +00004354
4355 // For single-element float/vector structs, we consider the whole type
4356 // to have the same alignment requirements as its single element.
4357 const Type *AlignAsType = nullptr;
4358 const Type *EltType = isSingleElementStruct(Ty, getContext());
4359 if (EltType) {
4360 const BuiltinType *BT = EltType->getAs<BuiltinType>();
Hal Finkel0d0a1a52015-03-11 19:14:15 +00004361 if (IsQPXVectorTy(EltType) || (EltType->isVectorType() &&
Ulrich Weigand581badc2014-07-10 17:20:07 +00004362 getContext().getTypeSize(EltType) == 128) ||
4363 (BT && BT->isFloatingPoint()))
4364 AlignAsType = EltType;
4365 }
4366
Ulrich Weigandb7122372014-07-21 00:48:09 +00004367 // Likewise for ELFv2 homogeneous aggregates.
4368 const Type *Base = nullptr;
4369 uint64_t Members = 0;
4370 if (!AlignAsType && Kind == ELFv2 &&
4371 isAggregateTypeForABI(Ty) && isHomogeneousAggregate(Ty, Base, Members))
4372 AlignAsType = Base;
4373
Ulrich Weigand581badc2014-07-10 17:20:07 +00004374 // With special case aggregates, only vector base types need alignment.
Hal Finkel0d0a1a52015-03-11 19:14:15 +00004375 if (AlignAsType && IsQPXVectorTy(AlignAsType)) {
4376 if (getContext().getTypeSize(AlignAsType) > 128)
John McCall7f416cc2015-09-08 08:05:57 +00004377 return CharUnits::fromQuantity(32);
Hal Finkel0d0a1a52015-03-11 19:14:15 +00004378
John McCall7f416cc2015-09-08 08:05:57 +00004379 return CharUnits::fromQuantity(16);
Hal Finkel0d0a1a52015-03-11 19:14:15 +00004380 } else if (AlignAsType) {
John McCall7f416cc2015-09-08 08:05:57 +00004381 return CharUnits::fromQuantity(AlignAsType->isVectorType() ? 16 : 8);
Hal Finkel0d0a1a52015-03-11 19:14:15 +00004382 }
Ulrich Weigand581badc2014-07-10 17:20:07 +00004383
4384 // Otherwise, we only need alignment for any aggregate type that
4385 // has an alignment requirement of >= 16 bytes.
Hal Finkel0d0a1a52015-03-11 19:14:15 +00004386 if (isAggregateTypeForABI(Ty) && getContext().getTypeAlign(Ty) >= 128) {
4387 if (HasQPX && getContext().getTypeAlign(Ty) >= 256)
John McCall7f416cc2015-09-08 08:05:57 +00004388 return CharUnits::fromQuantity(32);
4389 return CharUnits::fromQuantity(16);
Hal Finkel0d0a1a52015-03-11 19:14:15 +00004390 }
Ulrich Weigand581badc2014-07-10 17:20:07 +00004391
John McCall7f416cc2015-09-08 08:05:57 +00004392 return CharUnits::fromQuantity(8);
Ulrich Weigand581badc2014-07-10 17:20:07 +00004393}
4394
Ulrich Weigandb7122372014-07-21 00:48:09 +00004395/// isHomogeneousAggregate - Return true if a type is an ELFv2 homogeneous
4396/// aggregate. Base is set to the base element type, and Members is set
4397/// to the number of base elements.
Reid Klecknere9f6a712014-10-31 17:10:41 +00004398bool ABIInfo::isHomogeneousAggregate(QualType Ty, const Type *&Base,
4399 uint64_t &Members) const {
Ulrich Weigandb7122372014-07-21 00:48:09 +00004400 if (const ConstantArrayType *AT = getContext().getAsConstantArrayType(Ty)) {
4401 uint64_t NElements = AT->getSize().getZExtValue();
4402 if (NElements == 0)
4403 return false;
4404 if (!isHomogeneousAggregate(AT->getElementType(), Base, Members))
4405 return false;
4406 Members *= NElements;
4407 } else if (const RecordType *RT = Ty->getAs<RecordType>()) {
4408 const RecordDecl *RD = RT->getDecl();
4409 if (RD->hasFlexibleArrayMember())
4410 return false;
4411
4412 Members = 0;
Ulrich Weiganda094f042014-10-29 13:23:20 +00004413
4414 // If this is a C++ record, check the bases first.
4415 if (const CXXRecordDecl *CXXRD = dyn_cast<CXXRecordDecl>(RD)) {
4416 for (const auto &I : CXXRD->bases()) {
4417 // Ignore empty records.
4418 if (isEmptyRecord(getContext(), I.getType(), true))
4419 continue;
4420
4421 uint64_t FldMembers;
4422 if (!isHomogeneousAggregate(I.getType(), Base, FldMembers))
4423 return false;
4424
4425 Members += FldMembers;
4426 }
4427 }
4428
Ulrich Weigandb7122372014-07-21 00:48:09 +00004429 for (const auto *FD : RD->fields()) {
4430 // Ignore (non-zero arrays of) empty records.
4431 QualType FT = FD->getType();
4432 while (const ConstantArrayType *AT =
4433 getContext().getAsConstantArrayType(FT)) {
4434 if (AT->getSize().getZExtValue() == 0)
4435 return false;
4436 FT = AT->getElementType();
4437 }
4438 if (isEmptyRecord(getContext(), FT, true))
4439 continue;
4440
4441 // For compatibility with GCC, ignore empty bitfields in C++ mode.
4442 if (getContext().getLangOpts().CPlusPlus &&
4443 FD->isBitField() && FD->getBitWidthValue(getContext()) == 0)
4444 continue;
4445
4446 uint64_t FldMembers;
4447 if (!isHomogeneousAggregate(FD->getType(), Base, FldMembers))
4448 return false;
4449
4450 Members = (RD->isUnion() ?
4451 std::max(Members, FldMembers) : Members + FldMembers);
4452 }
4453
4454 if (!Base)
4455 return false;
4456
4457 // Ensure there is no padding.
4458 if (getContext().getTypeSize(Base) * Members !=
4459 getContext().getTypeSize(Ty))
4460 return false;
4461 } else {
4462 Members = 1;
4463 if (const ComplexType *CT = Ty->getAs<ComplexType>()) {
4464 Members = 2;
4465 Ty = CT->getElementType();
4466 }
4467
Reid Klecknere9f6a712014-10-31 17:10:41 +00004468 // Most ABIs only support float, double, and some vector type widths.
4469 if (!isHomogeneousAggregateBaseType(Ty))
Ulrich Weigandb7122372014-07-21 00:48:09 +00004470 return false;
Ulrich Weigandb7122372014-07-21 00:48:09 +00004471
4472 // The base type must be the same for all members. Types that
4473 // agree in both total size and mode (float vs. vector) are
4474 // treated as being equivalent here.
4475 const Type *TyPtr = Ty.getTypePtr();
Ahmed Bougacha40a34c22016-04-19 17:54:29 +00004476 if (!Base) {
Ulrich Weigandb7122372014-07-21 00:48:09 +00004477 Base = TyPtr;
Ahmed Bougacha40a34c22016-04-19 17:54:29 +00004478 // If it's a non-power-of-2 vector, its size is already a power-of-2,
4479 // so make sure to widen it explicitly.
4480 if (const VectorType *VT = Base->getAs<VectorType>()) {
4481 QualType EltTy = VT->getElementType();
4482 unsigned NumElements =
4483 getContext().getTypeSize(VT) / getContext().getTypeSize(EltTy);
4484 Base = getContext()
4485 .getVectorType(EltTy, NumElements, VT->getVectorKind())
4486 .getTypePtr();
4487 }
4488 }
Ulrich Weigandb7122372014-07-21 00:48:09 +00004489
4490 if (Base->isVectorType() != TyPtr->isVectorType() ||
4491 getContext().getTypeSize(Base) != getContext().getTypeSize(TyPtr))
4492 return false;
4493 }
Reid Klecknere9f6a712014-10-31 17:10:41 +00004494 return Members > 0 && isHomogeneousAggregateSmallEnough(Base, Members);
4495}
Ulrich Weigandb7122372014-07-21 00:48:09 +00004496
Reid Klecknere9f6a712014-10-31 17:10:41 +00004497bool PPC64_SVR4_ABIInfo::isHomogeneousAggregateBaseType(QualType Ty) const {
4498 // Homogeneous aggregates for ELFv2 must have base types of float,
4499 // double, long double, or 128-bit vectors.
4500 if (const BuiltinType *BT = Ty->getAs<BuiltinType>()) {
4501 if (BT->getKind() == BuiltinType::Float ||
4502 BT->getKind() == BuiltinType::Double ||
Hal Finkel415c2a32016-10-02 02:10:45 +00004503 BT->getKind() == BuiltinType::LongDouble) {
4504 if (IsSoftFloatABI)
4505 return false;
Reid Klecknere9f6a712014-10-31 17:10:41 +00004506 return true;
Hal Finkel415c2a32016-10-02 02:10:45 +00004507 }
Reid Klecknere9f6a712014-10-31 17:10:41 +00004508 }
4509 if (const VectorType *VT = Ty->getAs<VectorType>()) {
Hal Finkel0d0a1a52015-03-11 19:14:15 +00004510 if (getContext().getTypeSize(VT) == 128 || IsQPXVectorTy(Ty))
Reid Klecknere9f6a712014-10-31 17:10:41 +00004511 return true;
4512 }
4513 return false;
4514}
4515
4516bool PPC64_SVR4_ABIInfo::isHomogeneousAggregateSmallEnough(
4517 const Type *Base, uint64_t Members) const {
Ulrich Weigandb7122372014-07-21 00:48:09 +00004518 // Vector types require one register, floating point types require one
4519 // or two registers depending on their size.
Reid Klecknere9f6a712014-10-31 17:10:41 +00004520 uint32_t NumRegs =
4521 Base->isVectorType() ? 1 : (getContext().getTypeSize(Base) + 63) / 64;
Ulrich Weigandb7122372014-07-21 00:48:09 +00004522
4523 // Homogeneous Aggregates may occupy at most 8 registers.
Reid Klecknere9f6a712014-10-31 17:10:41 +00004524 return Members * NumRegs <= 8;
Ulrich Weigandb7122372014-07-21 00:48:09 +00004525}
4526
Ulrich Weigand77ed89d2012-11-05 19:13:42 +00004527ABIArgInfo
4528PPC64_SVR4_ABIInfo::classifyArgumentType(QualType Ty) const {
Reid Klecknerb1be6832014-11-15 01:41:41 +00004529 Ty = useFirstFieldIfTransparentUnion(Ty);
4530
Bill Schmidt90b22c92012-11-27 02:46:43 +00004531 if (Ty->isAnyComplexType())
4532 return ABIArgInfo::getDirect();
4533
Ulrich Weigandf4eba982014-07-10 16:39:01 +00004534 // Non-Altivec vector types are passed in GPRs (smaller than 16 bytes)
4535 // or via reference (larger than 16 bytes).
Hal Finkel0d0a1a52015-03-11 19:14:15 +00004536 if (Ty->isVectorType() && !IsQPXVectorTy(Ty)) {
Ulrich Weigandf4eba982014-07-10 16:39:01 +00004537 uint64_t Size = getContext().getTypeSize(Ty);
4538 if (Size > 128)
John McCall7f416cc2015-09-08 08:05:57 +00004539 return getNaturalAlignIndirect(Ty, /*ByVal=*/false);
Ulrich Weigandf4eba982014-07-10 16:39:01 +00004540 else if (Size < 128) {
4541 llvm::Type *CoerceTy = llvm::IntegerType::get(getVMContext(), Size);
4542 return ABIArgInfo::getDirect(CoerceTy);
4543 }
4544 }
4545
Ulrich Weigand77ed89d2012-11-05 19:13:42 +00004546 if (isAggregateTypeForABI(Ty)) {
Mark Lacey3825e832013-10-06 01:33:34 +00004547 if (CGCXXABI::RecordArgABI RAA = getRecordArgABI(Ty, getCXXABI()))
John McCall7f416cc2015-09-08 08:05:57 +00004548 return getNaturalAlignIndirect(Ty, RAA == CGCXXABI::RAA_DirectInMemory);
Ulrich Weigand77ed89d2012-11-05 19:13:42 +00004549
John McCall7f416cc2015-09-08 08:05:57 +00004550 uint64_t ABIAlign = getParamTypeAlignment(Ty).getQuantity();
4551 uint64_t TyAlign = getContext().getTypeAlignInChars(Ty).getQuantity();
Ulrich Weigandb7122372014-07-21 00:48:09 +00004552
4553 // ELFv2 homogeneous aggregates are passed as array types.
4554 const Type *Base = nullptr;
4555 uint64_t Members = 0;
4556 if (Kind == ELFv2 &&
4557 isHomogeneousAggregate(Ty, Base, Members)) {
4558 llvm::Type *BaseTy = CGT.ConvertType(QualType(Base, 0));
4559 llvm::Type *CoerceTy = llvm::ArrayType::get(BaseTy, Members);
4560 return ABIArgInfo::getDirect(CoerceTy);
4561 }
4562
Ulrich Weigand601957f2014-07-21 00:56:36 +00004563 // If an aggregate may end up fully in registers, we do not
4564 // use the ByVal method, but pass the aggregate as array.
4565 // This is usually beneficial since we avoid forcing the
4566 // back-end to store the argument to memory.
4567 uint64_t Bits = getContext().getTypeSize(Ty);
4568 if (Bits > 0 && Bits <= 8 * GPRBits) {
4569 llvm::Type *CoerceTy;
4570
4571 // Types up to 8 bytes are passed as integer type (which will be
4572 // properly aligned in the argument save area doubleword).
4573 if (Bits <= GPRBits)
Rui Ueyama83aa9792016-01-14 21:00:27 +00004574 CoerceTy =
4575 llvm::IntegerType::get(getVMContext(), llvm::alignTo(Bits, 8));
Ulrich Weigand601957f2014-07-21 00:56:36 +00004576 // Larger types are passed as arrays, with the base type selected
4577 // according to the required alignment in the save area.
4578 else {
4579 uint64_t RegBits = ABIAlign * 8;
Rui Ueyama83aa9792016-01-14 21:00:27 +00004580 uint64_t NumRegs = llvm::alignTo(Bits, RegBits) / RegBits;
Ulrich Weigand601957f2014-07-21 00:56:36 +00004581 llvm::Type *RegTy = llvm::IntegerType::get(getVMContext(), RegBits);
4582 CoerceTy = llvm::ArrayType::get(RegTy, NumRegs);
4583 }
4584
4585 return ABIArgInfo::getDirect(CoerceTy);
4586 }
4587
Ulrich Weigandb7122372014-07-21 00:48:09 +00004588 // All other aggregates are passed ByVal.
John McCall7f416cc2015-09-08 08:05:57 +00004589 return ABIArgInfo::getIndirect(CharUnits::fromQuantity(ABIAlign),
4590 /*ByVal=*/true,
Ulrich Weigand581badc2014-07-10 17:20:07 +00004591 /*Realign=*/TyAlign > ABIAlign);
Ulrich Weigand77ed89d2012-11-05 19:13:42 +00004592 }
4593
4594 return (isPromotableTypeForABI(Ty) ?
4595 ABIArgInfo::getExtend() : ABIArgInfo::getDirect());
4596}
4597
4598ABIArgInfo
4599PPC64_SVR4_ABIInfo::classifyReturnType(QualType RetTy) const {
4600 if (RetTy->isVoidType())
4601 return ABIArgInfo::getIgnore();
4602
Bill Schmidta3d121c2012-12-17 04:20:17 +00004603 if (RetTy->isAnyComplexType())
4604 return ABIArgInfo::getDirect();
4605
Ulrich Weigandf4eba982014-07-10 16:39:01 +00004606 // Non-Altivec vector types are returned in GPRs (smaller than 16 bytes)
4607 // or via reference (larger than 16 bytes).
Hal Finkel0d0a1a52015-03-11 19:14:15 +00004608 if (RetTy->isVectorType() && !IsQPXVectorTy(RetTy)) {
Ulrich Weigandf4eba982014-07-10 16:39:01 +00004609 uint64_t Size = getContext().getTypeSize(RetTy);
4610 if (Size > 128)
John McCall7f416cc2015-09-08 08:05:57 +00004611 return getNaturalAlignIndirect(RetTy);
Ulrich Weigandf4eba982014-07-10 16:39:01 +00004612 else if (Size < 128) {
4613 llvm::Type *CoerceTy = llvm::IntegerType::get(getVMContext(), Size);
4614 return ABIArgInfo::getDirect(CoerceTy);
4615 }
4616 }
4617
Ulrich Weigandb7122372014-07-21 00:48:09 +00004618 if (isAggregateTypeForABI(RetTy)) {
4619 // ELFv2 homogeneous aggregates are returned as array types.
4620 const Type *Base = nullptr;
4621 uint64_t Members = 0;
4622 if (Kind == ELFv2 &&
4623 isHomogeneousAggregate(RetTy, Base, Members)) {
4624 llvm::Type *BaseTy = CGT.ConvertType(QualType(Base, 0));
4625 llvm::Type *CoerceTy = llvm::ArrayType::get(BaseTy, Members);
4626 return ABIArgInfo::getDirect(CoerceTy);
4627 }
4628
4629 // ELFv2 small aggregates are returned in up to two registers.
4630 uint64_t Bits = getContext().getTypeSize(RetTy);
4631 if (Kind == ELFv2 && Bits <= 2 * GPRBits) {
4632 if (Bits == 0)
4633 return ABIArgInfo::getIgnore();
4634
4635 llvm::Type *CoerceTy;
4636 if (Bits > GPRBits) {
4637 CoerceTy = llvm::IntegerType::get(getVMContext(), GPRBits);
Serge Guelton1d993272017-05-09 19:31:30 +00004638 CoerceTy = llvm::StructType::get(CoerceTy, CoerceTy);
Ulrich Weigandb7122372014-07-21 00:48:09 +00004639 } else
Rui Ueyama83aa9792016-01-14 21:00:27 +00004640 CoerceTy =
4641 llvm::IntegerType::get(getVMContext(), llvm::alignTo(Bits, 8));
Ulrich Weigandb7122372014-07-21 00:48:09 +00004642 return ABIArgInfo::getDirect(CoerceTy);
4643 }
4644
4645 // All other aggregates are returned indirectly.
John McCall7f416cc2015-09-08 08:05:57 +00004646 return getNaturalAlignIndirect(RetTy);
Ulrich Weigandb7122372014-07-21 00:48:09 +00004647 }
Ulrich Weigand77ed89d2012-11-05 19:13:42 +00004648
4649 return (isPromotableTypeForABI(RetTy) ?
4650 ABIArgInfo::getExtend() : ABIArgInfo::getDirect());
4651}
4652
Bill Schmidt25cb3492012-10-03 19:18:57 +00004653// Based on ARMABIInfo::EmitVAArg, adjusted for 64-bit machine.
John McCall7f416cc2015-09-08 08:05:57 +00004654Address PPC64_SVR4_ABIInfo::EmitVAArg(CodeGenFunction &CGF, Address VAListAddr,
4655 QualType Ty) const {
4656 auto TypeInfo = getContext().getTypeInfoInChars(Ty);
4657 TypeInfo.second = getParamTypeAlignment(Ty);
Bill Schmidt25cb3492012-10-03 19:18:57 +00004658
John McCall7f416cc2015-09-08 08:05:57 +00004659 CharUnits SlotSize = CharUnits::fromQuantity(8);
Bill Schmidt25cb3492012-10-03 19:18:57 +00004660
Bill Schmidt924c4782013-01-14 17:45:36 +00004661 // If we have a complex type and the base type is smaller than 8 bytes,
4662 // the ABI calls for the real and imaginary parts to be right-adjusted
4663 // in separate doublewords. However, Clang expects us to produce a
4664 // pointer to a structure with the two parts packed tightly. So generate
4665 // loads of the real and imaginary parts relative to the va_list pointer,
4666 // and store them to a temporary structure.
John McCall7f416cc2015-09-08 08:05:57 +00004667 if (const ComplexType *CTy = Ty->getAs<ComplexType>()) {
4668 CharUnits EltSize = TypeInfo.first / 2;
4669 if (EltSize < SlotSize) {
4670 Address Addr = emitVoidPtrDirectVAArg(CGF, VAListAddr, CGF.Int8Ty,
4671 SlotSize * 2, SlotSize,
4672 SlotSize, /*AllowHigher*/ true);
4673
4674 Address RealAddr = Addr;
4675 Address ImagAddr = RealAddr;
4676 if (CGF.CGM.getDataLayout().isBigEndian()) {
4677 RealAddr = CGF.Builder.CreateConstInBoundsByteGEP(RealAddr,
4678 SlotSize - EltSize);
4679 ImagAddr = CGF.Builder.CreateConstInBoundsByteGEP(ImagAddr,
4680 2 * SlotSize - EltSize);
4681 } else {
4682 ImagAddr = CGF.Builder.CreateConstInBoundsByteGEP(RealAddr, SlotSize);
4683 }
4684
4685 llvm::Type *EltTy = CGF.ConvertTypeForMem(CTy->getElementType());
4686 RealAddr = CGF.Builder.CreateElementBitCast(RealAddr, EltTy);
4687 ImagAddr = CGF.Builder.CreateElementBitCast(ImagAddr, EltTy);
4688 llvm::Value *Real = CGF.Builder.CreateLoad(RealAddr, ".vareal");
4689 llvm::Value *Imag = CGF.Builder.CreateLoad(ImagAddr, ".vaimag");
4690
4691 Address Temp = CGF.CreateMemTemp(Ty, "vacplx");
4692 CGF.EmitStoreOfComplex({Real, Imag}, CGF.MakeAddrLValue(Temp, Ty),
4693 /*init*/ true);
4694 return Temp;
Ulrich Weigandbebc55b2014-06-20 16:37:40 +00004695 }
Bill Schmidt924c4782013-01-14 17:45:36 +00004696 }
4697
John McCall7f416cc2015-09-08 08:05:57 +00004698 // Otherwise, just use the general rule.
4699 return emitVoidPtrVAArg(CGF, VAListAddr, Ty, /*Indirect*/ false,
4700 TypeInfo, SlotSize, /*AllowHigher*/ true);
Bill Schmidt25cb3492012-10-03 19:18:57 +00004701}
4702
4703static bool
4704PPC64_initDwarfEHRegSizeTable(CodeGen::CodeGenFunction &CGF,
4705 llvm::Value *Address) {
Roman Divackyd966e722012-05-09 18:22:46 +00004706 // This is calculated from the LLVM and GCC tables and verified
4707 // against gcc output. AFAIK all ABIs use the same encoding.
4708
4709 CodeGen::CGBuilderTy &Builder = CGF.Builder;
4710
4711 llvm::IntegerType *i8 = CGF.Int8Ty;
4712 llvm::Value *Four8 = llvm::ConstantInt::get(i8, 4);
4713 llvm::Value *Eight8 = llvm::ConstantInt::get(i8, 8);
4714 llvm::Value *Sixteen8 = llvm::ConstantInt::get(i8, 16);
4715
4716 // 0-31: r0-31, the 8-byte general-purpose registers
4717 AssignToArrayRange(Builder, Address, Eight8, 0, 31);
4718
4719 // 32-63: fp0-31, the 8-byte floating-point registers
4720 AssignToArrayRange(Builder, Address, Eight8, 32, 63);
4721
Hal Finkel84832a72016-08-30 02:38:34 +00004722 // 64-67 are various 8-byte special-purpose registers:
Roman Divackyd966e722012-05-09 18:22:46 +00004723 // 64: mq
4724 // 65: lr
4725 // 66: ctr
4726 // 67: ap
Hal Finkel84832a72016-08-30 02:38:34 +00004727 AssignToArrayRange(Builder, Address, Eight8, 64, 67);
4728
4729 // 68-76 are various 4-byte special-purpose registers:
Roman Divackyd966e722012-05-09 18:22:46 +00004730 // 68-75 cr0-7
4731 // 76: xer
Hal Finkel84832a72016-08-30 02:38:34 +00004732 AssignToArrayRange(Builder, Address, Four8, 68, 76);
Roman Divackyd966e722012-05-09 18:22:46 +00004733
4734 // 77-108: v0-31, the 16-byte vector registers
4735 AssignToArrayRange(Builder, Address, Sixteen8, 77, 108);
4736
4737 // 109: vrsave
4738 // 110: vscr
4739 // 111: spe_acc
4740 // 112: spefscr
4741 // 113: sfp
Hal Finkel84832a72016-08-30 02:38:34 +00004742 // 114: tfhar
4743 // 115: tfiar
4744 // 116: texasr
4745 AssignToArrayRange(Builder, Address, Eight8, 109, 116);
Roman Divackyd966e722012-05-09 18:22:46 +00004746
4747 return false;
4748}
John McCallea8d8bb2010-03-11 00:10:12 +00004749
Bill Schmidt25cb3492012-10-03 19:18:57 +00004750bool
4751PPC64_SVR4_TargetCodeGenInfo::initDwarfEHRegSizeTable(
4752 CodeGen::CodeGenFunction &CGF,
4753 llvm::Value *Address) const {
4754
4755 return PPC64_initDwarfEHRegSizeTable(CGF, Address);
4756}
4757
4758bool
4759PPC64TargetCodeGenInfo::initDwarfEHRegSizeTable(CodeGen::CodeGenFunction &CGF,
4760 llvm::Value *Address) const {
4761
4762 return PPC64_initDwarfEHRegSizeTable(CGF, Address);
4763}
4764
Chris Lattner0cf24192010-06-28 20:05:43 +00004765//===----------------------------------------------------------------------===//
Tim Northover573cbee2014-05-24 12:52:07 +00004766// AArch64 ABI Implementation
Tim Northovera2ee4332014-03-29 15:09:45 +00004767//===----------------------------------------------------------------------===//
4768
4769namespace {
4770
John McCall12f23522016-04-04 18:33:08 +00004771class AArch64ABIInfo : public SwiftABIInfo {
Tim Northovera2ee4332014-03-29 15:09:45 +00004772public:
4773 enum ABIKind {
4774 AAPCS = 0,
4775 DarwinPCS
4776 };
4777
4778private:
4779 ABIKind Kind;
4780
4781public:
John McCall12f23522016-04-04 18:33:08 +00004782 AArch64ABIInfo(CodeGenTypes &CGT, ABIKind Kind)
4783 : SwiftABIInfo(CGT), Kind(Kind) {}
Tim Northovera2ee4332014-03-29 15:09:45 +00004784
4785private:
4786 ABIKind getABIKind() const { return Kind; }
4787 bool isDarwinPCS() const { return Kind == DarwinPCS; }
4788
4789 ABIArgInfo classifyReturnType(QualType RetTy) const;
Tim Northoverb047bfa2014-11-27 21:02:49 +00004790 ABIArgInfo classifyArgumentType(QualType RetTy) const;
Reid Klecknere9f6a712014-10-31 17:10:41 +00004791 bool isHomogeneousAggregateBaseType(QualType Ty) const override;
4792 bool isHomogeneousAggregateSmallEnough(const Type *Ty,
4793 uint64_t Members) const override;
4794
Tim Northovera2ee4332014-03-29 15:09:45 +00004795 bool isIllegalVectorType(QualType Ty) const;
4796
David Blaikie1cbb9712014-11-14 19:09:44 +00004797 void computeInfo(CGFunctionInfo &FI) const override {
Reid Kleckner40ca9132014-05-13 22:05:45 +00004798 if (!getCXXABI().classifyReturnType(FI))
4799 FI.getReturnInfo() = classifyReturnType(FI.getReturnType());
Tim Northover5ffc0922014-04-17 10:20:38 +00004800
Tim Northoverb047bfa2014-11-27 21:02:49 +00004801 for (auto &it : FI.arguments())
4802 it.info = classifyArgumentType(it.type);
Tim Northovera2ee4332014-03-29 15:09:45 +00004803 }
4804
John McCall7f416cc2015-09-08 08:05:57 +00004805 Address EmitDarwinVAArg(Address VAListAddr, QualType Ty,
4806 CodeGenFunction &CGF) const;
Tim Northovera2ee4332014-03-29 15:09:45 +00004807
John McCall7f416cc2015-09-08 08:05:57 +00004808 Address EmitAAPCSVAArg(Address VAListAddr, QualType Ty,
4809 CodeGenFunction &CGF) const;
Tim Northovera2ee4332014-03-29 15:09:45 +00004810
John McCall7f416cc2015-09-08 08:05:57 +00004811 Address EmitVAArg(CodeGenFunction &CGF, Address VAListAddr,
4812 QualType Ty) const override {
Tim Northovera2ee4332014-03-29 15:09:45 +00004813 return isDarwinPCS() ? EmitDarwinVAArg(VAListAddr, Ty, CGF)
4814 : EmitAAPCSVAArg(VAListAddr, Ty, CGF);
4815 }
John McCall12f23522016-04-04 18:33:08 +00004816
4817 bool shouldPassIndirectlyForSwift(CharUnits totalSize,
4818 ArrayRef<llvm::Type*> scalars,
4819 bool asReturnValue) const override {
4820 return occupiesMoreThan(CGT, scalars, /*total*/ 4);
4821 }
Arnold Schwaighoferb0f2c332016-12-01 18:07:38 +00004822 bool isSwiftErrorInRegister() const override {
4823 return true;
4824 }
Tim Northovera2ee4332014-03-29 15:09:45 +00004825};
4826
Tim Northover573cbee2014-05-24 12:52:07 +00004827class AArch64TargetCodeGenInfo : public TargetCodeGenInfo {
Tim Northovera2ee4332014-03-29 15:09:45 +00004828public:
Tim Northover573cbee2014-05-24 12:52:07 +00004829 AArch64TargetCodeGenInfo(CodeGenTypes &CGT, AArch64ABIInfo::ABIKind Kind)
4830 : TargetCodeGenInfo(new AArch64ABIInfo(CGT, Kind)) {}
Tim Northovera2ee4332014-03-29 15:09:45 +00004831
Alexander Kornienko34eb2072015-04-11 02:00:23 +00004832 StringRef getARCRetainAutoreleasedReturnValueMarker() const override {
Saleem Abdulrasool40db4772017-02-11 23:03:13 +00004833 return "mov\tfp, fp\t\t# marker for objc_retainAutoreleaseReturnValue";
Tim Northovera2ee4332014-03-29 15:09:45 +00004834 }
4835
Alexander Kornienko34eb2072015-04-11 02:00:23 +00004836 int getDwarfEHStackPointer(CodeGen::CodeGenModule &M) const override {
4837 return 31;
4838 }
Tim Northovera2ee4332014-03-29 15:09:45 +00004839
Alexander Kornienko34eb2072015-04-11 02:00:23 +00004840 bool doesReturnSlotInterfereWithArgs() const override { return false; }
Tim Northovera2ee4332014-03-29 15:09:45 +00004841};
Alexander Kornienkoab9db512015-06-22 23:07:51 +00004842}
Tim Northovera2ee4332014-03-29 15:09:45 +00004843
Tim Northoverb047bfa2014-11-27 21:02:49 +00004844ABIArgInfo AArch64ABIInfo::classifyArgumentType(QualType Ty) const {
Reid Klecknerb1be6832014-11-15 01:41:41 +00004845 Ty = useFirstFieldIfTransparentUnion(Ty);
4846
Tim Northovera2ee4332014-03-29 15:09:45 +00004847 // Handle illegal vector types here.
4848 if (isIllegalVectorType(Ty)) {
4849 uint64_t Size = getContext().getTypeSize(Ty);
Nirav Dave9a8f97e2016-02-22 16:48:42 +00004850 // Android promotes <2 x i8> to i16, not i32
Ahmed Bougacha8862cae2016-04-19 17:54:24 +00004851 if (isAndroid() && (Size <= 16)) {
Nirav Dave9a8f97e2016-02-22 16:48:42 +00004852 llvm::Type *ResType = llvm::Type::getInt16Ty(getVMContext());
4853 return ABIArgInfo::getDirect(ResType);
4854 }
Tim Northovera2ee4332014-03-29 15:09:45 +00004855 if (Size <= 32) {
4856 llvm::Type *ResType = llvm::Type::getInt32Ty(getVMContext());
Tim Northovera2ee4332014-03-29 15:09:45 +00004857 return ABIArgInfo::getDirect(ResType);
4858 }
4859 if (Size == 64) {
4860 llvm::Type *ResType =
4861 llvm::VectorType::get(llvm::Type::getInt32Ty(getVMContext()), 2);
Tim Northovera2ee4332014-03-29 15:09:45 +00004862 return ABIArgInfo::getDirect(ResType);
4863 }
4864 if (Size == 128) {
4865 llvm::Type *ResType =
4866 llvm::VectorType::get(llvm::Type::getInt32Ty(getVMContext()), 4);
Tim Northovera2ee4332014-03-29 15:09:45 +00004867 return ABIArgInfo::getDirect(ResType);
4868 }
John McCall7f416cc2015-09-08 08:05:57 +00004869 return getNaturalAlignIndirect(Ty, /*ByVal=*/false);
Tim Northovera2ee4332014-03-29 15:09:45 +00004870 }
Tim Northovera2ee4332014-03-29 15:09:45 +00004871
4872 if (!isAggregateTypeForABI(Ty)) {
4873 // Treat an enum type as its underlying type.
4874 if (const EnumType *EnumTy = Ty->getAs<EnumType>())
4875 Ty = EnumTy->getDecl()->getIntegerType();
4876
Tim Northovera2ee4332014-03-29 15:09:45 +00004877 return (Ty->isPromotableIntegerType() && isDarwinPCS()
4878 ? ABIArgInfo::getExtend()
4879 : ABIArgInfo::getDirect());
4880 }
4881
4882 // Structures with either a non-trivial destructor or a non-trivial
4883 // copy constructor are always indirect.
Reid Kleckner40ca9132014-05-13 22:05:45 +00004884 if (CGCXXABI::RecordArgABI RAA = getRecordArgABI(Ty, getCXXABI())) {
John McCall7f416cc2015-09-08 08:05:57 +00004885 return getNaturalAlignIndirect(Ty, /*ByVal=*/RAA ==
4886 CGCXXABI::RAA_DirectInMemory);
Tim Northovera2ee4332014-03-29 15:09:45 +00004887 }
4888
4889 // Empty records are always ignored on Darwin, but actually passed in C++ mode
4890 // elsewhere for GNU compatibility.
Tim Northover23bcad22017-05-05 22:36:06 +00004891 uint64_t Size = getContext().getTypeSize(Ty);
4892 bool IsEmpty = isEmptyRecord(getContext(), Ty, true);
4893 if (IsEmpty || Size == 0) {
Tim Northovera2ee4332014-03-29 15:09:45 +00004894 if (!getContext().getLangOpts().CPlusPlus || isDarwinPCS())
4895 return ABIArgInfo::getIgnore();
4896
Tim Northover23bcad22017-05-05 22:36:06 +00004897 // GNU C mode. The only argument that gets ignored is an empty one with size
4898 // 0.
4899 if (IsEmpty && Size == 0)
4900 return ABIArgInfo::getIgnore();
Tim Northovera2ee4332014-03-29 15:09:45 +00004901 return ABIArgInfo::getDirect(llvm::Type::getInt8Ty(getVMContext()));
4902 }
4903
4904 // Homogeneous Floating-point Aggregates (HFAs) need to be expanded.
Craig Topper8a13c412014-05-21 05:09:00 +00004905 const Type *Base = nullptr;
Tim Northovera2ee4332014-03-29 15:09:45 +00004906 uint64_t Members = 0;
Reid Klecknere9f6a712014-10-31 17:10:41 +00004907 if (isHomogeneousAggregate(Ty, Base, Members)) {
Tim Northoverb047bfa2014-11-27 21:02:49 +00004908 return ABIArgInfo::getDirect(
4909 llvm::ArrayType::get(CGT.ConvertType(QualType(Base, 0)), Members));
Tim Northovera2ee4332014-03-29 15:09:45 +00004910 }
4911
4912 // Aggregates <= 16 bytes are passed directly in registers or on the stack.
Tim Northovera2ee4332014-03-29 15:09:45 +00004913 if (Size <= 128) {
Pirama Arumuga Nainarbb846a32016-07-27 19:01:51 +00004914 // On RenderScript, coerce Aggregates <= 16 bytes to an integer array of
4915 // same size and alignment.
4916 if (getTarget().isRenderScriptTarget()) {
4917 return coerceToIntArray(Ty, getContext(), getVMContext());
4918 }
Tim Northoverc801b4a2014-04-15 14:55:11 +00004919 unsigned Alignment = getContext().getTypeAlign(Ty);
Davide Italiano7a3b69d2017-04-03 16:51:39 +00004920 Size = llvm::alignTo(Size, 64); // round up to multiple of 8 bytes
Tim Northoverb047bfa2014-11-27 21:02:49 +00004921
Tim Northovera2ee4332014-03-29 15:09:45 +00004922 // We use a pair of i64 for 16-byte aggregate with 8-byte alignment.
4923 // For aggregates with 16-byte alignment, we use i128.
Tim Northoverc801b4a2014-04-15 14:55:11 +00004924 if (Alignment < 128 && Size == 128) {
Tim Northovera2ee4332014-03-29 15:09:45 +00004925 llvm::Type *BaseTy = llvm::Type::getInt64Ty(getVMContext());
4926 return ABIArgInfo::getDirect(llvm::ArrayType::get(BaseTy, Size / 64));
4927 }
4928 return ABIArgInfo::getDirect(llvm::IntegerType::get(getVMContext(), Size));
4929 }
4930
John McCall7f416cc2015-09-08 08:05:57 +00004931 return getNaturalAlignIndirect(Ty, /*ByVal=*/false);
Tim Northovera2ee4332014-03-29 15:09:45 +00004932}
4933
Tim Northover573cbee2014-05-24 12:52:07 +00004934ABIArgInfo AArch64ABIInfo::classifyReturnType(QualType RetTy) const {
Tim Northovera2ee4332014-03-29 15:09:45 +00004935 if (RetTy->isVoidType())
4936 return ABIArgInfo::getIgnore();
4937
4938 // Large vector types should be returned via memory.
4939 if (RetTy->isVectorType() && getContext().getTypeSize(RetTy) > 128)
John McCall7f416cc2015-09-08 08:05:57 +00004940 return getNaturalAlignIndirect(RetTy);
Tim Northovera2ee4332014-03-29 15:09:45 +00004941
4942 if (!isAggregateTypeForABI(RetTy)) {
4943 // Treat an enum type as its underlying type.
4944 if (const EnumType *EnumTy = RetTy->getAs<EnumType>())
4945 RetTy = EnumTy->getDecl()->getIntegerType();
4946
Tim Northover4dab6982014-04-18 13:46:08 +00004947 return (RetTy->isPromotableIntegerType() && isDarwinPCS()
4948 ? ABIArgInfo::getExtend()
4949 : ABIArgInfo::getDirect());
Tim Northovera2ee4332014-03-29 15:09:45 +00004950 }
4951
Tim Northover23bcad22017-05-05 22:36:06 +00004952 uint64_t Size = getContext().getTypeSize(RetTy);
4953 if (isEmptyRecord(getContext(), RetTy, true) || Size == 0)
Tim Northovera2ee4332014-03-29 15:09:45 +00004954 return ABIArgInfo::getIgnore();
4955
Craig Topper8a13c412014-05-21 05:09:00 +00004956 const Type *Base = nullptr;
Reid Klecknere9f6a712014-10-31 17:10:41 +00004957 uint64_t Members = 0;
4958 if (isHomogeneousAggregate(RetTy, Base, Members))
Tim Northovera2ee4332014-03-29 15:09:45 +00004959 // Homogeneous Floating-point Aggregates (HFAs) are returned directly.
4960 return ABIArgInfo::getDirect();
4961
4962 // Aggregates <= 16 bytes are returned directly in registers or on the stack.
Tim Northovera2ee4332014-03-29 15:09:45 +00004963 if (Size <= 128) {
Pirama Arumuga Nainarbb846a32016-07-27 19:01:51 +00004964 // On RenderScript, coerce Aggregates <= 16 bytes to an integer array of
4965 // same size and alignment.
4966 if (getTarget().isRenderScriptTarget()) {
4967 return coerceToIntArray(RetTy, getContext(), getVMContext());
4968 }
Pete Cooper635b5092015-04-17 22:16:24 +00004969 unsigned Alignment = getContext().getTypeAlign(RetTy);
Davide Italiano7a3b69d2017-04-03 16:51:39 +00004970 Size = llvm::alignTo(Size, 64); // round up to multiple of 8 bytes
Pete Cooper635b5092015-04-17 22:16:24 +00004971
4972 // We use a pair of i64 for 16-byte aggregate with 8-byte alignment.
4973 // For aggregates with 16-byte alignment, we use i128.
4974 if (Alignment < 128 && Size == 128) {
4975 llvm::Type *BaseTy = llvm::Type::getInt64Ty(getVMContext());
4976 return ABIArgInfo::getDirect(llvm::ArrayType::get(BaseTy, Size / 64));
4977 }
Tim Northovera2ee4332014-03-29 15:09:45 +00004978 return ABIArgInfo::getDirect(llvm::IntegerType::get(getVMContext(), Size));
4979 }
4980
John McCall7f416cc2015-09-08 08:05:57 +00004981 return getNaturalAlignIndirect(RetTy);
Tim Northovera2ee4332014-03-29 15:09:45 +00004982}
4983
Tim Northover573cbee2014-05-24 12:52:07 +00004984/// isIllegalVectorType - check whether the vector type is legal for AArch64.
4985bool AArch64ABIInfo::isIllegalVectorType(QualType Ty) const {
Tim Northovera2ee4332014-03-29 15:09:45 +00004986 if (const VectorType *VT = Ty->getAs<VectorType>()) {
4987 // Check whether VT is legal.
4988 unsigned NumElements = VT->getNumElements();
4989 uint64_t Size = getContext().getTypeSize(VT);
Tim Northover34fd4fb2016-05-03 19:24:47 +00004990 // NumElements should be power of 2.
Tim Northover360d2b32016-05-03 19:22:41 +00004991 if (!llvm::isPowerOf2_32(NumElements))
Tim Northovera2ee4332014-03-29 15:09:45 +00004992 return true;
4993 return Size != 64 && (Size != 128 || NumElements == 1);
4994 }
4995 return false;
4996}
4997
Reid Klecknere9f6a712014-10-31 17:10:41 +00004998bool AArch64ABIInfo::isHomogeneousAggregateBaseType(QualType Ty) const {
4999 // Homogeneous aggregates for AAPCS64 must have base types of a floating
5000 // point type or a short-vector type. This is the same as the 32-bit ABI,
5001 // but with the difference that any floating-point type is allowed,
5002 // including __fp16.
5003 if (const BuiltinType *BT = Ty->getAs<BuiltinType>()) {
5004 if (BT->isFloatingPoint())
5005 return true;
5006 } else if (const VectorType *VT = Ty->getAs<VectorType>()) {
5007 unsigned VecSize = getContext().getTypeSize(VT);
5008 if (VecSize == 64 || VecSize == 128)
5009 return true;
5010 }
5011 return false;
5012}
5013
5014bool AArch64ABIInfo::isHomogeneousAggregateSmallEnough(const Type *Base,
5015 uint64_t Members) const {
5016 return Members <= 4;
5017}
5018
John McCall7f416cc2015-09-08 08:05:57 +00005019Address AArch64ABIInfo::EmitAAPCSVAArg(Address VAListAddr,
Tim Northoverb047bfa2014-11-27 21:02:49 +00005020 QualType Ty,
5021 CodeGenFunction &CGF) const {
5022 ABIArgInfo AI = classifyArgumentType(Ty);
Reid Klecknere9f6a712014-10-31 17:10:41 +00005023 bool IsIndirect = AI.isIndirect();
5024
Tim Northoverb047bfa2014-11-27 21:02:49 +00005025 llvm::Type *BaseTy = CGF.ConvertType(Ty);
5026 if (IsIndirect)
5027 BaseTy = llvm::PointerType::getUnqual(BaseTy);
5028 else if (AI.getCoerceToType())
5029 BaseTy = AI.getCoerceToType();
5030
5031 unsigned NumRegs = 1;
5032 if (llvm::ArrayType *ArrTy = dyn_cast<llvm::ArrayType>(BaseTy)) {
5033 BaseTy = ArrTy->getElementType();
5034 NumRegs = ArrTy->getNumElements();
5035 }
5036 bool IsFPR = BaseTy->isFloatingPointTy() || BaseTy->isVectorTy();
5037
Tim Northovera2ee4332014-03-29 15:09:45 +00005038 // The AArch64 va_list type and handling is specified in the Procedure Call
5039 // Standard, section B.4:
5040 //
5041 // struct {
5042 // void *__stack;
5043 // void *__gr_top;
5044 // void *__vr_top;
5045 // int __gr_offs;
5046 // int __vr_offs;
5047 // };
5048
5049 llvm::BasicBlock *MaybeRegBlock = CGF.createBasicBlock("vaarg.maybe_reg");
5050 llvm::BasicBlock *InRegBlock = CGF.createBasicBlock("vaarg.in_reg");
5051 llvm::BasicBlock *OnStackBlock = CGF.createBasicBlock("vaarg.on_stack");
5052 llvm::BasicBlock *ContBlock = CGF.createBasicBlock("vaarg.end");
Tim Northovera2ee4332014-03-29 15:09:45 +00005053
John McCall7f416cc2015-09-08 08:05:57 +00005054 auto TyInfo = getContext().getTypeInfoInChars(Ty);
5055 CharUnits TyAlign = TyInfo.second;
5056
5057 Address reg_offs_p = Address::invalid();
5058 llvm::Value *reg_offs = nullptr;
Tim Northovera2ee4332014-03-29 15:09:45 +00005059 int reg_top_index;
John McCall7f416cc2015-09-08 08:05:57 +00005060 CharUnits reg_top_offset;
5061 int RegSize = IsIndirect ? 8 : TyInfo.first.getQuantity();
Tim Northoverb047bfa2014-11-27 21:02:49 +00005062 if (!IsFPR) {
Tim Northovera2ee4332014-03-29 15:09:45 +00005063 // 3 is the field number of __gr_offs
David Blaikie2e804282015-04-05 22:47:07 +00005064 reg_offs_p =
John McCall7f416cc2015-09-08 08:05:57 +00005065 CGF.Builder.CreateStructGEP(VAListAddr, 3, CharUnits::fromQuantity(24),
5066 "gr_offs_p");
Tim Northovera2ee4332014-03-29 15:09:45 +00005067 reg_offs = CGF.Builder.CreateLoad(reg_offs_p, "gr_offs");
5068 reg_top_index = 1; // field number for __gr_top
John McCall7f416cc2015-09-08 08:05:57 +00005069 reg_top_offset = CharUnits::fromQuantity(8);
Rui Ueyama83aa9792016-01-14 21:00:27 +00005070 RegSize = llvm::alignTo(RegSize, 8);
Tim Northovera2ee4332014-03-29 15:09:45 +00005071 } else {
Tim Northovera2ee4332014-03-29 15:09:45 +00005072 // 4 is the field number of __vr_offs.
David Blaikie2e804282015-04-05 22:47:07 +00005073 reg_offs_p =
John McCall7f416cc2015-09-08 08:05:57 +00005074 CGF.Builder.CreateStructGEP(VAListAddr, 4, CharUnits::fromQuantity(28),
5075 "vr_offs_p");
Tim Northovera2ee4332014-03-29 15:09:45 +00005076 reg_offs = CGF.Builder.CreateLoad(reg_offs_p, "vr_offs");
5077 reg_top_index = 2; // field number for __vr_top
John McCall7f416cc2015-09-08 08:05:57 +00005078 reg_top_offset = CharUnits::fromQuantity(16);
Tim Northoverb047bfa2014-11-27 21:02:49 +00005079 RegSize = 16 * NumRegs;
Tim Northovera2ee4332014-03-29 15:09:45 +00005080 }
5081
5082 //=======================================
5083 // Find out where argument was passed
5084 //=======================================
5085
5086 // If reg_offs >= 0 we're already using the stack for this type of
5087 // argument. We don't want to keep updating reg_offs (in case it overflows,
5088 // though anyone passing 2GB of arguments, each at most 16 bytes, deserves
5089 // whatever they get).
Craig Topper8a13c412014-05-21 05:09:00 +00005090 llvm::Value *UsingStack = nullptr;
Tim Northovera2ee4332014-03-29 15:09:45 +00005091 UsingStack = CGF.Builder.CreateICmpSGE(
5092 reg_offs, llvm::ConstantInt::get(CGF.Int32Ty, 0));
5093
5094 CGF.Builder.CreateCondBr(UsingStack, OnStackBlock, MaybeRegBlock);
5095
5096 // Otherwise, at least some kind of argument could go in these registers, the
Bob Wilson3abf1692014-04-21 01:23:36 +00005097 // question is whether this particular type is too big.
Tim Northovera2ee4332014-03-29 15:09:45 +00005098 CGF.EmitBlock(MaybeRegBlock);
5099
5100 // Integer arguments may need to correct register alignment (for example a
5101 // "struct { __int128 a; };" gets passed in x_2N, x_{2N+1}). In this case we
5102 // align __gr_offs to calculate the potential address.
John McCall7f416cc2015-09-08 08:05:57 +00005103 if (!IsFPR && !IsIndirect && TyAlign.getQuantity() > 8) {
5104 int Align = TyAlign.getQuantity();
Tim Northovera2ee4332014-03-29 15:09:45 +00005105
5106 reg_offs = CGF.Builder.CreateAdd(
5107 reg_offs, llvm::ConstantInt::get(CGF.Int32Ty, Align - 1),
5108 "align_regoffs");
5109 reg_offs = CGF.Builder.CreateAnd(
5110 reg_offs, llvm::ConstantInt::get(CGF.Int32Ty, -Align),
5111 "aligned_regoffs");
5112 }
5113
5114 // Update the gr_offs/vr_offs pointer for next call to va_arg on this va_list.
John McCall7f416cc2015-09-08 08:05:57 +00005115 // The fact that this is done unconditionally reflects the fact that
5116 // allocating an argument to the stack also uses up all the remaining
5117 // registers of the appropriate kind.
Craig Topper8a13c412014-05-21 05:09:00 +00005118 llvm::Value *NewOffset = nullptr;
Tim Northovera2ee4332014-03-29 15:09:45 +00005119 NewOffset = CGF.Builder.CreateAdd(
5120 reg_offs, llvm::ConstantInt::get(CGF.Int32Ty, RegSize), "new_reg_offs");
5121 CGF.Builder.CreateStore(NewOffset, reg_offs_p);
5122
5123 // Now we're in a position to decide whether this argument really was in
5124 // registers or not.
Craig Topper8a13c412014-05-21 05:09:00 +00005125 llvm::Value *InRegs = nullptr;
Tim Northovera2ee4332014-03-29 15:09:45 +00005126 InRegs = CGF.Builder.CreateICmpSLE(
5127 NewOffset, llvm::ConstantInt::get(CGF.Int32Ty, 0), "inreg");
5128
5129 CGF.Builder.CreateCondBr(InRegs, InRegBlock, OnStackBlock);
5130
5131 //=======================================
5132 // Argument was in registers
5133 //=======================================
5134
5135 // Now we emit the code for if the argument was originally passed in
5136 // registers. First start the appropriate block:
5137 CGF.EmitBlock(InRegBlock);
5138
John McCall7f416cc2015-09-08 08:05:57 +00005139 llvm::Value *reg_top = nullptr;
5140 Address reg_top_p = CGF.Builder.CreateStructGEP(VAListAddr, reg_top_index,
5141 reg_top_offset, "reg_top_p");
Tim Northovera2ee4332014-03-29 15:09:45 +00005142 reg_top = CGF.Builder.CreateLoad(reg_top_p, "reg_top");
John McCall7f416cc2015-09-08 08:05:57 +00005143 Address BaseAddr(CGF.Builder.CreateInBoundsGEP(reg_top, reg_offs),
5144 CharUnits::fromQuantity(IsFPR ? 16 : 8));
5145 Address RegAddr = Address::invalid();
5146 llvm::Type *MemTy = CGF.ConvertTypeForMem(Ty);
Tim Northovera2ee4332014-03-29 15:09:45 +00005147
5148 if (IsIndirect) {
5149 // If it's been passed indirectly (actually a struct), whatever we find from
5150 // stored registers or on the stack will actually be a struct **.
5151 MemTy = llvm::PointerType::getUnqual(MemTy);
5152 }
5153
Craig Topper8a13c412014-05-21 05:09:00 +00005154 const Type *Base = nullptr;
Reid Klecknere9f6a712014-10-31 17:10:41 +00005155 uint64_t NumMembers = 0;
5156 bool IsHFA = isHomogeneousAggregate(Ty, Base, NumMembers);
James Molloy467be602014-05-07 14:45:55 +00005157 if (IsHFA && NumMembers > 1) {
Tim Northovera2ee4332014-03-29 15:09:45 +00005158 // Homogeneous aggregates passed in registers will have their elements split
5159 // and stored 16-bytes apart regardless of size (they're notionally in qN,
5160 // qN+1, ...). We reload and store into a temporary local variable
5161 // contiguously.
5162 assert(!IsIndirect && "Homogeneous aggregates should be passed directly");
John McCall7f416cc2015-09-08 08:05:57 +00005163 auto BaseTyInfo = getContext().getTypeInfoInChars(QualType(Base, 0));
Tim Northovera2ee4332014-03-29 15:09:45 +00005164 llvm::Type *BaseTy = CGF.ConvertType(QualType(Base, 0));
5165 llvm::Type *HFATy = llvm::ArrayType::get(BaseTy, NumMembers);
John McCall7f416cc2015-09-08 08:05:57 +00005166 Address Tmp = CGF.CreateTempAlloca(HFATy,
5167 std::max(TyAlign, BaseTyInfo.second));
Tim Northovera2ee4332014-03-29 15:09:45 +00005168
John McCall7f416cc2015-09-08 08:05:57 +00005169 // On big-endian platforms, the value will be right-aligned in its slot.
5170 int Offset = 0;
5171 if (CGF.CGM.getDataLayout().isBigEndian() &&
5172 BaseTyInfo.first.getQuantity() < 16)
5173 Offset = 16 - BaseTyInfo.first.getQuantity();
5174
Tim Northovera2ee4332014-03-29 15:09:45 +00005175 for (unsigned i = 0; i < NumMembers; ++i) {
John McCall7f416cc2015-09-08 08:05:57 +00005176 CharUnits BaseOffset = CharUnits::fromQuantity(16 * i + Offset);
5177 Address LoadAddr =
5178 CGF.Builder.CreateConstInBoundsByteGEP(BaseAddr, BaseOffset);
5179 LoadAddr = CGF.Builder.CreateElementBitCast(LoadAddr, BaseTy);
5180
5181 Address StoreAddr =
5182 CGF.Builder.CreateConstArrayGEP(Tmp, i, BaseTyInfo.first);
Tim Northovera2ee4332014-03-29 15:09:45 +00005183
5184 llvm::Value *Elem = CGF.Builder.CreateLoad(LoadAddr);
5185 CGF.Builder.CreateStore(Elem, StoreAddr);
5186 }
5187
John McCall7f416cc2015-09-08 08:05:57 +00005188 RegAddr = CGF.Builder.CreateElementBitCast(Tmp, MemTy);
Tim Northovera2ee4332014-03-29 15:09:45 +00005189 } else {
John McCall7f416cc2015-09-08 08:05:57 +00005190 // Otherwise the object is contiguous in memory.
5191
5192 // It might be right-aligned in its slot.
5193 CharUnits SlotSize = BaseAddr.getAlignment();
5194 if (CGF.CGM.getDataLayout().isBigEndian() && !IsIndirect &&
James Molloy467be602014-05-07 14:45:55 +00005195 (IsHFA || !isAggregateTypeForABI(Ty)) &&
John McCall7f416cc2015-09-08 08:05:57 +00005196 TyInfo.first < SlotSize) {
5197 CharUnits Offset = SlotSize - TyInfo.first;
5198 BaseAddr = CGF.Builder.CreateConstInBoundsByteGEP(BaseAddr, Offset);
Tim Northovera2ee4332014-03-29 15:09:45 +00005199 }
5200
John McCall7f416cc2015-09-08 08:05:57 +00005201 RegAddr = CGF.Builder.CreateElementBitCast(BaseAddr, MemTy);
Tim Northovera2ee4332014-03-29 15:09:45 +00005202 }
5203
5204 CGF.EmitBranch(ContBlock);
5205
5206 //=======================================
5207 // Argument was on the stack
5208 //=======================================
5209 CGF.EmitBlock(OnStackBlock);
5210
John McCall7f416cc2015-09-08 08:05:57 +00005211 Address stack_p = CGF.Builder.CreateStructGEP(VAListAddr, 0,
5212 CharUnits::Zero(), "stack_p");
5213 llvm::Value *OnStackPtr = CGF.Builder.CreateLoad(stack_p, "stack");
Tim Northovera2ee4332014-03-29 15:09:45 +00005214
John McCall7f416cc2015-09-08 08:05:57 +00005215 // Again, stack arguments may need realignment. In this case both integer and
Tim Northovera2ee4332014-03-29 15:09:45 +00005216 // floating-point ones might be affected.
John McCall7f416cc2015-09-08 08:05:57 +00005217 if (!IsIndirect && TyAlign.getQuantity() > 8) {
5218 int Align = TyAlign.getQuantity();
Tim Northovera2ee4332014-03-29 15:09:45 +00005219
John McCall7f416cc2015-09-08 08:05:57 +00005220 OnStackPtr = CGF.Builder.CreatePtrToInt(OnStackPtr, CGF.Int64Ty);
Tim Northovera2ee4332014-03-29 15:09:45 +00005221
John McCall7f416cc2015-09-08 08:05:57 +00005222 OnStackPtr = CGF.Builder.CreateAdd(
5223 OnStackPtr, llvm::ConstantInt::get(CGF.Int64Ty, Align - 1),
Tim Northovera2ee4332014-03-29 15:09:45 +00005224 "align_stack");
John McCall7f416cc2015-09-08 08:05:57 +00005225 OnStackPtr = CGF.Builder.CreateAnd(
5226 OnStackPtr, llvm::ConstantInt::get(CGF.Int64Ty, -Align),
Tim Northovera2ee4332014-03-29 15:09:45 +00005227 "align_stack");
5228
John McCall7f416cc2015-09-08 08:05:57 +00005229 OnStackPtr = CGF.Builder.CreateIntToPtr(OnStackPtr, CGF.Int8PtrTy);
Tim Northovera2ee4332014-03-29 15:09:45 +00005230 }
John McCall7f416cc2015-09-08 08:05:57 +00005231 Address OnStackAddr(OnStackPtr,
5232 std::max(CharUnits::fromQuantity(8), TyAlign));
Tim Northovera2ee4332014-03-29 15:09:45 +00005233
John McCall7f416cc2015-09-08 08:05:57 +00005234 // All stack slots are multiples of 8 bytes.
5235 CharUnits StackSlotSize = CharUnits::fromQuantity(8);
5236 CharUnits StackSize;
Tim Northovera2ee4332014-03-29 15:09:45 +00005237 if (IsIndirect)
John McCall7f416cc2015-09-08 08:05:57 +00005238 StackSize = StackSlotSize;
Tim Northovera2ee4332014-03-29 15:09:45 +00005239 else
Rui Ueyama83aa9792016-01-14 21:00:27 +00005240 StackSize = TyInfo.first.alignTo(StackSlotSize);
Tim Northovera2ee4332014-03-29 15:09:45 +00005241
John McCall7f416cc2015-09-08 08:05:57 +00005242 llvm::Value *StackSizeC = CGF.Builder.getSize(StackSize);
Tim Northovera2ee4332014-03-29 15:09:45 +00005243 llvm::Value *NewStack =
John McCall7f416cc2015-09-08 08:05:57 +00005244 CGF.Builder.CreateInBoundsGEP(OnStackPtr, StackSizeC, "new_stack");
Tim Northovera2ee4332014-03-29 15:09:45 +00005245
5246 // Write the new value of __stack for the next call to va_arg
5247 CGF.Builder.CreateStore(NewStack, stack_p);
5248
5249 if (CGF.CGM.getDataLayout().isBigEndian() && !isAggregateTypeForABI(Ty) &&
John McCall7f416cc2015-09-08 08:05:57 +00005250 TyInfo.first < StackSlotSize) {
5251 CharUnits Offset = StackSlotSize - TyInfo.first;
5252 OnStackAddr = CGF.Builder.CreateConstInBoundsByteGEP(OnStackAddr, Offset);
Tim Northovera2ee4332014-03-29 15:09:45 +00005253 }
5254
John McCall7f416cc2015-09-08 08:05:57 +00005255 OnStackAddr = CGF.Builder.CreateElementBitCast(OnStackAddr, MemTy);
Tim Northovera2ee4332014-03-29 15:09:45 +00005256
5257 CGF.EmitBranch(ContBlock);
5258
5259 //=======================================
5260 // Tidy up
5261 //=======================================
5262 CGF.EmitBlock(ContBlock);
5263
John McCall7f416cc2015-09-08 08:05:57 +00005264 Address ResAddr = emitMergePHI(CGF, RegAddr, InRegBlock,
5265 OnStackAddr, OnStackBlock, "vaargs.addr");
Tim Northovera2ee4332014-03-29 15:09:45 +00005266
5267 if (IsIndirect)
John McCall7f416cc2015-09-08 08:05:57 +00005268 return Address(CGF.Builder.CreateLoad(ResAddr, "vaarg.addr"),
5269 TyInfo.second);
Tim Northovera2ee4332014-03-29 15:09:45 +00005270
5271 return ResAddr;
5272}
5273
John McCall7f416cc2015-09-08 08:05:57 +00005274Address AArch64ABIInfo::EmitDarwinVAArg(Address VAListAddr, QualType Ty,
5275 CodeGenFunction &CGF) const {
5276 // The backend's lowering doesn't support va_arg for aggregates or
5277 // illegal vector types. Lower VAArg here for these cases and use
5278 // the LLVM va_arg instruction for everything else.
Tim Northovera2ee4332014-03-29 15:09:45 +00005279 if (!isAggregateTypeForABI(Ty) && !isIllegalVectorType(Ty))
James Y Knight29b5f082016-02-24 02:59:33 +00005280 return EmitVAArgInstr(CGF, VAListAddr, Ty, ABIArgInfo::getDirect());
Tim Northovera2ee4332014-03-29 15:09:45 +00005281
John McCall7f416cc2015-09-08 08:05:57 +00005282 CharUnits SlotSize = CharUnits::fromQuantity(8);
Tim Northovera2ee4332014-03-29 15:09:45 +00005283
John McCall7f416cc2015-09-08 08:05:57 +00005284 // Empty records are ignored for parameter passing purposes.
Tim Northovera2ee4332014-03-29 15:09:45 +00005285 if (isEmptyRecord(getContext(), Ty, true)) {
John McCall7f416cc2015-09-08 08:05:57 +00005286 Address Addr(CGF.Builder.CreateLoad(VAListAddr, "ap.cur"), SlotSize);
5287 Addr = CGF.Builder.CreateElementBitCast(Addr, CGF.ConvertTypeForMem(Ty));
5288 return Addr;
Tim Northovera2ee4332014-03-29 15:09:45 +00005289 }
5290
John McCall7f416cc2015-09-08 08:05:57 +00005291 // The size of the actual thing passed, which might end up just
5292 // being a pointer for indirect types.
5293 auto TyInfo = getContext().getTypeInfoInChars(Ty);
5294
5295 // Arguments bigger than 16 bytes which aren't homogeneous
5296 // aggregates should be passed indirectly.
5297 bool IsIndirect = false;
5298 if (TyInfo.first.getQuantity() > 16) {
5299 const Type *Base = nullptr;
5300 uint64_t Members = 0;
5301 IsIndirect = !isHomogeneousAggregate(Ty, Base, Members);
Tim Northovera2ee4332014-03-29 15:09:45 +00005302 }
5303
John McCall7f416cc2015-09-08 08:05:57 +00005304 return emitVoidPtrVAArg(CGF, VAListAddr, Ty, IsIndirect,
5305 TyInfo, SlotSize, /*AllowHigherAlign*/ true);
Tim Northovera2ee4332014-03-29 15:09:45 +00005306}
5307
5308//===----------------------------------------------------------------------===//
Daniel Dunbard59655c2009-09-12 00:59:49 +00005309// ARM ABI Implementation
Chris Lattner0cf24192010-06-28 20:05:43 +00005310//===----------------------------------------------------------------------===//
Daniel Dunbard59655c2009-09-12 00:59:49 +00005311
5312namespace {
5313
John McCall12f23522016-04-04 18:33:08 +00005314class ARMABIInfo : public SwiftABIInfo {
Daniel Dunbar020daa92009-09-12 01:00:39 +00005315public:
5316 enum ABIKind {
5317 APCS = 0,
5318 AAPCS = 1,
Tim Northover5627d392015-10-30 16:30:45 +00005319 AAPCS_VFP = 2,
5320 AAPCS16_VFP = 3,
Daniel Dunbar020daa92009-09-12 01:00:39 +00005321 };
5322
5323private:
5324 ABIKind Kind;
5325
5326public:
John McCall12f23522016-04-04 18:33:08 +00005327 ARMABIInfo(CodeGenTypes &CGT, ABIKind _Kind)
5328 : SwiftABIInfo(CGT), Kind(_Kind) {
Anton Korobeynikovd90dd792014-12-02 16:04:58 +00005329 setCCs();
John McCall882987f2013-02-28 19:01:20 +00005330 }
Daniel Dunbar020daa92009-09-12 01:00:39 +00005331
John McCall3480ef22011-08-30 01:42:09 +00005332 bool isEABI() const {
Joerg Sonnenberger782e6aa2013-12-12 21:29:27 +00005333 switch (getTarget().getTriple().getEnvironment()) {
5334 case llvm::Triple::Android:
5335 case llvm::Triple::EABI:
Joerg Sonnenbergerd75a1f82013-12-16 19:16:04 +00005336 case llvm::Triple::EABIHF:
Joerg Sonnenberger782e6aa2013-12-12 21:29:27 +00005337 case llvm::Triple::GNUEABI:
Joerg Sonnenberger0c1652d2013-12-16 18:30:28 +00005338 case llvm::Triple::GNUEABIHF:
Rafael Espindola0fa66802016-06-24 21:35:06 +00005339 case llvm::Triple::MuslEABI:
5340 case llvm::Triple::MuslEABIHF:
Joerg Sonnenberger782e6aa2013-12-12 21:29:27 +00005341 return true;
5342 default:
5343 return false;
5344 }
John McCall3480ef22011-08-30 01:42:09 +00005345 }
5346
Joerg Sonnenbergerd75a1f82013-12-16 19:16:04 +00005347 bool isEABIHF() const {
5348 switch (getTarget().getTriple().getEnvironment()) {
5349 case llvm::Triple::EABIHF:
5350 case llvm::Triple::GNUEABIHF:
Rafael Espindola0fa66802016-06-24 21:35:06 +00005351 case llvm::Triple::MuslEABIHF:
Joerg Sonnenbergerd75a1f82013-12-16 19:16:04 +00005352 return true;
5353 default:
5354 return false;
5355 }
5356 }
5357
Daniel Dunbar020daa92009-09-12 01:00:39 +00005358 ABIKind getABIKind() const { return Kind; }
5359
Tim Northovera484bc02013-10-01 14:34:25 +00005360private:
Amara Emerson9dc78782014-01-28 10:56:36 +00005361 ABIArgInfo classifyReturnType(QualType RetTy, bool isVariadic) const;
Tim Northoverbc784d12015-02-24 17:22:40 +00005362 ABIArgInfo classifyArgumentType(QualType RetTy, bool isVariadic) const;
Manman Renfef9e312012-10-16 19:18:39 +00005363 bool isIllegalVectorType(QualType Ty) const;
Anton Korobeynikov244360d2009-06-05 22:08:42 +00005364
Reid Klecknere9f6a712014-10-31 17:10:41 +00005365 bool isHomogeneousAggregateBaseType(QualType Ty) const override;
5366 bool isHomogeneousAggregateSmallEnough(const Type *Ty,
5367 uint64_t Members) const override;
5368
Craig Topper4f12f102014-03-12 06:41:41 +00005369 void computeInfo(CGFunctionInfo &FI) const override;
Anton Korobeynikov244360d2009-06-05 22:08:42 +00005370
John McCall7f416cc2015-09-08 08:05:57 +00005371 Address EmitVAArg(CodeGenFunction &CGF, Address VAListAddr,
5372 QualType Ty) const override;
John McCall882987f2013-02-28 19:01:20 +00005373
5374 llvm::CallingConv::ID getLLVMDefaultCC() const;
5375 llvm::CallingConv::ID getABIDefaultCC() const;
Anton Korobeynikovd90dd792014-12-02 16:04:58 +00005376 void setCCs();
John McCall12f23522016-04-04 18:33:08 +00005377
5378 bool shouldPassIndirectlyForSwift(CharUnits totalSize,
5379 ArrayRef<llvm::Type*> scalars,
5380 bool asReturnValue) const override {
5381 return occupiesMoreThan(CGT, scalars, /*total*/ 4);
5382 }
Arnold Schwaighoferb0f2c332016-12-01 18:07:38 +00005383 bool isSwiftErrorInRegister() const override {
5384 return true;
5385 }
Anton Korobeynikov244360d2009-06-05 22:08:42 +00005386};
5387
Anton Korobeynikov55bcea12010-01-10 12:58:08 +00005388class ARMTargetCodeGenInfo : public TargetCodeGenInfo {
5389public:
Chris Lattner2b037972010-07-29 02:01:43 +00005390 ARMTargetCodeGenInfo(CodeGenTypes &CGT, ARMABIInfo::ABIKind K)
5391 :TargetCodeGenInfo(new ARMABIInfo(CGT, K)) {}
John McCallbeec5a02010-03-06 00:35:14 +00005392
John McCall3480ef22011-08-30 01:42:09 +00005393 const ARMABIInfo &getABIInfo() const {
5394 return static_cast<const ARMABIInfo&>(TargetCodeGenInfo::getABIInfo());
5395 }
5396
Craig Topper4f12f102014-03-12 06:41:41 +00005397 int getDwarfEHStackPointer(CodeGen::CodeGenModule &M) const override {
John McCallbeec5a02010-03-06 00:35:14 +00005398 return 13;
5399 }
Roman Divackyc1617352011-05-18 19:36:54 +00005400
Craig Topper4f12f102014-03-12 06:41:41 +00005401 StringRef getARCRetainAutoreleasedReturnValueMarker() const override {
John McCall31168b02011-06-15 23:02:42 +00005402 return "mov\tr7, r7\t\t@ marker for objc_retainAutoreleaseReturnValue";
5403 }
5404
Roman Divackyc1617352011-05-18 19:36:54 +00005405 bool initDwarfEHRegSizeTable(CodeGen::CodeGenFunction &CGF,
Craig Topper4f12f102014-03-12 06:41:41 +00005406 llvm::Value *Address) const override {
Chris Lattnerece04092012-02-07 00:39:47 +00005407 llvm::Value *Four8 = llvm::ConstantInt::get(CGF.Int8Ty, 4);
Roman Divackyc1617352011-05-18 19:36:54 +00005408
5409 // 0-15 are the 16 integer registers.
Chris Lattnerece04092012-02-07 00:39:47 +00005410 AssignToArrayRange(CGF.Builder, Address, Four8, 0, 15);
Roman Divackyc1617352011-05-18 19:36:54 +00005411 return false;
5412 }
John McCall3480ef22011-08-30 01:42:09 +00005413
Craig Topper4f12f102014-03-12 06:41:41 +00005414 unsigned getSizeOfUnwindException() const override {
John McCall3480ef22011-08-30 01:42:09 +00005415 if (getABIInfo().isEABI()) return 88;
5416 return TargetCodeGenInfo::getSizeOfUnwindException();
5417 }
Tim Northovera484bc02013-10-01 14:34:25 +00005418
Eric Christopher162c91c2015-06-05 22:03:00 +00005419 void setTargetAttributes(const Decl *D, llvm::GlobalValue *GV,
Craig Topper4f12f102014-03-12 06:41:41 +00005420 CodeGen::CodeGenModule &CGM) const override {
Akira Hatanakaaec6b2c2015-10-08 20:26:34 +00005421 const FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(D);
Tim Northovera484bc02013-10-01 14:34:25 +00005422 if (!FD)
5423 return;
5424
5425 const ARMInterruptAttr *Attr = FD->getAttr<ARMInterruptAttr>();
5426 if (!Attr)
5427 return;
5428
5429 const char *Kind;
5430 switch (Attr->getInterrupt()) {
5431 case ARMInterruptAttr::Generic: Kind = ""; break;
5432 case ARMInterruptAttr::IRQ: Kind = "IRQ"; break;
5433 case ARMInterruptAttr::FIQ: Kind = "FIQ"; break;
5434 case ARMInterruptAttr::SWI: Kind = "SWI"; break;
5435 case ARMInterruptAttr::ABORT: Kind = "ABORT"; break;
5436 case ARMInterruptAttr::UNDEF: Kind = "UNDEF"; break;
5437 }
5438
5439 llvm::Function *Fn = cast<llvm::Function>(GV);
5440
5441 Fn->addFnAttr("interrupt", Kind);
5442
Tim Northover5627d392015-10-30 16:30:45 +00005443 ARMABIInfo::ABIKind ABI = cast<ARMABIInfo>(getABIInfo()).getABIKind();
5444 if (ABI == ARMABIInfo::APCS)
Tim Northovera484bc02013-10-01 14:34:25 +00005445 return;
5446
5447 // AAPCS guarantees that sp will be 8-byte aligned on any public interface,
5448 // however this is not necessarily true on taking any interrupt. Instruct
5449 // the backend to perform a realignment as part of the function prologue.
5450 llvm::AttrBuilder B;
5451 B.addStackAlignmentAttr(8);
Reid Kleckneree4930b2017-05-02 22:07:37 +00005452 Fn->addAttributes(llvm::AttributeList::FunctionIndex, B);
Tim Northovera484bc02013-10-01 14:34:25 +00005453 }
Anton Korobeynikov55bcea12010-01-10 12:58:08 +00005454};
5455
Saleem Abdulrasool71d1dd12015-01-30 23:29:19 +00005456class WindowsARMTargetCodeGenInfo : public ARMTargetCodeGenInfo {
Saleem Abdulrasool71d1dd12015-01-30 23:29:19 +00005457public:
5458 WindowsARMTargetCodeGenInfo(CodeGenTypes &CGT, ARMABIInfo::ABIKind K)
5459 : ARMTargetCodeGenInfo(CGT, K) {}
5460
Eric Christopher162c91c2015-06-05 22:03:00 +00005461 void setTargetAttributes(const Decl *D, llvm::GlobalValue *GV,
Saleem Abdulrasool71d1dd12015-01-30 23:29:19 +00005462 CodeGen::CodeGenModule &CGM) const override;
Saleem Abdulrasool6e9e88b2016-06-23 13:45:33 +00005463
5464 void getDependentLibraryOption(llvm::StringRef Lib,
5465 llvm::SmallString<24> &Opt) const override {
5466 Opt = "/DEFAULTLIB:" + qualifyWindowsLibrary(Lib);
5467 }
5468
5469 void getDetectMismatchOption(llvm::StringRef Name, llvm::StringRef Value,
5470 llvm::SmallString<32> &Opt) const override {
5471 Opt = "/FAILIFMISMATCH:\"" + Name.str() + "=" + Value.str() + "\"";
5472 }
Saleem Abdulrasool71d1dd12015-01-30 23:29:19 +00005473};
5474
Eric Christopher162c91c2015-06-05 22:03:00 +00005475void WindowsARMTargetCodeGenInfo::setTargetAttributes(
Saleem Abdulrasool71d1dd12015-01-30 23:29:19 +00005476 const Decl *D, llvm::GlobalValue *GV, CodeGen::CodeGenModule &CGM) const {
Eric Christopher162c91c2015-06-05 22:03:00 +00005477 ARMTargetCodeGenInfo::setTargetAttributes(D, GV, CGM);
Saleem Abdulrasool71d1dd12015-01-30 23:29:19 +00005478 addStackProbeSizeTargetAttribute(D, GV, CGM);
5479}
Alexander Kornienkoab9db512015-06-22 23:07:51 +00005480}
Daniel Dunbard59655c2009-09-12 00:59:49 +00005481
Chris Lattner22326a12010-07-29 02:31:05 +00005482void ARMABIInfo::computeInfo(CGFunctionInfo &FI) const {
Tim Northoverbc784d12015-02-24 17:22:40 +00005483 if (!getCXXABI().classifyReturnType(FI))
Eric Christopher7565e0d2015-05-29 23:09:49 +00005484 FI.getReturnInfo() =
5485 classifyReturnType(FI.getReturnType(), FI.isVariadic());
Oliver Stannard405bded2014-02-11 09:25:50 +00005486
Tim Northoverbc784d12015-02-24 17:22:40 +00005487 for (auto &I : FI.arguments())
5488 I.info = classifyArgumentType(I.type, FI.isVariadic());
Daniel Dunbar020daa92009-09-12 01:00:39 +00005489
Anton Korobeynikov231e8752011-04-14 20:06:49 +00005490 // Always honor user-specified calling convention.
5491 if (FI.getCallingConvention() != llvm::CallingConv::C)
5492 return;
5493
John McCall882987f2013-02-28 19:01:20 +00005494 llvm::CallingConv::ID cc = getRuntimeCC();
5495 if (cc != llvm::CallingConv::C)
Tim Northoverbc784d12015-02-24 17:22:40 +00005496 FI.setEffectiveCallingConvention(cc);
John McCall882987f2013-02-28 19:01:20 +00005497}
Rafael Espindolaa92c4422010-06-16 16:13:39 +00005498
John McCall882987f2013-02-28 19:01:20 +00005499/// Return the default calling convention that LLVM will use.
5500llvm::CallingConv::ID ARMABIInfo::getLLVMDefaultCC() const {
5501 // The default calling convention that LLVM will infer.
Tim Northoverd88ecb32016-01-27 19:32:40 +00005502 if (isEABIHF() || getTarget().getTriple().isWatchABI())
John McCall882987f2013-02-28 19:01:20 +00005503 return llvm::CallingConv::ARM_AAPCS_VFP;
5504 else if (isEABI())
5505 return llvm::CallingConv::ARM_AAPCS;
5506 else
5507 return llvm::CallingConv::ARM_APCS;
5508}
5509
5510/// Return the calling convention that our ABI would like us to use
5511/// as the C calling convention.
5512llvm::CallingConv::ID ARMABIInfo::getABIDefaultCC() const {
Daniel Dunbar020daa92009-09-12 01:00:39 +00005513 switch (getABIKind()) {
John McCall882987f2013-02-28 19:01:20 +00005514 case APCS: return llvm::CallingConv::ARM_APCS;
5515 case AAPCS: return llvm::CallingConv::ARM_AAPCS;
5516 case AAPCS_VFP: return llvm::CallingConv::ARM_AAPCS_VFP;
Tim Northover5627d392015-10-30 16:30:45 +00005517 case AAPCS16_VFP: return llvm::CallingConv::ARM_AAPCS_VFP;
Daniel Dunbar020daa92009-09-12 01:00:39 +00005518 }
John McCall882987f2013-02-28 19:01:20 +00005519 llvm_unreachable("bad ABI kind");
5520}
5521
Anton Korobeynikovd90dd792014-12-02 16:04:58 +00005522void ARMABIInfo::setCCs() {
John McCall882987f2013-02-28 19:01:20 +00005523 assert(getRuntimeCC() == llvm::CallingConv::C);
5524
5525 // Don't muddy up the IR with a ton of explicit annotations if
5526 // they'd just match what LLVM will infer from the triple.
5527 llvm::CallingConv::ID abiCC = getABIDefaultCC();
5528 if (abiCC != getLLVMDefaultCC())
5529 RuntimeCC = abiCC;
Anton Korobeynikovd90dd792014-12-02 16:04:58 +00005530
Tim Northover5627d392015-10-30 16:30:45 +00005531 // AAPCS apparently requires runtime support functions to be soft-float, but
5532 // that's almost certainly for historic reasons (Thumb1 not supporting VFP
5533 // most likely). It's more convenient for AAPCS16_VFP to be hard-float.
5534 switch (getABIKind()) {
5535 case APCS:
5536 case AAPCS16_VFP:
5537 if (abiCC != getLLVMDefaultCC())
5538 BuiltinCC = abiCC;
5539 break;
5540 case AAPCS:
5541 case AAPCS_VFP:
5542 BuiltinCC = llvm::CallingConv::ARM_AAPCS;
5543 break;
5544 }
Anton Korobeynikov244360d2009-06-05 22:08:42 +00005545}
5546
Tim Northoverbc784d12015-02-24 17:22:40 +00005547ABIArgInfo ARMABIInfo::classifyArgumentType(QualType Ty,
5548 bool isVariadic) const {
Manman Ren2a523d82012-10-30 23:21:41 +00005549 // 6.1.2.1 The following argument types are VFP CPRCs:
5550 // A single-precision floating-point type (including promoted
5551 // half-precision types); A double-precision floating-point type;
5552 // A 64-bit or 128-bit containerized vector type; Homogeneous Aggregate
5553 // with a Base Type of a single- or double-precision floating-point type,
5554 // 64-bit containerized vectors or 128-bit containerized vectors with one
5555 // to four Elements.
Tim Northover5a1558e2014-11-07 22:30:50 +00005556 bool IsEffectivelyAAPCS_VFP = getABIKind() == AAPCS_VFP && !isVariadic;
Oliver Stannard2bfdc5b2014-08-27 10:43:15 +00005557
Reid Klecknerb1be6832014-11-15 01:41:41 +00005558 Ty = useFirstFieldIfTransparentUnion(Ty);
5559
Manman Renfef9e312012-10-16 19:18:39 +00005560 // Handle illegal vector types here.
5561 if (isIllegalVectorType(Ty)) {
5562 uint64_t Size = getContext().getTypeSize(Ty);
5563 if (Size <= 32) {
5564 llvm::Type *ResType =
5565 llvm::Type::getInt32Ty(getVMContext());
Tim Northover5a1558e2014-11-07 22:30:50 +00005566 return ABIArgInfo::getDirect(ResType);
Manman Renfef9e312012-10-16 19:18:39 +00005567 }
5568 if (Size == 64) {
5569 llvm::Type *ResType = llvm::VectorType::get(
5570 llvm::Type::getInt32Ty(getVMContext()), 2);
Tim Northover5a1558e2014-11-07 22:30:50 +00005571 return ABIArgInfo::getDirect(ResType);
Manman Renfef9e312012-10-16 19:18:39 +00005572 }
5573 if (Size == 128) {
5574 llvm::Type *ResType = llvm::VectorType::get(
5575 llvm::Type::getInt32Ty(getVMContext()), 4);
Tim Northover5a1558e2014-11-07 22:30:50 +00005576 return ABIArgInfo::getDirect(ResType);
Manman Renfef9e312012-10-16 19:18:39 +00005577 }
John McCall7f416cc2015-09-08 08:05:57 +00005578 return getNaturalAlignIndirect(Ty, /*ByVal=*/false);
Manman Renfef9e312012-10-16 19:18:39 +00005579 }
5580
Oliver Stannarddc2854c2015-09-03 12:40:58 +00005581 // __fp16 gets passed as if it were an int or float, but with the top 16 bits
5582 // unspecified. This is not done for OpenCL as it handles the half type
5583 // natively, and does not need to interwork with AAPCS code.
Pirama Arumuga Nainar8e2e9d62016-03-18 16:58:36 +00005584 if (Ty->isHalfType() && !getContext().getLangOpts().NativeHalfArgsAndReturns) {
Oliver Stannarddc2854c2015-09-03 12:40:58 +00005585 llvm::Type *ResType = IsEffectivelyAAPCS_VFP ?
5586 llvm::Type::getFloatTy(getVMContext()) :
5587 llvm::Type::getInt32Ty(getVMContext());
5588 return ABIArgInfo::getDirect(ResType);
5589 }
5590
John McCalla1dee5302010-08-22 10:59:02 +00005591 if (!isAggregateTypeForABI(Ty)) {
Douglas Gregora71cc152010-02-02 20:10:50 +00005592 // Treat an enum type as its underlying type.
Oliver Stannard405bded2014-02-11 09:25:50 +00005593 if (const EnumType *EnumTy = Ty->getAs<EnumType>()) {
Douglas Gregora71cc152010-02-02 20:10:50 +00005594 Ty = EnumTy->getDecl()->getIntegerType();
Oliver Stannard405bded2014-02-11 09:25:50 +00005595 }
Douglas Gregora71cc152010-02-02 20:10:50 +00005596
Tim Northover5a1558e2014-11-07 22:30:50 +00005597 return (Ty->isPromotableIntegerType() ? ABIArgInfo::getExtend()
5598 : ABIArgInfo::getDirect());
Douglas Gregora71cc152010-02-02 20:10:50 +00005599 }
Daniel Dunbar626f1d82009-09-13 08:03:58 +00005600
Oliver Stannard405bded2014-02-11 09:25:50 +00005601 if (CGCXXABI::RecordArgABI RAA = getRecordArgABI(Ty, getCXXABI())) {
John McCall7f416cc2015-09-08 08:05:57 +00005602 return getNaturalAlignIndirect(Ty, RAA == CGCXXABI::RAA_DirectInMemory);
Oliver Stannard405bded2014-02-11 09:25:50 +00005603 }
Tim Northover1060eae2013-06-21 22:49:34 +00005604
Daniel Dunbar09d33622009-09-14 21:54:03 +00005605 // Ignore empty records.
Chris Lattner458b2aa2010-07-29 02:16:43 +00005606 if (isEmptyRecord(getContext(), Ty, true))
Daniel Dunbar09d33622009-09-14 21:54:03 +00005607 return ABIArgInfo::getIgnore();
5608
Tim Northover5a1558e2014-11-07 22:30:50 +00005609 if (IsEffectivelyAAPCS_VFP) {
Manman Ren2a523d82012-10-30 23:21:41 +00005610 // Homogeneous Aggregates need to be expanded when we can fit the aggregate
5611 // into VFP registers.
Craig Topper8a13c412014-05-21 05:09:00 +00005612 const Type *Base = nullptr;
Manman Ren2a523d82012-10-30 23:21:41 +00005613 uint64_t Members = 0;
Reid Klecknere9f6a712014-10-31 17:10:41 +00005614 if (isHomogeneousAggregate(Ty, Base, Members)) {
Anton Korobeynikov4215ca72012-04-13 11:22:00 +00005615 assert(Base && "Base class should be set for homogeneous aggregate");
Manman Ren2a523d82012-10-30 23:21:41 +00005616 // Base can be a floating-point or a vector.
Tim Northover5a1558e2014-11-07 22:30:50 +00005617 return ABIArgInfo::getDirect(nullptr, 0, nullptr, false);
Anton Korobeynikov4215ca72012-04-13 11:22:00 +00005618 }
Tim Northover5627d392015-10-30 16:30:45 +00005619 } else if (getABIKind() == ARMABIInfo::AAPCS16_VFP) {
5620 // WatchOS does have homogeneous aggregates. Note that we intentionally use
5621 // this convention even for a variadic function: the backend will use GPRs
5622 // if needed.
5623 const Type *Base = nullptr;
5624 uint64_t Members = 0;
5625 if (isHomogeneousAggregate(Ty, Base, Members)) {
5626 assert(Base && Members <= 4 && "unexpected homogeneous aggregate");
5627 llvm::Type *Ty =
5628 llvm::ArrayType::get(CGT.ConvertType(QualType(Base, 0)), Members);
5629 return ABIArgInfo::getDirect(Ty, 0, nullptr, false);
5630 }
5631 }
5632
5633 if (getABIKind() == ARMABIInfo::AAPCS16_VFP &&
5634 getContext().getTypeSizeInChars(Ty) > CharUnits::fromQuantity(16)) {
5635 // WatchOS is adopting the 64-bit AAPCS rule on composite types: if they're
5636 // bigger than 128-bits, they get placed in space allocated by the caller,
5637 // and a pointer is passed.
5638 return ABIArgInfo::getIndirect(
5639 CharUnits::fromQuantity(getContext().getTypeAlign(Ty) / 8), false);
Bob Wilsone826a2a2011-08-03 05:58:22 +00005640 }
5641
Manman Ren6c30e132012-08-13 21:23:55 +00005642 // Support byval for ARM.
Manman Ren77b02382012-11-06 19:05:29 +00005643 // The ABI alignment for APCS is 4-byte and for AAPCS at least 4-byte and at
5644 // most 8-byte. We realign the indirect argument if type alignment is bigger
5645 // than ABI alignment.
Manman Ren505d68f2012-11-05 22:42:46 +00005646 uint64_t ABIAlign = 4;
5647 uint64_t TyAlign = getContext().getTypeAlign(Ty) / 8;
5648 if (getABIKind() == ARMABIInfo::AAPCS_VFP ||
Tim Northoverd157e192015-03-09 21:40:42 +00005649 getABIKind() == ARMABIInfo::AAPCS)
Manman Ren505d68f2012-11-05 22:42:46 +00005650 ABIAlign = std::min(std::max(TyAlign, (uint64_t)4), (uint64_t)8);
Tim Northoverd157e192015-03-09 21:40:42 +00005651
Manman Ren8cd99812012-11-06 04:58:01 +00005652 if (getContext().getTypeSizeInChars(Ty) > CharUnits::fromQuantity(64)) {
Tim Northover5627d392015-10-30 16:30:45 +00005653 assert(getABIKind() != ARMABIInfo::AAPCS16_VFP && "unexpected byval");
John McCall7f416cc2015-09-08 08:05:57 +00005654 return ABIArgInfo::getIndirect(CharUnits::fromQuantity(ABIAlign),
5655 /*ByVal=*/true,
5656 /*Realign=*/TyAlign > ABIAlign);
Eli Friedmane66abda2012-08-09 00:31:40 +00005657 }
5658
Pirama Arumuga Nainarbb846a32016-07-27 19:01:51 +00005659 // On RenderScript, coerce Aggregates <= 64 bytes to an integer array of
5660 // same size and alignment.
5661 if (getTarget().isRenderScriptTarget()) {
5662 return coerceToIntArray(Ty, getContext(), getVMContext());
5663 }
5664
Daniel Dunbarb34b0802010-09-23 01:54:28 +00005665 // Otherwise, pass by coercing to a structure of the appropriate size.
Chris Lattner2192fe52011-07-18 04:24:23 +00005666 llvm::Type* ElemTy;
Anton Korobeynikov244360d2009-06-05 22:08:42 +00005667 unsigned SizeRegs;
Eli Friedmane66abda2012-08-09 00:31:40 +00005668 // FIXME: Try to match the types of the arguments more accurately where
5669 // we can.
5670 if (getContext().getTypeAlign(Ty) <= 32) {
Bob Wilson8e2b75d2011-08-01 23:39:04 +00005671 ElemTy = llvm::Type::getInt32Ty(getVMContext());
5672 SizeRegs = (getContext().getTypeSize(Ty) + 31) / 32;
Manman Ren6fdb1582012-06-25 22:04:00 +00005673 } else {
Manman Ren6fdb1582012-06-25 22:04:00 +00005674 ElemTy = llvm::Type::getInt64Ty(getVMContext());
5675 SizeRegs = (getContext().getTypeSize(Ty) + 63) / 64;
Stuart Hastingsf2752a32011-04-27 17:24:02 +00005676 }
Stuart Hastings4b214952011-04-28 18:16:06 +00005677
Tim Northover5a1558e2014-11-07 22:30:50 +00005678 return ABIArgInfo::getDirect(llvm::ArrayType::get(ElemTy, SizeRegs));
Anton Korobeynikov244360d2009-06-05 22:08:42 +00005679}
5680
Chris Lattner458b2aa2010-07-29 02:16:43 +00005681static bool isIntegerLikeType(QualType Ty, ASTContext &Context,
Daniel Dunbar626f1d82009-09-13 08:03:58 +00005682 llvm::LLVMContext &VMContext) {
5683 // APCS, C Language Calling Conventions, Non-Simple Return Values: A structure
5684 // is called integer-like if its size is less than or equal to one word, and
5685 // the offset of each of its addressable sub-fields is zero.
5686
5687 uint64_t Size = Context.getTypeSize(Ty);
5688
5689 // Check that the type fits in a word.
5690 if (Size > 32)
5691 return false;
5692
5693 // FIXME: Handle vector types!
5694 if (Ty->isVectorType())
5695 return false;
5696
Daniel Dunbard53bac72009-09-14 02:20:34 +00005697 // Float types are never treated as "integer like".
5698 if (Ty->isRealFloatingType())
5699 return false;
5700
Daniel Dunbar626f1d82009-09-13 08:03:58 +00005701 // If this is a builtin or pointer type then it is ok.
John McCall9dd450b2009-09-21 23:43:11 +00005702 if (Ty->getAs<BuiltinType>() || Ty->isPointerType())
Daniel Dunbar626f1d82009-09-13 08:03:58 +00005703 return true;
5704
Daniel Dunbar96ebba52010-02-01 23:31:26 +00005705 // Small complex integer types are "integer like".
5706 if (const ComplexType *CT = Ty->getAs<ComplexType>())
5707 return isIntegerLikeType(CT->getElementType(), Context, VMContext);
Daniel Dunbar626f1d82009-09-13 08:03:58 +00005708
5709 // Single element and zero sized arrays should be allowed, by the definition
5710 // above, but they are not.
5711
5712 // Otherwise, it must be a record type.
5713 const RecordType *RT = Ty->getAs<RecordType>();
5714 if (!RT) return false;
5715
5716 // Ignore records with flexible arrays.
5717 const RecordDecl *RD = RT->getDecl();
5718 if (RD->hasFlexibleArrayMember())
5719 return false;
5720
5721 // Check that all sub-fields are at offset 0, and are themselves "integer
5722 // like".
5723 const ASTRecordLayout &Layout = Context.getASTRecordLayout(RD);
5724
5725 bool HadField = false;
5726 unsigned idx = 0;
5727 for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end();
5728 i != e; ++i, ++idx) {
David Blaikie40ed2972012-06-06 20:45:41 +00005729 const FieldDecl *FD = *i;
Daniel Dunbar626f1d82009-09-13 08:03:58 +00005730
Daniel Dunbar45c7ff12010-01-29 03:22:29 +00005731 // Bit-fields are not addressable, we only need to verify they are "integer
5732 // like". We still have to disallow a subsequent non-bitfield, for example:
5733 // struct { int : 0; int x }
5734 // is non-integer like according to gcc.
5735 if (FD->isBitField()) {
5736 if (!RD->isUnion())
5737 HadField = true;
Daniel Dunbar626f1d82009-09-13 08:03:58 +00005738
Daniel Dunbar45c7ff12010-01-29 03:22:29 +00005739 if (!isIntegerLikeType(FD->getType(), Context, VMContext))
5740 return false;
Daniel Dunbar626f1d82009-09-13 08:03:58 +00005741
Daniel Dunbar45c7ff12010-01-29 03:22:29 +00005742 continue;
Daniel Dunbar626f1d82009-09-13 08:03:58 +00005743 }
5744
Daniel Dunbar45c7ff12010-01-29 03:22:29 +00005745 // Check if this field is at offset 0.
5746 if (Layout.getFieldOffset(idx) != 0)
5747 return false;
5748
Daniel Dunbar626f1d82009-09-13 08:03:58 +00005749 if (!isIntegerLikeType(FD->getType(), Context, VMContext))
5750 return false;
Michael J. Spencerb2f376b2010-08-25 18:17:27 +00005751
Daniel Dunbar45c7ff12010-01-29 03:22:29 +00005752 // Only allow at most one field in a structure. This doesn't match the
5753 // wording above, but follows gcc in situations with a field following an
5754 // empty structure.
Daniel Dunbar626f1d82009-09-13 08:03:58 +00005755 if (!RD->isUnion()) {
5756 if (HadField)
5757 return false;
5758
5759 HadField = true;
5760 }
5761 }
5762
5763 return true;
5764}
5765
Oliver Stannard405bded2014-02-11 09:25:50 +00005766ABIArgInfo ARMABIInfo::classifyReturnType(QualType RetTy,
5767 bool isVariadic) const {
Tim Northover5627d392015-10-30 16:30:45 +00005768 bool IsEffectivelyAAPCS_VFP =
5769 (getABIKind() == AAPCS_VFP || getABIKind() == AAPCS16_VFP) && !isVariadic;
Oliver Stannard2bfdc5b2014-08-27 10:43:15 +00005770
Daniel Dunbar626f1d82009-09-13 08:03:58 +00005771 if (RetTy->isVoidType())
Anton Korobeynikov244360d2009-06-05 22:08:42 +00005772 return ABIArgInfo::getIgnore();
Daniel Dunbar626f1d82009-09-13 08:03:58 +00005773
Daniel Dunbar19964db2010-09-23 01:54:32 +00005774 // Large vector types should be returned via memory.
Oliver Stannard405bded2014-02-11 09:25:50 +00005775 if (RetTy->isVectorType() && getContext().getTypeSize(RetTy) > 128) {
John McCall7f416cc2015-09-08 08:05:57 +00005776 return getNaturalAlignIndirect(RetTy);
Oliver Stannard405bded2014-02-11 09:25:50 +00005777 }
Daniel Dunbar19964db2010-09-23 01:54:32 +00005778
Oliver Stannarddc2854c2015-09-03 12:40:58 +00005779 // __fp16 gets returned as if it were an int or float, but with the top 16
5780 // bits unspecified. This is not done for OpenCL as it handles the half type
5781 // natively, and does not need to interwork with AAPCS code.
Pirama Arumuga Nainar8e2e9d62016-03-18 16:58:36 +00005782 if (RetTy->isHalfType() && !getContext().getLangOpts().NativeHalfArgsAndReturns) {
Oliver Stannarddc2854c2015-09-03 12:40:58 +00005783 llvm::Type *ResType = IsEffectivelyAAPCS_VFP ?
5784 llvm::Type::getFloatTy(getVMContext()) :
5785 llvm::Type::getInt32Ty(getVMContext());
5786 return ABIArgInfo::getDirect(ResType);
5787 }
5788
John McCalla1dee5302010-08-22 10:59:02 +00005789 if (!isAggregateTypeForABI(RetTy)) {
Douglas Gregora71cc152010-02-02 20:10:50 +00005790 // Treat an enum type as its underlying type.
5791 if (const EnumType *EnumTy = RetTy->getAs<EnumType>())
5792 RetTy = EnumTy->getDecl()->getIntegerType();
5793
Tim Northover5a1558e2014-11-07 22:30:50 +00005794 return RetTy->isPromotableIntegerType() ? ABIArgInfo::getExtend()
5795 : ABIArgInfo::getDirect();
Douglas Gregora71cc152010-02-02 20:10:50 +00005796 }
Daniel Dunbar626f1d82009-09-13 08:03:58 +00005797
5798 // Are we following APCS?
5799 if (getABIKind() == APCS) {
Chris Lattner458b2aa2010-07-29 02:16:43 +00005800 if (isEmptyRecord(getContext(), RetTy, false))
Daniel Dunbar626f1d82009-09-13 08:03:58 +00005801 return ABIArgInfo::getIgnore();
5802
Daniel Dunbareedf1512010-02-01 23:31:19 +00005803 // Complex types are all returned as packed integers.
5804 //
5805 // FIXME: Consider using 2 x vector types if the back end handles them
5806 // correctly.
5807 if (RetTy->isAnyComplexType())
Oliver Stannard2bfdc5b2014-08-27 10:43:15 +00005808 return ABIArgInfo::getDirect(llvm::IntegerType::get(
5809 getVMContext(), getContext().getTypeSize(RetTy)));
Daniel Dunbareedf1512010-02-01 23:31:19 +00005810
Daniel Dunbar626f1d82009-09-13 08:03:58 +00005811 // Integer like structures are returned in r0.
Chris Lattner458b2aa2010-07-29 02:16:43 +00005812 if (isIntegerLikeType(RetTy, getContext(), getVMContext())) {
Daniel Dunbar626f1d82009-09-13 08:03:58 +00005813 // Return in the smallest viable integer type.
Chris Lattner458b2aa2010-07-29 02:16:43 +00005814 uint64_t Size = getContext().getTypeSize(RetTy);
Daniel Dunbar626f1d82009-09-13 08:03:58 +00005815 if (Size <= 8)
Chris Lattnerfe34c1d2010-07-29 06:26:06 +00005816 return ABIArgInfo::getDirect(llvm::Type::getInt8Ty(getVMContext()));
Daniel Dunbar626f1d82009-09-13 08:03:58 +00005817 if (Size <= 16)
Chris Lattnerfe34c1d2010-07-29 06:26:06 +00005818 return ABIArgInfo::getDirect(llvm::Type::getInt16Ty(getVMContext()));
5819 return ABIArgInfo::getDirect(llvm::Type::getInt32Ty(getVMContext()));
Daniel Dunbar626f1d82009-09-13 08:03:58 +00005820 }
5821
5822 // Otherwise return in memory.
John McCall7f416cc2015-09-08 08:05:57 +00005823 return getNaturalAlignIndirect(RetTy);
Anton Korobeynikov244360d2009-06-05 22:08:42 +00005824 }
Daniel Dunbar626f1d82009-09-13 08:03:58 +00005825
5826 // Otherwise this is an AAPCS variant.
5827
Chris Lattner458b2aa2010-07-29 02:16:43 +00005828 if (isEmptyRecord(getContext(), RetTy, true))
Daniel Dunbar1ce72512009-09-14 00:56:55 +00005829 return ABIArgInfo::getIgnore();
5830
Bob Wilson1d9269a2011-11-02 04:51:36 +00005831 // Check for homogeneous aggregates with AAPCS-VFP.
Tim Northover5a1558e2014-11-07 22:30:50 +00005832 if (IsEffectivelyAAPCS_VFP) {
Craig Topper8a13c412014-05-21 05:09:00 +00005833 const Type *Base = nullptr;
Tim Northover5627d392015-10-30 16:30:45 +00005834 uint64_t Members = 0;
Reid Klecknere9f6a712014-10-31 17:10:41 +00005835 if (isHomogeneousAggregate(RetTy, Base, Members)) {
Anton Korobeynikov4215ca72012-04-13 11:22:00 +00005836 assert(Base && "Base class should be set for homogeneous aggregate");
Bob Wilson1d9269a2011-11-02 04:51:36 +00005837 // Homogeneous Aggregates are returned directly.
Tim Northover5a1558e2014-11-07 22:30:50 +00005838 return ABIArgInfo::getDirect(nullptr, 0, nullptr, false);
Anton Korobeynikov4215ca72012-04-13 11:22:00 +00005839 }
Bob Wilson1d9269a2011-11-02 04:51:36 +00005840 }
5841
Daniel Dunbar626f1d82009-09-13 08:03:58 +00005842 // Aggregates <= 4 bytes are returned in r0; other aggregates
5843 // are returned indirectly.
Chris Lattner458b2aa2010-07-29 02:16:43 +00005844 uint64_t Size = getContext().getTypeSize(RetTy);
Daniel Dunbar1ce72512009-09-14 00:56:55 +00005845 if (Size <= 32) {
Pirama Arumuga Nainarbb846a32016-07-27 19:01:51 +00005846 // On RenderScript, coerce Aggregates <= 4 bytes to an integer array of
5847 // same size and alignment.
5848 if (getTarget().isRenderScriptTarget()) {
5849 return coerceToIntArray(RetTy, getContext(), getVMContext());
5850 }
Christian Pirkerc3d32172014-07-03 09:28:12 +00005851 if (getDataLayout().isBigEndian())
5852 // Return in 32 bit integer integer type (as if loaded by LDR, AAPCS 5.4)
Tim Northover5a1558e2014-11-07 22:30:50 +00005853 return ABIArgInfo::getDirect(llvm::Type::getInt32Ty(getVMContext()));
Christian Pirkerc3d32172014-07-03 09:28:12 +00005854
Daniel Dunbar1ce72512009-09-14 00:56:55 +00005855 // Return in the smallest viable integer type.
5856 if (Size <= 8)
Tim Northover5a1558e2014-11-07 22:30:50 +00005857 return ABIArgInfo::getDirect(llvm::Type::getInt8Ty(getVMContext()));
Daniel Dunbar1ce72512009-09-14 00:56:55 +00005858 if (Size <= 16)
Tim Northover5a1558e2014-11-07 22:30:50 +00005859 return ABIArgInfo::getDirect(llvm::Type::getInt16Ty(getVMContext()));
5860 return ABIArgInfo::getDirect(llvm::Type::getInt32Ty(getVMContext()));
Tim Northover5627d392015-10-30 16:30:45 +00005861 } else if (Size <= 128 && getABIKind() == AAPCS16_VFP) {
5862 llvm::Type *Int32Ty = llvm::Type::getInt32Ty(getVMContext());
5863 llvm::Type *CoerceTy =
Rui Ueyama83aa9792016-01-14 21:00:27 +00005864 llvm::ArrayType::get(Int32Ty, llvm::alignTo(Size, 32) / 32);
Tim Northover5627d392015-10-30 16:30:45 +00005865 return ABIArgInfo::getDirect(CoerceTy);
Daniel Dunbar1ce72512009-09-14 00:56:55 +00005866 }
5867
John McCall7f416cc2015-09-08 08:05:57 +00005868 return getNaturalAlignIndirect(RetTy);
Anton Korobeynikov244360d2009-06-05 22:08:42 +00005869}
5870
Manman Renfef9e312012-10-16 19:18:39 +00005871/// isIllegalVector - check whether Ty is an illegal vector type.
5872bool ARMABIInfo::isIllegalVectorType(QualType Ty) const {
Stephen Hines8267e7d2015-12-04 01:39:30 +00005873 if (const VectorType *VT = Ty->getAs<VectorType> ()) {
5874 if (isAndroid()) {
5875 // Android shipped using Clang 3.1, which supported a slightly different
5876 // vector ABI. The primary differences were that 3-element vector types
5877 // were legal, and so were sub 32-bit vectors (i.e. <2 x i8>). This path
5878 // accepts that legacy behavior for Android only.
5879 // Check whether VT is legal.
5880 unsigned NumElements = VT->getNumElements();
5881 // NumElements should be power of 2 or equal to 3.
5882 if (!llvm::isPowerOf2_32(NumElements) && NumElements != 3)
5883 return true;
5884 } else {
5885 // Check whether VT is legal.
5886 unsigned NumElements = VT->getNumElements();
5887 uint64_t Size = getContext().getTypeSize(VT);
5888 // NumElements should be power of 2.
5889 if (!llvm::isPowerOf2_32(NumElements))
5890 return true;
5891 // Size should be greater than 32 bits.
5892 return Size <= 32;
5893 }
Manman Renfef9e312012-10-16 19:18:39 +00005894 }
5895 return false;
5896}
5897
Reid Klecknere9f6a712014-10-31 17:10:41 +00005898bool ARMABIInfo::isHomogeneousAggregateBaseType(QualType Ty) const {
5899 // Homogeneous aggregates for AAPCS-VFP must have base types of float,
5900 // double, or 64-bit or 128-bit vectors.
5901 if (const BuiltinType *BT = Ty->getAs<BuiltinType>()) {
5902 if (BT->getKind() == BuiltinType::Float ||
5903 BT->getKind() == BuiltinType::Double ||
5904 BT->getKind() == BuiltinType::LongDouble)
5905 return true;
5906 } else if (const VectorType *VT = Ty->getAs<VectorType>()) {
5907 unsigned VecSize = getContext().getTypeSize(VT);
5908 if (VecSize == 64 || VecSize == 128)
5909 return true;
5910 }
5911 return false;
5912}
5913
5914bool ARMABIInfo::isHomogeneousAggregateSmallEnough(const Type *Base,
5915 uint64_t Members) const {
5916 return Members <= 4;
5917}
5918
John McCall7f416cc2015-09-08 08:05:57 +00005919Address ARMABIInfo::EmitVAArg(CodeGenFunction &CGF, Address VAListAddr,
5920 QualType Ty) const {
5921 CharUnits SlotSize = CharUnits::fromQuantity(4);
Anton Korobeynikov244360d2009-06-05 22:08:42 +00005922
John McCall7f416cc2015-09-08 08:05:57 +00005923 // Empty records are ignored for parameter passing purposes.
Tim Northover1711cc92013-06-21 23:05:33 +00005924 if (isEmptyRecord(getContext(), Ty, true)) {
John McCall7f416cc2015-09-08 08:05:57 +00005925 Address Addr(CGF.Builder.CreateLoad(VAListAddr), SlotSize);
5926 Addr = CGF.Builder.CreateElementBitCast(Addr, CGF.ConvertTypeForMem(Ty));
5927 return Addr;
Tim Northover1711cc92013-06-21 23:05:33 +00005928 }
5929
John McCall7f416cc2015-09-08 08:05:57 +00005930 auto TyInfo = getContext().getTypeInfoInChars(Ty);
5931 CharUnits TyAlignForABI = TyInfo.second;
Manman Rencca54d02012-10-16 19:01:37 +00005932
John McCall7f416cc2015-09-08 08:05:57 +00005933 // Use indirect if size of the illegal vector is bigger than 16 bytes.
5934 bool IsIndirect = false;
Tim Northover5627d392015-10-30 16:30:45 +00005935 const Type *Base = nullptr;
5936 uint64_t Members = 0;
John McCall7f416cc2015-09-08 08:05:57 +00005937 if (TyInfo.first > CharUnits::fromQuantity(16) && isIllegalVectorType(Ty)) {
5938 IsIndirect = true;
5939
Tim Northover5627d392015-10-30 16:30:45 +00005940 // ARMv7k passes structs bigger than 16 bytes indirectly, in space
5941 // allocated by the caller.
5942 } else if (TyInfo.first > CharUnits::fromQuantity(16) &&
5943 getABIKind() == ARMABIInfo::AAPCS16_VFP &&
5944 !isHomogeneousAggregate(Ty, Base, Members)) {
5945 IsIndirect = true;
5946
John McCall7f416cc2015-09-08 08:05:57 +00005947 // Otherwise, bound the type's ABI alignment.
Manman Rencca54d02012-10-16 19:01:37 +00005948 // The ABI alignment for 64-bit or 128-bit vectors is 8 for AAPCS and 4 for
5949 // APCS. For AAPCS, the ABI alignment is at least 4-byte and at most 8-byte.
John McCall7f416cc2015-09-08 08:05:57 +00005950 // Our callers should be prepared to handle an under-aligned address.
5951 } else if (getABIKind() == ARMABIInfo::AAPCS_VFP ||
5952 getABIKind() == ARMABIInfo::AAPCS) {
5953 TyAlignForABI = std::max(TyAlignForABI, CharUnits::fromQuantity(4));
5954 TyAlignForABI = std::min(TyAlignForABI, CharUnits::fromQuantity(8));
Tim Northover4c5cb9c2015-11-02 19:32:23 +00005955 } else if (getABIKind() == ARMABIInfo::AAPCS16_VFP) {
5956 // ARMv7k allows type alignment up to 16 bytes.
5957 TyAlignForABI = std::max(TyAlignForABI, CharUnits::fromQuantity(4));
5958 TyAlignForABI = std::min(TyAlignForABI, CharUnits::fromQuantity(16));
John McCall7f416cc2015-09-08 08:05:57 +00005959 } else {
5960 TyAlignForABI = CharUnits::fromQuantity(4);
Manman Renfef9e312012-10-16 19:18:39 +00005961 }
John McCall7f416cc2015-09-08 08:05:57 +00005962 TyInfo.second = TyAlignForABI;
Manman Rencca54d02012-10-16 19:01:37 +00005963
John McCall7f416cc2015-09-08 08:05:57 +00005964 return emitVoidPtrVAArg(CGF, VAListAddr, Ty, IsIndirect, TyInfo,
5965 SlotSize, /*AllowHigherAlign*/ true);
Anton Korobeynikov244360d2009-06-05 22:08:42 +00005966}
5967
Chris Lattner0cf24192010-06-28 20:05:43 +00005968//===----------------------------------------------------------------------===//
Justin Holewinski83e96682012-05-24 17:43:12 +00005969// NVPTX ABI Implementation
Justin Holewinskibd4a3c02011-04-22 11:10:38 +00005970//===----------------------------------------------------------------------===//
5971
5972namespace {
5973
Justin Holewinski83e96682012-05-24 17:43:12 +00005974class NVPTXABIInfo : public ABIInfo {
Justin Holewinskibd4a3c02011-04-22 11:10:38 +00005975public:
Justin Holewinski36837432013-03-30 14:38:24 +00005976 NVPTXABIInfo(CodeGenTypes &CGT) : ABIInfo(CGT) {}
Justin Holewinskibd4a3c02011-04-22 11:10:38 +00005977
5978 ABIArgInfo classifyReturnType(QualType RetTy) const;
5979 ABIArgInfo classifyArgumentType(QualType Ty) const;
5980
Craig Topper4f12f102014-03-12 06:41:41 +00005981 void computeInfo(CGFunctionInfo &FI) const override;
John McCall7f416cc2015-09-08 08:05:57 +00005982 Address EmitVAArg(CodeGenFunction &CGF, Address VAListAddr,
5983 QualType Ty) const override;
Justin Holewinskibd4a3c02011-04-22 11:10:38 +00005984};
5985
Justin Holewinski83e96682012-05-24 17:43:12 +00005986class NVPTXTargetCodeGenInfo : public TargetCodeGenInfo {
Justin Holewinskibd4a3c02011-04-22 11:10:38 +00005987public:
Justin Holewinski83e96682012-05-24 17:43:12 +00005988 NVPTXTargetCodeGenInfo(CodeGenTypes &CGT)
5989 : TargetCodeGenInfo(new NVPTXABIInfo(CGT)) {}
Craig Topper4f12f102014-03-12 06:41:41 +00005990
Eric Christopher162c91c2015-06-05 22:03:00 +00005991 void setTargetAttributes(const Decl *D, llvm::GlobalValue *GV,
Craig Topper4f12f102014-03-12 06:41:41 +00005992 CodeGen::CodeGenModule &M) const override;
Justin Holewinski36837432013-03-30 14:38:24 +00005993private:
Eli Benderskye06a2c42014-04-15 16:57:05 +00005994 // Adds a NamedMDNode with F, Name, and Operand as operands, and adds the
5995 // resulting MDNode to the nvvm.annotations MDNode.
5996 static void addNVVMMetadata(llvm::Function *F, StringRef Name, int Operand);
Justin Holewinskibd4a3c02011-04-22 11:10:38 +00005997};
5998
Justin Holewinski83e96682012-05-24 17:43:12 +00005999ABIArgInfo NVPTXABIInfo::classifyReturnType(QualType RetTy) const {
Justin Holewinskibd4a3c02011-04-22 11:10:38 +00006000 if (RetTy->isVoidType())
6001 return ABIArgInfo::getIgnore();
Justin Holewinskif9329ff2013-11-20 20:35:34 +00006002
6003 // note: this is different from default ABI
6004 if (!RetTy->isScalarType())
6005 return ABIArgInfo::getDirect();
6006
6007 // Treat an enum type as its underlying type.
6008 if (const EnumType *EnumTy = RetTy->getAs<EnumType>())
6009 RetTy = EnumTy->getDecl()->getIntegerType();
6010
6011 return (RetTy->isPromotableIntegerType() ?
6012 ABIArgInfo::getExtend() : ABIArgInfo::getDirect());
Justin Holewinskibd4a3c02011-04-22 11:10:38 +00006013}
6014
Justin Holewinski83e96682012-05-24 17:43:12 +00006015ABIArgInfo NVPTXABIInfo::classifyArgumentType(QualType Ty) const {
Justin Holewinskif9329ff2013-11-20 20:35:34 +00006016 // Treat an enum type as its underlying type.
6017 if (const EnumType *EnumTy = Ty->getAs<EnumType>())
6018 Ty = EnumTy->getDecl()->getIntegerType();
Justin Holewinskibd4a3c02011-04-22 11:10:38 +00006019
Eli Bendersky95338a02014-10-29 13:43:21 +00006020 // Return aggregates type as indirect by value
6021 if (isAggregateTypeForABI(Ty))
John McCall7f416cc2015-09-08 08:05:57 +00006022 return getNaturalAlignIndirect(Ty, /* byval */ true);
Eli Bendersky95338a02014-10-29 13:43:21 +00006023
Justin Holewinskif9329ff2013-11-20 20:35:34 +00006024 return (Ty->isPromotableIntegerType() ?
6025 ABIArgInfo::getExtend() : ABIArgInfo::getDirect());
Justin Holewinskibd4a3c02011-04-22 11:10:38 +00006026}
6027
Justin Holewinski83e96682012-05-24 17:43:12 +00006028void NVPTXABIInfo::computeInfo(CGFunctionInfo &FI) const {
Reid Kleckner40ca9132014-05-13 22:05:45 +00006029 if (!getCXXABI().classifyReturnType(FI))
6030 FI.getReturnInfo() = classifyReturnType(FI.getReturnType());
Aaron Ballmanec47bc22014-03-17 18:10:01 +00006031 for (auto &I : FI.arguments())
6032 I.info = classifyArgumentType(I.type);
Justin Holewinskibd4a3c02011-04-22 11:10:38 +00006033
6034 // Always honor user-specified calling convention.
6035 if (FI.getCallingConvention() != llvm::CallingConv::C)
6036 return;
6037
John McCall882987f2013-02-28 19:01:20 +00006038 FI.setEffectiveCallingConvention(getRuntimeCC());
6039}
6040
John McCall7f416cc2015-09-08 08:05:57 +00006041Address NVPTXABIInfo::EmitVAArg(CodeGenFunction &CGF, Address VAListAddr,
6042 QualType Ty) const {
Justin Holewinski83e96682012-05-24 17:43:12 +00006043 llvm_unreachable("NVPTX does not support varargs");
Justin Holewinskibd4a3c02011-04-22 11:10:38 +00006044}
6045
Justin Holewinski83e96682012-05-24 17:43:12 +00006046void NVPTXTargetCodeGenInfo::
Eric Christopher162c91c2015-06-05 22:03:00 +00006047setTargetAttributes(const Decl *D, llvm::GlobalValue *GV,
Justin Holewinski83e96682012-05-24 17:43:12 +00006048 CodeGen::CodeGenModule &M) const{
Akira Hatanakaaec6b2c2015-10-08 20:26:34 +00006049 const FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(D);
Justin Holewinski38031972011-10-05 17:58:44 +00006050 if (!FD) return;
6051
6052 llvm::Function *F = cast<llvm::Function>(GV);
6053
6054 // Perform special handling in OpenCL mode
David Blaikiebbafb8a2012-03-11 07:00:24 +00006055 if (M.getLangOpts().OpenCL) {
Justin Holewinski36837432013-03-30 14:38:24 +00006056 // Use OpenCL function attributes to check for kernel functions
Justin Holewinski38031972011-10-05 17:58:44 +00006057 // By default, all functions are device functions
Justin Holewinski38031972011-10-05 17:58:44 +00006058 if (FD->hasAttr<OpenCLKernelAttr>()) {
Justin Holewinski36837432013-03-30 14:38:24 +00006059 // OpenCL __kernel functions get kernel metadata
Eli Benderskye06a2c42014-04-15 16:57:05 +00006060 // Create !{<func-ref>, metadata !"kernel", i32 1} node
6061 addNVVMMetadata(F, "kernel", 1);
Justin Holewinski38031972011-10-05 17:58:44 +00006062 // And kernel functions are not subject to inlining
Bill Wendling207f0532012-12-20 19:27:06 +00006063 F->addFnAttr(llvm::Attribute::NoInline);
Justin Holewinski38031972011-10-05 17:58:44 +00006064 }
Peter Collingbourne5bad4af2011-10-06 16:49:54 +00006065 }
Justin Holewinski38031972011-10-05 17:58:44 +00006066
Peter Collingbourne5bad4af2011-10-06 16:49:54 +00006067 // Perform special handling in CUDA mode.
David Blaikiebbafb8a2012-03-11 07:00:24 +00006068 if (M.getLangOpts().CUDA) {
Justin Holewinski36837432013-03-30 14:38:24 +00006069 // CUDA __global__ functions get a kernel metadata entry. Since
Peter Collingbourne5bad4af2011-10-06 16:49:54 +00006070 // __global__ functions cannot be called from the device, we do not
6071 // need to set the noinline attribute.
Eli Benderskye06a2c42014-04-15 16:57:05 +00006072 if (FD->hasAttr<CUDAGlobalAttr>()) {
6073 // Create !{<func-ref>, metadata !"kernel", i32 1} node
6074 addNVVMMetadata(F, "kernel", 1);
6075 }
Artem Belevich7093e402015-04-21 22:55:54 +00006076 if (CUDALaunchBoundsAttr *Attr = FD->getAttr<CUDALaunchBoundsAttr>()) {
Eli Benderskye06a2c42014-04-15 16:57:05 +00006077 // Create !{<func-ref>, metadata !"maxntidx", i32 <val>} node
Artem Belevich7093e402015-04-21 22:55:54 +00006078 llvm::APSInt MaxThreads(32);
6079 MaxThreads = Attr->getMaxThreads()->EvaluateKnownConstInt(M.getContext());
6080 if (MaxThreads > 0)
6081 addNVVMMetadata(F, "maxntidx", MaxThreads.getExtValue());
6082
6083 // min blocks is an optional argument for CUDALaunchBoundsAttr. If it was
6084 // not specified in __launch_bounds__ or if the user specified a 0 value,
6085 // we don't have to add a PTX directive.
6086 if (Attr->getMinBlocks()) {
6087 llvm::APSInt MinBlocks(32);
6088 MinBlocks = Attr->getMinBlocks()->EvaluateKnownConstInt(M.getContext());
6089 if (MinBlocks > 0)
6090 // Create !{<func-ref>, metadata !"minctasm", i32 <val>} node
6091 addNVVMMetadata(F, "minctasm", MinBlocks.getExtValue());
Eli Benderskye06a2c42014-04-15 16:57:05 +00006092 }
6093 }
Justin Holewinski38031972011-10-05 17:58:44 +00006094 }
6095}
6096
Eli Benderskye06a2c42014-04-15 16:57:05 +00006097void NVPTXTargetCodeGenInfo::addNVVMMetadata(llvm::Function *F, StringRef Name,
6098 int Operand) {
Justin Holewinski36837432013-03-30 14:38:24 +00006099 llvm::Module *M = F->getParent();
6100 llvm::LLVMContext &Ctx = M->getContext();
6101
6102 // Get "nvvm.annotations" metadata node
6103 llvm::NamedMDNode *MD = M->getOrInsertNamedMetadata("nvvm.annotations");
6104
Duncan P. N. Exon Smithfb494912014-12-09 18:39:32 +00006105 llvm::Metadata *MDVals[] = {
6106 llvm::ConstantAsMetadata::get(F), llvm::MDString::get(Ctx, Name),
6107 llvm::ConstantAsMetadata::get(
6108 llvm::ConstantInt::get(llvm::Type::getInt32Ty(Ctx), Operand))};
Justin Holewinski36837432013-03-30 14:38:24 +00006109 // Append metadata to nvvm.annotations
6110 MD->addOperand(llvm::MDNode::get(Ctx, MDVals));
6111}
Alexander Kornienkoab9db512015-06-22 23:07:51 +00006112}
Justin Holewinskibd4a3c02011-04-22 11:10:38 +00006113
6114//===----------------------------------------------------------------------===//
Ulrich Weigand47445072013-05-06 16:26:41 +00006115// SystemZ ABI Implementation
6116//===----------------------------------------------------------------------===//
6117
6118namespace {
6119
Bryan Chane3f1ed52016-04-28 13:56:43 +00006120class SystemZABIInfo : public SwiftABIInfo {
Ulrich Weigand66ff51b2015-05-05 19:35:52 +00006121 bool HasVector;
6122
Ulrich Weigand47445072013-05-06 16:26:41 +00006123public:
Ulrich Weigand66ff51b2015-05-05 19:35:52 +00006124 SystemZABIInfo(CodeGenTypes &CGT, bool HV)
Bryan Chane3f1ed52016-04-28 13:56:43 +00006125 : SwiftABIInfo(CGT), HasVector(HV) {}
Ulrich Weigand47445072013-05-06 16:26:41 +00006126
6127 bool isPromotableIntegerType(QualType Ty) const;
6128 bool isCompoundType(QualType Ty) const;
Ulrich Weigand66ff51b2015-05-05 19:35:52 +00006129 bool isVectorArgumentType(QualType Ty) const;
Ulrich Weigand47445072013-05-06 16:26:41 +00006130 bool isFPArgumentType(QualType Ty) const;
Ulrich Weigand66ff51b2015-05-05 19:35:52 +00006131 QualType GetSingleElementType(QualType Ty) const;
Ulrich Weigand47445072013-05-06 16:26:41 +00006132
6133 ABIArgInfo classifyReturnType(QualType RetTy) const;
6134 ABIArgInfo classifyArgumentType(QualType ArgTy) const;
6135
Craig Topper4f12f102014-03-12 06:41:41 +00006136 void computeInfo(CGFunctionInfo &FI) const override {
Reid Kleckner40ca9132014-05-13 22:05:45 +00006137 if (!getCXXABI().classifyReturnType(FI))
6138 FI.getReturnInfo() = classifyReturnType(FI.getReturnType());
Aaron Ballmanec47bc22014-03-17 18:10:01 +00006139 for (auto &I : FI.arguments())
6140 I.info = classifyArgumentType(I.type);
Ulrich Weigand47445072013-05-06 16:26:41 +00006141 }
6142
John McCall7f416cc2015-09-08 08:05:57 +00006143 Address EmitVAArg(CodeGenFunction &CGF, Address VAListAddr,
6144 QualType Ty) const override;
Bryan Chane3f1ed52016-04-28 13:56:43 +00006145
6146 bool shouldPassIndirectlyForSwift(CharUnits totalSize,
6147 ArrayRef<llvm::Type*> scalars,
6148 bool asReturnValue) const override {
6149 return occupiesMoreThan(CGT, scalars, /*total*/ 4);
6150 }
Arnold Schwaighoferb0f2c332016-12-01 18:07:38 +00006151 bool isSwiftErrorInRegister() const override {
6152 return true;
6153 }
Ulrich Weigand47445072013-05-06 16:26:41 +00006154};
6155
6156class SystemZTargetCodeGenInfo : public TargetCodeGenInfo {
6157public:
Ulrich Weigand66ff51b2015-05-05 19:35:52 +00006158 SystemZTargetCodeGenInfo(CodeGenTypes &CGT, bool HasVector)
6159 : TargetCodeGenInfo(new SystemZABIInfo(CGT, HasVector)) {}
Ulrich Weigand47445072013-05-06 16:26:41 +00006160};
6161
Alexander Kornienkoab9db512015-06-22 23:07:51 +00006162}
Ulrich Weigand47445072013-05-06 16:26:41 +00006163
6164bool SystemZABIInfo::isPromotableIntegerType(QualType Ty) const {
6165 // Treat an enum type as its underlying type.
6166 if (const EnumType *EnumTy = Ty->getAs<EnumType>())
6167 Ty = EnumTy->getDecl()->getIntegerType();
6168
6169 // Promotable integer types are required to be promoted by the ABI.
6170 if (Ty->isPromotableIntegerType())
6171 return true;
6172
6173 // 32-bit values must also be promoted.
6174 if (const BuiltinType *BT = Ty->getAs<BuiltinType>())
6175 switch (BT->getKind()) {
6176 case BuiltinType::Int:
6177 case BuiltinType::UInt:
6178 return true;
6179 default:
6180 return false;
6181 }
6182 return false;
6183}
6184
6185bool SystemZABIInfo::isCompoundType(QualType Ty) const {
Ulrich Weigand759449c2015-03-30 13:49:01 +00006186 return (Ty->isAnyComplexType() ||
6187 Ty->isVectorType() ||
6188 isAggregateTypeForABI(Ty));
Ulrich Weigand47445072013-05-06 16:26:41 +00006189}
6190
Ulrich Weigand66ff51b2015-05-05 19:35:52 +00006191bool SystemZABIInfo::isVectorArgumentType(QualType Ty) const {
6192 return (HasVector &&
6193 Ty->isVectorType() &&
6194 getContext().getTypeSize(Ty) <= 128);
6195}
6196
Ulrich Weigand47445072013-05-06 16:26:41 +00006197bool SystemZABIInfo::isFPArgumentType(QualType Ty) const {
6198 if (const BuiltinType *BT = Ty->getAs<BuiltinType>())
6199 switch (BT->getKind()) {
6200 case BuiltinType::Float:
6201 case BuiltinType::Double:
6202 return true;
6203 default:
6204 return false;
6205 }
6206
Ulrich Weigand66ff51b2015-05-05 19:35:52 +00006207 return false;
6208}
6209
6210QualType SystemZABIInfo::GetSingleElementType(QualType Ty) const {
Ulrich Weigand47445072013-05-06 16:26:41 +00006211 if (const RecordType *RT = Ty->getAsStructureType()) {
6212 const RecordDecl *RD = RT->getDecl();
Ulrich Weigand66ff51b2015-05-05 19:35:52 +00006213 QualType Found;
Ulrich Weigand47445072013-05-06 16:26:41 +00006214
6215 // If this is a C++ record, check the bases first.
6216 if (const CXXRecordDecl *CXXRD = dyn_cast<CXXRecordDecl>(RD))
Aaron Ballman574705e2014-03-13 15:41:46 +00006217 for (const auto &I : CXXRD->bases()) {
6218 QualType Base = I.getType();
Ulrich Weigand47445072013-05-06 16:26:41 +00006219
6220 // Empty bases don't affect things either way.
6221 if (isEmptyRecord(getContext(), Base, true))
6222 continue;
6223
Ulrich Weigand66ff51b2015-05-05 19:35:52 +00006224 if (!Found.isNull())
6225 return Ty;
6226 Found = GetSingleElementType(Base);
Ulrich Weigand47445072013-05-06 16:26:41 +00006227 }
6228
6229 // Check the fields.
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00006230 for (const auto *FD : RD->fields()) {
Ulrich Weigand759449c2015-03-30 13:49:01 +00006231 // For compatibility with GCC, ignore empty bitfields in C++ mode.
Ulrich Weigand47445072013-05-06 16:26:41 +00006232 // Unlike isSingleElementStruct(), empty structure and array fields
6233 // do count. So do anonymous bitfields that aren't zero-sized.
Ulrich Weigand759449c2015-03-30 13:49:01 +00006234 if (getContext().getLangOpts().CPlusPlus &&
6235 FD->isBitField() && FD->getBitWidthValue(getContext()) == 0)
6236 continue;
Ulrich Weigand47445072013-05-06 16:26:41 +00006237
6238 // Unlike isSingleElementStruct(), arrays do not count.
Ulrich Weigand66ff51b2015-05-05 19:35:52 +00006239 // Nested structures still do though.
6240 if (!Found.isNull())
6241 return Ty;
6242 Found = GetSingleElementType(FD->getType());
Ulrich Weigand47445072013-05-06 16:26:41 +00006243 }
6244
6245 // Unlike isSingleElementStruct(), trailing padding is allowed.
6246 // An 8-byte aligned struct s { float f; } is passed as a double.
Ulrich Weigand66ff51b2015-05-05 19:35:52 +00006247 if (!Found.isNull())
6248 return Found;
Ulrich Weigand47445072013-05-06 16:26:41 +00006249 }
6250
Ulrich Weigand66ff51b2015-05-05 19:35:52 +00006251 return Ty;
Ulrich Weigand47445072013-05-06 16:26:41 +00006252}
6253
John McCall7f416cc2015-09-08 08:05:57 +00006254Address SystemZABIInfo::EmitVAArg(CodeGenFunction &CGF, Address VAListAddr,
6255 QualType Ty) const {
Ulrich Weigand47445072013-05-06 16:26:41 +00006256 // Assume that va_list type is correct; should be pointer to LLVM type:
6257 // struct {
6258 // i64 __gpr;
6259 // i64 __fpr;
6260 // i8 *__overflow_arg_area;
6261 // i8 *__reg_save_area;
6262 // };
6263
Ulrich Weigand66ff51b2015-05-05 19:35:52 +00006264 // Every non-vector argument occupies 8 bytes and is passed by preference
6265 // in either GPRs or FPRs. Vector arguments occupy 8 or 16 bytes and are
6266 // always passed on the stack.
John McCall7f416cc2015-09-08 08:05:57 +00006267 Ty = getContext().getCanonicalType(Ty);
6268 auto TyInfo = getContext().getTypeInfoInChars(Ty);
Ulrich Weigand759449c2015-03-30 13:49:01 +00006269 llvm::Type *ArgTy = CGF.ConvertTypeForMem(Ty);
John McCall7f416cc2015-09-08 08:05:57 +00006270 llvm::Type *DirectTy = ArgTy;
Ulrich Weigand47445072013-05-06 16:26:41 +00006271 ABIArgInfo AI = classifyArgumentType(Ty);
Ulrich Weigand47445072013-05-06 16:26:41 +00006272 bool IsIndirect = AI.isIndirect();
Ulrich Weigand759449c2015-03-30 13:49:01 +00006273 bool InFPRs = false;
Ulrich Weigand66ff51b2015-05-05 19:35:52 +00006274 bool IsVector = false;
John McCall7f416cc2015-09-08 08:05:57 +00006275 CharUnits UnpaddedSize;
6276 CharUnits DirectAlign;
Ulrich Weigand47445072013-05-06 16:26:41 +00006277 if (IsIndirect) {
John McCall7f416cc2015-09-08 08:05:57 +00006278 DirectTy = llvm::PointerType::getUnqual(DirectTy);
6279 UnpaddedSize = DirectAlign = CharUnits::fromQuantity(8);
Ulrich Weigand759449c2015-03-30 13:49:01 +00006280 } else {
6281 if (AI.getCoerceToType())
6282 ArgTy = AI.getCoerceToType();
6283 InFPRs = ArgTy->isFloatTy() || ArgTy->isDoubleTy();
Ulrich Weigand66ff51b2015-05-05 19:35:52 +00006284 IsVector = ArgTy->isVectorTy();
John McCall7f416cc2015-09-08 08:05:57 +00006285 UnpaddedSize = TyInfo.first;
6286 DirectAlign = TyInfo.second;
Ulrich Weigand759449c2015-03-30 13:49:01 +00006287 }
John McCall7f416cc2015-09-08 08:05:57 +00006288 CharUnits PaddedSize = CharUnits::fromQuantity(8);
6289 if (IsVector && UnpaddedSize > PaddedSize)
6290 PaddedSize = CharUnits::fromQuantity(16);
6291 assert((UnpaddedSize <= PaddedSize) && "Invalid argument size.");
Ulrich Weigand47445072013-05-06 16:26:41 +00006292
John McCall7f416cc2015-09-08 08:05:57 +00006293 CharUnits Padding = (PaddedSize - UnpaddedSize);
Ulrich Weigand47445072013-05-06 16:26:41 +00006294
Ulrich Weigand66ff51b2015-05-05 19:35:52 +00006295 llvm::Type *IndexTy = CGF.Int64Ty;
John McCall7f416cc2015-09-08 08:05:57 +00006296 llvm::Value *PaddedSizeV =
6297 llvm::ConstantInt::get(IndexTy, PaddedSize.getQuantity());
Ulrich Weigand66ff51b2015-05-05 19:35:52 +00006298
6299 if (IsVector) {
6300 // Work out the address of a vector argument on the stack.
6301 // Vector arguments are always passed in the high bits of a
6302 // single (8 byte) or double (16 byte) stack slot.
John McCall7f416cc2015-09-08 08:05:57 +00006303 Address OverflowArgAreaPtr =
6304 CGF.Builder.CreateStructGEP(VAListAddr, 2, CharUnits::fromQuantity(16),
Ulrich Weigand66ff51b2015-05-05 19:35:52 +00006305 "overflow_arg_area_ptr");
John McCall7f416cc2015-09-08 08:05:57 +00006306 Address OverflowArgArea =
6307 Address(CGF.Builder.CreateLoad(OverflowArgAreaPtr, "overflow_arg_area"),
6308 TyInfo.second);
6309 Address MemAddr =
6310 CGF.Builder.CreateElementBitCast(OverflowArgArea, DirectTy, "mem_addr");
Ulrich Weigand66ff51b2015-05-05 19:35:52 +00006311
6312 // Update overflow_arg_area_ptr pointer
6313 llvm::Value *NewOverflowArgArea =
John McCall7f416cc2015-09-08 08:05:57 +00006314 CGF.Builder.CreateGEP(OverflowArgArea.getPointer(), PaddedSizeV,
6315 "overflow_arg_area");
Ulrich Weigand66ff51b2015-05-05 19:35:52 +00006316 CGF.Builder.CreateStore(NewOverflowArgArea, OverflowArgAreaPtr);
6317
6318 return MemAddr;
6319 }
6320
John McCall7f416cc2015-09-08 08:05:57 +00006321 assert(PaddedSize.getQuantity() == 8);
6322
6323 unsigned MaxRegs, RegCountField, RegSaveIndex;
6324 CharUnits RegPadding;
Ulrich Weigand47445072013-05-06 16:26:41 +00006325 if (InFPRs) {
6326 MaxRegs = 4; // Maximum of 4 FPR arguments
6327 RegCountField = 1; // __fpr
6328 RegSaveIndex = 16; // save offset for f0
John McCall7f416cc2015-09-08 08:05:57 +00006329 RegPadding = CharUnits(); // floats are passed in the high bits of an FPR
Ulrich Weigand47445072013-05-06 16:26:41 +00006330 } else {
6331 MaxRegs = 5; // Maximum of 5 GPR arguments
6332 RegCountField = 0; // __gpr
6333 RegSaveIndex = 2; // save offset for r2
6334 RegPadding = Padding; // values are passed in the low bits of a GPR
6335 }
6336
John McCall7f416cc2015-09-08 08:05:57 +00006337 Address RegCountPtr = CGF.Builder.CreateStructGEP(
6338 VAListAddr, RegCountField, RegCountField * CharUnits::fromQuantity(8),
6339 "reg_count_ptr");
Ulrich Weigand47445072013-05-06 16:26:41 +00006340 llvm::Value *RegCount = CGF.Builder.CreateLoad(RegCountPtr, "reg_count");
Ulrich Weigand47445072013-05-06 16:26:41 +00006341 llvm::Value *MaxRegsV = llvm::ConstantInt::get(IndexTy, MaxRegs);
6342 llvm::Value *InRegs = CGF.Builder.CreateICmpULT(RegCount, MaxRegsV,
Oliver Stannard405bded2014-02-11 09:25:50 +00006343 "fits_in_regs");
Ulrich Weigand47445072013-05-06 16:26:41 +00006344
6345 llvm::BasicBlock *InRegBlock = CGF.createBasicBlock("vaarg.in_reg");
6346 llvm::BasicBlock *InMemBlock = CGF.createBasicBlock("vaarg.in_mem");
6347 llvm::BasicBlock *ContBlock = CGF.createBasicBlock("vaarg.end");
6348 CGF.Builder.CreateCondBr(InRegs, InRegBlock, InMemBlock);
6349
6350 // Emit code to load the value if it was passed in registers.
6351 CGF.EmitBlock(InRegBlock);
6352
6353 // Work out the address of an argument register.
Ulrich Weigand47445072013-05-06 16:26:41 +00006354 llvm::Value *ScaledRegCount =
6355 CGF.Builder.CreateMul(RegCount, PaddedSizeV, "scaled_reg_count");
6356 llvm::Value *RegBase =
John McCall7f416cc2015-09-08 08:05:57 +00006357 llvm::ConstantInt::get(IndexTy, RegSaveIndex * PaddedSize.getQuantity()
6358 + RegPadding.getQuantity());
Ulrich Weigand47445072013-05-06 16:26:41 +00006359 llvm::Value *RegOffset =
6360 CGF.Builder.CreateAdd(ScaledRegCount, RegBase, "reg_offset");
John McCall7f416cc2015-09-08 08:05:57 +00006361 Address RegSaveAreaPtr =
6362 CGF.Builder.CreateStructGEP(VAListAddr, 3, CharUnits::fromQuantity(24),
6363 "reg_save_area_ptr");
Ulrich Weigand47445072013-05-06 16:26:41 +00006364 llvm::Value *RegSaveArea =
6365 CGF.Builder.CreateLoad(RegSaveAreaPtr, "reg_save_area");
John McCall7f416cc2015-09-08 08:05:57 +00006366 Address RawRegAddr(CGF.Builder.CreateGEP(RegSaveArea, RegOffset,
6367 "raw_reg_addr"),
6368 PaddedSize);
6369 Address RegAddr =
6370 CGF.Builder.CreateElementBitCast(RawRegAddr, DirectTy, "reg_addr");
Ulrich Weigand47445072013-05-06 16:26:41 +00006371
6372 // Update the register count
6373 llvm::Value *One = llvm::ConstantInt::get(IndexTy, 1);
6374 llvm::Value *NewRegCount =
6375 CGF.Builder.CreateAdd(RegCount, One, "reg_count");
6376 CGF.Builder.CreateStore(NewRegCount, RegCountPtr);
6377 CGF.EmitBranch(ContBlock);
6378
6379 // Emit code to load the value if it was passed in memory.
6380 CGF.EmitBlock(InMemBlock);
6381
6382 // Work out the address of a stack argument.
John McCall7f416cc2015-09-08 08:05:57 +00006383 Address OverflowArgAreaPtr = CGF.Builder.CreateStructGEP(
6384 VAListAddr, 2, CharUnits::fromQuantity(16), "overflow_arg_area_ptr");
6385 Address OverflowArgArea =
6386 Address(CGF.Builder.CreateLoad(OverflowArgAreaPtr, "overflow_arg_area"),
6387 PaddedSize);
6388 Address RawMemAddr =
6389 CGF.Builder.CreateConstByteGEP(OverflowArgArea, Padding, "raw_mem_addr");
6390 Address MemAddr =
6391 CGF.Builder.CreateElementBitCast(RawMemAddr, DirectTy, "mem_addr");
Ulrich Weigand47445072013-05-06 16:26:41 +00006392
6393 // Update overflow_arg_area_ptr pointer
6394 llvm::Value *NewOverflowArgArea =
John McCall7f416cc2015-09-08 08:05:57 +00006395 CGF.Builder.CreateGEP(OverflowArgArea.getPointer(), PaddedSizeV,
6396 "overflow_arg_area");
Ulrich Weigand47445072013-05-06 16:26:41 +00006397 CGF.Builder.CreateStore(NewOverflowArgArea, OverflowArgAreaPtr);
6398 CGF.EmitBranch(ContBlock);
6399
6400 // Return the appropriate result.
6401 CGF.EmitBlock(ContBlock);
John McCall7f416cc2015-09-08 08:05:57 +00006402 Address ResAddr = emitMergePHI(CGF, RegAddr, InRegBlock,
6403 MemAddr, InMemBlock, "va_arg.addr");
Ulrich Weigand47445072013-05-06 16:26:41 +00006404
6405 if (IsIndirect)
John McCall7f416cc2015-09-08 08:05:57 +00006406 ResAddr = Address(CGF.Builder.CreateLoad(ResAddr, "indirect_arg"),
6407 TyInfo.second);
Ulrich Weigand47445072013-05-06 16:26:41 +00006408
6409 return ResAddr;
6410}
6411
Ulrich Weigand47445072013-05-06 16:26:41 +00006412ABIArgInfo SystemZABIInfo::classifyReturnType(QualType RetTy) const {
6413 if (RetTy->isVoidType())
6414 return ABIArgInfo::getIgnore();
Ulrich Weigand66ff51b2015-05-05 19:35:52 +00006415 if (isVectorArgumentType(RetTy))
6416 return ABIArgInfo::getDirect();
Ulrich Weigand47445072013-05-06 16:26:41 +00006417 if (isCompoundType(RetTy) || getContext().getTypeSize(RetTy) > 64)
John McCall7f416cc2015-09-08 08:05:57 +00006418 return getNaturalAlignIndirect(RetTy);
Ulrich Weigand47445072013-05-06 16:26:41 +00006419 return (isPromotableIntegerType(RetTy) ?
6420 ABIArgInfo::getExtend() : ABIArgInfo::getDirect());
6421}
6422
6423ABIArgInfo SystemZABIInfo::classifyArgumentType(QualType Ty) const {
6424 // Handle the generic C++ ABI.
Mark Lacey3825e832013-10-06 01:33:34 +00006425 if (CGCXXABI::RecordArgABI RAA = getRecordArgABI(Ty, getCXXABI()))
John McCall7f416cc2015-09-08 08:05:57 +00006426 return getNaturalAlignIndirect(Ty, RAA == CGCXXABI::RAA_DirectInMemory);
Ulrich Weigand47445072013-05-06 16:26:41 +00006427
6428 // Integers and enums are extended to full register width.
6429 if (isPromotableIntegerType(Ty))
6430 return ABIArgInfo::getExtend();
6431
Ulrich Weigand66ff51b2015-05-05 19:35:52 +00006432 // Handle vector types and vector-like structure types. Note that
6433 // as opposed to float-like structure types, we do not allow any
6434 // padding for vector-like structures, so verify the sizes match.
Ulrich Weigand47445072013-05-06 16:26:41 +00006435 uint64_t Size = getContext().getTypeSize(Ty);
Ulrich Weigand66ff51b2015-05-05 19:35:52 +00006436 QualType SingleElementTy = GetSingleElementType(Ty);
6437 if (isVectorArgumentType(SingleElementTy) &&
6438 getContext().getTypeSize(SingleElementTy) == Size)
6439 return ABIArgInfo::getDirect(CGT.ConvertType(SingleElementTy));
6440
6441 // Values that are not 1, 2, 4 or 8 bytes in size are passed indirectly.
Ulrich Weigand47445072013-05-06 16:26:41 +00006442 if (Size != 8 && Size != 16 && Size != 32 && Size != 64)
John McCall7f416cc2015-09-08 08:05:57 +00006443 return getNaturalAlignIndirect(Ty, /*ByVal=*/false);
Ulrich Weigand47445072013-05-06 16:26:41 +00006444
6445 // Handle small structures.
6446 if (const RecordType *RT = Ty->getAs<RecordType>()) {
6447 // Structures with flexible arrays have variable length, so really
6448 // fail the size test above.
6449 const RecordDecl *RD = RT->getDecl();
6450 if (RD->hasFlexibleArrayMember())
John McCall7f416cc2015-09-08 08:05:57 +00006451 return getNaturalAlignIndirect(Ty, /*ByVal=*/false);
Ulrich Weigand47445072013-05-06 16:26:41 +00006452
6453 // The structure is passed as an unextended integer, a float, or a double.
6454 llvm::Type *PassTy;
Ulrich Weigand66ff51b2015-05-05 19:35:52 +00006455 if (isFPArgumentType(SingleElementTy)) {
Ulrich Weigand47445072013-05-06 16:26:41 +00006456 assert(Size == 32 || Size == 64);
6457 if (Size == 32)
6458 PassTy = llvm::Type::getFloatTy(getVMContext());
6459 else
6460 PassTy = llvm::Type::getDoubleTy(getVMContext());
6461 } else
6462 PassTy = llvm::IntegerType::get(getVMContext(), Size);
6463 return ABIArgInfo::getDirect(PassTy);
6464 }
6465
6466 // Non-structure compounds are passed indirectly.
6467 if (isCompoundType(Ty))
John McCall7f416cc2015-09-08 08:05:57 +00006468 return getNaturalAlignIndirect(Ty, /*ByVal=*/false);
Ulrich Weigand47445072013-05-06 16:26:41 +00006469
Craig Topper8a13c412014-05-21 05:09:00 +00006470 return ABIArgInfo::getDirect(nullptr);
Ulrich Weigand47445072013-05-06 16:26:41 +00006471}
6472
6473//===----------------------------------------------------------------------===//
Anton Korobeynikov55bcea12010-01-10 12:58:08 +00006474// MSP430 ABI Implementation
Chris Lattner0cf24192010-06-28 20:05:43 +00006475//===----------------------------------------------------------------------===//
Anton Korobeynikov55bcea12010-01-10 12:58:08 +00006476
6477namespace {
6478
6479class MSP430TargetCodeGenInfo : public TargetCodeGenInfo {
6480public:
Chris Lattner2b037972010-07-29 02:01:43 +00006481 MSP430TargetCodeGenInfo(CodeGenTypes &CGT)
6482 : TargetCodeGenInfo(new DefaultABIInfo(CGT)) {}
Eric Christopher162c91c2015-06-05 22:03:00 +00006483 void setTargetAttributes(const Decl *D, llvm::GlobalValue *GV,
Craig Topper4f12f102014-03-12 06:41:41 +00006484 CodeGen::CodeGenModule &M) const override;
Anton Korobeynikov55bcea12010-01-10 12:58:08 +00006485};
6486
Alexander Kornienkoab9db512015-06-22 23:07:51 +00006487}
Anton Korobeynikov55bcea12010-01-10 12:58:08 +00006488
Eric Christopher162c91c2015-06-05 22:03:00 +00006489void MSP430TargetCodeGenInfo::setTargetAttributes(const Decl *D,
Anton Korobeynikov55bcea12010-01-10 12:58:08 +00006490 llvm::GlobalValue *GV,
6491 CodeGen::CodeGenModule &M) const {
Akira Hatanakaaec6b2c2015-10-08 20:26:34 +00006492 if (const FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(D)) {
Anton Korobeynikov55bcea12010-01-10 12:58:08 +00006493 if (const MSP430InterruptAttr *attr = FD->getAttr<MSP430InterruptAttr>()) {
6494 // Handle 'interrupt' attribute:
6495 llvm::Function *F = cast<llvm::Function>(GV);
6496
6497 // Step 1: Set ISR calling convention.
6498 F->setCallingConv(llvm::CallingConv::MSP430_INTR);
6499
6500 // Step 2: Add attributes goodness.
Bill Wendling207f0532012-12-20 19:27:06 +00006501 F->addFnAttr(llvm::Attribute::NoInline);
Anton Korobeynikov55bcea12010-01-10 12:58:08 +00006502
6503 // Step 3: Emit ISR vector alias.
Anton Korobeynikovc5a7f922012-11-26 18:59:10 +00006504 unsigned Num = attr->getNumber() / 2;
Rafael Espindola234405b2014-05-17 21:30:14 +00006505 llvm::GlobalAlias::create(llvm::Function::ExternalLinkage,
6506 "__isr_" + Twine(Num), F);
Anton Korobeynikov55bcea12010-01-10 12:58:08 +00006507 }
Anton Korobeynikov244360d2009-06-05 22:08:42 +00006508 }
6509}
6510
Chris Lattner0cf24192010-06-28 20:05:43 +00006511//===----------------------------------------------------------------------===//
John McCall943fae92010-05-27 06:19:26 +00006512// MIPS ABI Implementation. This works for both little-endian and
6513// big-endian variants.
Chris Lattner0cf24192010-06-28 20:05:43 +00006514//===----------------------------------------------------------------------===//
6515
John McCall943fae92010-05-27 06:19:26 +00006516namespace {
Akira Hatanakab579fe52011-06-02 00:09:17 +00006517class MipsABIInfo : public ABIInfo {
Akira Hatanaka14378522011-11-02 23:14:57 +00006518 bool IsO32;
Akira Hatanakae1e3ad32012-07-03 19:24:06 +00006519 unsigned MinABIStackAlignInBytes, StackAlignInBytes;
6520 void CoerceToIntArgs(uint64_t TySize,
Craig Topper5603df42013-07-05 19:34:19 +00006521 SmallVectorImpl<llvm::Type *> &ArgList) const;
Akira Hatanaka8ab86cb2012-05-11 21:56:58 +00006522 llvm::Type* HandleAggregates(QualType Ty, uint64_t TySize) const;
Akira Hatanakaf093f5b2012-01-04 03:34:42 +00006523 llvm::Type* returnAggregateInRegs(QualType RetTy, uint64_t Size) const;
Akira Hatanaka1632af62012-01-09 19:31:25 +00006524 llvm::Type* getPaddingType(uint64_t Align, uint64_t Offset) const;
Akira Hatanakab579fe52011-06-02 00:09:17 +00006525public:
Akira Hatanakac4baedd2013-11-11 22:10:46 +00006526 MipsABIInfo(CodeGenTypes &CGT, bool _IsO32) :
Akira Hatanakae1e3ad32012-07-03 19:24:06 +00006527 ABIInfo(CGT), IsO32(_IsO32), MinABIStackAlignInBytes(IsO32 ? 4 : 8),
Akira Hatanakac4baedd2013-11-11 22:10:46 +00006528 StackAlignInBytes(IsO32 ? 8 : 16) {}
Akira Hatanakab579fe52011-06-02 00:09:17 +00006529
6530 ABIArgInfo classifyReturnType(QualType RetTy) const;
Akira Hatanakaf64e1ad2012-01-07 00:25:33 +00006531 ABIArgInfo classifyArgumentType(QualType RetTy, uint64_t &Offset) const;
Craig Topper4f12f102014-03-12 06:41:41 +00006532 void computeInfo(CGFunctionInfo &FI) const override;
John McCall7f416cc2015-09-08 08:05:57 +00006533 Address EmitVAArg(CodeGenFunction &CGF, Address VAListAddr,
6534 QualType Ty) const override;
Petar Jovanovic1a3f9652015-05-26 21:07:19 +00006535 bool shouldSignExtUnsignedType(QualType Ty) const override;
Akira Hatanakab579fe52011-06-02 00:09:17 +00006536};
6537
John McCall943fae92010-05-27 06:19:26 +00006538class MIPSTargetCodeGenInfo : public TargetCodeGenInfo {
Akira Hatanaka0486db02011-09-20 18:23:28 +00006539 unsigned SizeOfUnwindException;
John McCall943fae92010-05-27 06:19:26 +00006540public:
Akira Hatanakac4baedd2013-11-11 22:10:46 +00006541 MIPSTargetCodeGenInfo(CodeGenTypes &CGT, bool IsO32)
6542 : TargetCodeGenInfo(new MipsABIInfo(CGT, IsO32)),
Akira Hatanaka14378522011-11-02 23:14:57 +00006543 SizeOfUnwindException(IsO32 ? 24 : 32) {}
John McCall943fae92010-05-27 06:19:26 +00006544
Craig Topper4f12f102014-03-12 06:41:41 +00006545 int getDwarfEHStackPointer(CodeGen::CodeGenModule &CGM) const override {
John McCall943fae92010-05-27 06:19:26 +00006546 return 29;
6547 }
6548
Eric Christopher162c91c2015-06-05 22:03:00 +00006549 void setTargetAttributes(const Decl *D, llvm::GlobalValue *GV,
Craig Topper4f12f102014-03-12 06:41:41 +00006550 CodeGen::CodeGenModule &CGM) const override {
Akira Hatanakaaec6b2c2015-10-08 20:26:34 +00006551 const FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(D);
Reed Kotler3d5966f2013-03-13 20:40:30 +00006552 if (!FD) return;
Rafael Espindolaa0851a22013-03-19 14:32:23 +00006553 llvm::Function *Fn = cast<llvm::Function>(GV);
Reed Kotler3d5966f2013-03-13 20:40:30 +00006554 if (FD->hasAttr<Mips16Attr>()) {
6555 Fn->addFnAttr("mips16");
6556 }
6557 else if (FD->hasAttr<NoMips16Attr>()) {
6558 Fn->addFnAttr("nomips16");
6559 }
Daniel Sandersbd3f47f2015-11-27 18:03:44 +00006560
6561 const MipsInterruptAttr *Attr = FD->getAttr<MipsInterruptAttr>();
6562 if (!Attr)
6563 return;
6564
6565 const char *Kind;
6566 switch (Attr->getInterrupt()) {
Daniel Sandersbd3f47f2015-11-27 18:03:44 +00006567 case MipsInterruptAttr::eic: Kind = "eic"; break;
6568 case MipsInterruptAttr::sw0: Kind = "sw0"; break;
6569 case MipsInterruptAttr::sw1: Kind = "sw1"; break;
6570 case MipsInterruptAttr::hw0: Kind = "hw0"; break;
6571 case MipsInterruptAttr::hw1: Kind = "hw1"; break;
6572 case MipsInterruptAttr::hw2: Kind = "hw2"; break;
6573 case MipsInterruptAttr::hw3: Kind = "hw3"; break;
6574 case MipsInterruptAttr::hw4: Kind = "hw4"; break;
6575 case MipsInterruptAttr::hw5: Kind = "hw5"; break;
6576 }
6577
6578 Fn->addFnAttr("interrupt", Kind);
6579
Reed Kotler373feca2013-01-16 17:10:28 +00006580 }
Reed Kotler3d5966f2013-03-13 20:40:30 +00006581
John McCall943fae92010-05-27 06:19:26 +00006582 bool initDwarfEHRegSizeTable(CodeGen::CodeGenFunction &CGF,
Craig Topper4f12f102014-03-12 06:41:41 +00006583 llvm::Value *Address) const override;
John McCall3480ef22011-08-30 01:42:09 +00006584
Craig Topper4f12f102014-03-12 06:41:41 +00006585 unsigned getSizeOfUnwindException() const override {
Akira Hatanaka0486db02011-09-20 18:23:28 +00006586 return SizeOfUnwindException;
John McCall3480ef22011-08-30 01:42:09 +00006587 }
John McCall943fae92010-05-27 06:19:26 +00006588};
Alexander Kornienkoab9db512015-06-22 23:07:51 +00006589}
John McCall943fae92010-05-27 06:19:26 +00006590
Eric Christopher7565e0d2015-05-29 23:09:49 +00006591void MipsABIInfo::CoerceToIntArgs(
6592 uint64_t TySize, SmallVectorImpl<llvm::Type *> &ArgList) const {
Akira Hatanakae1e3ad32012-07-03 19:24:06 +00006593 llvm::IntegerType *IntTy =
6594 llvm::IntegerType::get(getVMContext(), MinABIStackAlignInBytes * 8);
Akira Hatanaka8ab86cb2012-05-11 21:56:58 +00006595
6596 // Add (TySize / MinABIStackAlignInBytes) args of IntTy.
6597 for (unsigned N = TySize / (MinABIStackAlignInBytes * 8); N; --N)
6598 ArgList.push_back(IntTy);
6599
6600 // If necessary, add one more integer type to ArgList.
6601 unsigned R = TySize % (MinABIStackAlignInBytes * 8);
6602
6603 if (R)
6604 ArgList.push_back(llvm::IntegerType::get(getVMContext(), R));
Akira Hatanaka8ab86cb2012-05-11 21:56:58 +00006605}
6606
Akira Hatanaka101f70d2011-11-02 23:54:49 +00006607// In N32/64, an aligned double precision floating point field is passed in
6608// a register.
Akira Hatanaka8ab86cb2012-05-11 21:56:58 +00006609llvm::Type* MipsABIInfo::HandleAggregates(QualType Ty, uint64_t TySize) const {
Akira Hatanakae1e3ad32012-07-03 19:24:06 +00006610 SmallVector<llvm::Type*, 8> ArgList, IntArgList;
6611
6612 if (IsO32) {
6613 CoerceToIntArgs(TySize, ArgList);
6614 return llvm::StructType::get(getVMContext(), ArgList);
6615 }
Akira Hatanaka101f70d2011-11-02 23:54:49 +00006616
Akira Hatanaka02e13e52012-01-12 00:52:17 +00006617 if (Ty->isComplexType())
6618 return CGT.ConvertType(Ty);
Akira Hatanaka79f04612012-01-10 23:12:19 +00006619
Akira Hatanaka4984f5d2012-02-09 19:54:16 +00006620 const RecordType *RT = Ty->getAs<RecordType>();
Akira Hatanaka101f70d2011-11-02 23:54:49 +00006621
Akira Hatanakae1e3ad32012-07-03 19:24:06 +00006622 // Unions/vectors are passed in integer registers.
6623 if (!RT || !RT->isStructureOrClassType()) {
6624 CoerceToIntArgs(TySize, ArgList);
6625 return llvm::StructType::get(getVMContext(), ArgList);
6626 }
Akira Hatanaka101f70d2011-11-02 23:54:49 +00006627
6628 const RecordDecl *RD = RT->getDecl();
6629 const ASTRecordLayout &Layout = getContext().getASTRecordLayout(RD);
Akira Hatanaka8ab86cb2012-05-11 21:56:58 +00006630 assert(!(TySize % 8) && "Size of structure must be multiple of 8.");
Eric Christopher7565e0d2015-05-29 23:09:49 +00006631
Akira Hatanaka101f70d2011-11-02 23:54:49 +00006632 uint64_t LastOffset = 0;
6633 unsigned idx = 0;
6634 llvm::IntegerType *I64 = llvm::IntegerType::get(getVMContext(), 64);
6635
Akira Hatanaka4984f5d2012-02-09 19:54:16 +00006636 // Iterate over fields in the struct/class and check if there are any aligned
6637 // double fields.
Akira Hatanaka101f70d2011-11-02 23:54:49 +00006638 for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end();
6639 i != e; ++i, ++idx) {
David Blaikie2d7c57e2012-04-30 02:36:29 +00006640 const QualType Ty = i->getType();
Akira Hatanaka101f70d2011-11-02 23:54:49 +00006641 const BuiltinType *BT = Ty->getAs<BuiltinType>();
6642
6643 if (!BT || BT->getKind() != BuiltinType::Double)
6644 continue;
6645
6646 uint64_t Offset = Layout.getFieldOffset(idx);
6647 if (Offset % 64) // Ignore doubles that are not aligned.
6648 continue;
6649
6650 // Add ((Offset - LastOffset) / 64) args of type i64.
6651 for (unsigned j = (Offset - LastOffset) / 64; j > 0; --j)
6652 ArgList.push_back(I64);
6653
6654 // Add double type.
6655 ArgList.push_back(llvm::Type::getDoubleTy(getVMContext()));
6656 LastOffset = Offset + 64;
6657 }
6658
Akira Hatanakae1e3ad32012-07-03 19:24:06 +00006659 CoerceToIntArgs(TySize - LastOffset, IntArgList);
6660 ArgList.append(IntArgList.begin(), IntArgList.end());
Akira Hatanaka101f70d2011-11-02 23:54:49 +00006661
6662 return llvm::StructType::get(getVMContext(), ArgList);
6663}
6664
Akira Hatanakaddd66342013-10-29 18:41:15 +00006665llvm::Type *MipsABIInfo::getPaddingType(uint64_t OrigOffset,
6666 uint64_t Offset) const {
6667 if (OrigOffset + MinABIStackAlignInBytes > Offset)
Craig Topper8a13c412014-05-21 05:09:00 +00006668 return nullptr;
Akira Hatanaka1632af62012-01-09 19:31:25 +00006669
Akira Hatanakaddd66342013-10-29 18:41:15 +00006670 return llvm::IntegerType::get(getVMContext(), (Offset - OrigOffset) * 8);
Akira Hatanaka1632af62012-01-09 19:31:25 +00006671}
Akira Hatanaka21ee88c2012-01-10 22:44:52 +00006672
Akira Hatanakaf64e1ad2012-01-07 00:25:33 +00006673ABIArgInfo
6674MipsABIInfo::classifyArgumentType(QualType Ty, uint64_t &Offset) const {
Daniel Sanders998c9102015-01-14 12:00:12 +00006675 Ty = useFirstFieldIfTransparentUnion(Ty);
6676
Akira Hatanaka1632af62012-01-09 19:31:25 +00006677 uint64_t OrigOffset = Offset;
Akira Hatanaka8ab86cb2012-05-11 21:56:58 +00006678 uint64_t TySize = getContext().getTypeSize(Ty);
Akira Hatanaka1632af62012-01-09 19:31:25 +00006679 uint64_t Align = getContext().getTypeAlign(Ty) / 8;
Akira Hatanaka8ab86cb2012-05-11 21:56:58 +00006680
Akira Hatanakae1e3ad32012-07-03 19:24:06 +00006681 Align = std::min(std::max(Align, (uint64_t)MinABIStackAlignInBytes),
6682 (uint64_t)StackAlignInBytes);
Rui Ueyama83aa9792016-01-14 21:00:27 +00006683 unsigned CurrOffset = llvm::alignTo(Offset, Align);
6684 Offset = CurrOffset + llvm::alignTo(TySize, Align * 8) / 8;
Akira Hatanaka1632af62012-01-09 19:31:25 +00006685
Akira Hatanakae1e3ad32012-07-03 19:24:06 +00006686 if (isAggregateTypeForABI(Ty) || Ty->isVectorType()) {
Akira Hatanakab579fe52011-06-02 00:09:17 +00006687 // Ignore empty aggregates.
Akira Hatanakaf64e1ad2012-01-07 00:25:33 +00006688 if (TySize == 0)
Akira Hatanakab579fe52011-06-02 00:09:17 +00006689 return ABIArgInfo::getIgnore();
6690
Mark Lacey3825e832013-10-06 01:33:34 +00006691 if (CGCXXABI::RecordArgABI RAA = getRecordArgABI(Ty, getCXXABI())) {
Akira Hatanaka8ab86cb2012-05-11 21:56:58 +00006692 Offset = OrigOffset + MinABIStackAlignInBytes;
John McCall7f416cc2015-09-08 08:05:57 +00006693 return getNaturalAlignIndirect(Ty, RAA == CGCXXABI::RAA_DirectInMemory);
Akira Hatanakaf64e1ad2012-01-07 00:25:33 +00006694 }
Akira Hatanakadf425db2011-08-01 18:09:58 +00006695
Petar Jovanovic6f4cdb82017-05-10 14:28:18 +00006696 // Use indirect if the aggregate cannot fit into registers for
6697 // passing arguments according to the ABI
6698 unsigned Threshold = IsO32 ? 16 : 64;
6699
6700 if(getContext().getTypeSizeInChars(Ty) > CharUnits::fromQuantity(Threshold))
6701 return ABIArgInfo::getIndirect(CharUnits::fromQuantity(Align), true,
6702 getContext().getTypeAlign(Ty) / 8 > Align);
6703
Akira Hatanaka8ab86cb2012-05-11 21:56:58 +00006704 // If we have reached here, aggregates are passed directly by coercing to
6705 // another structure type. Padding is inserted if the offset of the
6706 // aggregate is unaligned.
Daniel Sandersaa1b3552014-10-24 15:30:16 +00006707 ABIArgInfo ArgInfo =
6708 ABIArgInfo::getDirect(HandleAggregates(Ty, TySize), 0,
6709 getPaddingType(OrigOffset, CurrOffset));
6710 ArgInfo.setInReg(true);
6711 return ArgInfo;
Akira Hatanakab579fe52011-06-02 00:09:17 +00006712 }
6713
6714 // Treat an enum type as its underlying type.
6715 if (const EnumType *EnumTy = Ty->getAs<EnumType>())
6716 Ty = EnumTy->getDecl()->getIntegerType();
6717
Daniel Sanders5b445b32014-10-24 14:42:42 +00006718 // All integral types are promoted to the GPR width.
6719 if (Ty->isIntegralOrEnumerationType())
Akira Hatanaka1632af62012-01-09 19:31:25 +00006720 return ABIArgInfo::getExtend();
6721
Akira Hatanakaddd66342013-10-29 18:41:15 +00006722 return ABIArgInfo::getDirect(
Craig Topper8a13c412014-05-21 05:09:00 +00006723 nullptr, 0, IsO32 ? nullptr : getPaddingType(OrigOffset, CurrOffset));
Akira Hatanakab579fe52011-06-02 00:09:17 +00006724}
6725
Akira Hatanakaf093f5b2012-01-04 03:34:42 +00006726llvm::Type*
6727MipsABIInfo::returnAggregateInRegs(QualType RetTy, uint64_t Size) const {
Akira Hatanakab6f74432012-02-09 18:49:26 +00006728 const RecordType *RT = RetTy->getAs<RecordType>();
Akira Hatanakae1e3ad32012-07-03 19:24:06 +00006729 SmallVector<llvm::Type*, 8> RTList;
Akira Hatanakaf093f5b2012-01-04 03:34:42 +00006730
Akira Hatanakab6f74432012-02-09 18:49:26 +00006731 if (RT && RT->isStructureOrClassType()) {
Akira Hatanakaf093f5b2012-01-04 03:34:42 +00006732 const RecordDecl *RD = RT->getDecl();
Akira Hatanakab6f74432012-02-09 18:49:26 +00006733 const ASTRecordLayout &Layout = getContext().getASTRecordLayout(RD);
6734 unsigned FieldCnt = Layout.getFieldCount();
Akira Hatanakaf093f5b2012-01-04 03:34:42 +00006735
Akira Hatanakab6f74432012-02-09 18:49:26 +00006736 // N32/64 returns struct/classes in floating point registers if the
6737 // following conditions are met:
6738 // 1. The size of the struct/class is no larger than 128-bit.
6739 // 2. The struct/class has one or two fields all of which are floating
6740 // point types.
Eric Christopher7565e0d2015-05-29 23:09:49 +00006741 // 3. The offset of the first field is zero (this follows what gcc does).
Akira Hatanakab6f74432012-02-09 18:49:26 +00006742 //
6743 // Any other composite results are returned in integer registers.
6744 //
6745 if (FieldCnt && (FieldCnt <= 2) && !Layout.getFieldOffset(0)) {
6746 RecordDecl::field_iterator b = RD->field_begin(), e = RD->field_end();
6747 for (; b != e; ++b) {
David Blaikie2d7c57e2012-04-30 02:36:29 +00006748 const BuiltinType *BT = b->getType()->getAs<BuiltinType>();
Akira Hatanakaf093f5b2012-01-04 03:34:42 +00006749
Akira Hatanakab6f74432012-02-09 18:49:26 +00006750 if (!BT || !BT->isFloatingPoint())
6751 break;
Akira Hatanakaf093f5b2012-01-04 03:34:42 +00006752
David Blaikie2d7c57e2012-04-30 02:36:29 +00006753 RTList.push_back(CGT.ConvertType(b->getType()));
Akira Hatanakab6f74432012-02-09 18:49:26 +00006754 }
6755
6756 if (b == e)
6757 return llvm::StructType::get(getVMContext(), RTList,
6758 RD->hasAttr<PackedAttr>());
6759
6760 RTList.clear();
Akira Hatanakaf093f5b2012-01-04 03:34:42 +00006761 }
Akira Hatanakaf093f5b2012-01-04 03:34:42 +00006762 }
6763
Akira Hatanakae1e3ad32012-07-03 19:24:06 +00006764 CoerceToIntArgs(Size, RTList);
Akira Hatanakaf093f5b2012-01-04 03:34:42 +00006765 return llvm::StructType::get(getVMContext(), RTList);
6766}
6767
Akira Hatanakab579fe52011-06-02 00:09:17 +00006768ABIArgInfo MipsABIInfo::classifyReturnType(QualType RetTy) const {
Akira Hatanaka60f5fe62012-01-23 23:18:57 +00006769 uint64_t Size = getContext().getTypeSize(RetTy);
6770
Daniel Sandersed39f582014-09-04 13:28:14 +00006771 if (RetTy->isVoidType())
6772 return ABIArgInfo::getIgnore();
6773
6774 // O32 doesn't treat zero-sized structs differently from other structs.
6775 // However, N32/N64 ignores zero sized return values.
6776 if (!IsO32 && Size == 0)
Akira Hatanakab579fe52011-06-02 00:09:17 +00006777 return ABIArgInfo::getIgnore();
6778
Akira Hatanakac37eddf2012-05-11 21:01:17 +00006779 if (isAggregateTypeForABI(RetTy) || RetTy->isVectorType()) {
Akira Hatanakaf093f5b2012-01-04 03:34:42 +00006780 if (Size <= 128) {
6781 if (RetTy->isAnyComplexType())
6782 return ABIArgInfo::getDirect();
6783
Daniel Sanderse5018b62014-09-04 15:05:39 +00006784 // O32 returns integer vectors in registers and N32/N64 returns all small
Daniel Sanders00a56ff2014-09-04 15:07:43 +00006785 // aggregates in registers.
Daniel Sanderse5018b62014-09-04 15:05:39 +00006786 if (!IsO32 ||
6787 (RetTy->isVectorType() && !RetTy->hasFloatingRepresentation())) {
6788 ABIArgInfo ArgInfo =
6789 ABIArgInfo::getDirect(returnAggregateInRegs(RetTy, Size));
6790 ArgInfo.setInReg(true);
6791 return ArgInfo;
6792 }
Akira Hatanakaf093f5b2012-01-04 03:34:42 +00006793 }
Akira Hatanakab579fe52011-06-02 00:09:17 +00006794
John McCall7f416cc2015-09-08 08:05:57 +00006795 return getNaturalAlignIndirect(RetTy);
Akira Hatanakab579fe52011-06-02 00:09:17 +00006796 }
6797
6798 // Treat an enum type as its underlying type.
6799 if (const EnumType *EnumTy = RetTy->getAs<EnumType>())
6800 RetTy = EnumTy->getDecl()->getIntegerType();
6801
6802 return (RetTy->isPromotableIntegerType() ?
6803 ABIArgInfo::getExtend() : ABIArgInfo::getDirect());
6804}
6805
6806void MipsABIInfo::computeInfo(CGFunctionInfo &FI) const {
Akira Hatanaka32604a92012-01-12 01:10:09 +00006807 ABIArgInfo &RetInfo = FI.getReturnInfo();
Reid Kleckner40ca9132014-05-13 22:05:45 +00006808 if (!getCXXABI().classifyReturnType(FI))
6809 RetInfo = classifyReturnType(FI.getReturnType());
Akira Hatanaka32604a92012-01-12 01:10:09 +00006810
Eric Christopher7565e0d2015-05-29 23:09:49 +00006811 // Check if a pointer to an aggregate is passed as a hidden argument.
Akira Hatanaka8ab86cb2012-05-11 21:56:58 +00006812 uint64_t Offset = RetInfo.isIndirect() ? MinABIStackAlignInBytes : 0;
Akira Hatanaka32604a92012-01-12 01:10:09 +00006813
Aaron Ballmanec47bc22014-03-17 18:10:01 +00006814 for (auto &I : FI.arguments())
6815 I.info = classifyArgumentType(I.type, Offset);
Akira Hatanakab579fe52011-06-02 00:09:17 +00006816}
6817
John McCall7f416cc2015-09-08 08:05:57 +00006818Address MipsABIInfo::EmitVAArg(CodeGenFunction &CGF, Address VAListAddr,
6819 QualType OrigTy) const {
6820 QualType Ty = OrigTy;
Daniel Sanders59229dc2014-11-19 10:01:35 +00006821
Daniel Sanderscdcb5802015-01-13 10:47:00 +00006822 // Integer arguments are promoted to 32-bit on O32 and 64-bit on N32/N64.
6823 // Pointers are also promoted in the same way but this only matters for N32.
Daniel Sanders59229dc2014-11-19 10:01:35 +00006824 unsigned SlotSizeInBits = IsO32 ? 32 : 64;
Daniel Sanderscdcb5802015-01-13 10:47:00 +00006825 unsigned PtrWidth = getTarget().getPointerWidth(0);
John McCall7f416cc2015-09-08 08:05:57 +00006826 bool DidPromote = false;
Daniel Sanderscdcb5802015-01-13 10:47:00 +00006827 if ((Ty->isIntegerType() &&
John McCall7f416cc2015-09-08 08:05:57 +00006828 getContext().getIntWidth(Ty) < SlotSizeInBits) ||
Daniel Sanderscdcb5802015-01-13 10:47:00 +00006829 (Ty->isPointerType() && PtrWidth < SlotSizeInBits)) {
John McCall7f416cc2015-09-08 08:05:57 +00006830 DidPromote = true;
6831 Ty = getContext().getIntTypeForBitwidth(SlotSizeInBits,
6832 Ty->isSignedIntegerType());
Daniel Sanders59229dc2014-11-19 10:01:35 +00006833 }
Eric Christopher7565e0d2015-05-29 23:09:49 +00006834
John McCall7f416cc2015-09-08 08:05:57 +00006835 auto TyInfo = getContext().getTypeInfoInChars(Ty);
Daniel Sanders2ef3cdd32014-08-01 13:26:28 +00006836
John McCall7f416cc2015-09-08 08:05:57 +00006837 // The alignment of things in the argument area is never larger than
6838 // StackAlignInBytes.
6839 TyInfo.second =
6840 std::min(TyInfo.second, CharUnits::fromQuantity(StackAlignInBytes));
6841
6842 // MinABIStackAlignInBytes is the size of argument slots on the stack.
6843 CharUnits ArgSlotSize = CharUnits::fromQuantity(MinABIStackAlignInBytes);
6844
6845 Address Addr = emitVoidPtrVAArg(CGF, VAListAddr, Ty, /*indirect*/ false,
6846 TyInfo, ArgSlotSize, /*AllowHigherAlign*/ true);
6847
6848
6849 // If there was a promotion, "unpromote" into a temporary.
6850 // TODO: can we just use a pointer into a subset of the original slot?
6851 if (DidPromote) {
6852 Address Temp = CGF.CreateMemTemp(OrigTy, "vaarg.promotion-temp");
6853 llvm::Value *Promoted = CGF.Builder.CreateLoad(Addr);
6854
6855 // Truncate down to the right width.
6856 llvm::Type *IntTy = (OrigTy->isIntegerType() ? Temp.getElementType()
6857 : CGF.IntPtrTy);
6858 llvm::Value *V = CGF.Builder.CreateTrunc(Promoted, IntTy);
6859 if (OrigTy->isPointerType())
6860 V = CGF.Builder.CreateIntToPtr(V, Temp.getElementType());
6861
6862 CGF.Builder.CreateStore(V, Temp);
6863 Addr = Temp;
Daniel Sanders2ef3cdd32014-08-01 13:26:28 +00006864 }
Daniel Sanders2ef3cdd32014-08-01 13:26:28 +00006865
John McCall7f416cc2015-09-08 08:05:57 +00006866 return Addr;
Akira Hatanakab579fe52011-06-02 00:09:17 +00006867}
6868
Petar Jovanovic1a3f9652015-05-26 21:07:19 +00006869bool MipsABIInfo::shouldSignExtUnsignedType(QualType Ty) const {
6870 int TySize = getContext().getTypeSize(Ty);
Eric Christopher7565e0d2015-05-29 23:09:49 +00006871
Petar Jovanovic1a3f9652015-05-26 21:07:19 +00006872 // MIPS64 ABI requires unsigned 32 bit integers to be sign extended.
6873 if (Ty->isUnsignedIntegerOrEnumerationType() && TySize == 32)
6874 return true;
Eric Christopher7565e0d2015-05-29 23:09:49 +00006875
Petar Jovanovic1a3f9652015-05-26 21:07:19 +00006876 return false;
6877}
6878
John McCall943fae92010-05-27 06:19:26 +00006879bool
6880MIPSTargetCodeGenInfo::initDwarfEHRegSizeTable(CodeGen::CodeGenFunction &CGF,
6881 llvm::Value *Address) const {
6882 // This information comes from gcc's implementation, which seems to
6883 // as canonical as it gets.
6884
John McCall943fae92010-05-27 06:19:26 +00006885 // Everything on MIPS is 4 bytes. Double-precision FP registers
6886 // are aliased to pairs of single-precision FP registers.
Chris Lattnerece04092012-02-07 00:39:47 +00006887 llvm::Value *Four8 = llvm::ConstantInt::get(CGF.Int8Ty, 4);
John McCall943fae92010-05-27 06:19:26 +00006888
6889 // 0-31 are the general purpose registers, $0 - $31.
6890 // 32-63 are the floating-point registers, $f0 - $f31.
6891 // 64 and 65 are the multiply/divide registers, $hi and $lo.
6892 // 66 is the (notional, I think) register for signal-handler return.
Chris Lattnerece04092012-02-07 00:39:47 +00006893 AssignToArrayRange(CGF.Builder, Address, Four8, 0, 65);
John McCall943fae92010-05-27 06:19:26 +00006894
6895 // 67-74 are the floating-point status registers, $fcc0 - $fcc7.
6896 // They are one bit wide and ignored here.
6897
6898 // 80-111 are the coprocessor 0 registers, $c0r0 - $c0r31.
6899 // (coprocessor 1 is the FP unit)
6900 // 112-143 are the coprocessor 2 registers, $c2r0 - $c2r31.
6901 // 144-175 are the coprocessor 3 registers, $c3r0 - $c3r31.
6902 // 176-181 are the DSP accumulator registers.
Chris Lattnerece04092012-02-07 00:39:47 +00006903 AssignToArrayRange(CGF.Builder, Address, Four8, 80, 181);
John McCall943fae92010-05-27 06:19:26 +00006904 return false;
6905}
6906
Peter Collingbourneadcf7c92011-10-13 16:24:41 +00006907//===----------------------------------------------------------------------===//
Dylan McKaye8232d72017-02-08 05:09:26 +00006908// AVR ABI Implementation.
6909//===----------------------------------------------------------------------===//
6910
6911namespace {
6912class AVRTargetCodeGenInfo : public TargetCodeGenInfo {
6913public:
6914 AVRTargetCodeGenInfo(CodeGenTypes &CGT)
6915 : TargetCodeGenInfo(new DefaultABIInfo(CGT)) { }
6916
6917 void setTargetAttributes(const Decl *D, llvm::GlobalValue *GV,
6918 CodeGen::CodeGenModule &CGM) const override {
6919 const auto *FD = dyn_cast_or_null<FunctionDecl>(D);
6920 if (!FD) return;
6921 auto *Fn = cast<llvm::Function>(GV);
6922
6923 if (FD->getAttr<AVRInterruptAttr>())
6924 Fn->addFnAttr("interrupt");
6925
6926 if (FD->getAttr<AVRSignalAttr>())
6927 Fn->addFnAttr("signal");
6928 }
6929};
6930}
6931
6932//===----------------------------------------------------------------------===//
Peter Collingbourneadcf7c92011-10-13 16:24:41 +00006933// TCE ABI Implementation (see http://tce.cs.tut.fi). Uses mostly the defaults.
Eric Christopher7565e0d2015-05-29 23:09:49 +00006934// Currently subclassed only to implement custom OpenCL C function attribute
Peter Collingbourneadcf7c92011-10-13 16:24:41 +00006935// handling.
6936//===----------------------------------------------------------------------===//
6937
6938namespace {
6939
6940class TCETargetCodeGenInfo : public DefaultTargetCodeGenInfo {
6941public:
6942 TCETargetCodeGenInfo(CodeGenTypes &CGT)
6943 : DefaultTargetCodeGenInfo(CGT) {}
6944
Eric Christopher162c91c2015-06-05 22:03:00 +00006945 void setTargetAttributes(const Decl *D, llvm::GlobalValue *GV,
Craig Topper4f12f102014-03-12 06:41:41 +00006946 CodeGen::CodeGenModule &M) const override;
Peter Collingbourneadcf7c92011-10-13 16:24:41 +00006947};
6948
Eric Christopher162c91c2015-06-05 22:03:00 +00006949void TCETargetCodeGenInfo::setTargetAttributes(
Eric Christopher7565e0d2015-05-29 23:09:49 +00006950 const Decl *D, llvm::GlobalValue *GV, CodeGen::CodeGenModule &M) const {
Akira Hatanakaaec6b2c2015-10-08 20:26:34 +00006951 const FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(D);
Peter Collingbourneadcf7c92011-10-13 16:24:41 +00006952 if (!FD) return;
6953
6954 llvm::Function *F = cast<llvm::Function>(GV);
Eric Christopher7565e0d2015-05-29 23:09:49 +00006955
David Blaikiebbafb8a2012-03-11 07:00:24 +00006956 if (M.getLangOpts().OpenCL) {
Peter Collingbourneadcf7c92011-10-13 16:24:41 +00006957 if (FD->hasAttr<OpenCLKernelAttr>()) {
6958 // OpenCL C Kernel functions are not subject to inlining
Bill Wendling207f0532012-12-20 19:27:06 +00006959 F->addFnAttr(llvm::Attribute::NoInline);
Aaron Ballman36a18ff2013-12-19 13:16:35 +00006960 const ReqdWorkGroupSizeAttr *Attr = FD->getAttr<ReqdWorkGroupSizeAttr>();
6961 if (Attr) {
Peter Collingbourneadcf7c92011-10-13 16:24:41 +00006962 // Convert the reqd_work_group_size() attributes to metadata.
6963 llvm::LLVMContext &Context = F->getContext();
Eric Christopher7565e0d2015-05-29 23:09:49 +00006964 llvm::NamedMDNode *OpenCLMetadata =
6965 M.getModule().getOrInsertNamedMetadata(
6966 "opencl.kernel_wg_size_info");
Peter Collingbourneadcf7c92011-10-13 16:24:41 +00006967
Duncan P. N. Exon Smithfb494912014-12-09 18:39:32 +00006968 SmallVector<llvm::Metadata *, 5> Operands;
6969 Operands.push_back(llvm::ConstantAsMetadata::get(F));
Peter Collingbourneadcf7c92011-10-13 16:24:41 +00006970
Duncan P. N. Exon Smithfb494912014-12-09 18:39:32 +00006971 Operands.push_back(
6972 llvm::ConstantAsMetadata::get(llvm::Constant::getIntegerValue(
6973 M.Int32Ty, llvm::APInt(32, Attr->getXDim()))));
6974 Operands.push_back(
6975 llvm::ConstantAsMetadata::get(llvm::Constant::getIntegerValue(
6976 M.Int32Ty, llvm::APInt(32, Attr->getYDim()))));
6977 Operands.push_back(
6978 llvm::ConstantAsMetadata::get(llvm::Constant::getIntegerValue(
6979 M.Int32Ty, llvm::APInt(32, Attr->getZDim()))));
Peter Collingbourneadcf7c92011-10-13 16:24:41 +00006980
Eric Christopher7565e0d2015-05-29 23:09:49 +00006981 // Add a boolean constant operand for "required" (true) or "hint"
6982 // (false) for implementing the work_group_size_hint attr later.
6983 // Currently always true as the hint is not yet implemented.
Duncan P. N. Exon Smithfb494912014-12-09 18:39:32 +00006984 Operands.push_back(
6985 llvm::ConstantAsMetadata::get(llvm::ConstantInt::getTrue(Context)));
Peter Collingbourneadcf7c92011-10-13 16:24:41 +00006986 OpenCLMetadata->addOperand(llvm::MDNode::get(Context, Operands));
6987 }
6988 }
6989 }
6990}
6991
Alexander Kornienkoab9db512015-06-22 23:07:51 +00006992}
John McCall943fae92010-05-27 06:19:26 +00006993
Tony Linthicum76329bf2011-12-12 21:14:55 +00006994//===----------------------------------------------------------------------===//
6995// Hexagon ABI Implementation
6996//===----------------------------------------------------------------------===//
6997
6998namespace {
6999
7000class HexagonABIInfo : public ABIInfo {
7001
7002
7003public:
7004 HexagonABIInfo(CodeGenTypes &CGT) : ABIInfo(CGT) {}
7005
7006private:
7007
7008 ABIArgInfo classifyReturnType(QualType RetTy) const;
7009 ABIArgInfo classifyArgumentType(QualType RetTy) const;
7010
Craig Topper4f12f102014-03-12 06:41:41 +00007011 void computeInfo(CGFunctionInfo &FI) const override;
Tony Linthicum76329bf2011-12-12 21:14:55 +00007012
John McCall7f416cc2015-09-08 08:05:57 +00007013 Address EmitVAArg(CodeGenFunction &CGF, Address VAListAddr,
7014 QualType Ty) const override;
Tony Linthicum76329bf2011-12-12 21:14:55 +00007015};
7016
7017class HexagonTargetCodeGenInfo : public TargetCodeGenInfo {
7018public:
7019 HexagonTargetCodeGenInfo(CodeGenTypes &CGT)
7020 :TargetCodeGenInfo(new HexagonABIInfo(CGT)) {}
7021
Craig Topper4f12f102014-03-12 06:41:41 +00007022 int getDwarfEHStackPointer(CodeGen::CodeGenModule &M) const override {
Tony Linthicum76329bf2011-12-12 21:14:55 +00007023 return 29;
7024 }
7025};
7026
Alexander Kornienkoab9db512015-06-22 23:07:51 +00007027}
Tony Linthicum76329bf2011-12-12 21:14:55 +00007028
7029void HexagonABIInfo::computeInfo(CGFunctionInfo &FI) const {
Reid Kleckner40ca9132014-05-13 22:05:45 +00007030 if (!getCXXABI().classifyReturnType(FI))
7031 FI.getReturnInfo() = classifyReturnType(FI.getReturnType());
Aaron Ballmanec47bc22014-03-17 18:10:01 +00007032 for (auto &I : FI.arguments())
7033 I.info = classifyArgumentType(I.type);
Tony Linthicum76329bf2011-12-12 21:14:55 +00007034}
7035
7036ABIArgInfo HexagonABIInfo::classifyArgumentType(QualType Ty) const {
7037 if (!isAggregateTypeForABI(Ty)) {
7038 // Treat an enum type as its underlying type.
7039 if (const EnumType *EnumTy = Ty->getAs<EnumType>())
7040 Ty = EnumTy->getDecl()->getIntegerType();
7041
7042 return (Ty->isPromotableIntegerType() ?
7043 ABIArgInfo::getExtend() : ABIArgInfo::getDirect());
7044 }
7045
Krzysztof Parzyszek408b2722017-05-12 13:18:07 +00007046 if (CGCXXABI::RecordArgABI RAA = getRecordArgABI(Ty, getCXXABI()))
7047 return getNaturalAlignIndirect(Ty, RAA == CGCXXABI::RAA_DirectInMemory);
7048
Tony Linthicum76329bf2011-12-12 21:14:55 +00007049 // Ignore empty records.
7050 if (isEmptyRecord(getContext(), Ty, true))
7051 return ABIArgInfo::getIgnore();
7052
Tony Linthicum76329bf2011-12-12 21:14:55 +00007053 uint64_t Size = getContext().getTypeSize(Ty);
7054 if (Size > 64)
John McCall7f416cc2015-09-08 08:05:57 +00007055 return getNaturalAlignIndirect(Ty, /*ByVal=*/true);
Tony Linthicum76329bf2011-12-12 21:14:55 +00007056 // Pass in the smallest viable integer type.
7057 else if (Size > 32)
7058 return ABIArgInfo::getDirect(llvm::Type::getInt64Ty(getVMContext()));
7059 else if (Size > 16)
7060 return ABIArgInfo::getDirect(llvm::Type::getInt32Ty(getVMContext()));
7061 else if (Size > 8)
7062 return ABIArgInfo::getDirect(llvm::Type::getInt16Ty(getVMContext()));
7063 else
7064 return ABIArgInfo::getDirect(llvm::Type::getInt8Ty(getVMContext()));
7065}
7066
7067ABIArgInfo HexagonABIInfo::classifyReturnType(QualType RetTy) const {
7068 if (RetTy->isVoidType())
7069 return ABIArgInfo::getIgnore();
7070
7071 // Large vector types should be returned via memory.
7072 if (RetTy->isVectorType() && getContext().getTypeSize(RetTy) > 64)
John McCall7f416cc2015-09-08 08:05:57 +00007073 return getNaturalAlignIndirect(RetTy);
Tony Linthicum76329bf2011-12-12 21:14:55 +00007074
7075 if (!isAggregateTypeForABI(RetTy)) {
7076 // Treat an enum type as its underlying type.
7077 if (const EnumType *EnumTy = RetTy->getAs<EnumType>())
7078 RetTy = EnumTy->getDecl()->getIntegerType();
7079
7080 return (RetTy->isPromotableIntegerType() ?
7081 ABIArgInfo::getExtend() : ABIArgInfo::getDirect());
7082 }
7083
Tony Linthicum76329bf2011-12-12 21:14:55 +00007084 if (isEmptyRecord(getContext(), RetTy, true))
7085 return ABIArgInfo::getIgnore();
7086
7087 // Aggregates <= 8 bytes are returned in r0; other aggregates
7088 // are returned indirectly.
7089 uint64_t Size = getContext().getTypeSize(RetTy);
7090 if (Size <= 64) {
7091 // Return in the smallest viable integer type.
7092 if (Size <= 8)
7093 return ABIArgInfo::getDirect(llvm::Type::getInt8Ty(getVMContext()));
7094 if (Size <= 16)
7095 return ABIArgInfo::getDirect(llvm::Type::getInt16Ty(getVMContext()));
7096 if (Size <= 32)
7097 return ABIArgInfo::getDirect(llvm::Type::getInt32Ty(getVMContext()));
7098 return ABIArgInfo::getDirect(llvm::Type::getInt64Ty(getVMContext()));
7099 }
7100
John McCall7f416cc2015-09-08 08:05:57 +00007101 return getNaturalAlignIndirect(RetTy, /*ByVal=*/true);
Tony Linthicum76329bf2011-12-12 21:14:55 +00007102}
7103
John McCall7f416cc2015-09-08 08:05:57 +00007104Address HexagonABIInfo::EmitVAArg(CodeGenFunction &CGF, Address VAListAddr,
7105 QualType Ty) const {
7106 // FIXME: Someone needs to audit that this handle alignment correctly.
7107 return emitVoidPtrVAArg(CGF, VAListAddr, Ty, /*indirect*/ false,
7108 getContext().getTypeInfoInChars(Ty),
7109 CharUnits::fromQuantity(4),
7110 /*AllowHigherAlign*/ true);
Tony Linthicum76329bf2011-12-12 21:14:55 +00007111}
7112
Matt Arsenault43fae6c2014-12-04 20:38:18 +00007113//===----------------------------------------------------------------------===//
Jacques Pienaard964cc22016-03-28 21:02:54 +00007114// Lanai ABI Implementation
7115//===----------------------------------------------------------------------===//
7116
Benjamin Kramer5d28c7f2016-04-07 10:14:54 +00007117namespace {
Jacques Pienaard964cc22016-03-28 21:02:54 +00007118class LanaiABIInfo : public DefaultABIInfo {
7119public:
7120 LanaiABIInfo(CodeGen::CodeGenTypes &CGT) : DefaultABIInfo(CGT) {}
7121
7122 bool shouldUseInReg(QualType Ty, CCState &State) const;
7123
7124 void computeInfo(CGFunctionInfo &FI) const override {
7125 CCState State(FI.getCallingConvention());
7126 // Lanai uses 4 registers to pass arguments unless the function has the
7127 // regparm attribute set.
7128 if (FI.getHasRegParm()) {
7129 State.FreeRegs = FI.getRegParm();
7130 } else {
7131 State.FreeRegs = 4;
7132 }
7133
7134 if (!getCXXABI().classifyReturnType(FI))
7135 FI.getReturnInfo() = classifyReturnType(FI.getReturnType());
7136 for (auto &I : FI.arguments())
7137 I.info = classifyArgumentType(I.type, State);
7138 }
7139
Jacques Pienaare74d9132016-04-26 00:09:29 +00007140 ABIArgInfo getIndirectResult(QualType Ty, bool ByVal, CCState &State) const;
Jacques Pienaard964cc22016-03-28 21:02:54 +00007141 ABIArgInfo classifyArgumentType(QualType RetTy, CCState &State) const;
7142};
Benjamin Kramer5d28c7f2016-04-07 10:14:54 +00007143} // end anonymous namespace
Jacques Pienaard964cc22016-03-28 21:02:54 +00007144
7145bool LanaiABIInfo::shouldUseInReg(QualType Ty, CCState &State) const {
7146 unsigned Size = getContext().getTypeSize(Ty);
7147 unsigned SizeInRegs = llvm::alignTo(Size, 32U) / 32U;
7148
7149 if (SizeInRegs == 0)
7150 return false;
7151
7152 if (SizeInRegs > State.FreeRegs) {
7153 State.FreeRegs = 0;
7154 return false;
7155 }
7156
7157 State.FreeRegs -= SizeInRegs;
7158
7159 return true;
7160}
7161
Jacques Pienaare74d9132016-04-26 00:09:29 +00007162ABIArgInfo LanaiABIInfo::getIndirectResult(QualType Ty, bool ByVal,
7163 CCState &State) const {
7164 if (!ByVal) {
7165 if (State.FreeRegs) {
7166 --State.FreeRegs; // Non-byval indirects just use one pointer.
7167 return getNaturalAlignIndirectInReg(Ty);
7168 }
7169 return getNaturalAlignIndirect(Ty, false);
7170 }
7171
7172 // Compute the byval alignment.
Kostya Serebryany0da44422016-04-26 01:53:49 +00007173 const unsigned MinABIStackAlignInBytes = 4;
Jacques Pienaare74d9132016-04-26 00:09:29 +00007174 unsigned TypeAlign = getContext().getTypeAlign(Ty) / 8;
7175 return ABIArgInfo::getIndirect(CharUnits::fromQuantity(4), /*ByVal=*/true,
7176 /*Realign=*/TypeAlign >
7177 MinABIStackAlignInBytes);
7178}
7179
Jacques Pienaard964cc22016-03-28 21:02:54 +00007180ABIArgInfo LanaiABIInfo::classifyArgumentType(QualType Ty,
7181 CCState &State) const {
Jacques Pienaare74d9132016-04-26 00:09:29 +00007182 // Check with the C++ ABI first.
7183 const RecordType *RT = Ty->getAs<RecordType>();
7184 if (RT) {
7185 CGCXXABI::RecordArgABI RAA = getRecordArgABI(RT, getCXXABI());
7186 if (RAA == CGCXXABI::RAA_Indirect) {
7187 return getIndirectResult(Ty, /*ByVal=*/false, State);
7188 } else if (RAA == CGCXXABI::RAA_DirectInMemory) {
7189 return getNaturalAlignIndirect(Ty, /*ByRef=*/true);
7190 }
7191 }
7192
7193 if (isAggregateTypeForABI(Ty)) {
7194 // Structures with flexible arrays are always indirect.
7195 if (RT && RT->getDecl()->hasFlexibleArrayMember())
7196 return getIndirectResult(Ty, /*ByVal=*/true, State);
7197
7198 // Ignore empty structs/unions.
7199 if (isEmptyRecord(getContext(), Ty, true))
7200 return ABIArgInfo::getIgnore();
7201
7202 llvm::LLVMContext &LLVMContext = getVMContext();
7203 unsigned SizeInRegs = (getContext().getTypeSize(Ty) + 31) / 32;
7204 if (SizeInRegs <= State.FreeRegs) {
7205 llvm::IntegerType *Int32 = llvm::Type::getInt32Ty(LLVMContext);
7206 SmallVector<llvm::Type *, 3> Elements(SizeInRegs, Int32);
7207 llvm::Type *Result = llvm::StructType::get(LLVMContext, Elements);
7208 State.FreeRegs -= SizeInRegs;
7209 return ABIArgInfo::getDirectInReg(Result);
7210 } else {
7211 State.FreeRegs = 0;
7212 }
7213 return getIndirectResult(Ty, true, State);
7214 }
Jacques Pienaard964cc22016-03-28 21:02:54 +00007215
7216 // Treat an enum type as its underlying type.
7217 if (const auto *EnumTy = Ty->getAs<EnumType>())
7218 Ty = EnumTy->getDecl()->getIntegerType();
7219
Jacques Pienaare74d9132016-04-26 00:09:29 +00007220 bool InReg = shouldUseInReg(Ty, State);
7221 if (Ty->isPromotableIntegerType()) {
7222 if (InReg)
7223 return ABIArgInfo::getDirectInReg();
Jacques Pienaard964cc22016-03-28 21:02:54 +00007224 return ABIArgInfo::getExtend();
Jacques Pienaare74d9132016-04-26 00:09:29 +00007225 }
7226 if (InReg)
7227 return ABIArgInfo::getDirectInReg();
Jacques Pienaard964cc22016-03-28 21:02:54 +00007228 return ABIArgInfo::getDirect();
7229}
7230
7231namespace {
7232class LanaiTargetCodeGenInfo : public TargetCodeGenInfo {
7233public:
7234 LanaiTargetCodeGenInfo(CodeGen::CodeGenTypes &CGT)
7235 : TargetCodeGenInfo(new LanaiABIInfo(CGT)) {}
7236};
7237}
7238
7239//===----------------------------------------------------------------------===//
Matt Arsenault43fae6c2014-12-04 20:38:18 +00007240// AMDGPU ABI Implementation
7241//===----------------------------------------------------------------------===//
7242
7243namespace {
7244
Matt Arsenault88d7da02016-08-22 19:25:59 +00007245class AMDGPUABIInfo final : public DefaultABIInfo {
7246public:
7247 explicit AMDGPUABIInfo(CodeGen::CodeGenTypes &CGT) : DefaultABIInfo(CGT) {}
7248
7249private:
7250 ABIArgInfo classifyArgumentType(QualType Ty) const;
7251
7252 void computeInfo(CGFunctionInfo &FI) const override;
7253};
7254
7255void AMDGPUABIInfo::computeInfo(CGFunctionInfo &FI) const {
7256 if (!getCXXABI().classifyReturnType(FI))
7257 FI.getReturnInfo() = classifyReturnType(FI.getReturnType());
7258
7259 unsigned CC = FI.getCallingConvention();
7260 for (auto &Arg : FI.arguments())
7261 if (CC == llvm::CallingConv::AMDGPU_KERNEL)
7262 Arg.info = classifyArgumentType(Arg.type);
7263 else
7264 Arg.info = DefaultABIInfo::classifyArgumentType(Arg.type);
7265}
7266
7267/// \brief Classify argument of given type \p Ty.
7268ABIArgInfo AMDGPUABIInfo::classifyArgumentType(QualType Ty) const {
7269 llvm::StructType *StrTy = dyn_cast<llvm::StructType>(CGT.ConvertType(Ty));
7270 if (!StrTy) {
7271 return DefaultABIInfo::classifyArgumentType(Ty);
7272 }
7273
7274 // Coerce single element structs to its element.
7275 if (StrTy->getNumElements() == 1) {
7276 return ABIArgInfo::getDirect();
7277 }
7278
7279 // If we set CanBeFlattened to true, CodeGen will expand the struct to its
7280 // individual elements, which confuses the Clover OpenCL backend; therefore we
7281 // have to set it to false here. Other args of getDirect() are just defaults.
7282 return ABIArgInfo::getDirect(nullptr, 0, nullptr, false);
7283}
7284
Matt Arsenault43fae6c2014-12-04 20:38:18 +00007285class AMDGPUTargetCodeGenInfo : public TargetCodeGenInfo {
7286public:
7287 AMDGPUTargetCodeGenInfo(CodeGenTypes &CGT)
Matt Arsenault88d7da02016-08-22 19:25:59 +00007288 : TargetCodeGenInfo(new AMDGPUABIInfo(CGT)) {}
Eric Christopher162c91c2015-06-05 22:03:00 +00007289 void setTargetAttributes(const Decl *D, llvm::GlobalValue *GV,
Matt Arsenault43fae6c2014-12-04 20:38:18 +00007290 CodeGen::CodeGenModule &M) const override;
Nikolay Haustov8c6538b2016-06-30 09:06:33 +00007291 unsigned getOpenCLKernelCallingConv() const override;
Nico Weber7849eeb2016-12-14 21:38:18 +00007292
Yaxun Liu402804b2016-12-15 08:09:08 +00007293 llvm::Constant *getNullPointer(const CodeGen::CodeGenModule &CGM,
7294 llvm::PointerType *T, QualType QT) const override;
7295};
Alexander Kornienkoab9db512015-06-22 23:07:51 +00007296}
Matt Arsenault43fae6c2014-12-04 20:38:18 +00007297
Yaxun Liuf2e8ab22016-07-19 19:39:45 +00007298static void appendOpenCLVersionMD (CodeGen::CodeGenModule &CGM);
7299
Eric Christopher162c91c2015-06-05 22:03:00 +00007300void AMDGPUTargetCodeGenInfo::setTargetAttributes(
Konstantin Zhuravlyov5b48d722016-09-26 01:02:57 +00007301 const Decl *D,
7302 llvm::GlobalValue *GV,
7303 CodeGen::CodeGenModule &M) const {
Akira Hatanakaaec6b2c2015-10-08 20:26:34 +00007304 const FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(D);
Matt Arsenault43fae6c2014-12-04 20:38:18 +00007305 if (!FD)
7306 return;
7307
Konstantin Zhuravlyov5b48d722016-09-26 01:02:57 +00007308 llvm::Function *F = cast<llvm::Function>(GV);
7309
Stanislav Mekhanoshin921a4232017-04-06 18:15:44 +00007310 const auto *ReqdWGS = M.getLangOpts().OpenCL ?
7311 FD->getAttr<ReqdWorkGroupSizeAttr>() : nullptr;
7312 const auto *FlatWGS = FD->getAttr<AMDGPUFlatWorkGroupSizeAttr>();
7313 if (ReqdWGS || FlatWGS) {
7314 unsigned Min = FlatWGS ? FlatWGS->getMin() : 0;
7315 unsigned Max = FlatWGS ? FlatWGS->getMax() : 0;
7316 if (ReqdWGS && Min == 0 && Max == 0)
7317 Min = Max = ReqdWGS->getXDim() * ReqdWGS->getYDim() * ReqdWGS->getZDim();
Konstantin Zhuravlyov5b48d722016-09-26 01:02:57 +00007318
7319 if (Min != 0) {
7320 assert(Min <= Max && "Min must be less than or equal Max");
7321
7322 std::string AttrVal = llvm::utostr(Min) + "," + llvm::utostr(Max);
7323 F->addFnAttr("amdgpu-flat-work-group-size", AttrVal);
7324 } else
7325 assert(Max == 0 && "Max must be zero");
Matt Arsenault43fae6c2014-12-04 20:38:18 +00007326 }
7327
Konstantin Zhuravlyov5b48d722016-09-26 01:02:57 +00007328 if (const auto *Attr = FD->getAttr<AMDGPUWavesPerEUAttr>()) {
7329 unsigned Min = Attr->getMin();
7330 unsigned Max = Attr->getMax();
7331
7332 if (Min != 0) {
7333 assert((Max == 0 || Min <= Max) && "Min must be less than or equal Max");
7334
7335 std::string AttrVal = llvm::utostr(Min);
7336 if (Max != 0)
7337 AttrVal = AttrVal + "," + llvm::utostr(Max);
7338 F->addFnAttr("amdgpu-waves-per-eu", AttrVal);
7339 } else
7340 assert(Max == 0 && "Max must be zero");
7341 }
7342
7343 if (const auto *Attr = FD->getAttr<AMDGPUNumSGPRAttr>()) {
Matt Arsenault43fae6c2014-12-04 20:38:18 +00007344 unsigned NumSGPR = Attr->getNumSGPR();
Konstantin Zhuravlyov5b48d722016-09-26 01:02:57 +00007345
Matt Arsenault43fae6c2014-12-04 20:38:18 +00007346 if (NumSGPR != 0)
Konstantin Zhuravlyov5b48d722016-09-26 01:02:57 +00007347 F->addFnAttr("amdgpu-num-sgpr", llvm::utostr(NumSGPR));
7348 }
7349
7350 if (const auto *Attr = FD->getAttr<AMDGPUNumVGPRAttr>()) {
7351 uint32_t NumVGPR = Attr->getNumVGPR();
7352
7353 if (NumVGPR != 0)
7354 F->addFnAttr("amdgpu-num-vgpr", llvm::utostr(NumVGPR));
Matt Arsenault43fae6c2014-12-04 20:38:18 +00007355 }
Matt Arsenault43fae6c2014-12-04 20:38:18 +00007356
Yaxun Liuf2e8ab22016-07-19 19:39:45 +00007357 appendOpenCLVersionMD(M);
7358}
Tony Linthicum76329bf2011-12-12 21:14:55 +00007359
Nikolay Haustov8c6538b2016-06-30 09:06:33 +00007360unsigned AMDGPUTargetCodeGenInfo::getOpenCLKernelCallingConv() const {
7361 return llvm::CallingConv::AMDGPU_KERNEL;
7362}
7363
Yaxun Liu402804b2016-12-15 08:09:08 +00007364// Currently LLVM assumes null pointers always have value 0,
7365// which results in incorrectly transformed IR. Therefore, instead of
7366// emitting null pointers in private and local address spaces, a null
7367// pointer in generic address space is emitted which is casted to a
7368// pointer in local or private address space.
7369llvm::Constant *AMDGPUTargetCodeGenInfo::getNullPointer(
7370 const CodeGen::CodeGenModule &CGM, llvm::PointerType *PT,
7371 QualType QT) const {
7372 if (CGM.getContext().getTargetNullPointerValue(QT) == 0)
7373 return llvm::ConstantPointerNull::get(PT);
7374
7375 auto &Ctx = CGM.getContext();
7376 auto NPT = llvm::PointerType::get(PT->getElementType(),
7377 Ctx.getTargetAddressSpace(LangAS::opencl_generic));
7378 return llvm::ConstantExpr::getAddrSpaceCast(
7379 llvm::ConstantPointerNull::get(NPT), PT);
7380}
7381
Jakob Stoklund Olesend28ab7e2013-05-27 21:48:25 +00007382//===----------------------------------------------------------------------===//
Chris Dewhurst7e7ee962016-06-08 14:47:25 +00007383// SPARC v8 ABI Implementation.
7384// Based on the SPARC Compliance Definition version 2.4.1.
7385//
7386// Ensures that complex values are passed in registers.
7387//
7388namespace {
7389class SparcV8ABIInfo : public DefaultABIInfo {
7390public:
7391 SparcV8ABIInfo(CodeGenTypes &CGT) : DefaultABIInfo(CGT) {}
7392
7393private:
7394 ABIArgInfo classifyReturnType(QualType RetTy) const;
7395 void computeInfo(CGFunctionInfo &FI) const override;
7396};
7397} // end anonymous namespace
7398
7399
7400ABIArgInfo
7401SparcV8ABIInfo::classifyReturnType(QualType Ty) const {
7402 if (Ty->isAnyComplexType()) {
7403 return ABIArgInfo::getDirect();
7404 }
7405 else {
7406 return DefaultABIInfo::classifyReturnType(Ty);
7407 }
7408}
7409
7410void SparcV8ABIInfo::computeInfo(CGFunctionInfo &FI) const {
7411
7412 FI.getReturnInfo() = classifyReturnType(FI.getReturnType());
7413 for (auto &Arg : FI.arguments())
7414 Arg.info = classifyArgumentType(Arg.type);
7415}
7416
7417namespace {
7418class SparcV8TargetCodeGenInfo : public TargetCodeGenInfo {
7419public:
7420 SparcV8TargetCodeGenInfo(CodeGenTypes &CGT)
7421 : TargetCodeGenInfo(new SparcV8ABIInfo(CGT)) {}
7422};
7423} // end anonymous namespace
7424
7425//===----------------------------------------------------------------------===//
Jakob Stoklund Olesend28ab7e2013-05-27 21:48:25 +00007426// SPARC v9 ABI Implementation.
7427// Based on the SPARC Compliance Definition version 2.4.1.
7428//
7429// Function arguments a mapped to a nominal "parameter array" and promoted to
7430// registers depending on their type. Each argument occupies 8 or 16 bytes in
7431// the array, structs larger than 16 bytes are passed indirectly.
7432//
7433// One case requires special care:
7434//
7435// struct mixed {
7436// int i;
7437// float f;
7438// };
7439//
7440// When a struct mixed is passed by value, it only occupies 8 bytes in the
7441// parameter array, but the int is passed in an integer register, and the float
7442// is passed in a floating point register. This is represented as two arguments
7443// with the LLVM IR inreg attribute:
7444//
7445// declare void f(i32 inreg %i, float inreg %f)
7446//
7447// The code generator will only allocate 4 bytes from the parameter array for
7448// the inreg arguments. All other arguments are allocated a multiple of 8
7449// bytes.
7450//
7451namespace {
7452class SparcV9ABIInfo : public ABIInfo {
7453public:
7454 SparcV9ABIInfo(CodeGenTypes &CGT) : ABIInfo(CGT) {}
7455
7456private:
7457 ABIArgInfo classifyType(QualType RetTy, unsigned SizeLimit) const;
Craig Topper4f12f102014-03-12 06:41:41 +00007458 void computeInfo(CGFunctionInfo &FI) const override;
John McCall7f416cc2015-09-08 08:05:57 +00007459 Address EmitVAArg(CodeGenFunction &CGF, Address VAListAddr,
7460 QualType Ty) const override;
Jakob Stoklund Olesen02dc6a12013-05-28 04:57:37 +00007461
7462 // Coercion type builder for structs passed in registers. The coercion type
7463 // serves two purposes:
7464 //
7465 // 1. Pad structs to a multiple of 64 bits, so they are passed 'left-aligned'
7466 // in registers.
7467 // 2. Expose aligned floating point elements as first-level elements, so the
7468 // code generator knows to pass them in floating point registers.
7469 //
7470 // We also compute the InReg flag which indicates that the struct contains
7471 // aligned 32-bit floats.
7472 //
7473 struct CoerceBuilder {
7474 llvm::LLVMContext &Context;
7475 const llvm::DataLayout &DL;
7476 SmallVector<llvm::Type*, 8> Elems;
7477 uint64_t Size;
7478 bool InReg;
7479
7480 CoerceBuilder(llvm::LLVMContext &c, const llvm::DataLayout &dl)
7481 : Context(c), DL(dl), Size(0), InReg(false) {}
7482
7483 // Pad Elems with integers until Size is ToSize.
7484 void pad(uint64_t ToSize) {
7485 assert(ToSize >= Size && "Cannot remove elements");
7486 if (ToSize == Size)
7487 return;
7488
7489 // Finish the current 64-bit word.
Rui Ueyama83aa9792016-01-14 21:00:27 +00007490 uint64_t Aligned = llvm::alignTo(Size, 64);
Jakob Stoklund Olesen02dc6a12013-05-28 04:57:37 +00007491 if (Aligned > Size && Aligned <= ToSize) {
7492 Elems.push_back(llvm::IntegerType::get(Context, Aligned - Size));
7493 Size = Aligned;
7494 }
7495
7496 // Add whole 64-bit words.
7497 while (Size + 64 <= ToSize) {
7498 Elems.push_back(llvm::Type::getInt64Ty(Context));
7499 Size += 64;
7500 }
7501
7502 // Final in-word padding.
7503 if (Size < ToSize) {
7504 Elems.push_back(llvm::IntegerType::get(Context, ToSize - Size));
7505 Size = ToSize;
7506 }
7507 }
7508
7509 // Add a floating point element at Offset.
7510 void addFloat(uint64_t Offset, llvm::Type *Ty, unsigned Bits) {
7511 // Unaligned floats are treated as integers.
7512 if (Offset % Bits)
7513 return;
7514 // The InReg flag is only required if there are any floats < 64 bits.
7515 if (Bits < 64)
7516 InReg = true;
7517 pad(Offset);
7518 Elems.push_back(Ty);
7519 Size = Offset + Bits;
7520 }
7521
7522 // Add a struct type to the coercion type, starting at Offset (in bits).
7523 void addStruct(uint64_t Offset, llvm::StructType *StrTy) {
7524 const llvm::StructLayout *Layout = DL.getStructLayout(StrTy);
7525 for (unsigned i = 0, e = StrTy->getNumElements(); i != e; ++i) {
7526 llvm::Type *ElemTy = StrTy->getElementType(i);
7527 uint64_t ElemOffset = Offset + Layout->getElementOffsetInBits(i);
7528 switch (ElemTy->getTypeID()) {
7529 case llvm::Type::StructTyID:
7530 addStruct(ElemOffset, cast<llvm::StructType>(ElemTy));
7531 break;
7532 case llvm::Type::FloatTyID:
7533 addFloat(ElemOffset, ElemTy, 32);
7534 break;
7535 case llvm::Type::DoubleTyID:
7536 addFloat(ElemOffset, ElemTy, 64);
7537 break;
7538 case llvm::Type::FP128TyID:
7539 addFloat(ElemOffset, ElemTy, 128);
7540 break;
7541 case llvm::Type::PointerTyID:
7542 if (ElemOffset % 64 == 0) {
7543 pad(ElemOffset);
7544 Elems.push_back(ElemTy);
7545 Size += 64;
7546 }
7547 break;
7548 default:
7549 break;
7550 }
7551 }
7552 }
7553
7554 // Check if Ty is a usable substitute for the coercion type.
7555 bool isUsableType(llvm::StructType *Ty) const {
Benjamin Kramer39ccabe2015-03-02 11:57:06 +00007556 return llvm::makeArrayRef(Elems) == Ty->elements();
Jakob Stoklund Olesen02dc6a12013-05-28 04:57:37 +00007557 }
7558
7559 // Get the coercion type as a literal struct type.
7560 llvm::Type *getType() const {
7561 if (Elems.size() == 1)
7562 return Elems.front();
7563 else
7564 return llvm::StructType::get(Context, Elems);
7565 }
7566 };
Jakob Stoklund Olesend28ab7e2013-05-27 21:48:25 +00007567};
7568} // end anonymous namespace
7569
7570ABIArgInfo
7571SparcV9ABIInfo::classifyType(QualType Ty, unsigned SizeLimit) const {
7572 if (Ty->isVoidType())
7573 return ABIArgInfo::getIgnore();
7574
7575 uint64_t Size = getContext().getTypeSize(Ty);
7576
7577 // Anything too big to fit in registers is passed with an explicit indirect
7578 // pointer / sret pointer.
7579 if (Size > SizeLimit)
John McCall7f416cc2015-09-08 08:05:57 +00007580 return getNaturalAlignIndirect(Ty, /*ByVal=*/false);
Jakob Stoklund Olesend28ab7e2013-05-27 21:48:25 +00007581
7582 // Treat an enum type as its underlying type.
7583 if (const EnumType *EnumTy = Ty->getAs<EnumType>())
7584 Ty = EnumTy->getDecl()->getIntegerType();
7585
7586 // Integer types smaller than a register are extended.
7587 if (Size < 64 && Ty->isIntegerType())
7588 return ABIArgInfo::getExtend();
7589
7590 // Other non-aggregates go in registers.
7591 if (!isAggregateTypeForABI(Ty))
7592 return ABIArgInfo::getDirect();
7593
Jakob Stoklund Olesenb81eb3e2014-01-12 06:54:56 +00007594 // If a C++ object has either a non-trivial copy constructor or a non-trivial
7595 // destructor, it is passed with an explicit indirect pointer / sret pointer.
7596 if (CGCXXABI::RecordArgABI RAA = getRecordArgABI(Ty, getCXXABI()))
John McCall7f416cc2015-09-08 08:05:57 +00007597 return getNaturalAlignIndirect(Ty, RAA == CGCXXABI::RAA_DirectInMemory);
Jakob Stoklund Olesenb81eb3e2014-01-12 06:54:56 +00007598
Jakob Stoklund Olesend28ab7e2013-05-27 21:48:25 +00007599 // This is a small aggregate type that should be passed in registers.
Jakob Stoklund Olesen02dc6a12013-05-28 04:57:37 +00007600 // Build a coercion type from the LLVM struct type.
7601 llvm::StructType *StrTy = dyn_cast<llvm::StructType>(CGT.ConvertType(Ty));
7602 if (!StrTy)
7603 return ABIArgInfo::getDirect();
7604
7605 CoerceBuilder CB(getVMContext(), getDataLayout());
7606 CB.addStruct(0, StrTy);
Rui Ueyama83aa9792016-01-14 21:00:27 +00007607 CB.pad(llvm::alignTo(CB.DL.getTypeSizeInBits(StrTy), 64));
Jakob Stoklund Olesen02dc6a12013-05-28 04:57:37 +00007608
7609 // Try to use the original type for coercion.
7610 llvm::Type *CoerceTy = CB.isUsableType(StrTy) ? StrTy : CB.getType();
7611
7612 if (CB.InReg)
7613 return ABIArgInfo::getDirectInReg(CoerceTy);
7614 else
7615 return ABIArgInfo::getDirect(CoerceTy);
Jakob Stoklund Olesend28ab7e2013-05-27 21:48:25 +00007616}
7617
John McCall7f416cc2015-09-08 08:05:57 +00007618Address SparcV9ABIInfo::EmitVAArg(CodeGenFunction &CGF, Address VAListAddr,
7619 QualType Ty) const {
Jakob Stoklund Olesen303caed2013-06-05 03:00:18 +00007620 ABIArgInfo AI = classifyType(Ty, 16 * 8);
7621 llvm::Type *ArgTy = CGT.ConvertType(Ty);
7622 if (AI.canHaveCoerceToType() && !AI.getCoerceToType())
7623 AI.setCoerceToType(ArgTy);
7624
John McCall7f416cc2015-09-08 08:05:57 +00007625 CharUnits SlotSize = CharUnits::fromQuantity(8);
Jakob Stoklund Olesen303caed2013-06-05 03:00:18 +00007626
John McCall7f416cc2015-09-08 08:05:57 +00007627 CGBuilderTy &Builder = CGF.Builder;
7628 Address Addr(Builder.CreateLoad(VAListAddr, "ap.cur"), SlotSize);
7629 llvm::Type *ArgPtrTy = llvm::PointerType::getUnqual(ArgTy);
7630
7631 auto TypeInfo = getContext().getTypeInfoInChars(Ty);
7632
7633 Address ArgAddr = Address::invalid();
7634 CharUnits Stride;
Jakob Stoklund Olesen303caed2013-06-05 03:00:18 +00007635 switch (AI.getKind()) {
7636 case ABIArgInfo::Expand:
John McCallf26e73d2016-03-11 04:30:43 +00007637 case ABIArgInfo::CoerceAndExpand:
Reid Kleckner314ef7b2014-02-01 00:04:45 +00007638 case ABIArgInfo::InAlloca:
Jakob Stoklund Olesen303caed2013-06-05 03:00:18 +00007639 llvm_unreachable("Unsupported ABI kind for va_arg");
7640
John McCall7f416cc2015-09-08 08:05:57 +00007641 case ABIArgInfo::Extend: {
7642 Stride = SlotSize;
7643 CharUnits Offset = SlotSize - TypeInfo.first;
7644 ArgAddr = Builder.CreateConstInBoundsByteGEP(Addr, Offset, "extend");
Jakob Stoklund Olesen303caed2013-06-05 03:00:18 +00007645 break;
John McCall7f416cc2015-09-08 08:05:57 +00007646 }
Jakob Stoklund Olesen303caed2013-06-05 03:00:18 +00007647
John McCall7f416cc2015-09-08 08:05:57 +00007648 case ABIArgInfo::Direct: {
7649 auto AllocSize = getDataLayout().getTypeAllocSize(AI.getCoerceToType());
Rui Ueyama83aa9792016-01-14 21:00:27 +00007650 Stride = CharUnits::fromQuantity(AllocSize).alignTo(SlotSize);
Jakob Stoklund Olesen303caed2013-06-05 03:00:18 +00007651 ArgAddr = Addr;
7652 break;
John McCall7f416cc2015-09-08 08:05:57 +00007653 }
Jakob Stoklund Olesen303caed2013-06-05 03:00:18 +00007654
7655 case ABIArgInfo::Indirect:
John McCall7f416cc2015-09-08 08:05:57 +00007656 Stride = SlotSize;
7657 ArgAddr = Builder.CreateElementBitCast(Addr, ArgPtrTy, "indirect");
7658 ArgAddr = Address(Builder.CreateLoad(ArgAddr, "indirect.arg"),
7659 TypeInfo.second);
Jakob Stoklund Olesen303caed2013-06-05 03:00:18 +00007660 break;
7661
7662 case ABIArgInfo::Ignore:
John McCall7f416cc2015-09-08 08:05:57 +00007663 return Address(llvm::UndefValue::get(ArgPtrTy), TypeInfo.second);
Jakob Stoklund Olesen303caed2013-06-05 03:00:18 +00007664 }
7665
7666 // Update VAList.
John McCall7f416cc2015-09-08 08:05:57 +00007667 llvm::Value *NextPtr =
7668 Builder.CreateConstInBoundsByteGEP(Addr.getPointer(), Stride, "ap.next");
7669 Builder.CreateStore(NextPtr, VAListAddr);
Jakob Stoklund Olesen303caed2013-06-05 03:00:18 +00007670
John McCall7f416cc2015-09-08 08:05:57 +00007671 return Builder.CreateBitCast(ArgAddr, ArgPtrTy, "arg.addr");
Jakob Stoklund Olesend28ab7e2013-05-27 21:48:25 +00007672}
7673
7674void SparcV9ABIInfo::computeInfo(CGFunctionInfo &FI) const {
7675 FI.getReturnInfo() = classifyType(FI.getReturnType(), 32 * 8);
Aaron Ballmanec47bc22014-03-17 18:10:01 +00007676 for (auto &I : FI.arguments())
7677 I.info = classifyType(I.type, 16 * 8);
Jakob Stoklund Olesend28ab7e2013-05-27 21:48:25 +00007678}
7679
7680namespace {
7681class SparcV9TargetCodeGenInfo : public TargetCodeGenInfo {
7682public:
7683 SparcV9TargetCodeGenInfo(CodeGenTypes &CGT)
7684 : TargetCodeGenInfo(new SparcV9ABIInfo(CGT)) {}
Roman Divackyf02c9942014-02-24 18:46:27 +00007685
Craig Topper4f12f102014-03-12 06:41:41 +00007686 int getDwarfEHStackPointer(CodeGen::CodeGenModule &M) const override {
Roman Divackyf02c9942014-02-24 18:46:27 +00007687 return 14;
7688 }
7689
7690 bool initDwarfEHRegSizeTable(CodeGen::CodeGenFunction &CGF,
Craig Topper4f12f102014-03-12 06:41:41 +00007691 llvm::Value *Address) const override;
Jakob Stoklund Olesend28ab7e2013-05-27 21:48:25 +00007692};
7693} // end anonymous namespace
7694
Roman Divackyf02c9942014-02-24 18:46:27 +00007695bool
7696SparcV9TargetCodeGenInfo::initDwarfEHRegSizeTable(CodeGen::CodeGenFunction &CGF,
7697 llvm::Value *Address) const {
7698 // This is calculated from the LLVM and GCC tables and verified
7699 // against gcc output. AFAIK all ABIs use the same encoding.
7700
7701 CodeGen::CGBuilderTy &Builder = CGF.Builder;
7702
7703 llvm::IntegerType *i8 = CGF.Int8Ty;
7704 llvm::Value *Four8 = llvm::ConstantInt::get(i8, 4);
7705 llvm::Value *Eight8 = llvm::ConstantInt::get(i8, 8);
7706
7707 // 0-31: the 8-byte general-purpose registers
7708 AssignToArrayRange(Builder, Address, Eight8, 0, 31);
7709
7710 // 32-63: f0-31, the 4-byte floating-point registers
7711 AssignToArrayRange(Builder, Address, Four8, 32, 63);
7712
7713 // Y = 64
7714 // PSR = 65
7715 // WIM = 66
7716 // TBR = 67
7717 // PC = 68
7718 // NPC = 69
7719 // FSR = 70
7720 // CSR = 71
7721 AssignToArrayRange(Builder, Address, Eight8, 64, 71);
Eric Christopher7565e0d2015-05-29 23:09:49 +00007722
Roman Divackyf02c9942014-02-24 18:46:27 +00007723 // 72-87: d0-15, the 8-byte floating-point registers
7724 AssignToArrayRange(Builder, Address, Eight8, 72, 87);
7725
7726 return false;
7727}
7728
Jakob Stoklund Olesend28ab7e2013-05-27 21:48:25 +00007729
Robert Lytton0e076492013-08-13 09:43:10 +00007730//===----------------------------------------------------------------------===//
Robert Lyttond21e2d72014-03-03 13:45:29 +00007731// XCore ABI Implementation
Robert Lytton0e076492013-08-13 09:43:10 +00007732//===----------------------------------------------------------------------===//
Robert Lytton844aeeb2014-05-02 09:33:20 +00007733
Robert Lytton0e076492013-08-13 09:43:10 +00007734namespace {
Robert Lytton844aeeb2014-05-02 09:33:20 +00007735
7736/// A SmallStringEnc instance is used to build up the TypeString by passing
7737/// it by reference between functions that append to it.
7738typedef llvm::SmallString<128> SmallStringEnc;
7739
7740/// TypeStringCache caches the meta encodings of Types.
7741///
7742/// The reason for caching TypeStrings is two fold:
7743/// 1. To cache a type's encoding for later uses;
7744/// 2. As a means to break recursive member type inclusion.
7745///
7746/// A cache Entry can have a Status of:
7747/// NonRecursive: The type encoding is not recursive;
7748/// Recursive: The type encoding is recursive;
7749/// Incomplete: An incomplete TypeString;
7750/// IncompleteUsed: An incomplete TypeString that has been used in a
7751/// Recursive type encoding.
7752///
7753/// A NonRecursive entry will have all of its sub-members expanded as fully
7754/// as possible. Whilst it may contain types which are recursive, the type
7755/// itself is not recursive and thus its encoding may be safely used whenever
7756/// the type is encountered.
7757///
7758/// A Recursive entry will have all of its sub-members expanded as fully as
7759/// possible. The type itself is recursive and it may contain other types which
7760/// are recursive. The Recursive encoding must not be used during the expansion
7761/// of a recursive type's recursive branch. For simplicity the code uses
7762/// IncompleteCount to reject all usage of Recursive encodings for member types.
7763///
7764/// An Incomplete entry is always a RecordType and only encodes its
7765/// identifier e.g. "s(S){}". Incomplete 'StubEnc' entries are ephemeral and
7766/// are placed into the cache during type expansion as a means to identify and
7767/// handle recursive inclusion of types as sub-members. If there is recursion
7768/// the entry becomes IncompleteUsed.
7769///
7770/// During the expansion of a RecordType's members:
7771///
7772/// If the cache contains a NonRecursive encoding for the member type, the
7773/// cached encoding is used;
7774///
7775/// If the cache contains a Recursive encoding for the member type, the
7776/// cached encoding is 'Swapped' out, as it may be incorrect, and...
7777///
7778/// If the member is a RecordType, an Incomplete encoding is placed into the
7779/// cache to break potential recursive inclusion of itself as a sub-member;
7780///
7781/// Once a member RecordType has been expanded, its temporary incomplete
7782/// entry is removed from the cache. If a Recursive encoding was swapped out
7783/// it is swapped back in;
7784///
7785/// If an incomplete entry is used to expand a sub-member, the incomplete
7786/// entry is marked as IncompleteUsed. The cache keeps count of how many
7787/// IncompleteUsed entries it currently contains in IncompleteUsedCount;
7788///
7789/// If a member's encoding is found to be a NonRecursive or Recursive viz:
7790/// IncompleteUsedCount==0, the member's encoding is added to the cache.
7791/// Else the member is part of a recursive type and thus the recursion has
7792/// been exited too soon for the encoding to be correct for the member.
7793///
7794class TypeStringCache {
7795 enum Status {NonRecursive, Recursive, Incomplete, IncompleteUsed};
7796 struct Entry {
7797 std::string Str; // The encoded TypeString for the type.
7798 enum Status State; // Information about the encoding in 'Str'.
7799 std::string Swapped; // A temporary place holder for a Recursive encoding
7800 // during the expansion of RecordType's members.
7801 };
7802 std::map<const IdentifierInfo *, struct Entry> Map;
7803 unsigned IncompleteCount; // Number of Incomplete entries in the Map.
7804 unsigned IncompleteUsedCount; // Number of IncompleteUsed entries in the Map.
7805public:
Hans Wennborg4afe5042015-07-22 20:46:26 +00007806 TypeStringCache() : IncompleteCount(0), IncompleteUsedCount(0) {}
Robert Lytton844aeeb2014-05-02 09:33:20 +00007807 void addIncomplete(const IdentifierInfo *ID, std::string StubEnc);
7808 bool removeIncomplete(const IdentifierInfo *ID);
7809 void addIfComplete(const IdentifierInfo *ID, StringRef Str,
7810 bool IsRecursive);
7811 StringRef lookupStr(const IdentifierInfo *ID);
7812};
7813
Robert Lyttondb8c1cb2014-05-20 07:19:33 +00007814/// TypeString encodings for enum & union fields must be order.
Robert Lytton844aeeb2014-05-02 09:33:20 +00007815/// FieldEncoding is a helper for this ordering process.
7816class FieldEncoding {
7817 bool HasName;
7818 std::string Enc;
7819public:
Hans Wennborg4afe5042015-07-22 20:46:26 +00007820 FieldEncoding(bool b, SmallStringEnc &e) : HasName(b), Enc(e.c_str()) {}
Malcolm Parsonsf76f6502016-11-02 10:39:27 +00007821 StringRef str() { return Enc; }
Robert Lytton844aeeb2014-05-02 09:33:20 +00007822 bool operator<(const FieldEncoding &rhs) const {
7823 if (HasName != rhs.HasName) return HasName;
7824 return Enc < rhs.Enc;
7825 }
7826};
7827
Robert Lytton7d1db152013-08-19 09:46:39 +00007828class XCoreABIInfo : public DefaultABIInfo {
7829public:
7830 XCoreABIInfo(CodeGen::CodeGenTypes &CGT) : DefaultABIInfo(CGT) {}
John McCall7f416cc2015-09-08 08:05:57 +00007831 Address EmitVAArg(CodeGenFunction &CGF, Address VAListAddr,
7832 QualType Ty) const override;
Robert Lytton7d1db152013-08-19 09:46:39 +00007833};
7834
Robert Lyttond21e2d72014-03-03 13:45:29 +00007835class XCoreTargetCodeGenInfo : public TargetCodeGenInfo {
Robert Lytton844aeeb2014-05-02 09:33:20 +00007836 mutable TypeStringCache TSC;
Robert Lytton0e076492013-08-13 09:43:10 +00007837public:
Robert Lyttond21e2d72014-03-03 13:45:29 +00007838 XCoreTargetCodeGenInfo(CodeGenTypes &CGT)
Robert Lytton7d1db152013-08-19 09:46:39 +00007839 :TargetCodeGenInfo(new XCoreABIInfo(CGT)) {}
Rafael Espindola8dcd6e72014-05-08 15:01:48 +00007840 void emitTargetMD(const Decl *D, llvm::GlobalValue *GV,
7841 CodeGen::CodeGenModule &M) const override;
Robert Lytton0e076492013-08-13 09:43:10 +00007842};
Robert Lytton844aeeb2014-05-02 09:33:20 +00007843
Robert Lytton2d196952013-10-11 10:29:34 +00007844} // End anonymous namespace.
Robert Lytton0e076492013-08-13 09:43:10 +00007845
James Y Knight29b5f082016-02-24 02:59:33 +00007846// TODO: this implementation is likely now redundant with the default
7847// EmitVAArg.
John McCall7f416cc2015-09-08 08:05:57 +00007848Address XCoreABIInfo::EmitVAArg(CodeGenFunction &CGF, Address VAListAddr,
7849 QualType Ty) const {
Robert Lytton7d1db152013-08-19 09:46:39 +00007850 CGBuilderTy &Builder = CGF.Builder;
Robert Lytton7d1db152013-08-19 09:46:39 +00007851
Robert Lytton2d196952013-10-11 10:29:34 +00007852 // Get the VAList.
John McCall7f416cc2015-09-08 08:05:57 +00007853 CharUnits SlotSize = CharUnits::fromQuantity(4);
7854 Address AP(Builder.CreateLoad(VAListAddr), SlotSize);
Robert Lytton7d1db152013-08-19 09:46:39 +00007855
Robert Lytton2d196952013-10-11 10:29:34 +00007856 // Handle the argument.
7857 ABIArgInfo AI = classifyArgumentType(Ty);
John McCall7f416cc2015-09-08 08:05:57 +00007858 CharUnits TypeAlign = getContext().getTypeAlignInChars(Ty);
Robert Lytton2d196952013-10-11 10:29:34 +00007859 llvm::Type *ArgTy = CGT.ConvertType(Ty);
7860 if (AI.canHaveCoerceToType() && !AI.getCoerceToType())
7861 AI.setCoerceToType(ArgTy);
Robert Lytton7d1db152013-08-19 09:46:39 +00007862 llvm::Type *ArgPtrTy = llvm::PointerType::getUnqual(ArgTy);
John McCall7f416cc2015-09-08 08:05:57 +00007863
7864 Address Val = Address::invalid();
7865 CharUnits ArgSize = CharUnits::Zero();
Robert Lytton7d1db152013-08-19 09:46:39 +00007866 switch (AI.getKind()) {
Robert Lytton7d1db152013-08-19 09:46:39 +00007867 case ABIArgInfo::Expand:
John McCallf26e73d2016-03-11 04:30:43 +00007868 case ABIArgInfo::CoerceAndExpand:
Reid Kleckner314ef7b2014-02-01 00:04:45 +00007869 case ABIArgInfo::InAlloca:
Robert Lytton7d1db152013-08-19 09:46:39 +00007870 llvm_unreachable("Unsupported ABI kind for va_arg");
7871 case ABIArgInfo::Ignore:
John McCall7f416cc2015-09-08 08:05:57 +00007872 Val = Address(llvm::UndefValue::get(ArgPtrTy), TypeAlign);
7873 ArgSize = CharUnits::Zero();
Robert Lytton2d196952013-10-11 10:29:34 +00007874 break;
Robert Lytton7d1db152013-08-19 09:46:39 +00007875 case ABIArgInfo::Extend:
7876 case ABIArgInfo::Direct:
John McCall7f416cc2015-09-08 08:05:57 +00007877 Val = Builder.CreateBitCast(AP, ArgPtrTy);
7878 ArgSize = CharUnits::fromQuantity(
7879 getDataLayout().getTypeAllocSize(AI.getCoerceToType()));
Rui Ueyama83aa9792016-01-14 21:00:27 +00007880 ArgSize = ArgSize.alignTo(SlotSize);
Robert Lytton2d196952013-10-11 10:29:34 +00007881 break;
Robert Lytton7d1db152013-08-19 09:46:39 +00007882 case ABIArgInfo::Indirect:
John McCall7f416cc2015-09-08 08:05:57 +00007883 Val = Builder.CreateElementBitCast(AP, ArgPtrTy);
7884 Val = Address(Builder.CreateLoad(Val), TypeAlign);
7885 ArgSize = SlotSize;
Robert Lytton2d196952013-10-11 10:29:34 +00007886 break;
Robert Lytton7d1db152013-08-19 09:46:39 +00007887 }
Robert Lytton2d196952013-10-11 10:29:34 +00007888
7889 // Increment the VAList.
John McCall7f416cc2015-09-08 08:05:57 +00007890 if (!ArgSize.isZero()) {
7891 llvm::Value *APN =
7892 Builder.CreateConstInBoundsByteGEP(AP.getPointer(), ArgSize);
7893 Builder.CreateStore(APN, VAListAddr);
Robert Lytton2d196952013-10-11 10:29:34 +00007894 }
John McCall7f416cc2015-09-08 08:05:57 +00007895
Robert Lytton2d196952013-10-11 10:29:34 +00007896 return Val;
Robert Lytton7d1db152013-08-19 09:46:39 +00007897}
Robert Lytton0e076492013-08-13 09:43:10 +00007898
Robert Lytton844aeeb2014-05-02 09:33:20 +00007899/// During the expansion of a RecordType, an incomplete TypeString is placed
7900/// into the cache as a means to identify and break recursion.
7901/// If there is a Recursive encoding in the cache, it is swapped out and will
7902/// be reinserted by removeIncomplete().
7903/// All other types of encoding should have been used rather than arriving here.
7904void TypeStringCache::addIncomplete(const IdentifierInfo *ID,
7905 std::string StubEnc) {
7906 if (!ID)
7907 return;
7908 Entry &E = Map[ID];
7909 assert( (E.Str.empty() || E.State == Recursive) &&
7910 "Incorrectly use of addIncomplete");
7911 assert(!StubEnc.empty() && "Passing an empty string to addIncomplete()");
7912 E.Swapped.swap(E.Str); // swap out the Recursive
7913 E.Str.swap(StubEnc);
7914 E.State = Incomplete;
7915 ++IncompleteCount;
7916}
7917
7918/// Once the RecordType has been expanded, the temporary incomplete TypeString
7919/// must be removed from the cache.
7920/// If a Recursive was swapped out by addIncomplete(), it will be replaced.
7921/// Returns true if the RecordType was defined recursively.
7922bool TypeStringCache::removeIncomplete(const IdentifierInfo *ID) {
7923 if (!ID)
7924 return false;
7925 auto I = Map.find(ID);
7926 assert(I != Map.end() && "Entry not present");
7927 Entry &E = I->second;
7928 assert( (E.State == Incomplete ||
7929 E.State == IncompleteUsed) &&
7930 "Entry must be an incomplete type");
7931 bool IsRecursive = false;
7932 if (E.State == IncompleteUsed) {
7933 // We made use of our Incomplete encoding, thus we are recursive.
7934 IsRecursive = true;
7935 --IncompleteUsedCount;
7936 }
7937 if (E.Swapped.empty())
7938 Map.erase(I);
7939 else {
7940 // Swap the Recursive back.
7941 E.Swapped.swap(E.Str);
7942 E.Swapped.clear();
7943 E.State = Recursive;
7944 }
7945 --IncompleteCount;
7946 return IsRecursive;
7947}
7948
7949/// Add the encoded TypeString to the cache only if it is NonRecursive or
7950/// Recursive (viz: all sub-members were expanded as fully as possible).
7951void TypeStringCache::addIfComplete(const IdentifierInfo *ID, StringRef Str,
7952 bool IsRecursive) {
7953 if (!ID || IncompleteUsedCount)
7954 return; // No key or it is is an incomplete sub-type so don't add.
7955 Entry &E = Map[ID];
7956 if (IsRecursive && !E.Str.empty()) {
7957 assert(E.State==Recursive && E.Str.size() == Str.size() &&
7958 "This is not the same Recursive entry");
7959 // The parent container was not recursive after all, so we could have used
7960 // this Recursive sub-member entry after all, but we assumed the worse when
7961 // we started viz: IncompleteCount!=0.
7962 return;
7963 }
7964 assert(E.Str.empty() && "Entry already present");
7965 E.Str = Str.str();
7966 E.State = IsRecursive? Recursive : NonRecursive;
7967}
7968
7969/// Return a cached TypeString encoding for the ID. If there isn't one, or we
7970/// are recursively expanding a type (IncompleteCount != 0) and the cached
7971/// encoding is Recursive, return an empty StringRef.
7972StringRef TypeStringCache::lookupStr(const IdentifierInfo *ID) {
7973 if (!ID)
7974 return StringRef(); // We have no key.
7975 auto I = Map.find(ID);
7976 if (I == Map.end())
7977 return StringRef(); // We have no encoding.
7978 Entry &E = I->second;
7979 if (E.State == Recursive && IncompleteCount)
7980 return StringRef(); // We don't use Recursive encodings for member types.
7981
7982 if (E.State == Incomplete) {
7983 // The incomplete type is being used to break out of recursion.
7984 E.State = IncompleteUsed;
7985 ++IncompleteUsedCount;
7986 }
Malcolm Parsonsf76f6502016-11-02 10:39:27 +00007987 return E.Str;
Robert Lytton844aeeb2014-05-02 09:33:20 +00007988}
7989
7990/// The XCore ABI includes a type information section that communicates symbol
7991/// type information to the linker. The linker uses this information to verify
7992/// safety/correctness of things such as array bound and pointers et al.
7993/// The ABI only requires C (and XC) language modules to emit TypeStrings.
7994/// This type information (TypeString) is emitted into meta data for all global
7995/// symbols: definitions, declarations, functions & variables.
7996///
7997/// The TypeString carries type, qualifier, name, size & value details.
7998/// Please see 'Tools Development Guide' section 2.16.2 for format details:
Eric Christopher7565e0d2015-05-29 23:09:49 +00007999/// https://www.xmos.com/download/public/Tools-Development-Guide%28X9114A%29.pdf
Robert Lytton844aeeb2014-05-02 09:33:20 +00008000/// The output is tested by test/CodeGen/xcore-stringtype.c.
8001///
8002static bool getTypeString(SmallStringEnc &Enc, const Decl *D,
8003 CodeGen::CodeGenModule &CGM, TypeStringCache &TSC);
8004
8005/// XCore uses emitTargetMD to emit TypeString metadata for global symbols.
8006void XCoreTargetCodeGenInfo::emitTargetMD(const Decl *D, llvm::GlobalValue *GV,
8007 CodeGen::CodeGenModule &CGM) const {
8008 SmallStringEnc Enc;
8009 if (getTypeString(Enc, D, CGM, TSC)) {
8010 llvm::LLVMContext &Ctx = CGM.getModule().getContext();
Benjamin Kramer30934732016-07-02 11:41:41 +00008011 llvm::Metadata *MDVals[] = {llvm::ConstantAsMetadata::get(GV),
8012 llvm::MDString::get(Ctx, Enc.str())};
Robert Lytton844aeeb2014-05-02 09:33:20 +00008013 llvm::NamedMDNode *MD =
8014 CGM.getModule().getOrInsertNamedMetadata("xcore.typestrings");
8015 MD->addOperand(llvm::MDNode::get(Ctx, MDVals));
8016 }
8017}
8018
Xiuli Pan972bea82016-03-24 03:57:17 +00008019//===----------------------------------------------------------------------===//
8020// SPIR ABI Implementation
8021//===----------------------------------------------------------------------===//
8022
8023namespace {
8024class SPIRTargetCodeGenInfo : public TargetCodeGenInfo {
8025public:
8026 SPIRTargetCodeGenInfo(CodeGen::CodeGenTypes &CGT)
8027 : TargetCodeGenInfo(new DefaultABIInfo(CGT)) {}
8028 void emitTargetMD(const Decl *D, llvm::GlobalValue *GV,
8029 CodeGen::CodeGenModule &M) const override;
Nikolay Haustov8c6538b2016-06-30 09:06:33 +00008030 unsigned getOpenCLKernelCallingConv() const override;
Xiuli Pan972bea82016-03-24 03:57:17 +00008031};
8032} // End anonymous namespace.
8033
8034/// Emit SPIR specific metadata: OpenCL and SPIR version.
8035void SPIRTargetCodeGenInfo::emitTargetMD(const Decl *D, llvm::GlobalValue *GV,
8036 CodeGen::CodeGenModule &CGM) const {
Xiuli Pan972bea82016-03-24 03:57:17 +00008037 llvm::LLVMContext &Ctx = CGM.getModule().getContext();
8038 llvm::Type *Int32Ty = llvm::Type::getInt32Ty(Ctx);
8039 llvm::Module &M = CGM.getModule();
8040 // SPIR v2.0 s2.12 - The SPIR version used by the module is stored in the
8041 // opencl.spir.version named metadata.
8042 llvm::Metadata *SPIRVerElts[] = {
Alexey Baderb3190822016-12-07 08:38:24 +00008043 llvm::ConstantAsMetadata::get(
8044 llvm::ConstantInt::get(Int32Ty, CGM.getLangOpts().OpenCLVersion / 100)),
8045 llvm::ConstantAsMetadata::get(llvm::ConstantInt::get(
8046 Int32Ty, (CGM.getLangOpts().OpenCLVersion / 100 > 1) ? 0 : 2))};
Xiuli Pan972bea82016-03-24 03:57:17 +00008047 llvm::NamedMDNode *SPIRVerMD =
8048 M.getOrInsertNamedMetadata("opencl.spir.version");
8049 SPIRVerMD->addOperand(llvm::MDNode::get(Ctx, SPIRVerElts));
Yaxun Liuf2e8ab22016-07-19 19:39:45 +00008050 appendOpenCLVersionMD(CGM);
8051}
8052
Matt Arsenault8afb5cd2016-09-07 07:07:59 +00008053static void appendOpenCLVersionMD(CodeGen::CodeGenModule &CGM) {
Yaxun Liuf2e8ab22016-07-19 19:39:45 +00008054 llvm::LLVMContext &Ctx = CGM.getModule().getContext();
8055 llvm::Type *Int32Ty = llvm::Type::getInt32Ty(Ctx);
8056 llvm::Module &M = CGM.getModule();
Xiuli Pan972bea82016-03-24 03:57:17 +00008057 // SPIR v2.0 s2.13 - The OpenCL version used by the module is stored in the
8058 // opencl.ocl.version named metadata node.
8059 llvm::Metadata *OCLVerElts[] = {
8060 llvm::ConstantAsMetadata::get(llvm::ConstantInt::get(
8061 Int32Ty, CGM.getLangOpts().OpenCLVersion / 100)),
8062 llvm::ConstantAsMetadata::get(llvm::ConstantInt::get(
8063 Int32Ty, (CGM.getLangOpts().OpenCLVersion % 100) / 10))};
8064 llvm::NamedMDNode *OCLVerMD =
8065 M.getOrInsertNamedMetadata("opencl.ocl.version");
8066 OCLVerMD->addOperand(llvm::MDNode::get(Ctx, OCLVerElts));
8067}
8068
Nikolay Haustov8c6538b2016-06-30 09:06:33 +00008069unsigned SPIRTargetCodeGenInfo::getOpenCLKernelCallingConv() const {
8070 return llvm::CallingConv::SPIR_KERNEL;
8071}
8072
Robert Lytton844aeeb2014-05-02 09:33:20 +00008073static bool appendType(SmallStringEnc &Enc, QualType QType,
8074 const CodeGen::CodeGenModule &CGM,
8075 TypeStringCache &TSC);
8076
8077/// Helper function for appendRecordType().
Eric Christopher7565e0d2015-05-29 23:09:49 +00008078/// Builds a SmallVector containing the encoded field types in declaration
8079/// order.
Robert Lytton844aeeb2014-05-02 09:33:20 +00008080static bool extractFieldType(SmallVectorImpl<FieldEncoding> &FE,
8081 const RecordDecl *RD,
8082 const CodeGen::CodeGenModule &CGM,
8083 TypeStringCache &TSC) {
Hans Wennborga302cd92014-08-21 16:06:57 +00008084 for (const auto *Field : RD->fields()) {
Robert Lytton844aeeb2014-05-02 09:33:20 +00008085 SmallStringEnc Enc;
8086 Enc += "m(";
Hans Wennborga302cd92014-08-21 16:06:57 +00008087 Enc += Field->getName();
Robert Lytton844aeeb2014-05-02 09:33:20 +00008088 Enc += "){";
Hans Wennborga302cd92014-08-21 16:06:57 +00008089 if (Field->isBitField()) {
Robert Lytton844aeeb2014-05-02 09:33:20 +00008090 Enc += "b(";
8091 llvm::raw_svector_ostream OS(Enc);
Hans Wennborga302cd92014-08-21 16:06:57 +00008092 OS << Field->getBitWidthValue(CGM.getContext());
Robert Lytton844aeeb2014-05-02 09:33:20 +00008093 Enc += ':';
8094 }
Hans Wennborga302cd92014-08-21 16:06:57 +00008095 if (!appendType(Enc, Field->getType(), CGM, TSC))
Robert Lytton844aeeb2014-05-02 09:33:20 +00008096 return false;
Hans Wennborga302cd92014-08-21 16:06:57 +00008097 if (Field->isBitField())
Robert Lytton844aeeb2014-05-02 09:33:20 +00008098 Enc += ')';
8099 Enc += '}';
Benjamin Kramer3204b152015-05-29 19:42:19 +00008100 FE.emplace_back(!Field->getName().empty(), Enc);
Robert Lytton844aeeb2014-05-02 09:33:20 +00008101 }
8102 return true;
8103}
8104
8105/// Appends structure and union types to Enc and adds encoding to cache.
8106/// Recursively calls appendType (via extractFieldType) for each field.
8107/// Union types have their fields ordered according to the ABI.
8108static bool appendRecordType(SmallStringEnc &Enc, const RecordType *RT,
8109 const CodeGen::CodeGenModule &CGM,
8110 TypeStringCache &TSC, const IdentifierInfo *ID) {
8111 // Append the cached TypeString if we have one.
8112 StringRef TypeString = TSC.lookupStr(ID);
8113 if (!TypeString.empty()) {
8114 Enc += TypeString;
8115 return true;
8116 }
8117
8118 // Start to emit an incomplete TypeString.
8119 size_t Start = Enc.size();
8120 Enc += (RT->isUnionType()? 'u' : 's');
8121 Enc += '(';
8122 if (ID)
8123 Enc += ID->getName();
8124 Enc += "){";
8125
8126 // We collect all encoded fields and order as necessary.
8127 bool IsRecursive = false;
Robert Lytton844aeeb2014-05-02 09:33:20 +00008128 const RecordDecl *RD = RT->getDecl()->getDefinition();
8129 if (RD && !RD->field_empty()) {
8130 // An incomplete TypeString stub is placed in the cache for this RecordType
8131 // so that recursive calls to this RecordType will use it whilst building a
8132 // complete TypeString for this RecordType.
Robert Lyttondb8c1cb2014-05-20 07:19:33 +00008133 SmallVector<FieldEncoding, 16> FE;
Robert Lytton844aeeb2014-05-02 09:33:20 +00008134 std::string StubEnc(Enc.substr(Start).str());
8135 StubEnc += '}'; // StubEnc now holds a valid incomplete TypeString.
8136 TSC.addIncomplete(ID, std::move(StubEnc));
8137 if (!extractFieldType(FE, RD, CGM, TSC)) {
8138 (void) TSC.removeIncomplete(ID);
8139 return false;
8140 }
8141 IsRecursive = TSC.removeIncomplete(ID);
8142 // The ABI requires unions to be sorted but not structures.
8143 // See FieldEncoding::operator< for sort algorithm.
8144 if (RT->isUnionType())
8145 std::sort(FE.begin(), FE.end());
Robert Lyttondb8c1cb2014-05-20 07:19:33 +00008146 // We can now complete the TypeString.
8147 unsigned E = FE.size();
Robert Lytton844aeeb2014-05-02 09:33:20 +00008148 for (unsigned I = 0; I != E; ++I) {
8149 if (I)
8150 Enc += ',';
8151 Enc += FE[I].str();
8152 }
Robert Lyttondb8c1cb2014-05-20 07:19:33 +00008153 }
Robert Lytton844aeeb2014-05-02 09:33:20 +00008154 Enc += '}';
8155 TSC.addIfComplete(ID, Enc.substr(Start), IsRecursive);
8156 return true;
8157}
8158
8159/// Appends enum types to Enc and adds the encoding to the cache.
8160static bool appendEnumType(SmallStringEnc &Enc, const EnumType *ET,
8161 TypeStringCache &TSC,
8162 const IdentifierInfo *ID) {
8163 // Append the cached TypeString if we have one.
8164 StringRef TypeString = TSC.lookupStr(ID);
8165 if (!TypeString.empty()) {
8166 Enc += TypeString;
8167 return true;
8168 }
8169
8170 size_t Start = Enc.size();
8171 Enc += "e(";
8172 if (ID)
8173 Enc += ID->getName();
8174 Enc += "){";
Robert Lyttondb8c1cb2014-05-20 07:19:33 +00008175
8176 // We collect all encoded enumerations and order them alphanumerically.
Robert Lytton844aeeb2014-05-02 09:33:20 +00008177 if (const EnumDecl *ED = ET->getDecl()->getDefinition()) {
Robert Lyttondb8c1cb2014-05-20 07:19:33 +00008178 SmallVector<FieldEncoding, 16> FE;
8179 for (auto I = ED->enumerator_begin(), E = ED->enumerator_end(); I != E;
8180 ++I) {
8181 SmallStringEnc EnumEnc;
8182 EnumEnc += "m(";
8183 EnumEnc += I->getName();
8184 EnumEnc += "){";
8185 I->getInitVal().toString(EnumEnc);
8186 EnumEnc += '}';
8187 FE.push_back(FieldEncoding(!I->getName().empty(), EnumEnc));
8188 }
8189 std::sort(FE.begin(), FE.end());
8190 unsigned E = FE.size();
8191 for (unsigned I = 0; I != E; ++I) {
8192 if (I)
Robert Lytton844aeeb2014-05-02 09:33:20 +00008193 Enc += ',';
Robert Lyttondb8c1cb2014-05-20 07:19:33 +00008194 Enc += FE[I].str();
Robert Lytton844aeeb2014-05-02 09:33:20 +00008195 }
8196 }
8197 Enc += '}';
8198 TSC.addIfComplete(ID, Enc.substr(Start), false);
8199 return true;
8200}
8201
8202/// Appends type's qualifier to Enc.
8203/// This is done prior to appending the type's encoding.
8204static void appendQualifier(SmallStringEnc &Enc, QualType QT) {
8205 // Qualifiers are emitted in alphabetical order.
Craig Topper273dbc62015-10-18 05:29:26 +00008206 static const char *const Table[]={"","c:","r:","cr:","v:","cv:","rv:","crv:"};
Robert Lytton844aeeb2014-05-02 09:33:20 +00008207 int Lookup = 0;
8208 if (QT.isConstQualified())
8209 Lookup += 1<<0;
8210 if (QT.isRestrictQualified())
8211 Lookup += 1<<1;
8212 if (QT.isVolatileQualified())
8213 Lookup += 1<<2;
8214 Enc += Table[Lookup];
8215}
8216
8217/// Appends built-in types to Enc.
8218static bool appendBuiltinType(SmallStringEnc &Enc, const BuiltinType *BT) {
8219 const char *EncType;
8220 switch (BT->getKind()) {
8221 case BuiltinType::Void:
8222 EncType = "0";
8223 break;
8224 case BuiltinType::Bool:
8225 EncType = "b";
8226 break;
8227 case BuiltinType::Char_U:
8228 EncType = "uc";
8229 break;
8230 case BuiltinType::UChar:
8231 EncType = "uc";
8232 break;
8233 case BuiltinType::SChar:
8234 EncType = "sc";
8235 break;
8236 case BuiltinType::UShort:
8237 EncType = "us";
8238 break;
8239 case BuiltinType::Short:
8240 EncType = "ss";
8241 break;
8242 case BuiltinType::UInt:
8243 EncType = "ui";
8244 break;
8245 case BuiltinType::Int:
8246 EncType = "si";
8247 break;
8248 case BuiltinType::ULong:
8249 EncType = "ul";
8250 break;
8251 case BuiltinType::Long:
8252 EncType = "sl";
8253 break;
8254 case BuiltinType::ULongLong:
8255 EncType = "ull";
8256 break;
8257 case BuiltinType::LongLong:
8258 EncType = "sll";
8259 break;
8260 case BuiltinType::Float:
8261 EncType = "ft";
8262 break;
8263 case BuiltinType::Double:
8264 EncType = "d";
8265 break;
8266 case BuiltinType::LongDouble:
8267 EncType = "ld";
8268 break;
8269 default:
8270 return false;
8271 }
8272 Enc += EncType;
8273 return true;
8274}
8275
8276/// Appends a pointer encoding to Enc before calling appendType for the pointee.
8277static bool appendPointerType(SmallStringEnc &Enc, const PointerType *PT,
8278 const CodeGen::CodeGenModule &CGM,
8279 TypeStringCache &TSC) {
8280 Enc += "p(";
8281 if (!appendType(Enc, PT->getPointeeType(), CGM, TSC))
8282 return false;
8283 Enc += ')';
8284 return true;
8285}
8286
8287/// Appends array encoding to Enc before calling appendType for the element.
Robert Lytton6adb20f2014-06-05 09:06:21 +00008288static bool appendArrayType(SmallStringEnc &Enc, QualType QT,
8289 const ArrayType *AT,
Robert Lytton844aeeb2014-05-02 09:33:20 +00008290 const CodeGen::CodeGenModule &CGM,
8291 TypeStringCache &TSC, StringRef NoSizeEnc) {
8292 if (AT->getSizeModifier() != ArrayType::Normal)
8293 return false;
8294 Enc += "a(";
8295 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(AT))
8296 CAT->getSize().toStringUnsigned(Enc);
8297 else
8298 Enc += NoSizeEnc; // Global arrays use "*", otherwise it is "".
8299 Enc += ':';
Robert Lytton6adb20f2014-06-05 09:06:21 +00008300 // The Qualifiers should be attached to the type rather than the array.
8301 appendQualifier(Enc, QT);
Robert Lytton844aeeb2014-05-02 09:33:20 +00008302 if (!appendType(Enc, AT->getElementType(), CGM, TSC))
8303 return false;
8304 Enc += ')';
8305 return true;
8306}
8307
8308/// Appends a function encoding to Enc, calling appendType for the return type
8309/// and the arguments.
8310static bool appendFunctionType(SmallStringEnc &Enc, const FunctionType *FT,
8311 const CodeGen::CodeGenModule &CGM,
8312 TypeStringCache &TSC) {
8313 Enc += "f{";
8314 if (!appendType(Enc, FT->getReturnType(), CGM, TSC))
8315 return false;
8316 Enc += "}(";
8317 if (const FunctionProtoType *FPT = FT->getAs<FunctionProtoType>()) {
8318 // N.B. we are only interested in the adjusted param types.
8319 auto I = FPT->param_type_begin();
8320 auto E = FPT->param_type_end();
8321 if (I != E) {
8322 do {
8323 if (!appendType(Enc, *I, CGM, TSC))
8324 return false;
8325 ++I;
8326 if (I != E)
8327 Enc += ',';
8328 } while (I != E);
8329 if (FPT->isVariadic())
8330 Enc += ",va";
8331 } else {
8332 if (FPT->isVariadic())
8333 Enc += "va";
8334 else
8335 Enc += '0';
8336 }
8337 }
8338 Enc += ')';
8339 return true;
8340}
8341
8342/// Handles the type's qualifier before dispatching a call to handle specific
8343/// type encodings.
8344static bool appendType(SmallStringEnc &Enc, QualType QType,
8345 const CodeGen::CodeGenModule &CGM,
8346 TypeStringCache &TSC) {
8347
8348 QualType QT = QType.getCanonicalType();
8349
Robert Lytton6adb20f2014-06-05 09:06:21 +00008350 if (const ArrayType *AT = QT->getAsArrayTypeUnsafe())
8351 // The Qualifiers should be attached to the type rather than the array.
8352 // Thus we don't call appendQualifier() here.
8353 return appendArrayType(Enc, QT, AT, CGM, TSC, "");
8354
Robert Lytton844aeeb2014-05-02 09:33:20 +00008355 appendQualifier(Enc, QT);
8356
8357 if (const BuiltinType *BT = QT->getAs<BuiltinType>())
8358 return appendBuiltinType(Enc, BT);
8359
Robert Lytton844aeeb2014-05-02 09:33:20 +00008360 if (const PointerType *PT = QT->getAs<PointerType>())
8361 return appendPointerType(Enc, PT, CGM, TSC);
8362
8363 if (const EnumType *ET = QT->getAs<EnumType>())
8364 return appendEnumType(Enc, ET, TSC, QT.getBaseTypeIdentifier());
8365
8366 if (const RecordType *RT = QT->getAsStructureType())
8367 return appendRecordType(Enc, RT, CGM, TSC, QT.getBaseTypeIdentifier());
8368
8369 if (const RecordType *RT = QT->getAsUnionType())
8370 return appendRecordType(Enc, RT, CGM, TSC, QT.getBaseTypeIdentifier());
8371
8372 if (const FunctionType *FT = QT->getAs<FunctionType>())
8373 return appendFunctionType(Enc, FT, CGM, TSC);
8374
8375 return false;
8376}
8377
8378static bool getTypeString(SmallStringEnc &Enc, const Decl *D,
8379 CodeGen::CodeGenModule &CGM, TypeStringCache &TSC) {
8380 if (!D)
8381 return false;
8382
8383 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
8384 if (FD->getLanguageLinkage() != CLanguageLinkage)
8385 return false;
8386 return appendType(Enc, FD->getType(), CGM, TSC);
8387 }
8388
8389 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
8390 if (VD->getLanguageLinkage() != CLanguageLinkage)
8391 return false;
8392 QualType QT = VD->getType().getCanonicalType();
8393 if (const ArrayType *AT = QT->getAsArrayTypeUnsafe()) {
8394 // Global ArrayTypes are given a size of '*' if the size is unknown.
Robert Lytton6adb20f2014-06-05 09:06:21 +00008395 // The Qualifiers should be attached to the type rather than the array.
8396 // Thus we don't call appendQualifier() here.
8397 return appendArrayType(Enc, QT, AT, CGM, TSC, "*");
Robert Lytton844aeeb2014-05-02 09:33:20 +00008398 }
8399 return appendType(Enc, QT, CGM, TSC);
8400 }
8401 return false;
8402}
8403
8404
Robert Lytton0e076492013-08-13 09:43:10 +00008405//===----------------------------------------------------------------------===//
8406// Driver code
8407//===----------------------------------------------------------------------===//
8408
Rafael Espindola9f834732014-09-19 01:54:22 +00008409bool CodeGenModule::supportsCOMDAT() const {
Xinliang David Li865cfdd2016-05-25 17:25:57 +00008410 return getTriple().supportsCOMDAT();
Rafael Espindola9f834732014-09-19 01:54:22 +00008411}
8412
Chris Lattner2b037972010-07-29 02:01:43 +00008413const TargetCodeGenInfo &CodeGenModule::getTargetCodeGenInfo() {
Anton Korobeynikov55bcea12010-01-10 12:58:08 +00008414 if (TheTargetCodeGenInfo)
8415 return *TheTargetCodeGenInfo;
Anton Korobeynikov244360d2009-06-05 22:08:42 +00008416
Reid Kleckner9305fd12016-04-13 23:37:17 +00008417 // Helper to set the unique_ptr while still keeping the return value.
8418 auto SetCGInfo = [&](TargetCodeGenInfo *P) -> const TargetCodeGenInfo & {
8419 this->TheTargetCodeGenInfo.reset(P);
8420 return *P;
8421 };
8422
John McCallc8e01702013-04-16 22:48:15 +00008423 const llvm::Triple &Triple = getTarget().getTriple();
Daniel Dunbar40165182009-08-24 09:10:05 +00008424 switch (Triple.getArch()) {
Daniel Dunbare3532f82009-08-24 08:52:16 +00008425 default:
Reid Kleckner9305fd12016-04-13 23:37:17 +00008426 return SetCGInfo(new DefaultTargetCodeGenInfo(Types));
Daniel Dunbare3532f82009-08-24 08:52:16 +00008427
Derek Schuff09338a22012-09-06 17:37:28 +00008428 case llvm::Triple::le32:
Reid Kleckner9305fd12016-04-13 23:37:17 +00008429 return SetCGInfo(new PNaClTargetCodeGenInfo(Types));
John McCall943fae92010-05-27 06:19:26 +00008430 case llvm::Triple::mips:
8431 case llvm::Triple::mipsel:
Petar Jovanovic26a4a402015-07-08 13:07:31 +00008432 if (Triple.getOS() == llvm::Triple::NaCl)
Reid Kleckner9305fd12016-04-13 23:37:17 +00008433 return SetCGInfo(new PNaClTargetCodeGenInfo(Types));
8434 return SetCGInfo(new MIPSTargetCodeGenInfo(Types, true));
Akira Hatanakac4baedd2013-11-11 22:10:46 +00008435
Akira Hatanakaec11b4f2011-09-20 18:30:57 +00008436 case llvm::Triple::mips64:
8437 case llvm::Triple::mips64el:
Reid Kleckner9305fd12016-04-13 23:37:17 +00008438 return SetCGInfo(new MIPSTargetCodeGenInfo(Types, false));
Akira Hatanakac4baedd2013-11-11 22:10:46 +00008439
Dylan McKaye8232d72017-02-08 05:09:26 +00008440 case llvm::Triple::avr:
8441 return SetCGInfo(new AVRTargetCodeGenInfo(Types));
8442
Tim Northover25e8a672014-05-24 12:51:25 +00008443 case llvm::Triple::aarch64:
Tim Northover40956e62014-07-23 12:32:58 +00008444 case llvm::Triple::aarch64_be: {
Tim Northover573cbee2014-05-24 12:52:07 +00008445 AArch64ABIInfo::ABIKind Kind = AArch64ABIInfo::AAPCS;
Alp Toker4925ba72014-06-07 23:30:42 +00008446 if (getTarget().getABI() == "darwinpcs")
Tim Northover573cbee2014-05-24 12:52:07 +00008447 Kind = AArch64ABIInfo::DarwinPCS;
Tim Northovera2ee4332014-03-29 15:09:45 +00008448
Reid Kleckner9305fd12016-04-13 23:37:17 +00008449 return SetCGInfo(new AArch64TargetCodeGenInfo(Types, Kind));
Tim Northovera2ee4332014-03-29 15:09:45 +00008450 }
8451
Dan Gohmanc2853072015-09-03 22:51:53 +00008452 case llvm::Triple::wasm32:
8453 case llvm::Triple::wasm64:
Reid Kleckner9305fd12016-04-13 23:37:17 +00008454 return SetCGInfo(new WebAssemblyTargetCodeGenInfo(Types));
Dan Gohmanc2853072015-09-03 22:51:53 +00008455
Daniel Dunbard59655c2009-09-12 00:59:49 +00008456 case llvm::Triple::arm:
Christian Pirkerf01cd6f2014-03-28 14:40:46 +00008457 case llvm::Triple::armeb:
Daniel Dunbard59655c2009-09-12 00:59:49 +00008458 case llvm::Triple::thumb:
Reid Kleckner9305fd12016-04-13 23:37:17 +00008459 case llvm::Triple::thumbeb: {
8460 if (Triple.getOS() == llvm::Triple::Win32) {
8461 return SetCGInfo(
8462 new WindowsARMTargetCodeGenInfo(Types, ARMABIInfo::AAPCS_VFP));
Sandeep Patel45df3dd2011-04-05 00:23:47 +00008463 }
Daniel Dunbard59655c2009-09-12 00:59:49 +00008464
Reid Kleckner9305fd12016-04-13 23:37:17 +00008465 ARMABIInfo::ABIKind Kind = ARMABIInfo::AAPCS;
8466 StringRef ABIStr = getTarget().getABI();
8467 if (ABIStr == "apcs-gnu")
8468 Kind = ARMABIInfo::APCS;
8469 else if (ABIStr == "aapcs16")
8470 Kind = ARMABIInfo::AAPCS16_VFP;
8471 else if (CodeGenOpts.FloatABI == "hard" ||
8472 (CodeGenOpts.FloatABI != "soft" &&
Oleg Ranevskyy7232f662016-05-13 14:45:57 +00008473 (Triple.getEnvironment() == llvm::Triple::GNUEABIHF ||
Rafael Espindola0fa66802016-06-24 21:35:06 +00008474 Triple.getEnvironment() == llvm::Triple::MuslEABIHF ||
Oleg Ranevskyy7232f662016-05-13 14:45:57 +00008475 Triple.getEnvironment() == llvm::Triple::EABIHF)))
Reid Kleckner9305fd12016-04-13 23:37:17 +00008476 Kind = ARMABIInfo::AAPCS_VFP;
8477
8478 return SetCGInfo(new ARMTargetCodeGenInfo(Types, Kind));
8479 }
8480
John McCallea8d8bb2010-03-11 00:10:12 +00008481 case llvm::Triple::ppc:
Reid Kleckner9305fd12016-04-13 23:37:17 +00008482 return SetCGInfo(
8483 new PPC32TargetCodeGenInfo(Types, CodeGenOpts.FloatABI == "soft"));
Roman Divackyd966e722012-05-09 18:22:46 +00008484 case llvm::Triple::ppc64:
Ulrich Weigandb7122372014-07-21 00:48:09 +00008485 if (Triple.isOSBinFormatELF()) {
Ulrich Weigandb7122372014-07-21 00:48:09 +00008486 PPC64_SVR4_ABIInfo::ABIKind Kind = PPC64_SVR4_ABIInfo::ELFv1;
Ulrich Weigand8afad612014-07-28 13:17:52 +00008487 if (getTarget().getABI() == "elfv2")
8488 Kind = PPC64_SVR4_ABIInfo::ELFv2;
Hal Finkel0d0a1a52015-03-11 19:14:15 +00008489 bool HasQPX = getTarget().getABI() == "elfv1-qpx";
Hal Finkel415c2a32016-10-02 02:10:45 +00008490 bool IsSoftFloat = CodeGenOpts.FloatABI == "soft";
Ulrich Weigand8afad612014-07-28 13:17:52 +00008491
Hal Finkel415c2a32016-10-02 02:10:45 +00008492 return SetCGInfo(new PPC64_SVR4_TargetCodeGenInfo(Types, Kind, HasQPX,
8493 IsSoftFloat));
Ulrich Weigandb7122372014-07-21 00:48:09 +00008494 } else
Reid Kleckner9305fd12016-04-13 23:37:17 +00008495 return SetCGInfo(new PPC64TargetCodeGenInfo(Types));
Ulrich Weigandb7122372014-07-21 00:48:09 +00008496 case llvm::Triple::ppc64le: {
Bill Schmidt778d3872013-07-26 01:36:11 +00008497 assert(Triple.isOSBinFormatELF() && "PPC64 LE non-ELF not supported!");
Ulrich Weigandb7122372014-07-21 00:48:09 +00008498 PPC64_SVR4_ABIInfo::ABIKind Kind = PPC64_SVR4_ABIInfo::ELFv2;
Hal Finkel0d0a1a52015-03-11 19:14:15 +00008499 if (getTarget().getABI() == "elfv1" || getTarget().getABI() == "elfv1-qpx")
Ulrich Weigand8afad612014-07-28 13:17:52 +00008500 Kind = PPC64_SVR4_ABIInfo::ELFv1;
Hal Finkel0d0a1a52015-03-11 19:14:15 +00008501 bool HasQPX = getTarget().getABI() == "elfv1-qpx";
Hal Finkel415c2a32016-10-02 02:10:45 +00008502 bool IsSoftFloat = CodeGenOpts.FloatABI == "soft";
Ulrich Weigand8afad612014-07-28 13:17:52 +00008503
Hal Finkel415c2a32016-10-02 02:10:45 +00008504 return SetCGInfo(new PPC64_SVR4_TargetCodeGenInfo(Types, Kind, HasQPX,
8505 IsSoftFloat));
Ulrich Weigandb7122372014-07-21 00:48:09 +00008506 }
John McCallea8d8bb2010-03-11 00:10:12 +00008507
Peter Collingbournec947aae2012-05-20 23:28:41 +00008508 case llvm::Triple::nvptx:
8509 case llvm::Triple::nvptx64:
Reid Kleckner9305fd12016-04-13 23:37:17 +00008510 return SetCGInfo(new NVPTXTargetCodeGenInfo(Types));
Justin Holewinskibd4a3c02011-04-22 11:10:38 +00008511
Anton Korobeynikov55bcea12010-01-10 12:58:08 +00008512 case llvm::Triple::msp430:
Reid Kleckner9305fd12016-04-13 23:37:17 +00008513 return SetCGInfo(new MSP430TargetCodeGenInfo(Types));
Daniel Dunbard59655c2009-09-12 00:59:49 +00008514
Ulrich Weigand66ff51b2015-05-05 19:35:52 +00008515 case llvm::Triple::systemz: {
8516 bool HasVector = getTarget().getABI() == "vector";
Reid Kleckner9305fd12016-04-13 23:37:17 +00008517 return SetCGInfo(new SystemZTargetCodeGenInfo(Types, HasVector));
Ulrich Weigand66ff51b2015-05-05 19:35:52 +00008518 }
Ulrich Weigand47445072013-05-06 16:26:41 +00008519
Peter Collingbourneadcf7c92011-10-13 16:24:41 +00008520 case llvm::Triple::tce:
Pekka Jaaskelainen67354482016-11-16 15:22:31 +00008521 case llvm::Triple::tcele:
Reid Kleckner9305fd12016-04-13 23:37:17 +00008522 return SetCGInfo(new TCETargetCodeGenInfo(Types));
Peter Collingbourneadcf7c92011-10-13 16:24:41 +00008523
Eli Friedman33465822011-07-08 23:31:17 +00008524 case llvm::Triple::x86: {
John McCall1fe2a8c2013-06-18 02:46:29 +00008525 bool IsDarwinVectorABI = Triple.isOSDarwin();
Michael Kupersteindc745202015-10-19 07:52:25 +00008526 bool RetSmallStructInRegABI =
John McCall1fe2a8c2013-06-18 02:46:29 +00008527 X86_32TargetCodeGenInfo::isStructReturnInRegABI(Triple, CodeGenOpts);
Saleem Abdulrasoolec5c6242014-11-23 02:16:24 +00008528 bool IsWin32FloatStructABI = Triple.isOSWindows() && !Triple.isOSCygMing();
Daniel Dunbar14ad22f2011-04-19 21:43:27 +00008529
John McCall1fe2a8c2013-06-18 02:46:29 +00008530 if (Triple.getOS() == llvm::Triple::Win32) {
Reid Kleckner9305fd12016-04-13 23:37:17 +00008531 return SetCGInfo(new WinX86_32TargetCodeGenInfo(
8532 Types, IsDarwinVectorABI, RetSmallStructInRegABI,
8533 IsWin32FloatStructABI, CodeGenOpts.NumRegisterParameters));
John McCall1fe2a8c2013-06-18 02:46:29 +00008534 } else {
Reid Kleckner9305fd12016-04-13 23:37:17 +00008535 return SetCGInfo(new X86_32TargetCodeGenInfo(
8536 Types, IsDarwinVectorABI, RetSmallStructInRegABI,
8537 IsWin32FloatStructABI, CodeGenOpts.NumRegisterParameters,
8538 CodeGenOpts.FloatABI == "soft"));
Anton Korobeynikov244360d2009-06-05 22:08:42 +00008539 }
Eli Friedman33465822011-07-08 23:31:17 +00008540 }
Anton Korobeynikov244360d2009-06-05 22:08:42 +00008541
Eli Friedmanbfd5add2011-12-02 00:11:43 +00008542 case llvm::Triple::x86_64: {
Ahmed Bougachad39a4152015-06-22 21:30:39 +00008543 StringRef ABI = getTarget().getABI();
Reid Kleckner9305fd12016-04-13 23:37:17 +00008544 X86AVXABILevel AVXLevel =
8545 (ABI == "avx512"
8546 ? X86AVXABILevel::AVX512
8547 : ABI == "avx" ? X86AVXABILevel::AVX : X86AVXABILevel::None);
Ahmed Bougachad39a4152015-06-22 21:30:39 +00008548
Chris Lattner04dc9572010-08-31 16:44:54 +00008549 switch (Triple.getOS()) {
8550 case llvm::Triple::Win32:
Reid Kleckner9305fd12016-04-13 23:37:17 +00008551 return SetCGInfo(new WinX86_64TargetCodeGenInfo(Types, AVXLevel));
Alex Rosenberg12207fa2015-01-27 14:47:44 +00008552 case llvm::Triple::PS4:
Reid Kleckner9305fd12016-04-13 23:37:17 +00008553 return SetCGInfo(new PS4TargetCodeGenInfo(Types, AVXLevel));
Chris Lattner04dc9572010-08-31 16:44:54 +00008554 default:
Reid Kleckner9305fd12016-04-13 23:37:17 +00008555 return SetCGInfo(new X86_64TargetCodeGenInfo(Types, AVXLevel));
Chris Lattner04dc9572010-08-31 16:44:54 +00008556 }
Daniel Dunbare3532f82009-08-24 08:52:16 +00008557 }
Tony Linthicum76329bf2011-12-12 21:14:55 +00008558 case llvm::Triple::hexagon:
Reid Kleckner9305fd12016-04-13 23:37:17 +00008559 return SetCGInfo(new HexagonTargetCodeGenInfo(Types));
Jacques Pienaard964cc22016-03-28 21:02:54 +00008560 case llvm::Triple::lanai:
Reid Kleckner9305fd12016-04-13 23:37:17 +00008561 return SetCGInfo(new LanaiTargetCodeGenInfo(Types));
Matt Arsenault43fae6c2014-12-04 20:38:18 +00008562 case llvm::Triple::r600:
Reid Kleckner9305fd12016-04-13 23:37:17 +00008563 return SetCGInfo(new AMDGPUTargetCodeGenInfo(Types));
Tom Stellardd8e38a32015-01-06 20:34:47 +00008564 case llvm::Triple::amdgcn:
Reid Kleckner9305fd12016-04-13 23:37:17 +00008565 return SetCGInfo(new AMDGPUTargetCodeGenInfo(Types));
Chris Dewhurst7e7ee962016-06-08 14:47:25 +00008566 case llvm::Triple::sparc:
8567 return SetCGInfo(new SparcV8TargetCodeGenInfo(Types));
Jakob Stoklund Olesend28ab7e2013-05-27 21:48:25 +00008568 case llvm::Triple::sparcv9:
Reid Kleckner9305fd12016-04-13 23:37:17 +00008569 return SetCGInfo(new SparcV9TargetCodeGenInfo(Types));
Robert Lytton0e076492013-08-13 09:43:10 +00008570 case llvm::Triple::xcore:
Reid Kleckner9305fd12016-04-13 23:37:17 +00008571 return SetCGInfo(new XCoreTargetCodeGenInfo(Types));
Xiuli Pan972bea82016-03-24 03:57:17 +00008572 case llvm::Triple::spir:
8573 case llvm::Triple::spir64:
Reid Kleckner9305fd12016-04-13 23:37:17 +00008574 return SetCGInfo(new SPIRTargetCodeGenInfo(Types));
Eli Friedmanbfd5add2011-12-02 00:11:43 +00008575 }
Anton Korobeynikov244360d2009-06-05 22:08:42 +00008576}