blob: 242b5962070a37f5849b6fb84120155d67743262 [file] [log] [blame]
Nick Lewycky5d4a7552013-10-01 21:51:38 +00001//===--- CGCall.cpp - Encapsulate calling convention details --------------===//
Daniel Dunbar0dbe2272008-09-08 21:33:45 +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
15#include "CGCall.h"
Chris Lattnerce933992010-06-29 16:40:28 +000016#include "ABIInfo.h"
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -070017#include "CGBlocks.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000018#include "CGCXXABI.h"
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -080019#include "CGCleanup.h"
Daniel Dunbar0dbe2272008-09-08 21:33:45 +000020#include "CodeGenFunction.h"
Daniel Dunbarb7688072008-09-10 00:41:16 +000021#include "CodeGenModule.h"
John McCallde5d3c72012-02-17 03:33:10 +000022#include "TargetInfo.h"
Daniel Dunbar0dbe2272008-09-08 21:33:45 +000023#include "clang/AST/Decl.h"
Anders Carlssonf6f8ae52009-04-03 22:48:58 +000024#include "clang/AST/DeclCXX.h"
Daniel Dunbar0dbe2272008-09-08 21:33:45 +000025#include "clang/AST/DeclObjC.h"
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -080026#include "clang/Basic/TargetBuiltins.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000027#include "clang/Basic/TargetInfo.h"
Mark Lacey8b549992013-10-30 21:53:58 +000028#include "clang/CodeGen/CGFunctionInfo.h"
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -070029#include "clang/CodeGen/SwiftCallingConv.h"
Chandler Carruth06057ce2010-06-15 23:19:56 +000030#include "clang/Frontend/CodeGenOptions.h"
Bill Wendlingbe9e8bf2013-02-28 22:49:57 +000031#include "llvm/ADT/StringExtras.h"
Chandler Carruth3b844ba2013-01-02 11:45:17 +000032#include "llvm/IR/Attributes.h"
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -070033#include "llvm/IR/CallingConv.h"
Stephen Hines651f13c2014-04-23 16:59:28 -070034#include "llvm/IR/CallSite.h"
Chandler Carruth3b844ba2013-01-02 11:45:17 +000035#include "llvm/IR/DataLayout.h"
36#include "llvm/IR/InlineAsm.h"
Stephen Hines651f13c2014-04-23 16:59:28 -070037#include "llvm/IR/Intrinsics.h"
Pirama Arumuga Nainarb6d69932015-07-01 12:25:36 -070038#include "llvm/IR/IntrinsicInst.h"
Eli Friedman97cb5a42011-06-15 22:09:18 +000039#include "llvm/Transforms/Utils/Local.h"
Daniel Dunbar0dbe2272008-09-08 21:33:45 +000040using namespace clang;
41using namespace CodeGen;
42
43/***/
44
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -070045unsigned CodeGenTypes::ClangCallConvToLLVMCallConv(CallingConv CC) {
John McCall04a67a62010-02-05 21:31:56 +000046 switch (CC) {
47 default: return llvm::CallingConv::C;
48 case CC_X86StdCall: return llvm::CallingConv::X86_StdCall;
49 case CC_X86FastCall: return llvm::CallingConv::X86_FastCall;
Douglas Gregorf813a2c2010-05-18 16:57:00 +000050 case CC_X86ThisCall: return llvm::CallingConv::X86_ThisCall;
Charles Davise8519c32013-08-30 04:39:01 +000051 case CC_X86_64Win64: return llvm::CallingConv::X86_64_Win64;
52 case CC_X86_64SysV: return llvm::CallingConv::X86_64_SysV;
Anton Korobeynikov414d8962011-04-14 20:06:49 +000053 case CC_AAPCS: return llvm::CallingConv::ARM_AAPCS;
54 case CC_AAPCS_VFP: return llvm::CallingConv::ARM_AAPCS_VFP;
Guy Benyei38980082012-12-25 08:53:55 +000055 case CC_IntelOclBicc: return llvm::CallingConv::Intel_OCL_BI;
Stephen Hines176edba2014-12-01 14:53:08 -080056 // TODO: Add support for __pascal to LLVM.
57 case CC_X86Pascal: return llvm::CallingConv::C;
58 // TODO: Add support for __vectorcall to LLVM.
59 case CC_X86VectorCall: return llvm::CallingConv::X86_VectorCall;
Stephen Hines0e2c34f2015-03-23 12:09:02 -070060 case CC_SpirFunction: return llvm::CallingConv::SPIR_FUNC;
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -070061 case CC_OpenCLKernel: return CGM.getTargetCodeGenInfo().getOpenCLKernelCallingConv();
62 case CC_PreserveMost: return llvm::CallingConv::PreserveMost;
63 case CC_PreserveAll: return llvm::CallingConv::PreserveAll;
64 case CC_Swift: return llvm::CallingConv::Swift;
John McCall04a67a62010-02-05 21:31:56 +000065 }
66}
67
John McCall0b0ef0a2010-02-24 07:14:12 +000068/// Derives the 'this' type for codegen purposes, i.e. ignoring method
69/// qualification.
70/// FIXME: address space qualification?
John McCallead608a2010-02-26 00:48:12 +000071static CanQualType GetThisType(ASTContext &Context, const CXXRecordDecl *RD) {
72 QualType RecTy = Context.getTagDeclType(RD)->getCanonicalTypeInternal();
73 return Context.getPointerType(CanQualType::CreateUnsafe(RecTy));
Daniel Dunbar45c25ba2008-09-10 04:01:49 +000074}
75
John McCall0b0ef0a2010-02-24 07:14:12 +000076/// Returns the canonical formal type of the given C++ method.
John McCallead608a2010-02-26 00:48:12 +000077static CanQual<FunctionProtoType> GetFormalType(const CXXMethodDecl *MD) {
78 return MD->getType()->getCanonicalTypeUnqualified()
79 .getAs<FunctionProtoType>();
John McCall0b0ef0a2010-02-24 07:14:12 +000080}
81
82/// Returns the "extra-canonicalized" return type, which discards
83/// qualifiers on the return type. Codegen doesn't care about them,
84/// and it makes ABI code a little easier to be able to assume that
85/// all parameter and return types are top-level unqualified.
John McCallead608a2010-02-26 00:48:12 +000086static CanQualType GetReturnType(QualType RetTy) {
87 return RetTy->getCanonicalTypeUnqualified().getUnqualifiedType();
John McCall0b0ef0a2010-02-24 07:14:12 +000088}
89
John McCall0f3d0972012-07-07 06:41:13 +000090/// Arrange the argument and result information for a value of the given
91/// unprototyped freestanding function type.
John McCall0b0ef0a2010-02-24 07:14:12 +000092const CGFunctionInfo &
John McCall0f3d0972012-07-07 06:41:13 +000093CodeGenTypes::arrangeFreeFunctionType(CanQual<FunctionNoProtoType> FTNP) {
John McCallde5d3c72012-02-17 03:33:10 +000094 // When translating an unprototyped function type, always use a
95 // variadic type.
Stephen Hines651f13c2014-04-23 16:59:28 -070096 return arrangeLLVMFunctionInfo(FTNP->getReturnType().getUnqualifiedType(),
Stephen Hines0e2c34f2015-03-23 12:09:02 -070097 /*instanceMethod=*/false,
98 /*chainCall=*/false, None,
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -070099 FTNP->getExtInfo(), {}, RequiredArgs(0));
John McCall0b0ef0a2010-02-24 07:14:12 +0000100}
101
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800102/// Adds the formal paramaters in FPT to the given prefix. If any parameter in
103/// FPT has pass_object_size attrs, then we'll add parameters for those, too.
104static void appendParameterTypes(const CodeGenTypes &CGT,
105 SmallVectorImpl<CanQualType> &prefix,
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700106 SmallVectorImpl<FunctionProtoType::ExtParameterInfo> &paramInfos,
107 CanQual<FunctionProtoType> FPT,
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800108 const FunctionDecl *FD) {
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700109 // Fill out paramInfos.
110 if (FPT->hasExtParameterInfos() || !paramInfos.empty()) {
111 assert(paramInfos.size() <= prefix.size());
112 auto protoParamInfos = FPT->getExtParameterInfos();
113 paramInfos.reserve(prefix.size() + protoParamInfos.size());
114 paramInfos.resize(prefix.size());
115 paramInfos.append(protoParamInfos.begin(), protoParamInfos.end());
116 }
117
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800118 // Fast path: unknown target.
119 if (FD == nullptr) {
120 prefix.append(FPT->param_type_begin(), FPT->param_type_end());
121 return;
122 }
123
124 // In the vast majority cases, we'll have precisely FPT->getNumParams()
125 // parameters; the only thing that can change this is the presence of
126 // pass_object_size. So, we preallocate for the common case.
127 prefix.reserve(prefix.size() + FPT->getNumParams());
128
129 assert(FD->getNumParams() == FPT->getNumParams());
130 for (unsigned I = 0, E = FPT->getNumParams(); I != E; ++I) {
131 prefix.push_back(FPT->getParamType(I));
132 if (FD->getParamDecl(I)->hasAttr<PassObjectSizeAttr>())
133 prefix.push_back(CGT.getContext().getSizeType());
134 }
135}
136
John McCall0f3d0972012-07-07 06:41:13 +0000137/// Arrange the LLVM function layout for a value of the given function
Stephen Hines176edba2014-12-01 14:53:08 -0800138/// type, on top of any implicit parameters already stored.
139static const CGFunctionInfo &
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700140arrangeLLVMFunctionInfo(CodeGenTypes &CGT, bool instanceMethod,
Stephen Hines176edba2014-12-01 14:53:08 -0800141 SmallVectorImpl<CanQualType> &prefix,
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800142 CanQual<FunctionProtoType> FTP,
143 const FunctionDecl *FD) {
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700144 SmallVector<FunctionProtoType::ExtParameterInfo, 16> paramInfos;
145 RequiredArgs Required =
146 RequiredArgs::forPrototypePlus(FTP, prefix.size(), FD);
Daniel Dunbar541b63b2009-02-02 23:23:47 +0000147 // FIXME: Kill copy.
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700148 appendParameterTypes(CGT, prefix, paramInfos, FTP, FD);
Stephen Hines651f13c2014-04-23 16:59:28 -0700149 CanQualType resultType = FTP->getReturnType().getUnqualifiedType();
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700150
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700151 return CGT.arrangeLLVMFunctionInfo(resultType, instanceMethod,
152 /*chainCall=*/false, prefix,
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700153 FTP->getExtInfo(), paramInfos,
154 Required);
John McCall0b0ef0a2010-02-24 07:14:12 +0000155}
156
John McCallde5d3c72012-02-17 03:33:10 +0000157/// Arrange the argument and result information for a value of the
John McCall0f3d0972012-07-07 06:41:13 +0000158/// given freestanding function type.
John McCall0b0ef0a2010-02-24 07:14:12 +0000159const CGFunctionInfo &
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800160CodeGenTypes::arrangeFreeFunctionType(CanQual<FunctionProtoType> FTP,
161 const FunctionDecl *FD) {
John McCallde5d3c72012-02-17 03:33:10 +0000162 SmallVector<CanQualType, 16> argTypes;
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700163 return ::arrangeLLVMFunctionInfo(*this, /*instanceMethod=*/false, argTypes,
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800164 FTP, FD);
Daniel Dunbarbac7c252009-09-11 22:24:53 +0000165}
166
Stephen Hines651f13c2014-04-23 16:59:28 -0700167static CallingConv getCallingConventionForDecl(const Decl *D, bool IsWindows) {
Daniel Dunbarbac7c252009-09-11 22:24:53 +0000168 // Set the appropriate calling convention for the Function.
169 if (D->hasAttr<StdCallAttr>())
John McCall04a67a62010-02-05 21:31:56 +0000170 return CC_X86StdCall;
Daniel Dunbarbac7c252009-09-11 22:24:53 +0000171
172 if (D->hasAttr<FastCallAttr>())
John McCall04a67a62010-02-05 21:31:56 +0000173 return CC_X86FastCall;
Daniel Dunbarbac7c252009-09-11 22:24:53 +0000174
Douglas Gregorf813a2c2010-05-18 16:57:00 +0000175 if (D->hasAttr<ThisCallAttr>())
176 return CC_X86ThisCall;
177
Stephen Hines176edba2014-12-01 14:53:08 -0800178 if (D->hasAttr<VectorCallAttr>())
179 return CC_X86VectorCall;
180
Dawn Perchik52fc3142010-09-03 01:29:35 +0000181 if (D->hasAttr<PascalAttr>())
182 return CC_X86Pascal;
183
Anton Korobeynikov414d8962011-04-14 20:06:49 +0000184 if (PcsAttr *PCS = D->getAttr<PcsAttr>())
185 return (PCS->getPCS() == PcsAttr::AAPCS ? CC_AAPCS : CC_AAPCS_VFP);
186
Guy Benyei38980082012-12-25 08:53:55 +0000187 if (D->hasAttr<IntelOclBiccAttr>())
188 return CC_IntelOclBicc;
189
Stephen Hines651f13c2014-04-23 16:59:28 -0700190 if (D->hasAttr<MSABIAttr>())
191 return IsWindows ? CC_C : CC_X86_64Win64;
192
193 if (D->hasAttr<SysVABIAttr>())
194 return IsWindows ? CC_X86_64SysV : CC_C;
195
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700196 if (D->hasAttr<PreserveMostAttr>())
197 return CC_PreserveMost;
198
199 if (D->hasAttr<PreserveAllAttr>())
200 return CC_PreserveAll;
201
John McCall04a67a62010-02-05 21:31:56 +0000202 return CC_C;
Daniel Dunbar45c25ba2008-09-10 04:01:49 +0000203}
204
John McCallde5d3c72012-02-17 03:33:10 +0000205/// Arrange the argument and result information for a call to an
206/// unknown C++ non-static member function of the given abstract type.
Timur Iskhodzhanov8f189a92013-08-21 06:25:03 +0000207/// (Zero value of RD means we don't have any meaningful "this" argument type,
208/// so fall back to a generic pointer type).
John McCallde5d3c72012-02-17 03:33:10 +0000209/// The member function must be an ordinary function, i.e. not a
210/// constructor or destructor.
211const CGFunctionInfo &
212CodeGenTypes::arrangeCXXMethodType(const CXXRecordDecl *RD,
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800213 const FunctionProtoType *FTP,
214 const CXXMethodDecl *MD) {
John McCallde5d3c72012-02-17 03:33:10 +0000215 SmallVector<CanQualType, 16> argTypes;
John McCall0b0ef0a2010-02-24 07:14:12 +0000216
Anders Carlsson375c31c2009-10-03 19:43:08 +0000217 // Add the 'this' pointer.
Timur Iskhodzhanov8f189a92013-08-21 06:25:03 +0000218 if (RD)
219 argTypes.push_back(GetThisType(Context, RD));
220 else
221 argTypes.push_back(Context.VoidPtrTy);
John McCall0b0ef0a2010-02-24 07:14:12 +0000222
Stephen Hines176edba2014-12-01 14:53:08 -0800223 return ::arrangeLLVMFunctionInfo(
224 *this, true, argTypes,
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800225 FTP->getCanonicalTypeUnqualified().getAs<FunctionProtoType>(), MD);
Anders Carlsson375c31c2009-10-03 19:43:08 +0000226}
227
John McCallde5d3c72012-02-17 03:33:10 +0000228/// Arrange the argument and result information for a declaration or
229/// definition of the given C++ non-static member function. The
230/// member function must be an ordinary function, i.e. not a
231/// constructor or destructor.
232const CGFunctionInfo &
233CodeGenTypes::arrangeCXXMethodDeclaration(const CXXMethodDecl *MD) {
Benjamin Kramere5753592013-09-09 14:48:42 +0000234 assert(!isa<CXXConstructorDecl>(MD) && "wrong method for constructors!");
John McCallfc400282010-09-03 01:26:39 +0000235 assert(!isa<CXXDestructorDecl>(MD) && "wrong method for destructors!");
236
John McCallde5d3c72012-02-17 03:33:10 +0000237 CanQual<FunctionProtoType> prototype = GetFormalType(MD);
Mike Stump1eb44332009-09-09 15:08:12 +0000238
John McCallde5d3c72012-02-17 03:33:10 +0000239 if (MD->isInstance()) {
240 // The abstract case is perfectly fine.
Mark Lacey25296602013-10-02 20:35:23 +0000241 const CXXRecordDecl *ThisType = TheCXXABI.getThisArgumentTypeForMethod(MD);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800242 return arrangeCXXMethodType(ThisType, prototype.getTypePtr(), MD);
John McCallde5d3c72012-02-17 03:33:10 +0000243 }
244
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800245 return arrangeFreeFunctionType(prototype, MD);
Anders Carlssonf6f8ae52009-04-03 22:48:58 +0000246}
247
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700248bool CodeGenTypes::inheritingCtorHasParams(
249 const InheritedConstructor &Inherited, CXXCtorType Type) {
250 // Parameters are unnecessary if we're constructing a base class subobject
251 // and the inherited constructor lives in a virtual base.
252 return Type == Ctor_Complete ||
253 !Inherited.getShadowDecl()->constructsVirtualBase() ||
254 !Target.getCXXABI().hasConstructorVariants();
255 }
256
John McCallde5d3c72012-02-17 03:33:10 +0000257const CGFunctionInfo &
Stephen Hines176edba2014-12-01 14:53:08 -0800258CodeGenTypes::arrangeCXXStructorDeclaration(const CXXMethodDecl *MD,
259 StructorType Type) {
260
John McCallde5d3c72012-02-17 03:33:10 +0000261 SmallVector<CanQualType, 16> argTypes;
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700262 SmallVector<FunctionProtoType::ExtParameterInfo, 16> paramInfos;
Stephen Hines176edba2014-12-01 14:53:08 -0800263 argTypes.push_back(GetThisType(Context, MD->getParent()));
Stephen Lin3b50e8d2013-06-30 20:40:16 +0000264
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700265 bool PassParams = true;
266
Stephen Hines176edba2014-12-01 14:53:08 -0800267 GlobalDecl GD;
268 if (auto *CD = dyn_cast<CXXConstructorDecl>(MD)) {
269 GD = GlobalDecl(CD, toCXXCtorType(Type));
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700270
271 // A base class inheriting constructor doesn't get forwarded arguments
272 // needed to construct a virtual base (or base class thereof).
273 if (auto Inherited = CD->getInheritedConstructor())
274 PassParams = inheritingCtorHasParams(Inherited, toCXXCtorType(Type));
Stephen Hines176edba2014-12-01 14:53:08 -0800275 } else {
276 auto *DD = dyn_cast<CXXDestructorDecl>(MD);
277 GD = GlobalDecl(DD, toCXXDtorType(Type));
278 }
Anders Carlssonf6c56e22009-11-25 03:15:49 +0000279
Stephen Hines176edba2014-12-01 14:53:08 -0800280 CanQual<FunctionProtoType> FTP = GetFormalType(MD);
John McCall4c40d982010-08-31 07:33:07 +0000281
282 // Add the formal parameters.
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700283 if (PassParams)
284 appendParameterTypes(*this, argTypes, paramInfos, FTP, MD);
Stephen Hines651f13c2014-04-23 16:59:28 -0700285
Stephen Hines176edba2014-12-01 14:53:08 -0800286 TheCXXABI.buildStructorSignature(MD, Type, argTypes);
Stephen Hines651f13c2014-04-23 16:59:28 -0700287
288 RequiredArgs required =
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700289 (PassParams && MD->isVariadic() ? RequiredArgs(argTypes.size())
290 : RequiredArgs::All);
John McCall4c40d982010-08-31 07:33:07 +0000291
John McCall0f3d0972012-07-07 06:41:13 +0000292 FunctionType::ExtInfo extInfo = FTP->getExtInfo();
Stephen Hines176edba2014-12-01 14:53:08 -0800293 CanQualType resultType = TheCXXABI.HasThisReturn(GD)
294 ? argTypes.front()
295 : TheCXXABI.hasMostDerivedReturn(GD)
296 ? CGM.getContext().VoidPtrTy
297 : Context.VoidTy;
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700298 return arrangeLLVMFunctionInfo(resultType, /*instanceMethod=*/true,
299 /*chainCall=*/false, argTypes, extInfo,
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700300 paramInfos, required);
301}
302
303static SmallVector<CanQualType, 16>
304getArgTypesForCall(ASTContext &ctx, const CallArgList &args) {
305 SmallVector<CanQualType, 16> argTypes;
306 for (auto &arg : args)
307 argTypes.push_back(ctx.getCanonicalParamType(arg.Ty));
308 return argTypes;
309}
310
311static SmallVector<CanQualType, 16>
312getArgTypesForDeclaration(ASTContext &ctx, const FunctionArgList &args) {
313 SmallVector<CanQualType, 16> argTypes;
314 for (auto &arg : args)
315 argTypes.push_back(ctx.getCanonicalParamType(arg->getType()));
316 return argTypes;
317}
318
319static void addExtParameterInfosForCall(
320 llvm::SmallVectorImpl<FunctionProtoType::ExtParameterInfo> &paramInfos,
321 const FunctionProtoType *proto,
322 unsigned prefixArgs,
323 unsigned totalArgs) {
324 assert(proto->hasExtParameterInfos());
325 assert(paramInfos.size() <= prefixArgs);
326 assert(proto->getNumParams() + prefixArgs <= totalArgs);
327
328 // Add default infos for any prefix args that don't already have infos.
329 paramInfos.resize(prefixArgs);
330
331 // Add infos for the prototype.
332 auto protoInfos = proto->getExtParameterInfos();
333 paramInfos.append(protoInfos.begin(), protoInfos.end());
334
335 // Add default infos for the variadic arguments.
336 paramInfos.resize(totalArgs);
337}
338
339static llvm::SmallVector<FunctionProtoType::ExtParameterInfo, 16>
340getExtParameterInfosForCall(const FunctionProtoType *proto,
341 unsigned prefixArgs, unsigned totalArgs) {
342 llvm::SmallVector<FunctionProtoType::ExtParameterInfo, 16> result;
343 if (proto->hasExtParameterInfos()) {
344 addExtParameterInfosForCall(result, proto, prefixArgs, totalArgs);
345 }
346 return result;
Stephen Hines651f13c2014-04-23 16:59:28 -0700347}
348
349/// Arrange a call to a C++ method, passing the given arguments.
350const CGFunctionInfo &
351CodeGenTypes::arrangeCXXConstructorCall(const CallArgList &args,
352 const CXXConstructorDecl *D,
353 CXXCtorType CtorKind,
354 unsigned ExtraArgs) {
355 // FIXME: Kill copy.
356 SmallVector<CanQualType, 16> ArgTypes;
Stephen Hines176edba2014-12-01 14:53:08 -0800357 for (const auto &Arg : args)
358 ArgTypes.push_back(Context.getCanonicalParamType(Arg.Ty));
Stephen Hines651f13c2014-04-23 16:59:28 -0700359
360 CanQual<FunctionProtoType> FPT = GetFormalType(D);
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700361 RequiredArgs Required = RequiredArgs::forPrototypePlus(FPT, 1 + ExtraArgs, D);
Stephen Hines651f13c2014-04-23 16:59:28 -0700362 GlobalDecl GD(D, CtorKind);
Stephen Hines176edba2014-12-01 14:53:08 -0800363 CanQualType ResultType = TheCXXABI.HasThisReturn(GD)
364 ? ArgTypes.front()
365 : TheCXXABI.hasMostDerivedReturn(GD)
366 ? CGM.getContext().VoidPtrTy
367 : Context.VoidTy;
Stephen Hines651f13c2014-04-23 16:59:28 -0700368
369 FunctionType::ExtInfo Info = FPT->getExtInfo();
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700370 auto ParamInfos = getExtParameterInfosForCall(FPT.getTypePtr(), 1 + ExtraArgs,
371 ArgTypes.size());
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700372 return arrangeLLVMFunctionInfo(ResultType, /*instanceMethod=*/true,
373 /*chainCall=*/false, ArgTypes, Info,
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700374 ParamInfos, Required);
Anders Carlssonf6c56e22009-11-25 03:15:49 +0000375}
376
John McCallde5d3c72012-02-17 03:33:10 +0000377/// Arrange the argument and result information for the declaration or
378/// definition of the given function.
379const CGFunctionInfo &
380CodeGenTypes::arrangeFunctionDeclaration(const FunctionDecl *FD) {
Chris Lattner3eb67ca2009-05-12 20:27:19 +0000381 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD))
Anders Carlssonf6f8ae52009-04-03 22:48:58 +0000382 if (MD->isInstance())
John McCallde5d3c72012-02-17 03:33:10 +0000383 return arrangeCXXMethodDeclaration(MD);
Mike Stump1eb44332009-09-09 15:08:12 +0000384
John McCallead608a2010-02-26 00:48:12 +0000385 CanQualType FTy = FD->getType()->getCanonicalTypeUnqualified();
John McCallde5d3c72012-02-17 03:33:10 +0000386
John McCallead608a2010-02-26 00:48:12 +0000387 assert(isa<FunctionType>(FTy));
John McCallde5d3c72012-02-17 03:33:10 +0000388
389 // When declaring a function without a prototype, always use a
390 // non-variadic type.
391 if (isa<FunctionNoProtoType>(FTy)) {
392 CanQual<FunctionNoProtoType> noProto = FTy.getAs<FunctionNoProtoType>();
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700393 return arrangeLLVMFunctionInfo(
394 noProto->getReturnType(), /*instanceMethod=*/false,
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700395 /*chainCall=*/false, None, noProto->getExtInfo(), {},RequiredArgs::All);
John McCallde5d3c72012-02-17 03:33:10 +0000396 }
397
John McCallead608a2010-02-26 00:48:12 +0000398 assert(isa<FunctionProtoType>(FTy));
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800399 return arrangeFreeFunctionType(FTy.getAs<FunctionProtoType>(), FD);
Daniel Dunbar0dbe2272008-09-08 21:33:45 +0000400}
401
John McCallde5d3c72012-02-17 03:33:10 +0000402/// Arrange the argument and result information for the declaration or
403/// definition of an Objective-C method.
404const CGFunctionInfo &
405CodeGenTypes::arrangeObjCMethodDeclaration(const ObjCMethodDecl *MD) {
406 // It happens that this is the same as a call with no optional
407 // arguments, except also using the formal 'self' type.
408 return arrangeObjCMessageSendSignature(MD, MD->getSelfDecl()->getType());
409}
410
411/// Arrange the argument and result information for the function type
412/// through which to perform a send to the given Objective-C method,
413/// using the given receiver type. The receiver type is not always
414/// the 'self' type of the method or even an Objective-C pointer type.
415/// This is *not* the right method for actually performing such a
416/// message send, due to the possibility of optional arguments.
417const CGFunctionInfo &
418CodeGenTypes::arrangeObjCMessageSendSignature(const ObjCMethodDecl *MD,
419 QualType receiverType) {
420 SmallVector<CanQualType, 16> argTys;
421 argTys.push_back(Context.getCanonicalParamType(receiverType));
422 argTys.push_back(Context.getCanonicalParamType(Context.getObjCSelType()));
Daniel Dunbar541b63b2009-02-02 23:23:47 +0000423 // FIXME: Kill copy?
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700424 for (const auto *I : MD->parameters()) {
Stephen Hines651f13c2014-04-23 16:59:28 -0700425 argTys.push_back(Context.getCanonicalParamType(I->getType()));
John McCall0b0ef0a2010-02-24 07:14:12 +0000426 }
John McCallf85e1932011-06-15 23:02:42 +0000427
428 FunctionType::ExtInfo einfo;
Stephen Hines651f13c2014-04-23 16:59:28 -0700429 bool IsWindows = getContext().getTargetInfo().getTriple().isOSWindows();
430 einfo = einfo.withCallingConv(getCallingConventionForDecl(MD, IsWindows));
John McCallf85e1932011-06-15 23:02:42 +0000431
David Blaikie4e4d0842012-03-11 07:00:24 +0000432 if (getContext().getLangOpts().ObjCAutoRefCount &&
John McCallf85e1932011-06-15 23:02:42 +0000433 MD->hasAttr<NSReturnsRetainedAttr>())
434 einfo = einfo.withProducesResult(true);
435
John McCallde5d3c72012-02-17 03:33:10 +0000436 RequiredArgs required =
437 (MD->isVariadic() ? RequiredArgs(argTys.size()) : RequiredArgs::All);
438
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700439 return arrangeLLVMFunctionInfo(
440 GetReturnType(MD->getReturnType()), /*instanceMethod=*/false,
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700441 /*chainCall=*/false, argTys, einfo, {}, required);
442}
443
444const CGFunctionInfo &
445CodeGenTypes::arrangeUnprototypedObjCMessageSend(QualType returnType,
446 const CallArgList &args) {
447 auto argTypes = getArgTypesForCall(Context, args);
448 FunctionType::ExtInfo einfo;
449
450 return arrangeLLVMFunctionInfo(
451 GetReturnType(returnType), /*instanceMethod=*/false,
452 /*chainCall=*/false, argTypes, einfo, {}, RequiredArgs::All);
Daniel Dunbar0dbe2272008-09-08 21:33:45 +0000453}
454
John McCallde5d3c72012-02-17 03:33:10 +0000455const CGFunctionInfo &
456CodeGenTypes::arrangeGlobalDeclaration(GlobalDecl GD) {
Anders Carlssonb2bcf1c2010-02-06 02:44:09 +0000457 // FIXME: Do we need to handle ObjCMethodDecl?
458 const FunctionDecl *FD = cast<FunctionDecl>(GD.getDecl());
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000459
Anders Carlssonb2bcf1c2010-02-06 02:44:09 +0000460 if (const CXXConstructorDecl *CD = dyn_cast<CXXConstructorDecl>(FD))
Stephen Hines176edba2014-12-01 14:53:08 -0800461 return arrangeCXXStructorDeclaration(CD, getFromCtorType(GD.getCtorType()));
Anders Carlssonb2bcf1c2010-02-06 02:44:09 +0000462
463 if (const CXXDestructorDecl *DD = dyn_cast<CXXDestructorDecl>(FD))
Stephen Hines176edba2014-12-01 14:53:08 -0800464 return arrangeCXXStructorDeclaration(DD, getFromDtorType(GD.getDtorType()));
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000465
John McCallde5d3c72012-02-17 03:33:10 +0000466 return arrangeFunctionDeclaration(FD);
Anders Carlssonb2bcf1c2010-02-06 02:44:09 +0000467}
468
Stephen Hines176edba2014-12-01 14:53:08 -0800469/// Arrange a thunk that takes 'this' as the first parameter followed by
470/// varargs. Return a void pointer, regardless of the actual return type.
471/// The body of the thunk will end in a musttail call to a function of the
472/// correct type, and the caller will bitcast the function to the correct
473/// prototype.
474const CGFunctionInfo &
475CodeGenTypes::arrangeMSMemberPointerThunk(const CXXMethodDecl *MD) {
476 assert(MD->isVirtual() && "only virtual memptrs have thunks");
477 CanQual<FunctionProtoType> FTP = GetFormalType(MD);
478 CanQualType ArgTys[] = { GetThisType(Context, MD->getParent()) };
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700479 return arrangeLLVMFunctionInfo(Context.VoidTy, /*instanceMethod=*/false,
480 /*chainCall=*/false, ArgTys,
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700481 FTP->getExtInfo(), {}, RequiredArgs(1));
Stephen Hines176edba2014-12-01 14:53:08 -0800482}
483
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -0700484const CGFunctionInfo &
485CodeGenTypes::arrangeMSCtorClosure(const CXXConstructorDecl *CD,
486 CXXCtorType CT) {
487 assert(CT == Ctor_CopyingClosure || CT == Ctor_DefaultClosure);
488
489 CanQual<FunctionProtoType> FTP = GetFormalType(CD);
490 SmallVector<CanQualType, 2> ArgTys;
491 const CXXRecordDecl *RD = CD->getParent();
492 ArgTys.push_back(GetThisType(Context, RD));
493 if (CT == Ctor_CopyingClosure)
494 ArgTys.push_back(*FTP->param_type_begin());
495 if (RD->getNumVBases() > 0)
496 ArgTys.push_back(Context.IntTy);
497 CallingConv CC = Context.getDefaultCallingConvention(
498 /*IsVariadic=*/false, /*IsCXXMethod=*/true);
499 return arrangeLLVMFunctionInfo(Context.VoidTy, /*instanceMethod=*/true,
500 /*chainCall=*/false, ArgTys,
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700501 FunctionType::ExtInfo(CC), {},
502 RequiredArgs::All);
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -0700503}
504
John McCalle56bb362012-12-07 07:03:17 +0000505/// Arrange a call as unto a free function, except possibly with an
506/// additional number of formal parameters considered required.
507static const CGFunctionInfo &
508arrangeFreeFunctionLikeCall(CodeGenTypes &CGT,
Mark Laceyc3f7fd62013-10-10 20:57:00 +0000509 CodeGenModule &CGM,
John McCalle56bb362012-12-07 07:03:17 +0000510 const CallArgList &args,
511 const FunctionType *fnType,
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700512 unsigned numExtraRequiredArgs,
513 bool chainCall) {
John McCalle56bb362012-12-07 07:03:17 +0000514 assert(args.size() >= numExtraRequiredArgs);
515
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700516 llvm::SmallVector<FunctionProtoType::ExtParameterInfo, 16> paramInfos;
517
John McCalle56bb362012-12-07 07:03:17 +0000518 // In most cases, there are no optional arguments.
519 RequiredArgs required = RequiredArgs::All;
520
521 // If we have a variadic prototype, the required arguments are the
522 // extra prefix plus the arguments in the prototype.
523 if (const FunctionProtoType *proto = dyn_cast<FunctionProtoType>(fnType)) {
524 if (proto->isVariadic())
Stephen Hines651f13c2014-04-23 16:59:28 -0700525 required = RequiredArgs(proto->getNumParams() + numExtraRequiredArgs);
John McCalle56bb362012-12-07 07:03:17 +0000526
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700527 if (proto->hasExtParameterInfos())
528 addExtParameterInfosForCall(paramInfos, proto, numExtraRequiredArgs,
529 args.size());
530
John McCalle56bb362012-12-07 07:03:17 +0000531 // If we don't have a prototype at all, but we're supposed to
532 // explicitly use the variadic convention for unprototyped calls,
533 // treat all of the arguments as required but preserve the nominal
534 // possibility of variadics.
Mark Laceyc3f7fd62013-10-10 20:57:00 +0000535 } else if (CGM.getTargetCodeGenInfo()
536 .isNoProtoCallVariadic(args,
537 cast<FunctionNoProtoType>(fnType))) {
John McCalle56bb362012-12-07 07:03:17 +0000538 required = RequiredArgs(args.size());
539 }
540
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700541 // FIXME: Kill copy.
542 SmallVector<CanQualType, 16> argTypes;
543 for (const auto &arg : args)
544 argTypes.push_back(CGT.getContext().getCanonicalParamType(arg.Ty));
545 return CGT.arrangeLLVMFunctionInfo(GetReturnType(fnType->getReturnType()),
546 /*instanceMethod=*/false, chainCall,
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700547 argTypes, fnType->getExtInfo(), paramInfos,
548 required);
John McCalle56bb362012-12-07 07:03:17 +0000549}
550
John McCallde5d3c72012-02-17 03:33:10 +0000551/// Figure out the rules for calling a function with the given formal
552/// type using the given arguments. The arguments are necessary
553/// because the function might be unprototyped, in which case it's
554/// target-dependent in crazy ways.
555const CGFunctionInfo &
John McCall0f3d0972012-07-07 06:41:13 +0000556CodeGenTypes::arrangeFreeFunctionCall(const CallArgList &args,
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700557 const FunctionType *fnType,
558 bool chainCall) {
559 return arrangeFreeFunctionLikeCall(*this, CGM, args, fnType,
560 chainCall ? 1 : 0, chainCall);
John McCalle56bb362012-12-07 07:03:17 +0000561}
John McCallde5d3c72012-02-17 03:33:10 +0000562
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700563/// A block function is essentially a free function with an
John McCalle56bb362012-12-07 07:03:17 +0000564/// extra implicit argument.
565const CGFunctionInfo &
566CodeGenTypes::arrangeBlockFunctionCall(const CallArgList &args,
567 const FunctionType *fnType) {
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700568 return arrangeFreeFunctionLikeCall(*this, CGM, args, fnType, 1,
569 /*chainCall=*/false);
John McCallde5d3c72012-02-17 03:33:10 +0000570}
571
572const CGFunctionInfo &
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700573CodeGenTypes::arrangeBlockFunctionDeclaration(const FunctionProtoType *proto,
574 const FunctionArgList &params) {
575 auto paramInfos = getExtParameterInfosForCall(proto, 1, params.size());
576 auto argTypes = getArgTypesForDeclaration(Context, params);
577
578 return arrangeLLVMFunctionInfo(
579 GetReturnType(proto->getReturnType()),
580 /*instanceMethod*/ false, /*chainCall*/ false, argTypes,
581 proto->getExtInfo(), paramInfos,
582 RequiredArgs::forPrototypePlus(proto, 1, nullptr));
583}
584
585const CGFunctionInfo &
586CodeGenTypes::arrangeBuiltinFunctionCall(QualType resultType,
587 const CallArgList &args) {
Daniel Dunbar541b63b2009-02-02 23:23:47 +0000588 // FIXME: Kill copy.
John McCallde5d3c72012-02-17 03:33:10 +0000589 SmallVector<CanQualType, 16> argTypes;
Stephen Hines176edba2014-12-01 14:53:08 -0800590 for (const auto &Arg : args)
591 argTypes.push_back(Context.getCanonicalParamType(Arg.Ty));
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700592 return arrangeLLVMFunctionInfo(
593 GetReturnType(resultType), /*instanceMethod=*/false,
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700594 /*chainCall=*/false, argTypes, FunctionType::ExtInfo(),
595 /*paramInfos=*/ {}, RequiredArgs::All);
596}
597
598const CGFunctionInfo &
599CodeGenTypes::arrangeBuiltinFunctionDeclaration(QualType resultType,
600 const FunctionArgList &args) {
601 auto argTypes = getArgTypesForDeclaration(Context, args);
602
603 return arrangeLLVMFunctionInfo(
604 GetReturnType(resultType), /*instanceMethod=*/false, /*chainCall=*/false,
605 argTypes, FunctionType::ExtInfo(), {}, RequiredArgs::All);
606}
607
608const CGFunctionInfo &
609CodeGenTypes::arrangeBuiltinFunctionDeclaration(CanQualType resultType,
610 ArrayRef<CanQualType> argTypes) {
611 return arrangeLLVMFunctionInfo(
612 resultType, /*instanceMethod=*/false, /*chainCall=*/false,
613 argTypes, FunctionType::ExtInfo(), {}, RequiredArgs::All);
John McCall0f3d0972012-07-07 06:41:13 +0000614}
615
616/// Arrange a call to a C++ method, passing the given arguments.
617const CGFunctionInfo &
618CodeGenTypes::arrangeCXXMethodCall(const CallArgList &args,
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700619 const FunctionProtoType *proto,
John McCall0f3d0972012-07-07 06:41:13 +0000620 RequiredArgs required) {
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700621 unsigned numRequiredArgs =
622 (proto->isVariadic() ? required.getNumRequiredArgs() : args.size());
623 unsigned numPrefixArgs = numRequiredArgs - proto->getNumParams();
624 auto paramInfos =
625 getExtParameterInfosForCall(proto, numPrefixArgs, args.size());
626
John McCall0f3d0972012-07-07 06:41:13 +0000627 // FIXME: Kill copy.
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700628 auto argTypes = getArgTypesForCall(Context, args);
John McCall0f3d0972012-07-07 06:41:13 +0000629
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700630 FunctionType::ExtInfo info = proto->getExtInfo();
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700631 return arrangeLLVMFunctionInfo(
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700632 GetReturnType(proto->getReturnType()), /*instanceMethod=*/true,
633 /*chainCall=*/false, argTypes, info, paramInfos, required);
Daniel Dunbar541b63b2009-02-02 23:23:47 +0000634}
635
John McCallde5d3c72012-02-17 03:33:10 +0000636const CGFunctionInfo &CodeGenTypes::arrangeNullaryFunction() {
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700637 return arrangeLLVMFunctionInfo(
638 getContext().VoidTy, /*instanceMethod=*/false, /*chainCall=*/false,
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700639 None, FunctionType::ExtInfo(), {}, RequiredArgs::All);
640}
641
642const CGFunctionInfo &
643CodeGenTypes::arrangeCall(const CGFunctionInfo &signature,
644 const CallArgList &args) {
645 assert(signature.arg_size() <= args.size());
646 if (signature.arg_size() == args.size())
647 return signature;
648
649 SmallVector<FunctionProtoType::ExtParameterInfo, 16> paramInfos;
650 auto sigParamInfos = signature.getExtParameterInfos();
651 if (!sigParamInfos.empty()) {
652 paramInfos.append(sigParamInfos.begin(), sigParamInfos.end());
653 paramInfos.resize(args.size());
654 }
655
656 auto argTypes = getArgTypesForCall(Context, args);
657
658 assert(signature.getRequiredArgs().allowsOptionalArgs());
659 return arrangeLLVMFunctionInfo(signature.getReturnType(),
660 signature.isInstanceMethod(),
661 signature.isChainCall(),
662 argTypes,
663 signature.getExtInfo(),
664 paramInfos,
665 signature.getRequiredArgs());
John McCalld26bc762011-03-09 04:27:21 +0000666}
667
John McCallde5d3c72012-02-17 03:33:10 +0000668/// Arrange the argument and result information for an abstract value
669/// of a given function type. This is the method which all of the
670/// above functions ultimately defer to.
671const CGFunctionInfo &
John McCall0f3d0972012-07-07 06:41:13 +0000672CodeGenTypes::arrangeLLVMFunctionInfo(CanQualType resultType,
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700673 bool instanceMethod,
674 bool chainCall,
John McCall0f3d0972012-07-07 06:41:13 +0000675 ArrayRef<CanQualType> argTypes,
676 FunctionType::ExtInfo info,
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700677 ArrayRef<FunctionProtoType::ExtParameterInfo> paramInfos,
John McCall0f3d0972012-07-07 06:41:13 +0000678 RequiredArgs required) {
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700679 assert(std::all_of(argTypes.begin(), argTypes.end(),
680 std::mem_fun_ref(&CanQualType::isCanonicalAsParam)));
John McCallead608a2010-02-26 00:48:12 +0000681
Daniel Dunbar40a6be62009-02-03 00:07:12 +0000682 // Lookup or create unique function info.
683 llvm::FoldingSetNodeID ID;
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700684 CGFunctionInfo::Profile(ID, instanceMethod, chainCall, info, paramInfos,
685 required, resultType, argTypes);
Daniel Dunbar40a6be62009-02-03 00:07:12 +0000686
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700687 void *insertPos = nullptr;
John McCallde5d3c72012-02-17 03:33:10 +0000688 CGFunctionInfo *FI = FunctionInfos.FindNodeOrInsertPos(ID, insertPos);
Daniel Dunbar40a6be62009-02-03 00:07:12 +0000689 if (FI)
690 return *FI;
691
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700692 unsigned CC = ClangCallConvToLLVMCallConv(info.getCC());
693
John McCallde5d3c72012-02-17 03:33:10 +0000694 // Construct the function info. We co-allocate the ArgInfos.
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700695 FI = CGFunctionInfo::create(CC, instanceMethod, chainCall, info,
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700696 paramInfos, resultType, argTypes, required);
John McCallde5d3c72012-02-17 03:33:10 +0000697 FunctionInfos.InsertNode(FI, insertPos);
Daniel Dunbar88c2fa92009-02-03 05:31:23 +0000698
Stephen Hines176edba2014-12-01 14:53:08 -0800699 bool inserted = FunctionsBeingProcessed.insert(FI).second;
700 (void)inserted;
John McCallde5d3c72012-02-17 03:33:10 +0000701 assert(inserted && "Recursively being processed?");
Chris Lattner71305cc2011-07-15 05:16:14 +0000702
Daniel Dunbar88c2fa92009-02-03 05:31:23 +0000703 // Compute ABI information.
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700704 if (info.getCC() != CC_Swift) {
705 getABIInfo().computeInfo(*FI);
706 } else {
707 swiftcall::computeABIInfo(CGM, *FI);
708 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000709
Chris Lattner800588f2010-07-29 06:26:06 +0000710 // Loop over all of the computed argument and return value info. If any of
711 // them are direct or extend without a specified coerce type, specify the
712 // default now.
John McCallde5d3c72012-02-17 03:33:10 +0000713 ABIArgInfo &retInfo = FI->getReturnInfo();
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700714 if (retInfo.canHaveCoerceToType() && retInfo.getCoerceToType() == nullptr)
John McCallde5d3c72012-02-17 03:33:10 +0000715 retInfo.setCoerceToType(ConvertType(FI->getReturnType()));
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000716
Stephen Hines651f13c2014-04-23 16:59:28 -0700717 for (auto &I : FI->arguments())
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700718 if (I.info.canHaveCoerceToType() && I.info.getCoerceToType() == nullptr)
Stephen Hines651f13c2014-04-23 16:59:28 -0700719 I.info.setCoerceToType(ConvertType(I.type));
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000720
John McCallde5d3c72012-02-17 03:33:10 +0000721 bool erased = FunctionsBeingProcessed.erase(FI); (void)erased;
722 assert(erased && "Not in set?");
Chris Lattnerd26c0712011-07-15 06:41:05 +0000723
Daniel Dunbar40a6be62009-02-03 00:07:12 +0000724 return *FI;
Daniel Dunbar541b63b2009-02-02 23:23:47 +0000725}
726
John McCallde5d3c72012-02-17 03:33:10 +0000727CGFunctionInfo *CGFunctionInfo::create(unsigned llvmCC,
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700728 bool instanceMethod,
729 bool chainCall,
John McCallde5d3c72012-02-17 03:33:10 +0000730 const FunctionType::ExtInfo &info,
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700731 ArrayRef<ExtParameterInfo> paramInfos,
John McCallde5d3c72012-02-17 03:33:10 +0000732 CanQualType resultType,
733 ArrayRef<CanQualType> argTypes,
734 RequiredArgs required) {
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700735 assert(paramInfos.empty() || paramInfos.size() == argTypes.size());
736
737 void *buffer =
738 operator new(totalSizeToAlloc<ArgInfo, ExtParameterInfo>(
739 argTypes.size() + 1, paramInfos.size()));
740
John McCallde5d3c72012-02-17 03:33:10 +0000741 CGFunctionInfo *FI = new(buffer) CGFunctionInfo();
742 FI->CallingConvention = llvmCC;
743 FI->EffectiveCallingConvention = llvmCC;
744 FI->ASTCallingConvention = info.getCC();
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700745 FI->InstanceMethod = instanceMethod;
746 FI->ChainCall = chainCall;
John McCallde5d3c72012-02-17 03:33:10 +0000747 FI->NoReturn = info.getNoReturn();
748 FI->ReturnsRetained = info.getProducesResult();
749 FI->Required = required;
750 FI->HasRegParm = info.getHasRegParm();
751 FI->RegParm = info.getRegParm();
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700752 FI->ArgStruct = nullptr;
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800753 FI->ArgStructAlign = 0;
John McCallde5d3c72012-02-17 03:33:10 +0000754 FI->NumArgs = argTypes.size();
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700755 FI->HasExtParameterInfos = !paramInfos.empty();
John McCallde5d3c72012-02-17 03:33:10 +0000756 FI->getArgsBuffer()[0].type = resultType;
757 for (unsigned i = 0, e = argTypes.size(); i != e; ++i)
758 FI->getArgsBuffer()[i + 1].type = argTypes[i];
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700759 for (unsigned i = 0, e = paramInfos.size(); i != e; ++i)
760 FI->getExtParameterInfosBuffer()[i] = paramInfos[i];
John McCallde5d3c72012-02-17 03:33:10 +0000761 return FI;
Daniel Dunbar88c2fa92009-02-03 05:31:23 +0000762}
763
764/***/
765
Stephen Hines176edba2014-12-01 14:53:08 -0800766namespace {
767// ABIArgInfo::Expand implementation.
768
769// Specifies the way QualType passed as ABIArgInfo::Expand is expanded.
770struct TypeExpansion {
771 enum TypeExpansionKind {
772 // Elements of constant arrays are expanded recursively.
773 TEK_ConstantArray,
774 // Record fields are expanded recursively (but if record is a union, only
775 // the field with the largest size is expanded).
776 TEK_Record,
777 // For complex types, real and imaginary parts are expanded recursively.
778 TEK_Complex,
779 // All other types are not expandable.
780 TEK_None
781 };
782
783 const TypeExpansionKind Kind;
784
785 TypeExpansion(TypeExpansionKind K) : Kind(K) {}
786 virtual ~TypeExpansion() {}
787};
788
789struct ConstantArrayExpansion : TypeExpansion {
790 QualType EltTy;
791 uint64_t NumElts;
792
793 ConstantArrayExpansion(QualType EltTy, uint64_t NumElts)
794 : TypeExpansion(TEK_ConstantArray), EltTy(EltTy), NumElts(NumElts) {}
795 static bool classof(const TypeExpansion *TE) {
796 return TE->Kind == TEK_ConstantArray;
797 }
798};
799
800struct RecordExpansion : TypeExpansion {
801 SmallVector<const CXXBaseSpecifier *, 1> Bases;
802
803 SmallVector<const FieldDecl *, 1> Fields;
804
805 RecordExpansion(SmallVector<const CXXBaseSpecifier *, 1> &&Bases,
806 SmallVector<const FieldDecl *, 1> &&Fields)
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700807 : TypeExpansion(TEK_Record), Bases(std::move(Bases)),
808 Fields(std::move(Fields)) {}
Stephen Hines176edba2014-12-01 14:53:08 -0800809 static bool classof(const TypeExpansion *TE) {
810 return TE->Kind == TEK_Record;
811 }
812};
813
814struct ComplexExpansion : TypeExpansion {
815 QualType EltTy;
816
817 ComplexExpansion(QualType EltTy) : TypeExpansion(TEK_Complex), EltTy(EltTy) {}
818 static bool classof(const TypeExpansion *TE) {
819 return TE->Kind == TEK_Complex;
820 }
821};
822
823struct NoExpansion : TypeExpansion {
824 NoExpansion() : TypeExpansion(TEK_None) {}
825 static bool classof(const TypeExpansion *TE) {
826 return TE->Kind == TEK_None;
827 }
828};
829} // namespace
830
831static std::unique_ptr<TypeExpansion>
832getTypeExpansion(QualType Ty, const ASTContext &Context) {
833 if (const ConstantArrayType *AT = Context.getAsConstantArrayType(Ty)) {
834 return llvm::make_unique<ConstantArrayExpansion>(
835 AT->getElementType(), AT->getSize().getZExtValue());
836 }
837 if (const RecordType *RT = Ty->getAs<RecordType>()) {
838 SmallVector<const CXXBaseSpecifier *, 1> Bases;
839 SmallVector<const FieldDecl *, 1> Fields;
Bob Wilson194f06a2011-08-03 05:58:22 +0000840 const RecordDecl *RD = RT->getDecl();
841 assert(!RD->hasFlexibleArrayMember() &&
842 "Cannot expand structure with flexible array.");
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +0000843 if (RD->isUnion()) {
844 // Unions can be here only in degenerative cases - all the fields are same
845 // after flattening. Thus we have to use the "largest" field.
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700846 const FieldDecl *LargestFD = nullptr;
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +0000847 CharUnits UnionSize = CharUnits::Zero();
848
Stephen Hines651f13c2014-04-23 16:59:28 -0700849 for (const auto *FD : RD->fields()) {
Stephen Hines176edba2014-12-01 14:53:08 -0800850 // Skip zero length bitfields.
851 if (FD->isBitField() && FD->getBitWidthValue(Context) == 0)
852 continue;
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +0000853 assert(!FD->isBitField() &&
854 "Cannot expand structure with bit-field members.");
Stephen Hines176edba2014-12-01 14:53:08 -0800855 CharUnits FieldSize = Context.getTypeSizeInChars(FD->getType());
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +0000856 if (UnionSize < FieldSize) {
857 UnionSize = FieldSize;
858 LargestFD = FD;
859 }
860 }
861 if (LargestFD)
Stephen Hines176edba2014-12-01 14:53:08 -0800862 Fields.push_back(LargestFD);
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +0000863 } else {
Stephen Hines176edba2014-12-01 14:53:08 -0800864 if (const auto *CXXRD = dyn_cast<CXXRecordDecl>(RD)) {
865 assert(!CXXRD->isDynamicClass() &&
866 "cannot expand vtable pointers in dynamic classes");
867 for (const CXXBaseSpecifier &BS : CXXRD->bases())
868 Bases.push_back(&BS);
869 }
870
871 for (const auto *FD : RD->fields()) {
872 // Skip zero length bitfields.
873 if (FD->isBitField() && FD->getBitWidthValue(Context) == 0)
874 continue;
875 assert(!FD->isBitField() &&
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +0000876 "Cannot expand structure with bit-field members.");
Stephen Hines176edba2014-12-01 14:53:08 -0800877 Fields.push_back(FD);
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +0000878 }
Bob Wilson194f06a2011-08-03 05:58:22 +0000879 }
Stephen Hines176edba2014-12-01 14:53:08 -0800880 return llvm::make_unique<RecordExpansion>(std::move(Bases),
881 std::move(Fields));
882 }
883 if (const ComplexType *CT = Ty->getAs<ComplexType>()) {
884 return llvm::make_unique<ComplexExpansion>(CT->getElementType());
885 }
886 return llvm::make_unique<NoExpansion>();
Daniel Dunbar56273772008-09-17 00:51:38 +0000887}
888
Stephen Hines176edba2014-12-01 14:53:08 -0800889static int getExpansionSize(QualType Ty, const ASTContext &Context) {
890 auto Exp = getTypeExpansion(Ty, Context);
891 if (auto CAExp = dyn_cast<ConstantArrayExpansion>(Exp.get())) {
892 return CAExp->NumElts * getExpansionSize(CAExp->EltTy, Context);
893 }
894 if (auto RExp = dyn_cast<RecordExpansion>(Exp.get())) {
895 int Res = 0;
896 for (auto BS : RExp->Bases)
897 Res += getExpansionSize(BS->getType(), Context);
898 for (auto FD : RExp->Fields)
899 Res += getExpansionSize(FD->getType(), Context);
900 return Res;
901 }
902 if (isa<ComplexExpansion>(Exp.get()))
903 return 2;
904 assert(isa<NoExpansion>(Exp.get()));
905 return 1;
906}
907
908void
909CodeGenTypes::getExpandedTypes(QualType Ty,
910 SmallVectorImpl<llvm::Type *>::iterator &TI) {
911 auto Exp = getTypeExpansion(Ty, Context);
912 if (auto CAExp = dyn_cast<ConstantArrayExpansion>(Exp.get())) {
913 for (int i = 0, n = CAExp->NumElts; i < n; i++) {
914 getExpandedTypes(CAExp->EltTy, TI);
915 }
916 } else if (auto RExp = dyn_cast<RecordExpansion>(Exp.get())) {
917 for (auto BS : RExp->Bases)
918 getExpandedTypes(BS->getType(), TI);
919 for (auto FD : RExp->Fields)
920 getExpandedTypes(FD->getType(), TI);
921 } else if (auto CExp = dyn_cast<ComplexExpansion>(Exp.get())) {
922 llvm::Type *EltTy = ConvertType(CExp->EltTy);
923 *TI++ = EltTy;
924 *TI++ = EltTy;
925 } else {
926 assert(isa<NoExpansion>(Exp.get()));
927 *TI++ = ConvertType(Ty);
928 }
929}
930
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800931static void forConstantArrayExpansion(CodeGenFunction &CGF,
932 ConstantArrayExpansion *CAE,
933 Address BaseAddr,
934 llvm::function_ref<void(Address)> Fn) {
935 CharUnits EltSize = CGF.getContext().getTypeSizeInChars(CAE->EltTy);
936 CharUnits EltAlign =
937 BaseAddr.getAlignment().alignmentOfArrayElement(EltSize);
938
939 for (int i = 0, n = CAE->NumElts; i < n; i++) {
940 llvm::Value *EltAddr =
941 CGF.Builder.CreateConstGEP2_32(nullptr, BaseAddr.getPointer(), 0, i);
942 Fn(Address(EltAddr, EltAlign));
943 }
944}
945
Stephen Hines176edba2014-12-01 14:53:08 -0800946void CodeGenFunction::ExpandTypeFromArgs(
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700947 QualType Ty, LValue LV, SmallVectorImpl<llvm::Value *>::iterator &AI) {
Mike Stump1eb44332009-09-09 15:08:12 +0000948 assert(LV.isSimple() &&
949 "Unexpected non-simple lvalue during struct expansion.");
Daniel Dunbar56273772008-09-17 00:51:38 +0000950
Stephen Hines176edba2014-12-01 14:53:08 -0800951 auto Exp = getTypeExpansion(Ty, getContext());
952 if (auto CAExp = dyn_cast<ConstantArrayExpansion>(Exp.get())) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800953 forConstantArrayExpansion(*this, CAExp, LV.getAddress(),
954 [&](Address EltAddr) {
Stephen Hines176edba2014-12-01 14:53:08 -0800955 LValue LV = MakeAddrLValue(EltAddr, CAExp->EltTy);
956 ExpandTypeFromArgs(CAExp->EltTy, LV, AI);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800957 });
Stephen Hines176edba2014-12-01 14:53:08 -0800958 } else if (auto RExp = dyn_cast<RecordExpansion>(Exp.get())) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800959 Address This = LV.getAddress();
Stephen Hines176edba2014-12-01 14:53:08 -0800960 for (const CXXBaseSpecifier *BS : RExp->Bases) {
961 // Perform a single step derived-to-base conversion.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800962 Address Base =
Stephen Hines176edba2014-12-01 14:53:08 -0800963 GetAddressOfBaseClass(This, Ty->getAsCXXRecordDecl(), &BS, &BS + 1,
964 /*NullCheckValue=*/false, SourceLocation());
965 LValue SubLV = MakeAddrLValue(Base, BS->getType());
Bob Wilson194f06a2011-08-03 05:58:22 +0000966
Stephen Hines176edba2014-12-01 14:53:08 -0800967 // Recurse onto bases.
968 ExpandTypeFromArgs(BS->getType(), SubLV, AI);
Bob Wilson194f06a2011-08-03 05:58:22 +0000969 }
Stephen Hines176edba2014-12-01 14:53:08 -0800970 for (auto FD : RExp->Fields) {
971 // FIXME: What are the right qualifiers here?
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700972 LValue SubLV = EmitLValueForFieldInitialization(LV, FD);
Stephen Hines176edba2014-12-01 14:53:08 -0800973 ExpandTypeFromArgs(FD->getType(), SubLV, AI);
974 }
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800975 } else if (isa<ComplexExpansion>(Exp.get())) {
976 auto realValue = *AI++;
977 auto imagValue = *AI++;
978 EmitStoreOfComplex(ComplexPairTy(realValue, imagValue), LV, /*init*/ true);
Bob Wilson194f06a2011-08-03 05:58:22 +0000979 } else {
Stephen Hines176edba2014-12-01 14:53:08 -0800980 assert(isa<NoExpansion>(Exp.get()));
981 EmitStoreThroughLValue(RValue::get(*AI++), LV);
Daniel Dunbar56273772008-09-17 00:51:38 +0000982 }
Stephen Hines176edba2014-12-01 14:53:08 -0800983}
Daniel Dunbar56273772008-09-17 00:51:38 +0000984
Stephen Hines176edba2014-12-01 14:53:08 -0800985void CodeGenFunction::ExpandTypeToArgs(
986 QualType Ty, RValue RV, llvm::FunctionType *IRFuncTy,
987 SmallVectorImpl<llvm::Value *> &IRCallArgs, unsigned &IRCallArgPos) {
988 auto Exp = getTypeExpansion(Ty, getContext());
989 if (auto CAExp = dyn_cast<ConstantArrayExpansion>(Exp.get())) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800990 forConstantArrayExpansion(*this, CAExp, RV.getAggregateAddress(),
991 [&](Address EltAddr) {
Stephen Hines176edba2014-12-01 14:53:08 -0800992 RValue EltRV =
993 convertTempToRValue(EltAddr, CAExp->EltTy, SourceLocation());
994 ExpandTypeToArgs(CAExp->EltTy, EltRV, IRFuncTy, IRCallArgs, IRCallArgPos);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800995 });
Stephen Hines176edba2014-12-01 14:53:08 -0800996 } else if (auto RExp = dyn_cast<RecordExpansion>(Exp.get())) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800997 Address This = RV.getAggregateAddress();
Stephen Hines176edba2014-12-01 14:53:08 -0800998 for (const CXXBaseSpecifier *BS : RExp->Bases) {
999 // Perform a single step derived-to-base conversion.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001000 Address Base =
Stephen Hines176edba2014-12-01 14:53:08 -08001001 GetAddressOfBaseClass(This, Ty->getAsCXXRecordDecl(), &BS, &BS + 1,
1002 /*NullCheckValue=*/false, SourceLocation());
1003 RValue BaseRV = RValue::getAggregate(Base);
1004
1005 // Recurse onto bases.
1006 ExpandTypeToArgs(BS->getType(), BaseRV, IRFuncTy, IRCallArgs,
1007 IRCallArgPos);
1008 }
1009
1010 LValue LV = MakeAddrLValue(This, Ty);
1011 for (auto FD : RExp->Fields) {
1012 RValue FldRV = EmitRValueForField(LV, FD, SourceLocation());
1013 ExpandTypeToArgs(FD->getType(), FldRV, IRFuncTy, IRCallArgs,
1014 IRCallArgPos);
1015 }
1016 } else if (isa<ComplexExpansion>(Exp.get())) {
1017 ComplexPairTy CV = RV.getComplexVal();
1018 IRCallArgs[IRCallArgPos++] = CV.first;
1019 IRCallArgs[IRCallArgPos++] = CV.second;
1020 } else {
1021 assert(isa<NoExpansion>(Exp.get()));
1022 assert(RV.isScalar() &&
1023 "Unexpected non-scalar rvalue during struct expansion.");
1024
1025 // Insert a bitcast as needed.
1026 llvm::Value *V = RV.getScalarVal();
1027 if (IRCallArgPos < IRFuncTy->getNumParams() &&
1028 V->getType() != IRFuncTy->getParamType(IRCallArgPos))
1029 V = Builder.CreateBitCast(V, IRFuncTy->getParamType(IRCallArgPos));
1030
1031 IRCallArgs[IRCallArgPos++] = V;
1032 }
Daniel Dunbar56273772008-09-17 00:51:38 +00001033}
1034
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001035/// Create a temporary allocation for the purposes of coercion.
1036static Address CreateTempAllocaForCoercion(CodeGenFunction &CGF, llvm::Type *Ty,
1037 CharUnits MinAlign) {
1038 // Don't use an alignment that's worse than what LLVM would prefer.
1039 auto PrefAlign = CGF.CGM.getDataLayout().getPrefTypeAlignment(Ty);
1040 CharUnits Align = std::max(MinAlign, CharUnits::fromQuantity(PrefAlign));
1041
1042 return CGF.CreateTempAlloca(Ty, Align);
1043}
1044
Chris Lattnere7bb7772010-06-27 06:04:18 +00001045/// EnterStructPointerForCoercedAccess - Given a struct pointer that we are
Chris Lattner08dd2a02010-06-27 05:56:15 +00001046/// accessing some number of bytes out of it, try to gep into the struct to get
1047/// at its inner goodness. Dive as deep as possible without entering an element
1048/// with an in-memory size smaller than DstSize.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001049static Address
1050EnterStructPointerForCoercedAccess(Address SrcPtr,
Chris Lattner2acc6e32011-07-18 04:24:23 +00001051 llvm::StructType *SrcSTy,
Chris Lattnere7bb7772010-06-27 06:04:18 +00001052 uint64_t DstSize, CodeGenFunction &CGF) {
Chris Lattner08dd2a02010-06-27 05:56:15 +00001053 // We can't dive into a zero-element struct.
1054 if (SrcSTy->getNumElements() == 0) return SrcPtr;
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001055
Chris Lattner2acc6e32011-07-18 04:24:23 +00001056 llvm::Type *FirstElt = SrcSTy->getElementType(0);
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001057
Chris Lattner08dd2a02010-06-27 05:56:15 +00001058 // If the first elt is at least as large as what we're looking for, or if the
Stephen Hines176edba2014-12-01 14:53:08 -08001059 // first element is the same size as the whole struct, we can enter it. The
1060 // comparison must be made on the store size and not the alloca size. Using
1061 // the alloca size may overstate the size of the load.
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001062 uint64_t FirstEltSize =
Stephen Hines176edba2014-12-01 14:53:08 -08001063 CGF.CGM.getDataLayout().getTypeStoreSize(FirstElt);
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001064 if (FirstEltSize < DstSize &&
Stephen Hines176edba2014-12-01 14:53:08 -08001065 FirstEltSize < CGF.CGM.getDataLayout().getTypeStoreSize(SrcSTy))
Chris Lattner08dd2a02010-06-27 05:56:15 +00001066 return SrcPtr;
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001067
Chris Lattner08dd2a02010-06-27 05:56:15 +00001068 // GEP into the first element.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001069 SrcPtr = CGF.Builder.CreateStructGEP(SrcPtr, 0, CharUnits(), "coerce.dive");
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001070
Chris Lattner08dd2a02010-06-27 05:56:15 +00001071 // If the first element is a struct, recurse.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001072 llvm::Type *SrcTy = SrcPtr.getElementType();
Chris Lattner2acc6e32011-07-18 04:24:23 +00001073 if (llvm::StructType *SrcSTy = dyn_cast<llvm::StructType>(SrcTy))
Chris Lattnere7bb7772010-06-27 06:04:18 +00001074 return EnterStructPointerForCoercedAccess(SrcPtr, SrcSTy, DstSize, CGF);
Chris Lattner08dd2a02010-06-27 05:56:15 +00001075
1076 return SrcPtr;
1077}
1078
Chris Lattner6d11cdb2010-06-27 06:26:04 +00001079/// CoerceIntOrPtrToIntOrPtr - Convert a value Val to the specific Ty where both
1080/// are either integers or pointers. This does a truncation of the value if it
1081/// is too large or a zero extension if it is too small.
Jakob Stoklund Olesen7e9f52f2013-06-05 03:00:13 +00001082///
1083/// This behaves as if the value were coerced through memory, so on big-endian
1084/// targets the high bits are preserved in a truncation, while little-endian
1085/// targets preserve the low bits.
Chris Lattner6d11cdb2010-06-27 06:26:04 +00001086static llvm::Value *CoerceIntOrPtrToIntOrPtr(llvm::Value *Val,
Chris Lattner2acc6e32011-07-18 04:24:23 +00001087 llvm::Type *Ty,
Chris Lattner6d11cdb2010-06-27 06:26:04 +00001088 CodeGenFunction &CGF) {
1089 if (Val->getType() == Ty)
1090 return Val;
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001091
Chris Lattner6d11cdb2010-06-27 06:26:04 +00001092 if (isa<llvm::PointerType>(Val->getType())) {
1093 // If this is Pointer->Pointer avoid conversion to and from int.
1094 if (isa<llvm::PointerType>(Ty))
1095 return CGF.Builder.CreateBitCast(Val, Ty, "coerce.val");
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001096
Chris Lattner6d11cdb2010-06-27 06:26:04 +00001097 // Convert the pointer to an integer so we can play with its width.
Chris Lattner77b89b82010-06-27 07:15:29 +00001098 Val = CGF.Builder.CreatePtrToInt(Val, CGF.IntPtrTy, "coerce.val.pi");
Chris Lattner6d11cdb2010-06-27 06:26:04 +00001099 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001100
Chris Lattner2acc6e32011-07-18 04:24:23 +00001101 llvm::Type *DestIntTy = Ty;
Chris Lattner6d11cdb2010-06-27 06:26:04 +00001102 if (isa<llvm::PointerType>(DestIntTy))
Chris Lattner77b89b82010-06-27 07:15:29 +00001103 DestIntTy = CGF.IntPtrTy;
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001104
Jakob Stoklund Olesen7e9f52f2013-06-05 03:00:13 +00001105 if (Val->getType() != DestIntTy) {
1106 const llvm::DataLayout &DL = CGF.CGM.getDataLayout();
1107 if (DL.isBigEndian()) {
1108 // Preserve the high bits on big-endian targets.
1109 // That is what memory coercion does.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001110 uint64_t SrcSize = DL.getTypeSizeInBits(Val->getType());
1111 uint64_t DstSize = DL.getTypeSizeInBits(DestIntTy);
1112
Jakob Stoklund Olesen7e9f52f2013-06-05 03:00:13 +00001113 if (SrcSize > DstSize) {
1114 Val = CGF.Builder.CreateLShr(Val, SrcSize - DstSize, "coerce.highbits");
1115 Val = CGF.Builder.CreateTrunc(Val, DestIntTy, "coerce.val.ii");
1116 } else {
1117 Val = CGF.Builder.CreateZExt(Val, DestIntTy, "coerce.val.ii");
1118 Val = CGF.Builder.CreateShl(Val, DstSize - SrcSize, "coerce.highbits");
1119 }
1120 } else {
1121 // Little-endian targets preserve the low bits. No shifts required.
1122 Val = CGF.Builder.CreateIntCast(Val, DestIntTy, false, "coerce.val.ii");
1123 }
1124 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001125
Chris Lattner6d11cdb2010-06-27 06:26:04 +00001126 if (isa<llvm::PointerType>(Ty))
1127 Val = CGF.Builder.CreateIntToPtr(Val, Ty, "coerce.val.ip");
1128 return Val;
1129}
1130
Chris Lattner08dd2a02010-06-27 05:56:15 +00001131
1132
Daniel Dunbar275e10d2009-02-02 19:06:38 +00001133/// CreateCoercedLoad - Create a load from \arg SrcPtr interpreted as
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001134/// a pointer to an object of type \arg Ty, known to be aligned to
1135/// \arg SrcAlign bytes.
Daniel Dunbar275e10d2009-02-02 19:06:38 +00001136///
1137/// This safely handles the case when the src type is smaller than the
1138/// destination type; in this situation the values of bits which not
1139/// present in the src are undefined.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001140static llvm::Value *CreateCoercedLoad(Address Src, llvm::Type *Ty,
Daniel Dunbar275e10d2009-02-02 19:06:38 +00001141 CodeGenFunction &CGF) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001142 llvm::Type *SrcTy = Src.getElementType();
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001143
Chris Lattner6ae00692010-06-28 22:51:39 +00001144 // If SrcTy and Ty are the same, just do a load.
1145 if (SrcTy == Ty)
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001146 return CGF.Builder.CreateLoad(Src);
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001147
Micah Villmow25a6a842012-10-08 16:25:52 +00001148 uint64_t DstSize = CGF.CGM.getDataLayout().getTypeAllocSize(Ty);
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001149
Chris Lattner2acc6e32011-07-18 04:24:23 +00001150 if (llvm::StructType *SrcSTy = dyn_cast<llvm::StructType>(SrcTy)) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001151 Src = EnterStructPointerForCoercedAccess(Src, SrcSTy, DstSize, CGF);
1152 SrcTy = Src.getType()->getElementType();
Chris Lattner08dd2a02010-06-27 05:56:15 +00001153 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001154
Micah Villmow25a6a842012-10-08 16:25:52 +00001155 uint64_t SrcSize = CGF.CGM.getDataLayout().getTypeAllocSize(SrcTy);
Daniel Dunbar275e10d2009-02-02 19:06:38 +00001156
Chris Lattner6d11cdb2010-06-27 06:26:04 +00001157 // If the source and destination are integer or pointer types, just do an
1158 // extension or truncation to the desired type.
1159 if ((isa<llvm::IntegerType>(Ty) || isa<llvm::PointerType>(Ty)) &&
1160 (isa<llvm::IntegerType>(SrcTy) || isa<llvm::PointerType>(SrcTy))) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001161 llvm::Value *Load = CGF.Builder.CreateLoad(Src);
Chris Lattner6d11cdb2010-06-27 06:26:04 +00001162 return CoerceIntOrPtrToIntOrPtr(Load, Ty, CGF);
1163 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001164
Daniel Dunbarb225be42009-02-03 05:59:18 +00001165 // If load is legal, just bitcast the src pointer.
Daniel Dunbar7ef455b2009-05-13 18:54:26 +00001166 if (SrcSize >= DstSize) {
Mike Stumpf5408fe2009-05-16 07:57:57 +00001167 // Generally SrcSize is never greater than DstSize, since this means we are
1168 // losing bits. However, this can happen in cases where the structure has
1169 // additional padding, for example due to a user specified alignment.
Daniel Dunbar7ef455b2009-05-13 18:54:26 +00001170 //
Mike Stumpf5408fe2009-05-16 07:57:57 +00001171 // FIXME: Assert that we aren't truncating non-padding bits when have access
1172 // to that information.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001173 Src = CGF.Builder.CreateBitCast(Src, llvm::PointerType::getUnqual(Ty));
1174 return CGF.Builder.CreateLoad(Src);
Daniel Dunbar275e10d2009-02-02 19:06:38 +00001175 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001176
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001177 // Otherwise do coercion through memory. This is stupid, but simple.
1178 Address Tmp = CreateTempAllocaForCoercion(CGF, Ty, Src.getAlignment());
1179 Address Casted = CGF.Builder.CreateBitCast(Tmp, CGF.Int8PtrTy);
1180 Address SrcCasted = CGF.Builder.CreateBitCast(Src, CGF.Int8PtrTy);
Manman Renf51c61c2012-11-28 22:08:52 +00001181 CGF.Builder.CreateMemCpy(Casted, SrcCasted,
1182 llvm::ConstantInt::get(CGF.IntPtrTy, SrcSize),
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001183 false);
Chris Lattner35b21b82010-06-27 01:06:27 +00001184 return CGF.Builder.CreateLoad(Tmp);
Daniel Dunbar275e10d2009-02-02 19:06:38 +00001185}
1186
Eli Friedmanbadea572011-05-17 21:08:01 +00001187// Function to store a first-class aggregate into memory. We prefer to
1188// store the elements rather than the aggregate to be more friendly to
1189// fast-isel.
1190// FIXME: Do we need to recurse here?
1191static void BuildAggStore(CodeGenFunction &CGF, llvm::Value *Val,
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001192 Address Dest, bool DestIsVolatile) {
Eli Friedmanbadea572011-05-17 21:08:01 +00001193 // Prefer scalar stores to first-class aggregate stores.
Chris Lattner2acc6e32011-07-18 04:24:23 +00001194 if (llvm::StructType *STy =
Eli Friedmanbadea572011-05-17 21:08:01 +00001195 dyn_cast<llvm::StructType>(Val->getType())) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001196 const llvm::StructLayout *Layout =
1197 CGF.CGM.getDataLayout().getStructLayout(STy);
1198
Eli Friedmanbadea572011-05-17 21:08:01 +00001199 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001200 auto EltOffset = CharUnits::fromQuantity(Layout->getElementOffset(i));
1201 Address EltPtr = CGF.Builder.CreateStructGEP(Dest, i, EltOffset);
Eli Friedmanbadea572011-05-17 21:08:01 +00001202 llvm::Value *Elt = CGF.Builder.CreateExtractValue(Val, i);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001203 CGF.Builder.CreateStore(Elt, EltPtr, DestIsVolatile);
Eli Friedmanbadea572011-05-17 21:08:01 +00001204 }
1205 } else {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001206 CGF.Builder.CreateStore(Val, Dest, DestIsVolatile);
Eli Friedmanbadea572011-05-17 21:08:01 +00001207 }
1208}
1209
Daniel Dunbar275e10d2009-02-02 19:06:38 +00001210/// CreateCoercedStore - Create a store to \arg DstPtr from \arg Src,
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001211/// where the source and destination may have different types. The
1212/// destination is known to be aligned to \arg DstAlign bytes.
Daniel Dunbar275e10d2009-02-02 19:06:38 +00001213///
1214/// This safely handles the case when the src type is larger than the
1215/// destination type; the upper bits of the src will be lost.
1216static void CreateCoercedStore(llvm::Value *Src,
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001217 Address Dst,
Anders Carlssond2490a92009-12-24 20:40:36 +00001218 bool DstIsVolatile,
Daniel Dunbar275e10d2009-02-02 19:06:38 +00001219 CodeGenFunction &CGF) {
Chris Lattner2acc6e32011-07-18 04:24:23 +00001220 llvm::Type *SrcTy = Src->getType();
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001221 llvm::Type *DstTy = Dst.getType()->getElementType();
Chris Lattner6ae00692010-06-28 22:51:39 +00001222 if (SrcTy == DstTy) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001223 CGF.Builder.CreateStore(Src, Dst, DstIsVolatile);
Chris Lattner6ae00692010-06-28 22:51:39 +00001224 return;
1225 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001226
Micah Villmow25a6a842012-10-08 16:25:52 +00001227 uint64_t SrcSize = CGF.CGM.getDataLayout().getTypeAllocSize(SrcTy);
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001228
Chris Lattner2acc6e32011-07-18 04:24:23 +00001229 if (llvm::StructType *DstSTy = dyn_cast<llvm::StructType>(DstTy)) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001230 Dst = EnterStructPointerForCoercedAccess(Dst, DstSTy, SrcSize, CGF);
1231 DstTy = Dst.getType()->getElementType();
Chris Lattnere7bb7772010-06-27 06:04:18 +00001232 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001233
Chris Lattner6d11cdb2010-06-27 06:26:04 +00001234 // If the source and destination are integer or pointer types, just do an
1235 // extension or truncation to the desired type.
1236 if ((isa<llvm::IntegerType>(SrcTy) || isa<llvm::PointerType>(SrcTy)) &&
1237 (isa<llvm::IntegerType>(DstTy) || isa<llvm::PointerType>(DstTy))) {
1238 Src = CoerceIntOrPtrToIntOrPtr(Src, DstTy, CGF);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001239 CGF.Builder.CreateStore(Src, Dst, DstIsVolatile);
Chris Lattner6d11cdb2010-06-27 06:26:04 +00001240 return;
1241 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001242
Micah Villmow25a6a842012-10-08 16:25:52 +00001243 uint64_t DstSize = CGF.CGM.getDataLayout().getTypeAllocSize(DstTy);
Daniel Dunbar275e10d2009-02-02 19:06:38 +00001244
Daniel Dunbar88c2fa92009-02-03 05:31:23 +00001245 // If store is legal, just bitcast the src pointer.
Daniel Dunbarfdf49862009-06-05 07:58:54 +00001246 if (SrcSize <= DstSize) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001247 Dst = CGF.Builder.CreateBitCast(Dst, llvm::PointerType::getUnqual(SrcTy));
1248 BuildAggStore(CGF, Src, Dst, DstIsVolatile);
Daniel Dunbar275e10d2009-02-02 19:06:38 +00001249 } else {
Daniel Dunbar275e10d2009-02-02 19:06:38 +00001250 // Otherwise do coercion through memory. This is stupid, but
1251 // simple.
Daniel Dunbarfdf49862009-06-05 07:58:54 +00001252
1253 // Generally SrcSize is never greater than DstSize, since this means we are
1254 // losing bits. However, this can happen in cases where the structure has
1255 // additional padding, for example due to a user specified alignment.
1256 //
1257 // FIXME: Assert that we aren't truncating non-padding bits when have access
1258 // to that information.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001259 Address Tmp = CreateTempAllocaForCoercion(CGF, SrcTy, Dst.getAlignment());
Daniel Dunbar275e10d2009-02-02 19:06:38 +00001260 CGF.Builder.CreateStore(Src, Tmp);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001261 Address Casted = CGF.Builder.CreateBitCast(Tmp, CGF.Int8PtrTy);
1262 Address DstCasted = CGF.Builder.CreateBitCast(Dst, CGF.Int8PtrTy);
Manman Renf51c61c2012-11-28 22:08:52 +00001263 CGF.Builder.CreateMemCpy(DstCasted, Casted,
1264 llvm::ConstantInt::get(CGF.IntPtrTy, DstSize),
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001265 false);
Daniel Dunbar275e10d2009-02-02 19:06:38 +00001266 }
1267}
1268
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001269static Address emitAddressAtOffset(CodeGenFunction &CGF, Address addr,
1270 const ABIArgInfo &info) {
1271 if (unsigned offset = info.getDirectOffset()) {
1272 addr = CGF.Builder.CreateElementBitCast(addr, CGF.Int8Ty);
1273 addr = CGF.Builder.CreateConstInBoundsByteGEP(addr,
1274 CharUnits::fromQuantity(offset));
1275 addr = CGF.Builder.CreateElementBitCast(addr, info.getCoerceToType());
1276 }
1277 return addr;
1278}
1279
Stephen Hines176edba2014-12-01 14:53:08 -08001280namespace {
1281
1282/// Encapsulates information about the way function arguments from
1283/// CGFunctionInfo should be passed to actual LLVM IR function.
1284class ClangToLLVMArgMapping {
1285 static const unsigned InvalidIndex = ~0U;
1286 unsigned InallocaArgNo;
1287 unsigned SRetArgNo;
1288 unsigned TotalIRArgs;
1289
1290 /// Arguments of LLVM IR function corresponding to single Clang argument.
1291 struct IRArgs {
1292 unsigned PaddingArgIndex;
1293 // Argument is expanded to IR arguments at positions
1294 // [FirstArgIndex, FirstArgIndex + NumberOfArgs).
1295 unsigned FirstArgIndex;
1296 unsigned NumberOfArgs;
1297
1298 IRArgs()
1299 : PaddingArgIndex(InvalidIndex), FirstArgIndex(InvalidIndex),
1300 NumberOfArgs(0) {}
1301 };
1302
1303 SmallVector<IRArgs, 8> ArgInfo;
1304
1305public:
1306 ClangToLLVMArgMapping(const ASTContext &Context, const CGFunctionInfo &FI,
1307 bool OnlyRequiredArgs = false)
1308 : InallocaArgNo(InvalidIndex), SRetArgNo(InvalidIndex), TotalIRArgs(0),
1309 ArgInfo(OnlyRequiredArgs ? FI.getNumRequiredArgs() : FI.arg_size()) {
1310 construct(Context, FI, OnlyRequiredArgs);
1311 }
1312
1313 bool hasInallocaArg() const { return InallocaArgNo != InvalidIndex; }
1314 unsigned getInallocaArgNo() const {
1315 assert(hasInallocaArg());
1316 return InallocaArgNo;
1317 }
1318
1319 bool hasSRetArg() const { return SRetArgNo != InvalidIndex; }
1320 unsigned getSRetArgNo() const {
1321 assert(hasSRetArg());
1322 return SRetArgNo;
1323 }
1324
1325 unsigned totalIRArgs() const { return TotalIRArgs; }
1326
1327 bool hasPaddingArg(unsigned ArgNo) const {
1328 assert(ArgNo < ArgInfo.size());
1329 return ArgInfo[ArgNo].PaddingArgIndex != InvalidIndex;
1330 }
1331 unsigned getPaddingArgNo(unsigned ArgNo) const {
1332 assert(hasPaddingArg(ArgNo));
1333 return ArgInfo[ArgNo].PaddingArgIndex;
1334 }
1335
1336 /// Returns index of first IR argument corresponding to ArgNo, and their
1337 /// quantity.
1338 std::pair<unsigned, unsigned> getIRArgs(unsigned ArgNo) const {
1339 assert(ArgNo < ArgInfo.size());
1340 return std::make_pair(ArgInfo[ArgNo].FirstArgIndex,
1341 ArgInfo[ArgNo].NumberOfArgs);
1342 }
1343
1344private:
1345 void construct(const ASTContext &Context, const CGFunctionInfo &FI,
1346 bool OnlyRequiredArgs);
1347};
1348
1349void ClangToLLVMArgMapping::construct(const ASTContext &Context,
1350 const CGFunctionInfo &FI,
1351 bool OnlyRequiredArgs) {
1352 unsigned IRArgNo = 0;
1353 bool SwapThisWithSRet = false;
1354 const ABIArgInfo &RetAI = FI.getReturnInfo();
1355
1356 if (RetAI.getKind() == ABIArgInfo::Indirect) {
1357 SwapThisWithSRet = RetAI.isSRetAfterThis();
1358 SRetArgNo = SwapThisWithSRet ? 1 : IRArgNo++;
1359 }
1360
1361 unsigned ArgNo = 0;
1362 unsigned NumArgs = OnlyRequiredArgs ? FI.getNumRequiredArgs() : FI.arg_size();
1363 for (CGFunctionInfo::const_arg_iterator I = FI.arg_begin(); ArgNo < NumArgs;
1364 ++I, ++ArgNo) {
1365 assert(I != FI.arg_end());
1366 QualType ArgType = I->type;
1367 const ABIArgInfo &AI = I->info;
1368 // Collect data about IR arguments corresponding to Clang argument ArgNo.
1369 auto &IRArgs = ArgInfo[ArgNo];
1370
1371 if (AI.getPaddingType())
1372 IRArgs.PaddingArgIndex = IRArgNo++;
1373
1374 switch (AI.getKind()) {
1375 case ABIArgInfo::Extend:
1376 case ABIArgInfo::Direct: {
1377 // FIXME: handle sseregparm someday...
1378 llvm::StructType *STy = dyn_cast<llvm::StructType>(AI.getCoerceToType());
1379 if (AI.isDirect() && AI.getCanBeFlattened() && STy) {
1380 IRArgs.NumberOfArgs = STy->getNumElements();
1381 } else {
1382 IRArgs.NumberOfArgs = 1;
1383 }
1384 break;
1385 }
1386 case ABIArgInfo::Indirect:
1387 IRArgs.NumberOfArgs = 1;
1388 break;
1389 case ABIArgInfo::Ignore:
1390 case ABIArgInfo::InAlloca:
1391 // ignore and inalloca doesn't have matching LLVM parameters.
1392 IRArgs.NumberOfArgs = 0;
1393 break;
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07001394 case ABIArgInfo::CoerceAndExpand:
1395 IRArgs.NumberOfArgs = AI.getCoerceAndExpandTypeSequence().size();
1396 break;
1397 case ABIArgInfo::Expand:
Stephen Hines176edba2014-12-01 14:53:08 -08001398 IRArgs.NumberOfArgs = getExpansionSize(ArgType, Context);
1399 break;
1400 }
Stephen Hines176edba2014-12-01 14:53:08 -08001401
1402 if (IRArgs.NumberOfArgs > 0) {
1403 IRArgs.FirstArgIndex = IRArgNo;
1404 IRArgNo += IRArgs.NumberOfArgs;
1405 }
1406
1407 // Skip over the sret parameter when it comes second. We already handled it
1408 // above.
1409 if (IRArgNo == 1 && SwapThisWithSRet)
1410 IRArgNo++;
1411 }
1412 assert(ArgNo == ArgInfo.size());
1413
1414 if (FI.usesInAlloca())
1415 InallocaArgNo = IRArgNo++;
1416
1417 TotalIRArgs = IRArgNo;
1418}
1419} // namespace
1420
Daniel Dunbar56273772008-09-17 00:51:38 +00001421/***/
1422
Daniel Dunbardacf9dd2010-07-14 23:39:36 +00001423bool CodeGenModule::ReturnTypeUsesSRet(const CGFunctionInfo &FI) {
Daniel Dunbar11e383a2009-02-05 08:00:50 +00001424 return FI.getReturnInfo().isIndirect();
Daniel Dunbarbb36d332009-02-02 21:43:58 +00001425}
1426
Stephen Hines651f13c2014-04-23 16:59:28 -07001427bool CodeGenModule::ReturnSlotInterferesWithArgs(const CGFunctionInfo &FI) {
1428 return ReturnTypeUsesSRet(FI) &&
1429 getTargetCodeGenInfo().doesReturnSlotInterfereWithArgs();
1430}
1431
Daniel Dunbardacf9dd2010-07-14 23:39:36 +00001432bool CodeGenModule::ReturnTypeUsesFPRet(QualType ResultType) {
1433 if (const BuiltinType *BT = ResultType->getAs<BuiltinType>()) {
1434 switch (BT->getKind()) {
1435 default:
1436 return false;
1437 case BuiltinType::Float:
John McCall64aa4b32013-04-16 22:48:15 +00001438 return getTarget().useObjCFPRetForRealType(TargetInfo::Float);
Daniel Dunbardacf9dd2010-07-14 23:39:36 +00001439 case BuiltinType::Double:
John McCall64aa4b32013-04-16 22:48:15 +00001440 return getTarget().useObjCFPRetForRealType(TargetInfo::Double);
Daniel Dunbardacf9dd2010-07-14 23:39:36 +00001441 case BuiltinType::LongDouble:
John McCall64aa4b32013-04-16 22:48:15 +00001442 return getTarget().useObjCFPRetForRealType(TargetInfo::LongDouble);
Daniel Dunbardacf9dd2010-07-14 23:39:36 +00001443 }
1444 }
1445
1446 return false;
1447}
1448
Anders Carlssoneea64802011-10-31 16:27:11 +00001449bool CodeGenModule::ReturnTypeUsesFP2Ret(QualType ResultType) {
1450 if (const ComplexType *CT = ResultType->getAs<ComplexType>()) {
1451 if (const BuiltinType *BT = CT->getElementType()->getAs<BuiltinType>()) {
1452 if (BT->getKind() == BuiltinType::LongDouble)
John McCall64aa4b32013-04-16 22:48:15 +00001453 return getTarget().useObjCFP2RetForComplexLongDouble();
Anders Carlssoneea64802011-10-31 16:27:11 +00001454 }
1455 }
1456
1457 return false;
1458}
1459
Chris Lattner9cbe4f02011-07-09 17:41:47 +00001460llvm::FunctionType *CodeGenTypes::GetFunctionType(GlobalDecl GD) {
John McCallde5d3c72012-02-17 03:33:10 +00001461 const CGFunctionInfo &FI = arrangeGlobalDeclaration(GD);
1462 return GetFunctionType(FI);
John McCallc0bf4622010-02-23 00:48:20 +00001463}
1464
Chris Lattner9cbe4f02011-07-09 17:41:47 +00001465llvm::FunctionType *
John McCallde5d3c72012-02-17 03:33:10 +00001466CodeGenTypes::GetFunctionType(const CGFunctionInfo &FI) {
Daniel Dunbar45c25ba2008-09-10 04:01:49 +00001467
Stephen Hines176edba2014-12-01 14:53:08 -08001468 bool Inserted = FunctionsBeingProcessed.insert(&FI).second;
1469 (void)Inserted;
1470 assert(Inserted && "Recursively being processed?");
1471
1472 llvm::Type *resultType = nullptr;
John McCall42e06112011-05-15 02:19:42 +00001473 const ABIArgInfo &retAI = FI.getReturnInfo();
1474 switch (retAI.getKind()) {
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001475 case ABIArgInfo::Expand:
John McCall42e06112011-05-15 02:19:42 +00001476 llvm_unreachable("Invalid ABI kind for return argument");
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001477
Anton Korobeynikovcc6fa882009-06-06 09:36:29 +00001478 case ABIArgInfo::Extend:
Daniel Dunbar46327aa2009-02-03 06:17:37 +00001479 case ABIArgInfo::Direct:
John McCall42e06112011-05-15 02:19:42 +00001480 resultType = retAI.getCoerceToType();
Daniel Dunbar46327aa2009-02-03 06:17:37 +00001481 break;
1482
Stephen Hines651f13c2014-04-23 16:59:28 -07001483 case ABIArgInfo::InAlloca:
1484 if (retAI.getInAllocaSRet()) {
1485 // sret things on win32 aren't void, they return the sret pointer.
1486 QualType ret = FI.getReturnType();
1487 llvm::Type *ty = ConvertType(ret);
1488 unsigned addressSpace = Context.getTargetAddressSpace(ret);
1489 resultType = llvm::PointerType::get(ty, addressSpace);
1490 } else {
1491 resultType = llvm::Type::getVoidTy(getLLVMContext());
1492 }
1493 break;
1494
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001495 case ABIArgInfo::Indirect:
Daniel Dunbar11434922009-01-26 21:26:08 +00001496 case ABIArgInfo::Ignore:
John McCall42e06112011-05-15 02:19:42 +00001497 resultType = llvm::Type::getVoidTy(getLLVMContext());
Daniel Dunbar11434922009-01-26 21:26:08 +00001498 break;
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07001499
1500 case ABIArgInfo::CoerceAndExpand:
1501 resultType = retAI.getUnpaddedCoerceAndExpandType();
1502 break;
Daniel Dunbar45c25ba2008-09-10 04:01:49 +00001503 }
Mike Stump1eb44332009-09-09 15:08:12 +00001504
Stephen Hines176edba2014-12-01 14:53:08 -08001505 ClangToLLVMArgMapping IRFunctionArgs(getContext(), FI, true);
1506 SmallVector<llvm::Type*, 8> ArgTypes(IRFunctionArgs.totalIRArgs());
1507
1508 // Add type for sret argument.
1509 if (IRFunctionArgs.hasSRetArg()) {
1510 QualType Ret = FI.getReturnType();
1511 llvm::Type *Ty = ConvertType(Ret);
1512 unsigned AddressSpace = Context.getTargetAddressSpace(Ret);
1513 ArgTypes[IRFunctionArgs.getSRetArgNo()] =
1514 llvm::PointerType::get(Ty, AddressSpace);
John McCalle56bb362012-12-07 07:03:17 +00001515 }
Stephen Hines176edba2014-12-01 14:53:08 -08001516
1517 // Add type for inalloca argument.
1518 if (IRFunctionArgs.hasInallocaArg()) {
1519 auto ArgStruct = FI.getArgStruct();
1520 assert(ArgStruct);
1521 ArgTypes[IRFunctionArgs.getInallocaArgNo()] = ArgStruct->getPointerTo();
1522 }
1523
1524 // Add in all of the required arguments.
1525 unsigned ArgNo = 0;
1526 CGFunctionInfo::const_arg_iterator it = FI.arg_begin(),
1527 ie = it + FI.getNumRequiredArgs();
1528 for (; it != ie; ++it, ++ArgNo) {
1529 const ABIArgInfo &ArgInfo = it->info;
Mike Stump1eb44332009-09-09 15:08:12 +00001530
Rafael Espindolae4aeeaa2012-10-24 01:59:00 +00001531 // Insert a padding type to ensure proper alignment.
Stephen Hines176edba2014-12-01 14:53:08 -08001532 if (IRFunctionArgs.hasPaddingArg(ArgNo))
1533 ArgTypes[IRFunctionArgs.getPaddingArgNo(ArgNo)] =
1534 ArgInfo.getPaddingType();
Rafael Espindolae4aeeaa2012-10-24 01:59:00 +00001535
Stephen Hines176edba2014-12-01 14:53:08 -08001536 unsigned FirstIRArg, NumIRArgs;
1537 std::tie(FirstIRArg, NumIRArgs) = IRFunctionArgs.getIRArgs(ArgNo);
1538
1539 switch (ArgInfo.getKind()) {
Daniel Dunbar11434922009-01-26 21:26:08 +00001540 case ABIArgInfo::Ignore:
Stephen Hines651f13c2014-04-23 16:59:28 -07001541 case ABIArgInfo::InAlloca:
Stephen Hines176edba2014-12-01 14:53:08 -08001542 assert(NumIRArgs == 0);
Daniel Dunbar11434922009-01-26 21:26:08 +00001543 break;
1544
Chris Lattner800588f2010-07-29 06:26:06 +00001545 case ABIArgInfo::Indirect: {
Stephen Hines176edba2014-12-01 14:53:08 -08001546 assert(NumIRArgs == 1);
Chris Lattner800588f2010-07-29 06:26:06 +00001547 // indirect arguments are always on the stack, which is addr space #0.
Chris Lattner2acc6e32011-07-18 04:24:23 +00001548 llvm::Type *LTy = ConvertTypeForMem(it->type);
Stephen Hines176edba2014-12-01 14:53:08 -08001549 ArgTypes[FirstIRArg] = LTy->getPointerTo();
Chris Lattner800588f2010-07-29 06:26:06 +00001550 break;
1551 }
1552
1553 case ABIArgInfo::Extend:
Chris Lattner1ed72672010-07-29 06:44:09 +00001554 case ABIArgInfo::Direct: {
Stephen Hines176edba2014-12-01 14:53:08 -08001555 // Fast-isel and the optimizer generally like scalar values better than
1556 // FCAs, so we flatten them if this is safe to do for this argument.
1557 llvm::Type *argType = ArgInfo.getCoerceToType();
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001558 llvm::StructType *st = dyn_cast<llvm::StructType>(argType);
Stephen Hines176edba2014-12-01 14:53:08 -08001559 if (st && ArgInfo.isDirect() && ArgInfo.getCanBeFlattened()) {
1560 assert(NumIRArgs == st->getNumElements());
John McCall42e06112011-05-15 02:19:42 +00001561 for (unsigned i = 0, e = st->getNumElements(); i != e; ++i)
Stephen Hines176edba2014-12-01 14:53:08 -08001562 ArgTypes[FirstIRArg + i] = st->getElementType(i);
Chris Lattnerce700162010-06-28 23:44:11 +00001563 } else {
Stephen Hines176edba2014-12-01 14:53:08 -08001564 assert(NumIRArgs == 1);
1565 ArgTypes[FirstIRArg] = argType;
Chris Lattnerce700162010-06-28 23:44:11 +00001566 }
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +00001567 break;
Chris Lattner1ed72672010-07-29 06:44:09 +00001568 }
Mike Stump1eb44332009-09-09 15:08:12 +00001569
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07001570 case ABIArgInfo::CoerceAndExpand: {
1571 auto ArgTypesIter = ArgTypes.begin() + FirstIRArg;
1572 for (auto EltTy : ArgInfo.getCoerceAndExpandTypeSequence()) {
1573 *ArgTypesIter++ = EltTy;
1574 }
1575 assert(ArgTypesIter == ArgTypes.begin() + FirstIRArg + NumIRArgs);
1576 break;
1577 }
1578
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001579 case ABIArgInfo::Expand:
Stephen Hines176edba2014-12-01 14:53:08 -08001580 auto ArgTypesIter = ArgTypes.begin() + FirstIRArg;
1581 getExpandedTypes(it->type, ArgTypesIter);
1582 assert(ArgTypesIter == ArgTypes.begin() + FirstIRArg + NumIRArgs);
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001583 break;
1584 }
Daniel Dunbar45c25ba2008-09-10 04:01:49 +00001585 }
1586
Chris Lattner71305cc2011-07-15 05:16:14 +00001587 bool Erased = FunctionsBeingProcessed.erase(&FI); (void)Erased;
1588 assert(Erased && "Not in set?");
Stephen Hines176edba2014-12-01 14:53:08 -08001589
1590 return llvm::FunctionType::get(resultType, ArgTypes, FI.isVariadic());
Daniel Dunbar3913f182008-09-09 23:48:28 +00001591}
1592
Chris Lattner2acc6e32011-07-18 04:24:23 +00001593llvm::Type *CodeGenTypes::GetFunctionTypeForVTable(GlobalDecl GD) {
John McCall4c40d982010-08-31 07:33:07 +00001594 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl());
Anders Carlssonecf282b2009-11-24 05:08:52 +00001595 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>();
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001596
Chris Lattnerf742eb02011-07-10 00:18:59 +00001597 if (!isFuncTypeConvertible(FPT))
1598 return llvm::StructType::get(getLLVMContext());
1599
1600 const CGFunctionInfo *Info;
1601 if (isa<CXXDestructorDecl>(MD))
Stephen Hines176edba2014-12-01 14:53:08 -08001602 Info =
1603 &arrangeCXXStructorDeclaration(MD, getFromDtorType(GD.getDtorType()));
Chris Lattnerf742eb02011-07-10 00:18:59 +00001604 else
John McCallde5d3c72012-02-17 03:33:10 +00001605 Info = &arrangeCXXMethodDeclaration(MD);
1606 return GetFunctionType(*Info);
Anders Carlssonecf282b2009-11-24 05:08:52 +00001607}
1608
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001609static void AddAttributesFromFunctionProtoType(ASTContext &Ctx,
1610 llvm::AttrBuilder &FuncAttrs,
1611 const FunctionProtoType *FPT) {
1612 if (!FPT)
1613 return;
1614
1615 if (!isUnresolvedExceptionSpec(FPT->getExceptionSpecType()) &&
1616 FPT->isNothrow(Ctx))
1617 FuncAttrs.addAttribute(llvm::Attribute::NoUnwind);
1618}
1619
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07001620void CodeGenModule::ConstructAttributeList(
1621 StringRef Name, const CGFunctionInfo &FI, CGCalleeInfo CalleeInfo,
1622 AttributeListType &PAL, unsigned &CallingConv, bool AttrOnCallSite) {
Bill Wendling0d583392012-10-15 20:36:26 +00001623 llvm::AttrBuilder FuncAttrs;
1624 llvm::AttrBuilder RetAttrs;
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001625 bool HasOptnone = false;
Daniel Dunbar5323a4b2008-09-10 00:32:18 +00001626
Daniel Dunbarca6408c2009-09-12 00:59:20 +00001627 CallingConv = FI.getEffectiveCallingConvention();
1628
John McCall04a67a62010-02-05 21:31:56 +00001629 if (FI.isNoReturn())
Bill Wendling72390b32012-12-20 19:27:06 +00001630 FuncAttrs.addAttribute(llvm::Attribute::NoReturn);
John McCall04a67a62010-02-05 21:31:56 +00001631
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001632 // If we have information about the function prototype, we can learn
1633 // attributes form there.
1634 AddAttributesFromFunctionProtoType(getContext(), FuncAttrs,
1635 CalleeInfo.getCalleeFunctionProtoType());
1636
1637 const Decl *TargetDecl = CalleeInfo.getCalleeDecl();
1638
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07001639 bool HasAnyX86InterruptAttr = false;
Anton Korobeynikov1102f422009-04-04 00:49:24 +00001640 // FIXME: handle sseregparm someday...
Daniel Dunbar5323a4b2008-09-10 00:32:18 +00001641 if (TargetDecl) {
Rafael Espindola67004152011-10-12 19:51:18 +00001642 if (TargetDecl->hasAttr<ReturnsTwiceAttr>())
Bill Wendling72390b32012-12-20 19:27:06 +00001643 FuncAttrs.addAttribute(llvm::Attribute::ReturnsTwice);
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00001644 if (TargetDecl->hasAttr<NoThrowAttr>())
Bill Wendling72390b32012-12-20 19:27:06 +00001645 FuncAttrs.addAttribute(llvm::Attribute::NoUnwind);
Richard Smith7586a6e2013-01-30 05:45:05 +00001646 if (TargetDecl->hasAttr<NoReturnAttr>())
1647 FuncAttrs.addAttribute(llvm::Attribute::NoReturn);
Stephen Hines651f13c2014-04-23 16:59:28 -07001648 if (TargetDecl->hasAttr<NoDuplicateAttr>())
1649 FuncAttrs.addAttribute(llvm::Attribute::NoDuplicate);
Richard Smith7586a6e2013-01-30 05:45:05 +00001650
1651 if (const FunctionDecl *Fn = dyn_cast<FunctionDecl>(TargetDecl)) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001652 AddAttributesFromFunctionProtoType(
1653 getContext(), FuncAttrs, Fn->getType()->getAs<FunctionProtoType>());
Richard Smith3c5cd152013-03-05 08:30:04 +00001654 // Don't use [[noreturn]] or _Noreturn for a call to a virtual function.
1655 // These attributes are not inherited by overloads.
1656 const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Fn);
1657 if (Fn->isNoReturn() && !(AttrOnCallSite && MD && MD->isVirtual()))
Richard Smith7586a6e2013-01-30 05:45:05 +00001658 FuncAttrs.addAttribute(llvm::Attribute::NoReturn);
John McCall9c0c1f32010-07-08 06:48:12 +00001659 }
1660
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001661 // 'const', 'pure' and 'noalias' attributed functions are also nounwind.
Eric Christopher041087c2011-08-15 22:38:22 +00001662 if (TargetDecl->hasAttr<ConstAttr>()) {
Bill Wendling72390b32012-12-20 19:27:06 +00001663 FuncAttrs.addAttribute(llvm::Attribute::ReadNone);
1664 FuncAttrs.addAttribute(llvm::Attribute::NoUnwind);
Eric Christopher041087c2011-08-15 22:38:22 +00001665 } else if (TargetDecl->hasAttr<PureAttr>()) {
Bill Wendling72390b32012-12-20 19:27:06 +00001666 FuncAttrs.addAttribute(llvm::Attribute::ReadOnly);
1667 FuncAttrs.addAttribute(llvm::Attribute::NoUnwind);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001668 } else if (TargetDecl->hasAttr<NoAliasAttr>()) {
1669 FuncAttrs.addAttribute(llvm::Attribute::ArgMemOnly);
1670 FuncAttrs.addAttribute(llvm::Attribute::NoUnwind);
Eric Christopher041087c2011-08-15 22:38:22 +00001671 }
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001672 if (TargetDecl->hasAttr<RestrictAttr>())
Bill Wendling72390b32012-12-20 19:27:06 +00001673 RetAttrs.addAttribute(llvm::Attribute::NoAlias);
Stephen Hines176edba2014-12-01 14:53:08 -08001674 if (TargetDecl->hasAttr<ReturnsNonNullAttr>())
1675 RetAttrs.addAttribute(llvm::Attribute::NonNull);
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001676
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07001677 HasAnyX86InterruptAttr = TargetDecl->hasAttr<AnyX86InterruptAttr>();
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001678 HasOptnone = TargetDecl->hasAttr<OptimizeNoneAttr>();
Daniel Dunbar5323a4b2008-09-10 00:32:18 +00001679 }
1680
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001681 // OptimizeNoneAttr takes precedence over -Os or -Oz. No warning needed.
1682 if (!HasOptnone) {
1683 if (CodeGenOpts.OptimizeSize)
1684 FuncAttrs.addAttribute(llvm::Attribute::OptimizeForSize);
1685 if (CodeGenOpts.OptimizeSize == 2)
1686 FuncAttrs.addAttribute(llvm::Attribute::MinSize);
1687 }
1688
Chandler Carruth2811ccf2009-11-12 17:24:48 +00001689 if (CodeGenOpts.DisableRedZone)
Bill Wendling72390b32012-12-20 19:27:06 +00001690 FuncAttrs.addAttribute(llvm::Attribute::NoRedZone);
Chandler Carruth2811ccf2009-11-12 17:24:48 +00001691 if (CodeGenOpts.NoImplicitFloat)
Bill Wendling72390b32012-12-20 19:27:06 +00001692 FuncAttrs.addAttribute(llvm::Attribute::NoImplicitFloat);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001693 if (CodeGenOpts.EnableSegmentedStacks &&
1694 !(TargetDecl && TargetDecl->hasAttr<NoSplitStackAttr>()))
1695 FuncAttrs.addAttribute("split-stack");
Devang Patel24095da2009-06-04 23:32:02 +00001696
Bill Wendling93e4bff2013-02-22 20:53:29 +00001697 if (AttrOnCallSite) {
1698 // Attributes that should go on the call site only.
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07001699 if (!CodeGenOpts.SimplifyLibCalls ||
1700 CodeGenOpts.isNoBuiltinFunc(Name.data()))
Bill Wendling93e4bff2013-02-22 20:53:29 +00001701 FuncAttrs.addAttribute(llvm::Attribute::NoBuiltin);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001702 if (!CodeGenOpts.TrapFuncName.empty())
1703 FuncAttrs.addAttribute("trap-func-name", CodeGenOpts.TrapFuncName);
Bill Wendlingbe9e8bf2013-02-28 22:49:57 +00001704 } else {
1705 // Attributes that should go on the function, but not the call site.
Bill Wendlingbe9e8bf2013-02-28 22:49:57 +00001706 if (!CodeGenOpts.DisableFPElim) {
Bill Wendling4159f052013-03-13 22:24:33 +00001707 FuncAttrs.addAttribute("no-frame-pointer-elim", "false");
Bill Wendlingbe9e8bf2013-02-28 22:49:57 +00001708 } else if (CodeGenOpts.OmitLeafFramePointer) {
Bill Wendling4159f052013-03-13 22:24:33 +00001709 FuncAttrs.addAttribute("no-frame-pointer-elim", "false");
Bill Wendlingfae228b2013-08-22 21:16:51 +00001710 FuncAttrs.addAttribute("no-frame-pointer-elim-non-leaf");
Bill Wendlingbe9e8bf2013-02-28 22:49:57 +00001711 } else {
Bill Wendling4159f052013-03-13 22:24:33 +00001712 FuncAttrs.addAttribute("no-frame-pointer-elim", "true");
Bill Wendlingfae228b2013-08-22 21:16:51 +00001713 FuncAttrs.addAttribute("no-frame-pointer-elim-non-leaf");
Bill Wendlingbe9e8bf2013-02-28 22:49:57 +00001714 }
1715
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001716 bool DisableTailCalls =
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07001717 CodeGenOpts.DisableTailCalls || HasAnyX86InterruptAttr ||
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001718 (TargetDecl && TargetDecl->hasAttr<DisableTailCallsAttr>());
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07001719 FuncAttrs.addAttribute(
1720 "disable-tail-calls",
1721 llvm::toStringRef(DisableTailCalls));
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001722
Bill Wendling4159f052013-03-13 22:24:33 +00001723 FuncAttrs.addAttribute("less-precise-fpmad",
Bill Wendling52d08fe2013-07-26 21:51:11 +00001724 llvm::toStringRef(CodeGenOpts.LessPreciseFPMAD));
Bill Wendling4159f052013-03-13 22:24:33 +00001725 FuncAttrs.addAttribute("no-infs-fp-math",
Bill Wendling52d08fe2013-07-26 21:51:11 +00001726 llvm::toStringRef(CodeGenOpts.NoInfsFPMath));
Bill Wendling4159f052013-03-13 22:24:33 +00001727 FuncAttrs.addAttribute("no-nans-fp-math",
Bill Wendling52d08fe2013-07-26 21:51:11 +00001728 llvm::toStringRef(CodeGenOpts.NoNaNsFPMath));
Bill Wendling4159f052013-03-13 22:24:33 +00001729 FuncAttrs.addAttribute("unsafe-fp-math",
Bill Wendling52d08fe2013-07-26 21:51:11 +00001730 llvm::toStringRef(CodeGenOpts.UnsafeFPMath));
Bill Wendling4159f052013-03-13 22:24:33 +00001731 FuncAttrs.addAttribute("use-soft-float",
Bill Wendling52d08fe2013-07-26 21:51:11 +00001732 llvm::toStringRef(CodeGenOpts.SoftFloat));
Bill Wendling45ccf282013-07-22 20:15:41 +00001733 FuncAttrs.addAttribute("stack-protector-buffer-size",
Bill Wendling8d230b42013-07-12 22:26:07 +00001734 llvm::utostr(CodeGenOpts.SSPBufferSize));
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07001735 FuncAttrs.addAttribute("no-signed-zeros-fp-math",
1736 llvm::toStringRef(CodeGenOpts.NoSignedZeros));
Bill Wendlingcab4a092013-07-25 00:32:41 +00001737
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001738 if (CodeGenOpts.StackRealignment)
1739 FuncAttrs.addAttribute("stackrealign");
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07001740 if (CodeGenOpts.Backchain)
1741 FuncAttrs.addAttribute("backchain");
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -07001742
Pirama Arumuga Nainarb6d69932015-07-01 12:25:36 -07001743 // Add target-cpu and target-features attributes to functions. If
1744 // we have a decl for the function and it has a target attribute then
1745 // parse that and add it to the feature set.
1746 StringRef TargetCPU = getTarget().getTargetOpts().CPU;
Pirama Arumuga Nainarb6d69932015-07-01 12:25:36 -07001747 const FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(TargetDecl);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001748 if (FD && FD->hasAttr<TargetAttr>()) {
1749 llvm::StringMap<bool> FeatureMap;
1750 getFunctionFeatureMap(FeatureMap, FD);
Pirama Arumuga Nainarb6d69932015-07-01 12:25:36 -07001751
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001752 // Produce the canonical string for this set of features.
1753 std::vector<std::string> Features;
1754 for (llvm::StringMap<bool>::const_iterator it = FeatureMap.begin(),
1755 ie = FeatureMap.end();
1756 it != ie; ++it)
1757 Features.push_back((it->second ? "+" : "-") + it->first().str());
1758
1759 // Now add the target-cpu and target-features to the function.
1760 // While we populated the feature map above, we still need to
1761 // get and parse the target attribute so we can get the cpu for
1762 // the function.
1763 const auto *TD = FD->getAttr<TargetAttr>();
1764 TargetAttr::ParsedTargetAttr ParsedAttr = TD->parse();
1765 if (ParsedAttr.second != "")
1766 TargetCPU = ParsedAttr.second;
1767 if (TargetCPU != "")
1768 FuncAttrs.addAttribute("target-cpu", TargetCPU);
1769 if (!Features.empty()) {
1770 std::sort(Features.begin(), Features.end());
1771 FuncAttrs.addAttribute(
1772 "target-features",
1773 llvm::join(Features.begin(), Features.end(), ","));
Pirama Arumuga Nainarb6d69932015-07-01 12:25:36 -07001774 }
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001775 } else {
1776 // Otherwise just add the existing target cpu and target features to the
1777 // function.
1778 std::vector<std::string> &Features = getTarget().getTargetOpts().Features;
1779 if (TargetCPU != "")
1780 FuncAttrs.addAttribute("target-cpu", TargetCPU);
1781 if (!Features.empty()) {
1782 std::sort(Features.begin(), Features.end());
1783 FuncAttrs.addAttribute(
1784 "target-features",
1785 llvm::join(Features.begin(), Features.end(), ","));
1786 }
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -07001787 }
Bill Wendlingc0dcc2d2013-02-15 21:30:01 +00001788 }
1789
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07001790 if (getLangOpts().CUDA && getLangOpts().CUDAIsDevice) {
1791 // Conservatively, mark all functions and calls in CUDA as convergent
1792 // (meaning, they may call an intrinsically convergent op, such as
1793 // __syncthreads(), and so can't have certain optimizations applied around
1794 // them). LLVM will remove this attribute where it safely can.
1795 FuncAttrs.addAttribute(llvm::Attribute::Convergent);
1796
1797 // Respect -fcuda-flush-denormals-to-zero.
1798 if (getLangOpts().CUDADeviceFlushDenormalsToZero)
1799 FuncAttrs.addAttribute("nvptx-f32ftz", "true");
1800 }
1801
Stephen Hines176edba2014-12-01 14:53:08 -08001802 ClangToLLVMArgMapping IRFunctionArgs(getContext(), FI);
1803
Daniel Dunbara0a99e02009-02-02 23:43:58 +00001804 QualType RetTy = FI.getReturnType();
Daniel Dunbarb225be42009-02-03 05:59:18 +00001805 const ABIArgInfo &RetAI = FI.getReturnInfo();
Daniel Dunbar45c25ba2008-09-10 04:01:49 +00001806 switch (RetAI.getKind()) {
Anton Korobeynikovcc6fa882009-06-06 09:36:29 +00001807 case ABIArgInfo::Extend:
Jakob Stoklund Olesen5baefa82013-05-29 03:57:23 +00001808 if (RetTy->hasSignedIntegerRepresentation())
1809 RetAttrs.addAttribute(llvm::Attribute::SExt);
1810 else if (RetTy->hasUnsignedIntegerRepresentation())
1811 RetAttrs.addAttribute(llvm::Attribute::ZExt);
Jakob Stoklund Olesen90f9ec02013-06-05 03:00:09 +00001812 // FALL THROUGH
Daniel Dunbar46327aa2009-02-03 06:17:37 +00001813 case ABIArgInfo::Direct:
Jakob Stoklund Olesen90f9ec02013-06-05 03:00:09 +00001814 if (RetAI.getInReg())
1815 RetAttrs.addAttribute(llvm::Attribute::InReg);
1816 break;
Chris Lattner800588f2010-07-29 06:26:06 +00001817 case ABIArgInfo::Ignore:
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001818 break;
1819
Stephen Hines176edba2014-12-01 14:53:08 -08001820 case ABIArgInfo::InAlloca:
Rafael Espindolab48280b2012-07-31 02:44:24 +00001821 case ABIArgInfo::Indirect: {
Stephen Hines176edba2014-12-01 14:53:08 -08001822 // inalloca and sret disable readnone and readonly
Bill Wendling72390b32012-12-20 19:27:06 +00001823 FuncAttrs.removeAttribute(llvm::Attribute::ReadOnly)
1824 .removeAttribute(llvm::Attribute::ReadNone);
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001825 break;
Rafael Espindolab48280b2012-07-31 02:44:24 +00001826 }
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001827
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07001828 case ABIArgInfo::CoerceAndExpand:
1829 break;
1830
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001831 case ABIArgInfo::Expand:
David Blaikieb219cfc2011-09-23 05:06:16 +00001832 llvm_unreachable("Invalid ABI kind for return argument");
Daniel Dunbar5323a4b2008-09-10 00:32:18 +00001833 }
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001834
Stephen Hines176edba2014-12-01 14:53:08 -08001835 if (const auto *RefTy = RetTy->getAs<ReferenceType>()) {
1836 QualType PTy = RefTy->getPointeeType();
1837 if (!PTy->isIncompleteType() && PTy->isConstantSizeType())
1838 RetAttrs.addDereferenceableAttr(getContext().getTypeSizeInChars(PTy)
1839 .getQuantity());
1840 else if (getContext().getTargetAddressSpace(PTy) == 0)
1841 RetAttrs.addAttribute(llvm::Attribute::NonNull);
1842 }
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001843
Stephen Hines176edba2014-12-01 14:53:08 -08001844 // Attach return attributes.
1845 if (RetAttrs.hasAttributes()) {
1846 PAL.push_back(llvm::AttributeSet::get(
1847 getLLVMContext(), llvm::AttributeSet::ReturnIndex, RetAttrs));
1848 }
Anton Korobeynikov1102f422009-04-04 00:49:24 +00001849
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07001850 bool hasUsedSRet = false;
1851
Stephen Hines176edba2014-12-01 14:53:08 -08001852 // Attach attributes to sret.
1853 if (IRFunctionArgs.hasSRetArg()) {
1854 llvm::AttrBuilder SRETAttrs;
1855 SRETAttrs.addAttribute(llvm::Attribute::StructRet);
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07001856 hasUsedSRet = true;
Stephen Hines176edba2014-12-01 14:53:08 -08001857 if (RetAI.getInReg())
1858 SRETAttrs.addAttribute(llvm::Attribute::InReg);
1859 PAL.push_back(llvm::AttributeSet::get(
1860 getLLVMContext(), IRFunctionArgs.getSRetArgNo() + 1, SRETAttrs));
1861 }
1862
1863 // Attach attributes to inalloca argument.
1864 if (IRFunctionArgs.hasInallocaArg()) {
1865 llvm::AttrBuilder Attrs;
1866 Attrs.addAttribute(llvm::Attribute::InAlloca);
1867 PAL.push_back(llvm::AttributeSet::get(
1868 getLLVMContext(), IRFunctionArgs.getInallocaArgNo() + 1, Attrs));
1869 }
1870
Stephen Hines176edba2014-12-01 14:53:08 -08001871 unsigned ArgNo = 0;
1872 for (CGFunctionInfo::const_arg_iterator I = FI.arg_begin(),
1873 E = FI.arg_end();
1874 I != E; ++I, ++ArgNo) {
1875 QualType ParamType = I->type;
1876 const ABIArgInfo &AI = I->info;
Bill Wendling0d583392012-10-15 20:36:26 +00001877 llvm::AttrBuilder Attrs;
Anton Korobeynikov1102f422009-04-04 00:49:24 +00001878
Stephen Hines176edba2014-12-01 14:53:08 -08001879 // Add attribute for padding argument, if necessary.
1880 if (IRFunctionArgs.hasPaddingArg(ArgNo)) {
Bill Wendlingb263bdf2013-01-27 02:46:53 +00001881 if (AI.getPaddingInReg())
Stephen Hines176edba2014-12-01 14:53:08 -08001882 PAL.push_back(llvm::AttributeSet::get(
1883 getLLVMContext(), IRFunctionArgs.getPaddingArgNo(ArgNo) + 1,
1884 llvm::Attribute::InReg));
Rafael Espindolae4aeeaa2012-10-24 01:59:00 +00001885 }
1886
John McCalld8e10d22010-03-27 00:47:27 +00001887 // 'restrict' -> 'noalias' is done in EmitFunctionProlog when we
1888 // have the corresponding parameter variable. It doesn't make
Daniel Dunbar7f6890e2011-02-10 18:10:07 +00001889 // sense to do it here because parameters are so messed up.
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001890 switch (AI.getKind()) {
Chris Lattner800588f2010-07-29 06:26:06 +00001891 case ABIArgInfo::Extend:
Douglas Gregor575a1c92011-05-20 16:38:50 +00001892 if (ParamType->isSignedIntegerOrEnumerationType())
Bill Wendling72390b32012-12-20 19:27:06 +00001893 Attrs.addAttribute(llvm::Attribute::SExt);
Pirama Arumuga Nainarb6d69932015-07-01 12:25:36 -07001894 else if (ParamType->isUnsignedIntegerOrEnumerationType()) {
1895 if (getTypes().getABIInfo().shouldSignExtUnsignedType(ParamType))
1896 Attrs.addAttribute(llvm::Attribute::SExt);
1897 else
1898 Attrs.addAttribute(llvm::Attribute::ZExt);
1899 }
Chris Lattner800588f2010-07-29 06:26:06 +00001900 // FALL THROUGH
Stephen Hines176edba2014-12-01 14:53:08 -08001901 case ABIArgInfo::Direct:
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001902 if (ArgNo == 0 && FI.isChainCall())
1903 Attrs.addAttribute(llvm::Attribute::Nest);
1904 else if (AI.getInReg())
Bill Wendling72390b32012-12-20 19:27:06 +00001905 Attrs.addAttribute(llvm::Attribute::InReg);
Chris Lattner800588f2010-07-29 06:26:06 +00001906 break;
Stephen Hines176edba2014-12-01 14:53:08 -08001907
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001908 case ABIArgInfo::Indirect: {
Rafael Espindola0b4cc952012-10-19 05:04:37 +00001909 if (AI.getInReg())
Bill Wendling72390b32012-12-20 19:27:06 +00001910 Attrs.addAttribute(llvm::Attribute::InReg);
Rafael Espindola0b4cc952012-10-19 05:04:37 +00001911
Anders Carlsson0a8f8472009-09-16 15:53:40 +00001912 if (AI.getIndirectByVal())
Bill Wendling72390b32012-12-20 19:27:06 +00001913 Attrs.addAttribute(llvm::Attribute::ByVal);
Anders Carlsson0a8f8472009-09-16 15:53:40 +00001914
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001915 CharUnits Align = AI.getIndirectAlign();
1916
1917 // In a byval argument, it is important that the required
1918 // alignment of the type is honored, as LLVM might be creating a
1919 // *new* stack object, and needs to know what alignment to give
1920 // it. (Sometimes it can deduce a sensible alignment on its own,
1921 // but not if clang decides it must emit a packed struct, or the
1922 // user specifies increased alignment requirements.)
1923 //
1924 // This is different from indirect *not* byval, where the object
1925 // exists already, and the align attribute is purely
1926 // informative.
1927 assert(!Align.isZero());
1928
1929 // For now, only add this when we have a byval argument.
1930 // TODO: be less lazy about updating test cases.
1931 if (AI.getIndirectByVal())
1932 Attrs.addAlignmentAttr(Align.getQuantity());
Bill Wendling603571a2012-10-10 07:36:56 +00001933
Daniel Dunbar0ac86f02009-03-18 19:51:01 +00001934 // byval disables readnone and readonly.
Bill Wendling72390b32012-12-20 19:27:06 +00001935 FuncAttrs.removeAttribute(llvm::Attribute::ReadOnly)
1936 .removeAttribute(llvm::Attribute::ReadNone);
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001937 break;
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001938 }
Daniel Dunbar11434922009-01-26 21:26:08 +00001939 case ABIArgInfo::Ignore:
Stephen Hines176edba2014-12-01 14:53:08 -08001940 case ABIArgInfo::Expand:
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07001941 case ABIArgInfo::CoerceAndExpand:
1942 break;
Daniel Dunbar11434922009-01-26 21:26:08 +00001943
Stephen Hines651f13c2014-04-23 16:59:28 -07001944 case ABIArgInfo::InAlloca:
1945 // inalloca disables readnone and readonly.
1946 FuncAttrs.removeAttribute(llvm::Attribute::ReadOnly)
1947 .removeAttribute(llvm::Attribute::ReadNone);
Daniel Dunbar56273772008-09-17 00:51:38 +00001948 continue;
1949 }
Stephen Hines176edba2014-12-01 14:53:08 -08001950
1951 if (const auto *RefTy = ParamType->getAs<ReferenceType>()) {
1952 QualType PTy = RefTy->getPointeeType();
1953 if (!PTy->isIncompleteType() && PTy->isConstantSizeType())
1954 Attrs.addDereferenceableAttr(getContext().getTypeSizeInChars(PTy)
1955 .getQuantity());
1956 else if (getContext().getTargetAddressSpace(PTy) == 0)
1957 Attrs.addAttribute(llvm::Attribute::NonNull);
Daniel Dunbar5323a4b2008-09-10 00:32:18 +00001958 }
Mike Stump1eb44332009-09-09 15:08:12 +00001959
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07001960 switch (FI.getExtParameterInfo(ArgNo).getABI()) {
1961 case ParameterABI::Ordinary:
1962 break;
1963
1964 case ParameterABI::SwiftIndirectResult: {
1965 // Add 'sret' if we haven't already used it for something, but
1966 // only if the result is void.
1967 if (!hasUsedSRet && RetTy->isVoidType()) {
1968 Attrs.addAttribute(llvm::Attribute::StructRet);
1969 hasUsedSRet = true;
1970 }
1971
1972 // Add 'noalias' in either case.
1973 Attrs.addAttribute(llvm::Attribute::NoAlias);
1974
1975 // Add 'dereferenceable' and 'alignment'.
1976 auto PTy = ParamType->getPointeeType();
1977 if (!PTy->isIncompleteType() && PTy->isConstantSizeType()) {
1978 auto info = getContext().getTypeInfoInChars(PTy);
1979 Attrs.addDereferenceableAttr(info.first.getQuantity());
1980 Attrs.addAttribute(llvm::Attribute::getWithAlignment(getLLVMContext(),
1981 info.second.getQuantity()));
1982 }
1983 break;
1984 }
1985
1986 case ParameterABI::SwiftErrorResult:
1987 Attrs.addAttribute(llvm::Attribute::SwiftError);
1988 break;
1989
1990 case ParameterABI::SwiftContext:
1991 Attrs.addAttribute(llvm::Attribute::SwiftSelf);
1992 break;
1993 }
1994
Stephen Hines176edba2014-12-01 14:53:08 -08001995 if (Attrs.hasAttributes()) {
1996 unsigned FirstIRArg, NumIRArgs;
1997 std::tie(FirstIRArg, NumIRArgs) = IRFunctionArgs.getIRArgs(ArgNo);
1998 for (unsigned i = 0; i < NumIRArgs; i++)
1999 PAL.push_back(llvm::AttributeSet::get(getLLVMContext(),
2000 FirstIRArg + i + 1, Attrs));
2001 }
Daniel Dunbar5323a4b2008-09-10 00:32:18 +00002002 }
Stephen Hines176edba2014-12-01 14:53:08 -08002003 assert(ArgNo == FI.arg_size());
Stephen Hines651f13c2014-04-23 16:59:28 -07002004
Bill Wendling603571a2012-10-10 07:36:56 +00002005 if (FuncAttrs.hasAttributes())
Bill Wendling75d37b42012-10-15 07:31:59 +00002006 PAL.push_back(llvm::
Bill Wendlingb263bdf2013-01-27 02:46:53 +00002007 AttributeSet::get(getLLVMContext(),
2008 llvm::AttributeSet::FunctionIndex,
2009 FuncAttrs));
Daniel Dunbar5323a4b2008-09-10 00:32:18 +00002010}
2011
John McCalld26bc762011-03-09 04:27:21 +00002012/// An argument came in as a promoted argument; demote it back to its
2013/// declared type.
2014static llvm::Value *emitArgumentDemotion(CodeGenFunction &CGF,
2015 const VarDecl *var,
2016 llvm::Value *value) {
Chris Lattner2acc6e32011-07-18 04:24:23 +00002017 llvm::Type *varType = CGF.ConvertType(var->getType());
John McCalld26bc762011-03-09 04:27:21 +00002018
2019 // This can happen with promotions that actually don't change the
2020 // underlying type, like the enum promotions.
2021 if (value->getType() == varType) return value;
2022
2023 assert((varType->isIntegerTy() || varType->isFloatingPointTy())
2024 && "unexpected promotion type");
2025
2026 if (isa<llvm::IntegerType>(varType))
2027 return CGF.Builder.CreateTrunc(value, varType, "arg.unpromote");
2028
2029 return CGF.Builder.CreateFPCast(value, varType, "arg.unpromote");
2030}
2031
Stephen Hines176edba2014-12-01 14:53:08 -08002032/// Returns the attribute (either parameter attribute, or function
2033/// attribute), which declares argument ArgNo to be non-null.
2034static const NonNullAttr *getNonNullAttr(const Decl *FD, const ParmVarDecl *PVD,
2035 QualType ArgType, unsigned ArgNo) {
2036 // FIXME: __attribute__((nonnull)) can also be applied to:
2037 // - references to pointers, where the pointee is known to be
2038 // nonnull (apparently a Clang extension)
2039 // - transparent unions containing pointers
2040 // In the former case, LLVM IR cannot represent the constraint. In
2041 // the latter case, we have no guarantee that the transparent union
2042 // is in fact passed as a pointer.
2043 if (!ArgType->isAnyPointerType() && !ArgType->isBlockPointerType())
2044 return nullptr;
2045 // First, check attribute on parameter itself.
2046 if (PVD) {
2047 if (auto ParmNNAttr = PVD->getAttr<NonNullAttr>())
2048 return ParmNNAttr;
2049 }
2050 // Check function attributes.
2051 if (!FD)
2052 return nullptr;
2053 for (const auto *NNAttr : FD->specific_attrs<NonNullAttr>()) {
2054 if (NNAttr->isNonNull(ArgNo))
2055 return NNAttr;
2056 }
2057 return nullptr;
2058}
2059
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07002060namespace {
2061 struct CopyBackSwiftError final : EHScopeStack::Cleanup {
2062 Address Temp;
2063 Address Arg;
2064 CopyBackSwiftError(Address temp, Address arg) : Temp(temp), Arg(arg) {}
2065 void Emit(CodeGenFunction &CGF, Flags flags) override {
2066 llvm::Value *errorValue = CGF.Builder.CreateLoad(Temp);
2067 CGF.Builder.CreateStore(errorValue, Arg);
2068 }
2069 };
2070}
2071
Daniel Dunbar88b53962009-02-02 22:03:45 +00002072void CodeGenFunction::EmitFunctionProlog(const CGFunctionInfo &FI,
2073 llvm::Function *Fn,
Daniel Dunbar17b708d2008-09-09 23:27:19 +00002074 const FunctionArgList &Args) {
Stephen Hines176edba2014-12-01 14:53:08 -08002075 if (CurCodeDecl && CurCodeDecl->hasAttr<NakedAttr>())
2076 // Naked functions don't have prologues.
2077 return;
2078
John McCall0cfeb632009-07-28 01:00:58 +00002079 // If this is an implicit-return-zero function, go ahead and
2080 // initialize the return value. TODO: it might be nice to have
2081 // a more general mechanism for this that didn't require synthesized
2082 // return statements.
John McCallf5ebf9b2013-05-03 07:33:41 +00002083 if (const FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(CurCodeDecl)) {
John McCall0cfeb632009-07-28 01:00:58 +00002084 if (FD->hasImplicitReturnZero()) {
Stephen Hines651f13c2014-04-23 16:59:28 -07002085 QualType RetTy = FD->getReturnType().getUnqualifiedType();
Chris Lattner2acc6e32011-07-18 04:24:23 +00002086 llvm::Type* LLVMTy = CGM.getTypes().ConvertType(RetTy);
Owen Andersonc9c88b42009-07-31 20:28:54 +00002087 llvm::Constant* Zero = llvm::Constant::getNullValue(LLVMTy);
John McCall0cfeb632009-07-28 01:00:58 +00002088 Builder.CreateStore(Zero, ReturnValue);
2089 }
2090 }
2091
Mike Stumpf5408fe2009-05-16 07:57:57 +00002092 // FIXME: We no longer need the types from FunctionArgList; lift up and
2093 // simplify.
Daniel Dunbar5251afa2009-02-03 06:02:10 +00002094
Stephen Hines176edba2014-12-01 14:53:08 -08002095 ClangToLLVMArgMapping IRFunctionArgs(CGM.getContext(), FI);
2096 // Flattened function arguments.
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07002097 SmallVector<llvm::Value *, 16> FnArgs;
Stephen Hines176edba2014-12-01 14:53:08 -08002098 FnArgs.reserve(IRFunctionArgs.totalIRArgs());
2099 for (auto &Arg : Fn->args()) {
2100 FnArgs.push_back(&Arg);
2101 }
2102 assert(FnArgs.size() == IRFunctionArgs.totalIRArgs());
Mike Stump1eb44332009-09-09 15:08:12 +00002103
Stephen Hines651f13c2014-04-23 16:59:28 -07002104 // If we're using inalloca, all the memory arguments are GEPs off of the last
2105 // parameter, which is a pointer to the complete memory area.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002106 Address ArgStruct = Address::invalid();
2107 const llvm::StructLayout *ArgStructLayout = nullptr;
Stephen Hines176edba2014-12-01 14:53:08 -08002108 if (IRFunctionArgs.hasInallocaArg()) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002109 ArgStructLayout = CGM.getDataLayout().getStructLayout(FI.getArgStruct());
2110 ArgStruct = Address(FnArgs[IRFunctionArgs.getInallocaArgNo()],
2111 FI.getArgStructAlignment());
2112
2113 assert(ArgStruct.getType() == FI.getArgStruct()->getPointerTo());
Stephen Hines651f13c2014-04-23 16:59:28 -07002114 }
2115
Stephen Hines176edba2014-12-01 14:53:08 -08002116 // Name the struct return parameter.
2117 if (IRFunctionArgs.hasSRetArg()) {
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07002118 auto AI = cast<llvm::Argument>(FnArgs[IRFunctionArgs.getSRetArgNo()]);
Daniel Dunbar17b708d2008-09-09 23:27:19 +00002119 AI->setName("agg.result");
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002120 AI->addAttr(llvm::AttributeSet::get(getLLVMContext(), AI->getArgNo() + 1,
Bill Wendling89530e42013-01-23 06:15:10 +00002121 llvm::Attribute::NoAlias));
Daniel Dunbar17b708d2008-09-09 23:27:19 +00002122 }
Mike Stump1eb44332009-09-09 15:08:12 +00002123
Stephen Hines651f13c2014-04-23 16:59:28 -07002124 // Track if we received the parameter as a pointer (indirect, byval, or
2125 // inalloca). If already have a pointer, EmitParmDecl doesn't need to copy it
2126 // into a local alloca for us.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002127 SmallVector<ParamValue, 16> ArgVals;
Stephen Hines651f13c2014-04-23 16:59:28 -07002128 ArgVals.reserve(Args.size());
2129
2130 // Create a pointer value for every parameter declaration. This usually
2131 // entails copying one or more LLVM IR arguments into an alloca. Don't push
2132 // any cleanups or do anything that might unwind. We do that separately, so
2133 // we can push the cleanups in the correct order for the ABI.
Daniel Dunbar4b5f0a42009-02-04 21:17:21 +00002134 assert(FI.arg_size() == Args.size() &&
2135 "Mismatch between function signature & arguments.");
Stephen Hines176edba2014-12-01 14:53:08 -08002136 unsigned ArgNo = 0;
Daniel Dunbarb225be42009-02-03 05:59:18 +00002137 CGFunctionInfo::const_arg_iterator info_it = FI.arg_begin();
Stephen Hines176edba2014-12-01 14:53:08 -08002138 for (FunctionArgList::const_iterator i = Args.begin(), e = Args.end();
Devang Patel093ac462011-03-03 20:13:15 +00002139 i != e; ++i, ++info_it, ++ArgNo) {
John McCalld26bc762011-03-09 04:27:21 +00002140 const VarDecl *Arg = *i;
Daniel Dunbarb225be42009-02-03 05:59:18 +00002141 QualType Ty = info_it->type;
2142 const ABIArgInfo &ArgI = info_it->info;
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00002143
John McCalld26bc762011-03-09 04:27:21 +00002144 bool isPromoted =
2145 isa<ParmVarDecl>(Arg) && cast<ParmVarDecl>(Arg)->isKNRPromoted();
2146
Stephen Hines176edba2014-12-01 14:53:08 -08002147 unsigned FirstIRArg, NumIRArgs;
2148 std::tie(FirstIRArg, NumIRArgs) = IRFunctionArgs.getIRArgs(ArgNo);
Rafael Espindolae4aeeaa2012-10-24 01:59:00 +00002149
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00002150 switch (ArgI.getKind()) {
Stephen Hines651f13c2014-04-23 16:59:28 -07002151 case ABIArgInfo::InAlloca: {
Stephen Hines176edba2014-12-01 14:53:08 -08002152 assert(NumIRArgs == 0);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002153 auto FieldIndex = ArgI.getInAllocaFieldIndex();
2154 CharUnits FieldOffset =
2155 CharUnits::fromQuantity(ArgStructLayout->getElementOffset(FieldIndex));
2156 Address V = Builder.CreateStructGEP(ArgStruct, FieldIndex, FieldOffset,
2157 Arg->getName());
2158 ArgVals.push_back(ParamValue::forIndirect(V));
Stephen Hines176edba2014-12-01 14:53:08 -08002159 break;
Stephen Hines651f13c2014-04-23 16:59:28 -07002160 }
2161
Daniel Dunbar1f745982009-02-05 09:16:39 +00002162 case ABIArgInfo::Indirect: {
Stephen Hines176edba2014-12-01 14:53:08 -08002163 assert(NumIRArgs == 1);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002164 Address ParamAddr = Address(FnArgs[FirstIRArg], ArgI.getIndirectAlign());
Daniel Dunbarcf3b6f22010-09-16 20:42:02 +00002165
John McCall9d232c82013-03-07 21:37:08 +00002166 if (!hasScalarEvaluationKind(Ty)) {
Daniel Dunbarcf3b6f22010-09-16 20:42:02 +00002167 // Aggregates and complex variables are accessed by reference. All we
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002168 // need to do is realign the value, if requested.
2169 Address V = ParamAddr;
Daniel Dunbarcf3b6f22010-09-16 20:42:02 +00002170 if (ArgI.getIndirectRealign()) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002171 Address AlignedTemp = CreateMemTemp(Ty, "coerce");
Daniel Dunbarcf3b6f22010-09-16 20:42:02 +00002172
2173 // Copy from the incoming argument pointer to the temporary with the
2174 // appropriate alignment.
2175 //
2176 // FIXME: We should have a common utility for generating an aggregate
2177 // copy.
Ken Dyckfe710082011-01-19 01:58:38 +00002178 CharUnits Size = getContext().getTypeSizeInChars(Ty);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002179 auto SizeVal = llvm::ConstantInt::get(IntPtrTy, Size.getQuantity());
2180 Address Dst = Builder.CreateBitCast(AlignedTemp, Int8PtrTy);
2181 Address Src = Builder.CreateBitCast(ParamAddr, Int8PtrTy);
2182 Builder.CreateMemCpy(Dst, Src, SizeVal, false);
Daniel Dunbarcf3b6f22010-09-16 20:42:02 +00002183 V = AlignedTemp;
2184 }
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002185 ArgVals.push_back(ParamValue::forIndirect(V));
Daniel Dunbar1f745982009-02-05 09:16:39 +00002186 } else {
2187 // Load scalar value from indirect argument.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002188 llvm::Value *V =
2189 EmitLoadOfScalar(ParamAddr, false, Ty, Arg->getLocStart());
John McCalld26bc762011-03-09 04:27:21 +00002190
2191 if (isPromoted)
2192 V = emitArgumentDemotion(*this, Arg, V);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002193 ArgVals.push_back(ParamValue::forDirect(V));
Daniel Dunbar1f745982009-02-05 09:16:39 +00002194 }
Daniel Dunbar1f745982009-02-05 09:16:39 +00002195 break;
2196 }
Anton Korobeynikovcc6fa882009-06-06 09:36:29 +00002197
2198 case ABIArgInfo::Extend:
Daniel Dunbar46327aa2009-02-03 06:17:37 +00002199 case ABIArgInfo::Direct: {
Akira Hatanaka4ba3fd42012-01-09 19:08:06 +00002200
Chris Lattner800588f2010-07-29 06:26:06 +00002201 // If we have the trivial case, handle it with no muss and fuss.
2202 if (!isa<llvm::StructType>(ArgI.getCoerceToType()) &&
Chris Lattner117e3f42010-07-30 04:02:24 +00002203 ArgI.getCoerceToType() == ConvertType(Ty) &&
2204 ArgI.getDirectOffset() == 0) {
Stephen Hines176edba2014-12-01 14:53:08 -08002205 assert(NumIRArgs == 1);
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07002206 llvm::Value *V = FnArgs[FirstIRArg];
2207 auto AI = cast<llvm::Argument>(V);
Michael J. Spencer9cac4942010-10-19 06:39:39 +00002208
Stephen Hines176edba2014-12-01 14:53:08 -08002209 if (const ParmVarDecl *PVD = dyn_cast<ParmVarDecl>(Arg)) {
2210 if (getNonNullAttr(CurCodeDecl, PVD, PVD->getType(),
2211 PVD->getFunctionScopeIndex()))
2212 AI->addAttr(llvm::AttributeSet::get(getLLVMContext(),
2213 AI->getArgNo() + 1,
2214 llvm::Attribute::NonNull));
2215
2216 QualType OTy = PVD->getOriginalType();
2217 if (const auto *ArrTy =
2218 getContext().getAsConstantArrayType(OTy)) {
2219 // A C99 array parameter declaration with the static keyword also
2220 // indicates dereferenceability, and if the size is constant we can
2221 // use the dereferenceable attribute (which requires the size in
2222 // bytes).
2223 if (ArrTy->getSizeModifier() == ArrayType::Static) {
2224 QualType ETy = ArrTy->getElementType();
2225 uint64_t ArrSize = ArrTy->getSize().getZExtValue();
2226 if (!ETy->isIncompleteType() && ETy->isConstantSizeType() &&
2227 ArrSize) {
2228 llvm::AttrBuilder Attrs;
2229 Attrs.addDereferenceableAttr(
2230 getContext().getTypeSizeInChars(ETy).getQuantity()*ArrSize);
2231 AI->addAttr(llvm::AttributeSet::get(getLLVMContext(),
2232 AI->getArgNo() + 1, Attrs));
2233 } else if (getContext().getTargetAddressSpace(ETy) == 0) {
2234 AI->addAttr(llvm::AttributeSet::get(getLLVMContext(),
2235 AI->getArgNo() + 1,
2236 llvm::Attribute::NonNull));
2237 }
2238 }
2239 } else if (const auto *ArrTy =
2240 getContext().getAsVariableArrayType(OTy)) {
2241 // For C99 VLAs with the static keyword, we don't know the size so
2242 // we can't use the dereferenceable attribute, but in addrspace(0)
2243 // we know that it must be nonnull.
2244 if (ArrTy->getSizeModifier() == VariableArrayType::Static &&
2245 !getContext().getTargetAddressSpace(ArrTy->getElementType()))
2246 AI->addAttr(llvm::AttributeSet::get(getLLVMContext(),
2247 AI->getArgNo() + 1,
2248 llvm::Attribute::NonNull));
2249 }
2250
2251 const auto *AVAttr = PVD->getAttr<AlignValueAttr>();
2252 if (!AVAttr)
2253 if (const auto *TOTy = dyn_cast<TypedefType>(OTy))
2254 AVAttr = TOTy->getDecl()->getAttr<AlignValueAttr>();
2255 if (AVAttr) {
2256 llvm::Value *AlignmentValue =
2257 EmitScalarExpr(AVAttr->getAlignment());
2258 llvm::ConstantInt *AlignmentCI =
2259 cast<llvm::ConstantInt>(AlignmentValue);
2260 unsigned Alignment =
2261 std::min((unsigned) AlignmentCI->getZExtValue(),
2262 +llvm::Value::MaximumAlignment);
2263
2264 llvm::AttrBuilder Attrs;
2265 Attrs.addAlignmentAttr(Alignment);
2266 AI->addAttr(llvm::AttributeSet::get(getLLVMContext(),
2267 AI->getArgNo() + 1, Attrs));
2268 }
2269 }
2270
Bill Wendlinga6375562012-10-16 05:23:44 +00002271 if (Arg->getType().isRestrictQualified())
Bill Wendling89530e42013-01-23 06:15:10 +00002272 AI->addAttr(llvm::AttributeSet::get(getLLVMContext(),
2273 AI->getArgNo() + 1,
2274 llvm::Attribute::NoAlias));
John McCalld8e10d22010-03-27 00:47:27 +00002275
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07002276 // LLVM expects swifterror parameters to be used in very restricted
2277 // ways. Copy the value into a less-restricted temporary.
2278 if (FI.getExtParameterInfo(ArgNo).getABI()
2279 == ParameterABI::SwiftErrorResult) {
2280 QualType pointeeTy = Ty->getPointeeType();
2281 assert(pointeeTy->isPointerType());
2282 Address temp =
2283 CreateMemTemp(pointeeTy, getPointerAlign(), "swifterror.temp");
2284 Address arg = Address(V, getContext().getTypeAlignInChars(pointeeTy));
2285 llvm::Value *incomingErrorValue = Builder.CreateLoad(arg);
2286 Builder.CreateStore(incomingErrorValue, temp);
2287 V = temp.getPointer();
2288
2289 // Push a cleanup to copy the value back at the end of the function.
2290 // The convention does not guarantee that the value will be written
2291 // back if the function exits with an unwind exception.
2292 EHStack.pushCleanup<CopyBackSwiftError>(NormalCleanup, temp, arg);
2293 }
2294
Chris Lattnerb13eab92011-07-20 06:29:00 +00002295 // Ensure the argument is the correct type.
2296 if (V->getType() != ArgI.getCoerceToType())
2297 V = Builder.CreateBitCast(V, ArgI.getCoerceToType());
2298
John McCalld26bc762011-03-09 04:27:21 +00002299 if (isPromoted)
2300 V = emitArgumentDemotion(*this, Arg, V);
Rafael Espindola8b8a09e2012-11-29 16:09:03 +00002301
Nick Lewycky5d4a7552013-10-01 21:51:38 +00002302 if (const CXXMethodDecl *MD =
2303 dyn_cast_or_null<CXXMethodDecl>(CurCodeDecl)) {
Timur Iskhodzhanov8f189a92013-08-21 06:25:03 +00002304 if (MD->isVirtual() && Arg == CXXABIThisDecl)
Nick Lewycky5d4a7552013-10-01 21:51:38 +00002305 V = CGM.getCXXABI().
2306 adjustThisParameterInVirtualFunctionPrologue(*this, CurGD, V);
Timur Iskhodzhanov8f189a92013-08-21 06:25:03 +00002307 }
2308
Rafael Espindola8b8a09e2012-11-29 16:09:03 +00002309 // Because of merging of function types from multiple decls it is
2310 // possible for the type of an argument to not match the corresponding
2311 // type in the function type. Since we are codegening the callee
2312 // in here, add a cast to the argument type.
2313 llvm::Type *LTy = ConvertType(Arg->getType());
2314 if (V->getType() != LTy)
2315 V = Builder.CreateBitCast(V, LTy);
2316
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002317 ArgVals.push_back(ParamValue::forDirect(V));
Chris Lattner800588f2010-07-29 06:26:06 +00002318 break;
Daniel Dunbar8b979d92009-02-10 00:06:49 +00002319 }
Mike Stump1eb44332009-09-09 15:08:12 +00002320
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002321 Address Alloca = CreateMemTemp(Ty, getContext().getDeclAlign(Arg),
2322 Arg->getName());
Michael J. Spencer9cac4942010-10-19 06:39:39 +00002323
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002324 // Pointer to store into.
2325 Address Ptr = emitAddressAtOffset(*this, Alloca, ArgI);
Michael J. Spencer9cac4942010-10-19 06:39:39 +00002326
Stephen Hines176edba2014-12-01 14:53:08 -08002327 // Fast-isel and the optimizer generally like scalar values better than
2328 // FCAs, so we flatten them if this is safe to do for this argument.
Evgeniy Stepanova6ce20e2012-02-10 09:30:15 +00002329 llvm::StructType *STy = dyn_cast<llvm::StructType>(ArgI.getCoerceToType());
Stephen Hines176edba2014-12-01 14:53:08 -08002330 if (ArgI.isDirect() && ArgI.getCanBeFlattened() && STy &&
2331 STy->getNumElements() > 1) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002332 auto SrcLayout = CGM.getDataLayout().getStructLayout(STy);
Micah Villmow25a6a842012-10-08 16:25:52 +00002333 uint64_t SrcSize = CGM.getDataLayout().getTypeAllocSize(STy);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002334 llvm::Type *DstTy = Ptr.getElementType();
Micah Villmow25a6a842012-10-08 16:25:52 +00002335 uint64_t DstSize = CGM.getDataLayout().getTypeAllocSize(DstTy);
Michael J. Spencer9cac4942010-10-19 06:39:39 +00002336
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002337 Address AddrToStoreInto = Address::invalid();
Evgeniy Stepanova6ce20e2012-02-10 09:30:15 +00002338 if (SrcSize <= DstSize) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002339 AddrToStoreInto =
2340 Builder.CreateBitCast(Ptr, llvm::PointerType::getUnqual(STy));
Evgeniy Stepanova6ce20e2012-02-10 09:30:15 +00002341 } else {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002342 AddrToStoreInto =
2343 CreateTempAlloca(STy, Alloca.getAlignment(), "coerce");
Chris Lattner309c59f2010-06-29 00:06:42 +00002344 }
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002345
2346 assert(STy->getNumElements() == NumIRArgs);
2347 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
2348 auto AI = FnArgs[FirstIRArg + i];
2349 AI->setName(Arg->getName() + ".coerce" + Twine(i));
2350 auto Offset = CharUnits::fromQuantity(SrcLayout->getElementOffset(i));
2351 Address EltPtr =
2352 Builder.CreateStructGEP(AddrToStoreInto, i, Offset);
2353 Builder.CreateStore(AI, EltPtr);
2354 }
2355
2356 if (SrcSize > DstSize) {
2357 Builder.CreateMemCpy(Ptr, AddrToStoreInto, DstSize);
2358 }
2359
Chris Lattner309c59f2010-06-29 00:06:42 +00002360 } else {
2361 // Simple case, just do a coerced store of the argument into the alloca.
Stephen Hines176edba2014-12-01 14:53:08 -08002362 assert(NumIRArgs == 1);
2363 auto AI = FnArgs[FirstIRArg];
Chris Lattner225e2862010-06-29 00:14:52 +00002364 AI->setName(Arg->getName() + ".coerce");
Stephen Hines176edba2014-12-01 14:53:08 -08002365 CreateCoercedStore(AI, Ptr, /*DestIsVolatile=*/false, *this);
Chris Lattner309c59f2010-06-29 00:06:42 +00002366 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +00002367
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +00002368 // Match to what EmitParmDecl is expecting for this type.
John McCall9d232c82013-03-07 21:37:08 +00002369 if (CodeGenFunction::hasScalarEvaluationKind(Ty)) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002370 llvm::Value *V =
2371 EmitLoadOfScalar(Alloca, false, Ty, Arg->getLocStart());
John McCalld26bc762011-03-09 04:27:21 +00002372 if (isPromoted)
2373 V = emitArgumentDemotion(*this, Arg, V);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002374 ArgVals.push_back(ParamValue::forDirect(V));
Stephen Hines651f13c2014-04-23 16:59:28 -07002375 } else {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002376 ArgVals.push_back(ParamValue::forIndirect(Alloca));
Daniel Dunbar8b29a382009-02-04 07:22:24 +00002377 }
Stephen Hines176edba2014-12-01 14:53:08 -08002378 break;
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +00002379 }
Chris Lattner800588f2010-07-29 06:26:06 +00002380
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07002381 case ABIArgInfo::CoerceAndExpand: {
2382 // Reconstruct into a temporary.
2383 Address alloca = CreateMemTemp(Ty, getContext().getDeclAlign(Arg));
2384 ArgVals.push_back(ParamValue::forIndirect(alloca));
2385
2386 auto coercionType = ArgI.getCoerceAndExpandType();
2387 alloca = Builder.CreateElementBitCast(alloca, coercionType);
2388 auto layout = CGM.getDataLayout().getStructLayout(coercionType);
2389
2390 unsigned argIndex = FirstIRArg;
2391 for (unsigned i = 0, e = coercionType->getNumElements(); i != e; ++i) {
2392 llvm::Type *eltType = coercionType->getElementType(i);
2393 if (ABIArgInfo::isPaddingForCoerceAndExpand(eltType))
2394 continue;
2395
2396 auto eltAddr = Builder.CreateStructGEP(alloca, i, layout);
2397 auto elt = FnArgs[argIndex++];
2398 Builder.CreateStore(elt, eltAddr);
2399 }
2400 assert(argIndex == FirstIRArg + NumIRArgs);
2401 break;
2402 }
2403
Chris Lattner800588f2010-07-29 06:26:06 +00002404 case ABIArgInfo::Expand: {
2405 // If this structure was expanded into multiple arguments then
2406 // we need to create a temporary and reconstruct it from the
2407 // arguments.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002408 Address Alloca = CreateMemTemp(Ty, getContext().getDeclAlign(Arg));
2409 LValue LV = MakeAddrLValue(Alloca, Ty);
2410 ArgVals.push_back(ParamValue::forIndirect(Alloca));
Chris Lattner800588f2010-07-29 06:26:06 +00002411
Stephen Hines176edba2014-12-01 14:53:08 -08002412 auto FnArgIter = FnArgs.begin() + FirstIRArg;
2413 ExpandTypeFromArgs(Ty, LV, FnArgIter);
2414 assert(FnArgIter == FnArgs.begin() + FirstIRArg + NumIRArgs);
2415 for (unsigned i = 0, e = NumIRArgs; i != e; ++i) {
2416 auto AI = FnArgs[FirstIRArg + i];
2417 AI->setName(Arg->getName() + "." + Twine(i));
2418 }
2419 break;
Chris Lattner800588f2010-07-29 06:26:06 +00002420 }
2421
2422 case ABIArgInfo::Ignore:
Stephen Hines176edba2014-12-01 14:53:08 -08002423 assert(NumIRArgs == 0);
Chris Lattner800588f2010-07-29 06:26:06 +00002424 // Initialize the local variable appropriately.
Stephen Hines651f13c2014-04-23 16:59:28 -07002425 if (!hasScalarEvaluationKind(Ty)) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002426 ArgVals.push_back(ParamValue::forIndirect(CreateMemTemp(Ty)));
Stephen Hines651f13c2014-04-23 16:59:28 -07002427 } else {
2428 llvm::Value *U = llvm::UndefValue::get(ConvertType(Arg->getType()));
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002429 ArgVals.push_back(ParamValue::forDirect(U));
Stephen Hines651f13c2014-04-23 16:59:28 -07002430 }
Stephen Hines176edba2014-12-01 14:53:08 -08002431 break;
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00002432 }
Daniel Dunbar17b708d2008-09-09 23:27:19 +00002433 }
Stephen Hines651f13c2014-04-23 16:59:28 -07002434
Stephen Hines651f13c2014-04-23 16:59:28 -07002435 if (getTarget().getCXXABI().areArgsDestroyedLeftToRightInCallee()) {
2436 for (int I = Args.size() - 1; I >= 0; --I)
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002437 EmitParmDecl(*Args[I], ArgVals[I], I + 1);
Stephen Hines651f13c2014-04-23 16:59:28 -07002438 } else {
2439 for (unsigned I = 0, E = Args.size(); I != E; ++I)
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002440 EmitParmDecl(*Args[I], ArgVals[I], I + 1);
Stephen Hines651f13c2014-04-23 16:59:28 -07002441 }
Daniel Dunbar17b708d2008-09-09 23:27:19 +00002442}
2443
John McCall77fe6cd2012-01-29 07:46:59 +00002444static void eraseUnusedBitCasts(llvm::Instruction *insn) {
2445 while (insn->use_empty()) {
2446 llvm::BitCastInst *bitcast = dyn_cast<llvm::BitCastInst>(insn);
2447 if (!bitcast) return;
2448
2449 // This is "safe" because we would have used a ConstantExpr otherwise.
2450 insn = cast<llvm::Instruction>(bitcast->getOperand(0));
2451 bitcast->eraseFromParent();
2452 }
2453}
2454
John McCallf85e1932011-06-15 23:02:42 +00002455/// Try to emit a fused autorelease of a return result.
2456static llvm::Value *tryEmitFusedAutoreleaseOfResult(CodeGenFunction &CGF,
2457 llvm::Value *result) {
2458 // We must be immediately followed the cast.
2459 llvm::BasicBlock *BB = CGF.Builder.GetInsertBlock();
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002460 if (BB->empty()) return nullptr;
2461 if (&BB->back() != result) return nullptr;
John McCallf85e1932011-06-15 23:02:42 +00002462
Chris Lattner2acc6e32011-07-18 04:24:23 +00002463 llvm::Type *resultType = result->getType();
John McCallf85e1932011-06-15 23:02:42 +00002464
2465 // result is in a BasicBlock and is therefore an Instruction.
2466 llvm::Instruction *generator = cast<llvm::Instruction>(result);
2467
Chris Lattner5f9e2722011-07-23 10:55:15 +00002468 SmallVector<llvm::Instruction*,4> insnsToKill;
John McCallf85e1932011-06-15 23:02:42 +00002469
2470 // Look for:
2471 // %generator = bitcast %type1* %generator2 to %type2*
2472 while (llvm::BitCastInst *bitcast = dyn_cast<llvm::BitCastInst>(generator)) {
2473 // We would have emitted this as a constant if the operand weren't
2474 // an Instruction.
2475 generator = cast<llvm::Instruction>(bitcast->getOperand(0));
2476
2477 // Require the generator to be immediately followed by the cast.
2478 if (generator->getNextNode() != bitcast)
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002479 return nullptr;
John McCallf85e1932011-06-15 23:02:42 +00002480
2481 insnsToKill.push_back(bitcast);
2482 }
2483
2484 // Look for:
2485 // %generator = call i8* @objc_retain(i8* %originalResult)
2486 // or
2487 // %generator = call i8* @objc_retainAutoreleasedReturnValue(i8* %originalResult)
2488 llvm::CallInst *call = dyn_cast<llvm::CallInst>(generator);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002489 if (!call) return nullptr;
John McCallf85e1932011-06-15 23:02:42 +00002490
2491 bool doRetainAutorelease;
2492
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002493 if (call->getCalledValue() == CGF.CGM.getObjCEntrypoints().objc_retain) {
John McCallf85e1932011-06-15 23:02:42 +00002494 doRetainAutorelease = true;
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002495 } else if (call->getCalledValue() == CGF.CGM.getObjCEntrypoints()
John McCallf85e1932011-06-15 23:02:42 +00002496 .objc_retainAutoreleasedReturnValue) {
2497 doRetainAutorelease = false;
2498
John McCallf9fdcc02012-09-07 23:30:50 +00002499 // If we emitted an assembly marker for this call (and the
2500 // ARCEntrypoints field should have been set if so), go looking
2501 // for that call. If we can't find it, we can't do this
2502 // optimization. But it should always be the immediately previous
2503 // instruction, unless we needed bitcasts around the call.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002504 if (CGF.CGM.getObjCEntrypoints().retainAutoreleasedReturnValueMarker) {
John McCallf9fdcc02012-09-07 23:30:50 +00002505 llvm::Instruction *prev = call->getPrevNode();
2506 assert(prev);
2507 if (isa<llvm::BitCastInst>(prev)) {
2508 prev = prev->getPrevNode();
2509 assert(prev);
2510 }
2511 assert(isa<llvm::CallInst>(prev));
2512 assert(cast<llvm::CallInst>(prev)->getCalledValue() ==
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002513 CGF.CGM.getObjCEntrypoints().retainAutoreleasedReturnValueMarker);
John McCallf9fdcc02012-09-07 23:30:50 +00002514 insnsToKill.push_back(prev);
2515 }
John McCallf85e1932011-06-15 23:02:42 +00002516 } else {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002517 return nullptr;
John McCallf85e1932011-06-15 23:02:42 +00002518 }
2519
2520 result = call->getArgOperand(0);
2521 insnsToKill.push_back(call);
2522
2523 // Keep killing bitcasts, for sanity. Note that we no longer care
2524 // about precise ordering as long as there's exactly one use.
2525 while (llvm::BitCastInst *bitcast = dyn_cast<llvm::BitCastInst>(result)) {
2526 if (!bitcast->hasOneUse()) break;
2527 insnsToKill.push_back(bitcast);
2528 result = bitcast->getOperand(0);
2529 }
2530
2531 // Delete all the unnecessary instructions, from latest to earliest.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002532 for (SmallVectorImpl<llvm::Instruction*>::iterator
John McCallf85e1932011-06-15 23:02:42 +00002533 i = insnsToKill.begin(), e = insnsToKill.end(); i != e; ++i)
2534 (*i)->eraseFromParent();
2535
2536 // Do the fused retain/autorelease if we were asked to.
2537 if (doRetainAutorelease)
2538 result = CGF.EmitARCRetainAutoreleaseReturnValue(result);
2539
2540 // Cast back to the result type.
2541 return CGF.Builder.CreateBitCast(result, resultType);
2542}
2543
John McCall77fe6cd2012-01-29 07:46:59 +00002544/// If this is a +1 of the value of an immutable 'self', remove it.
2545static llvm::Value *tryRemoveRetainOfSelf(CodeGenFunction &CGF,
2546 llvm::Value *result) {
2547 // This is only applicable to a method with an immutable 'self'.
John McCallbd9b65a2012-07-31 00:33:55 +00002548 const ObjCMethodDecl *method =
2549 dyn_cast_or_null<ObjCMethodDecl>(CGF.CurCodeDecl);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002550 if (!method) return nullptr;
John McCall77fe6cd2012-01-29 07:46:59 +00002551 const VarDecl *self = method->getSelfDecl();
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002552 if (!self->getType().isConstQualified()) return nullptr;
John McCall77fe6cd2012-01-29 07:46:59 +00002553
2554 // Look for a retain call.
2555 llvm::CallInst *retainCall =
2556 dyn_cast<llvm::CallInst>(result->stripPointerCasts());
2557 if (!retainCall ||
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002558 retainCall->getCalledValue() != CGF.CGM.getObjCEntrypoints().objc_retain)
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002559 return nullptr;
John McCall77fe6cd2012-01-29 07:46:59 +00002560
2561 // Look for an ordinary load of 'self'.
2562 llvm::Value *retainedValue = retainCall->getArgOperand(0);
2563 llvm::LoadInst *load =
2564 dyn_cast<llvm::LoadInst>(retainedValue->stripPointerCasts());
2565 if (!load || load->isAtomic() || load->isVolatile() ||
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002566 load->getPointerOperand() != CGF.GetAddrOfLocalVar(self).getPointer())
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002567 return nullptr;
John McCall77fe6cd2012-01-29 07:46:59 +00002568
2569 // Okay! Burn it all down. This relies for correctness on the
2570 // assumption that the retain is emitted as part of the return and
2571 // that thereafter everything is used "linearly".
2572 llvm::Type *resultType = result->getType();
2573 eraseUnusedBitCasts(cast<llvm::Instruction>(result));
2574 assert(retainCall->use_empty());
2575 retainCall->eraseFromParent();
2576 eraseUnusedBitCasts(cast<llvm::Instruction>(retainedValue));
2577
2578 return CGF.Builder.CreateBitCast(load, resultType);
2579}
2580
John McCallf85e1932011-06-15 23:02:42 +00002581/// Emit an ARC autorelease of the result of a function.
John McCall77fe6cd2012-01-29 07:46:59 +00002582///
2583/// \return the value to actually return from the function
John McCallf85e1932011-06-15 23:02:42 +00002584static llvm::Value *emitAutoreleaseOfResult(CodeGenFunction &CGF,
2585 llvm::Value *result) {
John McCall77fe6cd2012-01-29 07:46:59 +00002586 // If we're returning 'self', kill the initial retain. This is a
2587 // heuristic attempt to "encourage correctness" in the really unfortunate
2588 // case where we have a return of self during a dealloc and we desperately
2589 // need to avoid the possible autorelease.
2590 if (llvm::Value *self = tryRemoveRetainOfSelf(CGF, result))
2591 return self;
2592
John McCallf85e1932011-06-15 23:02:42 +00002593 // At -O0, try to emit a fused retain/autorelease.
2594 if (CGF.shouldUseFusedARCCalls())
2595 if (llvm::Value *fused = tryEmitFusedAutoreleaseOfResult(CGF, result))
2596 return fused;
2597
2598 return CGF.EmitARCAutoreleaseReturnValue(result);
2599}
2600
John McCallf48f7962012-01-29 02:35:02 +00002601/// Heuristically search for a dominating store to the return-value slot.
2602static llvm::StoreInst *findDominatingStoreToReturnValue(CodeGenFunction &CGF) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002603 // Check if a User is a store which pointerOperand is the ReturnValue.
2604 // We are looking for stores to the ReturnValue, not for stores of the
2605 // ReturnValue to some other location.
2606 auto GetStoreIfValid = [&CGF](llvm::User *U) -> llvm::StoreInst * {
2607 auto *SI = dyn_cast<llvm::StoreInst>(U);
2608 if (!SI || SI->getPointerOperand() != CGF.ReturnValue.getPointer())
2609 return nullptr;
2610 // These aren't actually possible for non-coerced returns, and we
2611 // only care about non-coerced returns on this code path.
2612 assert(!SI->isAtomic() && !SI->isVolatile());
2613 return SI;
2614 };
John McCallf48f7962012-01-29 02:35:02 +00002615 // If there are multiple uses of the return-value slot, just check
2616 // for something immediately preceding the IP. Sometimes this can
2617 // happen with how we generate implicit-returns; it can also happen
2618 // with noreturn cleanups.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002619 if (!CGF.ReturnValue.getPointer()->hasOneUse()) {
John McCallf48f7962012-01-29 02:35:02 +00002620 llvm::BasicBlock *IP = CGF.Builder.GetInsertBlock();
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002621 if (IP->empty()) return nullptr;
Pirama Arumuga Nainarb6d69932015-07-01 12:25:36 -07002622 llvm::Instruction *I = &IP->back();
2623
2624 // Skip lifetime markers
2625 for (llvm::BasicBlock::reverse_iterator II = IP->rbegin(),
2626 IE = IP->rend();
2627 II != IE; ++II) {
2628 if (llvm::IntrinsicInst *Intrinsic =
2629 dyn_cast<llvm::IntrinsicInst>(&*II)) {
2630 if (Intrinsic->getIntrinsicID() == llvm::Intrinsic::lifetime_end) {
2631 const llvm::Value *CastAddr = Intrinsic->getArgOperand(1);
2632 ++II;
2633 if (II == IE)
2634 break;
2635 if (isa<llvm::BitCastInst>(&*II) && (CastAddr == &*II))
2636 continue;
2637 }
2638 }
2639 I = &*II;
2640 break;
2641 }
2642
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002643 return GetStoreIfValid(I);
John McCallf48f7962012-01-29 02:35:02 +00002644 }
2645
2646 llvm::StoreInst *store =
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002647 GetStoreIfValid(CGF.ReturnValue.getPointer()->user_back());
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002648 if (!store) return nullptr;
John McCallf48f7962012-01-29 02:35:02 +00002649
John McCallf48f7962012-01-29 02:35:02 +00002650 // Now do a first-and-dirty dominance check: just walk up the
2651 // single-predecessors chain from the current insertion point.
2652 llvm::BasicBlock *StoreBB = store->getParent();
2653 llvm::BasicBlock *IP = CGF.Builder.GetInsertBlock();
2654 while (IP != StoreBB) {
2655 if (!(IP = IP->getSinglePredecessor()))
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002656 return nullptr;
John McCallf48f7962012-01-29 02:35:02 +00002657 }
2658
2659 // Okay, the store's basic block dominates the insertion point; we
2660 // can do our thing.
2661 return store;
2662}
2663
Adrian Prantlfa6b0792013-05-02 17:30:20 +00002664void CodeGenFunction::EmitFunctionEpilog(const CGFunctionInfo &FI,
Nick Lewycky4ee7dc22013-10-02 02:29:49 +00002665 bool EmitRetDbgLoc,
2666 SourceLocation EndLoc) {
Stephen Hines176edba2014-12-01 14:53:08 -08002667 if (CurCodeDecl && CurCodeDecl->hasAttr<NakedAttr>()) {
2668 // Naked functions don't have epilogues.
2669 Builder.CreateUnreachable();
2670 return;
2671 }
2672
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00002673 // Functions with no result always return void.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002674 if (!ReturnValue.isValid()) {
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00002675 Builder.CreateRetVoid();
Chris Lattnerc6e6dd22010-06-26 23:13:19 +00002676 return;
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00002677 }
Daniel Dunbar21fcc8f2010-06-30 21:27:58 +00002678
Dan Gohman4751a532010-07-20 20:13:52 +00002679 llvm::DebugLoc RetDbgLoc;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002680 llvm::Value *RV = nullptr;
Chris Lattnerc6e6dd22010-06-26 23:13:19 +00002681 QualType RetTy = FI.getReturnType();
2682 const ABIArgInfo &RetAI = FI.getReturnInfo();
2683
2684 switch (RetAI.getKind()) {
Stephen Hines651f13c2014-04-23 16:59:28 -07002685 case ABIArgInfo::InAlloca:
2686 // Aggregrates get evaluated directly into the destination. Sometimes we
2687 // need to return the sret value in a register, though.
2688 assert(hasAggregateEvaluationKind(RetTy));
2689 if (RetAI.getInAllocaSRet()) {
2690 llvm::Function::arg_iterator EI = CurFn->arg_end();
2691 --EI;
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002692 llvm::Value *ArgStruct = &*EI;
Pirama Arumuga Nainar58878f82015-05-06 11:48:57 -07002693 llvm::Value *SRet = Builder.CreateStructGEP(
2694 nullptr, ArgStruct, RetAI.getInAllocaFieldIndex());
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002695 RV = Builder.CreateAlignedLoad(SRet, getPointerAlign(), "sret");
Stephen Hines651f13c2014-04-23 16:59:28 -07002696 }
2697 break;
2698
Daniel Dunbar91a16fa2010-08-21 02:24:36 +00002699 case ABIArgInfo::Indirect: {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002700 auto AI = CurFn->arg_begin();
2701 if (RetAI.isSRetAfterThis())
2702 ++AI;
John McCall9d232c82013-03-07 21:37:08 +00002703 switch (getEvaluationKind(RetTy)) {
2704 case TEK_Complex: {
2705 ComplexPairTy RT =
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002706 EmitLoadOfComplex(MakeAddrLValue(ReturnValue, RetTy), EndLoc);
2707 EmitStoreOfComplex(RT, MakeNaturalAlignAddrLValue(&*AI, RetTy),
John McCall9d232c82013-03-07 21:37:08 +00002708 /*isInit*/ true);
2709 break;
2710 }
2711 case TEK_Aggregate:
Chris Lattnerc6e6dd22010-06-26 23:13:19 +00002712 // Do nothing; aggregrates get evaluated directly into the destination.
John McCall9d232c82013-03-07 21:37:08 +00002713 break;
2714 case TEK_Scalar:
2715 EmitStoreOfScalar(Builder.CreateLoad(ReturnValue),
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002716 MakeNaturalAlignAddrLValue(&*AI, RetTy),
John McCall9d232c82013-03-07 21:37:08 +00002717 /*isInit*/ true);
2718 break;
Chris Lattnerc6e6dd22010-06-26 23:13:19 +00002719 }
2720 break;
Daniel Dunbar91a16fa2010-08-21 02:24:36 +00002721 }
Chris Lattnerc6e6dd22010-06-26 23:13:19 +00002722
2723 case ABIArgInfo::Extend:
Chris Lattner800588f2010-07-29 06:26:06 +00002724 case ABIArgInfo::Direct:
Chris Lattner117e3f42010-07-30 04:02:24 +00002725 if (RetAI.getCoerceToType() == ConvertType(RetTy) &&
2726 RetAI.getDirectOffset() == 0) {
Chris Lattner800588f2010-07-29 06:26:06 +00002727 // The internal return value temp always will have pointer-to-return-type
2728 // type, just do a load.
Michael J. Spencer9cac4942010-10-19 06:39:39 +00002729
John McCallf48f7962012-01-29 02:35:02 +00002730 // If there is a dominating store to ReturnValue, we can elide
2731 // the load, zap the store, and usually zap the alloca.
Pirama Arumuga Nainarb6d69932015-07-01 12:25:36 -07002732 if (llvm::StoreInst *SI =
2733 findDominatingStoreToReturnValue(*this)) {
Adrian Prantl7c731f52013-05-30 18:12:23 +00002734 // Reuse the debug location from the store unless there is
2735 // cleanup code to be emitted between the store and return
2736 // instruction.
2737 if (EmitRetDbgLoc && !AutoreleaseResult)
Adrian Prantlfa6b0792013-05-02 17:30:20 +00002738 RetDbgLoc = SI->getDebugLoc();
Chris Lattner800588f2010-07-29 06:26:06 +00002739 // Get the stored value and nuke the now-dead store.
Chris Lattner800588f2010-07-29 06:26:06 +00002740 RV = SI->getValueOperand();
2741 SI->eraseFromParent();
Michael J. Spencer9cac4942010-10-19 06:39:39 +00002742
Chris Lattner800588f2010-07-29 06:26:06 +00002743 // If that was the only use of the return value, nuke it as well now.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002744 auto returnValueInst = ReturnValue.getPointer();
2745 if (returnValueInst->use_empty()) {
2746 if (auto alloca = dyn_cast<llvm::AllocaInst>(returnValueInst)) {
2747 alloca->eraseFromParent();
2748 ReturnValue = Address::invalid();
2749 }
Chris Lattner800588f2010-07-29 06:26:06 +00002750 }
John McCallf48f7962012-01-29 02:35:02 +00002751
2752 // Otherwise, we have to do a simple load.
2753 } else {
2754 RV = Builder.CreateLoad(ReturnValue);
Chris Lattner35b21b82010-06-27 01:06:27 +00002755 }
Chris Lattner800588f2010-07-29 06:26:06 +00002756 } else {
Chris Lattner117e3f42010-07-30 04:02:24 +00002757 // If the value is offset in memory, apply the offset now.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002758 Address V = emitAddressAtOffset(*this, ReturnValue, RetAI);
Michael J. Spencer9cac4942010-10-19 06:39:39 +00002759
Chris Lattner117e3f42010-07-30 04:02:24 +00002760 RV = CreateCoercedLoad(V, RetAI.getCoerceToType(), *this);
Chris Lattner35b21b82010-06-27 01:06:27 +00002761 }
John McCallf85e1932011-06-15 23:02:42 +00002762
2763 // In ARC, end functions that return a retainable type with a call
2764 // to objc_autoreleaseReturnValue.
2765 if (AutoreleaseResult) {
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07002766#ifndef NDEBUG
2767 // Type::isObjCRetainabletype has to be called on a QualType that hasn't
2768 // been stripped of the typedefs, so we cannot use RetTy here. Get the
2769 // original return type of FunctionDecl, CurCodeDecl, and BlockDecl from
2770 // CurCodeDecl or BlockInfo.
2771 QualType RT;
2772
2773 if (auto *FD = dyn_cast<FunctionDecl>(CurCodeDecl))
2774 RT = FD->getReturnType();
2775 else if (auto *MD = dyn_cast<ObjCMethodDecl>(CurCodeDecl))
2776 RT = MD->getReturnType();
2777 else if (isa<BlockDecl>(CurCodeDecl))
2778 RT = BlockInfo->BlockExpression->getFunctionType()->getReturnType();
2779 else
2780 llvm_unreachable("Unexpected function/method type");
2781
David Blaikie4e4d0842012-03-11 07:00:24 +00002782 assert(getLangOpts().ObjCAutoRefCount &&
John McCallf85e1932011-06-15 23:02:42 +00002783 !FI.isReturnsRetained() &&
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07002784 RT->isObjCRetainableType());
2785#endif
John McCallf85e1932011-06-15 23:02:42 +00002786 RV = emitAutoreleaseOfResult(*this, RV);
2787 }
2788
Chris Lattnerc6e6dd22010-06-26 23:13:19 +00002789 break;
Chris Lattnerc6e6dd22010-06-26 23:13:19 +00002790
Chris Lattner800588f2010-07-29 06:26:06 +00002791 case ABIArgInfo::Ignore:
Chris Lattnerc6e6dd22010-06-26 23:13:19 +00002792 break;
2793
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07002794 case ABIArgInfo::CoerceAndExpand: {
2795 auto coercionType = RetAI.getCoerceAndExpandType();
2796 auto layout = CGM.getDataLayout().getStructLayout(coercionType);
2797
2798 // Load all of the coerced elements out into results.
2799 llvm::SmallVector<llvm::Value*, 4> results;
2800 Address addr = Builder.CreateElementBitCast(ReturnValue, coercionType);
2801 for (unsigned i = 0, e = coercionType->getNumElements(); i != e; ++i) {
2802 auto coercedEltType = coercionType->getElementType(i);
2803 if (ABIArgInfo::isPaddingForCoerceAndExpand(coercedEltType))
2804 continue;
2805
2806 auto eltAddr = Builder.CreateStructGEP(addr, i, layout);
2807 auto elt = Builder.CreateLoad(eltAddr);
2808 results.push_back(elt);
2809 }
2810
2811 // If we have one result, it's the single direct result type.
2812 if (results.size() == 1) {
2813 RV = results[0];
2814
2815 // Otherwise, we need to make a first-class aggregate.
2816 } else {
2817 // Construct a return type that lacks padding elements.
2818 llvm::Type *returnType = RetAI.getUnpaddedCoerceAndExpandType();
2819
2820 RV = llvm::UndefValue::get(returnType);
2821 for (unsigned i = 0, e = results.size(); i != e; ++i) {
2822 RV = Builder.CreateInsertValue(RV, results[i], i);
2823 }
2824 }
2825 break;
2826 }
2827
Chris Lattnerc6e6dd22010-06-26 23:13:19 +00002828 case ABIArgInfo::Expand:
David Blaikieb219cfc2011-09-23 05:06:16 +00002829 llvm_unreachable("Invalid ABI kind for return argument");
Chris Lattnerc6e6dd22010-06-26 23:13:19 +00002830 }
2831
Stephen Hines176edba2014-12-01 14:53:08 -08002832 llvm::Instruction *Ret;
2833 if (RV) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002834 if (CurCodeDecl && SanOpts.has(SanitizerKind::ReturnsNonnullAttribute)) {
2835 if (auto RetNNAttr = CurCodeDecl->getAttr<ReturnsNonNullAttr>()) {
Stephen Hines176edba2014-12-01 14:53:08 -08002836 SanitizerScope SanScope(this);
2837 llvm::Value *Cond = Builder.CreateICmpNE(
2838 RV, llvm::Constant::getNullValue(RV->getType()));
2839 llvm::Constant *StaticData[] = {
2840 EmitCheckSourceLocation(EndLoc),
2841 EmitCheckSourceLocation(RetNNAttr->getLocation()),
2842 };
2843 EmitCheck(std::make_pair(Cond, SanitizerKind::ReturnsNonnullAttribute),
2844 "nonnull_return", StaticData, None);
2845 }
2846 }
2847 Ret = Builder.CreateRet(RV);
2848 } else {
2849 Ret = Builder.CreateRetVoid();
2850 }
2851
Pirama Arumuga Nainar58878f82015-05-06 11:48:57 -07002852 if (RetDbgLoc)
Stephen Hines0e2c34f2015-03-23 12:09:02 -07002853 Ret->setDebugLoc(std::move(RetDbgLoc));
Daniel Dunbar17b708d2008-09-09 23:27:19 +00002854}
2855
Stephen Hines651f13c2014-04-23 16:59:28 -07002856static bool isInAllocaArgument(CGCXXABI &ABI, QualType type) {
2857 const CXXRecordDecl *RD = type->getAsCXXRecordDecl();
2858 return RD && ABI.getRecordArgABI(RD) == CGCXXABI::RAA_DirectInMemory;
2859}
2860
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002861static AggValueSlot createPlaceholderSlot(CodeGenFunction &CGF,
2862 QualType Ty) {
Stephen Hines651f13c2014-04-23 16:59:28 -07002863 // FIXME: Generate IR in one pass, rather than going back and fixing up these
2864 // placeholders.
2865 llvm::Type *IRTy = CGF.ConvertTypeForMem(Ty);
2866 llvm::Value *Placeholder =
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002867 llvm::UndefValue::get(IRTy->getPointerTo()->getPointerTo());
2868 Placeholder = CGF.Builder.CreateDefaultAlignedLoad(Placeholder);
2869
2870 // FIXME: When we generate this IR in one pass, we shouldn't need
2871 // this win32-specific alignment hack.
2872 CharUnits Align = CharUnits::fromQuantity(4);
2873
2874 return AggValueSlot::forAddr(Address(Placeholder, Align),
Stephen Hines651f13c2014-04-23 16:59:28 -07002875 Ty.getQualifiers(),
2876 AggValueSlot::IsNotDestructed,
2877 AggValueSlot::DoesNotNeedGCBarriers,
2878 AggValueSlot::IsNotAliased);
2879}
2880
John McCall413ebdb2011-03-11 20:59:21 +00002881void CodeGenFunction::EmitDelegateCallArg(CallArgList &args,
Nick Lewycky4ee7dc22013-10-02 02:29:49 +00002882 const VarDecl *param,
2883 SourceLocation loc) {
John McCall27360712010-05-26 22:34:26 +00002884 // StartFunction converted the ABI-lowered parameter(s) into a
2885 // local alloca. We need to turn that into an r-value suitable
2886 // for EmitCall.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002887 Address local = GetAddrOfLocalVar(param);
John McCall27360712010-05-26 22:34:26 +00002888
John McCall413ebdb2011-03-11 20:59:21 +00002889 QualType type = param->getType();
Michael J. Spencer9cac4942010-10-19 06:39:39 +00002890
Stephen Hines176edba2014-12-01 14:53:08 -08002891 assert(!isInAllocaArgument(CGM.getCXXABI(), type) &&
2892 "cannot emit delegate call arguments for inalloca arguments!");
Stephen Hines651f13c2014-04-23 16:59:28 -07002893
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07002894 // For the most part, we just need to load the alloca, except that
2895 // aggregate r-values are actually pointers to temporaries.
2896 if (type->isReferenceType())
2897 args.add(RValue::get(Builder.CreateLoad(local)), type);
2898 else
2899 args.add(convertTempToRValue(local, type, loc), type);
John McCall27360712010-05-26 22:34:26 +00002900}
2901
John McCallf85e1932011-06-15 23:02:42 +00002902static bool isProvablyNull(llvm::Value *addr) {
2903 return isa<llvm::ConstantPointerNull>(addr);
2904}
2905
2906static bool isProvablyNonNull(llvm::Value *addr) {
2907 return isa<llvm::AllocaInst>(addr);
2908}
2909
2910/// Emit the actual writing-back of a writeback.
2911static void emitWriteback(CodeGenFunction &CGF,
2912 const CallArgList::Writeback &writeback) {
John McCallb6a60792013-03-23 02:35:54 +00002913 const LValue &srcLV = writeback.Source;
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002914 Address srcAddr = srcLV.getAddress();
2915 assert(!isProvablyNull(srcAddr.getPointer()) &&
John McCallf85e1932011-06-15 23:02:42 +00002916 "shouldn't have writeback for provably null argument");
2917
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002918 llvm::BasicBlock *contBB = nullptr;
John McCallf85e1932011-06-15 23:02:42 +00002919
2920 // If the argument wasn't provably non-null, we need to null check
2921 // before doing the store.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002922 bool provablyNonNull = isProvablyNonNull(srcAddr.getPointer());
John McCallf85e1932011-06-15 23:02:42 +00002923 if (!provablyNonNull) {
2924 llvm::BasicBlock *writebackBB = CGF.createBasicBlock("icr.writeback");
2925 contBB = CGF.createBasicBlock("icr.done");
2926
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002927 llvm::Value *isNull =
2928 CGF.Builder.CreateIsNull(srcAddr.getPointer(), "icr.isnull");
John McCallf85e1932011-06-15 23:02:42 +00002929 CGF.Builder.CreateCondBr(isNull, contBB, writebackBB);
2930 CGF.EmitBlock(writebackBB);
2931 }
2932
2933 // Load the value to writeback.
2934 llvm::Value *value = CGF.Builder.CreateLoad(writeback.Temporary);
2935
2936 // Cast it back, in case we're writing an id to a Foo* or something.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002937 value = CGF.Builder.CreateBitCast(value, srcAddr.getElementType(),
2938 "icr.writeback-cast");
John McCallf85e1932011-06-15 23:02:42 +00002939
2940 // Perform the writeback.
John McCallb6a60792013-03-23 02:35:54 +00002941
2942 // If we have a "to use" value, it's something we need to emit a use
2943 // of. This has to be carefully threaded in: if it's done after the
2944 // release it's potentially undefined behavior (and the optimizer
2945 // will ignore it), and if it happens before the retain then the
2946 // optimizer could move the release there.
2947 if (writeback.ToUse) {
2948 assert(srcLV.getObjCLifetime() == Qualifiers::OCL_Strong);
2949
2950 // Retain the new value. No need to block-copy here: the block's
2951 // being passed up the stack.
2952 value = CGF.EmitARCRetainNonBlock(value);
2953
2954 // Emit the intrinsic use here.
2955 CGF.EmitARCIntrinsicUse(writeback.ToUse);
2956
2957 // Load the old value (primitively).
Nick Lewycky4ee7dc22013-10-02 02:29:49 +00002958 llvm::Value *oldValue = CGF.EmitLoadOfScalar(srcLV, SourceLocation());
John McCallb6a60792013-03-23 02:35:54 +00002959
2960 // Put the new value in place (primitively).
2961 CGF.EmitStoreOfScalar(value, srcLV, /*init*/ false);
2962
2963 // Release the old value.
2964 CGF.EmitARCRelease(oldValue, srcLV.isARCPreciseLifetime());
2965
2966 // Otherwise, we can just do a normal lvalue store.
2967 } else {
2968 CGF.EmitStoreThroughLValue(RValue::get(value), srcLV);
2969 }
John McCallf85e1932011-06-15 23:02:42 +00002970
2971 // Jump to the continuation block.
2972 if (!provablyNonNull)
2973 CGF.EmitBlock(contBB);
2974}
2975
2976static void emitWritebacks(CodeGenFunction &CGF,
2977 const CallArgList &args) {
Stephen Hines651f13c2014-04-23 16:59:28 -07002978 for (const auto &I : args.writebacks())
2979 emitWriteback(CGF, I);
John McCallf85e1932011-06-15 23:02:42 +00002980}
2981
Reid Kleckner9b601952013-06-21 12:45:15 +00002982static void deactivateArgCleanupsBeforeCall(CodeGenFunction &CGF,
2983 const CallArgList &CallArgs) {
Stephen Hines651f13c2014-04-23 16:59:28 -07002984 assert(CGF.getTarget().getCXXABI().areArgsDestroyedLeftToRightInCallee());
Reid Kleckner9b601952013-06-21 12:45:15 +00002985 ArrayRef<CallArgList::CallArgCleanup> Cleanups =
2986 CallArgs.getCleanupsToDeactivate();
2987 // Iterate in reverse to increase the likelihood of popping the cleanup.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002988 for (const auto &I : llvm::reverse(Cleanups)) {
2989 CGF.DeactivateCleanupBlock(I.Cleanup, I.IsActiveIP);
2990 I.IsActiveIP->eraseFromParent();
Reid Kleckner9b601952013-06-21 12:45:15 +00002991 }
2992}
2993
John McCallb6a60792013-03-23 02:35:54 +00002994static const Expr *maybeGetUnaryAddrOfOperand(const Expr *E) {
2995 if (const UnaryOperator *uop = dyn_cast<UnaryOperator>(E->IgnoreParens()))
2996 if (uop->getOpcode() == UO_AddrOf)
2997 return uop->getSubExpr();
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002998 return nullptr;
John McCallb6a60792013-03-23 02:35:54 +00002999}
3000
John McCallf85e1932011-06-15 23:02:42 +00003001/// Emit an argument that's being passed call-by-writeback. That is,
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003002/// we are passing the address of an __autoreleased temporary; it
3003/// might be copy-initialized with the current value of the given
3004/// address, but it will definitely be copied out of after the call.
John McCallf85e1932011-06-15 23:02:42 +00003005static void emitWritebackArg(CodeGenFunction &CGF, CallArgList &args,
3006 const ObjCIndirectCopyRestoreExpr *CRE) {
John McCallb6a60792013-03-23 02:35:54 +00003007 LValue srcLV;
3008
3009 // Make an optimistic effort to emit the address as an l-value.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003010 // This can fail if the argument expression is more complicated.
John McCallb6a60792013-03-23 02:35:54 +00003011 if (const Expr *lvExpr = maybeGetUnaryAddrOfOperand(CRE->getSubExpr())) {
3012 srcLV = CGF.EmitLValue(lvExpr);
3013
3014 // Otherwise, just emit it as a scalar.
3015 } else {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003016 Address srcAddr = CGF.EmitPointerWithAlignment(CRE->getSubExpr());
John McCallb6a60792013-03-23 02:35:54 +00003017
3018 QualType srcAddrType =
3019 CRE->getSubExpr()->getType()->castAs<PointerType>()->getPointeeType();
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003020 srcLV = CGF.MakeAddrLValue(srcAddr, srcAddrType);
John McCallb6a60792013-03-23 02:35:54 +00003021 }
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003022 Address srcAddr = srcLV.getAddress();
John McCallf85e1932011-06-15 23:02:42 +00003023
3024 // The dest and src types don't necessarily match in LLVM terms
3025 // because of the crazy ObjC compatibility rules.
3026
Chris Lattner2acc6e32011-07-18 04:24:23 +00003027 llvm::PointerType *destType =
John McCallf85e1932011-06-15 23:02:42 +00003028 cast<llvm::PointerType>(CGF.ConvertType(CRE->getType()));
3029
3030 // If the address is a constant null, just pass the appropriate null.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003031 if (isProvablyNull(srcAddr.getPointer())) {
John McCallf85e1932011-06-15 23:02:42 +00003032 args.add(RValue::get(llvm::ConstantPointerNull::get(destType)),
3033 CRE->getType());
3034 return;
3035 }
3036
John McCallf85e1932011-06-15 23:02:42 +00003037 // Create the temporary.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003038 Address temp = CGF.CreateTempAlloca(destType->getElementType(),
3039 CGF.getPointerAlign(),
3040 "icr.temp");
Fariborz Jahanian82c458e2012-11-27 23:02:53 +00003041 // Loading an l-value can introduce a cleanup if the l-value is __weak,
3042 // and that cleanup will be conditional if we can't prove that the l-value
3043 // isn't null, so we need to register a dominating point so that the cleanups
3044 // system will make valid IR.
3045 CodeGenFunction::ConditionalEvaluation condEval(CGF);
3046
John McCallf85e1932011-06-15 23:02:42 +00003047 // Zero-initialize it if we're not doing a copy-initialization.
3048 bool shouldCopy = CRE->shouldCopy();
3049 if (!shouldCopy) {
3050 llvm::Value *null =
3051 llvm::ConstantPointerNull::get(
3052 cast<llvm::PointerType>(destType->getElementType()));
3053 CGF.Builder.CreateStore(null, temp);
3054 }
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003055
3056 llvm::BasicBlock *contBB = nullptr;
3057 llvm::BasicBlock *originBB = nullptr;
John McCallf85e1932011-06-15 23:02:42 +00003058
3059 // If the address is *not* known to be non-null, we need to switch.
3060 llvm::Value *finalArgument;
3061
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003062 bool provablyNonNull = isProvablyNonNull(srcAddr.getPointer());
John McCallf85e1932011-06-15 23:02:42 +00003063 if (provablyNonNull) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003064 finalArgument = temp.getPointer();
John McCallf85e1932011-06-15 23:02:42 +00003065 } else {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003066 llvm::Value *isNull =
3067 CGF.Builder.CreateIsNull(srcAddr.getPointer(), "icr.isnull");
John McCallf85e1932011-06-15 23:02:42 +00003068
3069 finalArgument = CGF.Builder.CreateSelect(isNull,
3070 llvm::ConstantPointerNull::get(destType),
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003071 temp.getPointer(), "icr.argument");
John McCallf85e1932011-06-15 23:02:42 +00003072
3073 // If we need to copy, then the load has to be conditional, which
3074 // means we need control flow.
3075 if (shouldCopy) {
John McCallb6a60792013-03-23 02:35:54 +00003076 originBB = CGF.Builder.GetInsertBlock();
John McCallf85e1932011-06-15 23:02:42 +00003077 contBB = CGF.createBasicBlock("icr.cont");
3078 llvm::BasicBlock *copyBB = CGF.createBasicBlock("icr.copy");
3079 CGF.Builder.CreateCondBr(isNull, contBB, copyBB);
3080 CGF.EmitBlock(copyBB);
Fariborz Jahanian82c458e2012-11-27 23:02:53 +00003081 condEval.begin(CGF);
John McCallf85e1932011-06-15 23:02:42 +00003082 }
3083 }
3084
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003085 llvm::Value *valueToUse = nullptr;
John McCallb6a60792013-03-23 02:35:54 +00003086
John McCallf85e1932011-06-15 23:02:42 +00003087 // Perform a copy if necessary.
3088 if (shouldCopy) {
Nick Lewycky4ee7dc22013-10-02 02:29:49 +00003089 RValue srcRV = CGF.EmitLoadOfLValue(srcLV, SourceLocation());
John McCallf85e1932011-06-15 23:02:42 +00003090 assert(srcRV.isScalar());
3091
3092 llvm::Value *src = srcRV.getScalarVal();
3093 src = CGF.Builder.CreateBitCast(src, destType->getElementType(),
3094 "icr.cast");
3095
3096 // Use an ordinary store, not a store-to-lvalue.
3097 CGF.Builder.CreateStore(src, temp);
John McCallb6a60792013-03-23 02:35:54 +00003098
3099 // If optimization is enabled, and the value was held in a
3100 // __strong variable, we need to tell the optimizer that this
3101 // value has to stay alive until we're doing the store back.
3102 // This is because the temporary is effectively unretained,
3103 // and so otherwise we can violate the high-level semantics.
3104 if (CGF.CGM.getCodeGenOpts().OptimizationLevel != 0 &&
3105 srcLV.getObjCLifetime() == Qualifiers::OCL_Strong) {
3106 valueToUse = src;
3107 }
John McCallf85e1932011-06-15 23:02:42 +00003108 }
Fariborz Jahanian82c458e2012-11-27 23:02:53 +00003109
John McCallf85e1932011-06-15 23:02:42 +00003110 // Finish the control flow if we needed it.
Fariborz Jahanian82c458e2012-11-27 23:02:53 +00003111 if (shouldCopy && !provablyNonNull) {
John McCallb6a60792013-03-23 02:35:54 +00003112 llvm::BasicBlock *copyBB = CGF.Builder.GetInsertBlock();
John McCallf85e1932011-06-15 23:02:42 +00003113 CGF.EmitBlock(contBB);
John McCallb6a60792013-03-23 02:35:54 +00003114
3115 // Make a phi for the value to intrinsically use.
3116 if (valueToUse) {
3117 llvm::PHINode *phiToUse = CGF.Builder.CreatePHI(valueToUse->getType(), 2,
3118 "icr.to-use");
3119 phiToUse->addIncoming(valueToUse, copyBB);
3120 phiToUse->addIncoming(llvm::UndefValue::get(valueToUse->getType()),
3121 originBB);
3122 valueToUse = phiToUse;
3123 }
3124
Fariborz Jahanian82c458e2012-11-27 23:02:53 +00003125 condEval.end(CGF);
3126 }
John McCallf85e1932011-06-15 23:02:42 +00003127
John McCallb6a60792013-03-23 02:35:54 +00003128 args.addWriteback(srcLV, temp, valueToUse);
John McCallf85e1932011-06-15 23:02:42 +00003129 args.add(RValue::get(finalArgument), CRE->getType());
3130}
3131
Stephen Hines651f13c2014-04-23 16:59:28 -07003132void CallArgList::allocateArgumentMemory(CodeGenFunction &CGF) {
3133 assert(!StackBase && !StackCleanup.isValid());
3134
3135 // Save the stack.
3136 llvm::Function *F = CGF.CGM.getIntrinsic(llvm::Intrinsic::stacksave);
Pirama Arumuga Nainarb6d69932015-07-01 12:25:36 -07003137 StackBase = CGF.Builder.CreateCall(F, {}, "inalloca.save");
Stephen Hines651f13c2014-04-23 16:59:28 -07003138}
3139
3140void CallArgList::freeArgumentMemory(CodeGenFunction &CGF) const {
3141 if (StackBase) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003142 // Restore the stack after the call.
Stephen Hines651f13c2014-04-23 16:59:28 -07003143 llvm::Value *F = CGF.CGM.getIntrinsic(llvm::Intrinsic::stackrestore);
Stephen Hines651f13c2014-04-23 16:59:28 -07003144 CGF.Builder.CreateCall(F, StackBase);
3145 }
3146}
3147
Pirama Arumuga Nainarb6d69932015-07-01 12:25:36 -07003148void CodeGenFunction::EmitNonNullArgCheck(RValue RV, QualType ArgType,
3149 SourceLocation ArgLoc,
3150 const FunctionDecl *FD,
3151 unsigned ParmNum) {
3152 if (!SanOpts.has(SanitizerKind::NonnullAttribute) || !FD)
Stephen Hines176edba2014-12-01 14:53:08 -08003153 return;
3154 auto PVD = ParmNum < FD->getNumParams() ? FD->getParamDecl(ParmNum) : nullptr;
3155 unsigned ArgNo = PVD ? PVD->getFunctionScopeIndex() : ParmNum;
3156 auto NNAttr = getNonNullAttr(FD, PVD, ArgType, ArgNo);
3157 if (!NNAttr)
3158 return;
Pirama Arumuga Nainarb6d69932015-07-01 12:25:36 -07003159 SanitizerScope SanScope(this);
Stephen Hines176edba2014-12-01 14:53:08 -08003160 assert(RV.isScalar());
3161 llvm::Value *V = RV.getScalarVal();
3162 llvm::Value *Cond =
Pirama Arumuga Nainarb6d69932015-07-01 12:25:36 -07003163 Builder.CreateICmpNE(V, llvm::Constant::getNullValue(V->getType()));
Stephen Hines176edba2014-12-01 14:53:08 -08003164 llvm::Constant *StaticData[] = {
Pirama Arumuga Nainarb6d69932015-07-01 12:25:36 -07003165 EmitCheckSourceLocation(ArgLoc),
3166 EmitCheckSourceLocation(NNAttr->getLocation()),
3167 llvm::ConstantInt::get(Int32Ty, ArgNo + 1),
Stephen Hines176edba2014-12-01 14:53:08 -08003168 };
Pirama Arumuga Nainarb6d69932015-07-01 12:25:36 -07003169 EmitCheck(std::make_pair(Cond, SanitizerKind::NonnullAttribute),
Stephen Hines176edba2014-12-01 14:53:08 -08003170 "nonnull_arg", StaticData, None);
3171}
3172
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003173void CodeGenFunction::EmitCallArgs(
3174 CallArgList &Args, ArrayRef<QualType> ArgTypes,
3175 llvm::iterator_range<CallExpr::const_arg_iterator> ArgRange,
3176 const FunctionDecl *CalleeDecl, unsigned ParamsToSkip) {
3177 assert((int)ArgTypes.size() == (ArgRange.end() - ArgRange.begin()));
3178
3179 auto MaybeEmitImplicitObjectSize = [&](unsigned I, const Expr *Arg) {
3180 if (CalleeDecl == nullptr || I >= CalleeDecl->getNumParams())
3181 return;
3182 auto *PS = CalleeDecl->getParamDecl(I)->getAttr<PassObjectSizeAttr>();
3183 if (PS == nullptr)
3184 return;
3185
3186 const auto &Context = getContext();
3187 auto SizeTy = Context.getSizeType();
3188 auto T = Builder.getIntNTy(Context.getTypeSize(SizeTy));
3189 llvm::Value *V = evaluateOrEmitBuiltinObjectSize(Arg, PS->getType(), T);
3190 Args.add(RValue::get(V), SizeTy);
3191 };
3192
Stephen Hines651f13c2014-04-23 16:59:28 -07003193 // We *have* to evaluate arguments from right to left in the MS C++ ABI,
3194 // because arguments are destroyed left to right in the callee.
3195 if (CGM.getTarget().getCXXABI().areArgsDestroyedLeftToRightInCallee()) {
3196 // Insert a stack save if we're going to need any inalloca args.
3197 bool HasInAllocaArgs = false;
3198 for (ArrayRef<QualType>::iterator I = ArgTypes.begin(), E = ArgTypes.end();
3199 I != E && !HasInAllocaArgs; ++I)
3200 HasInAllocaArgs = isInAllocaArgument(CGM.getCXXABI(), *I);
3201 if (HasInAllocaArgs) {
3202 assert(getTarget().getTriple().getArch() == llvm::Triple::x86);
3203 Args.allocateArgumentMemory(*this);
3204 }
3205
3206 // Evaluate each argument.
3207 size_t CallArgsStart = Args.size();
3208 for (int I = ArgTypes.size() - 1; I >= 0; --I) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003209 CallExpr::const_arg_iterator Arg = ArgRange.begin() + I;
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07003210 MaybeEmitImplicitObjectSize(I, *Arg);
Stephen Hines651f13c2014-04-23 16:59:28 -07003211 EmitCallArg(Args, *Arg, ArgTypes[I]);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003212 EmitNonNullArgCheck(Args.back().RV, ArgTypes[I], (*Arg)->getExprLoc(),
Stephen Hines176edba2014-12-01 14:53:08 -08003213 CalleeDecl, ParamsToSkip + I);
Stephen Hines651f13c2014-04-23 16:59:28 -07003214 }
3215
3216 // Un-reverse the arguments we just evaluated so they match up with the LLVM
3217 // IR function.
3218 std::reverse(Args.begin() + CallArgsStart, Args.end());
3219 return;
3220 }
3221
3222 for (unsigned I = 0, E = ArgTypes.size(); I != E; ++I) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003223 CallExpr::const_arg_iterator Arg = ArgRange.begin() + I;
3224 assert(Arg != ArgRange.end());
Stephen Hines651f13c2014-04-23 16:59:28 -07003225 EmitCallArg(Args, *Arg, ArgTypes[I]);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003226 EmitNonNullArgCheck(Args.back().RV, ArgTypes[I], (*Arg)->getExprLoc(),
Stephen Hines176edba2014-12-01 14:53:08 -08003227 CalleeDecl, ParamsToSkip + I);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003228 MaybeEmitImplicitObjectSize(I, *Arg);
Stephen Hines651f13c2014-04-23 16:59:28 -07003229 }
3230}
3231
3232namespace {
3233
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003234struct DestroyUnpassedArg final : EHScopeStack::Cleanup {
3235 DestroyUnpassedArg(Address Addr, QualType Ty)
Stephen Hines651f13c2014-04-23 16:59:28 -07003236 : Addr(Addr), Ty(Ty) {}
3237
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003238 Address Addr;
Stephen Hines651f13c2014-04-23 16:59:28 -07003239 QualType Ty;
3240
3241 void Emit(CodeGenFunction &CGF, Flags flags) override {
3242 const CXXDestructorDecl *Dtor = Ty->getAsCXXRecordDecl()->getDestructor();
3243 assert(!Dtor->isTrivial());
3244 CGF.EmitCXXDestructorCall(Dtor, Dtor_Complete, /*for vbase*/ false,
3245 /*Delegating=*/false, Addr);
3246 }
3247};
3248
Stephen Hines0e2c34f2015-03-23 12:09:02 -07003249struct DisableDebugLocationUpdates {
3250 CodeGenFunction &CGF;
3251 bool disabledDebugInfo;
3252 DisableDebugLocationUpdates(CodeGenFunction &CGF, const Expr *E) : CGF(CGF) {
3253 if ((disabledDebugInfo = isa<CXXDefaultArgExpr>(E) && CGF.getDebugInfo()))
3254 CGF.disableDebugInfo();
3255 }
3256 ~DisableDebugLocationUpdates() {
3257 if (disabledDebugInfo)
3258 CGF.enableDebugInfo();
3259 }
3260};
3261
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003262} // end anonymous namespace
3263
John McCall413ebdb2011-03-11 20:59:21 +00003264void CodeGenFunction::EmitCallArg(CallArgList &args, const Expr *E,
3265 QualType type) {
Stephen Hines0e2c34f2015-03-23 12:09:02 -07003266 DisableDebugLocationUpdates Dis(*this, E);
John McCallf85e1932011-06-15 23:02:42 +00003267 if (const ObjCIndirectCopyRestoreExpr *CRE
3268 = dyn_cast<ObjCIndirectCopyRestoreExpr>(E)) {
Richard Smith7edf9e32012-11-01 22:30:59 +00003269 assert(getLangOpts().ObjCAutoRefCount);
John McCallf85e1932011-06-15 23:02:42 +00003270 assert(getContext().hasSameType(E->getType(), type));
3271 return emitWritebackArg(*this, args, CRE);
3272 }
3273
John McCall8affed52011-08-26 18:42:59 +00003274 assert(type->isReferenceType() == E->isGLValue() &&
3275 "reference binding to unmaterialized r-value!");
3276
John McCallcec52f02011-08-26 21:08:13 +00003277 if (E->isGLValue()) {
3278 assert(E->getObjectKind() == OK_Ordinary);
Richard Smithd4ec5622013-06-12 23:38:09 +00003279 return args.add(EmitReferenceBindingToExpr(E), type);
John McCallcec52f02011-08-26 21:08:13 +00003280 }
Mike Stump1eb44332009-09-09 15:08:12 +00003281
Reid Kleckner9b601952013-06-21 12:45:15 +00003282 bool HasAggregateEvalKind = hasAggregateEvaluationKind(type);
3283
3284 // In the Microsoft C++ ABI, aggregate arguments are destructed by the callee.
3285 // However, we still have to push an EH-only cleanup in case we unwind before
3286 // we make it to the call.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003287 if (HasAggregateEvalKind &&
3288 CGM.getTarget().getCXXABI().areArgsDestroyedLeftToRightInCallee()) {
3289 // If we're using inalloca, use the argument memory. Otherwise, use a
3290 // temporary.
3291 AggValueSlot Slot;
3292 if (args.isUsingInAlloca())
3293 Slot = createPlaceholderSlot(*this, type);
3294 else
3295 Slot = CreateAggTemp(type, "agg.tmp");
3296
3297 const CXXRecordDecl *RD = type->getAsCXXRecordDecl();
3298 bool DestroyedInCallee =
3299 RD && RD->hasNonTrivialDestructor() &&
3300 CGM.getCXXABI().getRecordArgABI(RD) != CGCXXABI::RAA_Default;
3301 if (DestroyedInCallee)
3302 Slot.setExternallyDestructed();
3303
Stephen Hines651f13c2014-04-23 16:59:28 -07003304 EmitAggExpr(E, Slot);
3305 RValue RV = Slot.asRValue();
3306 args.add(RV, type);
Reid Kleckner9b601952013-06-21 12:45:15 +00003307
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003308 if (DestroyedInCallee) {
Stephen Hines651f13c2014-04-23 16:59:28 -07003309 // Create a no-op GEP between the placeholder and the cleanup so we can
3310 // RAUW it successfully. It also serves as a marker of the first
3311 // instruction where the cleanup is active.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003312 pushFullExprCleanup<DestroyUnpassedArg>(EHCleanup, Slot.getAddress(),
3313 type);
Reid Kleckner9b601952013-06-21 12:45:15 +00003314 // This unreachable is a temporary marker which will be removed later.
3315 llvm::Instruction *IsActive = Builder.CreateUnreachable();
3316 args.addArgCleanupDeactivation(EHStack.getInnermostEHScope(), IsActive);
Reid Kleckner9b601952013-06-21 12:45:15 +00003317 }
Stephen Hines651f13c2014-04-23 16:59:28 -07003318 return;
Reid Kleckner9b601952013-06-21 12:45:15 +00003319 }
3320
3321 if (HasAggregateEvalKind && isa<ImplicitCastExpr>(E) &&
Eli Friedman55d48482011-05-26 00:10:27 +00003322 cast<CastExpr>(E)->getCastKind() == CK_LValueToRValue) {
3323 LValue L = EmitLValue(cast<CastExpr>(E)->getSubExpr());
3324 assert(L.isSimple());
Eli Friedmand39083d2013-06-11 01:08:22 +00003325 if (L.getAlignment() >= getContext().getTypeAlignInChars(type)) {
3326 args.add(L.asAggregateRValue(), type, /*NeedsCopy*/true);
3327 } else {
3328 // We can't represent a misaligned lvalue in the CallArgList, so copy
3329 // to an aligned temporary now.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003330 Address tmp = CreateMemTemp(type);
3331 EmitAggregateCopy(tmp, L.getAddress(), type, L.isVolatile());
Eli Friedmand39083d2013-06-11 01:08:22 +00003332 args.add(RValue::getAggregate(tmp), type);
3333 }
Eli Friedman55d48482011-05-26 00:10:27 +00003334 return;
3335 }
3336
John McCall413ebdb2011-03-11 20:59:21 +00003337 args.add(EmitAnyExprToTemp(E), type);
Anders Carlsson0139bb92009-04-08 20:47:54 +00003338}
3339
Stephen Hines176edba2014-12-01 14:53:08 -08003340QualType CodeGenFunction::getVarArgType(const Expr *Arg) {
3341 // System headers on Windows define NULL to 0 instead of 0LL on Win64. MSVC
3342 // implicitly widens null pointer constants that are arguments to varargs
3343 // functions to pointer-sized ints.
3344 if (!getTarget().getTriple().isOSWindows())
3345 return Arg->getType();
3346
3347 if (Arg->getType()->isIntegerType() &&
3348 getContext().getTypeSize(Arg->getType()) <
3349 getContext().getTargetInfo().getPointerWidth(0) &&
3350 Arg->isNullPointerConstant(getContext(),
3351 Expr::NPC_ValueDependentIsNotNull)) {
3352 return getContext().getIntPtrType();
3353 }
3354
3355 return Arg->getType();
3356}
3357
Dan Gohmanb49bd272012-02-16 00:57:37 +00003358// In ObjC ARC mode with no ObjC ARC exception safety, tell the ARC
3359// optimizer it can aggressively ignore unwind edges.
3360void
3361CodeGenFunction::AddObjCARCExceptionMetadata(llvm::Instruction *Inst) {
3362 if (CGM.getCodeGenOpts().OptimizationLevel != 0 &&
3363 !CGM.getCodeGenOpts().ObjCAutoRefCountExceptions)
3364 Inst->setMetadata("clang.arc.no_objc_arc_exceptions",
3365 CGM.getNoObjCARCExceptionsMetadata());
3366}
3367
John McCallbd7370a2013-02-28 19:01:20 +00003368/// Emits a call to the given no-arguments nounwind runtime function.
3369llvm::CallInst *
3370CodeGenFunction::EmitNounwindRuntimeCall(llvm::Value *callee,
3371 const llvm::Twine &name) {
Stephen Hines176edba2014-12-01 14:53:08 -08003372 return EmitNounwindRuntimeCall(callee, None, name);
John McCallbd7370a2013-02-28 19:01:20 +00003373}
3374
3375/// Emits a call to the given nounwind runtime function.
3376llvm::CallInst *
3377CodeGenFunction::EmitNounwindRuntimeCall(llvm::Value *callee,
3378 ArrayRef<llvm::Value*> args,
3379 const llvm::Twine &name) {
3380 llvm::CallInst *call = EmitRuntimeCall(callee, args, name);
3381 call->setDoesNotThrow();
3382 return call;
3383}
3384
3385/// Emits a simple call (never an invoke) to the given no-arguments
3386/// runtime function.
3387llvm::CallInst *
3388CodeGenFunction::EmitRuntimeCall(llvm::Value *callee,
3389 const llvm::Twine &name) {
Stephen Hines176edba2014-12-01 14:53:08 -08003390 return EmitRuntimeCall(callee, None, name);
John McCallbd7370a2013-02-28 19:01:20 +00003391}
3392
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003393// Calls which may throw must have operand bundles indicating which funclet
3394// they are nested within.
3395static void
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07003396getBundlesForFunclet(llvm::Value *Callee, llvm::Instruction *CurrentFuncletPad,
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003397 SmallVectorImpl<llvm::OperandBundleDef> &BundleList) {
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07003398 // There is no need for a funclet operand bundle if we aren't inside a
3399 // funclet.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003400 if (!CurrentFuncletPad)
3401 return;
3402
3403 // Skip intrinsics which cannot throw.
3404 auto *CalleeFn = dyn_cast<llvm::Function>(Callee->stripPointerCasts());
3405 if (CalleeFn && CalleeFn->isIntrinsic() && CalleeFn->doesNotThrow())
3406 return;
3407
3408 BundleList.emplace_back("funclet", CurrentFuncletPad);
3409}
3410
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07003411/// Emits a simple call (never an invoke) to the given runtime function.
3412llvm::CallInst *
3413CodeGenFunction::EmitRuntimeCall(llvm::Value *callee,
3414 ArrayRef<llvm::Value*> args,
3415 const llvm::Twine &name) {
3416 SmallVector<llvm::OperandBundleDef, 1> BundleList;
3417 getBundlesForFunclet(callee, CurrentFuncletPad, BundleList);
3418
3419 llvm::CallInst *call = Builder.CreateCall(callee, args, BundleList, name);
3420 call->setCallingConv(getRuntimeCC());
3421 return call;
3422}
3423
John McCallbd7370a2013-02-28 19:01:20 +00003424/// Emits a call or invoke to the given noreturn runtime function.
3425void CodeGenFunction::EmitNoreturnRuntimeCallOrInvoke(llvm::Value *callee,
3426 ArrayRef<llvm::Value*> args) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003427 SmallVector<llvm::OperandBundleDef, 1> BundleList;
3428 getBundlesForFunclet(callee, CurrentFuncletPad, BundleList);
3429
John McCallbd7370a2013-02-28 19:01:20 +00003430 if (getInvokeDest()) {
3431 llvm::InvokeInst *invoke =
3432 Builder.CreateInvoke(callee,
3433 getUnreachableBlock(),
3434 getInvokeDest(),
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003435 args,
3436 BundleList);
John McCallbd7370a2013-02-28 19:01:20 +00003437 invoke->setDoesNotReturn();
3438 invoke->setCallingConv(getRuntimeCC());
3439 } else {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003440 llvm::CallInst *call = Builder.CreateCall(callee, args, BundleList);
John McCallbd7370a2013-02-28 19:01:20 +00003441 call->setDoesNotReturn();
3442 call->setCallingConv(getRuntimeCC());
3443 Builder.CreateUnreachable();
3444 }
3445}
3446
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07003447/// Emits a call or invoke instruction to the given nullary runtime function.
John McCallbd7370a2013-02-28 19:01:20 +00003448llvm::CallSite
3449CodeGenFunction::EmitRuntimeCallOrInvoke(llvm::Value *callee,
3450 const Twine &name) {
Stephen Hines176edba2014-12-01 14:53:08 -08003451 return EmitRuntimeCallOrInvoke(callee, None, name);
John McCallbd7370a2013-02-28 19:01:20 +00003452}
3453
3454/// Emits a call or invoke instruction to the given runtime function.
3455llvm::CallSite
3456CodeGenFunction::EmitRuntimeCallOrInvoke(llvm::Value *callee,
3457 ArrayRef<llvm::Value*> args,
3458 const Twine &name) {
3459 llvm::CallSite callSite = EmitCallOrInvoke(callee, args, name);
3460 callSite.setCallingConv(getRuntimeCC());
3461 return callSite;
3462}
3463
John McCallf1549f62010-07-06 01:34:17 +00003464/// Emits a call or invoke instruction to the given function, depending
3465/// on the current state of the EH stack.
3466llvm::CallSite
3467CodeGenFunction::EmitCallOrInvoke(llvm::Value *Callee,
Chris Lattner2d3ba4f2011-07-23 17:14:25 +00003468 ArrayRef<llvm::Value *> Args,
Chris Lattner5f9e2722011-07-23 10:55:15 +00003469 const Twine &Name) {
John McCallf1549f62010-07-06 01:34:17 +00003470 llvm::BasicBlock *InvokeDest = getInvokeDest();
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07003471 SmallVector<llvm::OperandBundleDef, 1> BundleList;
3472 getBundlesForFunclet(Callee, CurrentFuncletPad, BundleList);
John McCallf1549f62010-07-06 01:34:17 +00003473
Dan Gohmanb49bd272012-02-16 00:57:37 +00003474 llvm::Instruction *Inst;
3475 if (!InvokeDest)
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07003476 Inst = Builder.CreateCall(Callee, Args, BundleList, Name);
Dan Gohmanb49bd272012-02-16 00:57:37 +00003477 else {
3478 llvm::BasicBlock *ContBB = createBasicBlock("invoke.cont");
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07003479 Inst = Builder.CreateInvoke(Callee, ContBB, InvokeDest, Args, BundleList,
3480 Name);
Dan Gohmanb49bd272012-02-16 00:57:37 +00003481 EmitBlock(ContBB);
3482 }
3483
3484 // In ObjC ARC mode with no ObjC ARC exception safety, tell the ARC
3485 // optimizer it can aggressively ignore unwind edges.
David Blaikie4e4d0842012-03-11 07:00:24 +00003486 if (CGM.getLangOpts().ObjCAutoRefCount)
Dan Gohmanb49bd272012-02-16 00:57:37 +00003487 AddObjCARCExceptionMetadata(Inst);
3488
Pirama Arumuga Nainar58878f82015-05-06 11:48:57 -07003489 return llvm::CallSite(Inst);
John McCallf1549f62010-07-06 01:34:17 +00003490}
3491
Stephen Hines651f13c2014-04-23 16:59:28 -07003492/// \brief Store a non-aggregate value to an address to initialize it. For
3493/// initialization, a non-atomic store will be used.
3494static void EmitInitStoreOfNonAggregate(CodeGenFunction &CGF, RValue Src,
3495 LValue Dst) {
3496 if (Src.isScalar())
3497 CGF.EmitStoreOfScalar(Src.getScalarVal(), Dst, /*init=*/true);
3498 else
3499 CGF.EmitStoreOfComplex(Src.getComplexVal(), Dst, /*init=*/true);
3500}
3501
3502void CodeGenFunction::deferPlaceholderReplacement(llvm::Instruction *Old,
3503 llvm::Value *New) {
3504 DeferredReplacements.push_back(std::make_pair(Old, New));
3505}
Chris Lattner811bf362011-07-12 06:29:11 +00003506
Daniel Dunbar88b53962009-02-02 22:03:45 +00003507RValue CodeGenFunction::EmitCall(const CGFunctionInfo &CallInfo,
Mike Stump1eb44332009-09-09 15:08:12 +00003508 llvm::Value *Callee,
Anders Carlssonf3c47c92009-12-24 19:25:24 +00003509 ReturnValueSlot ReturnValue,
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00003510 const CallArgList &CallArgs,
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003511 CGCalleeInfo CalleeInfo,
David Chisnall4b02afc2010-05-02 13:41:58 +00003512 llvm::Instruction **callOrInvoke) {
Mike Stumpf5408fe2009-05-16 07:57:57 +00003513 // FIXME: We no longer need the types from CallArgs; lift up and simplify.
Daniel Dunbar17b708d2008-09-09 23:27:19 +00003514
3515 // Handle struct-return functions by passing a pointer to the
3516 // location that we would like to return into.
Daniel Dunbarbb36d332009-02-02 21:43:58 +00003517 QualType RetTy = CallInfo.getReturnType();
Daniel Dunbarb225be42009-02-03 05:59:18 +00003518 const ABIArgInfo &RetAI = CallInfo.getReturnInfo();
Mike Stump1eb44332009-09-09 15:08:12 +00003519
Chris Lattner70855442011-07-12 04:46:18 +00003520 llvm::FunctionType *IRFuncTy =
3521 cast<llvm::FunctionType>(
3522 cast<llvm::PointerType>(Callee->getType())->getElementType());
Mike Stump1eb44332009-09-09 15:08:12 +00003523
Stephen Hines651f13c2014-04-23 16:59:28 -07003524 // If we're using inalloca, insert the allocation after the stack save.
3525 // FIXME: Do this earlier rather than hacking it in here!
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003526 Address ArgMemory = Address::invalid();
3527 const llvm::StructLayout *ArgMemoryLayout = nullptr;
Stephen Hines651f13c2014-04-23 16:59:28 -07003528 if (llvm::StructType *ArgStruct = CallInfo.getArgStruct()) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003529 ArgMemoryLayout = CGM.getDataLayout().getStructLayout(ArgStruct);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003530 llvm::Instruction *IP = CallArgs.getStackBase();
3531 llvm::AllocaInst *AI;
3532 if (IP) {
3533 IP = IP->getNextNode();
3534 AI = new llvm::AllocaInst(ArgStruct, "argmem", IP);
3535 } else {
3536 AI = CreateTempAlloca(ArgStruct, "argmem");
3537 }
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003538 auto Align = CallInfo.getArgStructAlignment();
3539 AI->setAlignment(Align.getQuantity());
Stephen Hines651f13c2014-04-23 16:59:28 -07003540 AI->setUsedWithInAlloca(true);
3541 assert(AI->isUsedWithInAlloca() && !AI->isStaticAlloca());
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003542 ArgMemory = Address(AI, Align);
Stephen Hines651f13c2014-04-23 16:59:28 -07003543 }
3544
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003545 // Helper function to drill into the inalloca allocation.
3546 auto createInAllocaStructGEP = [&](unsigned FieldIndex) -> Address {
3547 auto FieldOffset =
3548 CharUnits::fromQuantity(ArgMemoryLayout->getElementOffset(FieldIndex));
3549 return Builder.CreateStructGEP(ArgMemory, FieldIndex, FieldOffset);
3550 };
3551
Stephen Hines176edba2014-12-01 14:53:08 -08003552 ClangToLLVMArgMapping IRFunctionArgs(CGM.getContext(), CallInfo);
3553 SmallVector<llvm::Value *, 16> IRCallArgs(IRFunctionArgs.totalIRArgs());
3554
Chris Lattner5db7ae52009-06-13 00:26:38 +00003555 // If the call returns a temporary with struct return, create a temporary
Anders Carlssond2490a92009-12-24 20:40:36 +00003556 // alloca to hold the result, unless one is given to us.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003557 Address SRetPtr = Address::invalid();
Pirama Arumuga Nainarb6d69932015-07-01 12:25:36 -07003558 size_t UnusedReturnSize = 0;
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07003559 if (RetAI.isIndirect() || RetAI.isInAlloca() || RetAI.isCoerceAndExpand()) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003560 if (!ReturnValue.isNull()) {
3561 SRetPtr = ReturnValue.getValue();
3562 } else {
Stephen Hines651f13c2014-04-23 16:59:28 -07003563 SRetPtr = CreateMemTemp(RetTy);
Pirama Arumuga Nainarb6d69932015-07-01 12:25:36 -07003564 if (HaveInsertPoint() && ReturnValue.isUnused()) {
3565 uint64_t size =
3566 CGM.getDataLayout().getTypeAllocSize(ConvertTypeForMem(RetTy));
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003567 if (EmitLifetimeStart(size, SRetPtr.getPointer()))
Pirama Arumuga Nainarb6d69932015-07-01 12:25:36 -07003568 UnusedReturnSize = size;
3569 }
3570 }
Stephen Hines176edba2014-12-01 14:53:08 -08003571 if (IRFunctionArgs.hasSRetArg()) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003572 IRCallArgs[IRFunctionArgs.getSRetArgNo()] = SRetPtr.getPointer();
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07003573 } else if (RetAI.isInAlloca()) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003574 Address Addr = createInAllocaStructGEP(RetAI.getInAllocaFieldIndex());
3575 Builder.CreateStore(SRetPtr.getPointer(), Addr);
Stephen Hines651f13c2014-04-23 16:59:28 -07003576 }
Anders Carlssond2490a92009-12-24 20:40:36 +00003577 }
Mike Stump1eb44332009-09-09 15:08:12 +00003578
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07003579 Address swiftErrorTemp = Address::invalid();
3580 Address swiftErrorArg = Address::invalid();
3581
Daniel Dunbar4b5f0a42009-02-04 21:17:21 +00003582 assert(CallInfo.arg_size() == CallArgs.size() &&
3583 "Mismatch between function signature & arguments.");
Stephen Hines176edba2014-12-01 14:53:08 -08003584 unsigned ArgNo = 0;
Daniel Dunbarb225be42009-02-03 05:59:18 +00003585 CGFunctionInfo::const_arg_iterator info_it = CallInfo.arg_begin();
Mike Stump1eb44332009-09-09 15:08:12 +00003586 for (CallArgList::const_iterator I = CallArgs.begin(), E = CallArgs.end();
Stephen Hines176edba2014-12-01 14:53:08 -08003587 I != E; ++I, ++info_it, ++ArgNo) {
Daniel Dunbarb225be42009-02-03 05:59:18 +00003588 const ABIArgInfo &ArgInfo = info_it->info;
Eli Friedmanc6d07822011-05-02 18:05:27 +00003589 RValue RV = I->RV;
Daniel Dunbar56273772008-09-17 00:51:38 +00003590
Rafael Espindolae4aeeaa2012-10-24 01:59:00 +00003591 // Insert a padding argument to ensure proper alignment.
Stephen Hines176edba2014-12-01 14:53:08 -08003592 if (IRFunctionArgs.hasPaddingArg(ArgNo))
3593 IRCallArgs[IRFunctionArgs.getPaddingArgNo(ArgNo)] =
3594 llvm::UndefValue::get(ArgInfo.getPaddingType());
3595
3596 unsigned FirstIRArg, NumIRArgs;
3597 std::tie(FirstIRArg, NumIRArgs) = IRFunctionArgs.getIRArgs(ArgNo);
Rafael Espindolae4aeeaa2012-10-24 01:59:00 +00003598
Daniel Dunbar56273772008-09-17 00:51:38 +00003599 switch (ArgInfo.getKind()) {
Stephen Hines651f13c2014-04-23 16:59:28 -07003600 case ABIArgInfo::InAlloca: {
Stephen Hines176edba2014-12-01 14:53:08 -08003601 assert(NumIRArgs == 0);
Stephen Hines651f13c2014-04-23 16:59:28 -07003602 assert(getTarget().getTriple().getArch() == llvm::Triple::x86);
3603 if (RV.isAggregate()) {
3604 // Replace the placeholder with the appropriate argument slot GEP.
3605 llvm::Instruction *Placeholder =
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003606 cast<llvm::Instruction>(RV.getAggregatePointer());
Stephen Hines651f13c2014-04-23 16:59:28 -07003607 CGBuilderTy::InsertPoint IP = Builder.saveIP();
3608 Builder.SetInsertPoint(Placeholder);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003609 Address Addr = createInAllocaStructGEP(ArgInfo.getInAllocaFieldIndex());
Stephen Hines651f13c2014-04-23 16:59:28 -07003610 Builder.restoreIP(IP);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003611 deferPlaceholderReplacement(Placeholder, Addr.getPointer());
Stephen Hines651f13c2014-04-23 16:59:28 -07003612 } else {
3613 // Store the RValue into the argument struct.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003614 Address Addr = createInAllocaStructGEP(ArgInfo.getInAllocaFieldIndex());
3615 unsigned AS = Addr.getType()->getPointerAddressSpace();
Stephen Hines651f13c2014-04-23 16:59:28 -07003616 llvm::Type *MemType = ConvertTypeForMem(I->Ty)->getPointerTo(AS);
3617 // There are some cases where a trivial bitcast is not avoidable. The
3618 // definition of a type later in a translation unit may change it's type
3619 // from {}* to (%struct.foo*)*.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003620 if (Addr.getType() != MemType)
Stephen Hines651f13c2014-04-23 16:59:28 -07003621 Addr = Builder.CreateBitCast(Addr, MemType);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003622 LValue argLV = MakeAddrLValue(Addr, I->Ty);
Stephen Hines651f13c2014-04-23 16:59:28 -07003623 EmitInitStoreOfNonAggregate(*this, RV, argLV);
3624 }
Stephen Hines176edba2014-12-01 14:53:08 -08003625 break;
Stephen Hines651f13c2014-04-23 16:59:28 -07003626 }
3627
Daniel Dunbar91a16fa2010-08-21 02:24:36 +00003628 case ABIArgInfo::Indirect: {
Stephen Hines176edba2014-12-01 14:53:08 -08003629 assert(NumIRArgs == 1);
Daniel Dunbar1f745982009-02-05 09:16:39 +00003630 if (RV.isScalar() || RV.isComplex()) {
3631 // Make a temporary alloca to pass the argument.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003632 Address Addr = CreateMemTemp(I->Ty, ArgInfo.getIndirectAlign());
3633 IRCallArgs[FirstIRArg] = Addr.getPointer();
John McCall9d232c82013-03-07 21:37:08 +00003634
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003635 LValue argLV = MakeAddrLValue(Addr, I->Ty);
Stephen Hines651f13c2014-04-23 16:59:28 -07003636 EmitInitStoreOfNonAggregate(*this, RV, argLV);
Daniel Dunbar1f745982009-02-05 09:16:39 +00003637 } else {
Eli Friedmanea5e4da2011-06-14 01:37:52 +00003638 // We want to avoid creating an unnecessary temporary+copy here;
Guy Benyeid436c992013-03-10 12:59:00 +00003639 // however, we need one in three cases:
Eli Friedmanea5e4da2011-06-14 01:37:52 +00003640 // 1. If the argument is not byval, and we are required to copy the
3641 // source. (This case doesn't occur on any common architecture.)
3642 // 2. If the argument is byval, RV is not sufficiently aligned, and
3643 // we cannot force it to be sufficiently aligned.
Guy Benyeid436c992013-03-10 12:59:00 +00003644 // 3. If the argument is byval, but RV is located in an address space
3645 // different than that of the argument (0).
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003646 Address Addr = RV.getAggregateAddress();
3647 CharUnits Align = ArgInfo.getIndirectAlign();
Micah Villmow25a6a842012-10-08 16:25:52 +00003648 const llvm::DataLayout *TD = &CGM.getDataLayout();
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003649 const unsigned RVAddrSpace = Addr.getType()->getAddressSpace();
Stephen Hines176edba2014-12-01 14:53:08 -08003650 const unsigned ArgAddrSpace =
3651 (FirstIRArg < IRFuncTy->getNumParams()
3652 ? IRFuncTy->getParamType(FirstIRArg)->getPointerAddressSpace()
3653 : 0);
Eli Friedman97cb5a42011-06-15 22:09:18 +00003654 if ((!ArgInfo.getIndirectByVal() && I->NeedsCopy) ||
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003655 (ArgInfo.getIndirectByVal() && Addr.getAlignment() < Align &&
3656 llvm::getOrEnforceKnownAlignment(Addr.getPointer(),
3657 Align.getQuantity(), *TD)
3658 < Align.getQuantity()) ||
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -07003659 (ArgInfo.getIndirectByVal() && (RVAddrSpace != ArgAddrSpace))) {
Eli Friedmanea5e4da2011-06-14 01:37:52 +00003660 // Create an aligned temporary, and copy to it.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003661 Address AI = CreateMemTemp(I->Ty, ArgInfo.getIndirectAlign());
3662 IRCallArgs[FirstIRArg] = AI.getPointer();
Chad Rosier649b4a12012-03-29 17:37:10 +00003663 EmitAggregateCopy(AI, Addr, I->Ty, RV.isVolatileQualified());
Eli Friedmanea5e4da2011-06-14 01:37:52 +00003664 } else {
3665 // Skip the extra memcpy call.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003666 IRCallArgs[FirstIRArg] = Addr.getPointer();
Eli Friedmanea5e4da2011-06-14 01:37:52 +00003667 }
Daniel Dunbar1f745982009-02-05 09:16:39 +00003668 }
3669 break;
Daniel Dunbar91a16fa2010-08-21 02:24:36 +00003670 }
Daniel Dunbar1f745982009-02-05 09:16:39 +00003671
Daniel Dunbar11434922009-01-26 21:26:08 +00003672 case ABIArgInfo::Ignore:
Stephen Hines176edba2014-12-01 14:53:08 -08003673 assert(NumIRArgs == 0);
Daniel Dunbar11434922009-01-26 21:26:08 +00003674 break;
Michael J. Spencer9cac4942010-10-19 06:39:39 +00003675
Chris Lattner800588f2010-07-29 06:26:06 +00003676 case ABIArgInfo::Extend:
3677 case ABIArgInfo::Direct: {
3678 if (!isa<llvm::StructType>(ArgInfo.getCoerceToType()) &&
Chris Lattner117e3f42010-07-30 04:02:24 +00003679 ArgInfo.getCoerceToType() == ConvertType(info_it->type) &&
3680 ArgInfo.getDirectOffset() == 0) {
Stephen Hines176edba2014-12-01 14:53:08 -08003681 assert(NumIRArgs == 1);
Chris Lattner70855442011-07-12 04:46:18 +00003682 llvm::Value *V;
Chris Lattner800588f2010-07-29 06:26:06 +00003683 if (RV.isScalar())
Chris Lattner70855442011-07-12 04:46:18 +00003684 V = RV.getScalarVal();
Chris Lattner800588f2010-07-29 06:26:06 +00003685 else
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003686 V = Builder.CreateLoad(RV.getAggregateAddress());
Stephen Hines176edba2014-12-01 14:53:08 -08003687
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07003688 // Implement swifterror by copying into a new swifterror argument.
3689 // We'll write back in the normal path out of the call.
3690 if (CallInfo.getExtParameterInfo(ArgNo).getABI()
3691 == ParameterABI::SwiftErrorResult) {
3692 assert(!swiftErrorTemp.isValid() && "multiple swifterror args");
3693
3694 QualType pointeeTy = I->Ty->getPointeeType();
3695 swiftErrorArg =
3696 Address(V, getContext().getTypeAlignInChars(pointeeTy));
3697
3698 swiftErrorTemp =
3699 CreateMemTemp(pointeeTy, getPointerAlign(), "swifterror.temp");
3700 V = swiftErrorTemp.getPointer();
3701 cast<llvm::AllocaInst>(V)->setSwiftError(true);
3702
3703 llvm::Value *errorValue = Builder.CreateLoad(swiftErrorArg);
3704 Builder.CreateStore(errorValue, swiftErrorTemp);
3705 }
3706
Stephen Hines176edba2014-12-01 14:53:08 -08003707 // We might have to widen integers, but we should never truncate.
3708 if (ArgInfo.getCoerceToType() != V->getType() &&
3709 V->getType()->isIntegerTy())
3710 V = Builder.CreateZExt(V, ArgInfo.getCoerceToType());
3711
Chris Lattner21ca1fd2011-07-12 04:53:39 +00003712 // If the argument doesn't match, perform a bitcast to coerce it. This
3713 // can happen due to trivial type mismatches.
Stephen Hines176edba2014-12-01 14:53:08 -08003714 if (FirstIRArg < IRFuncTy->getNumParams() &&
3715 V->getType() != IRFuncTy->getParamType(FirstIRArg))
3716 V = Builder.CreateBitCast(V, IRFuncTy->getParamType(FirstIRArg));
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07003717
Stephen Hines176edba2014-12-01 14:53:08 -08003718 IRCallArgs[FirstIRArg] = V;
Chris Lattner800588f2010-07-29 06:26:06 +00003719 break;
3720 }
Daniel Dunbar11434922009-01-26 21:26:08 +00003721
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +00003722 // FIXME: Avoid the conversion through memory if possible.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003723 Address Src = Address::invalid();
John McCall9d232c82013-03-07 21:37:08 +00003724 if (RV.isScalar() || RV.isComplex()) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003725 Src = CreateMemTemp(I->Ty, "coerce");
3726 LValue SrcLV = MakeAddrLValue(Src, I->Ty);
Stephen Hines651f13c2014-04-23 16:59:28 -07003727 EmitInitStoreOfNonAggregate(*this, RV, SrcLV);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003728 } else {
3729 Src = RV.getAggregateAddress();
3730 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +00003731
Chris Lattner117e3f42010-07-30 04:02:24 +00003732 // If the value is offset in memory, apply the offset now.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003733 Src = emitAddressAtOffset(*this, Src, ArgInfo);
Michael J. Spencer9cac4942010-10-19 06:39:39 +00003734
Stephen Hines176edba2014-12-01 14:53:08 -08003735 // Fast-isel and the optimizer generally like scalar values better than
3736 // FCAs, so we flatten them if this is safe to do for this argument.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003737 llvm::StructType *STy =
3738 dyn_cast<llvm::StructType>(ArgInfo.getCoerceToType());
Stephen Hines176edba2014-12-01 14:53:08 -08003739 if (STy && ArgInfo.isDirect() && ArgInfo.getCanBeFlattened()) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003740 llvm::Type *SrcTy = Src.getType()->getElementType();
Chandler Carruthf82232c2012-10-10 11:29:08 +00003741 uint64_t SrcSize = CGM.getDataLayout().getTypeAllocSize(SrcTy);
3742 uint64_t DstSize = CGM.getDataLayout().getTypeAllocSize(STy);
3743
3744 // If the source type is smaller than the destination type of the
3745 // coerce-to logic, copy the source value into a temp alloca the size
3746 // of the destination type to allow loading all of it. The bits past
3747 // the source value are left undef.
3748 if (SrcSize < DstSize) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003749 Address TempAlloca
3750 = CreateTempAlloca(STy, Src.getAlignment(),
3751 Src.getName() + ".coerce");
3752 Builder.CreateMemCpy(TempAlloca, Src, SrcSize);
3753 Src = TempAlloca;
Chandler Carruthf82232c2012-10-10 11:29:08 +00003754 } else {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003755 Src = Builder.CreateBitCast(Src, llvm::PointerType::getUnqual(STy));
Chandler Carruthf82232c2012-10-10 11:29:08 +00003756 }
3757
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003758 auto SrcLayout = CGM.getDataLayout().getStructLayout(STy);
Stephen Hines176edba2014-12-01 14:53:08 -08003759 assert(NumIRArgs == STy->getNumElements());
Chris Lattner92826882010-07-05 20:41:41 +00003760 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003761 auto Offset = CharUnits::fromQuantity(SrcLayout->getElementOffset(i));
3762 Address EltPtr = Builder.CreateStructGEP(Src, i, Offset);
3763 llvm::Value *LI = Builder.CreateLoad(EltPtr);
Stephen Hines176edba2014-12-01 14:53:08 -08003764 IRCallArgs[FirstIRArg + i] = LI;
Chris Lattner309c59f2010-06-29 00:06:42 +00003765 }
Chris Lattnerce700162010-06-28 23:44:11 +00003766 } else {
Chris Lattner309c59f2010-06-29 00:06:42 +00003767 // In the simple case, just pass the coerced loaded value.
Stephen Hines176edba2014-12-01 14:53:08 -08003768 assert(NumIRArgs == 1);
3769 IRCallArgs[FirstIRArg] =
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003770 CreateCoercedLoad(Src, ArgInfo.getCoerceToType(), *this);
Chris Lattnerce700162010-06-28 23:44:11 +00003771 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +00003772
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +00003773 break;
3774 }
3775
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07003776 case ABIArgInfo::CoerceAndExpand: {
3777 auto coercionType = ArgInfo.getCoerceAndExpandType();
3778 auto layout = CGM.getDataLayout().getStructLayout(coercionType);
3779
3780 llvm::Value *tempSize = nullptr;
3781 Address addr = Address::invalid();
3782 if (RV.isAggregate()) {
3783 addr = RV.getAggregateAddress();
3784 } else {
3785 assert(RV.isScalar()); // complex should always just be direct
3786
3787 llvm::Type *scalarType = RV.getScalarVal()->getType();
3788 auto scalarSize = CGM.getDataLayout().getTypeAllocSize(scalarType);
3789 auto scalarAlign = CGM.getDataLayout().getPrefTypeAlignment(scalarType);
3790
3791 tempSize = llvm::ConstantInt::get(CGM.Int64Ty, scalarSize);
3792
3793 // Materialize to a temporary.
3794 addr = CreateTempAlloca(RV.getScalarVal()->getType(),
3795 CharUnits::fromQuantity(std::max(layout->getAlignment(),
3796 scalarAlign)));
3797 EmitLifetimeStart(scalarSize, addr.getPointer());
3798
3799 Builder.CreateStore(RV.getScalarVal(), addr);
3800 }
3801
3802 addr = Builder.CreateElementBitCast(addr, coercionType);
3803
3804 unsigned IRArgPos = FirstIRArg;
3805 for (unsigned i = 0, e = coercionType->getNumElements(); i != e; ++i) {
3806 llvm::Type *eltType = coercionType->getElementType(i);
3807 if (ABIArgInfo::isPaddingForCoerceAndExpand(eltType)) continue;
3808 Address eltAddr = Builder.CreateStructGEP(addr, i, layout);
3809 llvm::Value *elt = Builder.CreateLoad(eltAddr);
3810 IRCallArgs[IRArgPos++] = elt;
3811 }
3812 assert(IRArgPos == FirstIRArg + NumIRArgs);
3813
3814 if (tempSize) {
3815 EmitLifetimeEnd(tempSize, addr.getPointer());
3816 }
3817
3818 break;
3819 }
3820
Daniel Dunbar56273772008-09-17 00:51:38 +00003821 case ABIArgInfo::Expand:
Stephen Hines176edba2014-12-01 14:53:08 -08003822 unsigned IRArgPos = FirstIRArg;
3823 ExpandTypeToArgs(I->Ty, RV, IRFuncTy, IRCallArgs, IRArgPos);
3824 assert(IRArgPos == FirstIRArg + NumIRArgs);
Daniel Dunbar56273772008-09-17 00:51:38 +00003825 break;
Daniel Dunbar17b708d2008-09-09 23:27:19 +00003826 }
3827 }
Mike Stump1eb44332009-09-09 15:08:12 +00003828
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003829 if (ArgMemory.isValid()) {
3830 llvm::Value *Arg = ArgMemory.getPointer();
Stephen Hinesc568f1e2014-07-21 00:47:37 -07003831 if (CallInfo.isVariadic()) {
3832 // When passing non-POD arguments by value to variadic functions, we will
3833 // end up with a variadic prototype and an inalloca call site. In such
3834 // cases, we can't do any parameter mismatch checks. Give up and bitcast
3835 // the callee.
3836 unsigned CalleeAS =
3837 cast<llvm::PointerType>(Callee->getType())->getAddressSpace();
3838 Callee = Builder.CreateBitCast(
3839 Callee, getTypes().GetFunctionType(CallInfo)->getPointerTo(CalleeAS));
3840 } else {
3841 llvm::Type *LastParamTy =
3842 IRFuncTy->getParamType(IRFuncTy->getNumParams() - 1);
3843 if (Arg->getType() != LastParamTy) {
Stephen Hines651f13c2014-04-23 16:59:28 -07003844#ifndef NDEBUG
Stephen Hinesc568f1e2014-07-21 00:47:37 -07003845 // Assert that these structs have equivalent element types.
3846 llvm::StructType *FullTy = CallInfo.getArgStruct();
3847 llvm::StructType *DeclaredTy = cast<llvm::StructType>(
3848 cast<llvm::PointerType>(LastParamTy)->getElementType());
3849 assert(DeclaredTy->getNumElements() == FullTy->getNumElements());
3850 for (llvm::StructType::element_iterator DI = DeclaredTy->element_begin(),
3851 DE = DeclaredTy->element_end(),
3852 FI = FullTy->element_begin();
3853 DI != DE; ++DI, ++FI)
3854 assert(*DI == *FI);
Stephen Hines651f13c2014-04-23 16:59:28 -07003855#endif
Stephen Hinesc568f1e2014-07-21 00:47:37 -07003856 Arg = Builder.CreateBitCast(Arg, LastParamTy);
3857 }
Stephen Hines651f13c2014-04-23 16:59:28 -07003858 }
Stephen Hines176edba2014-12-01 14:53:08 -08003859 assert(IRFunctionArgs.hasInallocaArg());
3860 IRCallArgs[IRFunctionArgs.getInallocaArgNo()] = Arg;
Stephen Hines651f13c2014-04-23 16:59:28 -07003861 }
3862
Reid Kleckner9b601952013-06-21 12:45:15 +00003863 if (!CallArgs.getCleanupsToDeactivate().empty())
3864 deactivateArgCleanupsBeforeCall(*this, CallArgs);
3865
Chris Lattner5db7ae52009-06-13 00:26:38 +00003866 // If the callee is a bitcast of a function to a varargs pointer to function
3867 // type, check to see if we can remove the bitcast. This handles some cases
3868 // with unprototyped functions.
3869 if (llvm::ConstantExpr *CE = dyn_cast<llvm::ConstantExpr>(Callee))
3870 if (llvm::Function *CalleeF = dyn_cast<llvm::Function>(CE->getOperand(0))) {
Chris Lattner2acc6e32011-07-18 04:24:23 +00003871 llvm::PointerType *CurPT=cast<llvm::PointerType>(Callee->getType());
3872 llvm::FunctionType *CurFT =
Chris Lattner5db7ae52009-06-13 00:26:38 +00003873 cast<llvm::FunctionType>(CurPT->getElementType());
Chris Lattner2acc6e32011-07-18 04:24:23 +00003874 llvm::FunctionType *ActualFT = CalleeF->getFunctionType();
Mike Stump1eb44332009-09-09 15:08:12 +00003875
Chris Lattner5db7ae52009-06-13 00:26:38 +00003876 if (CE->getOpcode() == llvm::Instruction::BitCast &&
3877 ActualFT->getReturnType() == CurFT->getReturnType() &&
Chris Lattnerd6bebbf2009-06-23 01:38:41 +00003878 ActualFT->getNumParams() == CurFT->getNumParams() &&
Stephen Hines176edba2014-12-01 14:53:08 -08003879 ActualFT->getNumParams() == IRCallArgs.size() &&
Fariborz Jahanianc0ddef22011-03-01 17:28:13 +00003880 (CurFT->isVarArg() || !ActualFT->isVarArg())) {
Chris Lattner5db7ae52009-06-13 00:26:38 +00003881 bool ArgsMatch = true;
3882 for (unsigned i = 0, e = ActualFT->getNumParams(); i != e; ++i)
3883 if (ActualFT->getParamType(i) != CurFT->getParamType(i)) {
3884 ArgsMatch = false;
3885 break;
3886 }
Mike Stump1eb44332009-09-09 15:08:12 +00003887
Chris Lattner5db7ae52009-06-13 00:26:38 +00003888 // Strip the cast if we can get away with it. This is a nice cleanup,
3889 // but also allows us to inline the function at -O0 if it is marked
3890 // always_inline.
3891 if (ArgsMatch)
3892 Callee = CalleeF;
3893 }
3894 }
Mike Stump1eb44332009-09-09 15:08:12 +00003895
Stephen Hines176edba2014-12-01 14:53:08 -08003896 assert(IRCallArgs.size() == IRFuncTy->getNumParams() || IRFuncTy->isVarArg());
3897 for (unsigned i = 0; i < IRCallArgs.size(); ++i) {
3898 // Inalloca argument can have different type.
3899 if (IRFunctionArgs.hasInallocaArg() &&
3900 i == IRFunctionArgs.getInallocaArgNo())
3901 continue;
3902 if (i < IRFuncTy->getNumParams())
3903 assert(IRCallArgs[i]->getType() == IRFuncTy->getParamType(i));
3904 }
3905
Daniel Dunbarca6408c2009-09-12 00:59:20 +00003906 unsigned CallingConv;
Devang Patel761d7f72008-09-25 21:02:23 +00003907 CodeGen::AttributeListType AttributeList;
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07003908 CGM.ConstructAttributeList(Callee->getName(), CallInfo, CalleeInfo,
3909 AttributeList, CallingConv,
3910 /*AttrOnCallSite=*/true);
Bill Wendling785b7782012-12-07 23:17:26 +00003911 llvm::AttributeSet Attrs = llvm::AttributeSet::get(getLLVMContext(),
Bill Wendling94236e72013-02-22 00:13:35 +00003912 AttributeList);
Mike Stump1eb44332009-09-09 15:08:12 +00003913
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003914 bool CannotThrow;
3915 if (currentFunctionUsesSEHTry()) {
3916 // SEH cares about asynchronous exceptions, everything can "throw."
3917 CannotThrow = false;
3918 } else if (isCleanupPadScope() &&
3919 EHPersonality::get(*this).isMSVCXXPersonality()) {
3920 // The MSVC++ personality will implicitly terminate the program if an
3921 // exception is thrown. An unwind edge cannot be reached.
3922 CannotThrow = true;
3923 } else {
3924 // Otherwise, nowunind callsites will never throw.
3925 CannotThrow = Attrs.hasAttribute(llvm::AttributeSet::FunctionIndex,
3926 llvm::Attribute::NoUnwind);
3927 }
3928 llvm::BasicBlock *InvokeDest = CannotThrow ? nullptr : getInvokeDest();
3929
3930 SmallVector<llvm::OperandBundleDef, 1> BundleList;
3931 getBundlesForFunclet(Callee, CurrentFuncletPad, BundleList);
John McCallf1549f62010-07-06 01:34:17 +00003932
Daniel Dunbard14151d2009-03-02 04:32:35 +00003933 llvm::CallSite CS;
John McCallf1549f62010-07-06 01:34:17 +00003934 if (!InvokeDest) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003935 CS = Builder.CreateCall(Callee, IRCallArgs, BundleList);
Daniel Dunbar9834ffb2009-02-23 17:26:39 +00003936 } else {
3937 llvm::BasicBlock *Cont = createBasicBlock("invoke.cont");
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003938 CS = Builder.CreateInvoke(Callee, Cont, InvokeDest, IRCallArgs,
3939 BundleList);
Daniel Dunbar9834ffb2009-02-23 17:26:39 +00003940 EmitBlock(Cont);
Daniel Dunbarf4fe0f02009-02-20 18:54:31 +00003941 }
Chris Lattnerce933992010-06-29 16:40:28 +00003942 if (callOrInvoke)
David Chisnall4b02afc2010-05-02 13:41:58 +00003943 *callOrInvoke = CS.getInstruction();
Daniel Dunbarf4fe0f02009-02-20 18:54:31 +00003944
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003945 if (CurCodeDecl && CurCodeDecl->hasAttr<FlattenAttr>() &&
3946 !CS.hasFnAttr(llvm::Attribute::NoInline))
3947 Attrs =
3948 Attrs.addAttribute(getLLVMContext(), llvm::AttributeSet::FunctionIndex,
3949 llvm::Attribute::AlwaysInline);
3950
Stephen Hines0e2c34f2015-03-23 12:09:02 -07003951 // Disable inlining inside SEH __try blocks.
3952 if (isSEHTryScope())
3953 Attrs =
3954 Attrs.addAttribute(getLLVMContext(), llvm::AttributeSet::FunctionIndex,
3955 llvm::Attribute::NoInline);
3956
Daniel Dunbard14151d2009-03-02 04:32:35 +00003957 CS.setAttributes(Attrs);
Daniel Dunbarca6408c2009-09-12 00:59:20 +00003958 CS.setCallingConv(static_cast<llvm::CallingConv::ID>(CallingConv));
Daniel Dunbard14151d2009-03-02 04:32:35 +00003959
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07003960 // Insert instrumentation or attach profile metadata at indirect call sites.
3961 // For more details, see the comment before the definition of
3962 // IPVK_IndirectCallTarget in InstrProfData.inc.
3963 if (!CS.getCalledFunction())
3964 PGO.valueProfile(Builder, llvm::IPVK_IndirectCallTarget,
3965 CS.getInstruction(), Callee);
3966
Dan Gohmanb49bd272012-02-16 00:57:37 +00003967 // In ObjC ARC mode with no ObjC ARC exception safety, tell the ARC
3968 // optimizer it can aggressively ignore unwind edges.
David Blaikie4e4d0842012-03-11 07:00:24 +00003969 if (CGM.getLangOpts().ObjCAutoRefCount)
Dan Gohmanb49bd272012-02-16 00:57:37 +00003970 AddObjCARCExceptionMetadata(CS.getInstruction());
3971
Daniel Dunbard14151d2009-03-02 04:32:35 +00003972 // If the call doesn't return, finish the basic block and clear the
3973 // insertion point; this allows the rest of IRgen to discard
3974 // unreachable code.
3975 if (CS.doesNotReturn()) {
Pirama Arumuga Nainarb6d69932015-07-01 12:25:36 -07003976 if (UnusedReturnSize)
3977 EmitLifetimeEnd(llvm::ConstantInt::get(Int64Ty, UnusedReturnSize),
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08003978 SRetPtr.getPointer());
Pirama Arumuga Nainarb6d69932015-07-01 12:25:36 -07003979
Daniel Dunbard14151d2009-03-02 04:32:35 +00003980 Builder.CreateUnreachable();
3981 Builder.ClearInsertionPoint();
Mike Stump1eb44332009-09-09 15:08:12 +00003982
Mike Stumpf5408fe2009-05-16 07:57:57 +00003983 // FIXME: For now, emit a dummy basic block because expr emitters in
3984 // generally are not ready to handle emitting expressions at unreachable
3985 // points.
Daniel Dunbard14151d2009-03-02 04:32:35 +00003986 EnsureInsertPoint();
Mike Stump1eb44332009-09-09 15:08:12 +00003987
Daniel Dunbard14151d2009-03-02 04:32:35 +00003988 // Return a reasonable RValue.
3989 return GetUndefRValue(RetTy);
Mike Stump1eb44332009-09-09 15:08:12 +00003990 }
Daniel Dunbard14151d2009-03-02 04:32:35 +00003991
3992 llvm::Instruction *CI = CS.getInstruction();
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07003993 if (!CI->getType()->isVoidTy())
Daniel Dunbar17b708d2008-09-09 23:27:19 +00003994 CI->setName("call");
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00003995
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07003996 // Perform the swifterror writeback.
3997 if (swiftErrorTemp.isValid()) {
3998 llvm::Value *errorResult = Builder.CreateLoad(swiftErrorTemp);
3999 Builder.CreateStore(errorResult, swiftErrorArg);
4000 }
4001
John McCallf85e1932011-06-15 23:02:42 +00004002 // Emit any writebacks immediately. Arguably this should happen
4003 // after any return-value munging.
4004 if (CallArgs.hasWritebacks())
4005 emitWritebacks(*this, CallArgs);
4006
Stephen Hines651f13c2014-04-23 16:59:28 -07004007 // The stack cleanup for inalloca arguments has to run out of the normal
4008 // lexical order, so deactivate it and run it manually here.
4009 CallArgs.freeArgumentMemory(*this);
4010
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08004011 if (llvm::CallInst *Call = dyn_cast<llvm::CallInst>(CI)) {
4012 const Decl *TargetDecl = CalleeInfo.getCalleeDecl();
4013 if (TargetDecl && TargetDecl->hasAttr<NotTailCalledAttr>())
4014 Call->setTailCallKind(llvm::CallInst::TCK_NoTail);
4015 }
4016
Stephen Hines176edba2014-12-01 14:53:08 -08004017 RValue Ret = [&] {
4018 switch (RetAI.getKind()) {
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07004019 case ABIArgInfo::CoerceAndExpand: {
4020 auto coercionType = RetAI.getCoerceAndExpandType();
4021 auto layout = CGM.getDataLayout().getStructLayout(coercionType);
4022
4023 Address addr = SRetPtr;
4024 addr = Builder.CreateElementBitCast(addr, coercionType);
4025
4026 assert(CI->getType() == RetAI.getUnpaddedCoerceAndExpandType());
4027 bool requiresExtract = isa<llvm::StructType>(CI->getType());
4028
4029 unsigned unpaddedIndex = 0;
4030 for (unsigned i = 0, e = coercionType->getNumElements(); i != e; ++i) {
4031 llvm::Type *eltType = coercionType->getElementType(i);
4032 if (ABIArgInfo::isPaddingForCoerceAndExpand(eltType)) continue;
4033 Address eltAddr = Builder.CreateStructGEP(addr, i, layout);
4034 llvm::Value *elt = CI;
4035 if (requiresExtract)
4036 elt = Builder.CreateExtractValue(elt, unpaddedIndex++);
4037 else
4038 assert(unpaddedIndex == 0);
4039 Builder.CreateStore(elt, eltAddr);
4040 }
4041 // FALLTHROUGH
4042 }
4043
Stephen Hines176edba2014-12-01 14:53:08 -08004044 case ABIArgInfo::InAlloca:
Pirama Arumuga Nainarb6d69932015-07-01 12:25:36 -07004045 case ABIArgInfo::Indirect: {
4046 RValue ret = convertTempToRValue(SRetPtr, RetTy, SourceLocation());
4047 if (UnusedReturnSize)
4048 EmitLifetimeEnd(llvm::ConstantInt::get(Int64Ty, UnusedReturnSize),
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08004049 SRetPtr.getPointer());
Pirama Arumuga Nainarb6d69932015-07-01 12:25:36 -07004050 return ret;
4051 }
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00004052
Stephen Hines176edba2014-12-01 14:53:08 -08004053 case ABIArgInfo::Ignore:
4054 // If we are ignoring an argument that had a result, make sure to
4055 // construct the appropriate return value for our caller.
4056 return GetUndefRValue(RetTy);
Michael J. Spencer9cac4942010-10-19 06:39:39 +00004057
Stephen Hines176edba2014-12-01 14:53:08 -08004058 case ABIArgInfo::Extend:
4059 case ABIArgInfo::Direct: {
4060 llvm::Type *RetIRTy = ConvertType(RetTy);
4061 if (RetAI.getCoerceToType() == RetIRTy && RetAI.getDirectOffset() == 0) {
4062 switch (getEvaluationKind(RetTy)) {
4063 case TEK_Complex: {
4064 llvm::Value *Real = Builder.CreateExtractValue(CI, 0);
4065 llvm::Value *Imag = Builder.CreateExtractValue(CI, 1);
4066 return RValue::getComplex(std::make_pair(Real, Imag));
Chris Lattner800588f2010-07-29 06:26:06 +00004067 }
Stephen Hines176edba2014-12-01 14:53:08 -08004068 case TEK_Aggregate: {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08004069 Address DestPtr = ReturnValue.getValue();
Stephen Hines176edba2014-12-01 14:53:08 -08004070 bool DestIsVolatile = ReturnValue.isVolatile();
4071
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08004072 if (!DestPtr.isValid()) {
Stephen Hines176edba2014-12-01 14:53:08 -08004073 DestPtr = CreateMemTemp(RetTy, "agg.tmp");
4074 DestIsVolatile = false;
4075 }
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08004076 BuildAggStore(*this, CI, DestPtr, DestIsVolatile);
Stephen Hines176edba2014-12-01 14:53:08 -08004077 return RValue::getAggregate(DestPtr);
4078 }
4079 case TEK_Scalar: {
4080 // If the argument doesn't match, perform a bitcast to coerce it. This
4081 // can happen due to trivial type mismatches.
4082 llvm::Value *V = CI;
4083 if (V->getType() != RetIRTy)
4084 V = Builder.CreateBitCast(V, RetIRTy);
4085 return RValue::get(V);
4086 }
4087 }
4088 llvm_unreachable("bad evaluation kind");
Chris Lattner800588f2010-07-29 06:26:06 +00004089 }
Stephen Hines176edba2014-12-01 14:53:08 -08004090
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08004091 Address DestPtr = ReturnValue.getValue();
Stephen Hines176edba2014-12-01 14:53:08 -08004092 bool DestIsVolatile = ReturnValue.isVolatile();
4093
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08004094 if (!DestPtr.isValid()) {
Stephen Hines176edba2014-12-01 14:53:08 -08004095 DestPtr = CreateMemTemp(RetTy, "coerce");
4096 DestIsVolatile = false;
John McCall9d232c82013-03-07 21:37:08 +00004097 }
Stephen Hines176edba2014-12-01 14:53:08 -08004098
4099 // If the value is offset in memory, apply the offset now.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08004100 Address StorePtr = emitAddressAtOffset(*this, DestPtr, RetAI);
Stephen Hines176edba2014-12-01 14:53:08 -08004101 CreateCoercedStore(CI, StorePtr, DestIsVolatile, *this);
4102
4103 return convertTempToRValue(DestPtr, RetTy, SourceLocation());
Chris Lattner800588f2010-07-29 06:26:06 +00004104 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +00004105
Stephen Hines176edba2014-12-01 14:53:08 -08004106 case ABIArgInfo::Expand:
4107 llvm_unreachable("Invalid ABI kind for return argument");
Anders Carlssond2490a92009-12-24 20:40:36 +00004108 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +00004109
Stephen Hines176edba2014-12-01 14:53:08 -08004110 llvm_unreachable("Unhandled ABIArgInfo::Kind");
4111 } ();
Michael J. Spencer9cac4942010-10-19 06:39:39 +00004112
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08004113 const Decl *TargetDecl = CalleeInfo.getCalleeDecl();
4114
Stephen Hines176edba2014-12-01 14:53:08 -08004115 if (Ret.isScalar() && TargetDecl) {
4116 if (const auto *AA = TargetDecl->getAttr<AssumeAlignedAttr>()) {
4117 llvm::Value *OffsetValue = nullptr;
4118 if (const auto *Offset = AA->getOffset())
4119 OffsetValue = EmitScalarExpr(Offset);
4120
4121 llvm::Value *Alignment = EmitScalarExpr(AA->getAlignment());
4122 llvm::ConstantInt *AlignmentCI = cast<llvm::ConstantInt>(Alignment);
4123 EmitAlignmentAssumption(Ret.getScalarVal(), AlignmentCI->getZExtValue(),
4124 OffsetValue);
4125 }
Daniel Dunbar639ffe42008-09-10 07:04:09 +00004126 }
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00004127
Stephen Hines176edba2014-12-01 14:53:08 -08004128 return Ret;
Daniel Dunbar17b708d2008-09-09 23:27:19 +00004129}
Daniel Dunbarb4094ea2009-02-10 20:44:09 +00004130
4131/* VarArg handling */
4132
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08004133Address CodeGenFunction::EmitVAArg(VAArgExpr *VE, Address &VAListAddr) {
4134 VAListAddr = VE->isMicrosoftABI()
4135 ? EmitMSVAListRef(VE->getSubExpr())
4136 : EmitVAListRef(VE->getSubExpr());
4137 QualType Ty = VE->getType();
4138 if (VE->isMicrosoftABI())
4139 return CGM.getTypes().getABIInfo().EmitMSVAArg(*this, VAListAddr, Ty);
4140 return CGM.getTypes().getABIInfo().EmitVAArg(*this, VAListAddr, Ty);
Daniel Dunbarb4094ea2009-02-10 20:44:09 +00004141}