blob: 2ced44d965e3d684fe55d5247f231459e6b12200 [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"
Chandler Carruth55fc8732012-12-04 09:13:33 +000017#include "CGCXXABI.h"
Daniel Dunbar0dbe2272008-09-08 21:33:45 +000018#include "CodeGenFunction.h"
Daniel Dunbarb7688072008-09-10 00:41:16 +000019#include "CodeGenModule.h"
John McCallde5d3c72012-02-17 03:33:10 +000020#include "TargetInfo.h"
Daniel Dunbar0dbe2272008-09-08 21:33:45 +000021#include "clang/AST/Decl.h"
Anders Carlssonf6f8ae52009-04-03 22:48:58 +000022#include "clang/AST/DeclCXX.h"
Daniel Dunbar0dbe2272008-09-08 21:33:45 +000023#include "clang/AST/DeclObjC.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000024#include "clang/Basic/TargetInfo.h"
Mark Lacey8b549992013-10-30 21:53:58 +000025#include "clang/CodeGen/CGFunctionInfo.h"
Chandler Carruth06057ce2010-06-15 23:19:56 +000026#include "clang/Frontend/CodeGenOptions.h"
Bill Wendlingbe9e8bf2013-02-28 22:49:57 +000027#include "llvm/ADT/StringExtras.h"
Chandler Carruth3b844ba2013-01-02 11:45:17 +000028#include "llvm/IR/Attributes.h"
Stephen Hines651f13c2014-04-23 16:59:28 -070029#include "llvm/IR/CallSite.h"
Chandler Carruth3b844ba2013-01-02 11:45:17 +000030#include "llvm/IR/DataLayout.h"
31#include "llvm/IR/InlineAsm.h"
Stephen Hines651f13c2014-04-23 16:59:28 -070032#include "llvm/IR/Intrinsics.h"
Eli Friedman97cb5a42011-06-15 22:09:18 +000033#include "llvm/Transforms/Utils/Local.h"
Daniel Dunbar0dbe2272008-09-08 21:33:45 +000034using namespace clang;
35using namespace CodeGen;
36
37/***/
38
John McCall04a67a62010-02-05 21:31:56 +000039static unsigned ClangCallConvToLLVMCallConv(CallingConv CC) {
40 switch (CC) {
41 default: return llvm::CallingConv::C;
42 case CC_X86StdCall: return llvm::CallingConv::X86_StdCall;
43 case CC_X86FastCall: return llvm::CallingConv::X86_FastCall;
Douglas Gregorf813a2c2010-05-18 16:57:00 +000044 case CC_X86ThisCall: return llvm::CallingConv::X86_ThisCall;
Charles Davise8519c32013-08-30 04:39:01 +000045 case CC_X86_64Win64: return llvm::CallingConv::X86_64_Win64;
46 case CC_X86_64SysV: return llvm::CallingConv::X86_64_SysV;
Anton Korobeynikov414d8962011-04-14 20:06:49 +000047 case CC_AAPCS: return llvm::CallingConv::ARM_AAPCS;
48 case CC_AAPCS_VFP: return llvm::CallingConv::ARM_AAPCS_VFP;
Guy Benyei38980082012-12-25 08:53:55 +000049 case CC_IntelOclBicc: return llvm::CallingConv::Intel_OCL_BI;
Stephen Hines176edba2014-12-01 14:53:08 -080050 // TODO: Add support for __pascal to LLVM.
51 case CC_X86Pascal: return llvm::CallingConv::C;
52 // TODO: Add support for __vectorcall to LLVM.
53 case CC_X86VectorCall: return llvm::CallingConv::X86_VectorCall;
John McCall04a67a62010-02-05 21:31:56 +000054 }
55}
56
John McCall0b0ef0a2010-02-24 07:14:12 +000057/// Derives the 'this' type for codegen purposes, i.e. ignoring method
58/// qualification.
59/// FIXME: address space qualification?
John McCallead608a2010-02-26 00:48:12 +000060static CanQualType GetThisType(ASTContext &Context, const CXXRecordDecl *RD) {
61 QualType RecTy = Context.getTagDeclType(RD)->getCanonicalTypeInternal();
62 return Context.getPointerType(CanQualType::CreateUnsafe(RecTy));
Daniel Dunbar45c25ba2008-09-10 04:01:49 +000063}
64
John McCall0b0ef0a2010-02-24 07:14:12 +000065/// Returns the canonical formal type of the given C++ method.
John McCallead608a2010-02-26 00:48:12 +000066static CanQual<FunctionProtoType> GetFormalType(const CXXMethodDecl *MD) {
67 return MD->getType()->getCanonicalTypeUnqualified()
68 .getAs<FunctionProtoType>();
John McCall0b0ef0a2010-02-24 07:14:12 +000069}
70
71/// Returns the "extra-canonicalized" return type, which discards
72/// qualifiers on the return type. Codegen doesn't care about them,
73/// and it makes ABI code a little easier to be able to assume that
74/// all parameter and return types are top-level unqualified.
John McCallead608a2010-02-26 00:48:12 +000075static CanQualType GetReturnType(QualType RetTy) {
76 return RetTy->getCanonicalTypeUnqualified().getUnqualifiedType();
John McCall0b0ef0a2010-02-24 07:14:12 +000077}
78
John McCall0f3d0972012-07-07 06:41:13 +000079/// Arrange the argument and result information for a value of the given
80/// unprototyped freestanding function type.
John McCall0b0ef0a2010-02-24 07:14:12 +000081const CGFunctionInfo &
John McCall0f3d0972012-07-07 06:41:13 +000082CodeGenTypes::arrangeFreeFunctionType(CanQual<FunctionNoProtoType> FTNP) {
John McCallde5d3c72012-02-17 03:33:10 +000083 // When translating an unprototyped function type, always use a
84 // variadic type.
Stephen Hines651f13c2014-04-23 16:59:28 -070085 return arrangeLLVMFunctionInfo(FTNP->getReturnType().getUnqualifiedType(),
86 false, None, FTNP->getExtInfo(),
87 RequiredArgs(0));
John McCall0b0ef0a2010-02-24 07:14:12 +000088}
89
John McCall0f3d0972012-07-07 06:41:13 +000090/// Arrange the LLVM function layout for a value of the given function
Stephen Hines176edba2014-12-01 14:53:08 -080091/// type, on top of any implicit parameters already stored.
92static const CGFunctionInfo &
93arrangeLLVMFunctionInfo(CodeGenTypes &CGT, bool IsInstanceMethod,
94 SmallVectorImpl<CanQualType> &prefix,
95 CanQual<FunctionProtoType> FTP) {
John McCall0f3d0972012-07-07 06:41:13 +000096 RequiredArgs required = RequiredArgs::forPrototypePlus(FTP, prefix.size());
Daniel Dunbar541b63b2009-02-02 23:23:47 +000097 // FIXME: Kill copy.
Stephen Hines651f13c2014-04-23 16:59:28 -070098 for (unsigned i = 0, e = FTP->getNumParams(); i != e; ++i)
99 prefix.push_back(FTP->getParamType(i));
100 CanQualType resultType = FTP->getReturnType().getUnqualifiedType();
101 return CGT.arrangeLLVMFunctionInfo(resultType, IsInstanceMethod, prefix,
Stephen Hines176edba2014-12-01 14:53:08 -0800102 FTP->getExtInfo(), required);
John McCall0b0ef0a2010-02-24 07:14:12 +0000103}
104
John McCallde5d3c72012-02-17 03:33:10 +0000105/// Arrange the argument and result information for a value of the
John McCall0f3d0972012-07-07 06:41:13 +0000106/// given freestanding function type.
John McCall0b0ef0a2010-02-24 07:14:12 +0000107const CGFunctionInfo &
John McCall0f3d0972012-07-07 06:41:13 +0000108CodeGenTypes::arrangeFreeFunctionType(CanQual<FunctionProtoType> FTP) {
John McCallde5d3c72012-02-17 03:33:10 +0000109 SmallVector<CanQualType, 16> argTypes;
Stephen Hines176edba2014-12-01 14:53:08 -0800110 return ::arrangeLLVMFunctionInfo(*this, false, argTypes, FTP);
Daniel Dunbarbac7c252009-09-11 22:24:53 +0000111}
112
Stephen Hines651f13c2014-04-23 16:59:28 -0700113static CallingConv getCallingConventionForDecl(const Decl *D, bool IsWindows) {
Daniel Dunbarbac7c252009-09-11 22:24:53 +0000114 // Set the appropriate calling convention for the Function.
115 if (D->hasAttr<StdCallAttr>())
John McCall04a67a62010-02-05 21:31:56 +0000116 return CC_X86StdCall;
Daniel Dunbarbac7c252009-09-11 22:24:53 +0000117
118 if (D->hasAttr<FastCallAttr>())
John McCall04a67a62010-02-05 21:31:56 +0000119 return CC_X86FastCall;
Daniel Dunbarbac7c252009-09-11 22:24:53 +0000120
Douglas Gregorf813a2c2010-05-18 16:57:00 +0000121 if (D->hasAttr<ThisCallAttr>())
122 return CC_X86ThisCall;
123
Stephen Hines176edba2014-12-01 14:53:08 -0800124 if (D->hasAttr<VectorCallAttr>())
125 return CC_X86VectorCall;
126
Dawn Perchik52fc3142010-09-03 01:29:35 +0000127 if (D->hasAttr<PascalAttr>())
128 return CC_X86Pascal;
129
Anton Korobeynikov414d8962011-04-14 20:06:49 +0000130 if (PcsAttr *PCS = D->getAttr<PcsAttr>())
131 return (PCS->getPCS() == PcsAttr::AAPCS ? CC_AAPCS : CC_AAPCS_VFP);
132
Derek Schuff263366f2012-10-16 22:30:41 +0000133 if (D->hasAttr<PnaclCallAttr>())
134 return CC_PnaclCall;
135
Guy Benyei38980082012-12-25 08:53:55 +0000136 if (D->hasAttr<IntelOclBiccAttr>())
137 return CC_IntelOclBicc;
138
Stephen Hines651f13c2014-04-23 16:59:28 -0700139 if (D->hasAttr<MSABIAttr>())
140 return IsWindows ? CC_C : CC_X86_64Win64;
141
142 if (D->hasAttr<SysVABIAttr>())
143 return IsWindows ? CC_X86_64SysV : CC_C;
144
John McCall04a67a62010-02-05 21:31:56 +0000145 return CC_C;
Daniel Dunbar45c25ba2008-09-10 04:01:49 +0000146}
147
John McCallde5d3c72012-02-17 03:33:10 +0000148/// Arrange the argument and result information for a call to an
149/// unknown C++ non-static member function of the given abstract type.
Timur Iskhodzhanov8f189a92013-08-21 06:25:03 +0000150/// (Zero value of RD means we don't have any meaningful "this" argument type,
151/// so fall back to a generic pointer type).
John McCallde5d3c72012-02-17 03:33:10 +0000152/// The member function must be an ordinary function, i.e. not a
153/// constructor or destructor.
154const CGFunctionInfo &
155CodeGenTypes::arrangeCXXMethodType(const CXXRecordDecl *RD,
156 const FunctionProtoType *FTP) {
157 SmallVector<CanQualType, 16> argTypes;
John McCall0b0ef0a2010-02-24 07:14:12 +0000158
Anders Carlsson375c31c2009-10-03 19:43:08 +0000159 // Add the 'this' pointer.
Timur Iskhodzhanov8f189a92013-08-21 06:25:03 +0000160 if (RD)
161 argTypes.push_back(GetThisType(Context, RD));
162 else
163 argTypes.push_back(Context.VoidPtrTy);
John McCall0b0ef0a2010-02-24 07:14:12 +0000164
Stephen Hines176edba2014-12-01 14:53:08 -0800165 return ::arrangeLLVMFunctionInfo(
166 *this, true, argTypes,
167 FTP->getCanonicalTypeUnqualified().getAs<FunctionProtoType>());
Anders Carlsson375c31c2009-10-03 19:43:08 +0000168}
169
John McCallde5d3c72012-02-17 03:33:10 +0000170/// Arrange the argument and result information for a declaration or
171/// definition of the given C++ non-static member function. The
172/// member function must be an ordinary function, i.e. not a
173/// constructor or destructor.
174const CGFunctionInfo &
175CodeGenTypes::arrangeCXXMethodDeclaration(const CXXMethodDecl *MD) {
Benjamin Kramere5753592013-09-09 14:48:42 +0000176 assert(!isa<CXXConstructorDecl>(MD) && "wrong method for constructors!");
John McCallfc400282010-09-03 01:26:39 +0000177 assert(!isa<CXXDestructorDecl>(MD) && "wrong method for destructors!");
178
John McCallde5d3c72012-02-17 03:33:10 +0000179 CanQual<FunctionProtoType> prototype = GetFormalType(MD);
Mike Stump1eb44332009-09-09 15:08:12 +0000180
John McCallde5d3c72012-02-17 03:33:10 +0000181 if (MD->isInstance()) {
182 // The abstract case is perfectly fine.
Mark Lacey25296602013-10-02 20:35:23 +0000183 const CXXRecordDecl *ThisType = TheCXXABI.getThisArgumentTypeForMethod(MD);
Timur Iskhodzhanov8f189a92013-08-21 06:25:03 +0000184 return arrangeCXXMethodType(ThisType, prototype.getTypePtr());
John McCallde5d3c72012-02-17 03:33:10 +0000185 }
186
John McCall0f3d0972012-07-07 06:41:13 +0000187 return arrangeFreeFunctionType(prototype);
Anders Carlssonf6f8ae52009-04-03 22:48:58 +0000188}
189
John McCallde5d3c72012-02-17 03:33:10 +0000190const CGFunctionInfo &
Stephen Hines176edba2014-12-01 14:53:08 -0800191CodeGenTypes::arrangeCXXStructorDeclaration(const CXXMethodDecl *MD,
192 StructorType Type) {
193
John McCallde5d3c72012-02-17 03:33:10 +0000194 SmallVector<CanQualType, 16> argTypes;
Stephen Hines176edba2014-12-01 14:53:08 -0800195 argTypes.push_back(GetThisType(Context, MD->getParent()));
Stephen Lin3b50e8d2013-06-30 20:40:16 +0000196
Stephen Hines176edba2014-12-01 14:53:08 -0800197 GlobalDecl GD;
198 if (auto *CD = dyn_cast<CXXConstructorDecl>(MD)) {
199 GD = GlobalDecl(CD, toCXXCtorType(Type));
200 } else {
201 auto *DD = dyn_cast<CXXDestructorDecl>(MD);
202 GD = GlobalDecl(DD, toCXXDtorType(Type));
203 }
Anders Carlssonf6c56e22009-11-25 03:15:49 +0000204
Stephen Hines176edba2014-12-01 14:53:08 -0800205 CanQual<FunctionProtoType> FTP = GetFormalType(MD);
John McCall4c40d982010-08-31 07:33:07 +0000206
207 // Add the formal parameters.
Stephen Hines651f13c2014-04-23 16:59:28 -0700208 for (unsigned i = 0, e = FTP->getNumParams(); i != e; ++i)
209 argTypes.push_back(FTP->getParamType(i));
210
Stephen Hines176edba2014-12-01 14:53:08 -0800211 TheCXXABI.buildStructorSignature(MD, Type, argTypes);
Stephen Hines651f13c2014-04-23 16:59:28 -0700212
213 RequiredArgs required =
Stephen Hines176edba2014-12-01 14:53:08 -0800214 (MD->isVariadic() ? RequiredArgs(argTypes.size()) : RequiredArgs::All);
John McCall4c40d982010-08-31 07:33:07 +0000215
John McCall0f3d0972012-07-07 06:41:13 +0000216 FunctionType::ExtInfo extInfo = FTP->getExtInfo();
Stephen Hines176edba2014-12-01 14:53:08 -0800217 CanQualType resultType = TheCXXABI.HasThisReturn(GD)
218 ? argTypes.front()
219 : TheCXXABI.hasMostDerivedReturn(GD)
220 ? CGM.getContext().VoidPtrTy
221 : Context.VoidTy;
Stephen Hines651f13c2014-04-23 16:59:28 -0700222 return arrangeLLVMFunctionInfo(resultType, true, argTypes, extInfo, required);
223}
224
225/// Arrange a call to a C++ method, passing the given arguments.
226const CGFunctionInfo &
227CodeGenTypes::arrangeCXXConstructorCall(const CallArgList &args,
228 const CXXConstructorDecl *D,
229 CXXCtorType CtorKind,
230 unsigned ExtraArgs) {
231 // FIXME: Kill copy.
232 SmallVector<CanQualType, 16> ArgTypes;
Stephen Hines176edba2014-12-01 14:53:08 -0800233 for (const auto &Arg : args)
234 ArgTypes.push_back(Context.getCanonicalParamType(Arg.Ty));
Stephen Hines651f13c2014-04-23 16:59:28 -0700235
236 CanQual<FunctionProtoType> FPT = GetFormalType(D);
237 RequiredArgs Required = RequiredArgs::forPrototypePlus(FPT, 1 + ExtraArgs);
238 GlobalDecl GD(D, CtorKind);
Stephen Hines176edba2014-12-01 14:53:08 -0800239 CanQualType ResultType = TheCXXABI.HasThisReturn(GD)
240 ? ArgTypes.front()
241 : TheCXXABI.hasMostDerivedReturn(GD)
242 ? CGM.getContext().VoidPtrTy
243 : Context.VoidTy;
Stephen Hines651f13c2014-04-23 16:59:28 -0700244
245 FunctionType::ExtInfo Info = FPT->getExtInfo();
246 return arrangeLLVMFunctionInfo(ResultType, true, ArgTypes, Info, Required);
Anders Carlssonf6c56e22009-11-25 03:15:49 +0000247}
248
John McCallde5d3c72012-02-17 03:33:10 +0000249/// Arrange the argument and result information for the declaration or
250/// definition of the given function.
251const CGFunctionInfo &
252CodeGenTypes::arrangeFunctionDeclaration(const FunctionDecl *FD) {
Chris Lattner3eb67ca2009-05-12 20:27:19 +0000253 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD))
Anders Carlssonf6f8ae52009-04-03 22:48:58 +0000254 if (MD->isInstance())
John McCallde5d3c72012-02-17 03:33:10 +0000255 return arrangeCXXMethodDeclaration(MD);
Mike Stump1eb44332009-09-09 15:08:12 +0000256
John McCallead608a2010-02-26 00:48:12 +0000257 CanQualType FTy = FD->getType()->getCanonicalTypeUnqualified();
John McCallde5d3c72012-02-17 03:33:10 +0000258
John McCallead608a2010-02-26 00:48:12 +0000259 assert(isa<FunctionType>(FTy));
John McCallde5d3c72012-02-17 03:33:10 +0000260
261 // When declaring a function without a prototype, always use a
262 // non-variadic type.
263 if (isa<FunctionNoProtoType>(FTy)) {
264 CanQual<FunctionNoProtoType> noProto = FTy.getAs<FunctionNoProtoType>();
Stephen Hines651f13c2014-04-23 16:59:28 -0700265 return arrangeLLVMFunctionInfo(noProto->getReturnType(), false, None,
Dmitri Gribenko55431692013-05-05 00:41:58 +0000266 noProto->getExtInfo(), RequiredArgs::All);
John McCallde5d3c72012-02-17 03:33:10 +0000267 }
268
John McCallead608a2010-02-26 00:48:12 +0000269 assert(isa<FunctionProtoType>(FTy));
John McCall0f3d0972012-07-07 06:41:13 +0000270 return arrangeFreeFunctionType(FTy.getAs<FunctionProtoType>());
Daniel Dunbar0dbe2272008-09-08 21:33:45 +0000271}
272
John McCallde5d3c72012-02-17 03:33:10 +0000273/// Arrange the argument and result information for the declaration or
274/// definition of an Objective-C method.
275const CGFunctionInfo &
276CodeGenTypes::arrangeObjCMethodDeclaration(const ObjCMethodDecl *MD) {
277 // It happens that this is the same as a call with no optional
278 // arguments, except also using the formal 'self' type.
279 return arrangeObjCMessageSendSignature(MD, MD->getSelfDecl()->getType());
280}
281
282/// Arrange the argument and result information for the function type
283/// through which to perform a send to the given Objective-C method,
284/// using the given receiver type. The receiver type is not always
285/// the 'self' type of the method or even an Objective-C pointer type.
286/// This is *not* the right method for actually performing such a
287/// message send, due to the possibility of optional arguments.
288const CGFunctionInfo &
289CodeGenTypes::arrangeObjCMessageSendSignature(const ObjCMethodDecl *MD,
290 QualType receiverType) {
291 SmallVector<CanQualType, 16> argTys;
292 argTys.push_back(Context.getCanonicalParamType(receiverType));
293 argTys.push_back(Context.getCanonicalParamType(Context.getObjCSelType()));
Daniel Dunbar541b63b2009-02-02 23:23:47 +0000294 // FIXME: Kill copy?
Stephen Hines651f13c2014-04-23 16:59:28 -0700295 for (const auto *I : MD->params()) {
296 argTys.push_back(Context.getCanonicalParamType(I->getType()));
John McCall0b0ef0a2010-02-24 07:14:12 +0000297 }
John McCallf85e1932011-06-15 23:02:42 +0000298
299 FunctionType::ExtInfo einfo;
Stephen Hines651f13c2014-04-23 16:59:28 -0700300 bool IsWindows = getContext().getTargetInfo().getTriple().isOSWindows();
301 einfo = einfo.withCallingConv(getCallingConventionForDecl(MD, IsWindows));
John McCallf85e1932011-06-15 23:02:42 +0000302
David Blaikie4e4d0842012-03-11 07:00:24 +0000303 if (getContext().getLangOpts().ObjCAutoRefCount &&
John McCallf85e1932011-06-15 23:02:42 +0000304 MD->hasAttr<NSReturnsRetainedAttr>())
305 einfo = einfo.withProducesResult(true);
306
John McCallde5d3c72012-02-17 03:33:10 +0000307 RequiredArgs required =
308 (MD->isVariadic() ? RequiredArgs(argTys.size()) : RequiredArgs::All);
309
Stephen Hines651f13c2014-04-23 16:59:28 -0700310 return arrangeLLVMFunctionInfo(GetReturnType(MD->getReturnType()), false,
311 argTys, einfo, required);
Daniel Dunbar0dbe2272008-09-08 21:33:45 +0000312}
313
John McCallde5d3c72012-02-17 03:33:10 +0000314const CGFunctionInfo &
315CodeGenTypes::arrangeGlobalDeclaration(GlobalDecl GD) {
Anders Carlssonb2bcf1c2010-02-06 02:44:09 +0000316 // FIXME: Do we need to handle ObjCMethodDecl?
317 const FunctionDecl *FD = cast<FunctionDecl>(GD.getDecl());
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000318
Anders Carlssonb2bcf1c2010-02-06 02:44:09 +0000319 if (const CXXConstructorDecl *CD = dyn_cast<CXXConstructorDecl>(FD))
Stephen Hines176edba2014-12-01 14:53:08 -0800320 return arrangeCXXStructorDeclaration(CD, getFromCtorType(GD.getCtorType()));
Anders Carlssonb2bcf1c2010-02-06 02:44:09 +0000321
322 if (const CXXDestructorDecl *DD = dyn_cast<CXXDestructorDecl>(FD))
Stephen Hines176edba2014-12-01 14:53:08 -0800323 return arrangeCXXStructorDeclaration(DD, getFromDtorType(GD.getDtorType()));
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000324
John McCallde5d3c72012-02-17 03:33:10 +0000325 return arrangeFunctionDeclaration(FD);
Anders Carlssonb2bcf1c2010-02-06 02:44:09 +0000326}
327
Stephen Hines176edba2014-12-01 14:53:08 -0800328/// Arrange a thunk that takes 'this' as the first parameter followed by
329/// varargs. Return a void pointer, regardless of the actual return type.
330/// The body of the thunk will end in a musttail call to a function of the
331/// correct type, and the caller will bitcast the function to the correct
332/// prototype.
333const CGFunctionInfo &
334CodeGenTypes::arrangeMSMemberPointerThunk(const CXXMethodDecl *MD) {
335 assert(MD->isVirtual() && "only virtual memptrs have thunks");
336 CanQual<FunctionProtoType> FTP = GetFormalType(MD);
337 CanQualType ArgTys[] = { GetThisType(Context, MD->getParent()) };
338 return arrangeLLVMFunctionInfo(Context.VoidTy, false, ArgTys,
339 FTP->getExtInfo(), RequiredArgs(1));
340}
341
John McCalle56bb362012-12-07 07:03:17 +0000342/// Arrange a call as unto a free function, except possibly with an
343/// additional number of formal parameters considered required.
344static const CGFunctionInfo &
345arrangeFreeFunctionLikeCall(CodeGenTypes &CGT,
Mark Laceyc3f7fd62013-10-10 20:57:00 +0000346 CodeGenModule &CGM,
John McCalle56bb362012-12-07 07:03:17 +0000347 const CallArgList &args,
348 const FunctionType *fnType,
349 unsigned numExtraRequiredArgs) {
350 assert(args.size() >= numExtraRequiredArgs);
351
352 // In most cases, there are no optional arguments.
353 RequiredArgs required = RequiredArgs::All;
354
355 // If we have a variadic prototype, the required arguments are the
356 // extra prefix plus the arguments in the prototype.
357 if (const FunctionProtoType *proto = dyn_cast<FunctionProtoType>(fnType)) {
358 if (proto->isVariadic())
Stephen Hines651f13c2014-04-23 16:59:28 -0700359 required = RequiredArgs(proto->getNumParams() + numExtraRequiredArgs);
John McCalle56bb362012-12-07 07:03:17 +0000360
361 // If we don't have a prototype at all, but we're supposed to
362 // explicitly use the variadic convention for unprototyped calls,
363 // treat all of the arguments as required but preserve the nominal
364 // possibility of variadics.
Mark Laceyc3f7fd62013-10-10 20:57:00 +0000365 } else if (CGM.getTargetCodeGenInfo()
366 .isNoProtoCallVariadic(args,
367 cast<FunctionNoProtoType>(fnType))) {
John McCalle56bb362012-12-07 07:03:17 +0000368 required = RequiredArgs(args.size());
369 }
370
Stephen Hines651f13c2014-04-23 16:59:28 -0700371 return CGT.arrangeFreeFunctionCall(fnType->getReturnType(), args,
John McCalle56bb362012-12-07 07:03:17 +0000372 fnType->getExtInfo(), required);
373}
374
John McCallde5d3c72012-02-17 03:33:10 +0000375/// Figure out the rules for calling a function with the given formal
376/// type using the given arguments. The arguments are necessary
377/// because the function might be unprototyped, in which case it's
378/// target-dependent in crazy ways.
379const CGFunctionInfo &
John McCall0f3d0972012-07-07 06:41:13 +0000380CodeGenTypes::arrangeFreeFunctionCall(const CallArgList &args,
381 const FunctionType *fnType) {
Mark Laceyc3f7fd62013-10-10 20:57:00 +0000382 return arrangeFreeFunctionLikeCall(*this, CGM, args, fnType, 0);
John McCalle56bb362012-12-07 07:03:17 +0000383}
John McCallde5d3c72012-02-17 03:33:10 +0000384
John McCalle56bb362012-12-07 07:03:17 +0000385/// A block function call is essentially a free-function call with an
386/// extra implicit argument.
387const CGFunctionInfo &
388CodeGenTypes::arrangeBlockFunctionCall(const CallArgList &args,
389 const FunctionType *fnType) {
Mark Laceyc3f7fd62013-10-10 20:57:00 +0000390 return arrangeFreeFunctionLikeCall(*this, CGM, args, fnType, 1);
John McCallde5d3c72012-02-17 03:33:10 +0000391}
392
393const CGFunctionInfo &
John McCall0f3d0972012-07-07 06:41:13 +0000394CodeGenTypes::arrangeFreeFunctionCall(QualType resultType,
395 const CallArgList &args,
396 FunctionType::ExtInfo info,
397 RequiredArgs required) {
Daniel Dunbar541b63b2009-02-02 23:23:47 +0000398 // FIXME: Kill copy.
John McCallde5d3c72012-02-17 03:33:10 +0000399 SmallVector<CanQualType, 16> argTypes;
Stephen Hines176edba2014-12-01 14:53:08 -0800400 for (const auto &Arg : args)
401 argTypes.push_back(Context.getCanonicalParamType(Arg.Ty));
Stephen Hines651f13c2014-04-23 16:59:28 -0700402 return arrangeLLVMFunctionInfo(GetReturnType(resultType), false, argTypes,
403 info, required);
John McCall0f3d0972012-07-07 06:41:13 +0000404}
405
406/// Arrange a call to a C++ method, passing the given arguments.
407const CGFunctionInfo &
408CodeGenTypes::arrangeCXXMethodCall(const CallArgList &args,
409 const FunctionProtoType *FPT,
410 RequiredArgs required) {
411 // FIXME: Kill copy.
412 SmallVector<CanQualType, 16> argTypes;
Stephen Hines176edba2014-12-01 14:53:08 -0800413 for (const auto &Arg : args)
414 argTypes.push_back(Context.getCanonicalParamType(Arg.Ty));
John McCall0f3d0972012-07-07 06:41:13 +0000415
416 FunctionType::ExtInfo info = FPT->getExtInfo();
Stephen Hines651f13c2014-04-23 16:59:28 -0700417 return arrangeLLVMFunctionInfo(GetReturnType(FPT->getReturnType()), true,
John McCall0f3d0972012-07-07 06:41:13 +0000418 argTypes, info, required);
Daniel Dunbar725ad312009-01-31 02:19:00 +0000419}
420
Stephen Hines651f13c2014-04-23 16:59:28 -0700421const CGFunctionInfo &CodeGenTypes::arrangeFreeFunctionDeclaration(
422 QualType resultType, const FunctionArgList &args,
423 const FunctionType::ExtInfo &info, bool isVariadic) {
Daniel Dunbar541b63b2009-02-02 23:23:47 +0000424 // FIXME: Kill copy.
John McCallde5d3c72012-02-17 03:33:10 +0000425 SmallVector<CanQualType, 16> argTypes;
Stephen Hines176edba2014-12-01 14:53:08 -0800426 for (auto Arg : args)
427 argTypes.push_back(Context.getCanonicalParamType(Arg->getType()));
John McCallde5d3c72012-02-17 03:33:10 +0000428
429 RequiredArgs required =
430 (isVariadic ? RequiredArgs(args.size()) : RequiredArgs::All);
Stephen Hines651f13c2014-04-23 16:59:28 -0700431 return arrangeLLVMFunctionInfo(GetReturnType(resultType), false, argTypes, info,
John McCall0f3d0972012-07-07 06:41:13 +0000432 required);
Daniel Dunbar541b63b2009-02-02 23:23:47 +0000433}
434
John McCallde5d3c72012-02-17 03:33:10 +0000435const CGFunctionInfo &CodeGenTypes::arrangeNullaryFunction() {
Stephen Hines651f13c2014-04-23 16:59:28 -0700436 return arrangeLLVMFunctionInfo(getContext().VoidTy, false, None,
John McCall0f3d0972012-07-07 06:41:13 +0000437 FunctionType::ExtInfo(), RequiredArgs::All);
John McCalld26bc762011-03-09 04:27:21 +0000438}
439
John McCallde5d3c72012-02-17 03:33:10 +0000440/// Arrange the argument and result information for an abstract value
441/// of a given function type. This is the method which all of the
442/// above functions ultimately defer to.
443const CGFunctionInfo &
John McCall0f3d0972012-07-07 06:41:13 +0000444CodeGenTypes::arrangeLLVMFunctionInfo(CanQualType resultType,
Stephen Hines651f13c2014-04-23 16:59:28 -0700445 bool IsInstanceMethod,
John McCall0f3d0972012-07-07 06:41:13 +0000446 ArrayRef<CanQualType> argTypes,
447 FunctionType::ExtInfo info,
448 RequiredArgs required) {
John McCallead608a2010-02-26 00:48:12 +0000449#ifndef NDEBUG
John McCallde5d3c72012-02-17 03:33:10 +0000450 for (ArrayRef<CanQualType>::const_iterator
451 I = argTypes.begin(), E = argTypes.end(); I != E; ++I)
John McCallead608a2010-02-26 00:48:12 +0000452 assert(I->isCanonicalAsParam());
453#endif
454
John McCallde5d3c72012-02-17 03:33:10 +0000455 unsigned CC = ClangCallConvToLLVMCallConv(info.getCC());
John McCall04a67a62010-02-05 21:31:56 +0000456
Daniel Dunbar40a6be62009-02-03 00:07:12 +0000457 // Lookup or create unique function info.
458 llvm::FoldingSetNodeID ID;
Stephen Hines651f13c2014-04-23 16:59:28 -0700459 CGFunctionInfo::Profile(ID, IsInstanceMethod, info, required, resultType,
460 argTypes);
Daniel Dunbar40a6be62009-02-03 00:07:12 +0000461
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700462 void *insertPos = nullptr;
John McCallde5d3c72012-02-17 03:33:10 +0000463 CGFunctionInfo *FI = FunctionInfos.FindNodeOrInsertPos(ID, insertPos);
Daniel Dunbar40a6be62009-02-03 00:07:12 +0000464 if (FI)
465 return *FI;
466
John McCallde5d3c72012-02-17 03:33:10 +0000467 // Construct the function info. We co-allocate the ArgInfos.
Stephen Hines651f13c2014-04-23 16:59:28 -0700468 FI = CGFunctionInfo::create(CC, IsInstanceMethod, info, resultType, argTypes,
469 required);
John McCallde5d3c72012-02-17 03:33:10 +0000470 FunctionInfos.InsertNode(FI, insertPos);
Daniel Dunbar88c2fa92009-02-03 05:31:23 +0000471
Stephen Hines176edba2014-12-01 14:53:08 -0800472 bool inserted = FunctionsBeingProcessed.insert(FI).second;
473 (void)inserted;
John McCallde5d3c72012-02-17 03:33:10 +0000474 assert(inserted && "Recursively being processed?");
Chris Lattner71305cc2011-07-15 05:16:14 +0000475
Daniel Dunbar88c2fa92009-02-03 05:31:23 +0000476 // Compute ABI information.
Chris Lattneree5dcd02010-07-29 02:31:05 +0000477 getABIInfo().computeInfo(*FI);
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000478
Chris Lattner800588f2010-07-29 06:26:06 +0000479 // Loop over all of the computed argument and return value info. If any of
480 // them are direct or extend without a specified coerce type, specify the
481 // default now.
John McCallde5d3c72012-02-17 03:33:10 +0000482 ABIArgInfo &retInfo = FI->getReturnInfo();
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700483 if (retInfo.canHaveCoerceToType() && retInfo.getCoerceToType() == nullptr)
John McCallde5d3c72012-02-17 03:33:10 +0000484 retInfo.setCoerceToType(ConvertType(FI->getReturnType()));
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000485
Stephen Hines651f13c2014-04-23 16:59:28 -0700486 for (auto &I : FI->arguments())
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700487 if (I.info.canHaveCoerceToType() && I.info.getCoerceToType() == nullptr)
Stephen Hines651f13c2014-04-23 16:59:28 -0700488 I.info.setCoerceToType(ConvertType(I.type));
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000489
John McCallde5d3c72012-02-17 03:33:10 +0000490 bool erased = FunctionsBeingProcessed.erase(FI); (void)erased;
491 assert(erased && "Not in set?");
Chris Lattnerd26c0712011-07-15 06:41:05 +0000492
Daniel Dunbar40a6be62009-02-03 00:07:12 +0000493 return *FI;
Daniel Dunbar541b63b2009-02-02 23:23:47 +0000494}
495
John McCallde5d3c72012-02-17 03:33:10 +0000496CGFunctionInfo *CGFunctionInfo::create(unsigned llvmCC,
Stephen Hines651f13c2014-04-23 16:59:28 -0700497 bool IsInstanceMethod,
John McCallde5d3c72012-02-17 03:33:10 +0000498 const FunctionType::ExtInfo &info,
499 CanQualType resultType,
500 ArrayRef<CanQualType> argTypes,
501 RequiredArgs required) {
502 void *buffer = operator new(sizeof(CGFunctionInfo) +
503 sizeof(ArgInfo) * (argTypes.size() + 1));
504 CGFunctionInfo *FI = new(buffer) CGFunctionInfo();
505 FI->CallingConvention = llvmCC;
506 FI->EffectiveCallingConvention = llvmCC;
507 FI->ASTCallingConvention = info.getCC();
Stephen Hines651f13c2014-04-23 16:59:28 -0700508 FI->InstanceMethod = IsInstanceMethod;
John McCallde5d3c72012-02-17 03:33:10 +0000509 FI->NoReturn = info.getNoReturn();
510 FI->ReturnsRetained = info.getProducesResult();
511 FI->Required = required;
512 FI->HasRegParm = info.getHasRegParm();
513 FI->RegParm = info.getRegParm();
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700514 FI->ArgStruct = nullptr;
John McCallde5d3c72012-02-17 03:33:10 +0000515 FI->NumArgs = argTypes.size();
516 FI->getArgsBuffer()[0].type = resultType;
517 for (unsigned i = 0, e = argTypes.size(); i != e; ++i)
518 FI->getArgsBuffer()[i + 1].type = argTypes[i];
519 return FI;
Daniel Dunbar88c2fa92009-02-03 05:31:23 +0000520}
521
522/***/
523
Stephen Hines176edba2014-12-01 14:53:08 -0800524namespace {
525// ABIArgInfo::Expand implementation.
526
527// Specifies the way QualType passed as ABIArgInfo::Expand is expanded.
528struct TypeExpansion {
529 enum TypeExpansionKind {
530 // Elements of constant arrays are expanded recursively.
531 TEK_ConstantArray,
532 // Record fields are expanded recursively (but if record is a union, only
533 // the field with the largest size is expanded).
534 TEK_Record,
535 // For complex types, real and imaginary parts are expanded recursively.
536 TEK_Complex,
537 // All other types are not expandable.
538 TEK_None
539 };
540
541 const TypeExpansionKind Kind;
542
543 TypeExpansion(TypeExpansionKind K) : Kind(K) {}
544 virtual ~TypeExpansion() {}
545};
546
547struct ConstantArrayExpansion : TypeExpansion {
548 QualType EltTy;
549 uint64_t NumElts;
550
551 ConstantArrayExpansion(QualType EltTy, uint64_t NumElts)
552 : TypeExpansion(TEK_ConstantArray), EltTy(EltTy), NumElts(NumElts) {}
553 static bool classof(const TypeExpansion *TE) {
554 return TE->Kind == TEK_ConstantArray;
555 }
556};
557
558struct RecordExpansion : TypeExpansion {
559 SmallVector<const CXXBaseSpecifier *, 1> Bases;
560
561 SmallVector<const FieldDecl *, 1> Fields;
562
563 RecordExpansion(SmallVector<const CXXBaseSpecifier *, 1> &&Bases,
564 SmallVector<const FieldDecl *, 1> &&Fields)
565 : TypeExpansion(TEK_Record), Bases(Bases), Fields(Fields) {}
566 static bool classof(const TypeExpansion *TE) {
567 return TE->Kind == TEK_Record;
568 }
569};
570
571struct ComplexExpansion : TypeExpansion {
572 QualType EltTy;
573
574 ComplexExpansion(QualType EltTy) : TypeExpansion(TEK_Complex), EltTy(EltTy) {}
575 static bool classof(const TypeExpansion *TE) {
576 return TE->Kind == TEK_Complex;
577 }
578};
579
580struct NoExpansion : TypeExpansion {
581 NoExpansion() : TypeExpansion(TEK_None) {}
582 static bool classof(const TypeExpansion *TE) {
583 return TE->Kind == TEK_None;
584 }
585};
586} // namespace
587
588static std::unique_ptr<TypeExpansion>
589getTypeExpansion(QualType Ty, const ASTContext &Context) {
590 if (const ConstantArrayType *AT = Context.getAsConstantArrayType(Ty)) {
591 return llvm::make_unique<ConstantArrayExpansion>(
592 AT->getElementType(), AT->getSize().getZExtValue());
593 }
594 if (const RecordType *RT = Ty->getAs<RecordType>()) {
595 SmallVector<const CXXBaseSpecifier *, 1> Bases;
596 SmallVector<const FieldDecl *, 1> Fields;
Bob Wilson194f06a2011-08-03 05:58:22 +0000597 const RecordDecl *RD = RT->getDecl();
598 assert(!RD->hasFlexibleArrayMember() &&
599 "Cannot expand structure with flexible array.");
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +0000600 if (RD->isUnion()) {
601 // Unions can be here only in degenerative cases - all the fields are same
602 // after flattening. Thus we have to use the "largest" field.
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700603 const FieldDecl *LargestFD = nullptr;
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +0000604 CharUnits UnionSize = CharUnits::Zero();
605
Stephen Hines651f13c2014-04-23 16:59:28 -0700606 for (const auto *FD : RD->fields()) {
Stephen Hines176edba2014-12-01 14:53:08 -0800607 // Skip zero length bitfields.
608 if (FD->isBitField() && FD->getBitWidthValue(Context) == 0)
609 continue;
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +0000610 assert(!FD->isBitField() &&
611 "Cannot expand structure with bit-field members.");
Stephen Hines176edba2014-12-01 14:53:08 -0800612 CharUnits FieldSize = Context.getTypeSizeInChars(FD->getType());
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +0000613 if (UnionSize < FieldSize) {
614 UnionSize = FieldSize;
615 LargestFD = FD;
616 }
617 }
618 if (LargestFD)
Stephen Hines176edba2014-12-01 14:53:08 -0800619 Fields.push_back(LargestFD);
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +0000620 } else {
Stephen Hines176edba2014-12-01 14:53:08 -0800621 if (const auto *CXXRD = dyn_cast<CXXRecordDecl>(RD)) {
622 assert(!CXXRD->isDynamicClass() &&
623 "cannot expand vtable pointers in dynamic classes");
624 for (const CXXBaseSpecifier &BS : CXXRD->bases())
625 Bases.push_back(&BS);
626 }
627
628 for (const auto *FD : RD->fields()) {
629 // Skip zero length bitfields.
630 if (FD->isBitField() && FD->getBitWidthValue(Context) == 0)
631 continue;
632 assert(!FD->isBitField() &&
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +0000633 "Cannot expand structure with bit-field members.");
Stephen Hines176edba2014-12-01 14:53:08 -0800634 Fields.push_back(FD);
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +0000635 }
Bob Wilson194f06a2011-08-03 05:58:22 +0000636 }
Stephen Hines176edba2014-12-01 14:53:08 -0800637 return llvm::make_unique<RecordExpansion>(std::move(Bases),
638 std::move(Fields));
639 }
640 if (const ComplexType *CT = Ty->getAs<ComplexType>()) {
641 return llvm::make_unique<ComplexExpansion>(CT->getElementType());
642 }
643 return llvm::make_unique<NoExpansion>();
Daniel Dunbar56273772008-09-17 00:51:38 +0000644}
645
Stephen Hines176edba2014-12-01 14:53:08 -0800646static int getExpansionSize(QualType Ty, const ASTContext &Context) {
647 auto Exp = getTypeExpansion(Ty, Context);
648 if (auto CAExp = dyn_cast<ConstantArrayExpansion>(Exp.get())) {
649 return CAExp->NumElts * getExpansionSize(CAExp->EltTy, Context);
650 }
651 if (auto RExp = dyn_cast<RecordExpansion>(Exp.get())) {
652 int Res = 0;
653 for (auto BS : RExp->Bases)
654 Res += getExpansionSize(BS->getType(), Context);
655 for (auto FD : RExp->Fields)
656 Res += getExpansionSize(FD->getType(), Context);
657 return Res;
658 }
659 if (isa<ComplexExpansion>(Exp.get()))
660 return 2;
661 assert(isa<NoExpansion>(Exp.get()));
662 return 1;
663}
664
665void
666CodeGenTypes::getExpandedTypes(QualType Ty,
667 SmallVectorImpl<llvm::Type *>::iterator &TI) {
668 auto Exp = getTypeExpansion(Ty, Context);
669 if (auto CAExp = dyn_cast<ConstantArrayExpansion>(Exp.get())) {
670 for (int i = 0, n = CAExp->NumElts; i < n; i++) {
671 getExpandedTypes(CAExp->EltTy, TI);
672 }
673 } else if (auto RExp = dyn_cast<RecordExpansion>(Exp.get())) {
674 for (auto BS : RExp->Bases)
675 getExpandedTypes(BS->getType(), TI);
676 for (auto FD : RExp->Fields)
677 getExpandedTypes(FD->getType(), TI);
678 } else if (auto CExp = dyn_cast<ComplexExpansion>(Exp.get())) {
679 llvm::Type *EltTy = ConvertType(CExp->EltTy);
680 *TI++ = EltTy;
681 *TI++ = EltTy;
682 } else {
683 assert(isa<NoExpansion>(Exp.get()));
684 *TI++ = ConvertType(Ty);
685 }
686}
687
688void CodeGenFunction::ExpandTypeFromArgs(
689 QualType Ty, LValue LV, SmallVectorImpl<llvm::Argument *>::iterator &AI) {
Mike Stump1eb44332009-09-09 15:08:12 +0000690 assert(LV.isSimple() &&
691 "Unexpected non-simple lvalue during struct expansion.");
Daniel Dunbar56273772008-09-17 00:51:38 +0000692
Stephen Hines176edba2014-12-01 14:53:08 -0800693 auto Exp = getTypeExpansion(Ty, getContext());
694 if (auto CAExp = dyn_cast<ConstantArrayExpansion>(Exp.get())) {
695 for (int i = 0, n = CAExp->NumElts; i < n; i++) {
696 llvm::Value *EltAddr = Builder.CreateConstGEP2_32(LV.getAddress(), 0, i);
697 LValue LV = MakeAddrLValue(EltAddr, CAExp->EltTy);
698 ExpandTypeFromArgs(CAExp->EltTy, LV, AI);
Daniel Dunbar56273772008-09-17 00:51:38 +0000699 }
Stephen Hines176edba2014-12-01 14:53:08 -0800700 } else if (auto RExp = dyn_cast<RecordExpansion>(Exp.get())) {
701 llvm::Value *This = LV.getAddress();
702 for (const CXXBaseSpecifier *BS : RExp->Bases) {
703 // Perform a single step derived-to-base conversion.
704 llvm::Value *Base =
705 GetAddressOfBaseClass(This, Ty->getAsCXXRecordDecl(), &BS, &BS + 1,
706 /*NullCheckValue=*/false, SourceLocation());
707 LValue SubLV = MakeAddrLValue(Base, BS->getType());
Bob Wilson194f06a2011-08-03 05:58:22 +0000708
Stephen Hines176edba2014-12-01 14:53:08 -0800709 // Recurse onto bases.
710 ExpandTypeFromArgs(BS->getType(), SubLV, AI);
Bob Wilson194f06a2011-08-03 05:58:22 +0000711 }
Stephen Hines176edba2014-12-01 14:53:08 -0800712 for (auto FD : RExp->Fields) {
713 // FIXME: What are the right qualifiers here?
714 LValue SubLV = EmitLValueForField(LV, FD);
715 ExpandTypeFromArgs(FD->getType(), SubLV, AI);
716 }
717 } else if (auto CExp = dyn_cast<ComplexExpansion>(Exp.get())) {
Eli Friedman377ecc72012-04-16 03:54:45 +0000718 llvm::Value *RealAddr = Builder.CreateStructGEP(LV.getAddress(), 0, "real");
Stephen Hines176edba2014-12-01 14:53:08 -0800719 EmitStoreThroughLValue(RValue::get(*AI++),
720 MakeAddrLValue(RealAddr, CExp->EltTy));
Eli Friedman377ecc72012-04-16 03:54:45 +0000721 llvm::Value *ImagAddr = Builder.CreateStructGEP(LV.getAddress(), 1, "imag");
Stephen Hines176edba2014-12-01 14:53:08 -0800722 EmitStoreThroughLValue(RValue::get(*AI++),
723 MakeAddrLValue(ImagAddr, CExp->EltTy));
Bob Wilson194f06a2011-08-03 05:58:22 +0000724 } else {
Stephen Hines176edba2014-12-01 14:53:08 -0800725 assert(isa<NoExpansion>(Exp.get()));
726 EmitStoreThroughLValue(RValue::get(*AI++), LV);
Daniel Dunbar56273772008-09-17 00:51:38 +0000727 }
Stephen Hines176edba2014-12-01 14:53:08 -0800728}
Daniel Dunbar56273772008-09-17 00:51:38 +0000729
Stephen Hines176edba2014-12-01 14:53:08 -0800730void CodeGenFunction::ExpandTypeToArgs(
731 QualType Ty, RValue RV, llvm::FunctionType *IRFuncTy,
732 SmallVectorImpl<llvm::Value *> &IRCallArgs, unsigned &IRCallArgPos) {
733 auto Exp = getTypeExpansion(Ty, getContext());
734 if (auto CAExp = dyn_cast<ConstantArrayExpansion>(Exp.get())) {
735 llvm::Value *Addr = RV.getAggregateAddr();
736 for (int i = 0, n = CAExp->NumElts; i < n; i++) {
737 llvm::Value *EltAddr = Builder.CreateConstGEP2_32(Addr, 0, i);
738 RValue EltRV =
739 convertTempToRValue(EltAddr, CAExp->EltTy, SourceLocation());
740 ExpandTypeToArgs(CAExp->EltTy, EltRV, IRFuncTy, IRCallArgs, IRCallArgPos);
741 }
742 } else if (auto RExp = dyn_cast<RecordExpansion>(Exp.get())) {
743 llvm::Value *This = RV.getAggregateAddr();
744 for (const CXXBaseSpecifier *BS : RExp->Bases) {
745 // Perform a single step derived-to-base conversion.
746 llvm::Value *Base =
747 GetAddressOfBaseClass(This, Ty->getAsCXXRecordDecl(), &BS, &BS + 1,
748 /*NullCheckValue=*/false, SourceLocation());
749 RValue BaseRV = RValue::getAggregate(Base);
750
751 // Recurse onto bases.
752 ExpandTypeToArgs(BS->getType(), BaseRV, IRFuncTy, IRCallArgs,
753 IRCallArgPos);
754 }
755
756 LValue LV = MakeAddrLValue(This, Ty);
757 for (auto FD : RExp->Fields) {
758 RValue FldRV = EmitRValueForField(LV, FD, SourceLocation());
759 ExpandTypeToArgs(FD->getType(), FldRV, IRFuncTy, IRCallArgs,
760 IRCallArgPos);
761 }
762 } else if (isa<ComplexExpansion>(Exp.get())) {
763 ComplexPairTy CV = RV.getComplexVal();
764 IRCallArgs[IRCallArgPos++] = CV.first;
765 IRCallArgs[IRCallArgPos++] = CV.second;
766 } else {
767 assert(isa<NoExpansion>(Exp.get()));
768 assert(RV.isScalar() &&
769 "Unexpected non-scalar rvalue during struct expansion.");
770
771 // Insert a bitcast as needed.
772 llvm::Value *V = RV.getScalarVal();
773 if (IRCallArgPos < IRFuncTy->getNumParams() &&
774 V->getType() != IRFuncTy->getParamType(IRCallArgPos))
775 V = Builder.CreateBitCast(V, IRFuncTy->getParamType(IRCallArgPos));
776
777 IRCallArgs[IRCallArgPos++] = V;
778 }
Daniel Dunbar56273772008-09-17 00:51:38 +0000779}
780
Chris Lattnere7bb7772010-06-27 06:04:18 +0000781/// EnterStructPointerForCoercedAccess - Given a struct pointer that we are
Chris Lattner08dd2a02010-06-27 05:56:15 +0000782/// accessing some number of bytes out of it, try to gep into the struct to get
783/// at its inner goodness. Dive as deep as possible without entering an element
784/// with an in-memory size smaller than DstSize.
785static llvm::Value *
Chris Lattnere7bb7772010-06-27 06:04:18 +0000786EnterStructPointerForCoercedAccess(llvm::Value *SrcPtr,
Chris Lattner2acc6e32011-07-18 04:24:23 +0000787 llvm::StructType *SrcSTy,
Chris Lattnere7bb7772010-06-27 06:04:18 +0000788 uint64_t DstSize, CodeGenFunction &CGF) {
Chris Lattner08dd2a02010-06-27 05:56:15 +0000789 // We can't dive into a zero-element struct.
790 if (SrcSTy->getNumElements() == 0) return SrcPtr;
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000791
Chris Lattner2acc6e32011-07-18 04:24:23 +0000792 llvm::Type *FirstElt = SrcSTy->getElementType(0);
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000793
Chris Lattner08dd2a02010-06-27 05:56:15 +0000794 // 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 -0800795 // first element is the same size as the whole struct, we can enter it. The
796 // comparison must be made on the store size and not the alloca size. Using
797 // the alloca size may overstate the size of the load.
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000798 uint64_t FirstEltSize =
Stephen Hines176edba2014-12-01 14:53:08 -0800799 CGF.CGM.getDataLayout().getTypeStoreSize(FirstElt);
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000800 if (FirstEltSize < DstSize &&
Stephen Hines176edba2014-12-01 14:53:08 -0800801 FirstEltSize < CGF.CGM.getDataLayout().getTypeStoreSize(SrcSTy))
Chris Lattner08dd2a02010-06-27 05:56:15 +0000802 return SrcPtr;
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000803
Chris Lattner08dd2a02010-06-27 05:56:15 +0000804 // GEP into the first element.
805 SrcPtr = CGF.Builder.CreateConstGEP2_32(SrcPtr, 0, 0, "coerce.dive");
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000806
Chris Lattner08dd2a02010-06-27 05:56:15 +0000807 // If the first element is a struct, recurse.
Chris Lattner2acc6e32011-07-18 04:24:23 +0000808 llvm::Type *SrcTy =
Chris Lattner08dd2a02010-06-27 05:56:15 +0000809 cast<llvm::PointerType>(SrcPtr->getType())->getElementType();
Chris Lattner2acc6e32011-07-18 04:24:23 +0000810 if (llvm::StructType *SrcSTy = dyn_cast<llvm::StructType>(SrcTy))
Chris Lattnere7bb7772010-06-27 06:04:18 +0000811 return EnterStructPointerForCoercedAccess(SrcPtr, SrcSTy, DstSize, CGF);
Chris Lattner08dd2a02010-06-27 05:56:15 +0000812
813 return SrcPtr;
814}
815
Chris Lattner6d11cdb2010-06-27 06:26:04 +0000816/// CoerceIntOrPtrToIntOrPtr - Convert a value Val to the specific Ty where both
817/// are either integers or pointers. This does a truncation of the value if it
818/// is too large or a zero extension if it is too small.
Jakob Stoklund Olesen7e9f52f2013-06-05 03:00:13 +0000819///
820/// This behaves as if the value were coerced through memory, so on big-endian
821/// targets the high bits are preserved in a truncation, while little-endian
822/// targets preserve the low bits.
Chris Lattner6d11cdb2010-06-27 06:26:04 +0000823static llvm::Value *CoerceIntOrPtrToIntOrPtr(llvm::Value *Val,
Chris Lattner2acc6e32011-07-18 04:24:23 +0000824 llvm::Type *Ty,
Chris Lattner6d11cdb2010-06-27 06:26:04 +0000825 CodeGenFunction &CGF) {
826 if (Val->getType() == Ty)
827 return Val;
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000828
Chris Lattner6d11cdb2010-06-27 06:26:04 +0000829 if (isa<llvm::PointerType>(Val->getType())) {
830 // If this is Pointer->Pointer avoid conversion to and from int.
831 if (isa<llvm::PointerType>(Ty))
832 return CGF.Builder.CreateBitCast(Val, Ty, "coerce.val");
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000833
Chris Lattner6d11cdb2010-06-27 06:26:04 +0000834 // Convert the pointer to an integer so we can play with its width.
Chris Lattner77b89b82010-06-27 07:15:29 +0000835 Val = CGF.Builder.CreatePtrToInt(Val, CGF.IntPtrTy, "coerce.val.pi");
Chris Lattner6d11cdb2010-06-27 06:26:04 +0000836 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000837
Chris Lattner2acc6e32011-07-18 04:24:23 +0000838 llvm::Type *DestIntTy = Ty;
Chris Lattner6d11cdb2010-06-27 06:26:04 +0000839 if (isa<llvm::PointerType>(DestIntTy))
Chris Lattner77b89b82010-06-27 07:15:29 +0000840 DestIntTy = CGF.IntPtrTy;
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000841
Jakob Stoklund Olesen7e9f52f2013-06-05 03:00:13 +0000842 if (Val->getType() != DestIntTy) {
843 const llvm::DataLayout &DL = CGF.CGM.getDataLayout();
844 if (DL.isBigEndian()) {
845 // Preserve the high bits on big-endian targets.
846 // That is what memory coercion does.
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700847 uint64_t SrcSize = DL.getTypeSizeInBits(Val->getType());
848 uint64_t DstSize = DL.getTypeSizeInBits(DestIntTy);
849
Jakob Stoklund Olesen7e9f52f2013-06-05 03:00:13 +0000850 if (SrcSize > DstSize) {
851 Val = CGF.Builder.CreateLShr(Val, SrcSize - DstSize, "coerce.highbits");
852 Val = CGF.Builder.CreateTrunc(Val, DestIntTy, "coerce.val.ii");
853 } else {
854 Val = CGF.Builder.CreateZExt(Val, DestIntTy, "coerce.val.ii");
855 Val = CGF.Builder.CreateShl(Val, DstSize - SrcSize, "coerce.highbits");
856 }
857 } else {
858 // Little-endian targets preserve the low bits. No shifts required.
859 Val = CGF.Builder.CreateIntCast(Val, DestIntTy, false, "coerce.val.ii");
860 }
861 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000862
Chris Lattner6d11cdb2010-06-27 06:26:04 +0000863 if (isa<llvm::PointerType>(Ty))
864 Val = CGF.Builder.CreateIntToPtr(Val, Ty, "coerce.val.ip");
865 return Val;
866}
867
Chris Lattner08dd2a02010-06-27 05:56:15 +0000868
869
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000870/// CreateCoercedLoad - Create a load from \arg SrcPtr interpreted as
871/// a pointer to an object of type \arg Ty.
872///
873/// This safely handles the case when the src type is smaller than the
874/// destination type; in this situation the values of bits which not
875/// present in the src are undefined.
876static llvm::Value *CreateCoercedLoad(llvm::Value *SrcPtr,
Chris Lattner2acc6e32011-07-18 04:24:23 +0000877 llvm::Type *Ty,
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000878 CodeGenFunction &CGF) {
Chris Lattner2acc6e32011-07-18 04:24:23 +0000879 llvm::Type *SrcTy =
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000880 cast<llvm::PointerType>(SrcPtr->getType())->getElementType();
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000881
Chris Lattner6ae00692010-06-28 22:51:39 +0000882 // If SrcTy and Ty are the same, just do a load.
883 if (SrcTy == Ty)
884 return CGF.Builder.CreateLoad(SrcPtr);
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000885
Micah Villmow25a6a842012-10-08 16:25:52 +0000886 uint64_t DstSize = CGF.CGM.getDataLayout().getTypeAllocSize(Ty);
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000887
Chris Lattner2acc6e32011-07-18 04:24:23 +0000888 if (llvm::StructType *SrcSTy = dyn_cast<llvm::StructType>(SrcTy)) {
Chris Lattnere7bb7772010-06-27 06:04:18 +0000889 SrcPtr = EnterStructPointerForCoercedAccess(SrcPtr, SrcSTy, DstSize, CGF);
Chris Lattner08dd2a02010-06-27 05:56:15 +0000890 SrcTy = cast<llvm::PointerType>(SrcPtr->getType())->getElementType();
891 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000892
Micah Villmow25a6a842012-10-08 16:25:52 +0000893 uint64_t SrcSize = CGF.CGM.getDataLayout().getTypeAllocSize(SrcTy);
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000894
Chris Lattner6d11cdb2010-06-27 06:26:04 +0000895 // If the source and destination are integer or pointer types, just do an
896 // extension or truncation to the desired type.
897 if ((isa<llvm::IntegerType>(Ty) || isa<llvm::PointerType>(Ty)) &&
898 (isa<llvm::IntegerType>(SrcTy) || isa<llvm::PointerType>(SrcTy))) {
899 llvm::LoadInst *Load = CGF.Builder.CreateLoad(SrcPtr);
900 return CoerceIntOrPtrToIntOrPtr(Load, Ty, CGF);
901 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000902
Daniel Dunbarb225be42009-02-03 05:59:18 +0000903 // If load is legal, just bitcast the src pointer.
Daniel Dunbar7ef455b2009-05-13 18:54:26 +0000904 if (SrcSize >= DstSize) {
Mike Stumpf5408fe2009-05-16 07:57:57 +0000905 // Generally SrcSize is never greater than DstSize, since this means we are
906 // losing bits. However, this can happen in cases where the structure has
907 // additional padding, for example due to a user specified alignment.
Daniel Dunbar7ef455b2009-05-13 18:54:26 +0000908 //
Mike Stumpf5408fe2009-05-16 07:57:57 +0000909 // FIXME: Assert that we aren't truncating non-padding bits when have access
910 // to that information.
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000911 llvm::Value *Casted =
912 CGF.Builder.CreateBitCast(SrcPtr, llvm::PointerType::getUnqual(Ty));
Daniel Dunbar386621f2009-02-07 02:46:03 +0000913 llvm::LoadInst *Load = CGF.Builder.CreateLoad(Casted);
914 // FIXME: Use better alignment / avoid requiring aligned load.
915 Load->setAlignment(1);
916 return Load;
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000917 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000918
Chris Lattner35b21b82010-06-27 01:06:27 +0000919 // Otherwise do coercion through memory. This is stupid, but
920 // simple.
921 llvm::Value *Tmp = CGF.CreateTempAlloca(Ty);
Manman Renf51c61c2012-11-28 22:08:52 +0000922 llvm::Type *I8PtrTy = CGF.Builder.getInt8PtrTy();
923 llvm::Value *Casted = CGF.Builder.CreateBitCast(Tmp, I8PtrTy);
924 llvm::Value *SrcCasted = CGF.Builder.CreateBitCast(SrcPtr, I8PtrTy);
Manman Ren060f34d2012-11-28 22:29:41 +0000925 // FIXME: Use better alignment.
Manman Renf51c61c2012-11-28 22:08:52 +0000926 CGF.Builder.CreateMemCpy(Casted, SrcCasted,
927 llvm::ConstantInt::get(CGF.IntPtrTy, SrcSize),
928 1, false);
Chris Lattner35b21b82010-06-27 01:06:27 +0000929 return CGF.Builder.CreateLoad(Tmp);
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000930}
931
Eli Friedmanbadea572011-05-17 21:08:01 +0000932// Function to store a first-class aggregate into memory. We prefer to
933// store the elements rather than the aggregate to be more friendly to
934// fast-isel.
935// FIXME: Do we need to recurse here?
936static void BuildAggStore(CodeGenFunction &CGF, llvm::Value *Val,
937 llvm::Value *DestPtr, bool DestIsVolatile,
938 bool LowAlignment) {
939 // Prefer scalar stores to first-class aggregate stores.
Chris Lattner2acc6e32011-07-18 04:24:23 +0000940 if (llvm::StructType *STy =
Eli Friedmanbadea572011-05-17 21:08:01 +0000941 dyn_cast<llvm::StructType>(Val->getType())) {
942 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
943 llvm::Value *EltPtr = CGF.Builder.CreateConstGEP2_32(DestPtr, 0, i);
944 llvm::Value *Elt = CGF.Builder.CreateExtractValue(Val, i);
945 llvm::StoreInst *SI = CGF.Builder.CreateStore(Elt, EltPtr,
946 DestIsVolatile);
947 if (LowAlignment)
948 SI->setAlignment(1);
949 }
950 } else {
Bill Wendling08212632012-03-16 21:45:12 +0000951 llvm::StoreInst *SI = CGF.Builder.CreateStore(Val, DestPtr, DestIsVolatile);
952 if (LowAlignment)
953 SI->setAlignment(1);
Eli Friedmanbadea572011-05-17 21:08:01 +0000954 }
955}
956
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000957/// CreateCoercedStore - Create a store to \arg DstPtr from \arg Src,
958/// where the source and destination may have different types.
959///
960/// This safely handles the case when the src type is larger than the
961/// destination type; the upper bits of the src will be lost.
962static void CreateCoercedStore(llvm::Value *Src,
963 llvm::Value *DstPtr,
Anders Carlssond2490a92009-12-24 20:40:36 +0000964 bool DstIsVolatile,
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000965 CodeGenFunction &CGF) {
Chris Lattner2acc6e32011-07-18 04:24:23 +0000966 llvm::Type *SrcTy = Src->getType();
967 llvm::Type *DstTy =
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000968 cast<llvm::PointerType>(DstPtr->getType())->getElementType();
Chris Lattner6ae00692010-06-28 22:51:39 +0000969 if (SrcTy == DstTy) {
970 CGF.Builder.CreateStore(Src, DstPtr, DstIsVolatile);
971 return;
972 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000973
Micah Villmow25a6a842012-10-08 16:25:52 +0000974 uint64_t SrcSize = CGF.CGM.getDataLayout().getTypeAllocSize(SrcTy);
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000975
Chris Lattner2acc6e32011-07-18 04:24:23 +0000976 if (llvm::StructType *DstSTy = dyn_cast<llvm::StructType>(DstTy)) {
Chris Lattnere7bb7772010-06-27 06:04:18 +0000977 DstPtr = EnterStructPointerForCoercedAccess(DstPtr, DstSTy, SrcSize, CGF);
978 DstTy = cast<llvm::PointerType>(DstPtr->getType())->getElementType();
979 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000980
Chris Lattner6d11cdb2010-06-27 06:26:04 +0000981 // If the source and destination are integer or pointer types, just do an
982 // extension or truncation to the desired type.
983 if ((isa<llvm::IntegerType>(SrcTy) || isa<llvm::PointerType>(SrcTy)) &&
984 (isa<llvm::IntegerType>(DstTy) || isa<llvm::PointerType>(DstTy))) {
985 Src = CoerceIntOrPtrToIntOrPtr(Src, DstTy, CGF);
986 CGF.Builder.CreateStore(Src, DstPtr, DstIsVolatile);
987 return;
988 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000989
Micah Villmow25a6a842012-10-08 16:25:52 +0000990 uint64_t DstSize = CGF.CGM.getDataLayout().getTypeAllocSize(DstTy);
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000991
Daniel Dunbar88c2fa92009-02-03 05:31:23 +0000992 // If store is legal, just bitcast the src pointer.
Daniel Dunbarfdf49862009-06-05 07:58:54 +0000993 if (SrcSize <= DstSize) {
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000994 llvm::Value *Casted =
995 CGF.Builder.CreateBitCast(DstPtr, llvm::PointerType::getUnqual(SrcTy));
Daniel Dunbar386621f2009-02-07 02:46:03 +0000996 // FIXME: Use better alignment / avoid requiring aligned store.
Eli Friedmanbadea572011-05-17 21:08:01 +0000997 BuildAggStore(CGF, Src, Casted, DstIsVolatile, true);
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000998 } else {
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000999 // Otherwise do coercion through memory. This is stupid, but
1000 // simple.
Daniel Dunbarfdf49862009-06-05 07:58:54 +00001001
1002 // Generally SrcSize is never greater than DstSize, since this means we are
1003 // losing bits. However, this can happen in cases where the structure has
1004 // additional padding, for example due to a user specified alignment.
1005 //
1006 // FIXME: Assert that we aren't truncating non-padding bits when have access
1007 // to that information.
Daniel Dunbar275e10d2009-02-02 19:06:38 +00001008 llvm::Value *Tmp = CGF.CreateTempAlloca(SrcTy);
1009 CGF.Builder.CreateStore(Src, Tmp);
Manman Renf51c61c2012-11-28 22:08:52 +00001010 llvm::Type *I8PtrTy = CGF.Builder.getInt8PtrTy();
1011 llvm::Value *Casted = CGF.Builder.CreateBitCast(Tmp, I8PtrTy);
1012 llvm::Value *DstCasted = CGF.Builder.CreateBitCast(DstPtr, I8PtrTy);
Manman Ren060f34d2012-11-28 22:29:41 +00001013 // FIXME: Use better alignment.
Manman Renf51c61c2012-11-28 22:08:52 +00001014 CGF.Builder.CreateMemCpy(DstCasted, Casted,
1015 llvm::ConstantInt::get(CGF.IntPtrTy, DstSize),
1016 1, false);
Daniel Dunbar275e10d2009-02-02 19:06:38 +00001017 }
1018}
1019
Stephen Hines176edba2014-12-01 14:53:08 -08001020namespace {
1021
1022/// Encapsulates information about the way function arguments from
1023/// CGFunctionInfo should be passed to actual LLVM IR function.
1024class ClangToLLVMArgMapping {
1025 static const unsigned InvalidIndex = ~0U;
1026 unsigned InallocaArgNo;
1027 unsigned SRetArgNo;
1028 unsigned TotalIRArgs;
1029
1030 /// Arguments of LLVM IR function corresponding to single Clang argument.
1031 struct IRArgs {
1032 unsigned PaddingArgIndex;
1033 // Argument is expanded to IR arguments at positions
1034 // [FirstArgIndex, FirstArgIndex + NumberOfArgs).
1035 unsigned FirstArgIndex;
1036 unsigned NumberOfArgs;
1037
1038 IRArgs()
1039 : PaddingArgIndex(InvalidIndex), FirstArgIndex(InvalidIndex),
1040 NumberOfArgs(0) {}
1041 };
1042
1043 SmallVector<IRArgs, 8> ArgInfo;
1044
1045public:
1046 ClangToLLVMArgMapping(const ASTContext &Context, const CGFunctionInfo &FI,
1047 bool OnlyRequiredArgs = false)
1048 : InallocaArgNo(InvalidIndex), SRetArgNo(InvalidIndex), TotalIRArgs(0),
1049 ArgInfo(OnlyRequiredArgs ? FI.getNumRequiredArgs() : FI.arg_size()) {
1050 construct(Context, FI, OnlyRequiredArgs);
1051 }
1052
1053 bool hasInallocaArg() const { return InallocaArgNo != InvalidIndex; }
1054 unsigned getInallocaArgNo() const {
1055 assert(hasInallocaArg());
1056 return InallocaArgNo;
1057 }
1058
1059 bool hasSRetArg() const { return SRetArgNo != InvalidIndex; }
1060 unsigned getSRetArgNo() const {
1061 assert(hasSRetArg());
1062 return SRetArgNo;
1063 }
1064
1065 unsigned totalIRArgs() const { return TotalIRArgs; }
1066
1067 bool hasPaddingArg(unsigned ArgNo) const {
1068 assert(ArgNo < ArgInfo.size());
1069 return ArgInfo[ArgNo].PaddingArgIndex != InvalidIndex;
1070 }
1071 unsigned getPaddingArgNo(unsigned ArgNo) const {
1072 assert(hasPaddingArg(ArgNo));
1073 return ArgInfo[ArgNo].PaddingArgIndex;
1074 }
1075
1076 /// Returns index of first IR argument corresponding to ArgNo, and their
1077 /// quantity.
1078 std::pair<unsigned, unsigned> getIRArgs(unsigned ArgNo) const {
1079 assert(ArgNo < ArgInfo.size());
1080 return std::make_pair(ArgInfo[ArgNo].FirstArgIndex,
1081 ArgInfo[ArgNo].NumberOfArgs);
1082 }
1083
1084private:
1085 void construct(const ASTContext &Context, const CGFunctionInfo &FI,
1086 bool OnlyRequiredArgs);
1087};
1088
1089void ClangToLLVMArgMapping::construct(const ASTContext &Context,
1090 const CGFunctionInfo &FI,
1091 bool OnlyRequiredArgs) {
1092 unsigned IRArgNo = 0;
1093 bool SwapThisWithSRet = false;
1094 const ABIArgInfo &RetAI = FI.getReturnInfo();
1095
1096 if (RetAI.getKind() == ABIArgInfo::Indirect) {
1097 SwapThisWithSRet = RetAI.isSRetAfterThis();
1098 SRetArgNo = SwapThisWithSRet ? 1 : IRArgNo++;
1099 }
1100
1101 unsigned ArgNo = 0;
1102 unsigned NumArgs = OnlyRequiredArgs ? FI.getNumRequiredArgs() : FI.arg_size();
1103 for (CGFunctionInfo::const_arg_iterator I = FI.arg_begin(); ArgNo < NumArgs;
1104 ++I, ++ArgNo) {
1105 assert(I != FI.arg_end());
1106 QualType ArgType = I->type;
1107 const ABIArgInfo &AI = I->info;
1108 // Collect data about IR arguments corresponding to Clang argument ArgNo.
1109 auto &IRArgs = ArgInfo[ArgNo];
1110
1111 if (AI.getPaddingType())
1112 IRArgs.PaddingArgIndex = IRArgNo++;
1113
1114 switch (AI.getKind()) {
1115 case ABIArgInfo::Extend:
1116 case ABIArgInfo::Direct: {
1117 // FIXME: handle sseregparm someday...
1118 llvm::StructType *STy = dyn_cast<llvm::StructType>(AI.getCoerceToType());
1119 if (AI.isDirect() && AI.getCanBeFlattened() && STy) {
1120 IRArgs.NumberOfArgs = STy->getNumElements();
1121 } else {
1122 IRArgs.NumberOfArgs = 1;
1123 }
1124 break;
1125 }
1126 case ABIArgInfo::Indirect:
1127 IRArgs.NumberOfArgs = 1;
1128 break;
1129 case ABIArgInfo::Ignore:
1130 case ABIArgInfo::InAlloca:
1131 // ignore and inalloca doesn't have matching LLVM parameters.
1132 IRArgs.NumberOfArgs = 0;
1133 break;
1134 case ABIArgInfo::Expand: {
1135 IRArgs.NumberOfArgs = getExpansionSize(ArgType, Context);
1136 break;
1137 }
1138 }
1139
1140 if (IRArgs.NumberOfArgs > 0) {
1141 IRArgs.FirstArgIndex = IRArgNo;
1142 IRArgNo += IRArgs.NumberOfArgs;
1143 }
1144
1145 // Skip over the sret parameter when it comes second. We already handled it
1146 // above.
1147 if (IRArgNo == 1 && SwapThisWithSRet)
1148 IRArgNo++;
1149 }
1150 assert(ArgNo == ArgInfo.size());
1151
1152 if (FI.usesInAlloca())
1153 InallocaArgNo = IRArgNo++;
1154
1155 TotalIRArgs = IRArgNo;
1156}
1157} // namespace
1158
Daniel Dunbar56273772008-09-17 00:51:38 +00001159/***/
1160
Daniel Dunbardacf9dd2010-07-14 23:39:36 +00001161bool CodeGenModule::ReturnTypeUsesSRet(const CGFunctionInfo &FI) {
Daniel Dunbar11e383a2009-02-05 08:00:50 +00001162 return FI.getReturnInfo().isIndirect();
Daniel Dunbarbb36d332009-02-02 21:43:58 +00001163}
1164
Stephen Hines651f13c2014-04-23 16:59:28 -07001165bool CodeGenModule::ReturnSlotInterferesWithArgs(const CGFunctionInfo &FI) {
1166 return ReturnTypeUsesSRet(FI) &&
1167 getTargetCodeGenInfo().doesReturnSlotInterfereWithArgs();
1168}
1169
Daniel Dunbardacf9dd2010-07-14 23:39:36 +00001170bool CodeGenModule::ReturnTypeUsesFPRet(QualType ResultType) {
1171 if (const BuiltinType *BT = ResultType->getAs<BuiltinType>()) {
1172 switch (BT->getKind()) {
1173 default:
1174 return false;
1175 case BuiltinType::Float:
John McCall64aa4b32013-04-16 22:48:15 +00001176 return getTarget().useObjCFPRetForRealType(TargetInfo::Float);
Daniel Dunbardacf9dd2010-07-14 23:39:36 +00001177 case BuiltinType::Double:
John McCall64aa4b32013-04-16 22:48:15 +00001178 return getTarget().useObjCFPRetForRealType(TargetInfo::Double);
Daniel Dunbardacf9dd2010-07-14 23:39:36 +00001179 case BuiltinType::LongDouble:
John McCall64aa4b32013-04-16 22:48:15 +00001180 return getTarget().useObjCFPRetForRealType(TargetInfo::LongDouble);
Daniel Dunbardacf9dd2010-07-14 23:39:36 +00001181 }
1182 }
1183
1184 return false;
1185}
1186
Anders Carlssoneea64802011-10-31 16:27:11 +00001187bool CodeGenModule::ReturnTypeUsesFP2Ret(QualType ResultType) {
1188 if (const ComplexType *CT = ResultType->getAs<ComplexType>()) {
1189 if (const BuiltinType *BT = CT->getElementType()->getAs<BuiltinType>()) {
1190 if (BT->getKind() == BuiltinType::LongDouble)
John McCall64aa4b32013-04-16 22:48:15 +00001191 return getTarget().useObjCFP2RetForComplexLongDouble();
Anders Carlssoneea64802011-10-31 16:27:11 +00001192 }
1193 }
1194
1195 return false;
1196}
1197
Chris Lattner9cbe4f02011-07-09 17:41:47 +00001198llvm::FunctionType *CodeGenTypes::GetFunctionType(GlobalDecl GD) {
John McCallde5d3c72012-02-17 03:33:10 +00001199 const CGFunctionInfo &FI = arrangeGlobalDeclaration(GD);
1200 return GetFunctionType(FI);
John McCallc0bf4622010-02-23 00:48:20 +00001201}
1202
Chris Lattner9cbe4f02011-07-09 17:41:47 +00001203llvm::FunctionType *
John McCallde5d3c72012-02-17 03:33:10 +00001204CodeGenTypes::GetFunctionType(const CGFunctionInfo &FI) {
Daniel Dunbar45c25ba2008-09-10 04:01:49 +00001205
Stephen Hines176edba2014-12-01 14:53:08 -08001206 bool Inserted = FunctionsBeingProcessed.insert(&FI).second;
1207 (void)Inserted;
1208 assert(Inserted && "Recursively being processed?");
1209
1210 llvm::Type *resultType = nullptr;
John McCall42e06112011-05-15 02:19:42 +00001211 const ABIArgInfo &retAI = FI.getReturnInfo();
1212 switch (retAI.getKind()) {
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001213 case ABIArgInfo::Expand:
John McCall42e06112011-05-15 02:19:42 +00001214 llvm_unreachable("Invalid ABI kind for return argument");
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001215
Anton Korobeynikovcc6fa882009-06-06 09:36:29 +00001216 case ABIArgInfo::Extend:
Daniel Dunbar46327aa2009-02-03 06:17:37 +00001217 case ABIArgInfo::Direct:
John McCall42e06112011-05-15 02:19:42 +00001218 resultType = retAI.getCoerceToType();
Daniel Dunbar46327aa2009-02-03 06:17:37 +00001219 break;
1220
Stephen Hines651f13c2014-04-23 16:59:28 -07001221 case ABIArgInfo::InAlloca:
1222 if (retAI.getInAllocaSRet()) {
1223 // sret things on win32 aren't void, they return the sret pointer.
1224 QualType ret = FI.getReturnType();
1225 llvm::Type *ty = ConvertType(ret);
1226 unsigned addressSpace = Context.getTargetAddressSpace(ret);
1227 resultType = llvm::PointerType::get(ty, addressSpace);
1228 } else {
1229 resultType = llvm::Type::getVoidTy(getLLVMContext());
1230 }
1231 break;
1232
Daniel Dunbar11e383a2009-02-05 08:00:50 +00001233 case ABIArgInfo::Indirect: {
John McCall42e06112011-05-15 02:19:42 +00001234 assert(!retAI.getIndirectAlign() && "Align unused on indirect return.");
1235 resultType = llvm::Type::getVoidTy(getLLVMContext());
Daniel Dunbar45c25ba2008-09-10 04:01:49 +00001236 break;
1237 }
1238
Daniel Dunbar11434922009-01-26 21:26:08 +00001239 case ABIArgInfo::Ignore:
John McCall42e06112011-05-15 02:19:42 +00001240 resultType = llvm::Type::getVoidTy(getLLVMContext());
Daniel Dunbar11434922009-01-26 21:26:08 +00001241 break;
Daniel Dunbar45c25ba2008-09-10 04:01:49 +00001242 }
Mike Stump1eb44332009-09-09 15:08:12 +00001243
Stephen Hines176edba2014-12-01 14:53:08 -08001244 ClangToLLVMArgMapping IRFunctionArgs(getContext(), FI, true);
1245 SmallVector<llvm::Type*, 8> ArgTypes(IRFunctionArgs.totalIRArgs());
1246
1247 // Add type for sret argument.
1248 if (IRFunctionArgs.hasSRetArg()) {
1249 QualType Ret = FI.getReturnType();
1250 llvm::Type *Ty = ConvertType(Ret);
1251 unsigned AddressSpace = Context.getTargetAddressSpace(Ret);
1252 ArgTypes[IRFunctionArgs.getSRetArgNo()] =
1253 llvm::PointerType::get(Ty, AddressSpace);
John McCalle56bb362012-12-07 07:03:17 +00001254 }
Stephen Hines176edba2014-12-01 14:53:08 -08001255
1256 // Add type for inalloca argument.
1257 if (IRFunctionArgs.hasInallocaArg()) {
1258 auto ArgStruct = FI.getArgStruct();
1259 assert(ArgStruct);
1260 ArgTypes[IRFunctionArgs.getInallocaArgNo()] = ArgStruct->getPointerTo();
1261 }
1262
1263 // Add in all of the required arguments.
1264 unsigned ArgNo = 0;
1265 CGFunctionInfo::const_arg_iterator it = FI.arg_begin(),
1266 ie = it + FI.getNumRequiredArgs();
1267 for (; it != ie; ++it, ++ArgNo) {
1268 const ABIArgInfo &ArgInfo = it->info;
Mike Stump1eb44332009-09-09 15:08:12 +00001269
Rafael Espindolae4aeeaa2012-10-24 01:59:00 +00001270 // Insert a padding type to ensure proper alignment.
Stephen Hines176edba2014-12-01 14:53:08 -08001271 if (IRFunctionArgs.hasPaddingArg(ArgNo))
1272 ArgTypes[IRFunctionArgs.getPaddingArgNo(ArgNo)] =
1273 ArgInfo.getPaddingType();
Rafael Espindolae4aeeaa2012-10-24 01:59:00 +00001274
Stephen Hines176edba2014-12-01 14:53:08 -08001275 unsigned FirstIRArg, NumIRArgs;
1276 std::tie(FirstIRArg, NumIRArgs) = IRFunctionArgs.getIRArgs(ArgNo);
1277
1278 switch (ArgInfo.getKind()) {
Daniel Dunbar11434922009-01-26 21:26:08 +00001279 case ABIArgInfo::Ignore:
Stephen Hines651f13c2014-04-23 16:59:28 -07001280 case ABIArgInfo::InAlloca:
Stephen Hines176edba2014-12-01 14:53:08 -08001281 assert(NumIRArgs == 0);
Daniel Dunbar11434922009-01-26 21:26:08 +00001282 break;
1283
Chris Lattner800588f2010-07-29 06:26:06 +00001284 case ABIArgInfo::Indirect: {
Stephen Hines176edba2014-12-01 14:53:08 -08001285 assert(NumIRArgs == 1);
Chris Lattner800588f2010-07-29 06:26:06 +00001286 // indirect arguments are always on the stack, which is addr space #0.
Chris Lattner2acc6e32011-07-18 04:24:23 +00001287 llvm::Type *LTy = ConvertTypeForMem(it->type);
Stephen Hines176edba2014-12-01 14:53:08 -08001288 ArgTypes[FirstIRArg] = LTy->getPointerTo();
Chris Lattner800588f2010-07-29 06:26:06 +00001289 break;
1290 }
1291
1292 case ABIArgInfo::Extend:
Chris Lattner1ed72672010-07-29 06:44:09 +00001293 case ABIArgInfo::Direct: {
Stephen Hines176edba2014-12-01 14:53:08 -08001294 // Fast-isel and the optimizer generally like scalar values better than
1295 // FCAs, so we flatten them if this is safe to do for this argument.
1296 llvm::Type *argType = ArgInfo.getCoerceToType();
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001297 llvm::StructType *st = dyn_cast<llvm::StructType>(argType);
Stephen Hines176edba2014-12-01 14:53:08 -08001298 if (st && ArgInfo.isDirect() && ArgInfo.getCanBeFlattened()) {
1299 assert(NumIRArgs == st->getNumElements());
John McCall42e06112011-05-15 02:19:42 +00001300 for (unsigned i = 0, e = st->getNumElements(); i != e; ++i)
Stephen Hines176edba2014-12-01 14:53:08 -08001301 ArgTypes[FirstIRArg + i] = st->getElementType(i);
Chris Lattnerce700162010-06-28 23:44:11 +00001302 } else {
Stephen Hines176edba2014-12-01 14:53:08 -08001303 assert(NumIRArgs == 1);
1304 ArgTypes[FirstIRArg] = argType;
Chris Lattnerce700162010-06-28 23:44:11 +00001305 }
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +00001306 break;
Chris Lattner1ed72672010-07-29 06:44:09 +00001307 }
Mike Stump1eb44332009-09-09 15:08:12 +00001308
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001309 case ABIArgInfo::Expand:
Stephen Hines176edba2014-12-01 14:53:08 -08001310 auto ArgTypesIter = ArgTypes.begin() + FirstIRArg;
1311 getExpandedTypes(it->type, ArgTypesIter);
1312 assert(ArgTypesIter == ArgTypes.begin() + FirstIRArg + NumIRArgs);
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001313 break;
1314 }
Daniel Dunbar45c25ba2008-09-10 04:01:49 +00001315 }
1316
Chris Lattner71305cc2011-07-15 05:16:14 +00001317 bool Erased = FunctionsBeingProcessed.erase(&FI); (void)Erased;
1318 assert(Erased && "Not in set?");
Stephen Hines176edba2014-12-01 14:53:08 -08001319
1320 return llvm::FunctionType::get(resultType, ArgTypes, FI.isVariadic());
Daniel Dunbar3913f182008-09-09 23:48:28 +00001321}
1322
Chris Lattner2acc6e32011-07-18 04:24:23 +00001323llvm::Type *CodeGenTypes::GetFunctionTypeForVTable(GlobalDecl GD) {
John McCall4c40d982010-08-31 07:33:07 +00001324 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl());
Anders Carlssonecf282b2009-11-24 05:08:52 +00001325 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>();
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001326
Chris Lattnerf742eb02011-07-10 00:18:59 +00001327 if (!isFuncTypeConvertible(FPT))
1328 return llvm::StructType::get(getLLVMContext());
1329
1330 const CGFunctionInfo *Info;
1331 if (isa<CXXDestructorDecl>(MD))
Stephen Hines176edba2014-12-01 14:53:08 -08001332 Info =
1333 &arrangeCXXStructorDeclaration(MD, getFromDtorType(GD.getDtorType()));
Chris Lattnerf742eb02011-07-10 00:18:59 +00001334 else
John McCallde5d3c72012-02-17 03:33:10 +00001335 Info = &arrangeCXXMethodDeclaration(MD);
1336 return GetFunctionType(*Info);
Anders Carlssonecf282b2009-11-24 05:08:52 +00001337}
1338
Daniel Dunbara0a99e02009-02-02 23:43:58 +00001339void CodeGenModule::ConstructAttributeList(const CGFunctionInfo &FI,
Daniel Dunbar88b53962009-02-02 22:03:45 +00001340 const Decl *TargetDecl,
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001341 AttributeListType &PAL,
Bill Wendling94236e72013-02-22 00:13:35 +00001342 unsigned &CallingConv,
1343 bool AttrOnCallSite) {
Bill Wendling0d583392012-10-15 20:36:26 +00001344 llvm::AttrBuilder FuncAttrs;
1345 llvm::AttrBuilder RetAttrs;
Daniel Dunbar5323a4b2008-09-10 00:32:18 +00001346
Daniel Dunbarca6408c2009-09-12 00:59:20 +00001347 CallingConv = FI.getEffectiveCallingConvention();
1348
John McCall04a67a62010-02-05 21:31:56 +00001349 if (FI.isNoReturn())
Bill Wendling72390b32012-12-20 19:27:06 +00001350 FuncAttrs.addAttribute(llvm::Attribute::NoReturn);
John McCall04a67a62010-02-05 21:31:56 +00001351
Anton Korobeynikov1102f422009-04-04 00:49:24 +00001352 // FIXME: handle sseregparm someday...
Daniel Dunbar5323a4b2008-09-10 00:32:18 +00001353 if (TargetDecl) {
Rafael Espindola67004152011-10-12 19:51:18 +00001354 if (TargetDecl->hasAttr<ReturnsTwiceAttr>())
Bill Wendling72390b32012-12-20 19:27:06 +00001355 FuncAttrs.addAttribute(llvm::Attribute::ReturnsTwice);
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00001356 if (TargetDecl->hasAttr<NoThrowAttr>())
Bill Wendling72390b32012-12-20 19:27:06 +00001357 FuncAttrs.addAttribute(llvm::Attribute::NoUnwind);
Richard Smith7586a6e2013-01-30 05:45:05 +00001358 if (TargetDecl->hasAttr<NoReturnAttr>())
1359 FuncAttrs.addAttribute(llvm::Attribute::NoReturn);
Stephen Hines651f13c2014-04-23 16:59:28 -07001360 if (TargetDecl->hasAttr<NoDuplicateAttr>())
1361 FuncAttrs.addAttribute(llvm::Attribute::NoDuplicate);
Richard Smith7586a6e2013-01-30 05:45:05 +00001362
1363 if (const FunctionDecl *Fn = dyn_cast<FunctionDecl>(TargetDecl)) {
John McCall9c0c1f32010-07-08 06:48:12 +00001364 const FunctionProtoType *FPT = Fn->getType()->getAs<FunctionProtoType>();
Sebastian Redl8026f6d2011-03-13 17:09:40 +00001365 if (FPT && FPT->isNothrow(getContext()))
Bill Wendling72390b32012-12-20 19:27:06 +00001366 FuncAttrs.addAttribute(llvm::Attribute::NoUnwind);
Richard Smith3c5cd152013-03-05 08:30:04 +00001367 // Don't use [[noreturn]] or _Noreturn for a call to a virtual function.
1368 // These attributes are not inherited by overloads.
1369 const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Fn);
1370 if (Fn->isNoReturn() && !(AttrOnCallSite && MD && MD->isVirtual()))
Richard Smith7586a6e2013-01-30 05:45:05 +00001371 FuncAttrs.addAttribute(llvm::Attribute::NoReturn);
John McCall9c0c1f32010-07-08 06:48:12 +00001372 }
1373
Eric Christopher041087c2011-08-15 22:38:22 +00001374 // 'const' and 'pure' attribute functions are also nounwind.
1375 if (TargetDecl->hasAttr<ConstAttr>()) {
Bill Wendling72390b32012-12-20 19:27:06 +00001376 FuncAttrs.addAttribute(llvm::Attribute::ReadNone);
1377 FuncAttrs.addAttribute(llvm::Attribute::NoUnwind);
Eric Christopher041087c2011-08-15 22:38:22 +00001378 } else if (TargetDecl->hasAttr<PureAttr>()) {
Bill Wendling72390b32012-12-20 19:27:06 +00001379 FuncAttrs.addAttribute(llvm::Attribute::ReadOnly);
1380 FuncAttrs.addAttribute(llvm::Attribute::NoUnwind);
Eric Christopher041087c2011-08-15 22:38:22 +00001381 }
Ryan Flynn76168e22009-08-09 20:07:29 +00001382 if (TargetDecl->hasAttr<MallocAttr>())
Bill Wendling72390b32012-12-20 19:27:06 +00001383 RetAttrs.addAttribute(llvm::Attribute::NoAlias);
Stephen Hines176edba2014-12-01 14:53:08 -08001384 if (TargetDecl->hasAttr<ReturnsNonNullAttr>())
1385 RetAttrs.addAttribute(llvm::Attribute::NonNull);
Daniel Dunbar5323a4b2008-09-10 00:32:18 +00001386 }
1387
Chandler Carruth2811ccf2009-11-12 17:24:48 +00001388 if (CodeGenOpts.OptimizeSize)
Bill Wendling72390b32012-12-20 19:27:06 +00001389 FuncAttrs.addAttribute(llvm::Attribute::OptimizeForSize);
Quentin Colombet90467682012-10-26 00:29:48 +00001390 if (CodeGenOpts.OptimizeSize == 2)
Bill Wendling72390b32012-12-20 19:27:06 +00001391 FuncAttrs.addAttribute(llvm::Attribute::MinSize);
Chandler Carruth2811ccf2009-11-12 17:24:48 +00001392 if (CodeGenOpts.DisableRedZone)
Bill Wendling72390b32012-12-20 19:27:06 +00001393 FuncAttrs.addAttribute(llvm::Attribute::NoRedZone);
Chandler Carruth2811ccf2009-11-12 17:24:48 +00001394 if (CodeGenOpts.NoImplicitFloat)
Bill Wendling72390b32012-12-20 19:27:06 +00001395 FuncAttrs.addAttribute(llvm::Attribute::NoImplicitFloat);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001396 if (CodeGenOpts.EnableSegmentedStacks &&
1397 !(TargetDecl && TargetDecl->hasAttr<NoSplitStackAttr>()))
1398 FuncAttrs.addAttribute("split-stack");
Devang Patel24095da2009-06-04 23:32:02 +00001399
Bill Wendling93e4bff2013-02-22 20:53:29 +00001400 if (AttrOnCallSite) {
1401 // Attributes that should go on the call site only.
1402 if (!CodeGenOpts.SimplifyLibCalls)
1403 FuncAttrs.addAttribute(llvm::Attribute::NoBuiltin);
Bill Wendlingbe9e8bf2013-02-28 22:49:57 +00001404 } else {
1405 // Attributes that should go on the function, but not the call site.
Bill Wendlingbe9e8bf2013-02-28 22:49:57 +00001406 if (!CodeGenOpts.DisableFPElim) {
Bill Wendling4159f052013-03-13 22:24:33 +00001407 FuncAttrs.addAttribute("no-frame-pointer-elim", "false");
Bill Wendlingbe9e8bf2013-02-28 22:49:57 +00001408 } else if (CodeGenOpts.OmitLeafFramePointer) {
Bill Wendling4159f052013-03-13 22:24:33 +00001409 FuncAttrs.addAttribute("no-frame-pointer-elim", "false");
Bill Wendlingfae228b2013-08-22 21:16:51 +00001410 FuncAttrs.addAttribute("no-frame-pointer-elim-non-leaf");
Bill Wendlingbe9e8bf2013-02-28 22:49:57 +00001411 } else {
Bill Wendling4159f052013-03-13 22:24:33 +00001412 FuncAttrs.addAttribute("no-frame-pointer-elim", "true");
Bill Wendlingfae228b2013-08-22 21:16:51 +00001413 FuncAttrs.addAttribute("no-frame-pointer-elim-non-leaf");
Bill Wendlingbe9e8bf2013-02-28 22:49:57 +00001414 }
1415
Bill Wendling4159f052013-03-13 22:24:33 +00001416 FuncAttrs.addAttribute("less-precise-fpmad",
Bill Wendling52d08fe2013-07-26 21:51:11 +00001417 llvm::toStringRef(CodeGenOpts.LessPreciseFPMAD));
Bill Wendling4159f052013-03-13 22:24:33 +00001418 FuncAttrs.addAttribute("no-infs-fp-math",
Bill Wendling52d08fe2013-07-26 21:51:11 +00001419 llvm::toStringRef(CodeGenOpts.NoInfsFPMath));
Bill Wendling4159f052013-03-13 22:24:33 +00001420 FuncAttrs.addAttribute("no-nans-fp-math",
Bill Wendling52d08fe2013-07-26 21:51:11 +00001421 llvm::toStringRef(CodeGenOpts.NoNaNsFPMath));
Bill Wendling4159f052013-03-13 22:24:33 +00001422 FuncAttrs.addAttribute("unsafe-fp-math",
Bill Wendling52d08fe2013-07-26 21:51:11 +00001423 llvm::toStringRef(CodeGenOpts.UnsafeFPMath));
Bill Wendling4159f052013-03-13 22:24:33 +00001424 FuncAttrs.addAttribute("use-soft-float",
Bill Wendling52d08fe2013-07-26 21:51:11 +00001425 llvm::toStringRef(CodeGenOpts.SoftFloat));
Bill Wendling45ccf282013-07-22 20:15:41 +00001426 FuncAttrs.addAttribute("stack-protector-buffer-size",
Bill Wendling8d230b42013-07-12 22:26:07 +00001427 llvm::utostr(CodeGenOpts.SSPBufferSize));
Bill Wendlingcab4a092013-07-25 00:32:41 +00001428
Bill Wendling1cf9ab82013-08-01 21:41:02 +00001429 if (!CodeGenOpts.StackRealignment)
1430 FuncAttrs.addAttribute("no-realign-stack");
Bill Wendlingc0dcc2d2013-02-15 21:30:01 +00001431 }
1432
Stephen Hines176edba2014-12-01 14:53:08 -08001433 ClangToLLVMArgMapping IRFunctionArgs(getContext(), FI);
1434
Daniel Dunbara0a99e02009-02-02 23:43:58 +00001435 QualType RetTy = FI.getReturnType();
Daniel Dunbarb225be42009-02-03 05:59:18 +00001436 const ABIArgInfo &RetAI = FI.getReturnInfo();
Daniel Dunbar45c25ba2008-09-10 04:01:49 +00001437 switch (RetAI.getKind()) {
Anton Korobeynikovcc6fa882009-06-06 09:36:29 +00001438 case ABIArgInfo::Extend:
Jakob Stoklund Olesen5baefa82013-05-29 03:57:23 +00001439 if (RetTy->hasSignedIntegerRepresentation())
1440 RetAttrs.addAttribute(llvm::Attribute::SExt);
1441 else if (RetTy->hasUnsignedIntegerRepresentation())
1442 RetAttrs.addAttribute(llvm::Attribute::ZExt);
Jakob Stoklund Olesen90f9ec02013-06-05 03:00:09 +00001443 // FALL THROUGH
Daniel Dunbar46327aa2009-02-03 06:17:37 +00001444 case ABIArgInfo::Direct:
Jakob Stoklund Olesen90f9ec02013-06-05 03:00:09 +00001445 if (RetAI.getInReg())
1446 RetAttrs.addAttribute(llvm::Attribute::InReg);
1447 break;
Chris Lattner800588f2010-07-29 06:26:06 +00001448 case ABIArgInfo::Ignore:
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001449 break;
1450
Stephen Hines176edba2014-12-01 14:53:08 -08001451 case ABIArgInfo::InAlloca:
Rafael Espindolab48280b2012-07-31 02:44:24 +00001452 case ABIArgInfo::Indirect: {
Stephen Hines176edba2014-12-01 14:53:08 -08001453 // inalloca and sret disable readnone and readonly
Bill Wendling72390b32012-12-20 19:27:06 +00001454 FuncAttrs.removeAttribute(llvm::Attribute::ReadOnly)
1455 .removeAttribute(llvm::Attribute::ReadNone);
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001456 break;
Rafael Espindolab48280b2012-07-31 02:44:24 +00001457 }
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001458
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001459 case ABIArgInfo::Expand:
David Blaikieb219cfc2011-09-23 05:06:16 +00001460 llvm_unreachable("Invalid ABI kind for return argument");
Daniel Dunbar5323a4b2008-09-10 00:32:18 +00001461 }
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001462
Stephen Hines176edba2014-12-01 14:53:08 -08001463 if (const auto *RefTy = RetTy->getAs<ReferenceType>()) {
1464 QualType PTy = RefTy->getPointeeType();
1465 if (!PTy->isIncompleteType() && PTy->isConstantSizeType())
1466 RetAttrs.addDereferenceableAttr(getContext().getTypeSizeInChars(PTy)
1467 .getQuantity());
1468 else if (getContext().getTargetAddressSpace(PTy) == 0)
1469 RetAttrs.addAttribute(llvm::Attribute::NonNull);
1470 }
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001471
Stephen Hines176edba2014-12-01 14:53:08 -08001472 // Attach return attributes.
1473 if (RetAttrs.hasAttributes()) {
1474 PAL.push_back(llvm::AttributeSet::get(
1475 getLLVMContext(), llvm::AttributeSet::ReturnIndex, RetAttrs));
1476 }
Anton Korobeynikov1102f422009-04-04 00:49:24 +00001477
Stephen Hines176edba2014-12-01 14:53:08 -08001478 // Attach attributes to sret.
1479 if (IRFunctionArgs.hasSRetArg()) {
1480 llvm::AttrBuilder SRETAttrs;
1481 SRETAttrs.addAttribute(llvm::Attribute::StructRet);
1482 if (RetAI.getInReg())
1483 SRETAttrs.addAttribute(llvm::Attribute::InReg);
1484 PAL.push_back(llvm::AttributeSet::get(
1485 getLLVMContext(), IRFunctionArgs.getSRetArgNo() + 1, SRETAttrs));
1486 }
1487
1488 // Attach attributes to inalloca argument.
1489 if (IRFunctionArgs.hasInallocaArg()) {
1490 llvm::AttrBuilder Attrs;
1491 Attrs.addAttribute(llvm::Attribute::InAlloca);
1492 PAL.push_back(llvm::AttributeSet::get(
1493 getLLVMContext(), IRFunctionArgs.getInallocaArgNo() + 1, Attrs));
1494 }
1495
1496
1497 unsigned ArgNo = 0;
1498 for (CGFunctionInfo::const_arg_iterator I = FI.arg_begin(),
1499 E = FI.arg_end();
1500 I != E; ++I, ++ArgNo) {
1501 QualType ParamType = I->type;
1502 const ABIArgInfo &AI = I->info;
Bill Wendling0d583392012-10-15 20:36:26 +00001503 llvm::AttrBuilder Attrs;
Anton Korobeynikov1102f422009-04-04 00:49:24 +00001504
Stephen Hines176edba2014-12-01 14:53:08 -08001505 // Add attribute for padding argument, if necessary.
1506 if (IRFunctionArgs.hasPaddingArg(ArgNo)) {
Bill Wendlingb263bdf2013-01-27 02:46:53 +00001507 if (AI.getPaddingInReg())
Stephen Hines176edba2014-12-01 14:53:08 -08001508 PAL.push_back(llvm::AttributeSet::get(
1509 getLLVMContext(), IRFunctionArgs.getPaddingArgNo(ArgNo) + 1,
1510 llvm::Attribute::InReg));
Rafael Espindolae4aeeaa2012-10-24 01:59:00 +00001511 }
1512
John McCalld8e10d22010-03-27 00:47:27 +00001513 // 'restrict' -> 'noalias' is done in EmitFunctionProlog when we
1514 // have the corresponding parameter variable. It doesn't make
Daniel Dunbar7f6890e2011-02-10 18:10:07 +00001515 // sense to do it here because parameters are so messed up.
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001516 switch (AI.getKind()) {
Chris Lattner800588f2010-07-29 06:26:06 +00001517 case ABIArgInfo::Extend:
Douglas Gregor575a1c92011-05-20 16:38:50 +00001518 if (ParamType->isSignedIntegerOrEnumerationType())
Bill Wendling72390b32012-12-20 19:27:06 +00001519 Attrs.addAttribute(llvm::Attribute::SExt);
Douglas Gregor575a1c92011-05-20 16:38:50 +00001520 else if (ParamType->isUnsignedIntegerOrEnumerationType())
Bill Wendling72390b32012-12-20 19:27:06 +00001521 Attrs.addAttribute(llvm::Attribute::ZExt);
Chris Lattner800588f2010-07-29 06:26:06 +00001522 // FALL THROUGH
Stephen Hines176edba2014-12-01 14:53:08 -08001523 case ABIArgInfo::Direct:
Rafael Espindolab48280b2012-07-31 02:44:24 +00001524 if (AI.getInReg())
Bill Wendling72390b32012-12-20 19:27:06 +00001525 Attrs.addAttribute(llvm::Attribute::InReg);
Chris Lattner800588f2010-07-29 06:26:06 +00001526 break;
Stephen Hines176edba2014-12-01 14:53:08 -08001527
Daniel Dunbar11e383a2009-02-05 08:00:50 +00001528 case ABIArgInfo::Indirect:
Rafael Espindola0b4cc952012-10-19 05:04:37 +00001529 if (AI.getInReg())
Bill Wendling72390b32012-12-20 19:27:06 +00001530 Attrs.addAttribute(llvm::Attribute::InReg);
Rafael Espindola0b4cc952012-10-19 05:04:37 +00001531
Anders Carlsson0a8f8472009-09-16 15:53:40 +00001532 if (AI.getIndirectByVal())
Bill Wendling72390b32012-12-20 19:27:06 +00001533 Attrs.addAttribute(llvm::Attribute::ByVal);
Anders Carlsson0a8f8472009-09-16 15:53:40 +00001534
Bill Wendling603571a2012-10-10 07:36:56 +00001535 Attrs.addAlignmentAttr(AI.getIndirectAlign());
1536
Daniel Dunbar0ac86f02009-03-18 19:51:01 +00001537 // byval disables readnone and readonly.
Bill Wendling72390b32012-12-20 19:27:06 +00001538 FuncAttrs.removeAttribute(llvm::Attribute::ReadOnly)
1539 .removeAttribute(llvm::Attribute::ReadNone);
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001540 break;
Anton Korobeynikovcc6fa882009-06-06 09:36:29 +00001541
Daniel Dunbar11434922009-01-26 21:26:08 +00001542 case ABIArgInfo::Ignore:
Stephen Hines176edba2014-12-01 14:53:08 -08001543 case ABIArgInfo::Expand:
Mike Stump1eb44332009-09-09 15:08:12 +00001544 continue;
Daniel Dunbar11434922009-01-26 21:26:08 +00001545
Stephen Hines651f13c2014-04-23 16:59:28 -07001546 case ABIArgInfo::InAlloca:
1547 // inalloca disables readnone and readonly.
1548 FuncAttrs.removeAttribute(llvm::Attribute::ReadOnly)
1549 .removeAttribute(llvm::Attribute::ReadNone);
Daniel Dunbar56273772008-09-17 00:51:38 +00001550 continue;
1551 }
Stephen Hines176edba2014-12-01 14:53:08 -08001552
1553 if (const auto *RefTy = ParamType->getAs<ReferenceType>()) {
1554 QualType PTy = RefTy->getPointeeType();
1555 if (!PTy->isIncompleteType() && PTy->isConstantSizeType())
1556 Attrs.addDereferenceableAttr(getContext().getTypeSizeInChars(PTy)
1557 .getQuantity());
1558 else if (getContext().getTargetAddressSpace(PTy) == 0)
1559 Attrs.addAttribute(llvm::Attribute::NonNull);
Daniel Dunbar5323a4b2008-09-10 00:32:18 +00001560 }
Mike Stump1eb44332009-09-09 15:08:12 +00001561
Stephen Hines176edba2014-12-01 14:53:08 -08001562 if (Attrs.hasAttributes()) {
1563 unsigned FirstIRArg, NumIRArgs;
1564 std::tie(FirstIRArg, NumIRArgs) = IRFunctionArgs.getIRArgs(ArgNo);
1565 for (unsigned i = 0; i < NumIRArgs; i++)
1566 PAL.push_back(llvm::AttributeSet::get(getLLVMContext(),
1567 FirstIRArg + i + 1, Attrs));
1568 }
Daniel Dunbar5323a4b2008-09-10 00:32:18 +00001569 }
Stephen Hines176edba2014-12-01 14:53:08 -08001570 assert(ArgNo == FI.arg_size());
Stephen Hines651f13c2014-04-23 16:59:28 -07001571
Bill Wendling603571a2012-10-10 07:36:56 +00001572 if (FuncAttrs.hasAttributes())
Bill Wendling75d37b42012-10-15 07:31:59 +00001573 PAL.push_back(llvm::
Bill Wendlingb263bdf2013-01-27 02:46:53 +00001574 AttributeSet::get(getLLVMContext(),
1575 llvm::AttributeSet::FunctionIndex,
1576 FuncAttrs));
Daniel Dunbar5323a4b2008-09-10 00:32:18 +00001577}
1578
John McCalld26bc762011-03-09 04:27:21 +00001579/// An argument came in as a promoted argument; demote it back to its
1580/// declared type.
1581static llvm::Value *emitArgumentDemotion(CodeGenFunction &CGF,
1582 const VarDecl *var,
1583 llvm::Value *value) {
Chris Lattner2acc6e32011-07-18 04:24:23 +00001584 llvm::Type *varType = CGF.ConvertType(var->getType());
John McCalld26bc762011-03-09 04:27:21 +00001585
1586 // This can happen with promotions that actually don't change the
1587 // underlying type, like the enum promotions.
1588 if (value->getType() == varType) return value;
1589
1590 assert((varType->isIntegerTy() || varType->isFloatingPointTy())
1591 && "unexpected promotion type");
1592
1593 if (isa<llvm::IntegerType>(varType))
1594 return CGF.Builder.CreateTrunc(value, varType, "arg.unpromote");
1595
1596 return CGF.Builder.CreateFPCast(value, varType, "arg.unpromote");
1597}
1598
Stephen Hines176edba2014-12-01 14:53:08 -08001599/// Returns the attribute (either parameter attribute, or function
1600/// attribute), which declares argument ArgNo to be non-null.
1601static const NonNullAttr *getNonNullAttr(const Decl *FD, const ParmVarDecl *PVD,
1602 QualType ArgType, unsigned ArgNo) {
1603 // FIXME: __attribute__((nonnull)) can also be applied to:
1604 // - references to pointers, where the pointee is known to be
1605 // nonnull (apparently a Clang extension)
1606 // - transparent unions containing pointers
1607 // In the former case, LLVM IR cannot represent the constraint. In
1608 // the latter case, we have no guarantee that the transparent union
1609 // is in fact passed as a pointer.
1610 if (!ArgType->isAnyPointerType() && !ArgType->isBlockPointerType())
1611 return nullptr;
1612 // First, check attribute on parameter itself.
1613 if (PVD) {
1614 if (auto ParmNNAttr = PVD->getAttr<NonNullAttr>())
1615 return ParmNNAttr;
1616 }
1617 // Check function attributes.
1618 if (!FD)
1619 return nullptr;
1620 for (const auto *NNAttr : FD->specific_attrs<NonNullAttr>()) {
1621 if (NNAttr->isNonNull(ArgNo))
1622 return NNAttr;
1623 }
1624 return nullptr;
1625}
1626
Daniel Dunbar88b53962009-02-02 22:03:45 +00001627void CodeGenFunction::EmitFunctionProlog(const CGFunctionInfo &FI,
1628 llvm::Function *Fn,
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001629 const FunctionArgList &Args) {
Stephen Hines176edba2014-12-01 14:53:08 -08001630 if (CurCodeDecl && CurCodeDecl->hasAttr<NakedAttr>())
1631 // Naked functions don't have prologues.
1632 return;
1633
John McCall0cfeb632009-07-28 01:00:58 +00001634 // If this is an implicit-return-zero function, go ahead and
1635 // initialize the return value. TODO: it might be nice to have
1636 // a more general mechanism for this that didn't require synthesized
1637 // return statements.
John McCallf5ebf9b2013-05-03 07:33:41 +00001638 if (const FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(CurCodeDecl)) {
John McCall0cfeb632009-07-28 01:00:58 +00001639 if (FD->hasImplicitReturnZero()) {
Stephen Hines651f13c2014-04-23 16:59:28 -07001640 QualType RetTy = FD->getReturnType().getUnqualifiedType();
Chris Lattner2acc6e32011-07-18 04:24:23 +00001641 llvm::Type* LLVMTy = CGM.getTypes().ConvertType(RetTy);
Owen Andersonc9c88b42009-07-31 20:28:54 +00001642 llvm::Constant* Zero = llvm::Constant::getNullValue(LLVMTy);
John McCall0cfeb632009-07-28 01:00:58 +00001643 Builder.CreateStore(Zero, ReturnValue);
1644 }
1645 }
1646
Mike Stumpf5408fe2009-05-16 07:57:57 +00001647 // FIXME: We no longer need the types from FunctionArgList; lift up and
1648 // simplify.
Daniel Dunbar5251afa2009-02-03 06:02:10 +00001649
Stephen Hines176edba2014-12-01 14:53:08 -08001650 ClangToLLVMArgMapping IRFunctionArgs(CGM.getContext(), FI);
1651 // Flattened function arguments.
1652 SmallVector<llvm::Argument *, 16> FnArgs;
1653 FnArgs.reserve(IRFunctionArgs.totalIRArgs());
1654 for (auto &Arg : Fn->args()) {
1655 FnArgs.push_back(&Arg);
1656 }
1657 assert(FnArgs.size() == IRFunctionArgs.totalIRArgs());
Mike Stump1eb44332009-09-09 15:08:12 +00001658
Stephen Hines651f13c2014-04-23 16:59:28 -07001659 // If we're using inalloca, all the memory arguments are GEPs off of the last
1660 // parameter, which is a pointer to the complete memory area.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001661 llvm::Value *ArgStruct = nullptr;
Stephen Hines176edba2014-12-01 14:53:08 -08001662 if (IRFunctionArgs.hasInallocaArg()) {
1663 ArgStruct = FnArgs[IRFunctionArgs.getInallocaArgNo()];
Stephen Hines651f13c2014-04-23 16:59:28 -07001664 assert(ArgStruct->getType() == FI.getArgStruct()->getPointerTo());
1665 }
1666
Stephen Hines176edba2014-12-01 14:53:08 -08001667 // Name the struct return parameter.
1668 if (IRFunctionArgs.hasSRetArg()) {
1669 auto AI = FnArgs[IRFunctionArgs.getSRetArgNo()];
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001670 AI->setName("agg.result");
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001671 AI->addAttr(llvm::AttributeSet::get(getLLVMContext(), AI->getArgNo() + 1,
Bill Wendling89530e42013-01-23 06:15:10 +00001672 llvm::Attribute::NoAlias));
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001673 }
Mike Stump1eb44332009-09-09 15:08:12 +00001674
Stephen Hines651f13c2014-04-23 16:59:28 -07001675 // Track if we received the parameter as a pointer (indirect, byval, or
1676 // inalloca). If already have a pointer, EmitParmDecl doesn't need to copy it
1677 // into a local alloca for us.
1678 enum ValOrPointer { HaveValue = 0, HavePointer = 1 };
1679 typedef llvm::PointerIntPair<llvm::Value *, 1> ValueAndIsPtr;
1680 SmallVector<ValueAndIsPtr, 16> ArgVals;
1681 ArgVals.reserve(Args.size());
1682
1683 // Create a pointer value for every parameter declaration. This usually
1684 // entails copying one or more LLVM IR arguments into an alloca. Don't push
1685 // any cleanups or do anything that might unwind. We do that separately, so
1686 // we can push the cleanups in the correct order for the ABI.
Daniel Dunbar4b5f0a42009-02-04 21:17:21 +00001687 assert(FI.arg_size() == Args.size() &&
1688 "Mismatch between function signature & arguments.");
Stephen Hines176edba2014-12-01 14:53:08 -08001689 unsigned ArgNo = 0;
Daniel Dunbarb225be42009-02-03 05:59:18 +00001690 CGFunctionInfo::const_arg_iterator info_it = FI.arg_begin();
Stephen Hines176edba2014-12-01 14:53:08 -08001691 for (FunctionArgList::const_iterator i = Args.begin(), e = Args.end();
Devang Patel093ac462011-03-03 20:13:15 +00001692 i != e; ++i, ++info_it, ++ArgNo) {
John McCalld26bc762011-03-09 04:27:21 +00001693 const VarDecl *Arg = *i;
Daniel Dunbarb225be42009-02-03 05:59:18 +00001694 QualType Ty = info_it->type;
1695 const ABIArgInfo &ArgI = info_it->info;
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001696
John McCalld26bc762011-03-09 04:27:21 +00001697 bool isPromoted =
1698 isa<ParmVarDecl>(Arg) && cast<ParmVarDecl>(Arg)->isKNRPromoted();
1699
Stephen Hines176edba2014-12-01 14:53:08 -08001700 unsigned FirstIRArg, NumIRArgs;
1701 std::tie(FirstIRArg, NumIRArgs) = IRFunctionArgs.getIRArgs(ArgNo);
Rafael Espindolae4aeeaa2012-10-24 01:59:00 +00001702
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001703 switch (ArgI.getKind()) {
Stephen Hines651f13c2014-04-23 16:59:28 -07001704 case ABIArgInfo::InAlloca: {
Stephen Hines176edba2014-12-01 14:53:08 -08001705 assert(NumIRArgs == 0);
Stephen Hines651f13c2014-04-23 16:59:28 -07001706 llvm::Value *V = Builder.CreateStructGEP(
1707 ArgStruct, ArgI.getInAllocaFieldIndex(), Arg->getName());
1708 ArgVals.push_back(ValueAndIsPtr(V, HavePointer));
Stephen Hines176edba2014-12-01 14:53:08 -08001709 break;
Stephen Hines651f13c2014-04-23 16:59:28 -07001710 }
1711
Daniel Dunbar1f745982009-02-05 09:16:39 +00001712 case ABIArgInfo::Indirect: {
Stephen Hines176edba2014-12-01 14:53:08 -08001713 assert(NumIRArgs == 1);
1714 llvm::Value *V = FnArgs[FirstIRArg];
Daniel Dunbarcf3b6f22010-09-16 20:42:02 +00001715
John McCall9d232c82013-03-07 21:37:08 +00001716 if (!hasScalarEvaluationKind(Ty)) {
Daniel Dunbarcf3b6f22010-09-16 20:42:02 +00001717 // Aggregates and complex variables are accessed by reference. All we
1718 // need to do is realign the value, if requested
1719 if (ArgI.getIndirectRealign()) {
1720 llvm::Value *AlignedTemp = CreateMemTemp(Ty, "coerce");
1721
1722 // Copy from the incoming argument pointer to the temporary with the
1723 // appropriate alignment.
1724 //
1725 // FIXME: We should have a common utility for generating an aggregate
1726 // copy.
Chris Lattner2acc6e32011-07-18 04:24:23 +00001727 llvm::Type *I8PtrTy = Builder.getInt8PtrTy();
Ken Dyckfe710082011-01-19 01:58:38 +00001728 CharUnits Size = getContext().getTypeSizeInChars(Ty);
NAKAMURA Takumic95a8fc2011-03-10 14:02:21 +00001729 llvm::Value *Dst = Builder.CreateBitCast(AlignedTemp, I8PtrTy);
1730 llvm::Value *Src = Builder.CreateBitCast(V, I8PtrTy);
1731 Builder.CreateMemCpy(Dst,
1732 Src,
Ken Dyckfe710082011-01-19 01:58:38 +00001733 llvm::ConstantInt::get(IntPtrTy,
1734 Size.getQuantity()),
Benjamin Kramer9f0c7cc2010-12-30 00:13:21 +00001735 ArgI.getIndirectAlign(),
1736 false);
Daniel Dunbarcf3b6f22010-09-16 20:42:02 +00001737 V = AlignedTemp;
1738 }
Stephen Hines651f13c2014-04-23 16:59:28 -07001739 ArgVals.push_back(ValueAndIsPtr(V, HavePointer));
Daniel Dunbar1f745982009-02-05 09:16:39 +00001740 } else {
1741 // Load scalar value from indirect argument.
Ken Dyckfe710082011-01-19 01:58:38 +00001742 CharUnits Alignment = getContext().getTypeAlignInChars(Ty);
Nick Lewycky4ee7dc22013-10-02 02:29:49 +00001743 V = EmitLoadOfScalar(V, false, Alignment.getQuantity(), Ty,
1744 Arg->getLocStart());
John McCalld26bc762011-03-09 04:27:21 +00001745
1746 if (isPromoted)
1747 V = emitArgumentDemotion(*this, Arg, V);
Stephen Hines651f13c2014-04-23 16:59:28 -07001748 ArgVals.push_back(ValueAndIsPtr(V, HaveValue));
Daniel Dunbar1f745982009-02-05 09:16:39 +00001749 }
Daniel Dunbar1f745982009-02-05 09:16:39 +00001750 break;
1751 }
Anton Korobeynikovcc6fa882009-06-06 09:36:29 +00001752
1753 case ABIArgInfo::Extend:
Daniel Dunbar46327aa2009-02-03 06:17:37 +00001754 case ABIArgInfo::Direct: {
Akira Hatanaka4ba3fd42012-01-09 19:08:06 +00001755
Chris Lattner800588f2010-07-29 06:26:06 +00001756 // If we have the trivial case, handle it with no muss and fuss.
1757 if (!isa<llvm::StructType>(ArgI.getCoerceToType()) &&
Chris Lattner117e3f42010-07-30 04:02:24 +00001758 ArgI.getCoerceToType() == ConvertType(Ty) &&
1759 ArgI.getDirectOffset() == 0) {
Stephen Hines176edba2014-12-01 14:53:08 -08001760 assert(NumIRArgs == 1);
1761 auto AI = FnArgs[FirstIRArg];
Chris Lattner800588f2010-07-29 06:26:06 +00001762 llvm::Value *V = AI;
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001763
Stephen Hines176edba2014-12-01 14:53:08 -08001764 if (const ParmVarDecl *PVD = dyn_cast<ParmVarDecl>(Arg)) {
1765 if (getNonNullAttr(CurCodeDecl, PVD, PVD->getType(),
1766 PVD->getFunctionScopeIndex()))
1767 AI->addAttr(llvm::AttributeSet::get(getLLVMContext(),
1768 AI->getArgNo() + 1,
1769 llvm::Attribute::NonNull));
1770
1771 QualType OTy = PVD->getOriginalType();
1772 if (const auto *ArrTy =
1773 getContext().getAsConstantArrayType(OTy)) {
1774 // A C99 array parameter declaration with the static keyword also
1775 // indicates dereferenceability, and if the size is constant we can
1776 // use the dereferenceable attribute (which requires the size in
1777 // bytes).
1778 if (ArrTy->getSizeModifier() == ArrayType::Static) {
1779 QualType ETy = ArrTy->getElementType();
1780 uint64_t ArrSize = ArrTy->getSize().getZExtValue();
1781 if (!ETy->isIncompleteType() && ETy->isConstantSizeType() &&
1782 ArrSize) {
1783 llvm::AttrBuilder Attrs;
1784 Attrs.addDereferenceableAttr(
1785 getContext().getTypeSizeInChars(ETy).getQuantity()*ArrSize);
1786 AI->addAttr(llvm::AttributeSet::get(getLLVMContext(),
1787 AI->getArgNo() + 1, Attrs));
1788 } else if (getContext().getTargetAddressSpace(ETy) == 0) {
1789 AI->addAttr(llvm::AttributeSet::get(getLLVMContext(),
1790 AI->getArgNo() + 1,
1791 llvm::Attribute::NonNull));
1792 }
1793 }
1794 } else if (const auto *ArrTy =
1795 getContext().getAsVariableArrayType(OTy)) {
1796 // For C99 VLAs with the static keyword, we don't know the size so
1797 // we can't use the dereferenceable attribute, but in addrspace(0)
1798 // we know that it must be nonnull.
1799 if (ArrTy->getSizeModifier() == VariableArrayType::Static &&
1800 !getContext().getTargetAddressSpace(ArrTy->getElementType()))
1801 AI->addAttr(llvm::AttributeSet::get(getLLVMContext(),
1802 AI->getArgNo() + 1,
1803 llvm::Attribute::NonNull));
1804 }
1805
1806 const auto *AVAttr = PVD->getAttr<AlignValueAttr>();
1807 if (!AVAttr)
1808 if (const auto *TOTy = dyn_cast<TypedefType>(OTy))
1809 AVAttr = TOTy->getDecl()->getAttr<AlignValueAttr>();
1810 if (AVAttr) {
1811 llvm::Value *AlignmentValue =
1812 EmitScalarExpr(AVAttr->getAlignment());
1813 llvm::ConstantInt *AlignmentCI =
1814 cast<llvm::ConstantInt>(AlignmentValue);
1815 unsigned Alignment =
1816 std::min((unsigned) AlignmentCI->getZExtValue(),
1817 +llvm::Value::MaximumAlignment);
1818
1819 llvm::AttrBuilder Attrs;
1820 Attrs.addAlignmentAttr(Alignment);
1821 AI->addAttr(llvm::AttributeSet::get(getLLVMContext(),
1822 AI->getArgNo() + 1, Attrs));
1823 }
1824 }
1825
Bill Wendlinga6375562012-10-16 05:23:44 +00001826 if (Arg->getType().isRestrictQualified())
Bill Wendling89530e42013-01-23 06:15:10 +00001827 AI->addAttr(llvm::AttributeSet::get(getLLVMContext(),
1828 AI->getArgNo() + 1,
1829 llvm::Attribute::NoAlias));
John McCalld8e10d22010-03-27 00:47:27 +00001830
Chris Lattnerb13eab92011-07-20 06:29:00 +00001831 // Ensure the argument is the correct type.
1832 if (V->getType() != ArgI.getCoerceToType())
1833 V = Builder.CreateBitCast(V, ArgI.getCoerceToType());
1834
John McCalld26bc762011-03-09 04:27:21 +00001835 if (isPromoted)
1836 V = emitArgumentDemotion(*this, Arg, V);
Rafael Espindola8b8a09e2012-11-29 16:09:03 +00001837
Nick Lewycky5d4a7552013-10-01 21:51:38 +00001838 if (const CXXMethodDecl *MD =
1839 dyn_cast_or_null<CXXMethodDecl>(CurCodeDecl)) {
Timur Iskhodzhanov8f189a92013-08-21 06:25:03 +00001840 if (MD->isVirtual() && Arg == CXXABIThisDecl)
Nick Lewycky5d4a7552013-10-01 21:51:38 +00001841 V = CGM.getCXXABI().
1842 adjustThisParameterInVirtualFunctionPrologue(*this, CurGD, V);
Timur Iskhodzhanov8f189a92013-08-21 06:25:03 +00001843 }
1844
Rafael Espindola8b8a09e2012-11-29 16:09:03 +00001845 // Because of merging of function types from multiple decls it is
1846 // possible for the type of an argument to not match the corresponding
1847 // type in the function type. Since we are codegening the callee
1848 // in here, add a cast to the argument type.
1849 llvm::Type *LTy = ConvertType(Arg->getType());
1850 if (V->getType() != LTy)
1851 V = Builder.CreateBitCast(V, LTy);
1852
Stephen Hines651f13c2014-04-23 16:59:28 -07001853 ArgVals.push_back(ValueAndIsPtr(V, HaveValue));
Chris Lattner800588f2010-07-29 06:26:06 +00001854 break;
Daniel Dunbar8b979d92009-02-10 00:06:49 +00001855 }
Mike Stump1eb44332009-09-09 15:08:12 +00001856
Evgeniy Stepanova6ce20e2012-02-10 09:30:15 +00001857 llvm::AllocaInst *Alloca = CreateMemTemp(Ty, Arg->getName());
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001858
Chris Lattnerdeabde22010-07-28 18:24:28 +00001859 // The alignment we need to use is the max of the requested alignment for
1860 // the argument plus the alignment required by our access code below.
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001861 unsigned AlignmentToUse =
Micah Villmow25a6a842012-10-08 16:25:52 +00001862 CGM.getDataLayout().getABITypeAlignment(ArgI.getCoerceToType());
Chris Lattnerdeabde22010-07-28 18:24:28 +00001863 AlignmentToUse = std::max(AlignmentToUse,
1864 (unsigned)getContext().getDeclAlign(Arg).getQuantity());
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001865
Chris Lattnerdeabde22010-07-28 18:24:28 +00001866 Alloca->setAlignment(AlignmentToUse);
Chris Lattner121b3fa2010-07-05 20:21:00 +00001867 llvm::Value *V = Alloca;
Chris Lattner117e3f42010-07-30 04:02:24 +00001868 llvm::Value *Ptr = V; // Pointer to store into.
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001869
Chris Lattner117e3f42010-07-30 04:02:24 +00001870 // If the value is offset in memory, apply the offset now.
1871 if (unsigned Offs = ArgI.getDirectOffset()) {
1872 Ptr = Builder.CreateBitCast(Ptr, Builder.getInt8PtrTy());
1873 Ptr = Builder.CreateConstGEP1_32(Ptr, Offs);
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001874 Ptr = Builder.CreateBitCast(Ptr,
Chris Lattner117e3f42010-07-30 04:02:24 +00001875 llvm::PointerType::getUnqual(ArgI.getCoerceToType()));
1876 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001877
Stephen Hines176edba2014-12-01 14:53:08 -08001878 // Fast-isel and the optimizer generally like scalar values better than
1879 // FCAs, so we flatten them if this is safe to do for this argument.
Evgeniy Stepanova6ce20e2012-02-10 09:30:15 +00001880 llvm::StructType *STy = dyn_cast<llvm::StructType>(ArgI.getCoerceToType());
Stephen Hines176edba2014-12-01 14:53:08 -08001881 if (ArgI.isDirect() && ArgI.getCanBeFlattened() && STy &&
1882 STy->getNumElements() > 1) {
Micah Villmow25a6a842012-10-08 16:25:52 +00001883 uint64_t SrcSize = CGM.getDataLayout().getTypeAllocSize(STy);
Evgeniy Stepanova6ce20e2012-02-10 09:30:15 +00001884 llvm::Type *DstTy =
1885 cast<llvm::PointerType>(Ptr->getType())->getElementType();
Micah Villmow25a6a842012-10-08 16:25:52 +00001886 uint64_t DstSize = CGM.getDataLayout().getTypeAllocSize(DstTy);
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001887
Evgeniy Stepanova6ce20e2012-02-10 09:30:15 +00001888 if (SrcSize <= DstSize) {
1889 Ptr = Builder.CreateBitCast(Ptr, llvm::PointerType::getUnqual(STy));
1890
Stephen Hines176edba2014-12-01 14:53:08 -08001891 assert(STy->getNumElements() == NumIRArgs);
Evgeniy Stepanova6ce20e2012-02-10 09:30:15 +00001892 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
Stephen Hines176edba2014-12-01 14:53:08 -08001893 auto AI = FnArgs[FirstIRArg + i];
Evgeniy Stepanova6ce20e2012-02-10 09:30:15 +00001894 AI->setName(Arg->getName() + ".coerce" + Twine(i));
1895 llvm::Value *EltPtr = Builder.CreateConstGEP2_32(Ptr, 0, i);
Stephen Hines176edba2014-12-01 14:53:08 -08001896 Builder.CreateStore(AI, EltPtr);
Evgeniy Stepanova6ce20e2012-02-10 09:30:15 +00001897 }
1898 } else {
1899 llvm::AllocaInst *TempAlloca =
1900 CreateTempAlloca(ArgI.getCoerceToType(), "coerce");
1901 TempAlloca->setAlignment(AlignmentToUse);
1902 llvm::Value *TempV = TempAlloca;
1903
Stephen Hines176edba2014-12-01 14:53:08 -08001904 assert(STy->getNumElements() == NumIRArgs);
Evgeniy Stepanova6ce20e2012-02-10 09:30:15 +00001905 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
Stephen Hines176edba2014-12-01 14:53:08 -08001906 auto AI = FnArgs[FirstIRArg + i];
Evgeniy Stepanova6ce20e2012-02-10 09:30:15 +00001907 AI->setName(Arg->getName() + ".coerce" + Twine(i));
1908 llvm::Value *EltPtr = Builder.CreateConstGEP2_32(TempV, 0, i);
Stephen Hines176edba2014-12-01 14:53:08 -08001909 Builder.CreateStore(AI, EltPtr);
Evgeniy Stepanova6ce20e2012-02-10 09:30:15 +00001910 }
1911
1912 Builder.CreateMemCpy(Ptr, TempV, DstSize, AlignmentToUse);
Chris Lattner309c59f2010-06-29 00:06:42 +00001913 }
1914 } else {
1915 // Simple case, just do a coerced store of the argument into the alloca.
Stephen Hines176edba2014-12-01 14:53:08 -08001916 assert(NumIRArgs == 1);
1917 auto AI = FnArgs[FirstIRArg];
Chris Lattner225e2862010-06-29 00:14:52 +00001918 AI->setName(Arg->getName() + ".coerce");
Stephen Hines176edba2014-12-01 14:53:08 -08001919 CreateCoercedStore(AI, Ptr, /*DestIsVolatile=*/false, *this);
Chris Lattner309c59f2010-06-29 00:06:42 +00001920 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001921
1922
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +00001923 // Match to what EmitParmDecl is expecting for this type.
John McCall9d232c82013-03-07 21:37:08 +00001924 if (CodeGenFunction::hasScalarEvaluationKind(Ty)) {
Nick Lewycky4ee7dc22013-10-02 02:29:49 +00001925 V = EmitLoadOfScalar(V, false, AlignmentToUse, Ty, Arg->getLocStart());
John McCalld26bc762011-03-09 04:27:21 +00001926 if (isPromoted)
1927 V = emitArgumentDemotion(*this, Arg, V);
Stephen Hines651f13c2014-04-23 16:59:28 -07001928 ArgVals.push_back(ValueAndIsPtr(V, HaveValue));
1929 } else {
1930 ArgVals.push_back(ValueAndIsPtr(V, HavePointer));
Daniel Dunbar8b29a382009-02-04 07:22:24 +00001931 }
Stephen Hines176edba2014-12-01 14:53:08 -08001932 break;
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +00001933 }
Chris Lattner800588f2010-07-29 06:26:06 +00001934
1935 case ABIArgInfo::Expand: {
1936 // If this structure was expanded into multiple arguments then
1937 // we need to create a temporary and reconstruct it from the
1938 // arguments.
Eli Friedman1bb94a42011-11-03 21:39:02 +00001939 llvm::AllocaInst *Alloca = CreateMemTemp(Ty);
Eli Friedman6da2c712011-12-03 04:14:32 +00001940 CharUnits Align = getContext().getDeclAlign(Arg);
1941 Alloca->setAlignment(Align.getQuantity());
1942 LValue LV = MakeAddrLValue(Alloca, Ty, Align);
Stephen Hines651f13c2014-04-23 16:59:28 -07001943 ArgVals.push_back(ValueAndIsPtr(Alloca, HavePointer));
Chris Lattner800588f2010-07-29 06:26:06 +00001944
Stephen Hines176edba2014-12-01 14:53:08 -08001945 auto FnArgIter = FnArgs.begin() + FirstIRArg;
1946 ExpandTypeFromArgs(Ty, LV, FnArgIter);
1947 assert(FnArgIter == FnArgs.begin() + FirstIRArg + NumIRArgs);
1948 for (unsigned i = 0, e = NumIRArgs; i != e; ++i) {
1949 auto AI = FnArgs[FirstIRArg + i];
1950 AI->setName(Arg->getName() + "." + Twine(i));
1951 }
1952 break;
Chris Lattner800588f2010-07-29 06:26:06 +00001953 }
1954
1955 case ABIArgInfo::Ignore:
Stephen Hines176edba2014-12-01 14:53:08 -08001956 assert(NumIRArgs == 0);
Chris Lattner800588f2010-07-29 06:26:06 +00001957 // Initialize the local variable appropriately.
Stephen Hines651f13c2014-04-23 16:59:28 -07001958 if (!hasScalarEvaluationKind(Ty)) {
1959 ArgVals.push_back(ValueAndIsPtr(CreateMemTemp(Ty), HavePointer));
1960 } else {
1961 llvm::Value *U = llvm::UndefValue::get(ConvertType(Arg->getType()));
1962 ArgVals.push_back(ValueAndIsPtr(U, HaveValue));
1963 }
Stephen Hines176edba2014-12-01 14:53:08 -08001964 break;
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001965 }
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001966 }
Stephen Hines651f13c2014-04-23 16:59:28 -07001967
Stephen Hines651f13c2014-04-23 16:59:28 -07001968 if (getTarget().getCXXABI().areArgsDestroyedLeftToRightInCallee()) {
1969 for (int I = Args.size() - 1; I >= 0; --I)
1970 EmitParmDecl(*Args[I], ArgVals[I].getPointer(), ArgVals[I].getInt(),
1971 I + 1);
1972 } else {
1973 for (unsigned I = 0, E = Args.size(); I != E; ++I)
1974 EmitParmDecl(*Args[I], ArgVals[I].getPointer(), ArgVals[I].getInt(),
1975 I + 1);
1976 }
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001977}
1978
John McCall77fe6cd2012-01-29 07:46:59 +00001979static void eraseUnusedBitCasts(llvm::Instruction *insn) {
1980 while (insn->use_empty()) {
1981 llvm::BitCastInst *bitcast = dyn_cast<llvm::BitCastInst>(insn);
1982 if (!bitcast) return;
1983
1984 // This is "safe" because we would have used a ConstantExpr otherwise.
1985 insn = cast<llvm::Instruction>(bitcast->getOperand(0));
1986 bitcast->eraseFromParent();
1987 }
1988}
1989
John McCallf85e1932011-06-15 23:02:42 +00001990/// Try to emit a fused autorelease of a return result.
1991static llvm::Value *tryEmitFusedAutoreleaseOfResult(CodeGenFunction &CGF,
1992 llvm::Value *result) {
1993 // We must be immediately followed the cast.
1994 llvm::BasicBlock *BB = CGF.Builder.GetInsertBlock();
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001995 if (BB->empty()) return nullptr;
1996 if (&BB->back() != result) return nullptr;
John McCallf85e1932011-06-15 23:02:42 +00001997
Chris Lattner2acc6e32011-07-18 04:24:23 +00001998 llvm::Type *resultType = result->getType();
John McCallf85e1932011-06-15 23:02:42 +00001999
2000 // result is in a BasicBlock and is therefore an Instruction.
2001 llvm::Instruction *generator = cast<llvm::Instruction>(result);
2002
Chris Lattner5f9e2722011-07-23 10:55:15 +00002003 SmallVector<llvm::Instruction*,4> insnsToKill;
John McCallf85e1932011-06-15 23:02:42 +00002004
2005 // Look for:
2006 // %generator = bitcast %type1* %generator2 to %type2*
2007 while (llvm::BitCastInst *bitcast = dyn_cast<llvm::BitCastInst>(generator)) {
2008 // We would have emitted this as a constant if the operand weren't
2009 // an Instruction.
2010 generator = cast<llvm::Instruction>(bitcast->getOperand(0));
2011
2012 // Require the generator to be immediately followed by the cast.
2013 if (generator->getNextNode() != bitcast)
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002014 return nullptr;
John McCallf85e1932011-06-15 23:02:42 +00002015
2016 insnsToKill.push_back(bitcast);
2017 }
2018
2019 // Look for:
2020 // %generator = call i8* @objc_retain(i8* %originalResult)
2021 // or
2022 // %generator = call i8* @objc_retainAutoreleasedReturnValue(i8* %originalResult)
2023 llvm::CallInst *call = dyn_cast<llvm::CallInst>(generator);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002024 if (!call) return nullptr;
John McCallf85e1932011-06-15 23:02:42 +00002025
2026 bool doRetainAutorelease;
2027
2028 if (call->getCalledValue() == CGF.CGM.getARCEntrypoints().objc_retain) {
2029 doRetainAutorelease = true;
2030 } else if (call->getCalledValue() == CGF.CGM.getARCEntrypoints()
2031 .objc_retainAutoreleasedReturnValue) {
2032 doRetainAutorelease = false;
2033
John McCallf9fdcc02012-09-07 23:30:50 +00002034 // If we emitted an assembly marker for this call (and the
2035 // ARCEntrypoints field should have been set if so), go looking
2036 // for that call. If we can't find it, we can't do this
2037 // optimization. But it should always be the immediately previous
2038 // instruction, unless we needed bitcasts around the call.
2039 if (CGF.CGM.getARCEntrypoints().retainAutoreleasedReturnValueMarker) {
2040 llvm::Instruction *prev = call->getPrevNode();
2041 assert(prev);
2042 if (isa<llvm::BitCastInst>(prev)) {
2043 prev = prev->getPrevNode();
2044 assert(prev);
2045 }
2046 assert(isa<llvm::CallInst>(prev));
2047 assert(cast<llvm::CallInst>(prev)->getCalledValue() ==
2048 CGF.CGM.getARCEntrypoints().retainAutoreleasedReturnValueMarker);
2049 insnsToKill.push_back(prev);
2050 }
John McCallf85e1932011-06-15 23:02:42 +00002051 } else {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002052 return nullptr;
John McCallf85e1932011-06-15 23:02:42 +00002053 }
2054
2055 result = call->getArgOperand(0);
2056 insnsToKill.push_back(call);
2057
2058 // Keep killing bitcasts, for sanity. Note that we no longer care
2059 // about precise ordering as long as there's exactly one use.
2060 while (llvm::BitCastInst *bitcast = dyn_cast<llvm::BitCastInst>(result)) {
2061 if (!bitcast->hasOneUse()) break;
2062 insnsToKill.push_back(bitcast);
2063 result = bitcast->getOperand(0);
2064 }
2065
2066 // Delete all the unnecessary instructions, from latest to earliest.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002067 for (SmallVectorImpl<llvm::Instruction*>::iterator
John McCallf85e1932011-06-15 23:02:42 +00002068 i = insnsToKill.begin(), e = insnsToKill.end(); i != e; ++i)
2069 (*i)->eraseFromParent();
2070
2071 // Do the fused retain/autorelease if we were asked to.
2072 if (doRetainAutorelease)
2073 result = CGF.EmitARCRetainAutoreleaseReturnValue(result);
2074
2075 // Cast back to the result type.
2076 return CGF.Builder.CreateBitCast(result, resultType);
2077}
2078
John McCall77fe6cd2012-01-29 07:46:59 +00002079/// If this is a +1 of the value of an immutable 'self', remove it.
2080static llvm::Value *tryRemoveRetainOfSelf(CodeGenFunction &CGF,
2081 llvm::Value *result) {
2082 // This is only applicable to a method with an immutable 'self'.
John McCallbd9b65a2012-07-31 00:33:55 +00002083 const ObjCMethodDecl *method =
2084 dyn_cast_or_null<ObjCMethodDecl>(CGF.CurCodeDecl);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002085 if (!method) return nullptr;
John McCall77fe6cd2012-01-29 07:46:59 +00002086 const VarDecl *self = method->getSelfDecl();
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002087 if (!self->getType().isConstQualified()) return nullptr;
John McCall77fe6cd2012-01-29 07:46:59 +00002088
2089 // Look for a retain call.
2090 llvm::CallInst *retainCall =
2091 dyn_cast<llvm::CallInst>(result->stripPointerCasts());
2092 if (!retainCall ||
2093 retainCall->getCalledValue() != CGF.CGM.getARCEntrypoints().objc_retain)
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002094 return nullptr;
John McCall77fe6cd2012-01-29 07:46:59 +00002095
2096 // Look for an ordinary load of 'self'.
2097 llvm::Value *retainedValue = retainCall->getArgOperand(0);
2098 llvm::LoadInst *load =
2099 dyn_cast<llvm::LoadInst>(retainedValue->stripPointerCasts());
2100 if (!load || load->isAtomic() || load->isVolatile() ||
2101 load->getPointerOperand() != CGF.GetAddrOfLocalVar(self))
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002102 return nullptr;
John McCall77fe6cd2012-01-29 07:46:59 +00002103
2104 // Okay! Burn it all down. This relies for correctness on the
2105 // assumption that the retain is emitted as part of the return and
2106 // that thereafter everything is used "linearly".
2107 llvm::Type *resultType = result->getType();
2108 eraseUnusedBitCasts(cast<llvm::Instruction>(result));
2109 assert(retainCall->use_empty());
2110 retainCall->eraseFromParent();
2111 eraseUnusedBitCasts(cast<llvm::Instruction>(retainedValue));
2112
2113 return CGF.Builder.CreateBitCast(load, resultType);
2114}
2115
John McCallf85e1932011-06-15 23:02:42 +00002116/// Emit an ARC autorelease of the result of a function.
John McCall77fe6cd2012-01-29 07:46:59 +00002117///
2118/// \return the value to actually return from the function
John McCallf85e1932011-06-15 23:02:42 +00002119static llvm::Value *emitAutoreleaseOfResult(CodeGenFunction &CGF,
2120 llvm::Value *result) {
John McCall77fe6cd2012-01-29 07:46:59 +00002121 // If we're returning 'self', kill the initial retain. This is a
2122 // heuristic attempt to "encourage correctness" in the really unfortunate
2123 // case where we have a return of self during a dealloc and we desperately
2124 // need to avoid the possible autorelease.
2125 if (llvm::Value *self = tryRemoveRetainOfSelf(CGF, result))
2126 return self;
2127
John McCallf85e1932011-06-15 23:02:42 +00002128 // At -O0, try to emit a fused retain/autorelease.
2129 if (CGF.shouldUseFusedARCCalls())
2130 if (llvm::Value *fused = tryEmitFusedAutoreleaseOfResult(CGF, result))
2131 return fused;
2132
2133 return CGF.EmitARCAutoreleaseReturnValue(result);
2134}
2135
John McCallf48f7962012-01-29 02:35:02 +00002136/// Heuristically search for a dominating store to the return-value slot.
2137static llvm::StoreInst *findDominatingStoreToReturnValue(CodeGenFunction &CGF) {
2138 // If there are multiple uses of the return-value slot, just check
2139 // for something immediately preceding the IP. Sometimes this can
2140 // happen with how we generate implicit-returns; it can also happen
2141 // with noreturn cleanups.
2142 if (!CGF.ReturnValue->hasOneUse()) {
2143 llvm::BasicBlock *IP = CGF.Builder.GetInsertBlock();
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002144 if (IP->empty()) return nullptr;
John McCallf48f7962012-01-29 02:35:02 +00002145 llvm::StoreInst *store = dyn_cast<llvm::StoreInst>(&IP->back());
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002146 if (!store) return nullptr;
2147 if (store->getPointerOperand() != CGF.ReturnValue) return nullptr;
John McCallf48f7962012-01-29 02:35:02 +00002148 assert(!store->isAtomic() && !store->isVolatile()); // see below
2149 return store;
2150 }
2151
2152 llvm::StoreInst *store =
Stephen Hines651f13c2014-04-23 16:59:28 -07002153 dyn_cast<llvm::StoreInst>(CGF.ReturnValue->user_back());
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002154 if (!store) return nullptr;
John McCallf48f7962012-01-29 02:35:02 +00002155
2156 // These aren't actually possible for non-coerced returns, and we
2157 // only care about non-coerced returns on this code path.
2158 assert(!store->isAtomic() && !store->isVolatile());
2159
2160 // Now do a first-and-dirty dominance check: just walk up the
2161 // single-predecessors chain from the current insertion point.
2162 llvm::BasicBlock *StoreBB = store->getParent();
2163 llvm::BasicBlock *IP = CGF.Builder.GetInsertBlock();
2164 while (IP != StoreBB) {
2165 if (!(IP = IP->getSinglePredecessor()))
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002166 return nullptr;
John McCallf48f7962012-01-29 02:35:02 +00002167 }
2168
2169 // Okay, the store's basic block dominates the insertion point; we
2170 // can do our thing.
2171 return store;
2172}
2173
Adrian Prantlfa6b0792013-05-02 17:30:20 +00002174void CodeGenFunction::EmitFunctionEpilog(const CGFunctionInfo &FI,
Nick Lewycky4ee7dc22013-10-02 02:29:49 +00002175 bool EmitRetDbgLoc,
2176 SourceLocation EndLoc) {
Stephen Hines176edba2014-12-01 14:53:08 -08002177 if (CurCodeDecl && CurCodeDecl->hasAttr<NakedAttr>()) {
2178 // Naked functions don't have epilogues.
2179 Builder.CreateUnreachable();
2180 return;
2181 }
2182
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00002183 // Functions with no result always return void.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002184 if (!ReturnValue) {
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00002185 Builder.CreateRetVoid();
Chris Lattnerc6e6dd22010-06-26 23:13:19 +00002186 return;
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00002187 }
Daniel Dunbar21fcc8f2010-06-30 21:27:58 +00002188
Dan Gohman4751a532010-07-20 20:13:52 +00002189 llvm::DebugLoc RetDbgLoc;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002190 llvm::Value *RV = nullptr;
Chris Lattnerc6e6dd22010-06-26 23:13:19 +00002191 QualType RetTy = FI.getReturnType();
2192 const ABIArgInfo &RetAI = FI.getReturnInfo();
2193
2194 switch (RetAI.getKind()) {
Stephen Hines651f13c2014-04-23 16:59:28 -07002195 case ABIArgInfo::InAlloca:
2196 // Aggregrates get evaluated directly into the destination. Sometimes we
2197 // need to return the sret value in a register, though.
2198 assert(hasAggregateEvaluationKind(RetTy));
2199 if (RetAI.getInAllocaSRet()) {
2200 llvm::Function::arg_iterator EI = CurFn->arg_end();
2201 --EI;
2202 llvm::Value *ArgStruct = EI;
2203 llvm::Value *SRet =
2204 Builder.CreateStructGEP(ArgStruct, RetAI.getInAllocaFieldIndex());
2205 RV = Builder.CreateLoad(SRet, "sret");
2206 }
2207 break;
2208
Daniel Dunbar91a16fa2010-08-21 02:24:36 +00002209 case ABIArgInfo::Indirect: {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002210 auto AI = CurFn->arg_begin();
2211 if (RetAI.isSRetAfterThis())
2212 ++AI;
John McCall9d232c82013-03-07 21:37:08 +00002213 switch (getEvaluationKind(RetTy)) {
2214 case TEK_Complex: {
2215 ComplexPairTy RT =
Nick Lewycky4ee7dc22013-10-02 02:29:49 +00002216 EmitLoadOfComplex(MakeNaturalAlignAddrLValue(ReturnValue, RetTy),
2217 EndLoc);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002218 EmitStoreOfComplex(RT, MakeNaturalAlignAddrLValue(AI, RetTy),
John McCall9d232c82013-03-07 21:37:08 +00002219 /*isInit*/ true);
2220 break;
2221 }
2222 case TEK_Aggregate:
Chris Lattnerc6e6dd22010-06-26 23:13:19 +00002223 // Do nothing; aggregrates get evaluated directly into the destination.
John McCall9d232c82013-03-07 21:37:08 +00002224 break;
2225 case TEK_Scalar:
2226 EmitStoreOfScalar(Builder.CreateLoad(ReturnValue),
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002227 MakeNaturalAlignAddrLValue(AI, RetTy),
John McCall9d232c82013-03-07 21:37:08 +00002228 /*isInit*/ true);
2229 break;
Chris Lattnerc6e6dd22010-06-26 23:13:19 +00002230 }
2231 break;
Daniel Dunbar91a16fa2010-08-21 02:24:36 +00002232 }
Chris Lattnerc6e6dd22010-06-26 23:13:19 +00002233
2234 case ABIArgInfo::Extend:
Chris Lattner800588f2010-07-29 06:26:06 +00002235 case ABIArgInfo::Direct:
Chris Lattner117e3f42010-07-30 04:02:24 +00002236 if (RetAI.getCoerceToType() == ConvertType(RetTy) &&
2237 RetAI.getDirectOffset() == 0) {
Chris Lattner800588f2010-07-29 06:26:06 +00002238 // The internal return value temp always will have pointer-to-return-type
2239 // type, just do a load.
Michael J. Spencer9cac4942010-10-19 06:39:39 +00002240
John McCallf48f7962012-01-29 02:35:02 +00002241 // If there is a dominating store to ReturnValue, we can elide
2242 // the load, zap the store, and usually zap the alloca.
2243 if (llvm::StoreInst *SI = findDominatingStoreToReturnValue(*this)) {
Adrian Prantl7c731f52013-05-30 18:12:23 +00002244 // Reuse the debug location from the store unless there is
2245 // cleanup code to be emitted between the store and return
2246 // instruction.
2247 if (EmitRetDbgLoc && !AutoreleaseResult)
Adrian Prantlfa6b0792013-05-02 17:30:20 +00002248 RetDbgLoc = SI->getDebugLoc();
Chris Lattner800588f2010-07-29 06:26:06 +00002249 // Get the stored value and nuke the now-dead store.
Chris Lattner800588f2010-07-29 06:26:06 +00002250 RV = SI->getValueOperand();
2251 SI->eraseFromParent();
Michael J. Spencer9cac4942010-10-19 06:39:39 +00002252
Chris Lattner800588f2010-07-29 06:26:06 +00002253 // If that was the only use of the return value, nuke it as well now.
2254 if (ReturnValue->use_empty() && isa<llvm::AllocaInst>(ReturnValue)) {
2255 cast<llvm::AllocaInst>(ReturnValue)->eraseFromParent();
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002256 ReturnValue = nullptr;
Chris Lattner800588f2010-07-29 06:26:06 +00002257 }
John McCallf48f7962012-01-29 02:35:02 +00002258
2259 // Otherwise, we have to do a simple load.
2260 } else {
2261 RV = Builder.CreateLoad(ReturnValue);
Chris Lattner35b21b82010-06-27 01:06:27 +00002262 }
Chris Lattner800588f2010-07-29 06:26:06 +00002263 } else {
Chris Lattner117e3f42010-07-30 04:02:24 +00002264 llvm::Value *V = ReturnValue;
2265 // If the value is offset in memory, apply the offset now.
2266 if (unsigned Offs = RetAI.getDirectOffset()) {
2267 V = Builder.CreateBitCast(V, Builder.getInt8PtrTy());
2268 V = Builder.CreateConstGEP1_32(V, Offs);
Michael J. Spencer9cac4942010-10-19 06:39:39 +00002269 V = Builder.CreateBitCast(V,
Chris Lattner117e3f42010-07-30 04:02:24 +00002270 llvm::PointerType::getUnqual(RetAI.getCoerceToType()));
2271 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +00002272
Chris Lattner117e3f42010-07-30 04:02:24 +00002273 RV = CreateCoercedLoad(V, RetAI.getCoerceToType(), *this);
Chris Lattner35b21b82010-06-27 01:06:27 +00002274 }
John McCallf85e1932011-06-15 23:02:42 +00002275
2276 // In ARC, end functions that return a retainable type with a call
2277 // to objc_autoreleaseReturnValue.
2278 if (AutoreleaseResult) {
David Blaikie4e4d0842012-03-11 07:00:24 +00002279 assert(getLangOpts().ObjCAutoRefCount &&
John McCallf85e1932011-06-15 23:02:42 +00002280 !FI.isReturnsRetained() &&
2281 RetTy->isObjCRetainableType());
2282 RV = emitAutoreleaseOfResult(*this, RV);
2283 }
2284
Chris Lattnerc6e6dd22010-06-26 23:13:19 +00002285 break;
Chris Lattnerc6e6dd22010-06-26 23:13:19 +00002286
Chris Lattner800588f2010-07-29 06:26:06 +00002287 case ABIArgInfo::Ignore:
Chris Lattnerc6e6dd22010-06-26 23:13:19 +00002288 break;
2289
2290 case ABIArgInfo::Expand:
David Blaikieb219cfc2011-09-23 05:06:16 +00002291 llvm_unreachable("Invalid ABI kind for return argument");
Chris Lattnerc6e6dd22010-06-26 23:13:19 +00002292 }
2293
Stephen Hines176edba2014-12-01 14:53:08 -08002294 llvm::Instruction *Ret;
2295 if (RV) {
2296 if (SanOpts.has(SanitizerKind::ReturnsNonnullAttribute)) {
2297 if (auto RetNNAttr = CurGD.getDecl()->getAttr<ReturnsNonNullAttr>()) {
2298 SanitizerScope SanScope(this);
2299 llvm::Value *Cond = Builder.CreateICmpNE(
2300 RV, llvm::Constant::getNullValue(RV->getType()));
2301 llvm::Constant *StaticData[] = {
2302 EmitCheckSourceLocation(EndLoc),
2303 EmitCheckSourceLocation(RetNNAttr->getLocation()),
2304 };
2305 EmitCheck(std::make_pair(Cond, SanitizerKind::ReturnsNonnullAttribute),
2306 "nonnull_return", StaticData, None);
2307 }
2308 }
2309 Ret = Builder.CreateRet(RV);
2310 } else {
2311 Ret = Builder.CreateRetVoid();
2312 }
2313
Devang Pateld3f265d2010-07-21 18:08:50 +00002314 if (!RetDbgLoc.isUnknown())
2315 Ret->setDebugLoc(RetDbgLoc);
Daniel Dunbar17b708d2008-09-09 23:27:19 +00002316}
2317
Stephen Hines651f13c2014-04-23 16:59:28 -07002318static bool isInAllocaArgument(CGCXXABI &ABI, QualType type) {
2319 const CXXRecordDecl *RD = type->getAsCXXRecordDecl();
2320 return RD && ABI.getRecordArgABI(RD) == CGCXXABI::RAA_DirectInMemory;
2321}
2322
2323static AggValueSlot createPlaceholderSlot(CodeGenFunction &CGF, QualType Ty) {
2324 // FIXME: Generate IR in one pass, rather than going back and fixing up these
2325 // placeholders.
2326 llvm::Type *IRTy = CGF.ConvertTypeForMem(Ty);
2327 llvm::Value *Placeholder =
2328 llvm::UndefValue::get(IRTy->getPointerTo()->getPointerTo());
2329 Placeholder = CGF.Builder.CreateLoad(Placeholder);
2330 return AggValueSlot::forAddr(Placeholder, CharUnits::Zero(),
2331 Ty.getQualifiers(),
2332 AggValueSlot::IsNotDestructed,
2333 AggValueSlot::DoesNotNeedGCBarriers,
2334 AggValueSlot::IsNotAliased);
2335}
2336
John McCall413ebdb2011-03-11 20:59:21 +00002337void CodeGenFunction::EmitDelegateCallArg(CallArgList &args,
Nick Lewycky4ee7dc22013-10-02 02:29:49 +00002338 const VarDecl *param,
2339 SourceLocation loc) {
John McCall27360712010-05-26 22:34:26 +00002340 // StartFunction converted the ABI-lowered parameter(s) into a
2341 // local alloca. We need to turn that into an r-value suitable
2342 // for EmitCall.
John McCall413ebdb2011-03-11 20:59:21 +00002343 llvm::Value *local = GetAddrOfLocalVar(param);
John McCall27360712010-05-26 22:34:26 +00002344
John McCall413ebdb2011-03-11 20:59:21 +00002345 QualType type = param->getType();
Michael J. Spencer9cac4942010-10-19 06:39:39 +00002346
John McCall27360712010-05-26 22:34:26 +00002347 // For the most part, we just need to load the alloca, except:
2348 // 1) aggregate r-values are actually pointers to temporaries, and
John McCall9d232c82013-03-07 21:37:08 +00002349 // 2) references to non-scalars are pointers directly to the aggregate.
2350 // I don't know why references to scalars are different here.
John McCall413ebdb2011-03-11 20:59:21 +00002351 if (const ReferenceType *ref = type->getAs<ReferenceType>()) {
John McCall9d232c82013-03-07 21:37:08 +00002352 if (!hasScalarEvaluationKind(ref->getPointeeType()))
John McCall413ebdb2011-03-11 20:59:21 +00002353 return args.add(RValue::getAggregate(local), type);
John McCall27360712010-05-26 22:34:26 +00002354
2355 // Locals which are references to scalars are represented
2356 // with allocas holding the pointer.
John McCall413ebdb2011-03-11 20:59:21 +00002357 return args.add(RValue::get(Builder.CreateLoad(local)), type);
John McCall27360712010-05-26 22:34:26 +00002358 }
2359
Stephen Hines176edba2014-12-01 14:53:08 -08002360 assert(!isInAllocaArgument(CGM.getCXXABI(), type) &&
2361 "cannot emit delegate call arguments for inalloca arguments!");
Stephen Hines651f13c2014-04-23 16:59:28 -07002362
Nick Lewycky4ee7dc22013-10-02 02:29:49 +00002363 args.add(convertTempToRValue(local, type, loc), type);
John McCall27360712010-05-26 22:34:26 +00002364}
2365
John McCallf85e1932011-06-15 23:02:42 +00002366static bool isProvablyNull(llvm::Value *addr) {
2367 return isa<llvm::ConstantPointerNull>(addr);
2368}
2369
2370static bool isProvablyNonNull(llvm::Value *addr) {
2371 return isa<llvm::AllocaInst>(addr);
2372}
2373
2374/// Emit the actual writing-back of a writeback.
2375static void emitWriteback(CodeGenFunction &CGF,
2376 const CallArgList::Writeback &writeback) {
John McCallb6a60792013-03-23 02:35:54 +00002377 const LValue &srcLV = writeback.Source;
2378 llvm::Value *srcAddr = srcLV.getAddress();
John McCallf85e1932011-06-15 23:02:42 +00002379 assert(!isProvablyNull(srcAddr) &&
2380 "shouldn't have writeback for provably null argument");
2381
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002382 llvm::BasicBlock *contBB = nullptr;
John McCallf85e1932011-06-15 23:02:42 +00002383
2384 // If the argument wasn't provably non-null, we need to null check
2385 // before doing the store.
2386 bool provablyNonNull = isProvablyNonNull(srcAddr);
2387 if (!provablyNonNull) {
2388 llvm::BasicBlock *writebackBB = CGF.createBasicBlock("icr.writeback");
2389 contBB = CGF.createBasicBlock("icr.done");
2390
2391 llvm::Value *isNull = CGF.Builder.CreateIsNull(srcAddr, "icr.isnull");
2392 CGF.Builder.CreateCondBr(isNull, contBB, writebackBB);
2393 CGF.EmitBlock(writebackBB);
2394 }
2395
2396 // Load the value to writeback.
2397 llvm::Value *value = CGF.Builder.CreateLoad(writeback.Temporary);
2398
2399 // Cast it back, in case we're writing an id to a Foo* or something.
2400 value = CGF.Builder.CreateBitCast(value,
2401 cast<llvm::PointerType>(srcAddr->getType())->getElementType(),
2402 "icr.writeback-cast");
2403
2404 // Perform the writeback.
John McCallb6a60792013-03-23 02:35:54 +00002405
2406 // If we have a "to use" value, it's something we need to emit a use
2407 // of. This has to be carefully threaded in: if it's done after the
2408 // release it's potentially undefined behavior (and the optimizer
2409 // will ignore it), and if it happens before the retain then the
2410 // optimizer could move the release there.
2411 if (writeback.ToUse) {
2412 assert(srcLV.getObjCLifetime() == Qualifiers::OCL_Strong);
2413
2414 // Retain the new value. No need to block-copy here: the block's
2415 // being passed up the stack.
2416 value = CGF.EmitARCRetainNonBlock(value);
2417
2418 // Emit the intrinsic use here.
2419 CGF.EmitARCIntrinsicUse(writeback.ToUse);
2420
2421 // Load the old value (primitively).
Nick Lewycky4ee7dc22013-10-02 02:29:49 +00002422 llvm::Value *oldValue = CGF.EmitLoadOfScalar(srcLV, SourceLocation());
John McCallb6a60792013-03-23 02:35:54 +00002423
2424 // Put the new value in place (primitively).
2425 CGF.EmitStoreOfScalar(value, srcLV, /*init*/ false);
2426
2427 // Release the old value.
2428 CGF.EmitARCRelease(oldValue, srcLV.isARCPreciseLifetime());
2429
2430 // Otherwise, we can just do a normal lvalue store.
2431 } else {
2432 CGF.EmitStoreThroughLValue(RValue::get(value), srcLV);
2433 }
John McCallf85e1932011-06-15 23:02:42 +00002434
2435 // Jump to the continuation block.
2436 if (!provablyNonNull)
2437 CGF.EmitBlock(contBB);
2438}
2439
2440static void emitWritebacks(CodeGenFunction &CGF,
2441 const CallArgList &args) {
Stephen Hines651f13c2014-04-23 16:59:28 -07002442 for (const auto &I : args.writebacks())
2443 emitWriteback(CGF, I);
John McCallf85e1932011-06-15 23:02:42 +00002444}
2445
Reid Kleckner9b601952013-06-21 12:45:15 +00002446static void deactivateArgCleanupsBeforeCall(CodeGenFunction &CGF,
2447 const CallArgList &CallArgs) {
Stephen Hines651f13c2014-04-23 16:59:28 -07002448 assert(CGF.getTarget().getCXXABI().areArgsDestroyedLeftToRightInCallee());
Reid Kleckner9b601952013-06-21 12:45:15 +00002449 ArrayRef<CallArgList::CallArgCleanup> Cleanups =
2450 CallArgs.getCleanupsToDeactivate();
2451 // Iterate in reverse to increase the likelihood of popping the cleanup.
2452 for (ArrayRef<CallArgList::CallArgCleanup>::reverse_iterator
2453 I = Cleanups.rbegin(), E = Cleanups.rend(); I != E; ++I) {
2454 CGF.DeactivateCleanupBlock(I->Cleanup, I->IsActiveIP);
2455 I->IsActiveIP->eraseFromParent();
2456 }
2457}
2458
John McCallb6a60792013-03-23 02:35:54 +00002459static const Expr *maybeGetUnaryAddrOfOperand(const Expr *E) {
2460 if (const UnaryOperator *uop = dyn_cast<UnaryOperator>(E->IgnoreParens()))
2461 if (uop->getOpcode() == UO_AddrOf)
2462 return uop->getSubExpr();
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002463 return nullptr;
John McCallb6a60792013-03-23 02:35:54 +00002464}
2465
John McCallf85e1932011-06-15 23:02:42 +00002466/// Emit an argument that's being passed call-by-writeback. That is,
2467/// we are passing the address of
2468static void emitWritebackArg(CodeGenFunction &CGF, CallArgList &args,
2469 const ObjCIndirectCopyRestoreExpr *CRE) {
John McCallb6a60792013-03-23 02:35:54 +00002470 LValue srcLV;
2471
2472 // Make an optimistic effort to emit the address as an l-value.
2473 // This can fail if the the argument expression is more complicated.
2474 if (const Expr *lvExpr = maybeGetUnaryAddrOfOperand(CRE->getSubExpr())) {
2475 srcLV = CGF.EmitLValue(lvExpr);
2476
2477 // Otherwise, just emit it as a scalar.
2478 } else {
2479 llvm::Value *srcAddr = CGF.EmitScalarExpr(CRE->getSubExpr());
2480
2481 QualType srcAddrType =
2482 CRE->getSubExpr()->getType()->castAs<PointerType>()->getPointeeType();
2483 srcLV = CGF.MakeNaturalAlignAddrLValue(srcAddr, srcAddrType);
2484 }
2485 llvm::Value *srcAddr = srcLV.getAddress();
John McCallf85e1932011-06-15 23:02:42 +00002486
2487 // The dest and src types don't necessarily match in LLVM terms
2488 // because of the crazy ObjC compatibility rules.
2489
Chris Lattner2acc6e32011-07-18 04:24:23 +00002490 llvm::PointerType *destType =
John McCallf85e1932011-06-15 23:02:42 +00002491 cast<llvm::PointerType>(CGF.ConvertType(CRE->getType()));
2492
2493 // If the address is a constant null, just pass the appropriate null.
2494 if (isProvablyNull(srcAddr)) {
2495 args.add(RValue::get(llvm::ConstantPointerNull::get(destType)),
2496 CRE->getType());
2497 return;
2498 }
2499
John McCallf85e1932011-06-15 23:02:42 +00002500 // Create the temporary.
2501 llvm::Value *temp = CGF.CreateTempAlloca(destType->getElementType(),
2502 "icr.temp");
Fariborz Jahanian82c458e2012-11-27 23:02:53 +00002503 // Loading an l-value can introduce a cleanup if the l-value is __weak,
2504 // and that cleanup will be conditional if we can't prove that the l-value
2505 // isn't null, so we need to register a dominating point so that the cleanups
2506 // system will make valid IR.
2507 CodeGenFunction::ConditionalEvaluation condEval(CGF);
2508
John McCallf85e1932011-06-15 23:02:42 +00002509 // Zero-initialize it if we're not doing a copy-initialization.
2510 bool shouldCopy = CRE->shouldCopy();
2511 if (!shouldCopy) {
2512 llvm::Value *null =
2513 llvm::ConstantPointerNull::get(
2514 cast<llvm::PointerType>(destType->getElementType()));
2515 CGF.Builder.CreateStore(null, temp);
2516 }
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002517
2518 llvm::BasicBlock *contBB = nullptr;
2519 llvm::BasicBlock *originBB = nullptr;
John McCallf85e1932011-06-15 23:02:42 +00002520
2521 // If the address is *not* known to be non-null, we need to switch.
2522 llvm::Value *finalArgument;
2523
2524 bool provablyNonNull = isProvablyNonNull(srcAddr);
2525 if (provablyNonNull) {
2526 finalArgument = temp;
2527 } else {
2528 llvm::Value *isNull = CGF.Builder.CreateIsNull(srcAddr, "icr.isnull");
2529
2530 finalArgument = CGF.Builder.CreateSelect(isNull,
2531 llvm::ConstantPointerNull::get(destType),
2532 temp, "icr.argument");
2533
2534 // If we need to copy, then the load has to be conditional, which
2535 // means we need control flow.
2536 if (shouldCopy) {
John McCallb6a60792013-03-23 02:35:54 +00002537 originBB = CGF.Builder.GetInsertBlock();
John McCallf85e1932011-06-15 23:02:42 +00002538 contBB = CGF.createBasicBlock("icr.cont");
2539 llvm::BasicBlock *copyBB = CGF.createBasicBlock("icr.copy");
2540 CGF.Builder.CreateCondBr(isNull, contBB, copyBB);
2541 CGF.EmitBlock(copyBB);
Fariborz Jahanian82c458e2012-11-27 23:02:53 +00002542 condEval.begin(CGF);
John McCallf85e1932011-06-15 23:02:42 +00002543 }
2544 }
2545
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002546 llvm::Value *valueToUse = nullptr;
John McCallb6a60792013-03-23 02:35:54 +00002547
John McCallf85e1932011-06-15 23:02:42 +00002548 // Perform a copy if necessary.
2549 if (shouldCopy) {
Nick Lewycky4ee7dc22013-10-02 02:29:49 +00002550 RValue srcRV = CGF.EmitLoadOfLValue(srcLV, SourceLocation());
John McCallf85e1932011-06-15 23:02:42 +00002551 assert(srcRV.isScalar());
2552
2553 llvm::Value *src = srcRV.getScalarVal();
2554 src = CGF.Builder.CreateBitCast(src, destType->getElementType(),
2555 "icr.cast");
2556
2557 // Use an ordinary store, not a store-to-lvalue.
2558 CGF.Builder.CreateStore(src, temp);
John McCallb6a60792013-03-23 02:35:54 +00002559
2560 // If optimization is enabled, and the value was held in a
2561 // __strong variable, we need to tell the optimizer that this
2562 // value has to stay alive until we're doing the store back.
2563 // This is because the temporary is effectively unretained,
2564 // and so otherwise we can violate the high-level semantics.
2565 if (CGF.CGM.getCodeGenOpts().OptimizationLevel != 0 &&
2566 srcLV.getObjCLifetime() == Qualifiers::OCL_Strong) {
2567 valueToUse = src;
2568 }
John McCallf85e1932011-06-15 23:02:42 +00002569 }
Fariborz Jahanian82c458e2012-11-27 23:02:53 +00002570
John McCallf85e1932011-06-15 23:02:42 +00002571 // Finish the control flow if we needed it.
Fariborz Jahanian82c458e2012-11-27 23:02:53 +00002572 if (shouldCopy && !provablyNonNull) {
John McCallb6a60792013-03-23 02:35:54 +00002573 llvm::BasicBlock *copyBB = CGF.Builder.GetInsertBlock();
John McCallf85e1932011-06-15 23:02:42 +00002574 CGF.EmitBlock(contBB);
John McCallb6a60792013-03-23 02:35:54 +00002575
2576 // Make a phi for the value to intrinsically use.
2577 if (valueToUse) {
2578 llvm::PHINode *phiToUse = CGF.Builder.CreatePHI(valueToUse->getType(), 2,
2579 "icr.to-use");
2580 phiToUse->addIncoming(valueToUse, copyBB);
2581 phiToUse->addIncoming(llvm::UndefValue::get(valueToUse->getType()),
2582 originBB);
2583 valueToUse = phiToUse;
2584 }
2585
Fariborz Jahanian82c458e2012-11-27 23:02:53 +00002586 condEval.end(CGF);
2587 }
John McCallf85e1932011-06-15 23:02:42 +00002588
John McCallb6a60792013-03-23 02:35:54 +00002589 args.addWriteback(srcLV, temp, valueToUse);
John McCallf85e1932011-06-15 23:02:42 +00002590 args.add(RValue::get(finalArgument), CRE->getType());
2591}
2592
Stephen Hines651f13c2014-04-23 16:59:28 -07002593void CallArgList::allocateArgumentMemory(CodeGenFunction &CGF) {
2594 assert(!StackBase && !StackCleanup.isValid());
2595
2596 // Save the stack.
2597 llvm::Function *F = CGF.CGM.getIntrinsic(llvm::Intrinsic::stacksave);
2598 StackBase = CGF.Builder.CreateCall(F, "inalloca.save");
2599
2600 // Control gets really tied up in landing pads, so we have to spill the
2601 // stacksave to an alloca to avoid violating SSA form.
2602 // TODO: This is dead if we never emit the cleanup. We should create the
2603 // alloca and store lazily on the first cleanup emission.
2604 StackBaseMem = CGF.CreateTempAlloca(CGF.Int8PtrTy, "inalloca.spmem");
2605 CGF.Builder.CreateStore(StackBase, StackBaseMem);
2606 CGF.pushStackRestore(EHCleanup, StackBaseMem);
2607 StackCleanup = CGF.EHStack.getInnermostEHScope();
2608 assert(StackCleanup.isValid());
2609}
2610
2611void CallArgList::freeArgumentMemory(CodeGenFunction &CGF) const {
2612 if (StackBase) {
2613 CGF.DeactivateCleanupBlock(StackCleanup, StackBase);
2614 llvm::Value *F = CGF.CGM.getIntrinsic(llvm::Intrinsic::stackrestore);
2615 // We could load StackBase from StackBaseMem, but in the non-exceptional
2616 // case we can skip it.
2617 CGF.Builder.CreateCall(F, StackBase);
2618 }
2619}
2620
Stephen Hines176edba2014-12-01 14:53:08 -08002621static void emitNonNullArgCheck(CodeGenFunction &CGF, RValue RV,
2622 QualType ArgType, SourceLocation ArgLoc,
2623 const FunctionDecl *FD, unsigned ParmNum) {
2624 if (!CGF.SanOpts.has(SanitizerKind::NonnullAttribute) || !FD)
2625 return;
2626 auto PVD = ParmNum < FD->getNumParams() ? FD->getParamDecl(ParmNum) : nullptr;
2627 unsigned ArgNo = PVD ? PVD->getFunctionScopeIndex() : ParmNum;
2628 auto NNAttr = getNonNullAttr(FD, PVD, ArgType, ArgNo);
2629 if (!NNAttr)
2630 return;
2631 CodeGenFunction::SanitizerScope SanScope(&CGF);
2632 assert(RV.isScalar());
2633 llvm::Value *V = RV.getScalarVal();
2634 llvm::Value *Cond =
2635 CGF.Builder.CreateICmpNE(V, llvm::Constant::getNullValue(V->getType()));
2636 llvm::Constant *StaticData[] = {
2637 CGF.EmitCheckSourceLocation(ArgLoc),
2638 CGF.EmitCheckSourceLocation(NNAttr->getLocation()),
2639 llvm::ConstantInt::get(CGF.Int32Ty, ArgNo + 1),
2640 };
2641 CGF.EmitCheck(std::make_pair(Cond, SanitizerKind::NonnullAttribute),
2642 "nonnull_arg", StaticData, None);
2643}
2644
Stephen Hines651f13c2014-04-23 16:59:28 -07002645void CodeGenFunction::EmitCallArgs(CallArgList &Args,
2646 ArrayRef<QualType> ArgTypes,
2647 CallExpr::const_arg_iterator ArgBeg,
2648 CallExpr::const_arg_iterator ArgEnd,
Stephen Hines176edba2014-12-01 14:53:08 -08002649 const FunctionDecl *CalleeDecl,
2650 unsigned ParamsToSkip,
Stephen Hines651f13c2014-04-23 16:59:28 -07002651 bool ForceColumnInfo) {
2652 CGDebugInfo *DI = getDebugInfo();
2653 SourceLocation CallLoc;
2654 if (DI) CallLoc = DI->getLocation();
2655
2656 // We *have* to evaluate arguments from right to left in the MS C++ ABI,
2657 // because arguments are destroyed left to right in the callee.
2658 if (CGM.getTarget().getCXXABI().areArgsDestroyedLeftToRightInCallee()) {
2659 // Insert a stack save if we're going to need any inalloca args.
2660 bool HasInAllocaArgs = false;
2661 for (ArrayRef<QualType>::iterator I = ArgTypes.begin(), E = ArgTypes.end();
2662 I != E && !HasInAllocaArgs; ++I)
2663 HasInAllocaArgs = isInAllocaArgument(CGM.getCXXABI(), *I);
2664 if (HasInAllocaArgs) {
2665 assert(getTarget().getTriple().getArch() == llvm::Triple::x86);
2666 Args.allocateArgumentMemory(*this);
2667 }
2668
2669 // Evaluate each argument.
2670 size_t CallArgsStart = Args.size();
2671 for (int I = ArgTypes.size() - 1; I >= 0; --I) {
2672 CallExpr::const_arg_iterator Arg = ArgBeg + I;
2673 EmitCallArg(Args, *Arg, ArgTypes[I]);
Stephen Hines176edba2014-12-01 14:53:08 -08002674 emitNonNullArgCheck(*this, Args.back().RV, ArgTypes[I], Arg->getExprLoc(),
2675 CalleeDecl, ParamsToSkip + I);
Stephen Hines651f13c2014-04-23 16:59:28 -07002676 // Restore the debug location.
2677 if (DI) DI->EmitLocation(Builder, CallLoc, ForceColumnInfo);
2678 }
2679
2680 // Un-reverse the arguments we just evaluated so they match up with the LLVM
2681 // IR function.
2682 std::reverse(Args.begin() + CallArgsStart, Args.end());
2683 return;
2684 }
2685
2686 for (unsigned I = 0, E = ArgTypes.size(); I != E; ++I) {
2687 CallExpr::const_arg_iterator Arg = ArgBeg + I;
2688 assert(Arg != ArgEnd);
2689 EmitCallArg(Args, *Arg, ArgTypes[I]);
Stephen Hines176edba2014-12-01 14:53:08 -08002690 emitNonNullArgCheck(*this, Args.back().RV, ArgTypes[I], Arg->getExprLoc(),
2691 CalleeDecl, ParamsToSkip + I);
Stephen Hines651f13c2014-04-23 16:59:28 -07002692 // Restore the debug location.
2693 if (DI) DI->EmitLocation(Builder, CallLoc, ForceColumnInfo);
2694 }
2695}
2696
2697namespace {
2698
2699struct DestroyUnpassedArg : EHScopeStack::Cleanup {
2700 DestroyUnpassedArg(llvm::Value *Addr, QualType Ty)
2701 : Addr(Addr), Ty(Ty) {}
2702
2703 llvm::Value *Addr;
2704 QualType Ty;
2705
2706 void Emit(CodeGenFunction &CGF, Flags flags) override {
2707 const CXXDestructorDecl *Dtor = Ty->getAsCXXRecordDecl()->getDestructor();
2708 assert(!Dtor->isTrivial());
2709 CGF.EmitCXXDestructorCall(Dtor, Dtor_Complete, /*for vbase*/ false,
2710 /*Delegating=*/false, Addr);
2711 }
2712};
2713
2714}
2715
John McCall413ebdb2011-03-11 20:59:21 +00002716void CodeGenFunction::EmitCallArg(CallArgList &args, const Expr *E,
2717 QualType type) {
John McCallf85e1932011-06-15 23:02:42 +00002718 if (const ObjCIndirectCopyRestoreExpr *CRE
2719 = dyn_cast<ObjCIndirectCopyRestoreExpr>(E)) {
Richard Smith7edf9e32012-11-01 22:30:59 +00002720 assert(getLangOpts().ObjCAutoRefCount);
John McCallf85e1932011-06-15 23:02:42 +00002721 assert(getContext().hasSameType(E->getType(), type));
2722 return emitWritebackArg(*this, args, CRE);
2723 }
2724
John McCall8affed52011-08-26 18:42:59 +00002725 assert(type->isReferenceType() == E->isGLValue() &&
2726 "reference binding to unmaterialized r-value!");
2727
John McCallcec52f02011-08-26 21:08:13 +00002728 if (E->isGLValue()) {
2729 assert(E->getObjectKind() == OK_Ordinary);
Richard Smithd4ec5622013-06-12 23:38:09 +00002730 return args.add(EmitReferenceBindingToExpr(E), type);
John McCallcec52f02011-08-26 21:08:13 +00002731 }
Mike Stump1eb44332009-09-09 15:08:12 +00002732
Reid Kleckner9b601952013-06-21 12:45:15 +00002733 bool HasAggregateEvalKind = hasAggregateEvaluationKind(type);
2734
2735 // In the Microsoft C++ ABI, aggregate arguments are destructed by the callee.
2736 // However, we still have to push an EH-only cleanup in case we unwind before
2737 // we make it to the call.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002738 if (HasAggregateEvalKind &&
2739 CGM.getTarget().getCXXABI().areArgsDestroyedLeftToRightInCallee()) {
2740 // If we're using inalloca, use the argument memory. Otherwise, use a
2741 // temporary.
2742 AggValueSlot Slot;
2743 if (args.isUsingInAlloca())
2744 Slot = createPlaceholderSlot(*this, type);
2745 else
2746 Slot = CreateAggTemp(type, "agg.tmp");
2747
2748 const CXXRecordDecl *RD = type->getAsCXXRecordDecl();
2749 bool DestroyedInCallee =
2750 RD && RD->hasNonTrivialDestructor() &&
2751 CGM.getCXXABI().getRecordArgABI(RD) != CGCXXABI::RAA_Default;
2752 if (DestroyedInCallee)
2753 Slot.setExternallyDestructed();
2754
Stephen Hines651f13c2014-04-23 16:59:28 -07002755 EmitAggExpr(E, Slot);
2756 RValue RV = Slot.asRValue();
2757 args.add(RV, type);
Reid Kleckner9b601952013-06-21 12:45:15 +00002758
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002759 if (DestroyedInCallee) {
Stephen Hines651f13c2014-04-23 16:59:28 -07002760 // Create a no-op GEP between the placeholder and the cleanup so we can
2761 // RAUW it successfully. It also serves as a marker of the first
2762 // instruction where the cleanup is active.
2763 pushFullExprCleanup<DestroyUnpassedArg>(EHCleanup, Slot.getAddr(), type);
Reid Kleckner9b601952013-06-21 12:45:15 +00002764 // This unreachable is a temporary marker which will be removed later.
2765 llvm::Instruction *IsActive = Builder.CreateUnreachable();
2766 args.addArgCleanupDeactivation(EHStack.getInnermostEHScope(), IsActive);
Reid Kleckner9b601952013-06-21 12:45:15 +00002767 }
Stephen Hines651f13c2014-04-23 16:59:28 -07002768 return;
Reid Kleckner9b601952013-06-21 12:45:15 +00002769 }
2770
2771 if (HasAggregateEvalKind && isa<ImplicitCastExpr>(E) &&
Eli Friedman55d48482011-05-26 00:10:27 +00002772 cast<CastExpr>(E)->getCastKind() == CK_LValueToRValue) {
2773 LValue L = EmitLValue(cast<CastExpr>(E)->getSubExpr());
2774 assert(L.isSimple());
Eli Friedmand39083d2013-06-11 01:08:22 +00002775 if (L.getAlignment() >= getContext().getTypeAlignInChars(type)) {
2776 args.add(L.asAggregateRValue(), type, /*NeedsCopy*/true);
2777 } else {
2778 // We can't represent a misaligned lvalue in the CallArgList, so copy
2779 // to an aligned temporary now.
2780 llvm::Value *tmp = CreateMemTemp(type);
2781 EmitAggregateCopy(tmp, L.getAddress(), type, L.isVolatile(),
2782 L.getAlignment());
2783 args.add(RValue::getAggregate(tmp), type);
2784 }
Eli Friedman55d48482011-05-26 00:10:27 +00002785 return;
2786 }
2787
John McCall413ebdb2011-03-11 20:59:21 +00002788 args.add(EmitAnyExprToTemp(E), type);
Anders Carlsson0139bb92009-04-08 20:47:54 +00002789}
2790
Stephen Hines176edba2014-12-01 14:53:08 -08002791QualType CodeGenFunction::getVarArgType(const Expr *Arg) {
2792 // System headers on Windows define NULL to 0 instead of 0LL on Win64. MSVC
2793 // implicitly widens null pointer constants that are arguments to varargs
2794 // functions to pointer-sized ints.
2795 if (!getTarget().getTriple().isOSWindows())
2796 return Arg->getType();
2797
2798 if (Arg->getType()->isIntegerType() &&
2799 getContext().getTypeSize(Arg->getType()) <
2800 getContext().getTargetInfo().getPointerWidth(0) &&
2801 Arg->isNullPointerConstant(getContext(),
2802 Expr::NPC_ValueDependentIsNotNull)) {
2803 return getContext().getIntPtrType();
2804 }
2805
2806 return Arg->getType();
2807}
2808
Dan Gohmanb49bd272012-02-16 00:57:37 +00002809// In ObjC ARC mode with no ObjC ARC exception safety, tell the ARC
2810// optimizer it can aggressively ignore unwind edges.
2811void
2812CodeGenFunction::AddObjCARCExceptionMetadata(llvm::Instruction *Inst) {
2813 if (CGM.getCodeGenOpts().OptimizationLevel != 0 &&
2814 !CGM.getCodeGenOpts().ObjCAutoRefCountExceptions)
2815 Inst->setMetadata("clang.arc.no_objc_arc_exceptions",
2816 CGM.getNoObjCARCExceptionsMetadata());
2817}
2818
John McCallbd7370a2013-02-28 19:01:20 +00002819/// Emits a call to the given no-arguments nounwind runtime function.
2820llvm::CallInst *
2821CodeGenFunction::EmitNounwindRuntimeCall(llvm::Value *callee,
2822 const llvm::Twine &name) {
Stephen Hines176edba2014-12-01 14:53:08 -08002823 return EmitNounwindRuntimeCall(callee, None, name);
John McCallbd7370a2013-02-28 19:01:20 +00002824}
2825
2826/// Emits a call to the given nounwind runtime function.
2827llvm::CallInst *
2828CodeGenFunction::EmitNounwindRuntimeCall(llvm::Value *callee,
2829 ArrayRef<llvm::Value*> args,
2830 const llvm::Twine &name) {
2831 llvm::CallInst *call = EmitRuntimeCall(callee, args, name);
2832 call->setDoesNotThrow();
2833 return call;
2834}
2835
2836/// Emits a simple call (never an invoke) to the given no-arguments
2837/// runtime function.
2838llvm::CallInst *
2839CodeGenFunction::EmitRuntimeCall(llvm::Value *callee,
2840 const llvm::Twine &name) {
Stephen Hines176edba2014-12-01 14:53:08 -08002841 return EmitRuntimeCall(callee, None, name);
John McCallbd7370a2013-02-28 19:01:20 +00002842}
2843
2844/// Emits a simple call (never an invoke) to the given runtime
2845/// function.
2846llvm::CallInst *
2847CodeGenFunction::EmitRuntimeCall(llvm::Value *callee,
2848 ArrayRef<llvm::Value*> args,
2849 const llvm::Twine &name) {
2850 llvm::CallInst *call = Builder.CreateCall(callee, args, name);
2851 call->setCallingConv(getRuntimeCC());
2852 return call;
2853}
2854
2855/// Emits a call or invoke to the given noreturn runtime function.
2856void CodeGenFunction::EmitNoreturnRuntimeCallOrInvoke(llvm::Value *callee,
2857 ArrayRef<llvm::Value*> args) {
2858 if (getInvokeDest()) {
2859 llvm::InvokeInst *invoke =
2860 Builder.CreateInvoke(callee,
2861 getUnreachableBlock(),
2862 getInvokeDest(),
2863 args);
2864 invoke->setDoesNotReturn();
2865 invoke->setCallingConv(getRuntimeCC());
2866 } else {
2867 llvm::CallInst *call = Builder.CreateCall(callee, args);
2868 call->setDoesNotReturn();
2869 call->setCallingConv(getRuntimeCC());
2870 Builder.CreateUnreachable();
2871 }
Stephen Hines651f13c2014-04-23 16:59:28 -07002872 PGO.setCurrentRegionUnreachable();
John McCallbd7370a2013-02-28 19:01:20 +00002873}
2874
2875/// Emits a call or invoke instruction to the given nullary runtime
2876/// function.
2877llvm::CallSite
2878CodeGenFunction::EmitRuntimeCallOrInvoke(llvm::Value *callee,
2879 const Twine &name) {
Stephen Hines176edba2014-12-01 14:53:08 -08002880 return EmitRuntimeCallOrInvoke(callee, None, name);
John McCallbd7370a2013-02-28 19:01:20 +00002881}
2882
2883/// Emits a call or invoke instruction to the given runtime function.
2884llvm::CallSite
2885CodeGenFunction::EmitRuntimeCallOrInvoke(llvm::Value *callee,
2886 ArrayRef<llvm::Value*> args,
2887 const Twine &name) {
2888 llvm::CallSite callSite = EmitCallOrInvoke(callee, args, name);
2889 callSite.setCallingConv(getRuntimeCC());
2890 return callSite;
2891}
2892
2893llvm::CallSite
2894CodeGenFunction::EmitCallOrInvoke(llvm::Value *Callee,
2895 const Twine &Name) {
Stephen Hines176edba2014-12-01 14:53:08 -08002896 return EmitCallOrInvoke(Callee, None, Name);
John McCallbd7370a2013-02-28 19:01:20 +00002897}
2898
John McCallf1549f62010-07-06 01:34:17 +00002899/// Emits a call or invoke instruction to the given function, depending
2900/// on the current state of the EH stack.
2901llvm::CallSite
2902CodeGenFunction::EmitCallOrInvoke(llvm::Value *Callee,
Chris Lattner2d3ba4f2011-07-23 17:14:25 +00002903 ArrayRef<llvm::Value *> Args,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002904 const Twine &Name) {
John McCallf1549f62010-07-06 01:34:17 +00002905 llvm::BasicBlock *InvokeDest = getInvokeDest();
John McCallf1549f62010-07-06 01:34:17 +00002906
Dan Gohmanb49bd272012-02-16 00:57:37 +00002907 llvm::Instruction *Inst;
2908 if (!InvokeDest)
2909 Inst = Builder.CreateCall(Callee, Args, Name);
2910 else {
2911 llvm::BasicBlock *ContBB = createBasicBlock("invoke.cont");
2912 Inst = Builder.CreateInvoke(Callee, ContBB, InvokeDest, Args, Name);
2913 EmitBlock(ContBB);
2914 }
2915
2916 // In ObjC ARC mode with no ObjC ARC exception safety, tell the ARC
2917 // optimizer it can aggressively ignore unwind edges.
David Blaikie4e4d0842012-03-11 07:00:24 +00002918 if (CGM.getLangOpts().ObjCAutoRefCount)
Dan Gohmanb49bd272012-02-16 00:57:37 +00002919 AddObjCARCExceptionMetadata(Inst);
2920
2921 return Inst;
John McCallf1549f62010-07-06 01:34:17 +00002922}
2923
Stephen Hines651f13c2014-04-23 16:59:28 -07002924/// \brief Store a non-aggregate value to an address to initialize it. For
2925/// initialization, a non-atomic store will be used.
2926static void EmitInitStoreOfNonAggregate(CodeGenFunction &CGF, RValue Src,
2927 LValue Dst) {
2928 if (Src.isScalar())
2929 CGF.EmitStoreOfScalar(Src.getScalarVal(), Dst, /*init=*/true);
2930 else
2931 CGF.EmitStoreOfComplex(Src.getComplexVal(), Dst, /*init=*/true);
2932}
2933
2934void CodeGenFunction::deferPlaceholderReplacement(llvm::Instruction *Old,
2935 llvm::Value *New) {
2936 DeferredReplacements.push_back(std::make_pair(Old, New));
2937}
Chris Lattner811bf362011-07-12 06:29:11 +00002938
Daniel Dunbar88b53962009-02-02 22:03:45 +00002939RValue CodeGenFunction::EmitCall(const CGFunctionInfo &CallInfo,
Mike Stump1eb44332009-09-09 15:08:12 +00002940 llvm::Value *Callee,
Anders Carlssonf3c47c92009-12-24 19:25:24 +00002941 ReturnValueSlot ReturnValue,
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00002942 const CallArgList &CallArgs,
David Chisnalldd5c98f2010-05-01 11:15:56 +00002943 const Decl *TargetDecl,
David Chisnall4b02afc2010-05-02 13:41:58 +00002944 llvm::Instruction **callOrInvoke) {
Mike Stumpf5408fe2009-05-16 07:57:57 +00002945 // FIXME: We no longer need the types from CallArgs; lift up and simplify.
Daniel Dunbar17b708d2008-09-09 23:27:19 +00002946
2947 // Handle struct-return functions by passing a pointer to the
2948 // location that we would like to return into.
Daniel Dunbarbb36d332009-02-02 21:43:58 +00002949 QualType RetTy = CallInfo.getReturnType();
Daniel Dunbarb225be42009-02-03 05:59:18 +00002950 const ABIArgInfo &RetAI = CallInfo.getReturnInfo();
Mike Stump1eb44332009-09-09 15:08:12 +00002951
Chris Lattner70855442011-07-12 04:46:18 +00002952 llvm::FunctionType *IRFuncTy =
2953 cast<llvm::FunctionType>(
2954 cast<llvm::PointerType>(Callee->getType())->getElementType());
Mike Stump1eb44332009-09-09 15:08:12 +00002955
Stephen Hines651f13c2014-04-23 16:59:28 -07002956 // If we're using inalloca, insert the allocation after the stack save.
2957 // FIXME: Do this earlier rather than hacking it in here!
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002958 llvm::Value *ArgMemory = nullptr;
Stephen Hines651f13c2014-04-23 16:59:28 -07002959 if (llvm::StructType *ArgStruct = CallInfo.getArgStruct()) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002960 llvm::Instruction *IP = CallArgs.getStackBase();
2961 llvm::AllocaInst *AI;
2962 if (IP) {
2963 IP = IP->getNextNode();
2964 AI = new llvm::AllocaInst(ArgStruct, "argmem", IP);
2965 } else {
2966 AI = CreateTempAlloca(ArgStruct, "argmem");
2967 }
Stephen Hines651f13c2014-04-23 16:59:28 -07002968 AI->setUsedWithInAlloca(true);
2969 assert(AI->isUsedWithInAlloca() && !AI->isStaticAlloca());
2970 ArgMemory = AI;
2971 }
2972
Stephen Hines176edba2014-12-01 14:53:08 -08002973 ClangToLLVMArgMapping IRFunctionArgs(CGM.getContext(), CallInfo);
2974 SmallVector<llvm::Value *, 16> IRCallArgs(IRFunctionArgs.totalIRArgs());
2975
Chris Lattner5db7ae52009-06-13 00:26:38 +00002976 // If the call returns a temporary with struct return, create a temporary
Anders Carlssond2490a92009-12-24 20:40:36 +00002977 // alloca to hold the result, unless one is given to us.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002978 llvm::Value *SRetPtr = nullptr;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002979 if (RetAI.isIndirect() || RetAI.isInAlloca()) {
Stephen Hines651f13c2014-04-23 16:59:28 -07002980 SRetPtr = ReturnValue.getValue();
2981 if (!SRetPtr)
2982 SRetPtr = CreateMemTemp(RetTy);
Stephen Hines176edba2014-12-01 14:53:08 -08002983 if (IRFunctionArgs.hasSRetArg()) {
2984 IRCallArgs[IRFunctionArgs.getSRetArgNo()] = SRetPtr;
Stephen Hines651f13c2014-04-23 16:59:28 -07002985 } else {
2986 llvm::Value *Addr =
2987 Builder.CreateStructGEP(ArgMemory, RetAI.getInAllocaFieldIndex());
2988 Builder.CreateStore(SRetPtr, Addr);
2989 }
Anders Carlssond2490a92009-12-24 20:40:36 +00002990 }
Mike Stump1eb44332009-09-09 15:08:12 +00002991
Daniel Dunbar4b5f0a42009-02-04 21:17:21 +00002992 assert(CallInfo.arg_size() == CallArgs.size() &&
2993 "Mismatch between function signature & arguments.");
Stephen Hines176edba2014-12-01 14:53:08 -08002994 unsigned ArgNo = 0;
Daniel Dunbarb225be42009-02-03 05:59:18 +00002995 CGFunctionInfo::const_arg_iterator info_it = CallInfo.arg_begin();
Mike Stump1eb44332009-09-09 15:08:12 +00002996 for (CallArgList::const_iterator I = CallArgs.begin(), E = CallArgs.end();
Stephen Hines176edba2014-12-01 14:53:08 -08002997 I != E; ++I, ++info_it, ++ArgNo) {
Daniel Dunbarb225be42009-02-03 05:59:18 +00002998 const ABIArgInfo &ArgInfo = info_it->info;
Eli Friedmanc6d07822011-05-02 18:05:27 +00002999 RValue RV = I->RV;
Daniel Dunbar56273772008-09-17 00:51:38 +00003000
John McCall9d232c82013-03-07 21:37:08 +00003001 CharUnits TypeAlign = getContext().getTypeAlignInChars(I->Ty);
Rafael Espindolae4aeeaa2012-10-24 01:59:00 +00003002
3003 // Insert a padding argument to ensure proper alignment.
Stephen Hines176edba2014-12-01 14:53:08 -08003004 if (IRFunctionArgs.hasPaddingArg(ArgNo))
3005 IRCallArgs[IRFunctionArgs.getPaddingArgNo(ArgNo)] =
3006 llvm::UndefValue::get(ArgInfo.getPaddingType());
3007
3008 unsigned FirstIRArg, NumIRArgs;
3009 std::tie(FirstIRArg, NumIRArgs) = IRFunctionArgs.getIRArgs(ArgNo);
Rafael Espindolae4aeeaa2012-10-24 01:59:00 +00003010
Daniel Dunbar56273772008-09-17 00:51:38 +00003011 switch (ArgInfo.getKind()) {
Stephen Hines651f13c2014-04-23 16:59:28 -07003012 case ABIArgInfo::InAlloca: {
Stephen Hines176edba2014-12-01 14:53:08 -08003013 assert(NumIRArgs == 0);
Stephen Hines651f13c2014-04-23 16:59:28 -07003014 assert(getTarget().getTriple().getArch() == llvm::Triple::x86);
3015 if (RV.isAggregate()) {
3016 // Replace the placeholder with the appropriate argument slot GEP.
3017 llvm::Instruction *Placeholder =
3018 cast<llvm::Instruction>(RV.getAggregateAddr());
3019 CGBuilderTy::InsertPoint IP = Builder.saveIP();
3020 Builder.SetInsertPoint(Placeholder);
3021 llvm::Value *Addr = Builder.CreateStructGEP(
3022 ArgMemory, ArgInfo.getInAllocaFieldIndex());
3023 Builder.restoreIP(IP);
3024 deferPlaceholderReplacement(Placeholder, Addr);
3025 } else {
3026 // Store the RValue into the argument struct.
3027 llvm::Value *Addr =
3028 Builder.CreateStructGEP(ArgMemory, ArgInfo.getInAllocaFieldIndex());
3029 unsigned AS = Addr->getType()->getPointerAddressSpace();
3030 llvm::Type *MemType = ConvertTypeForMem(I->Ty)->getPointerTo(AS);
3031 // There are some cases where a trivial bitcast is not avoidable. The
3032 // definition of a type later in a translation unit may change it's type
3033 // from {}* to (%struct.foo*)*.
3034 if (Addr->getType() != MemType)
3035 Addr = Builder.CreateBitCast(Addr, MemType);
3036 LValue argLV = MakeAddrLValue(Addr, I->Ty, TypeAlign);
3037 EmitInitStoreOfNonAggregate(*this, RV, argLV);
3038 }
Stephen Hines176edba2014-12-01 14:53:08 -08003039 break;
Stephen Hines651f13c2014-04-23 16:59:28 -07003040 }
3041
Daniel Dunbar91a16fa2010-08-21 02:24:36 +00003042 case ABIArgInfo::Indirect: {
Stephen Hines176edba2014-12-01 14:53:08 -08003043 assert(NumIRArgs == 1);
Daniel Dunbar1f745982009-02-05 09:16:39 +00003044 if (RV.isScalar() || RV.isComplex()) {
3045 // Make a temporary alloca to pass the argument.
Eli Friedman70cbd2a2011-06-15 18:26:32 +00003046 llvm::AllocaInst *AI = CreateMemTemp(I->Ty);
3047 if (ArgInfo.getIndirectAlign() > AI->getAlignment())
3048 AI->setAlignment(ArgInfo.getIndirectAlign());
Stephen Hines176edba2014-12-01 14:53:08 -08003049 IRCallArgs[FirstIRArg] = AI;
John McCall9d232c82013-03-07 21:37:08 +00003050
Stephen Hines176edba2014-12-01 14:53:08 -08003051 LValue argLV = MakeAddrLValue(AI, I->Ty, TypeAlign);
Stephen Hines651f13c2014-04-23 16:59:28 -07003052 EmitInitStoreOfNonAggregate(*this, RV, argLV);
Daniel Dunbar1f745982009-02-05 09:16:39 +00003053 } else {
Eli Friedmanea5e4da2011-06-14 01:37:52 +00003054 // We want to avoid creating an unnecessary temporary+copy here;
Guy Benyeid436c992013-03-10 12:59:00 +00003055 // however, we need one in three cases:
Eli Friedmanea5e4da2011-06-14 01:37:52 +00003056 // 1. If the argument is not byval, and we are required to copy the
3057 // source. (This case doesn't occur on any common architecture.)
3058 // 2. If the argument is byval, RV is not sufficiently aligned, and
3059 // we cannot force it to be sufficiently aligned.
Guy Benyeid436c992013-03-10 12:59:00 +00003060 // 3. If the argument is byval, but RV is located in an address space
3061 // different than that of the argument (0).
Eli Friedman97cb5a42011-06-15 22:09:18 +00003062 llvm::Value *Addr = RV.getAggregateAddr();
3063 unsigned Align = ArgInfo.getIndirectAlign();
Micah Villmow25a6a842012-10-08 16:25:52 +00003064 const llvm::DataLayout *TD = &CGM.getDataLayout();
Guy Benyeid436c992013-03-10 12:59:00 +00003065 const unsigned RVAddrSpace = Addr->getType()->getPointerAddressSpace();
Stephen Hines176edba2014-12-01 14:53:08 -08003066 const unsigned ArgAddrSpace =
3067 (FirstIRArg < IRFuncTy->getNumParams()
3068 ? IRFuncTy->getParamType(FirstIRArg)->getPointerAddressSpace()
3069 : 0);
Eli Friedman97cb5a42011-06-15 22:09:18 +00003070 if ((!ArgInfo.getIndirectByVal() && I->NeedsCopy) ||
John McCall9d232c82013-03-07 21:37:08 +00003071 (ArgInfo.getIndirectByVal() && TypeAlign.getQuantity() < Align &&
Guy Benyeid436c992013-03-10 12:59:00 +00003072 llvm::getOrEnforceKnownAlignment(Addr, Align, TD) < Align) ||
3073 (ArgInfo.getIndirectByVal() && (RVAddrSpace != ArgAddrSpace))) {
Eli Friedmanea5e4da2011-06-14 01:37:52 +00003074 // Create an aligned temporary, and copy to it.
Eli Friedman97cb5a42011-06-15 22:09:18 +00003075 llvm::AllocaInst *AI = CreateMemTemp(I->Ty);
3076 if (Align > AI->getAlignment())
3077 AI->setAlignment(Align);
Stephen Hines176edba2014-12-01 14:53:08 -08003078 IRCallArgs[FirstIRArg] = AI;
Chad Rosier649b4a12012-03-29 17:37:10 +00003079 EmitAggregateCopy(AI, Addr, I->Ty, RV.isVolatileQualified());
Eli Friedmanea5e4da2011-06-14 01:37:52 +00003080 } else {
3081 // Skip the extra memcpy call.
Stephen Hines176edba2014-12-01 14:53:08 -08003082 IRCallArgs[FirstIRArg] = Addr;
Eli Friedmanea5e4da2011-06-14 01:37:52 +00003083 }
Daniel Dunbar1f745982009-02-05 09:16:39 +00003084 }
3085 break;
Daniel Dunbar91a16fa2010-08-21 02:24:36 +00003086 }
Daniel Dunbar1f745982009-02-05 09:16:39 +00003087
Daniel Dunbar11434922009-01-26 21:26:08 +00003088 case ABIArgInfo::Ignore:
Stephen Hines176edba2014-12-01 14:53:08 -08003089 assert(NumIRArgs == 0);
Daniel Dunbar11434922009-01-26 21:26:08 +00003090 break;
Michael J. Spencer9cac4942010-10-19 06:39:39 +00003091
Chris Lattner800588f2010-07-29 06:26:06 +00003092 case ABIArgInfo::Extend:
3093 case ABIArgInfo::Direct: {
3094 if (!isa<llvm::StructType>(ArgInfo.getCoerceToType()) &&
Chris Lattner117e3f42010-07-30 04:02:24 +00003095 ArgInfo.getCoerceToType() == ConvertType(info_it->type) &&
3096 ArgInfo.getDirectOffset() == 0) {
Stephen Hines176edba2014-12-01 14:53:08 -08003097 assert(NumIRArgs == 1);
Chris Lattner70855442011-07-12 04:46:18 +00003098 llvm::Value *V;
Chris Lattner800588f2010-07-29 06:26:06 +00003099 if (RV.isScalar())
Chris Lattner70855442011-07-12 04:46:18 +00003100 V = RV.getScalarVal();
Chris Lattner800588f2010-07-29 06:26:06 +00003101 else
Chris Lattner70855442011-07-12 04:46:18 +00003102 V = Builder.CreateLoad(RV.getAggregateAddr());
Stephen Hines176edba2014-12-01 14:53:08 -08003103
3104 // We might have to widen integers, but we should never truncate.
3105 if (ArgInfo.getCoerceToType() != V->getType() &&
3106 V->getType()->isIntegerTy())
3107 V = Builder.CreateZExt(V, ArgInfo.getCoerceToType());
3108
Chris Lattner21ca1fd2011-07-12 04:53:39 +00003109 // If the argument doesn't match, perform a bitcast to coerce it. This
3110 // can happen due to trivial type mismatches.
Stephen Hines176edba2014-12-01 14:53:08 -08003111 if (FirstIRArg < IRFuncTy->getNumParams() &&
3112 V->getType() != IRFuncTy->getParamType(FirstIRArg))
3113 V = Builder.CreateBitCast(V, IRFuncTy->getParamType(FirstIRArg));
3114 IRCallArgs[FirstIRArg] = V;
Chris Lattner800588f2010-07-29 06:26:06 +00003115 break;
3116 }
Daniel Dunbar11434922009-01-26 21:26:08 +00003117
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +00003118 // FIXME: Avoid the conversion through memory if possible.
3119 llvm::Value *SrcPtr;
John McCall9d232c82013-03-07 21:37:08 +00003120 if (RV.isScalar() || RV.isComplex()) {
Eli Friedmanc6d07822011-05-02 18:05:27 +00003121 SrcPtr = CreateMemTemp(I->Ty, "coerce");
John McCall9d232c82013-03-07 21:37:08 +00003122 LValue SrcLV = MakeAddrLValue(SrcPtr, I->Ty, TypeAlign);
Stephen Hines651f13c2014-04-23 16:59:28 -07003123 EmitInitStoreOfNonAggregate(*this, RV, SrcLV);
Mike Stump1eb44332009-09-09 15:08:12 +00003124 } else
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +00003125 SrcPtr = RV.getAggregateAddr();
Michael J. Spencer9cac4942010-10-19 06:39:39 +00003126
Chris Lattner117e3f42010-07-30 04:02:24 +00003127 // If the value is offset in memory, apply the offset now.
3128 if (unsigned Offs = ArgInfo.getDirectOffset()) {
3129 SrcPtr = Builder.CreateBitCast(SrcPtr, Builder.getInt8PtrTy());
3130 SrcPtr = Builder.CreateConstGEP1_32(SrcPtr, Offs);
Michael J. Spencer9cac4942010-10-19 06:39:39 +00003131 SrcPtr = Builder.CreateBitCast(SrcPtr,
Chris Lattner117e3f42010-07-30 04:02:24 +00003132 llvm::PointerType::getUnqual(ArgInfo.getCoerceToType()));
3133
3134 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +00003135
Stephen Hines176edba2014-12-01 14:53:08 -08003136 // Fast-isel and the optimizer generally like scalar values better than
3137 // FCAs, so we flatten them if this is safe to do for this argument.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003138 llvm::StructType *STy =
3139 dyn_cast<llvm::StructType>(ArgInfo.getCoerceToType());
Stephen Hines176edba2014-12-01 14:53:08 -08003140 if (STy && ArgInfo.isDirect() && ArgInfo.getCanBeFlattened()) {
Chandler Carruthf82232c2012-10-10 11:29:08 +00003141 llvm::Type *SrcTy =
3142 cast<llvm::PointerType>(SrcPtr->getType())->getElementType();
3143 uint64_t SrcSize = CGM.getDataLayout().getTypeAllocSize(SrcTy);
3144 uint64_t DstSize = CGM.getDataLayout().getTypeAllocSize(STy);
3145
3146 // If the source type is smaller than the destination type of the
3147 // coerce-to logic, copy the source value into a temp alloca the size
3148 // of the destination type to allow loading all of it. The bits past
3149 // the source value are left undef.
3150 if (SrcSize < DstSize) {
3151 llvm::AllocaInst *TempAlloca
3152 = CreateTempAlloca(STy, SrcPtr->getName() + ".coerce");
3153 Builder.CreateMemCpy(TempAlloca, SrcPtr, SrcSize, 0);
3154 SrcPtr = TempAlloca;
3155 } else {
3156 SrcPtr = Builder.CreateBitCast(SrcPtr,
3157 llvm::PointerType::getUnqual(STy));
3158 }
3159
Stephen Hines176edba2014-12-01 14:53:08 -08003160 assert(NumIRArgs == STy->getNumElements());
Chris Lattner92826882010-07-05 20:41:41 +00003161 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
3162 llvm::Value *EltPtr = Builder.CreateConstGEP2_32(SrcPtr, 0, i);
Chris Lattnerdeabde22010-07-28 18:24:28 +00003163 llvm::LoadInst *LI = Builder.CreateLoad(EltPtr);
3164 // We don't know what we're loading from.
3165 LI->setAlignment(1);
Stephen Hines176edba2014-12-01 14:53:08 -08003166 IRCallArgs[FirstIRArg + i] = LI;
Chris Lattner309c59f2010-06-29 00:06:42 +00003167 }
Chris Lattnerce700162010-06-28 23:44:11 +00003168 } else {
Chris Lattner309c59f2010-06-29 00:06:42 +00003169 // In the simple case, just pass the coerced loaded value.
Stephen Hines176edba2014-12-01 14:53:08 -08003170 assert(NumIRArgs == 1);
3171 IRCallArgs[FirstIRArg] =
3172 CreateCoercedLoad(SrcPtr, ArgInfo.getCoerceToType(), *this);
Chris Lattnerce700162010-06-28 23:44:11 +00003173 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +00003174
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +00003175 break;
3176 }
3177
Daniel Dunbar56273772008-09-17 00:51:38 +00003178 case ABIArgInfo::Expand:
Stephen Hines176edba2014-12-01 14:53:08 -08003179 unsigned IRArgPos = FirstIRArg;
3180 ExpandTypeToArgs(I->Ty, RV, IRFuncTy, IRCallArgs, IRArgPos);
3181 assert(IRArgPos == FirstIRArg + NumIRArgs);
Daniel Dunbar56273772008-09-17 00:51:38 +00003182 break;
Daniel Dunbar17b708d2008-09-09 23:27:19 +00003183 }
3184 }
Mike Stump1eb44332009-09-09 15:08:12 +00003185
Stephen Hines651f13c2014-04-23 16:59:28 -07003186 if (ArgMemory) {
3187 llvm::Value *Arg = ArgMemory;
Stephen Hinesc568f1e2014-07-21 00:47:37 -07003188 if (CallInfo.isVariadic()) {
3189 // When passing non-POD arguments by value to variadic functions, we will
3190 // end up with a variadic prototype and an inalloca call site. In such
3191 // cases, we can't do any parameter mismatch checks. Give up and bitcast
3192 // the callee.
3193 unsigned CalleeAS =
3194 cast<llvm::PointerType>(Callee->getType())->getAddressSpace();
3195 Callee = Builder.CreateBitCast(
3196 Callee, getTypes().GetFunctionType(CallInfo)->getPointerTo(CalleeAS));
3197 } else {
3198 llvm::Type *LastParamTy =
3199 IRFuncTy->getParamType(IRFuncTy->getNumParams() - 1);
3200 if (Arg->getType() != LastParamTy) {
Stephen Hines651f13c2014-04-23 16:59:28 -07003201#ifndef NDEBUG
Stephen Hinesc568f1e2014-07-21 00:47:37 -07003202 // Assert that these structs have equivalent element types.
3203 llvm::StructType *FullTy = CallInfo.getArgStruct();
3204 llvm::StructType *DeclaredTy = cast<llvm::StructType>(
3205 cast<llvm::PointerType>(LastParamTy)->getElementType());
3206 assert(DeclaredTy->getNumElements() == FullTy->getNumElements());
3207 for (llvm::StructType::element_iterator DI = DeclaredTy->element_begin(),
3208 DE = DeclaredTy->element_end(),
3209 FI = FullTy->element_begin();
3210 DI != DE; ++DI, ++FI)
3211 assert(*DI == *FI);
Stephen Hines651f13c2014-04-23 16:59:28 -07003212#endif
Stephen Hinesc568f1e2014-07-21 00:47:37 -07003213 Arg = Builder.CreateBitCast(Arg, LastParamTy);
3214 }
Stephen Hines651f13c2014-04-23 16:59:28 -07003215 }
Stephen Hines176edba2014-12-01 14:53:08 -08003216 assert(IRFunctionArgs.hasInallocaArg());
3217 IRCallArgs[IRFunctionArgs.getInallocaArgNo()] = Arg;
Stephen Hines651f13c2014-04-23 16:59:28 -07003218 }
3219
Reid Kleckner9b601952013-06-21 12:45:15 +00003220 if (!CallArgs.getCleanupsToDeactivate().empty())
3221 deactivateArgCleanupsBeforeCall(*this, CallArgs);
3222
Chris Lattner5db7ae52009-06-13 00:26:38 +00003223 // If the callee is a bitcast of a function to a varargs pointer to function
3224 // type, check to see if we can remove the bitcast. This handles some cases
3225 // with unprototyped functions.
3226 if (llvm::ConstantExpr *CE = dyn_cast<llvm::ConstantExpr>(Callee))
3227 if (llvm::Function *CalleeF = dyn_cast<llvm::Function>(CE->getOperand(0))) {
Chris Lattner2acc6e32011-07-18 04:24:23 +00003228 llvm::PointerType *CurPT=cast<llvm::PointerType>(Callee->getType());
3229 llvm::FunctionType *CurFT =
Chris Lattner5db7ae52009-06-13 00:26:38 +00003230 cast<llvm::FunctionType>(CurPT->getElementType());
Chris Lattner2acc6e32011-07-18 04:24:23 +00003231 llvm::FunctionType *ActualFT = CalleeF->getFunctionType();
Mike Stump1eb44332009-09-09 15:08:12 +00003232
Chris Lattner5db7ae52009-06-13 00:26:38 +00003233 if (CE->getOpcode() == llvm::Instruction::BitCast &&
3234 ActualFT->getReturnType() == CurFT->getReturnType() &&
Chris Lattnerd6bebbf2009-06-23 01:38:41 +00003235 ActualFT->getNumParams() == CurFT->getNumParams() &&
Stephen Hines176edba2014-12-01 14:53:08 -08003236 ActualFT->getNumParams() == IRCallArgs.size() &&
Fariborz Jahanianc0ddef22011-03-01 17:28:13 +00003237 (CurFT->isVarArg() || !ActualFT->isVarArg())) {
Chris Lattner5db7ae52009-06-13 00:26:38 +00003238 bool ArgsMatch = true;
3239 for (unsigned i = 0, e = ActualFT->getNumParams(); i != e; ++i)
3240 if (ActualFT->getParamType(i) != CurFT->getParamType(i)) {
3241 ArgsMatch = false;
3242 break;
3243 }
Mike Stump1eb44332009-09-09 15:08:12 +00003244
Chris Lattner5db7ae52009-06-13 00:26:38 +00003245 // Strip the cast if we can get away with it. This is a nice cleanup,
3246 // but also allows us to inline the function at -O0 if it is marked
3247 // always_inline.
3248 if (ArgsMatch)
3249 Callee = CalleeF;
3250 }
3251 }
Mike Stump1eb44332009-09-09 15:08:12 +00003252
Stephen Hines176edba2014-12-01 14:53:08 -08003253 assert(IRCallArgs.size() == IRFuncTy->getNumParams() || IRFuncTy->isVarArg());
3254 for (unsigned i = 0; i < IRCallArgs.size(); ++i) {
3255 // Inalloca argument can have different type.
3256 if (IRFunctionArgs.hasInallocaArg() &&
3257 i == IRFunctionArgs.getInallocaArgNo())
3258 continue;
3259 if (i < IRFuncTy->getNumParams())
3260 assert(IRCallArgs[i]->getType() == IRFuncTy->getParamType(i));
3261 }
3262
Daniel Dunbarca6408c2009-09-12 00:59:20 +00003263 unsigned CallingConv;
Devang Patel761d7f72008-09-25 21:02:23 +00003264 CodeGen::AttributeListType AttributeList;
Bill Wendling94236e72013-02-22 00:13:35 +00003265 CGM.ConstructAttributeList(CallInfo, TargetDecl, AttributeList,
3266 CallingConv, true);
Bill Wendling785b7782012-12-07 23:17:26 +00003267 llvm::AttributeSet Attrs = llvm::AttributeSet::get(getLLVMContext(),
Bill Wendling94236e72013-02-22 00:13:35 +00003268 AttributeList);
Mike Stump1eb44332009-09-09 15:08:12 +00003269
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003270 llvm::BasicBlock *InvokeDest = nullptr;
Bill Wendling01ad9542012-12-30 10:32:17 +00003271 if (!Attrs.hasAttribute(llvm::AttributeSet::FunctionIndex,
3272 llvm::Attribute::NoUnwind))
John McCallf1549f62010-07-06 01:34:17 +00003273 InvokeDest = getInvokeDest();
3274
Daniel Dunbard14151d2009-03-02 04:32:35 +00003275 llvm::CallSite CS;
John McCallf1549f62010-07-06 01:34:17 +00003276 if (!InvokeDest) {
Stephen Hines176edba2014-12-01 14:53:08 -08003277 CS = Builder.CreateCall(Callee, IRCallArgs);
Daniel Dunbar9834ffb2009-02-23 17:26:39 +00003278 } else {
3279 llvm::BasicBlock *Cont = createBasicBlock("invoke.cont");
Stephen Hines176edba2014-12-01 14:53:08 -08003280 CS = Builder.CreateInvoke(Callee, Cont, InvokeDest, IRCallArgs);
Daniel Dunbar9834ffb2009-02-23 17:26:39 +00003281 EmitBlock(Cont);
Daniel Dunbarf4fe0f02009-02-20 18:54:31 +00003282 }
Chris Lattnerce933992010-06-29 16:40:28 +00003283 if (callOrInvoke)
David Chisnall4b02afc2010-05-02 13:41:58 +00003284 *callOrInvoke = CS.getInstruction();
Daniel Dunbarf4fe0f02009-02-20 18:54:31 +00003285
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003286 if (CurCodeDecl && CurCodeDecl->hasAttr<FlattenAttr>() &&
3287 !CS.hasFnAttr(llvm::Attribute::NoInline))
3288 Attrs =
3289 Attrs.addAttribute(getLLVMContext(), llvm::AttributeSet::FunctionIndex,
3290 llvm::Attribute::AlwaysInline);
3291
Daniel Dunbard14151d2009-03-02 04:32:35 +00003292 CS.setAttributes(Attrs);
Daniel Dunbarca6408c2009-09-12 00:59:20 +00003293 CS.setCallingConv(static_cast<llvm::CallingConv::ID>(CallingConv));
Daniel Dunbard14151d2009-03-02 04:32:35 +00003294
Dan Gohmanb49bd272012-02-16 00:57:37 +00003295 // In ObjC ARC mode with no ObjC ARC exception safety, tell the ARC
3296 // optimizer it can aggressively ignore unwind edges.
David Blaikie4e4d0842012-03-11 07:00:24 +00003297 if (CGM.getLangOpts().ObjCAutoRefCount)
Dan Gohmanb49bd272012-02-16 00:57:37 +00003298 AddObjCARCExceptionMetadata(CS.getInstruction());
3299
Daniel Dunbard14151d2009-03-02 04:32:35 +00003300 // If the call doesn't return, finish the basic block and clear the
3301 // insertion point; this allows the rest of IRgen to discard
3302 // unreachable code.
3303 if (CS.doesNotReturn()) {
3304 Builder.CreateUnreachable();
3305 Builder.ClearInsertionPoint();
Mike Stump1eb44332009-09-09 15:08:12 +00003306
Mike Stumpf5408fe2009-05-16 07:57:57 +00003307 // FIXME: For now, emit a dummy basic block because expr emitters in
3308 // generally are not ready to handle emitting expressions at unreachable
3309 // points.
Daniel Dunbard14151d2009-03-02 04:32:35 +00003310 EnsureInsertPoint();
Mike Stump1eb44332009-09-09 15:08:12 +00003311
Daniel Dunbard14151d2009-03-02 04:32:35 +00003312 // Return a reasonable RValue.
3313 return GetUndefRValue(RetTy);
Mike Stump1eb44332009-09-09 15:08:12 +00003314 }
Daniel Dunbard14151d2009-03-02 04:32:35 +00003315
3316 llvm::Instruction *CI = CS.getInstruction();
Benjamin Kramerffbb15e2009-10-05 13:47:21 +00003317 if (Builder.isNamePreserving() && !CI->getType()->isVoidTy())
Daniel Dunbar17b708d2008-09-09 23:27:19 +00003318 CI->setName("call");
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00003319
John McCallf85e1932011-06-15 23:02:42 +00003320 // Emit any writebacks immediately. Arguably this should happen
3321 // after any return-value munging.
3322 if (CallArgs.hasWritebacks())
3323 emitWritebacks(*this, CallArgs);
3324
Stephen Hines651f13c2014-04-23 16:59:28 -07003325 // The stack cleanup for inalloca arguments has to run out of the normal
3326 // lexical order, so deactivate it and run it manually here.
3327 CallArgs.freeArgumentMemory(*this);
3328
Stephen Hines176edba2014-12-01 14:53:08 -08003329 RValue Ret = [&] {
3330 switch (RetAI.getKind()) {
3331 case ABIArgInfo::InAlloca:
3332 case ABIArgInfo::Indirect:
3333 return convertTempToRValue(SRetPtr, RetTy, SourceLocation());
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00003334
Stephen Hines176edba2014-12-01 14:53:08 -08003335 case ABIArgInfo::Ignore:
3336 // If we are ignoring an argument that had a result, make sure to
3337 // construct the appropriate return value for our caller.
3338 return GetUndefRValue(RetTy);
Michael J. Spencer9cac4942010-10-19 06:39:39 +00003339
Stephen Hines176edba2014-12-01 14:53:08 -08003340 case ABIArgInfo::Extend:
3341 case ABIArgInfo::Direct: {
3342 llvm::Type *RetIRTy = ConvertType(RetTy);
3343 if (RetAI.getCoerceToType() == RetIRTy && RetAI.getDirectOffset() == 0) {
3344 switch (getEvaluationKind(RetTy)) {
3345 case TEK_Complex: {
3346 llvm::Value *Real = Builder.CreateExtractValue(CI, 0);
3347 llvm::Value *Imag = Builder.CreateExtractValue(CI, 1);
3348 return RValue::getComplex(std::make_pair(Real, Imag));
Chris Lattner800588f2010-07-29 06:26:06 +00003349 }
Stephen Hines176edba2014-12-01 14:53:08 -08003350 case TEK_Aggregate: {
3351 llvm::Value *DestPtr = ReturnValue.getValue();
3352 bool DestIsVolatile = ReturnValue.isVolatile();
3353
3354 if (!DestPtr) {
3355 DestPtr = CreateMemTemp(RetTy, "agg.tmp");
3356 DestIsVolatile = false;
3357 }
3358 BuildAggStore(*this, CI, DestPtr, DestIsVolatile, false);
3359 return RValue::getAggregate(DestPtr);
3360 }
3361 case TEK_Scalar: {
3362 // If the argument doesn't match, perform a bitcast to coerce it. This
3363 // can happen due to trivial type mismatches.
3364 llvm::Value *V = CI;
3365 if (V->getType() != RetIRTy)
3366 V = Builder.CreateBitCast(V, RetIRTy);
3367 return RValue::get(V);
3368 }
3369 }
3370 llvm_unreachable("bad evaluation kind");
Chris Lattner800588f2010-07-29 06:26:06 +00003371 }
Stephen Hines176edba2014-12-01 14:53:08 -08003372
3373 llvm::Value *DestPtr = ReturnValue.getValue();
3374 bool DestIsVolatile = ReturnValue.isVolatile();
3375
3376 if (!DestPtr) {
3377 DestPtr = CreateMemTemp(RetTy, "coerce");
3378 DestIsVolatile = false;
John McCall9d232c82013-03-07 21:37:08 +00003379 }
Stephen Hines176edba2014-12-01 14:53:08 -08003380
3381 // If the value is offset in memory, apply the offset now.
3382 llvm::Value *StorePtr = DestPtr;
3383 if (unsigned Offs = RetAI.getDirectOffset()) {
3384 StorePtr = Builder.CreateBitCast(StorePtr, Builder.getInt8PtrTy());
3385 StorePtr = Builder.CreateConstGEP1_32(StorePtr, Offs);
3386 StorePtr = Builder.CreateBitCast(StorePtr,
3387 llvm::PointerType::getUnqual(RetAI.getCoerceToType()));
John McCall9d232c82013-03-07 21:37:08 +00003388 }
Stephen Hines176edba2014-12-01 14:53:08 -08003389 CreateCoercedStore(CI, StorePtr, DestIsVolatile, *this);
3390
3391 return convertTempToRValue(DestPtr, RetTy, SourceLocation());
Chris Lattner800588f2010-07-29 06:26:06 +00003392 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +00003393
Stephen Hines176edba2014-12-01 14:53:08 -08003394 case ABIArgInfo::Expand:
3395 llvm_unreachable("Invalid ABI kind for return argument");
Anders Carlssond2490a92009-12-24 20:40:36 +00003396 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +00003397
Stephen Hines176edba2014-12-01 14:53:08 -08003398 llvm_unreachable("Unhandled ABIArgInfo::Kind");
3399 } ();
Michael J. Spencer9cac4942010-10-19 06:39:39 +00003400
Stephen Hines176edba2014-12-01 14:53:08 -08003401 if (Ret.isScalar() && TargetDecl) {
3402 if (const auto *AA = TargetDecl->getAttr<AssumeAlignedAttr>()) {
3403 llvm::Value *OffsetValue = nullptr;
3404 if (const auto *Offset = AA->getOffset())
3405 OffsetValue = EmitScalarExpr(Offset);
3406
3407 llvm::Value *Alignment = EmitScalarExpr(AA->getAlignment());
3408 llvm::ConstantInt *AlignmentCI = cast<llvm::ConstantInt>(Alignment);
3409 EmitAlignmentAssumption(Ret.getScalarVal(), AlignmentCI->getZExtValue(),
3410 OffsetValue);
3411 }
Daniel Dunbar639ffe42008-09-10 07:04:09 +00003412 }
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00003413
Stephen Hines176edba2014-12-01 14:53:08 -08003414 return Ret;
Daniel Dunbar17b708d2008-09-09 23:27:19 +00003415}
Daniel Dunbarb4094ea2009-02-10 20:44:09 +00003416
3417/* VarArg handling */
3418
3419llvm::Value *CodeGenFunction::EmitVAArg(llvm::Value *VAListAddr, QualType Ty) {
3420 return CGM.getTypes().getABIInfo().EmitVAArg(VAListAddr, Ty, *this);
3421}