blob: fa2522264acca1ddd8aafde2a5502b0b70007b52 [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"
Chandler Carruth06057ce2010-06-15 23:19:56 +000025#include "clang/Frontend/CodeGenOptions.h"
Bill Wendlingbe9e8bf2013-02-28 22:49:57 +000026#include "llvm/ADT/StringExtras.h"
Chandler Carruth3b844ba2013-01-02 11:45:17 +000027#include "llvm/IR/Attributes.h"
28#include "llvm/IR/DataLayout.h"
29#include "llvm/IR/InlineAsm.h"
Bill Wendlingc0dcc2d2013-02-15 21:30:01 +000030#include "llvm/MC/SubtargetFeature.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000031#include "llvm/Support/CallSite.h"
Eli Friedman97cb5a42011-06-15 22:09:18 +000032#include "llvm/Transforms/Utils/Local.h"
Daniel Dunbar0dbe2272008-09-08 21:33:45 +000033using namespace clang;
34using namespace CodeGen;
35
36/***/
37
John McCall04a67a62010-02-05 21:31:56 +000038static unsigned ClangCallConvToLLVMCallConv(CallingConv CC) {
39 switch (CC) {
40 default: return llvm::CallingConv::C;
41 case CC_X86StdCall: return llvm::CallingConv::X86_StdCall;
42 case CC_X86FastCall: return llvm::CallingConv::X86_FastCall;
Douglas Gregorf813a2c2010-05-18 16:57:00 +000043 case CC_X86ThisCall: return llvm::CallingConv::X86_ThisCall;
Charles Davise8519c32013-08-30 04:39:01 +000044 case CC_X86_64Win64: return llvm::CallingConv::X86_64_Win64;
45 case CC_X86_64SysV: return llvm::CallingConv::X86_64_SysV;
Anton Korobeynikov414d8962011-04-14 20:06:49 +000046 case CC_AAPCS: return llvm::CallingConv::ARM_AAPCS;
47 case CC_AAPCS_VFP: return llvm::CallingConv::ARM_AAPCS_VFP;
Guy Benyei38980082012-12-25 08:53:55 +000048 case CC_IntelOclBicc: return llvm::CallingConv::Intel_OCL_BI;
Dawn Perchik52fc3142010-09-03 01:29:35 +000049 // TODO: add support for CC_X86Pascal to llvm
John McCall04a67a62010-02-05 21:31:56 +000050 }
51}
52
John McCall0b0ef0a2010-02-24 07:14:12 +000053/// Derives the 'this' type for codegen purposes, i.e. ignoring method
54/// qualification.
55/// FIXME: address space qualification?
John McCallead608a2010-02-26 00:48:12 +000056static CanQualType GetThisType(ASTContext &Context, const CXXRecordDecl *RD) {
57 QualType RecTy = Context.getTagDeclType(RD)->getCanonicalTypeInternal();
58 return Context.getPointerType(CanQualType::CreateUnsafe(RecTy));
Daniel Dunbar45c25ba2008-09-10 04:01:49 +000059}
60
John McCall0b0ef0a2010-02-24 07:14:12 +000061/// Returns the canonical formal type of the given C++ method.
John McCallead608a2010-02-26 00:48:12 +000062static CanQual<FunctionProtoType> GetFormalType(const CXXMethodDecl *MD) {
63 return MD->getType()->getCanonicalTypeUnqualified()
64 .getAs<FunctionProtoType>();
John McCall0b0ef0a2010-02-24 07:14:12 +000065}
66
67/// Returns the "extra-canonicalized" return type, which discards
68/// qualifiers on the return type. Codegen doesn't care about them,
69/// and it makes ABI code a little easier to be able to assume that
70/// all parameter and return types are top-level unqualified.
John McCallead608a2010-02-26 00:48:12 +000071static CanQualType GetReturnType(QualType RetTy) {
72 return RetTy->getCanonicalTypeUnqualified().getUnqualifiedType();
John McCall0b0ef0a2010-02-24 07:14:12 +000073}
74
John McCall0f3d0972012-07-07 06:41:13 +000075/// Arrange the argument and result information for a value of the given
76/// unprototyped freestanding function type.
John McCall0b0ef0a2010-02-24 07:14:12 +000077const CGFunctionInfo &
John McCall0f3d0972012-07-07 06:41:13 +000078CodeGenTypes::arrangeFreeFunctionType(CanQual<FunctionNoProtoType> FTNP) {
John McCallde5d3c72012-02-17 03:33:10 +000079 // When translating an unprototyped function type, always use a
80 // variadic type.
John McCall0f3d0972012-07-07 06:41:13 +000081 return arrangeLLVMFunctionInfo(FTNP->getResultType().getUnqualifiedType(),
Dmitri Gribenko55431692013-05-05 00:41:58 +000082 None, FTNP->getExtInfo(), RequiredArgs(0));
John McCall0b0ef0a2010-02-24 07:14:12 +000083}
84
John McCall0f3d0972012-07-07 06:41:13 +000085/// Arrange the LLVM function layout for a value of the given function
86/// type, on top of any implicit parameters already stored. Use the
87/// given ExtInfo instead of the ExtInfo from the function type.
88static const CGFunctionInfo &arrangeLLVMFunctionInfo(CodeGenTypes &CGT,
89 SmallVectorImpl<CanQualType> &prefix,
90 CanQual<FunctionProtoType> FTP,
91 FunctionType::ExtInfo extInfo) {
92 RequiredArgs required = RequiredArgs::forPrototypePlus(FTP, prefix.size());
Daniel Dunbar541b63b2009-02-02 23:23:47 +000093 // FIXME: Kill copy.
Daniel Dunbar45c25ba2008-09-10 04:01:49 +000094 for (unsigned i = 0, e = FTP->getNumArgs(); i != e; ++i)
John McCall0f3d0972012-07-07 06:41:13 +000095 prefix.push_back(FTP->getArgType(i));
John McCallde5d3c72012-02-17 03:33:10 +000096 CanQualType resultType = FTP->getResultType().getUnqualifiedType();
John McCall0f3d0972012-07-07 06:41:13 +000097 return CGT.arrangeLLVMFunctionInfo(resultType, prefix, extInfo, required);
98}
99
100/// Arrange the argument and result information for a free function (i.e.
101/// not a C++ or ObjC instance method) of the given type.
102static const CGFunctionInfo &arrangeFreeFunctionType(CodeGenTypes &CGT,
103 SmallVectorImpl<CanQualType> &prefix,
104 CanQual<FunctionProtoType> FTP) {
105 return arrangeLLVMFunctionInfo(CGT, prefix, FTP, FTP->getExtInfo());
106}
107
John McCall0f3d0972012-07-07 06:41:13 +0000108/// Arrange the argument and result information for a free function (i.e.
109/// not a C++ or ObjC instance method) of the given type.
110static const CGFunctionInfo &arrangeCXXMethodType(CodeGenTypes &CGT,
111 SmallVectorImpl<CanQualType> &prefix,
112 CanQual<FunctionProtoType> FTP) {
113 FunctionType::ExtInfo extInfo = FTP->getExtInfo();
John McCall0f3d0972012-07-07 06:41:13 +0000114 return arrangeLLVMFunctionInfo(CGT, prefix, FTP, extInfo);
John McCall0b0ef0a2010-02-24 07:14:12 +0000115}
116
John McCallde5d3c72012-02-17 03:33:10 +0000117/// Arrange the argument and result information for a value of the
John McCall0f3d0972012-07-07 06:41:13 +0000118/// given freestanding function type.
John McCall0b0ef0a2010-02-24 07:14:12 +0000119const CGFunctionInfo &
John McCall0f3d0972012-07-07 06:41:13 +0000120CodeGenTypes::arrangeFreeFunctionType(CanQual<FunctionProtoType> FTP) {
John McCallde5d3c72012-02-17 03:33:10 +0000121 SmallVector<CanQualType, 16> argTypes;
John McCall0f3d0972012-07-07 06:41:13 +0000122 return ::arrangeFreeFunctionType(*this, argTypes, FTP);
Daniel Dunbarbac7c252009-09-11 22:24:53 +0000123}
124
John McCall04a67a62010-02-05 21:31:56 +0000125static CallingConv getCallingConventionForDecl(const Decl *D) {
Daniel Dunbarbac7c252009-09-11 22:24:53 +0000126 // Set the appropriate calling convention for the Function.
127 if (D->hasAttr<StdCallAttr>())
John McCall04a67a62010-02-05 21:31:56 +0000128 return CC_X86StdCall;
Daniel Dunbarbac7c252009-09-11 22:24:53 +0000129
130 if (D->hasAttr<FastCallAttr>())
John McCall04a67a62010-02-05 21:31:56 +0000131 return CC_X86FastCall;
Daniel Dunbarbac7c252009-09-11 22:24:53 +0000132
Douglas Gregorf813a2c2010-05-18 16:57:00 +0000133 if (D->hasAttr<ThisCallAttr>())
134 return CC_X86ThisCall;
135
Dawn Perchik52fc3142010-09-03 01:29:35 +0000136 if (D->hasAttr<PascalAttr>())
137 return CC_X86Pascal;
138
Anton Korobeynikov414d8962011-04-14 20:06:49 +0000139 if (PcsAttr *PCS = D->getAttr<PcsAttr>())
140 return (PCS->getPCS() == PcsAttr::AAPCS ? CC_AAPCS : CC_AAPCS_VFP);
141
Derek Schuff263366f2012-10-16 22:30:41 +0000142 if (D->hasAttr<PnaclCallAttr>())
143 return CC_PnaclCall;
144
Guy Benyei38980082012-12-25 08:53:55 +0000145 if (D->hasAttr<IntelOclBiccAttr>())
146 return CC_IntelOclBicc;
147
John McCall04a67a62010-02-05 21:31:56 +0000148 return CC_C;
Daniel Dunbar45c25ba2008-09-10 04:01:49 +0000149}
150
John McCallde5d3c72012-02-17 03:33:10 +0000151/// Arrange the argument and result information for a call to an
152/// unknown C++ non-static member function of the given abstract type.
Timur Iskhodzhanov8f189a92013-08-21 06:25:03 +0000153/// (Zero value of RD means we don't have any meaningful "this" argument type,
154/// so fall back to a generic pointer type).
John McCallde5d3c72012-02-17 03:33:10 +0000155/// The member function must be an ordinary function, i.e. not a
156/// constructor or destructor.
157const CGFunctionInfo &
158CodeGenTypes::arrangeCXXMethodType(const CXXRecordDecl *RD,
159 const FunctionProtoType *FTP) {
160 SmallVector<CanQualType, 16> argTypes;
John McCall0b0ef0a2010-02-24 07:14:12 +0000161
Anders Carlsson375c31c2009-10-03 19:43:08 +0000162 // Add the 'this' pointer.
Timur Iskhodzhanov8f189a92013-08-21 06:25:03 +0000163 if (RD)
164 argTypes.push_back(GetThisType(Context, RD));
165 else
166 argTypes.push_back(Context.VoidPtrTy);
John McCall0b0ef0a2010-02-24 07:14:12 +0000167
John McCall0f3d0972012-07-07 06:41:13 +0000168 return ::arrangeCXXMethodType(*this, argTypes,
Tilmann Scheller9c6082f2011-03-02 21:36:49 +0000169 FTP->getCanonicalTypeUnqualified().getAs<FunctionProtoType>());
Anders Carlsson375c31c2009-10-03 19:43:08 +0000170}
171
John McCallde5d3c72012-02-17 03:33:10 +0000172/// Arrange the argument and result information for a declaration or
173/// definition of the given C++ non-static member function. The
174/// member function must be an ordinary function, i.e. not a
175/// constructor or destructor.
176const CGFunctionInfo &
177CodeGenTypes::arrangeCXXMethodDeclaration(const CXXMethodDecl *MD) {
Benjamin Kramere5753592013-09-09 14:48:42 +0000178 assert(!isa<CXXConstructorDecl>(MD) && "wrong method for constructors!");
John McCallfc400282010-09-03 01:26:39 +0000179 assert(!isa<CXXDestructorDecl>(MD) && "wrong method for destructors!");
180
John McCallde5d3c72012-02-17 03:33:10 +0000181 CanQual<FunctionProtoType> prototype = GetFormalType(MD);
Mike Stump1eb44332009-09-09 15:08:12 +0000182
John McCallde5d3c72012-02-17 03:33:10 +0000183 if (MD->isInstance()) {
184 // The abstract case is perfectly fine.
Mark Lacey25296602013-10-02 20:35:23 +0000185 const CXXRecordDecl *ThisType = TheCXXABI.getThisArgumentTypeForMethod(MD);
Timur Iskhodzhanov8f189a92013-08-21 06:25:03 +0000186 return arrangeCXXMethodType(ThisType, prototype.getTypePtr());
John McCallde5d3c72012-02-17 03:33:10 +0000187 }
188
John McCall0f3d0972012-07-07 06:41:13 +0000189 return arrangeFreeFunctionType(prototype);
Anders Carlssonf6f8ae52009-04-03 22:48:58 +0000190}
191
John McCallde5d3c72012-02-17 03:33:10 +0000192/// Arrange the argument and result information for a declaration
193/// or definition to the given constructor variant.
194const CGFunctionInfo &
195CodeGenTypes::arrangeCXXConstructorDeclaration(const CXXConstructorDecl *D,
196 CXXCtorType ctorKind) {
197 SmallVector<CanQualType, 16> argTypes;
198 argTypes.push_back(GetThisType(Context, D->getParent()));
Stephen Lin3b50e8d2013-06-30 20:40:16 +0000199
200 GlobalDecl GD(D, ctorKind);
201 CanQualType resultType =
202 TheCXXABI.HasThisReturn(GD) ? argTypes.front() : Context.VoidTy;
Anders Carlssonf6c56e22009-11-25 03:15:49 +0000203
John McCallde5d3c72012-02-17 03:33:10 +0000204 TheCXXABI.BuildConstructorSignature(D, ctorKind, resultType, argTypes);
John McCall0b0ef0a2010-02-24 07:14:12 +0000205
John McCall4c40d982010-08-31 07:33:07 +0000206 CanQual<FunctionProtoType> FTP = GetFormalType(D);
207
John McCallde5d3c72012-02-17 03:33:10 +0000208 RequiredArgs required = RequiredArgs::forPrototypePlus(FTP, argTypes.size());
209
John McCall4c40d982010-08-31 07:33:07 +0000210 // Add the formal parameters.
211 for (unsigned i = 0, e = FTP->getNumArgs(); i != e; ++i)
John McCallde5d3c72012-02-17 03:33:10 +0000212 argTypes.push_back(FTP->getArgType(i));
John McCall4c40d982010-08-31 07:33:07 +0000213
John McCall0f3d0972012-07-07 06:41:13 +0000214 FunctionType::ExtInfo extInfo = FTP->getExtInfo();
John McCall0f3d0972012-07-07 06:41:13 +0000215 return arrangeLLVMFunctionInfo(resultType, argTypes, extInfo, required);
Anders Carlssonf6c56e22009-11-25 03:15:49 +0000216}
217
John McCallde5d3c72012-02-17 03:33:10 +0000218/// Arrange the argument and result information for a declaration,
219/// definition, or call to the given destructor variant. It so
220/// happens that all three cases produce the same information.
221const CGFunctionInfo &
222CodeGenTypes::arrangeCXXDestructor(const CXXDestructorDecl *D,
223 CXXDtorType dtorKind) {
224 SmallVector<CanQualType, 2> argTypes;
225 argTypes.push_back(GetThisType(Context, D->getParent()));
Stephen Lin3b50e8d2013-06-30 20:40:16 +0000226
227 GlobalDecl GD(D, dtorKind);
228 CanQualType resultType =
229 TheCXXABI.HasThisReturn(GD) ? argTypes.front() : Context.VoidTy;
John McCall0b0ef0a2010-02-24 07:14:12 +0000230
John McCallde5d3c72012-02-17 03:33:10 +0000231 TheCXXABI.BuildDestructorSignature(D, dtorKind, resultType, argTypes);
John McCall4c40d982010-08-31 07:33:07 +0000232
233 CanQual<FunctionProtoType> FTP = GetFormalType(D);
234 assert(FTP->getNumArgs() == 0 && "dtor with formal parameters");
Timur Iskhodzhanov8f88a1d2012-07-12 09:50:54 +0000235 assert(FTP->isVariadic() == 0 && "dtor with formal parameters");
John McCall4c40d982010-08-31 07:33:07 +0000236
John McCall0f3d0972012-07-07 06:41:13 +0000237 FunctionType::ExtInfo extInfo = FTP->getExtInfo();
John McCall0f3d0972012-07-07 06:41:13 +0000238 return arrangeLLVMFunctionInfo(resultType, argTypes, extInfo,
239 RequiredArgs::All);
Anders Carlssonf6c56e22009-11-25 03:15:49 +0000240}
241
John McCallde5d3c72012-02-17 03:33:10 +0000242/// Arrange the argument and result information for the declaration or
243/// definition of the given function.
244const CGFunctionInfo &
245CodeGenTypes::arrangeFunctionDeclaration(const FunctionDecl *FD) {
Chris Lattner3eb67ca2009-05-12 20:27:19 +0000246 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD))
Anders Carlssonf6f8ae52009-04-03 22:48:58 +0000247 if (MD->isInstance())
John McCallde5d3c72012-02-17 03:33:10 +0000248 return arrangeCXXMethodDeclaration(MD);
Mike Stump1eb44332009-09-09 15:08:12 +0000249
John McCallead608a2010-02-26 00:48:12 +0000250 CanQualType FTy = FD->getType()->getCanonicalTypeUnqualified();
John McCallde5d3c72012-02-17 03:33:10 +0000251
John McCallead608a2010-02-26 00:48:12 +0000252 assert(isa<FunctionType>(FTy));
John McCallde5d3c72012-02-17 03:33:10 +0000253
254 // When declaring a function without a prototype, always use a
255 // non-variadic type.
256 if (isa<FunctionNoProtoType>(FTy)) {
257 CanQual<FunctionNoProtoType> noProto = FTy.getAs<FunctionNoProtoType>();
Dmitri Gribenko55431692013-05-05 00:41:58 +0000258 return arrangeLLVMFunctionInfo(noProto->getResultType(), None,
259 noProto->getExtInfo(), RequiredArgs::All);
John McCallde5d3c72012-02-17 03:33:10 +0000260 }
261
John McCallead608a2010-02-26 00:48:12 +0000262 assert(isa<FunctionProtoType>(FTy));
John McCall0f3d0972012-07-07 06:41:13 +0000263 return arrangeFreeFunctionType(FTy.getAs<FunctionProtoType>());
Daniel Dunbar0dbe2272008-09-08 21:33:45 +0000264}
265
John McCallde5d3c72012-02-17 03:33:10 +0000266/// Arrange the argument and result information for the declaration or
267/// definition of an Objective-C method.
268const CGFunctionInfo &
269CodeGenTypes::arrangeObjCMethodDeclaration(const ObjCMethodDecl *MD) {
270 // It happens that this is the same as a call with no optional
271 // arguments, except also using the formal 'self' type.
272 return arrangeObjCMessageSendSignature(MD, MD->getSelfDecl()->getType());
273}
274
275/// Arrange the argument and result information for the function type
276/// through which to perform a send to the given Objective-C method,
277/// using the given receiver type. The receiver type is not always
278/// the 'self' type of the method or even an Objective-C pointer type.
279/// This is *not* the right method for actually performing such a
280/// message send, due to the possibility of optional arguments.
281const CGFunctionInfo &
282CodeGenTypes::arrangeObjCMessageSendSignature(const ObjCMethodDecl *MD,
283 QualType receiverType) {
284 SmallVector<CanQualType, 16> argTys;
285 argTys.push_back(Context.getCanonicalParamType(receiverType));
286 argTys.push_back(Context.getCanonicalParamType(Context.getObjCSelType()));
Daniel Dunbar541b63b2009-02-02 23:23:47 +0000287 // FIXME: Kill copy?
Argyrios Kyrtzidis491306a2011-10-03 06:37:04 +0000288 for (ObjCMethodDecl::param_const_iterator i = MD->param_begin(),
John McCall0b0ef0a2010-02-24 07:14:12 +0000289 e = MD->param_end(); i != e; ++i) {
John McCallde5d3c72012-02-17 03:33:10 +0000290 argTys.push_back(Context.getCanonicalParamType((*i)->getType()));
John McCall0b0ef0a2010-02-24 07:14:12 +0000291 }
John McCallf85e1932011-06-15 23:02:42 +0000292
293 FunctionType::ExtInfo einfo;
294 einfo = einfo.withCallingConv(getCallingConventionForDecl(MD));
295
David Blaikie4e4d0842012-03-11 07:00:24 +0000296 if (getContext().getLangOpts().ObjCAutoRefCount &&
John McCallf85e1932011-06-15 23:02:42 +0000297 MD->hasAttr<NSReturnsRetainedAttr>())
298 einfo = einfo.withProducesResult(true);
299
John McCallde5d3c72012-02-17 03:33:10 +0000300 RequiredArgs required =
301 (MD->isVariadic() ? RequiredArgs(argTys.size()) : RequiredArgs::All);
302
John McCall0f3d0972012-07-07 06:41:13 +0000303 return arrangeLLVMFunctionInfo(GetReturnType(MD->getResultType()), argTys,
304 einfo, required);
Daniel Dunbar0dbe2272008-09-08 21:33:45 +0000305}
306
John McCallde5d3c72012-02-17 03:33:10 +0000307const CGFunctionInfo &
308CodeGenTypes::arrangeGlobalDeclaration(GlobalDecl GD) {
Anders Carlssonb2bcf1c2010-02-06 02:44:09 +0000309 // FIXME: Do we need to handle ObjCMethodDecl?
310 const FunctionDecl *FD = cast<FunctionDecl>(GD.getDecl());
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000311
Anders Carlssonb2bcf1c2010-02-06 02:44:09 +0000312 if (const CXXConstructorDecl *CD = dyn_cast<CXXConstructorDecl>(FD))
John McCallde5d3c72012-02-17 03:33:10 +0000313 return arrangeCXXConstructorDeclaration(CD, GD.getCtorType());
Anders Carlssonb2bcf1c2010-02-06 02:44:09 +0000314
315 if (const CXXDestructorDecl *DD = dyn_cast<CXXDestructorDecl>(FD))
John McCallde5d3c72012-02-17 03:33:10 +0000316 return arrangeCXXDestructor(DD, GD.getDtorType());
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000317
John McCallde5d3c72012-02-17 03:33:10 +0000318 return arrangeFunctionDeclaration(FD);
Anders Carlssonb2bcf1c2010-02-06 02:44:09 +0000319}
320
John McCalle56bb362012-12-07 07:03:17 +0000321/// Arrange a call as unto a free function, except possibly with an
322/// additional number of formal parameters considered required.
323static const CGFunctionInfo &
324arrangeFreeFunctionLikeCall(CodeGenTypes &CGT,
325 const CallArgList &args,
326 const FunctionType *fnType,
327 unsigned numExtraRequiredArgs) {
328 assert(args.size() >= numExtraRequiredArgs);
329
330 // In most cases, there are no optional arguments.
331 RequiredArgs required = RequiredArgs::All;
332
333 // If we have a variadic prototype, the required arguments are the
334 // extra prefix plus the arguments in the prototype.
335 if (const FunctionProtoType *proto = dyn_cast<FunctionProtoType>(fnType)) {
336 if (proto->isVariadic())
337 required = RequiredArgs(proto->getNumArgs() + numExtraRequiredArgs);
338
339 // If we don't have a prototype at all, but we're supposed to
340 // explicitly use the variadic convention for unprototyped calls,
341 // treat all of the arguments as required but preserve the nominal
342 // possibility of variadics.
343 } else if (CGT.CGM.getTargetCodeGenInfo()
344 .isNoProtoCallVariadic(args, cast<FunctionNoProtoType>(fnType))) {
345 required = RequiredArgs(args.size());
346 }
347
348 return CGT.arrangeFreeFunctionCall(fnType->getResultType(), args,
349 fnType->getExtInfo(), required);
350}
351
John McCallde5d3c72012-02-17 03:33:10 +0000352/// Figure out the rules for calling a function with the given formal
353/// type using the given arguments. The arguments are necessary
354/// because the function might be unprototyped, in which case it's
355/// target-dependent in crazy ways.
356const CGFunctionInfo &
John McCall0f3d0972012-07-07 06:41:13 +0000357CodeGenTypes::arrangeFreeFunctionCall(const CallArgList &args,
358 const FunctionType *fnType) {
John McCalle56bb362012-12-07 07:03:17 +0000359 return arrangeFreeFunctionLikeCall(*this, args, fnType, 0);
360}
John McCallde5d3c72012-02-17 03:33:10 +0000361
John McCalle56bb362012-12-07 07:03:17 +0000362/// A block function call is essentially a free-function call with an
363/// extra implicit argument.
364const CGFunctionInfo &
365CodeGenTypes::arrangeBlockFunctionCall(const CallArgList &args,
366 const FunctionType *fnType) {
367 return arrangeFreeFunctionLikeCall(*this, args, fnType, 1);
John McCallde5d3c72012-02-17 03:33:10 +0000368}
369
370const CGFunctionInfo &
John McCall0f3d0972012-07-07 06:41:13 +0000371CodeGenTypes::arrangeFreeFunctionCall(QualType resultType,
372 const CallArgList &args,
373 FunctionType::ExtInfo info,
374 RequiredArgs required) {
Daniel Dunbar541b63b2009-02-02 23:23:47 +0000375 // FIXME: Kill copy.
John McCallde5d3c72012-02-17 03:33:10 +0000376 SmallVector<CanQualType, 16> argTypes;
377 for (CallArgList::const_iterator i = args.begin(), e = args.end();
Daniel Dunbar725ad312009-01-31 02:19:00 +0000378 i != e; ++i)
John McCallde5d3c72012-02-17 03:33:10 +0000379 argTypes.push_back(Context.getCanonicalParamType(i->Ty));
John McCall0f3d0972012-07-07 06:41:13 +0000380 return arrangeLLVMFunctionInfo(GetReturnType(resultType), argTypes, info,
381 required);
382}
383
384/// Arrange a call to a C++ method, passing the given arguments.
385const CGFunctionInfo &
386CodeGenTypes::arrangeCXXMethodCall(const CallArgList &args,
387 const FunctionProtoType *FPT,
388 RequiredArgs required) {
389 // FIXME: Kill copy.
390 SmallVector<CanQualType, 16> argTypes;
391 for (CallArgList::const_iterator i = args.begin(), e = args.end();
392 i != e; ++i)
393 argTypes.push_back(Context.getCanonicalParamType(i->Ty));
394
395 FunctionType::ExtInfo info = FPT->getExtInfo();
John McCall0f3d0972012-07-07 06:41:13 +0000396 return arrangeLLVMFunctionInfo(GetReturnType(FPT->getResultType()),
397 argTypes, info, required);
Daniel Dunbar725ad312009-01-31 02:19:00 +0000398}
399
John McCallde5d3c72012-02-17 03:33:10 +0000400const CGFunctionInfo &
401CodeGenTypes::arrangeFunctionDeclaration(QualType resultType,
402 const FunctionArgList &args,
403 const FunctionType::ExtInfo &info,
404 bool isVariadic) {
Daniel Dunbar541b63b2009-02-02 23:23:47 +0000405 // FIXME: Kill copy.
John McCallde5d3c72012-02-17 03:33:10 +0000406 SmallVector<CanQualType, 16> argTypes;
407 for (FunctionArgList::const_iterator i = args.begin(), e = args.end();
Daniel Dunbarbb36d332009-02-02 21:43:58 +0000408 i != e; ++i)
John McCallde5d3c72012-02-17 03:33:10 +0000409 argTypes.push_back(Context.getCanonicalParamType((*i)->getType()));
410
411 RequiredArgs required =
412 (isVariadic ? RequiredArgs(args.size()) : RequiredArgs::All);
John McCall0f3d0972012-07-07 06:41:13 +0000413 return arrangeLLVMFunctionInfo(GetReturnType(resultType), argTypes, info,
414 required);
Daniel Dunbar541b63b2009-02-02 23:23:47 +0000415}
416
John McCallde5d3c72012-02-17 03:33:10 +0000417const CGFunctionInfo &CodeGenTypes::arrangeNullaryFunction() {
Dmitri Gribenko55431692013-05-05 00:41:58 +0000418 return arrangeLLVMFunctionInfo(getContext().VoidTy, None,
John McCall0f3d0972012-07-07 06:41:13 +0000419 FunctionType::ExtInfo(), RequiredArgs::All);
John McCalld26bc762011-03-09 04:27:21 +0000420}
421
John McCallde5d3c72012-02-17 03:33:10 +0000422/// Arrange the argument and result information for an abstract value
423/// of a given function type. This is the method which all of the
424/// above functions ultimately defer to.
425const CGFunctionInfo &
John McCall0f3d0972012-07-07 06:41:13 +0000426CodeGenTypes::arrangeLLVMFunctionInfo(CanQualType resultType,
427 ArrayRef<CanQualType> argTypes,
428 FunctionType::ExtInfo info,
429 RequiredArgs required) {
John McCallead608a2010-02-26 00:48:12 +0000430#ifndef NDEBUG
John McCallde5d3c72012-02-17 03:33:10 +0000431 for (ArrayRef<CanQualType>::const_iterator
432 I = argTypes.begin(), E = argTypes.end(); I != E; ++I)
John McCallead608a2010-02-26 00:48:12 +0000433 assert(I->isCanonicalAsParam());
434#endif
435
John McCallde5d3c72012-02-17 03:33:10 +0000436 unsigned CC = ClangCallConvToLLVMCallConv(info.getCC());
John McCall04a67a62010-02-05 21:31:56 +0000437
Daniel Dunbar40a6be62009-02-03 00:07:12 +0000438 // Lookup or create unique function info.
439 llvm::FoldingSetNodeID ID;
John McCallde5d3c72012-02-17 03:33:10 +0000440 CGFunctionInfo::Profile(ID, info, required, resultType, argTypes);
Daniel Dunbar40a6be62009-02-03 00:07:12 +0000441
John McCallde5d3c72012-02-17 03:33:10 +0000442 void *insertPos = 0;
443 CGFunctionInfo *FI = FunctionInfos.FindNodeOrInsertPos(ID, insertPos);
Daniel Dunbar40a6be62009-02-03 00:07:12 +0000444 if (FI)
445 return *FI;
446
John McCallde5d3c72012-02-17 03:33:10 +0000447 // Construct the function info. We co-allocate the ArgInfos.
448 FI = CGFunctionInfo::create(CC, info, resultType, argTypes, required);
449 FunctionInfos.InsertNode(FI, insertPos);
Daniel Dunbar88c2fa92009-02-03 05:31:23 +0000450
John McCallde5d3c72012-02-17 03:33:10 +0000451 bool inserted = FunctionsBeingProcessed.insert(FI); (void)inserted;
452 assert(inserted && "Recursively being processed?");
Chris Lattner71305cc2011-07-15 05:16:14 +0000453
Daniel Dunbar88c2fa92009-02-03 05:31:23 +0000454 // Compute ABI information.
Chris Lattneree5dcd02010-07-29 02:31:05 +0000455 getABIInfo().computeInfo(*FI);
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000456
Chris Lattner800588f2010-07-29 06:26:06 +0000457 // Loop over all of the computed argument and return value info. If any of
458 // them are direct or extend without a specified coerce type, specify the
459 // default now.
John McCallde5d3c72012-02-17 03:33:10 +0000460 ABIArgInfo &retInfo = FI->getReturnInfo();
461 if (retInfo.canHaveCoerceToType() && retInfo.getCoerceToType() == 0)
462 retInfo.setCoerceToType(ConvertType(FI->getReturnType()));
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000463
Chris Lattner800588f2010-07-29 06:26:06 +0000464 for (CGFunctionInfo::arg_iterator I = FI->arg_begin(), E = FI->arg_end();
465 I != E; ++I)
466 if (I->info.canHaveCoerceToType() && I->info.getCoerceToType() == 0)
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000467 I->info.setCoerceToType(ConvertType(I->type));
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000468
John McCallde5d3c72012-02-17 03:33:10 +0000469 bool erased = FunctionsBeingProcessed.erase(FI); (void)erased;
470 assert(erased && "Not in set?");
Chris Lattnerd26c0712011-07-15 06:41:05 +0000471
Daniel Dunbar40a6be62009-02-03 00:07:12 +0000472 return *FI;
Daniel Dunbar541b63b2009-02-02 23:23:47 +0000473}
474
John McCallde5d3c72012-02-17 03:33:10 +0000475CGFunctionInfo *CGFunctionInfo::create(unsigned llvmCC,
476 const FunctionType::ExtInfo &info,
477 CanQualType resultType,
478 ArrayRef<CanQualType> argTypes,
479 RequiredArgs required) {
480 void *buffer = operator new(sizeof(CGFunctionInfo) +
481 sizeof(ArgInfo) * (argTypes.size() + 1));
482 CGFunctionInfo *FI = new(buffer) CGFunctionInfo();
483 FI->CallingConvention = llvmCC;
484 FI->EffectiveCallingConvention = llvmCC;
485 FI->ASTCallingConvention = info.getCC();
486 FI->NoReturn = info.getNoReturn();
487 FI->ReturnsRetained = info.getProducesResult();
488 FI->Required = required;
489 FI->HasRegParm = info.getHasRegParm();
490 FI->RegParm = info.getRegParm();
491 FI->NumArgs = argTypes.size();
492 FI->getArgsBuffer()[0].type = resultType;
493 for (unsigned i = 0, e = argTypes.size(); i != e; ++i)
494 FI->getArgsBuffer()[i + 1].type = argTypes[i];
495 return FI;
Daniel Dunbar88c2fa92009-02-03 05:31:23 +0000496}
497
498/***/
499
John McCall42e06112011-05-15 02:19:42 +0000500void CodeGenTypes::GetExpandedTypes(QualType type,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000501 SmallVectorImpl<llvm::Type*> &expandedTypes) {
Bob Wilson194f06a2011-08-03 05:58:22 +0000502 if (const ConstantArrayType *AT = Context.getAsConstantArrayType(type)) {
503 uint64_t NumElts = AT->getSize().getZExtValue();
504 for (uint64_t Elt = 0; Elt < NumElts; ++Elt)
505 GetExpandedTypes(AT->getElementType(), expandedTypes);
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +0000506 } else if (const RecordType *RT = type->getAs<RecordType>()) {
Bob Wilson194f06a2011-08-03 05:58:22 +0000507 const RecordDecl *RD = RT->getDecl();
508 assert(!RD->hasFlexibleArrayMember() &&
509 "Cannot expand structure with flexible array.");
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +0000510 if (RD->isUnion()) {
511 // Unions can be here only in degenerative cases - all the fields are same
512 // after flattening. Thus we have to use the "largest" field.
513 const FieldDecl *LargestFD = 0;
514 CharUnits UnionSize = CharUnits::Zero();
515
516 for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end();
517 i != e; ++i) {
David Blaikie581deb32012-06-06 20:45:41 +0000518 const FieldDecl *FD = *i;
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +0000519 assert(!FD->isBitField() &&
520 "Cannot expand structure with bit-field members.");
521 CharUnits FieldSize = getContext().getTypeSizeInChars(FD->getType());
522 if (UnionSize < FieldSize) {
523 UnionSize = FieldSize;
524 LargestFD = FD;
525 }
526 }
527 if (LargestFD)
528 GetExpandedTypes(LargestFD->getType(), expandedTypes);
529 } else {
530 for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end();
531 i != e; ++i) {
David Blaikie581deb32012-06-06 20:45:41 +0000532 assert(!i->isBitField() &&
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +0000533 "Cannot expand structure with bit-field members.");
David Blaikie581deb32012-06-06 20:45:41 +0000534 GetExpandedTypes(i->getType(), expandedTypes);
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +0000535 }
Bob Wilson194f06a2011-08-03 05:58:22 +0000536 }
537 } else if (const ComplexType *CT = type->getAs<ComplexType>()) {
538 llvm::Type *EltTy = ConvertType(CT->getElementType());
539 expandedTypes.push_back(EltTy);
540 expandedTypes.push_back(EltTy);
541 } else
542 expandedTypes.push_back(ConvertType(type));
Daniel Dunbar56273772008-09-17 00:51:38 +0000543}
544
Mike Stump1eb44332009-09-09 15:08:12 +0000545llvm::Function::arg_iterator
Daniel Dunbar56273772008-09-17 00:51:38 +0000546CodeGenFunction::ExpandTypeFromArgs(QualType Ty, LValue LV,
547 llvm::Function::arg_iterator AI) {
Mike Stump1eb44332009-09-09 15:08:12 +0000548 assert(LV.isSimple() &&
549 "Unexpected non-simple lvalue during struct expansion.");
Daniel Dunbar56273772008-09-17 00:51:38 +0000550
Bob Wilson194f06a2011-08-03 05:58:22 +0000551 if (const ConstantArrayType *AT = getContext().getAsConstantArrayType(Ty)) {
552 unsigned NumElts = AT->getSize().getZExtValue();
553 QualType EltTy = AT->getElementType();
554 for (unsigned Elt = 0; Elt < NumElts; ++Elt) {
Eli Friedman377ecc72012-04-16 03:54:45 +0000555 llvm::Value *EltAddr = Builder.CreateConstGEP2_32(LV.getAddress(), 0, Elt);
Bob Wilson194f06a2011-08-03 05:58:22 +0000556 LValue LV = MakeAddrLValue(EltAddr, EltTy);
557 AI = ExpandTypeFromArgs(EltTy, LV, AI);
Daniel Dunbar56273772008-09-17 00:51:38 +0000558 }
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +0000559 } else if (const RecordType *RT = Ty->getAs<RecordType>()) {
Bob Wilson194f06a2011-08-03 05:58:22 +0000560 RecordDecl *RD = RT->getDecl();
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +0000561 if (RD->isUnion()) {
562 // Unions can be here only in degenerative cases - all the fields are same
563 // after flattening. Thus we have to use the "largest" field.
564 const FieldDecl *LargestFD = 0;
565 CharUnits UnionSize = CharUnits::Zero();
Bob Wilson194f06a2011-08-03 05:58:22 +0000566
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +0000567 for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end();
568 i != e; ++i) {
David Blaikie581deb32012-06-06 20:45:41 +0000569 const FieldDecl *FD = *i;
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +0000570 assert(!FD->isBitField() &&
571 "Cannot expand structure with bit-field members.");
572 CharUnits FieldSize = getContext().getTypeSizeInChars(FD->getType());
573 if (UnionSize < FieldSize) {
574 UnionSize = FieldSize;
575 LargestFD = FD;
576 }
577 }
578 if (LargestFD) {
579 // FIXME: What are the right qualifiers here?
Eli Friedman377ecc72012-04-16 03:54:45 +0000580 LValue SubLV = EmitLValueForField(LV, LargestFD);
581 AI = ExpandTypeFromArgs(LargestFD->getType(), SubLV, AI);
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +0000582 }
583 } else {
584 for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end();
585 i != e; ++i) {
David Blaikie581deb32012-06-06 20:45:41 +0000586 FieldDecl *FD = *i;
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +0000587 QualType FT = FD->getType();
588
589 // FIXME: What are the right qualifiers here?
Eli Friedman377ecc72012-04-16 03:54:45 +0000590 LValue SubLV = EmitLValueForField(LV, FD);
591 AI = ExpandTypeFromArgs(FT, SubLV, AI);
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +0000592 }
Bob Wilson194f06a2011-08-03 05:58:22 +0000593 }
594 } else if (const ComplexType *CT = Ty->getAs<ComplexType>()) {
595 QualType EltTy = CT->getElementType();
Eli Friedman377ecc72012-04-16 03:54:45 +0000596 llvm::Value *RealAddr = Builder.CreateStructGEP(LV.getAddress(), 0, "real");
Bob Wilson194f06a2011-08-03 05:58:22 +0000597 EmitStoreThroughLValue(RValue::get(AI++), MakeAddrLValue(RealAddr, EltTy));
Eli Friedman377ecc72012-04-16 03:54:45 +0000598 llvm::Value *ImagAddr = Builder.CreateStructGEP(LV.getAddress(), 1, "imag");
Bob Wilson194f06a2011-08-03 05:58:22 +0000599 EmitStoreThroughLValue(RValue::get(AI++), MakeAddrLValue(ImagAddr, EltTy));
600 } else {
601 EmitStoreThroughLValue(RValue::get(AI), LV);
602 ++AI;
Daniel Dunbar56273772008-09-17 00:51:38 +0000603 }
604
605 return AI;
606}
607
Chris Lattnere7bb7772010-06-27 06:04:18 +0000608/// EnterStructPointerForCoercedAccess - Given a struct pointer that we are
Chris Lattner08dd2a02010-06-27 05:56:15 +0000609/// accessing some number of bytes out of it, try to gep into the struct to get
610/// at its inner goodness. Dive as deep as possible without entering an element
611/// with an in-memory size smaller than DstSize.
612static llvm::Value *
Chris Lattnere7bb7772010-06-27 06:04:18 +0000613EnterStructPointerForCoercedAccess(llvm::Value *SrcPtr,
Chris Lattner2acc6e32011-07-18 04:24:23 +0000614 llvm::StructType *SrcSTy,
Chris Lattnere7bb7772010-06-27 06:04:18 +0000615 uint64_t DstSize, CodeGenFunction &CGF) {
Chris Lattner08dd2a02010-06-27 05:56:15 +0000616 // We can't dive into a zero-element struct.
617 if (SrcSTy->getNumElements() == 0) return SrcPtr;
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000618
Chris Lattner2acc6e32011-07-18 04:24:23 +0000619 llvm::Type *FirstElt = SrcSTy->getElementType(0);
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000620
Chris Lattner08dd2a02010-06-27 05:56:15 +0000621 // If the first elt is at least as large as what we're looking for, or if the
622 // first element is the same size as the whole struct, we can enter it.
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000623 uint64_t FirstEltSize =
Micah Villmow25a6a842012-10-08 16:25:52 +0000624 CGF.CGM.getDataLayout().getTypeAllocSize(FirstElt);
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000625 if (FirstEltSize < DstSize &&
Micah Villmow25a6a842012-10-08 16:25:52 +0000626 FirstEltSize < CGF.CGM.getDataLayout().getTypeAllocSize(SrcSTy))
Chris Lattner08dd2a02010-06-27 05:56:15 +0000627 return SrcPtr;
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000628
Chris Lattner08dd2a02010-06-27 05:56:15 +0000629 // GEP into the first element.
630 SrcPtr = CGF.Builder.CreateConstGEP2_32(SrcPtr, 0, 0, "coerce.dive");
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000631
Chris Lattner08dd2a02010-06-27 05:56:15 +0000632 // If the first element is a struct, recurse.
Chris Lattner2acc6e32011-07-18 04:24:23 +0000633 llvm::Type *SrcTy =
Chris Lattner08dd2a02010-06-27 05:56:15 +0000634 cast<llvm::PointerType>(SrcPtr->getType())->getElementType();
Chris Lattner2acc6e32011-07-18 04:24:23 +0000635 if (llvm::StructType *SrcSTy = dyn_cast<llvm::StructType>(SrcTy))
Chris Lattnere7bb7772010-06-27 06:04:18 +0000636 return EnterStructPointerForCoercedAccess(SrcPtr, SrcSTy, DstSize, CGF);
Chris Lattner08dd2a02010-06-27 05:56:15 +0000637
638 return SrcPtr;
639}
640
Chris Lattner6d11cdb2010-06-27 06:26:04 +0000641/// CoerceIntOrPtrToIntOrPtr - Convert a value Val to the specific Ty where both
642/// are either integers or pointers. This does a truncation of the value if it
643/// is too large or a zero extension if it is too small.
Jakob Stoklund Olesen7e9f52f2013-06-05 03:00:13 +0000644///
645/// This behaves as if the value were coerced through memory, so on big-endian
646/// targets the high bits are preserved in a truncation, while little-endian
647/// targets preserve the low bits.
Chris Lattner6d11cdb2010-06-27 06:26:04 +0000648static llvm::Value *CoerceIntOrPtrToIntOrPtr(llvm::Value *Val,
Chris Lattner2acc6e32011-07-18 04:24:23 +0000649 llvm::Type *Ty,
Chris Lattner6d11cdb2010-06-27 06:26:04 +0000650 CodeGenFunction &CGF) {
651 if (Val->getType() == Ty)
652 return Val;
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000653
Chris Lattner6d11cdb2010-06-27 06:26:04 +0000654 if (isa<llvm::PointerType>(Val->getType())) {
655 // If this is Pointer->Pointer avoid conversion to and from int.
656 if (isa<llvm::PointerType>(Ty))
657 return CGF.Builder.CreateBitCast(Val, Ty, "coerce.val");
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000658
Chris Lattner6d11cdb2010-06-27 06:26:04 +0000659 // Convert the pointer to an integer so we can play with its width.
Chris Lattner77b89b82010-06-27 07:15:29 +0000660 Val = CGF.Builder.CreatePtrToInt(Val, CGF.IntPtrTy, "coerce.val.pi");
Chris Lattner6d11cdb2010-06-27 06:26:04 +0000661 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000662
Chris Lattner2acc6e32011-07-18 04:24:23 +0000663 llvm::Type *DestIntTy = Ty;
Chris Lattner6d11cdb2010-06-27 06:26:04 +0000664 if (isa<llvm::PointerType>(DestIntTy))
Chris Lattner77b89b82010-06-27 07:15:29 +0000665 DestIntTy = CGF.IntPtrTy;
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000666
Jakob Stoklund Olesen7e9f52f2013-06-05 03:00:13 +0000667 if (Val->getType() != DestIntTy) {
668 const llvm::DataLayout &DL = CGF.CGM.getDataLayout();
669 if (DL.isBigEndian()) {
670 // Preserve the high bits on big-endian targets.
671 // That is what memory coercion does.
672 uint64_t SrcSize = DL.getTypeAllocSizeInBits(Val->getType());
673 uint64_t DstSize = DL.getTypeAllocSizeInBits(DestIntTy);
674 if (SrcSize > DstSize) {
675 Val = CGF.Builder.CreateLShr(Val, SrcSize - DstSize, "coerce.highbits");
676 Val = CGF.Builder.CreateTrunc(Val, DestIntTy, "coerce.val.ii");
677 } else {
678 Val = CGF.Builder.CreateZExt(Val, DestIntTy, "coerce.val.ii");
679 Val = CGF.Builder.CreateShl(Val, DstSize - SrcSize, "coerce.highbits");
680 }
681 } else {
682 // Little-endian targets preserve the low bits. No shifts required.
683 Val = CGF.Builder.CreateIntCast(Val, DestIntTy, false, "coerce.val.ii");
684 }
685 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000686
Chris Lattner6d11cdb2010-06-27 06:26:04 +0000687 if (isa<llvm::PointerType>(Ty))
688 Val = CGF.Builder.CreateIntToPtr(Val, Ty, "coerce.val.ip");
689 return Val;
690}
691
Chris Lattner08dd2a02010-06-27 05:56:15 +0000692
693
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000694/// CreateCoercedLoad - Create a load from \arg SrcPtr interpreted as
695/// a pointer to an object of type \arg Ty.
696///
697/// This safely handles the case when the src type is smaller than the
698/// destination type; in this situation the values of bits which not
699/// present in the src are undefined.
700static llvm::Value *CreateCoercedLoad(llvm::Value *SrcPtr,
Chris Lattner2acc6e32011-07-18 04:24:23 +0000701 llvm::Type *Ty,
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000702 CodeGenFunction &CGF) {
Chris Lattner2acc6e32011-07-18 04:24:23 +0000703 llvm::Type *SrcTy =
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000704 cast<llvm::PointerType>(SrcPtr->getType())->getElementType();
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000705
Chris Lattner6ae00692010-06-28 22:51:39 +0000706 // If SrcTy and Ty are the same, just do a load.
707 if (SrcTy == Ty)
708 return CGF.Builder.CreateLoad(SrcPtr);
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000709
Micah Villmow25a6a842012-10-08 16:25:52 +0000710 uint64_t DstSize = CGF.CGM.getDataLayout().getTypeAllocSize(Ty);
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000711
Chris Lattner2acc6e32011-07-18 04:24:23 +0000712 if (llvm::StructType *SrcSTy = dyn_cast<llvm::StructType>(SrcTy)) {
Chris Lattnere7bb7772010-06-27 06:04:18 +0000713 SrcPtr = EnterStructPointerForCoercedAccess(SrcPtr, SrcSTy, DstSize, CGF);
Chris Lattner08dd2a02010-06-27 05:56:15 +0000714 SrcTy = cast<llvm::PointerType>(SrcPtr->getType())->getElementType();
715 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000716
Micah Villmow25a6a842012-10-08 16:25:52 +0000717 uint64_t SrcSize = CGF.CGM.getDataLayout().getTypeAllocSize(SrcTy);
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000718
Chris Lattner6d11cdb2010-06-27 06:26:04 +0000719 // If the source and destination are integer or pointer types, just do an
720 // extension or truncation to the desired type.
721 if ((isa<llvm::IntegerType>(Ty) || isa<llvm::PointerType>(Ty)) &&
722 (isa<llvm::IntegerType>(SrcTy) || isa<llvm::PointerType>(SrcTy))) {
723 llvm::LoadInst *Load = CGF.Builder.CreateLoad(SrcPtr);
724 return CoerceIntOrPtrToIntOrPtr(Load, Ty, CGF);
725 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000726
Daniel Dunbarb225be42009-02-03 05:59:18 +0000727 // If load is legal, just bitcast the src pointer.
Daniel Dunbar7ef455b2009-05-13 18:54:26 +0000728 if (SrcSize >= DstSize) {
Mike Stumpf5408fe2009-05-16 07:57:57 +0000729 // Generally SrcSize is never greater than DstSize, since this means we are
730 // losing bits. However, this can happen in cases where the structure has
731 // additional padding, for example due to a user specified alignment.
Daniel Dunbar7ef455b2009-05-13 18:54:26 +0000732 //
Mike Stumpf5408fe2009-05-16 07:57:57 +0000733 // FIXME: Assert that we aren't truncating non-padding bits when have access
734 // to that information.
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000735 llvm::Value *Casted =
736 CGF.Builder.CreateBitCast(SrcPtr, llvm::PointerType::getUnqual(Ty));
Daniel Dunbar386621f2009-02-07 02:46:03 +0000737 llvm::LoadInst *Load = CGF.Builder.CreateLoad(Casted);
738 // FIXME: Use better alignment / avoid requiring aligned load.
739 Load->setAlignment(1);
740 return Load;
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000741 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000742
Chris Lattner35b21b82010-06-27 01:06:27 +0000743 // Otherwise do coercion through memory. This is stupid, but
744 // simple.
745 llvm::Value *Tmp = CGF.CreateTempAlloca(Ty);
Manman Renf51c61c2012-11-28 22:08:52 +0000746 llvm::Type *I8PtrTy = CGF.Builder.getInt8PtrTy();
747 llvm::Value *Casted = CGF.Builder.CreateBitCast(Tmp, I8PtrTy);
748 llvm::Value *SrcCasted = CGF.Builder.CreateBitCast(SrcPtr, I8PtrTy);
Manman Ren060f34d2012-11-28 22:29:41 +0000749 // FIXME: Use better alignment.
Manman Renf51c61c2012-11-28 22:08:52 +0000750 CGF.Builder.CreateMemCpy(Casted, SrcCasted,
751 llvm::ConstantInt::get(CGF.IntPtrTy, SrcSize),
752 1, false);
Chris Lattner35b21b82010-06-27 01:06:27 +0000753 return CGF.Builder.CreateLoad(Tmp);
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000754}
755
Eli Friedmanbadea572011-05-17 21:08:01 +0000756// Function to store a first-class aggregate into memory. We prefer to
757// store the elements rather than the aggregate to be more friendly to
758// fast-isel.
759// FIXME: Do we need to recurse here?
760static void BuildAggStore(CodeGenFunction &CGF, llvm::Value *Val,
761 llvm::Value *DestPtr, bool DestIsVolatile,
762 bool LowAlignment) {
763 // Prefer scalar stores to first-class aggregate stores.
Chris Lattner2acc6e32011-07-18 04:24:23 +0000764 if (llvm::StructType *STy =
Eli Friedmanbadea572011-05-17 21:08:01 +0000765 dyn_cast<llvm::StructType>(Val->getType())) {
766 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
767 llvm::Value *EltPtr = CGF.Builder.CreateConstGEP2_32(DestPtr, 0, i);
768 llvm::Value *Elt = CGF.Builder.CreateExtractValue(Val, i);
769 llvm::StoreInst *SI = CGF.Builder.CreateStore(Elt, EltPtr,
770 DestIsVolatile);
771 if (LowAlignment)
772 SI->setAlignment(1);
773 }
774 } else {
Bill Wendling08212632012-03-16 21:45:12 +0000775 llvm::StoreInst *SI = CGF.Builder.CreateStore(Val, DestPtr, DestIsVolatile);
776 if (LowAlignment)
777 SI->setAlignment(1);
Eli Friedmanbadea572011-05-17 21:08:01 +0000778 }
779}
780
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000781/// CreateCoercedStore - Create a store to \arg DstPtr from \arg Src,
782/// where the source and destination may have different types.
783///
784/// This safely handles the case when the src type is larger than the
785/// destination type; the upper bits of the src will be lost.
786static void CreateCoercedStore(llvm::Value *Src,
787 llvm::Value *DstPtr,
Anders Carlssond2490a92009-12-24 20:40:36 +0000788 bool DstIsVolatile,
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000789 CodeGenFunction &CGF) {
Chris Lattner2acc6e32011-07-18 04:24:23 +0000790 llvm::Type *SrcTy = Src->getType();
791 llvm::Type *DstTy =
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000792 cast<llvm::PointerType>(DstPtr->getType())->getElementType();
Chris Lattner6ae00692010-06-28 22:51:39 +0000793 if (SrcTy == DstTy) {
794 CGF.Builder.CreateStore(Src, DstPtr, DstIsVolatile);
795 return;
796 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000797
Micah Villmow25a6a842012-10-08 16:25:52 +0000798 uint64_t SrcSize = CGF.CGM.getDataLayout().getTypeAllocSize(SrcTy);
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000799
Chris Lattner2acc6e32011-07-18 04:24:23 +0000800 if (llvm::StructType *DstSTy = dyn_cast<llvm::StructType>(DstTy)) {
Chris Lattnere7bb7772010-06-27 06:04:18 +0000801 DstPtr = EnterStructPointerForCoercedAccess(DstPtr, DstSTy, SrcSize, CGF);
802 DstTy = cast<llvm::PointerType>(DstPtr->getType())->getElementType();
803 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000804
Chris Lattner6d11cdb2010-06-27 06:26:04 +0000805 // If the source and destination are integer or pointer types, just do an
806 // extension or truncation to the desired type.
807 if ((isa<llvm::IntegerType>(SrcTy) || isa<llvm::PointerType>(SrcTy)) &&
808 (isa<llvm::IntegerType>(DstTy) || isa<llvm::PointerType>(DstTy))) {
809 Src = CoerceIntOrPtrToIntOrPtr(Src, DstTy, CGF);
810 CGF.Builder.CreateStore(Src, DstPtr, DstIsVolatile);
811 return;
812 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000813
Micah Villmow25a6a842012-10-08 16:25:52 +0000814 uint64_t DstSize = CGF.CGM.getDataLayout().getTypeAllocSize(DstTy);
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000815
Daniel Dunbar88c2fa92009-02-03 05:31:23 +0000816 // If store is legal, just bitcast the src pointer.
Daniel Dunbarfdf49862009-06-05 07:58:54 +0000817 if (SrcSize <= DstSize) {
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000818 llvm::Value *Casted =
819 CGF.Builder.CreateBitCast(DstPtr, llvm::PointerType::getUnqual(SrcTy));
Daniel Dunbar386621f2009-02-07 02:46:03 +0000820 // FIXME: Use better alignment / avoid requiring aligned store.
Eli Friedmanbadea572011-05-17 21:08:01 +0000821 BuildAggStore(CGF, Src, Casted, DstIsVolatile, true);
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000822 } else {
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000823 // Otherwise do coercion through memory. This is stupid, but
824 // simple.
Daniel Dunbarfdf49862009-06-05 07:58:54 +0000825
826 // Generally SrcSize is never greater than DstSize, since this means we are
827 // losing bits. However, this can happen in cases where the structure has
828 // additional padding, for example due to a user specified alignment.
829 //
830 // FIXME: Assert that we aren't truncating non-padding bits when have access
831 // to that information.
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000832 llvm::Value *Tmp = CGF.CreateTempAlloca(SrcTy);
833 CGF.Builder.CreateStore(Src, Tmp);
Manman Renf51c61c2012-11-28 22:08:52 +0000834 llvm::Type *I8PtrTy = CGF.Builder.getInt8PtrTy();
835 llvm::Value *Casted = CGF.Builder.CreateBitCast(Tmp, I8PtrTy);
836 llvm::Value *DstCasted = CGF.Builder.CreateBitCast(DstPtr, I8PtrTy);
Manman Ren060f34d2012-11-28 22:29:41 +0000837 // FIXME: Use better alignment.
Manman Renf51c61c2012-11-28 22:08:52 +0000838 CGF.Builder.CreateMemCpy(DstCasted, Casted,
839 llvm::ConstantInt::get(CGF.IntPtrTy, DstSize),
840 1, false);
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000841 }
842}
843
Daniel Dunbar56273772008-09-17 00:51:38 +0000844/***/
845
Daniel Dunbardacf9dd2010-07-14 23:39:36 +0000846bool CodeGenModule::ReturnTypeUsesSRet(const CGFunctionInfo &FI) {
Daniel Dunbar11e383a2009-02-05 08:00:50 +0000847 return FI.getReturnInfo().isIndirect();
Daniel Dunbarbb36d332009-02-02 21:43:58 +0000848}
849
Daniel Dunbardacf9dd2010-07-14 23:39:36 +0000850bool CodeGenModule::ReturnTypeUsesFPRet(QualType ResultType) {
851 if (const BuiltinType *BT = ResultType->getAs<BuiltinType>()) {
852 switch (BT->getKind()) {
853 default:
854 return false;
855 case BuiltinType::Float:
John McCall64aa4b32013-04-16 22:48:15 +0000856 return getTarget().useObjCFPRetForRealType(TargetInfo::Float);
Daniel Dunbardacf9dd2010-07-14 23:39:36 +0000857 case BuiltinType::Double:
John McCall64aa4b32013-04-16 22:48:15 +0000858 return getTarget().useObjCFPRetForRealType(TargetInfo::Double);
Daniel Dunbardacf9dd2010-07-14 23:39:36 +0000859 case BuiltinType::LongDouble:
John McCall64aa4b32013-04-16 22:48:15 +0000860 return getTarget().useObjCFPRetForRealType(TargetInfo::LongDouble);
Daniel Dunbardacf9dd2010-07-14 23:39:36 +0000861 }
862 }
863
864 return false;
865}
866
Anders Carlssoneea64802011-10-31 16:27:11 +0000867bool CodeGenModule::ReturnTypeUsesFP2Ret(QualType ResultType) {
868 if (const ComplexType *CT = ResultType->getAs<ComplexType>()) {
869 if (const BuiltinType *BT = CT->getElementType()->getAs<BuiltinType>()) {
870 if (BT->getKind() == BuiltinType::LongDouble)
John McCall64aa4b32013-04-16 22:48:15 +0000871 return getTarget().useObjCFP2RetForComplexLongDouble();
Anders Carlssoneea64802011-10-31 16:27:11 +0000872 }
873 }
874
875 return false;
876}
877
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000878llvm::FunctionType *CodeGenTypes::GetFunctionType(GlobalDecl GD) {
John McCallde5d3c72012-02-17 03:33:10 +0000879 const CGFunctionInfo &FI = arrangeGlobalDeclaration(GD);
880 return GetFunctionType(FI);
John McCallc0bf4622010-02-23 00:48:20 +0000881}
882
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000883llvm::FunctionType *
John McCallde5d3c72012-02-17 03:33:10 +0000884CodeGenTypes::GetFunctionType(const CGFunctionInfo &FI) {
Chris Lattner71305cc2011-07-15 05:16:14 +0000885
886 bool Inserted = FunctionsBeingProcessed.insert(&FI); (void)Inserted;
887 assert(Inserted && "Recursively being processed?");
888
Chris Lattner5f9e2722011-07-23 10:55:15 +0000889 SmallVector<llvm::Type*, 8> argTypes;
Chris Lattner2acc6e32011-07-18 04:24:23 +0000890 llvm::Type *resultType = 0;
Daniel Dunbar45c25ba2008-09-10 04:01:49 +0000891
John McCall42e06112011-05-15 02:19:42 +0000892 const ABIArgInfo &retAI = FI.getReturnInfo();
893 switch (retAI.getKind()) {
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000894 case ABIArgInfo::Expand:
John McCall42e06112011-05-15 02:19:42 +0000895 llvm_unreachable("Invalid ABI kind for return argument");
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000896
Anton Korobeynikovcc6fa882009-06-06 09:36:29 +0000897 case ABIArgInfo::Extend:
Daniel Dunbar46327aa2009-02-03 06:17:37 +0000898 case ABIArgInfo::Direct:
John McCall42e06112011-05-15 02:19:42 +0000899 resultType = retAI.getCoerceToType();
Daniel Dunbar46327aa2009-02-03 06:17:37 +0000900 break;
901
Daniel Dunbar11e383a2009-02-05 08:00:50 +0000902 case ABIArgInfo::Indirect: {
John McCall42e06112011-05-15 02:19:42 +0000903 assert(!retAI.getIndirectAlign() && "Align unused on indirect return.");
904 resultType = llvm::Type::getVoidTy(getLLVMContext());
905
906 QualType ret = FI.getReturnType();
Chris Lattner2acc6e32011-07-18 04:24:23 +0000907 llvm::Type *ty = ConvertType(ret);
John McCall42e06112011-05-15 02:19:42 +0000908 unsigned addressSpace = Context.getTargetAddressSpace(ret);
909 argTypes.push_back(llvm::PointerType::get(ty, addressSpace));
Daniel Dunbar45c25ba2008-09-10 04:01:49 +0000910 break;
911 }
912
Daniel Dunbar11434922009-01-26 21:26:08 +0000913 case ABIArgInfo::Ignore:
John McCall42e06112011-05-15 02:19:42 +0000914 resultType = llvm::Type::getVoidTy(getLLVMContext());
Daniel Dunbar11434922009-01-26 21:26:08 +0000915 break;
Daniel Dunbar45c25ba2008-09-10 04:01:49 +0000916 }
Mike Stump1eb44332009-09-09 15:08:12 +0000917
John McCalle56bb362012-12-07 07:03:17 +0000918 // Add in all of the required arguments.
919 CGFunctionInfo::const_arg_iterator it = FI.arg_begin(), ie;
920 if (FI.isVariadic()) {
921 ie = it + FI.getRequiredArgs().getNumRequiredArgs();
922 } else {
923 ie = FI.arg_end();
924 }
925 for (; it != ie; ++it) {
John McCall42e06112011-05-15 02:19:42 +0000926 const ABIArgInfo &argAI = it->info;
Mike Stump1eb44332009-09-09 15:08:12 +0000927
Rafael Espindolae4aeeaa2012-10-24 01:59:00 +0000928 // Insert a padding type to ensure proper alignment.
929 if (llvm::Type *PaddingType = argAI.getPaddingType())
930 argTypes.push_back(PaddingType);
931
John McCall42e06112011-05-15 02:19:42 +0000932 switch (argAI.getKind()) {
Daniel Dunbar11434922009-01-26 21:26:08 +0000933 case ABIArgInfo::Ignore:
934 break;
935
Chris Lattner800588f2010-07-29 06:26:06 +0000936 case ABIArgInfo::Indirect: {
937 // indirect arguments are always on the stack, which is addr space #0.
Chris Lattner2acc6e32011-07-18 04:24:23 +0000938 llvm::Type *LTy = ConvertTypeForMem(it->type);
John McCall42e06112011-05-15 02:19:42 +0000939 argTypes.push_back(LTy->getPointerTo());
Chris Lattner800588f2010-07-29 06:26:06 +0000940 break;
941 }
942
943 case ABIArgInfo::Extend:
Chris Lattner1ed72672010-07-29 06:44:09 +0000944 case ABIArgInfo::Direct: {
Chris Lattnerce700162010-06-28 23:44:11 +0000945 // If the coerce-to type is a first class aggregate, flatten it. Either
946 // way is semantically identical, but fast-isel and the optimizer
947 // generally likes scalar values better than FCAs.
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000948 llvm::Type *argType = argAI.getCoerceToType();
Chris Lattner2acc6e32011-07-18 04:24:23 +0000949 if (llvm::StructType *st = dyn_cast<llvm::StructType>(argType)) {
John McCall42e06112011-05-15 02:19:42 +0000950 for (unsigned i = 0, e = st->getNumElements(); i != e; ++i)
951 argTypes.push_back(st->getElementType(i));
Chris Lattnerce700162010-06-28 23:44:11 +0000952 } else {
John McCall42e06112011-05-15 02:19:42 +0000953 argTypes.push_back(argType);
Chris Lattnerce700162010-06-28 23:44:11 +0000954 }
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +0000955 break;
Chris Lattner1ed72672010-07-29 06:44:09 +0000956 }
Mike Stump1eb44332009-09-09 15:08:12 +0000957
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000958 case ABIArgInfo::Expand:
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000959 GetExpandedTypes(it->type, argTypes);
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000960 break;
961 }
Daniel Dunbar45c25ba2008-09-10 04:01:49 +0000962 }
963
Chris Lattner71305cc2011-07-15 05:16:14 +0000964 bool Erased = FunctionsBeingProcessed.erase(&FI); (void)Erased;
965 assert(Erased && "Not in set?");
966
John McCallde5d3c72012-02-17 03:33:10 +0000967 return llvm::FunctionType::get(resultType, argTypes, FI.isVariadic());
Daniel Dunbar3913f182008-09-09 23:48:28 +0000968}
969
Chris Lattner2acc6e32011-07-18 04:24:23 +0000970llvm::Type *CodeGenTypes::GetFunctionTypeForVTable(GlobalDecl GD) {
John McCall4c40d982010-08-31 07:33:07 +0000971 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl());
Anders Carlssonecf282b2009-11-24 05:08:52 +0000972 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>();
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000973
Chris Lattnerf742eb02011-07-10 00:18:59 +0000974 if (!isFuncTypeConvertible(FPT))
975 return llvm::StructType::get(getLLVMContext());
976
977 const CGFunctionInfo *Info;
978 if (isa<CXXDestructorDecl>(MD))
John McCallde5d3c72012-02-17 03:33:10 +0000979 Info = &arrangeCXXDestructor(cast<CXXDestructorDecl>(MD), GD.getDtorType());
Chris Lattnerf742eb02011-07-10 00:18:59 +0000980 else
John McCallde5d3c72012-02-17 03:33:10 +0000981 Info = &arrangeCXXMethodDeclaration(MD);
982 return GetFunctionType(*Info);
Anders Carlssonecf282b2009-11-24 05:08:52 +0000983}
984
Daniel Dunbara0a99e02009-02-02 23:43:58 +0000985void CodeGenModule::ConstructAttributeList(const CGFunctionInfo &FI,
Daniel Dunbar88b53962009-02-02 22:03:45 +0000986 const Decl *TargetDecl,
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000987 AttributeListType &PAL,
Bill Wendling94236e72013-02-22 00:13:35 +0000988 unsigned &CallingConv,
989 bool AttrOnCallSite) {
Bill Wendling0d583392012-10-15 20:36:26 +0000990 llvm::AttrBuilder FuncAttrs;
991 llvm::AttrBuilder RetAttrs;
Daniel Dunbar5323a4b2008-09-10 00:32:18 +0000992
Daniel Dunbarca6408c2009-09-12 00:59:20 +0000993 CallingConv = FI.getEffectiveCallingConvention();
994
John McCall04a67a62010-02-05 21:31:56 +0000995 if (FI.isNoReturn())
Bill Wendling72390b32012-12-20 19:27:06 +0000996 FuncAttrs.addAttribute(llvm::Attribute::NoReturn);
John McCall04a67a62010-02-05 21:31:56 +0000997
Anton Korobeynikov1102f422009-04-04 00:49:24 +0000998 // FIXME: handle sseregparm someday...
Daniel Dunbar5323a4b2008-09-10 00:32:18 +0000999 if (TargetDecl) {
Rafael Espindola67004152011-10-12 19:51:18 +00001000 if (TargetDecl->hasAttr<ReturnsTwiceAttr>())
Bill Wendling72390b32012-12-20 19:27:06 +00001001 FuncAttrs.addAttribute(llvm::Attribute::ReturnsTwice);
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00001002 if (TargetDecl->hasAttr<NoThrowAttr>())
Bill Wendling72390b32012-12-20 19:27:06 +00001003 FuncAttrs.addAttribute(llvm::Attribute::NoUnwind);
Richard Smith7586a6e2013-01-30 05:45:05 +00001004 if (TargetDecl->hasAttr<NoReturnAttr>())
1005 FuncAttrs.addAttribute(llvm::Attribute::NoReturn);
1006
1007 if (const FunctionDecl *Fn = dyn_cast<FunctionDecl>(TargetDecl)) {
John McCall9c0c1f32010-07-08 06:48:12 +00001008 const FunctionProtoType *FPT = Fn->getType()->getAs<FunctionProtoType>();
Sebastian Redl8026f6d2011-03-13 17:09:40 +00001009 if (FPT && FPT->isNothrow(getContext()))
Bill Wendling72390b32012-12-20 19:27:06 +00001010 FuncAttrs.addAttribute(llvm::Attribute::NoUnwind);
Richard Smith3c5cd152013-03-05 08:30:04 +00001011 // Don't use [[noreturn]] or _Noreturn for a call to a virtual function.
1012 // These attributes are not inherited by overloads.
1013 const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Fn);
1014 if (Fn->isNoReturn() && !(AttrOnCallSite && MD && MD->isVirtual()))
Richard Smith7586a6e2013-01-30 05:45:05 +00001015 FuncAttrs.addAttribute(llvm::Attribute::NoReturn);
John McCall9c0c1f32010-07-08 06:48:12 +00001016 }
1017
Eric Christopher041087c2011-08-15 22:38:22 +00001018 // 'const' and 'pure' attribute functions are also nounwind.
1019 if (TargetDecl->hasAttr<ConstAttr>()) {
Bill Wendling72390b32012-12-20 19:27:06 +00001020 FuncAttrs.addAttribute(llvm::Attribute::ReadNone);
1021 FuncAttrs.addAttribute(llvm::Attribute::NoUnwind);
Eric Christopher041087c2011-08-15 22:38:22 +00001022 } else if (TargetDecl->hasAttr<PureAttr>()) {
Bill Wendling72390b32012-12-20 19:27:06 +00001023 FuncAttrs.addAttribute(llvm::Attribute::ReadOnly);
1024 FuncAttrs.addAttribute(llvm::Attribute::NoUnwind);
Eric Christopher041087c2011-08-15 22:38:22 +00001025 }
Ryan Flynn76168e22009-08-09 20:07:29 +00001026 if (TargetDecl->hasAttr<MallocAttr>())
Bill Wendling72390b32012-12-20 19:27:06 +00001027 RetAttrs.addAttribute(llvm::Attribute::NoAlias);
Daniel Dunbar5323a4b2008-09-10 00:32:18 +00001028 }
1029
Chandler Carruth2811ccf2009-11-12 17:24:48 +00001030 if (CodeGenOpts.OptimizeSize)
Bill Wendling72390b32012-12-20 19:27:06 +00001031 FuncAttrs.addAttribute(llvm::Attribute::OptimizeForSize);
Quentin Colombet90467682012-10-26 00:29:48 +00001032 if (CodeGenOpts.OptimizeSize == 2)
Bill Wendling72390b32012-12-20 19:27:06 +00001033 FuncAttrs.addAttribute(llvm::Attribute::MinSize);
Chandler Carruth2811ccf2009-11-12 17:24:48 +00001034 if (CodeGenOpts.DisableRedZone)
Bill Wendling72390b32012-12-20 19:27:06 +00001035 FuncAttrs.addAttribute(llvm::Attribute::NoRedZone);
Chandler Carruth2811ccf2009-11-12 17:24:48 +00001036 if (CodeGenOpts.NoImplicitFloat)
Bill Wendling72390b32012-12-20 19:27:06 +00001037 FuncAttrs.addAttribute(llvm::Attribute::NoImplicitFloat);
Devang Patel24095da2009-06-04 23:32:02 +00001038
Bill Wendling93e4bff2013-02-22 20:53:29 +00001039 if (AttrOnCallSite) {
1040 // Attributes that should go on the call site only.
1041 if (!CodeGenOpts.SimplifyLibCalls)
1042 FuncAttrs.addAttribute(llvm::Attribute::NoBuiltin);
Bill Wendlingbe9e8bf2013-02-28 22:49:57 +00001043 } else {
1044 // Attributes that should go on the function, but not the call site.
Bill Wendlingbe9e8bf2013-02-28 22:49:57 +00001045 if (!CodeGenOpts.DisableFPElim) {
Bill Wendling4159f052013-03-13 22:24:33 +00001046 FuncAttrs.addAttribute("no-frame-pointer-elim", "false");
Bill Wendlingbe9e8bf2013-02-28 22:49:57 +00001047 } else if (CodeGenOpts.OmitLeafFramePointer) {
Bill Wendling4159f052013-03-13 22:24:33 +00001048 FuncAttrs.addAttribute("no-frame-pointer-elim", "false");
Bill Wendlingfae228b2013-08-22 21:16:51 +00001049 FuncAttrs.addAttribute("no-frame-pointer-elim-non-leaf");
Bill Wendlingbe9e8bf2013-02-28 22:49:57 +00001050 } else {
Bill Wendling4159f052013-03-13 22:24:33 +00001051 FuncAttrs.addAttribute("no-frame-pointer-elim", "true");
Bill Wendlingfae228b2013-08-22 21:16:51 +00001052 FuncAttrs.addAttribute("no-frame-pointer-elim-non-leaf");
Bill Wendlingbe9e8bf2013-02-28 22:49:57 +00001053 }
1054
Bill Wendling4159f052013-03-13 22:24:33 +00001055 FuncAttrs.addAttribute("less-precise-fpmad",
Bill Wendling52d08fe2013-07-26 21:51:11 +00001056 llvm::toStringRef(CodeGenOpts.LessPreciseFPMAD));
Bill Wendling4159f052013-03-13 22:24:33 +00001057 FuncAttrs.addAttribute("no-infs-fp-math",
Bill Wendling52d08fe2013-07-26 21:51:11 +00001058 llvm::toStringRef(CodeGenOpts.NoInfsFPMath));
Bill Wendling4159f052013-03-13 22:24:33 +00001059 FuncAttrs.addAttribute("no-nans-fp-math",
Bill Wendling52d08fe2013-07-26 21:51:11 +00001060 llvm::toStringRef(CodeGenOpts.NoNaNsFPMath));
Bill Wendling4159f052013-03-13 22:24:33 +00001061 FuncAttrs.addAttribute("unsafe-fp-math",
Bill Wendling52d08fe2013-07-26 21:51:11 +00001062 llvm::toStringRef(CodeGenOpts.UnsafeFPMath));
Bill Wendling4159f052013-03-13 22:24:33 +00001063 FuncAttrs.addAttribute("use-soft-float",
Bill Wendling52d08fe2013-07-26 21:51:11 +00001064 llvm::toStringRef(CodeGenOpts.SoftFloat));
Bill Wendling45ccf282013-07-22 20:15:41 +00001065 FuncAttrs.addAttribute("stack-protector-buffer-size",
Bill Wendling8d230b42013-07-12 22:26:07 +00001066 llvm::utostr(CodeGenOpts.SSPBufferSize));
Bill Wendlingcab4a092013-07-25 00:32:41 +00001067
Bill Wendling1cf9ab82013-08-01 21:41:02 +00001068 if (!CodeGenOpts.StackRealignment)
1069 FuncAttrs.addAttribute("no-realign-stack");
Bill Wendlingc0dcc2d2013-02-15 21:30:01 +00001070 }
1071
Daniel Dunbara0a99e02009-02-02 23:43:58 +00001072 QualType RetTy = FI.getReturnType();
Daniel Dunbar5323a4b2008-09-10 00:32:18 +00001073 unsigned Index = 1;
Daniel Dunbarb225be42009-02-03 05:59:18 +00001074 const ABIArgInfo &RetAI = FI.getReturnInfo();
Daniel Dunbar45c25ba2008-09-10 04:01:49 +00001075 switch (RetAI.getKind()) {
Anton Korobeynikovcc6fa882009-06-06 09:36:29 +00001076 case ABIArgInfo::Extend:
Jakob Stoklund Olesen5baefa82013-05-29 03:57:23 +00001077 if (RetTy->hasSignedIntegerRepresentation())
1078 RetAttrs.addAttribute(llvm::Attribute::SExt);
1079 else if (RetTy->hasUnsignedIntegerRepresentation())
1080 RetAttrs.addAttribute(llvm::Attribute::ZExt);
Jakob Stoklund Olesen90f9ec02013-06-05 03:00:09 +00001081 // FALL THROUGH
Daniel Dunbar46327aa2009-02-03 06:17:37 +00001082 case ABIArgInfo::Direct:
Jakob Stoklund Olesen90f9ec02013-06-05 03:00:09 +00001083 if (RetAI.getInReg())
1084 RetAttrs.addAttribute(llvm::Attribute::InReg);
1085 break;
Chris Lattner800588f2010-07-29 06:26:06 +00001086 case ABIArgInfo::Ignore:
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001087 break;
1088
Rafael Espindolab48280b2012-07-31 02:44:24 +00001089 case ABIArgInfo::Indirect: {
Bill Wendling0d583392012-10-15 20:36:26 +00001090 llvm::AttrBuilder SRETAttrs;
Bill Wendling72390b32012-12-20 19:27:06 +00001091 SRETAttrs.addAttribute(llvm::Attribute::StructRet);
Rafael Espindolab48280b2012-07-31 02:44:24 +00001092 if (RetAI.getInReg())
Bill Wendling72390b32012-12-20 19:27:06 +00001093 SRETAttrs.addAttribute(llvm::Attribute::InReg);
Bill Wendling603571a2012-10-10 07:36:56 +00001094 PAL.push_back(llvm::
Bill Wendlingb263bdf2013-01-27 02:46:53 +00001095 AttributeSet::get(getLLVMContext(), Index, SRETAttrs));
Rafael Espindolab48280b2012-07-31 02:44:24 +00001096
Daniel Dunbar5323a4b2008-09-10 00:32:18 +00001097 ++Index;
Daniel Dunbar0ac86f02009-03-18 19:51:01 +00001098 // sret disables readnone and readonly
Bill Wendling72390b32012-12-20 19:27:06 +00001099 FuncAttrs.removeAttribute(llvm::Attribute::ReadOnly)
1100 .removeAttribute(llvm::Attribute::ReadNone);
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001101 break;
Rafael Espindolab48280b2012-07-31 02:44:24 +00001102 }
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001103
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001104 case ABIArgInfo::Expand:
David Blaikieb219cfc2011-09-23 05:06:16 +00001105 llvm_unreachable("Invalid ABI kind for return argument");
Daniel Dunbar5323a4b2008-09-10 00:32:18 +00001106 }
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001107
Bill Wendling603571a2012-10-10 07:36:56 +00001108 if (RetAttrs.hasAttributes())
1109 PAL.push_back(llvm::
Bill Wendlingb263bdf2013-01-27 02:46:53 +00001110 AttributeSet::get(getLLVMContext(),
1111 llvm::AttributeSet::ReturnIndex,
1112 RetAttrs));
Anton Korobeynikov1102f422009-04-04 00:49:24 +00001113
Mike Stump1eb44332009-09-09 15:08:12 +00001114 for (CGFunctionInfo::const_arg_iterator it = FI.arg_begin(),
Daniel Dunbar88c2fa92009-02-03 05:31:23 +00001115 ie = FI.arg_end(); it != ie; ++it) {
1116 QualType ParamType = it->type;
1117 const ABIArgInfo &AI = it->info;
Bill Wendling0d583392012-10-15 20:36:26 +00001118 llvm::AttrBuilder Attrs;
Anton Korobeynikov1102f422009-04-04 00:49:24 +00001119
Rafael Espindolae4aeeaa2012-10-24 01:59:00 +00001120 if (AI.getPaddingType()) {
Bill Wendlingb263bdf2013-01-27 02:46:53 +00001121 if (AI.getPaddingInReg())
1122 PAL.push_back(llvm::AttributeSet::get(getLLVMContext(), Index,
1123 llvm::Attribute::InReg));
Rafael Espindolae4aeeaa2012-10-24 01:59:00 +00001124 // Increment Index if there is padding.
1125 ++Index;
1126 }
1127
John McCalld8e10d22010-03-27 00:47:27 +00001128 // 'restrict' -> 'noalias' is done in EmitFunctionProlog when we
1129 // have the corresponding parameter variable. It doesn't make
Daniel Dunbar7f6890e2011-02-10 18:10:07 +00001130 // sense to do it here because parameters are so messed up.
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001131 switch (AI.getKind()) {
Chris Lattner800588f2010-07-29 06:26:06 +00001132 case ABIArgInfo::Extend:
Douglas Gregor575a1c92011-05-20 16:38:50 +00001133 if (ParamType->isSignedIntegerOrEnumerationType())
Bill Wendling72390b32012-12-20 19:27:06 +00001134 Attrs.addAttribute(llvm::Attribute::SExt);
Douglas Gregor575a1c92011-05-20 16:38:50 +00001135 else if (ParamType->isUnsignedIntegerOrEnumerationType())
Bill Wendling72390b32012-12-20 19:27:06 +00001136 Attrs.addAttribute(llvm::Attribute::ZExt);
Chris Lattner800588f2010-07-29 06:26:06 +00001137 // FALL THROUGH
1138 case ABIArgInfo::Direct:
Rafael Espindolab48280b2012-07-31 02:44:24 +00001139 if (AI.getInReg())
Bill Wendling72390b32012-12-20 19:27:06 +00001140 Attrs.addAttribute(llvm::Attribute::InReg);
Rafael Espindolab48280b2012-07-31 02:44:24 +00001141
Chris Lattner800588f2010-07-29 06:26:06 +00001142 // FIXME: handle sseregparm someday...
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001143
Chris Lattner2acc6e32011-07-18 04:24:23 +00001144 if (llvm::StructType *STy =
Rafael Espindolab48280b2012-07-31 02:44:24 +00001145 dyn_cast<llvm::StructType>(AI.getCoerceToType())) {
1146 unsigned Extra = STy->getNumElements()-1; // 1 will be added below.
Bill Wendling603571a2012-10-10 07:36:56 +00001147 if (Attrs.hasAttributes())
Rafael Espindolab48280b2012-07-31 02:44:24 +00001148 for (unsigned I = 0; I < Extra; ++I)
Bill Wendlingb263bdf2013-01-27 02:46:53 +00001149 PAL.push_back(llvm::AttributeSet::get(getLLVMContext(), Index + I,
1150 Attrs));
Rafael Espindolab48280b2012-07-31 02:44:24 +00001151 Index += Extra;
1152 }
Chris Lattner800588f2010-07-29 06:26:06 +00001153 break;
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +00001154
Daniel Dunbar11e383a2009-02-05 08:00:50 +00001155 case ABIArgInfo::Indirect:
Rafael Espindola0b4cc952012-10-19 05:04:37 +00001156 if (AI.getInReg())
Bill Wendling72390b32012-12-20 19:27:06 +00001157 Attrs.addAttribute(llvm::Attribute::InReg);
Rafael Espindola0b4cc952012-10-19 05:04:37 +00001158
Anders Carlsson0a8f8472009-09-16 15:53:40 +00001159 if (AI.getIndirectByVal())
Bill Wendling72390b32012-12-20 19:27:06 +00001160 Attrs.addAttribute(llvm::Attribute::ByVal);
Anders Carlsson0a8f8472009-09-16 15:53:40 +00001161
Bill Wendling603571a2012-10-10 07:36:56 +00001162 Attrs.addAlignmentAttr(AI.getIndirectAlign());
1163
Daniel Dunbar0ac86f02009-03-18 19:51:01 +00001164 // byval disables readnone and readonly.
Bill Wendling72390b32012-12-20 19:27:06 +00001165 FuncAttrs.removeAttribute(llvm::Attribute::ReadOnly)
1166 .removeAttribute(llvm::Attribute::ReadNone);
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001167 break;
Anton Korobeynikovcc6fa882009-06-06 09:36:29 +00001168
Daniel Dunbar11434922009-01-26 21:26:08 +00001169 case ABIArgInfo::Ignore:
1170 // Skip increment, no matching LLVM parameter.
Mike Stump1eb44332009-09-09 15:08:12 +00001171 continue;
Daniel Dunbar11434922009-01-26 21:26:08 +00001172
Daniel Dunbar56273772008-09-17 00:51:38 +00001173 case ABIArgInfo::Expand: {
Chris Lattner5f9e2722011-07-23 10:55:15 +00001174 SmallVector<llvm::Type*, 8> types;
Mike Stumpf5408fe2009-05-16 07:57:57 +00001175 // FIXME: This is rather inefficient. Do we ever actually need to do
1176 // anything here? The result should be just reconstructed on the other
1177 // side, so extension should be a non-issue.
Chris Lattner9cbe4f02011-07-09 17:41:47 +00001178 getTypes().GetExpandedTypes(ParamType, types);
John McCall42e06112011-05-15 02:19:42 +00001179 Index += types.size();
Daniel Dunbar56273772008-09-17 00:51:38 +00001180 continue;
1181 }
Daniel Dunbar5323a4b2008-09-10 00:32:18 +00001182 }
Mike Stump1eb44332009-09-09 15:08:12 +00001183
Bill Wendling603571a2012-10-10 07:36:56 +00001184 if (Attrs.hasAttributes())
Bill Wendlingb263bdf2013-01-27 02:46:53 +00001185 PAL.push_back(llvm::AttributeSet::get(getLLVMContext(), Index, Attrs));
Daniel Dunbar56273772008-09-17 00:51:38 +00001186 ++Index;
Daniel Dunbar5323a4b2008-09-10 00:32:18 +00001187 }
Bill Wendling603571a2012-10-10 07:36:56 +00001188 if (FuncAttrs.hasAttributes())
Bill Wendling75d37b42012-10-15 07:31:59 +00001189 PAL.push_back(llvm::
Bill Wendlingb263bdf2013-01-27 02:46:53 +00001190 AttributeSet::get(getLLVMContext(),
1191 llvm::AttributeSet::FunctionIndex,
1192 FuncAttrs));
Daniel Dunbar5323a4b2008-09-10 00:32:18 +00001193}
1194
John McCalld26bc762011-03-09 04:27:21 +00001195/// An argument came in as a promoted argument; demote it back to its
1196/// declared type.
1197static llvm::Value *emitArgumentDemotion(CodeGenFunction &CGF,
1198 const VarDecl *var,
1199 llvm::Value *value) {
Chris Lattner2acc6e32011-07-18 04:24:23 +00001200 llvm::Type *varType = CGF.ConvertType(var->getType());
John McCalld26bc762011-03-09 04:27:21 +00001201
1202 // This can happen with promotions that actually don't change the
1203 // underlying type, like the enum promotions.
1204 if (value->getType() == varType) return value;
1205
1206 assert((varType->isIntegerTy() || varType->isFloatingPointTy())
1207 && "unexpected promotion type");
1208
1209 if (isa<llvm::IntegerType>(varType))
1210 return CGF.Builder.CreateTrunc(value, varType, "arg.unpromote");
1211
1212 return CGF.Builder.CreateFPCast(value, varType, "arg.unpromote");
1213}
1214
Daniel Dunbar88b53962009-02-02 22:03:45 +00001215void CodeGenFunction::EmitFunctionProlog(const CGFunctionInfo &FI,
1216 llvm::Function *Fn,
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001217 const FunctionArgList &Args) {
John McCall0cfeb632009-07-28 01:00:58 +00001218 // If this is an implicit-return-zero function, go ahead and
1219 // initialize the return value. TODO: it might be nice to have
1220 // a more general mechanism for this that didn't require synthesized
1221 // return statements.
John McCallf5ebf9b2013-05-03 07:33:41 +00001222 if (const FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(CurCodeDecl)) {
John McCall0cfeb632009-07-28 01:00:58 +00001223 if (FD->hasImplicitReturnZero()) {
1224 QualType RetTy = FD->getResultType().getUnqualifiedType();
Chris Lattner2acc6e32011-07-18 04:24:23 +00001225 llvm::Type* LLVMTy = CGM.getTypes().ConvertType(RetTy);
Owen Andersonc9c88b42009-07-31 20:28:54 +00001226 llvm::Constant* Zero = llvm::Constant::getNullValue(LLVMTy);
John McCall0cfeb632009-07-28 01:00:58 +00001227 Builder.CreateStore(Zero, ReturnValue);
1228 }
1229 }
1230
Mike Stumpf5408fe2009-05-16 07:57:57 +00001231 // FIXME: We no longer need the types from FunctionArgList; lift up and
1232 // simplify.
Daniel Dunbar5251afa2009-02-03 06:02:10 +00001233
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001234 // Emit allocs for param decls. Give the LLVM Argument nodes names.
1235 llvm::Function::arg_iterator AI = Fn->arg_begin();
Mike Stump1eb44332009-09-09 15:08:12 +00001236
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001237 // Name the struct return argument.
Daniel Dunbardacf9dd2010-07-14 23:39:36 +00001238 if (CGM.ReturnTypeUsesSRet(FI)) {
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001239 AI->setName("agg.result");
Bill Wendling89530e42013-01-23 06:15:10 +00001240 AI->addAttr(llvm::AttributeSet::get(getLLVMContext(),
1241 AI->getArgNo() + 1,
1242 llvm::Attribute::NoAlias));
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001243 ++AI;
1244 }
Mike Stump1eb44332009-09-09 15:08:12 +00001245
Daniel Dunbar4b5f0a42009-02-04 21:17:21 +00001246 assert(FI.arg_size() == Args.size() &&
1247 "Mismatch between function signature & arguments.");
Devang Patel093ac462011-03-03 20:13:15 +00001248 unsigned ArgNo = 1;
Daniel Dunbarb225be42009-02-03 05:59:18 +00001249 CGFunctionInfo::const_arg_iterator info_it = FI.arg_begin();
Devang Patel093ac462011-03-03 20:13:15 +00001250 for (FunctionArgList::const_iterator i = Args.begin(), e = Args.end();
1251 i != e; ++i, ++info_it, ++ArgNo) {
John McCalld26bc762011-03-09 04:27:21 +00001252 const VarDecl *Arg = *i;
Daniel Dunbarb225be42009-02-03 05:59:18 +00001253 QualType Ty = info_it->type;
1254 const ABIArgInfo &ArgI = info_it->info;
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001255
John McCalld26bc762011-03-09 04:27:21 +00001256 bool isPromoted =
1257 isa<ParmVarDecl>(Arg) && cast<ParmVarDecl>(Arg)->isKNRPromoted();
1258
Rafael Espindolae4aeeaa2012-10-24 01:59:00 +00001259 // Skip the dummy padding argument.
1260 if (ArgI.getPaddingType())
1261 ++AI;
1262
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001263 switch (ArgI.getKind()) {
Daniel Dunbar1f745982009-02-05 09:16:39 +00001264 case ABIArgInfo::Indirect: {
Chris Lattnerce700162010-06-28 23:44:11 +00001265 llvm::Value *V = AI;
Daniel Dunbarcf3b6f22010-09-16 20:42:02 +00001266
John McCall9d232c82013-03-07 21:37:08 +00001267 if (!hasScalarEvaluationKind(Ty)) {
Daniel Dunbarcf3b6f22010-09-16 20:42:02 +00001268 // Aggregates and complex variables are accessed by reference. All we
1269 // need to do is realign the value, if requested
1270 if (ArgI.getIndirectRealign()) {
1271 llvm::Value *AlignedTemp = CreateMemTemp(Ty, "coerce");
1272
1273 // Copy from the incoming argument pointer to the temporary with the
1274 // appropriate alignment.
1275 //
1276 // FIXME: We should have a common utility for generating an aggregate
1277 // copy.
Chris Lattner2acc6e32011-07-18 04:24:23 +00001278 llvm::Type *I8PtrTy = Builder.getInt8PtrTy();
Ken Dyckfe710082011-01-19 01:58:38 +00001279 CharUnits Size = getContext().getTypeSizeInChars(Ty);
NAKAMURA Takumic95a8fc2011-03-10 14:02:21 +00001280 llvm::Value *Dst = Builder.CreateBitCast(AlignedTemp, I8PtrTy);
1281 llvm::Value *Src = Builder.CreateBitCast(V, I8PtrTy);
1282 Builder.CreateMemCpy(Dst,
1283 Src,
Ken Dyckfe710082011-01-19 01:58:38 +00001284 llvm::ConstantInt::get(IntPtrTy,
1285 Size.getQuantity()),
Benjamin Kramer9f0c7cc2010-12-30 00:13:21 +00001286 ArgI.getIndirectAlign(),
1287 false);
Daniel Dunbarcf3b6f22010-09-16 20:42:02 +00001288 V = AlignedTemp;
1289 }
Daniel Dunbar1f745982009-02-05 09:16:39 +00001290 } else {
1291 // Load scalar value from indirect argument.
Ken Dyckfe710082011-01-19 01:58:38 +00001292 CharUnits Alignment = getContext().getTypeAlignInChars(Ty);
Nick Lewycky4ee7dc22013-10-02 02:29:49 +00001293 V = EmitLoadOfScalar(V, false, Alignment.getQuantity(), Ty,
1294 Arg->getLocStart());
John McCalld26bc762011-03-09 04:27:21 +00001295
1296 if (isPromoted)
1297 V = emitArgumentDemotion(*this, Arg, V);
Daniel Dunbar1f745982009-02-05 09:16:39 +00001298 }
Devang Patel093ac462011-03-03 20:13:15 +00001299 EmitParmDecl(*Arg, V, ArgNo);
Daniel Dunbar1f745982009-02-05 09:16:39 +00001300 break;
1301 }
Anton Korobeynikovcc6fa882009-06-06 09:36:29 +00001302
1303 case ABIArgInfo::Extend:
Daniel Dunbar46327aa2009-02-03 06:17:37 +00001304 case ABIArgInfo::Direct: {
Akira Hatanaka4ba3fd42012-01-09 19:08:06 +00001305
Chris Lattner800588f2010-07-29 06:26:06 +00001306 // If we have the trivial case, handle it with no muss and fuss.
1307 if (!isa<llvm::StructType>(ArgI.getCoerceToType()) &&
Chris Lattner117e3f42010-07-30 04:02:24 +00001308 ArgI.getCoerceToType() == ConvertType(Ty) &&
1309 ArgI.getDirectOffset() == 0) {
Chris Lattner800588f2010-07-29 06:26:06 +00001310 assert(AI != Fn->arg_end() && "Argument mismatch!");
1311 llvm::Value *V = AI;
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001312
Bill Wendlinga6375562012-10-16 05:23:44 +00001313 if (Arg->getType().isRestrictQualified())
Bill Wendling89530e42013-01-23 06:15:10 +00001314 AI->addAttr(llvm::AttributeSet::get(getLLVMContext(),
1315 AI->getArgNo() + 1,
1316 llvm::Attribute::NoAlias));
John McCalld8e10d22010-03-27 00:47:27 +00001317
Chris Lattnerb13eab92011-07-20 06:29:00 +00001318 // Ensure the argument is the correct type.
1319 if (V->getType() != ArgI.getCoerceToType())
1320 V = Builder.CreateBitCast(V, ArgI.getCoerceToType());
1321
John McCalld26bc762011-03-09 04:27:21 +00001322 if (isPromoted)
1323 V = emitArgumentDemotion(*this, Arg, V);
Rafael Espindola8b8a09e2012-11-29 16:09:03 +00001324
Nick Lewycky5d4a7552013-10-01 21:51:38 +00001325 if (const CXXMethodDecl *MD =
1326 dyn_cast_or_null<CXXMethodDecl>(CurCodeDecl)) {
Timur Iskhodzhanov8f189a92013-08-21 06:25:03 +00001327 if (MD->isVirtual() && Arg == CXXABIThisDecl)
Nick Lewycky5d4a7552013-10-01 21:51:38 +00001328 V = CGM.getCXXABI().
1329 adjustThisParameterInVirtualFunctionPrologue(*this, CurGD, V);
Timur Iskhodzhanov8f189a92013-08-21 06:25:03 +00001330 }
1331
Rafael Espindola8b8a09e2012-11-29 16:09:03 +00001332 // Because of merging of function types from multiple decls it is
1333 // possible for the type of an argument to not match the corresponding
1334 // type in the function type. Since we are codegening the callee
1335 // in here, add a cast to the argument type.
1336 llvm::Type *LTy = ConvertType(Arg->getType());
1337 if (V->getType() != LTy)
1338 V = Builder.CreateBitCast(V, LTy);
1339
Devang Patel093ac462011-03-03 20:13:15 +00001340 EmitParmDecl(*Arg, V, ArgNo);
Chris Lattner800588f2010-07-29 06:26:06 +00001341 break;
Daniel Dunbar8b979d92009-02-10 00:06:49 +00001342 }
Mike Stump1eb44332009-09-09 15:08:12 +00001343
Evgeniy Stepanova6ce20e2012-02-10 09:30:15 +00001344 llvm::AllocaInst *Alloca = CreateMemTemp(Ty, Arg->getName());
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001345
Chris Lattnerdeabde22010-07-28 18:24:28 +00001346 // The alignment we need to use is the max of the requested alignment for
1347 // the argument plus the alignment required by our access code below.
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001348 unsigned AlignmentToUse =
Micah Villmow25a6a842012-10-08 16:25:52 +00001349 CGM.getDataLayout().getABITypeAlignment(ArgI.getCoerceToType());
Chris Lattnerdeabde22010-07-28 18:24:28 +00001350 AlignmentToUse = std::max(AlignmentToUse,
1351 (unsigned)getContext().getDeclAlign(Arg).getQuantity());
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001352
Chris Lattnerdeabde22010-07-28 18:24:28 +00001353 Alloca->setAlignment(AlignmentToUse);
Chris Lattner121b3fa2010-07-05 20:21:00 +00001354 llvm::Value *V = Alloca;
Chris Lattner117e3f42010-07-30 04:02:24 +00001355 llvm::Value *Ptr = V; // Pointer to store into.
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001356
Chris Lattner117e3f42010-07-30 04:02:24 +00001357 // If the value is offset in memory, apply the offset now.
1358 if (unsigned Offs = ArgI.getDirectOffset()) {
1359 Ptr = Builder.CreateBitCast(Ptr, Builder.getInt8PtrTy());
1360 Ptr = Builder.CreateConstGEP1_32(Ptr, Offs);
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001361 Ptr = Builder.CreateBitCast(Ptr,
Chris Lattner117e3f42010-07-30 04:02:24 +00001362 llvm::PointerType::getUnqual(ArgI.getCoerceToType()));
1363 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001364
Chris Lattner309c59f2010-06-29 00:06:42 +00001365 // If the coerce-to type is a first class aggregate, we flatten it and
1366 // pass the elements. Either way is semantically identical, but fast-isel
1367 // and the optimizer generally likes scalar values better than FCAs.
Evgeniy Stepanova6ce20e2012-02-10 09:30:15 +00001368 llvm::StructType *STy = dyn_cast<llvm::StructType>(ArgI.getCoerceToType());
1369 if (STy && STy->getNumElements() > 1) {
Micah Villmow25a6a842012-10-08 16:25:52 +00001370 uint64_t SrcSize = CGM.getDataLayout().getTypeAllocSize(STy);
Evgeniy Stepanova6ce20e2012-02-10 09:30:15 +00001371 llvm::Type *DstTy =
1372 cast<llvm::PointerType>(Ptr->getType())->getElementType();
Micah Villmow25a6a842012-10-08 16:25:52 +00001373 uint64_t DstSize = CGM.getDataLayout().getTypeAllocSize(DstTy);
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001374
Evgeniy Stepanova6ce20e2012-02-10 09:30:15 +00001375 if (SrcSize <= DstSize) {
1376 Ptr = Builder.CreateBitCast(Ptr, llvm::PointerType::getUnqual(STy));
1377
1378 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1379 assert(AI != Fn->arg_end() && "Argument mismatch!");
1380 AI->setName(Arg->getName() + ".coerce" + Twine(i));
1381 llvm::Value *EltPtr = Builder.CreateConstGEP2_32(Ptr, 0, i);
1382 Builder.CreateStore(AI++, EltPtr);
1383 }
1384 } else {
1385 llvm::AllocaInst *TempAlloca =
1386 CreateTempAlloca(ArgI.getCoerceToType(), "coerce");
1387 TempAlloca->setAlignment(AlignmentToUse);
1388 llvm::Value *TempV = TempAlloca;
1389
1390 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1391 assert(AI != Fn->arg_end() && "Argument mismatch!");
1392 AI->setName(Arg->getName() + ".coerce" + Twine(i));
1393 llvm::Value *EltPtr = Builder.CreateConstGEP2_32(TempV, 0, i);
1394 Builder.CreateStore(AI++, EltPtr);
1395 }
1396
1397 Builder.CreateMemCpy(Ptr, TempV, DstSize, AlignmentToUse);
Chris Lattner309c59f2010-06-29 00:06:42 +00001398 }
1399 } else {
1400 // Simple case, just do a coerced store of the argument into the alloca.
1401 assert(AI != Fn->arg_end() && "Argument mismatch!");
Chris Lattner225e2862010-06-29 00:14:52 +00001402 AI->setName(Arg->getName() + ".coerce");
Chris Lattner117e3f42010-07-30 04:02:24 +00001403 CreateCoercedStore(AI++, Ptr, /*DestIsVolatile=*/false, *this);
Chris Lattner309c59f2010-06-29 00:06:42 +00001404 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001405
1406
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +00001407 // Match to what EmitParmDecl is expecting for this type.
John McCall9d232c82013-03-07 21:37:08 +00001408 if (CodeGenFunction::hasScalarEvaluationKind(Ty)) {
Nick Lewycky4ee7dc22013-10-02 02:29:49 +00001409 V = EmitLoadOfScalar(V, false, AlignmentToUse, Ty, Arg->getLocStart());
John McCalld26bc762011-03-09 04:27:21 +00001410 if (isPromoted)
1411 V = emitArgumentDemotion(*this, Arg, V);
Daniel Dunbar8b29a382009-02-04 07:22:24 +00001412 }
Devang Patel093ac462011-03-03 20:13:15 +00001413 EmitParmDecl(*Arg, V, ArgNo);
Chris Lattnerce700162010-06-28 23:44:11 +00001414 continue; // Skip ++AI increment, already done.
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +00001415 }
Chris Lattner800588f2010-07-29 06:26:06 +00001416
1417 case ABIArgInfo::Expand: {
1418 // If this structure was expanded into multiple arguments then
1419 // we need to create a temporary and reconstruct it from the
1420 // arguments.
Eli Friedman1bb94a42011-11-03 21:39:02 +00001421 llvm::AllocaInst *Alloca = CreateMemTemp(Ty);
Eli Friedman6da2c712011-12-03 04:14:32 +00001422 CharUnits Align = getContext().getDeclAlign(Arg);
1423 Alloca->setAlignment(Align.getQuantity());
1424 LValue LV = MakeAddrLValue(Alloca, Ty, Align);
Eli Friedman1bb94a42011-11-03 21:39:02 +00001425 llvm::Function::arg_iterator End = ExpandTypeFromArgs(Ty, LV, AI);
1426 EmitParmDecl(*Arg, Alloca, ArgNo);
Chris Lattner800588f2010-07-29 06:26:06 +00001427
1428 // Name the arguments used in expansion and increment AI.
1429 unsigned Index = 0;
1430 for (; AI != End; ++AI, ++Index)
Chris Lattner5f9e2722011-07-23 10:55:15 +00001431 AI->setName(Arg->getName() + "." + Twine(Index));
Chris Lattner800588f2010-07-29 06:26:06 +00001432 continue;
1433 }
1434
1435 case ABIArgInfo::Ignore:
1436 // Initialize the local variable appropriately.
John McCall9d232c82013-03-07 21:37:08 +00001437 if (!hasScalarEvaluationKind(Ty))
Devang Patel093ac462011-03-03 20:13:15 +00001438 EmitParmDecl(*Arg, CreateMemTemp(Ty), ArgNo);
Chris Lattner800588f2010-07-29 06:26:06 +00001439 else
Devang Patel093ac462011-03-03 20:13:15 +00001440 EmitParmDecl(*Arg, llvm::UndefValue::get(ConvertType(Arg->getType())),
1441 ArgNo);
Chris Lattner800588f2010-07-29 06:26:06 +00001442
1443 // Skip increment, no matching LLVM parameter.
1444 continue;
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001445 }
Daniel Dunbar56273772008-09-17 00:51:38 +00001446
1447 ++AI;
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001448 }
1449 assert(AI == Fn->arg_end() && "Argument mismatch!");
1450}
1451
John McCall77fe6cd2012-01-29 07:46:59 +00001452static void eraseUnusedBitCasts(llvm::Instruction *insn) {
1453 while (insn->use_empty()) {
1454 llvm::BitCastInst *bitcast = dyn_cast<llvm::BitCastInst>(insn);
1455 if (!bitcast) return;
1456
1457 // This is "safe" because we would have used a ConstantExpr otherwise.
1458 insn = cast<llvm::Instruction>(bitcast->getOperand(0));
1459 bitcast->eraseFromParent();
1460 }
1461}
1462
John McCallf85e1932011-06-15 23:02:42 +00001463/// Try to emit a fused autorelease of a return result.
1464static llvm::Value *tryEmitFusedAutoreleaseOfResult(CodeGenFunction &CGF,
1465 llvm::Value *result) {
1466 // We must be immediately followed the cast.
1467 llvm::BasicBlock *BB = CGF.Builder.GetInsertBlock();
1468 if (BB->empty()) return 0;
1469 if (&BB->back() != result) return 0;
1470
Chris Lattner2acc6e32011-07-18 04:24:23 +00001471 llvm::Type *resultType = result->getType();
John McCallf85e1932011-06-15 23:02:42 +00001472
1473 // result is in a BasicBlock and is therefore an Instruction.
1474 llvm::Instruction *generator = cast<llvm::Instruction>(result);
1475
Chris Lattner5f9e2722011-07-23 10:55:15 +00001476 SmallVector<llvm::Instruction*,4> insnsToKill;
John McCallf85e1932011-06-15 23:02:42 +00001477
1478 // Look for:
1479 // %generator = bitcast %type1* %generator2 to %type2*
1480 while (llvm::BitCastInst *bitcast = dyn_cast<llvm::BitCastInst>(generator)) {
1481 // We would have emitted this as a constant if the operand weren't
1482 // an Instruction.
1483 generator = cast<llvm::Instruction>(bitcast->getOperand(0));
1484
1485 // Require the generator to be immediately followed by the cast.
1486 if (generator->getNextNode() != bitcast)
1487 return 0;
1488
1489 insnsToKill.push_back(bitcast);
1490 }
1491
1492 // Look for:
1493 // %generator = call i8* @objc_retain(i8* %originalResult)
1494 // or
1495 // %generator = call i8* @objc_retainAutoreleasedReturnValue(i8* %originalResult)
1496 llvm::CallInst *call = dyn_cast<llvm::CallInst>(generator);
1497 if (!call) return 0;
1498
1499 bool doRetainAutorelease;
1500
1501 if (call->getCalledValue() == CGF.CGM.getARCEntrypoints().objc_retain) {
1502 doRetainAutorelease = true;
1503 } else if (call->getCalledValue() == CGF.CGM.getARCEntrypoints()
1504 .objc_retainAutoreleasedReturnValue) {
1505 doRetainAutorelease = false;
1506
John McCallf9fdcc02012-09-07 23:30:50 +00001507 // If we emitted an assembly marker for this call (and the
1508 // ARCEntrypoints field should have been set if so), go looking
1509 // for that call. If we can't find it, we can't do this
1510 // optimization. But it should always be the immediately previous
1511 // instruction, unless we needed bitcasts around the call.
1512 if (CGF.CGM.getARCEntrypoints().retainAutoreleasedReturnValueMarker) {
1513 llvm::Instruction *prev = call->getPrevNode();
1514 assert(prev);
1515 if (isa<llvm::BitCastInst>(prev)) {
1516 prev = prev->getPrevNode();
1517 assert(prev);
1518 }
1519 assert(isa<llvm::CallInst>(prev));
1520 assert(cast<llvm::CallInst>(prev)->getCalledValue() ==
1521 CGF.CGM.getARCEntrypoints().retainAutoreleasedReturnValueMarker);
1522 insnsToKill.push_back(prev);
1523 }
John McCallf85e1932011-06-15 23:02:42 +00001524 } else {
1525 return 0;
1526 }
1527
1528 result = call->getArgOperand(0);
1529 insnsToKill.push_back(call);
1530
1531 // Keep killing bitcasts, for sanity. Note that we no longer care
1532 // about precise ordering as long as there's exactly one use.
1533 while (llvm::BitCastInst *bitcast = dyn_cast<llvm::BitCastInst>(result)) {
1534 if (!bitcast->hasOneUse()) break;
1535 insnsToKill.push_back(bitcast);
1536 result = bitcast->getOperand(0);
1537 }
1538
1539 // Delete all the unnecessary instructions, from latest to earliest.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001540 for (SmallVectorImpl<llvm::Instruction*>::iterator
John McCallf85e1932011-06-15 23:02:42 +00001541 i = insnsToKill.begin(), e = insnsToKill.end(); i != e; ++i)
1542 (*i)->eraseFromParent();
1543
1544 // Do the fused retain/autorelease if we were asked to.
1545 if (doRetainAutorelease)
1546 result = CGF.EmitARCRetainAutoreleaseReturnValue(result);
1547
1548 // Cast back to the result type.
1549 return CGF.Builder.CreateBitCast(result, resultType);
1550}
1551
John McCall77fe6cd2012-01-29 07:46:59 +00001552/// If this is a +1 of the value of an immutable 'self', remove it.
1553static llvm::Value *tryRemoveRetainOfSelf(CodeGenFunction &CGF,
1554 llvm::Value *result) {
1555 // This is only applicable to a method with an immutable 'self'.
John McCallbd9b65a2012-07-31 00:33:55 +00001556 const ObjCMethodDecl *method =
1557 dyn_cast_or_null<ObjCMethodDecl>(CGF.CurCodeDecl);
John McCall77fe6cd2012-01-29 07:46:59 +00001558 if (!method) return 0;
1559 const VarDecl *self = method->getSelfDecl();
1560 if (!self->getType().isConstQualified()) return 0;
1561
1562 // Look for a retain call.
1563 llvm::CallInst *retainCall =
1564 dyn_cast<llvm::CallInst>(result->stripPointerCasts());
1565 if (!retainCall ||
1566 retainCall->getCalledValue() != CGF.CGM.getARCEntrypoints().objc_retain)
1567 return 0;
1568
1569 // Look for an ordinary load of 'self'.
1570 llvm::Value *retainedValue = retainCall->getArgOperand(0);
1571 llvm::LoadInst *load =
1572 dyn_cast<llvm::LoadInst>(retainedValue->stripPointerCasts());
1573 if (!load || load->isAtomic() || load->isVolatile() ||
1574 load->getPointerOperand() != CGF.GetAddrOfLocalVar(self))
1575 return 0;
1576
1577 // Okay! Burn it all down. This relies for correctness on the
1578 // assumption that the retain is emitted as part of the return and
1579 // that thereafter everything is used "linearly".
1580 llvm::Type *resultType = result->getType();
1581 eraseUnusedBitCasts(cast<llvm::Instruction>(result));
1582 assert(retainCall->use_empty());
1583 retainCall->eraseFromParent();
1584 eraseUnusedBitCasts(cast<llvm::Instruction>(retainedValue));
1585
1586 return CGF.Builder.CreateBitCast(load, resultType);
1587}
1588
John McCallf85e1932011-06-15 23:02:42 +00001589/// Emit an ARC autorelease of the result of a function.
John McCall77fe6cd2012-01-29 07:46:59 +00001590///
1591/// \return the value to actually return from the function
John McCallf85e1932011-06-15 23:02:42 +00001592static llvm::Value *emitAutoreleaseOfResult(CodeGenFunction &CGF,
1593 llvm::Value *result) {
John McCall77fe6cd2012-01-29 07:46:59 +00001594 // If we're returning 'self', kill the initial retain. This is a
1595 // heuristic attempt to "encourage correctness" in the really unfortunate
1596 // case where we have a return of self during a dealloc and we desperately
1597 // need to avoid the possible autorelease.
1598 if (llvm::Value *self = tryRemoveRetainOfSelf(CGF, result))
1599 return self;
1600
John McCallf85e1932011-06-15 23:02:42 +00001601 // At -O0, try to emit a fused retain/autorelease.
1602 if (CGF.shouldUseFusedARCCalls())
1603 if (llvm::Value *fused = tryEmitFusedAutoreleaseOfResult(CGF, result))
1604 return fused;
1605
1606 return CGF.EmitARCAutoreleaseReturnValue(result);
1607}
1608
John McCallf48f7962012-01-29 02:35:02 +00001609/// Heuristically search for a dominating store to the return-value slot.
1610static llvm::StoreInst *findDominatingStoreToReturnValue(CodeGenFunction &CGF) {
1611 // If there are multiple uses of the return-value slot, just check
1612 // for something immediately preceding the IP. Sometimes this can
1613 // happen with how we generate implicit-returns; it can also happen
1614 // with noreturn cleanups.
1615 if (!CGF.ReturnValue->hasOneUse()) {
1616 llvm::BasicBlock *IP = CGF.Builder.GetInsertBlock();
1617 if (IP->empty()) return 0;
1618 llvm::StoreInst *store = dyn_cast<llvm::StoreInst>(&IP->back());
1619 if (!store) return 0;
1620 if (store->getPointerOperand() != CGF.ReturnValue) return 0;
1621 assert(!store->isAtomic() && !store->isVolatile()); // see below
1622 return store;
1623 }
1624
1625 llvm::StoreInst *store =
1626 dyn_cast<llvm::StoreInst>(CGF.ReturnValue->use_back());
1627 if (!store) return 0;
1628
1629 // These aren't actually possible for non-coerced returns, and we
1630 // only care about non-coerced returns on this code path.
1631 assert(!store->isAtomic() && !store->isVolatile());
1632
1633 // Now do a first-and-dirty dominance check: just walk up the
1634 // single-predecessors chain from the current insertion point.
1635 llvm::BasicBlock *StoreBB = store->getParent();
1636 llvm::BasicBlock *IP = CGF.Builder.GetInsertBlock();
1637 while (IP != StoreBB) {
1638 if (!(IP = IP->getSinglePredecessor()))
1639 return 0;
1640 }
1641
1642 // Okay, the store's basic block dominates the insertion point; we
1643 // can do our thing.
1644 return store;
1645}
1646
Adrian Prantlfa6b0792013-05-02 17:30:20 +00001647void CodeGenFunction::EmitFunctionEpilog(const CGFunctionInfo &FI,
Nick Lewycky4ee7dc22013-10-02 02:29:49 +00001648 bool EmitRetDbgLoc,
1649 SourceLocation EndLoc) {
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001650 // Functions with no result always return void.
Chris Lattnerc6e6dd22010-06-26 23:13:19 +00001651 if (ReturnValue == 0) {
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001652 Builder.CreateRetVoid();
Chris Lattnerc6e6dd22010-06-26 23:13:19 +00001653 return;
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001654 }
Daniel Dunbar21fcc8f2010-06-30 21:27:58 +00001655
Dan Gohman4751a532010-07-20 20:13:52 +00001656 llvm::DebugLoc RetDbgLoc;
Chris Lattnerc6e6dd22010-06-26 23:13:19 +00001657 llvm::Value *RV = 0;
1658 QualType RetTy = FI.getReturnType();
1659 const ABIArgInfo &RetAI = FI.getReturnInfo();
1660
1661 switch (RetAI.getKind()) {
Daniel Dunbar91a16fa2010-08-21 02:24:36 +00001662 case ABIArgInfo::Indirect: {
John McCall9d232c82013-03-07 21:37:08 +00001663 switch (getEvaluationKind(RetTy)) {
1664 case TEK_Complex: {
1665 ComplexPairTy RT =
Nick Lewycky4ee7dc22013-10-02 02:29:49 +00001666 EmitLoadOfComplex(MakeNaturalAlignAddrLValue(ReturnValue, RetTy),
1667 EndLoc);
John McCall9d232c82013-03-07 21:37:08 +00001668 EmitStoreOfComplex(RT,
1669 MakeNaturalAlignAddrLValue(CurFn->arg_begin(), RetTy),
1670 /*isInit*/ true);
1671 break;
1672 }
1673 case TEK_Aggregate:
Chris Lattnerc6e6dd22010-06-26 23:13:19 +00001674 // Do nothing; aggregrates get evaluated directly into the destination.
John McCall9d232c82013-03-07 21:37:08 +00001675 break;
1676 case TEK_Scalar:
1677 EmitStoreOfScalar(Builder.CreateLoad(ReturnValue),
1678 MakeNaturalAlignAddrLValue(CurFn->arg_begin(), RetTy),
1679 /*isInit*/ true);
1680 break;
Chris Lattnerc6e6dd22010-06-26 23:13:19 +00001681 }
1682 break;
Daniel Dunbar91a16fa2010-08-21 02:24:36 +00001683 }
Chris Lattnerc6e6dd22010-06-26 23:13:19 +00001684
1685 case ABIArgInfo::Extend:
Chris Lattner800588f2010-07-29 06:26:06 +00001686 case ABIArgInfo::Direct:
Chris Lattner117e3f42010-07-30 04:02:24 +00001687 if (RetAI.getCoerceToType() == ConvertType(RetTy) &&
1688 RetAI.getDirectOffset() == 0) {
Chris Lattner800588f2010-07-29 06:26:06 +00001689 // The internal return value temp always will have pointer-to-return-type
1690 // type, just do a load.
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001691
John McCallf48f7962012-01-29 02:35:02 +00001692 // If there is a dominating store to ReturnValue, we can elide
1693 // the load, zap the store, and usually zap the alloca.
1694 if (llvm::StoreInst *SI = findDominatingStoreToReturnValue(*this)) {
Adrian Prantl7c731f52013-05-30 18:12:23 +00001695 // Reuse the debug location from the store unless there is
1696 // cleanup code to be emitted between the store and return
1697 // instruction.
1698 if (EmitRetDbgLoc && !AutoreleaseResult)
Adrian Prantlfa6b0792013-05-02 17:30:20 +00001699 RetDbgLoc = SI->getDebugLoc();
Chris Lattner800588f2010-07-29 06:26:06 +00001700 // Get the stored value and nuke the now-dead store.
Chris Lattner800588f2010-07-29 06:26:06 +00001701 RV = SI->getValueOperand();
1702 SI->eraseFromParent();
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001703
Chris Lattner800588f2010-07-29 06:26:06 +00001704 // If that was the only use of the return value, nuke it as well now.
1705 if (ReturnValue->use_empty() && isa<llvm::AllocaInst>(ReturnValue)) {
1706 cast<llvm::AllocaInst>(ReturnValue)->eraseFromParent();
1707 ReturnValue = 0;
1708 }
John McCallf48f7962012-01-29 02:35:02 +00001709
1710 // Otherwise, we have to do a simple load.
1711 } else {
1712 RV = Builder.CreateLoad(ReturnValue);
Chris Lattner35b21b82010-06-27 01:06:27 +00001713 }
Chris Lattner800588f2010-07-29 06:26:06 +00001714 } else {
Chris Lattner117e3f42010-07-30 04:02:24 +00001715 llvm::Value *V = ReturnValue;
1716 // If the value is offset in memory, apply the offset now.
1717 if (unsigned Offs = RetAI.getDirectOffset()) {
1718 V = Builder.CreateBitCast(V, Builder.getInt8PtrTy());
1719 V = Builder.CreateConstGEP1_32(V, Offs);
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001720 V = Builder.CreateBitCast(V,
Chris Lattner117e3f42010-07-30 04:02:24 +00001721 llvm::PointerType::getUnqual(RetAI.getCoerceToType()));
1722 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001723
Chris Lattner117e3f42010-07-30 04:02:24 +00001724 RV = CreateCoercedLoad(V, RetAI.getCoerceToType(), *this);
Chris Lattner35b21b82010-06-27 01:06:27 +00001725 }
John McCallf85e1932011-06-15 23:02:42 +00001726
1727 // In ARC, end functions that return a retainable type with a call
1728 // to objc_autoreleaseReturnValue.
1729 if (AutoreleaseResult) {
David Blaikie4e4d0842012-03-11 07:00:24 +00001730 assert(getLangOpts().ObjCAutoRefCount &&
John McCallf85e1932011-06-15 23:02:42 +00001731 !FI.isReturnsRetained() &&
1732 RetTy->isObjCRetainableType());
1733 RV = emitAutoreleaseOfResult(*this, RV);
1734 }
1735
Chris Lattnerc6e6dd22010-06-26 23:13:19 +00001736 break;
Chris Lattnerc6e6dd22010-06-26 23:13:19 +00001737
Chris Lattner800588f2010-07-29 06:26:06 +00001738 case ABIArgInfo::Ignore:
Chris Lattnerc6e6dd22010-06-26 23:13:19 +00001739 break;
1740
1741 case ABIArgInfo::Expand:
David Blaikieb219cfc2011-09-23 05:06:16 +00001742 llvm_unreachable("Invalid ABI kind for return argument");
Chris Lattnerc6e6dd22010-06-26 23:13:19 +00001743 }
1744
Daniel Dunbar21fcc8f2010-06-30 21:27:58 +00001745 llvm::Instruction *Ret = RV ? Builder.CreateRet(RV) : Builder.CreateRetVoid();
Devang Pateld3f265d2010-07-21 18:08:50 +00001746 if (!RetDbgLoc.isUnknown())
1747 Ret->setDebugLoc(RetDbgLoc);
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001748}
1749
John McCall413ebdb2011-03-11 20:59:21 +00001750void CodeGenFunction::EmitDelegateCallArg(CallArgList &args,
Nick Lewycky4ee7dc22013-10-02 02:29:49 +00001751 const VarDecl *param,
1752 SourceLocation loc) {
John McCall27360712010-05-26 22:34:26 +00001753 // StartFunction converted the ABI-lowered parameter(s) into a
1754 // local alloca. We need to turn that into an r-value suitable
1755 // for EmitCall.
John McCall413ebdb2011-03-11 20:59:21 +00001756 llvm::Value *local = GetAddrOfLocalVar(param);
John McCall27360712010-05-26 22:34:26 +00001757
John McCall413ebdb2011-03-11 20:59:21 +00001758 QualType type = param->getType();
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001759
John McCall27360712010-05-26 22:34:26 +00001760 // For the most part, we just need to load the alloca, except:
1761 // 1) aggregate r-values are actually pointers to temporaries, and
John McCall9d232c82013-03-07 21:37:08 +00001762 // 2) references to non-scalars are pointers directly to the aggregate.
1763 // I don't know why references to scalars are different here.
John McCall413ebdb2011-03-11 20:59:21 +00001764 if (const ReferenceType *ref = type->getAs<ReferenceType>()) {
John McCall9d232c82013-03-07 21:37:08 +00001765 if (!hasScalarEvaluationKind(ref->getPointeeType()))
John McCall413ebdb2011-03-11 20:59:21 +00001766 return args.add(RValue::getAggregate(local), type);
John McCall27360712010-05-26 22:34:26 +00001767
1768 // Locals which are references to scalars are represented
1769 // with allocas holding the pointer.
John McCall413ebdb2011-03-11 20:59:21 +00001770 return args.add(RValue::get(Builder.CreateLoad(local)), type);
John McCall27360712010-05-26 22:34:26 +00001771 }
1772
Nick Lewycky4ee7dc22013-10-02 02:29:49 +00001773 args.add(convertTempToRValue(local, type, loc), type);
John McCall27360712010-05-26 22:34:26 +00001774}
1775
John McCallf85e1932011-06-15 23:02:42 +00001776static bool isProvablyNull(llvm::Value *addr) {
1777 return isa<llvm::ConstantPointerNull>(addr);
1778}
1779
1780static bool isProvablyNonNull(llvm::Value *addr) {
1781 return isa<llvm::AllocaInst>(addr);
1782}
1783
1784/// Emit the actual writing-back of a writeback.
1785static void emitWriteback(CodeGenFunction &CGF,
1786 const CallArgList::Writeback &writeback) {
John McCallb6a60792013-03-23 02:35:54 +00001787 const LValue &srcLV = writeback.Source;
1788 llvm::Value *srcAddr = srcLV.getAddress();
John McCallf85e1932011-06-15 23:02:42 +00001789 assert(!isProvablyNull(srcAddr) &&
1790 "shouldn't have writeback for provably null argument");
1791
1792 llvm::BasicBlock *contBB = 0;
1793
1794 // If the argument wasn't provably non-null, we need to null check
1795 // before doing the store.
1796 bool provablyNonNull = isProvablyNonNull(srcAddr);
1797 if (!provablyNonNull) {
1798 llvm::BasicBlock *writebackBB = CGF.createBasicBlock("icr.writeback");
1799 contBB = CGF.createBasicBlock("icr.done");
1800
1801 llvm::Value *isNull = CGF.Builder.CreateIsNull(srcAddr, "icr.isnull");
1802 CGF.Builder.CreateCondBr(isNull, contBB, writebackBB);
1803 CGF.EmitBlock(writebackBB);
1804 }
1805
1806 // Load the value to writeback.
1807 llvm::Value *value = CGF.Builder.CreateLoad(writeback.Temporary);
1808
1809 // Cast it back, in case we're writing an id to a Foo* or something.
1810 value = CGF.Builder.CreateBitCast(value,
1811 cast<llvm::PointerType>(srcAddr->getType())->getElementType(),
1812 "icr.writeback-cast");
1813
1814 // Perform the writeback.
John McCallb6a60792013-03-23 02:35:54 +00001815
1816 // If we have a "to use" value, it's something we need to emit a use
1817 // of. This has to be carefully threaded in: if it's done after the
1818 // release it's potentially undefined behavior (and the optimizer
1819 // will ignore it), and if it happens before the retain then the
1820 // optimizer could move the release there.
1821 if (writeback.ToUse) {
1822 assert(srcLV.getObjCLifetime() == Qualifiers::OCL_Strong);
1823
1824 // Retain the new value. No need to block-copy here: the block's
1825 // being passed up the stack.
1826 value = CGF.EmitARCRetainNonBlock(value);
1827
1828 // Emit the intrinsic use here.
1829 CGF.EmitARCIntrinsicUse(writeback.ToUse);
1830
1831 // Load the old value (primitively).
Nick Lewycky4ee7dc22013-10-02 02:29:49 +00001832 llvm::Value *oldValue = CGF.EmitLoadOfScalar(srcLV, SourceLocation());
John McCallb6a60792013-03-23 02:35:54 +00001833
1834 // Put the new value in place (primitively).
1835 CGF.EmitStoreOfScalar(value, srcLV, /*init*/ false);
1836
1837 // Release the old value.
1838 CGF.EmitARCRelease(oldValue, srcLV.isARCPreciseLifetime());
1839
1840 // Otherwise, we can just do a normal lvalue store.
1841 } else {
1842 CGF.EmitStoreThroughLValue(RValue::get(value), srcLV);
1843 }
John McCallf85e1932011-06-15 23:02:42 +00001844
1845 // Jump to the continuation block.
1846 if (!provablyNonNull)
1847 CGF.EmitBlock(contBB);
1848}
1849
1850static void emitWritebacks(CodeGenFunction &CGF,
1851 const CallArgList &args) {
1852 for (CallArgList::writeback_iterator
1853 i = args.writeback_begin(), e = args.writeback_end(); i != e; ++i)
1854 emitWriteback(CGF, *i);
1855}
1856
Reid Kleckner9b601952013-06-21 12:45:15 +00001857static void deactivateArgCleanupsBeforeCall(CodeGenFunction &CGF,
1858 const CallArgList &CallArgs) {
1859 assert(CGF.getTarget().getCXXABI().isArgumentDestroyedByCallee());
1860 ArrayRef<CallArgList::CallArgCleanup> Cleanups =
1861 CallArgs.getCleanupsToDeactivate();
1862 // Iterate in reverse to increase the likelihood of popping the cleanup.
1863 for (ArrayRef<CallArgList::CallArgCleanup>::reverse_iterator
1864 I = Cleanups.rbegin(), E = Cleanups.rend(); I != E; ++I) {
1865 CGF.DeactivateCleanupBlock(I->Cleanup, I->IsActiveIP);
1866 I->IsActiveIP->eraseFromParent();
1867 }
1868}
1869
John McCallb6a60792013-03-23 02:35:54 +00001870static const Expr *maybeGetUnaryAddrOfOperand(const Expr *E) {
1871 if (const UnaryOperator *uop = dyn_cast<UnaryOperator>(E->IgnoreParens()))
1872 if (uop->getOpcode() == UO_AddrOf)
1873 return uop->getSubExpr();
1874 return 0;
1875}
1876
John McCallf85e1932011-06-15 23:02:42 +00001877/// Emit an argument that's being passed call-by-writeback. That is,
1878/// we are passing the address of
1879static void emitWritebackArg(CodeGenFunction &CGF, CallArgList &args,
1880 const ObjCIndirectCopyRestoreExpr *CRE) {
John McCallb6a60792013-03-23 02:35:54 +00001881 LValue srcLV;
1882
1883 // Make an optimistic effort to emit the address as an l-value.
1884 // This can fail if the the argument expression is more complicated.
1885 if (const Expr *lvExpr = maybeGetUnaryAddrOfOperand(CRE->getSubExpr())) {
1886 srcLV = CGF.EmitLValue(lvExpr);
1887
1888 // Otherwise, just emit it as a scalar.
1889 } else {
1890 llvm::Value *srcAddr = CGF.EmitScalarExpr(CRE->getSubExpr());
1891
1892 QualType srcAddrType =
1893 CRE->getSubExpr()->getType()->castAs<PointerType>()->getPointeeType();
1894 srcLV = CGF.MakeNaturalAlignAddrLValue(srcAddr, srcAddrType);
1895 }
1896 llvm::Value *srcAddr = srcLV.getAddress();
John McCallf85e1932011-06-15 23:02:42 +00001897
1898 // The dest and src types don't necessarily match in LLVM terms
1899 // because of the crazy ObjC compatibility rules.
1900
Chris Lattner2acc6e32011-07-18 04:24:23 +00001901 llvm::PointerType *destType =
John McCallf85e1932011-06-15 23:02:42 +00001902 cast<llvm::PointerType>(CGF.ConvertType(CRE->getType()));
1903
1904 // If the address is a constant null, just pass the appropriate null.
1905 if (isProvablyNull(srcAddr)) {
1906 args.add(RValue::get(llvm::ConstantPointerNull::get(destType)),
1907 CRE->getType());
1908 return;
1909 }
1910
John McCallf85e1932011-06-15 23:02:42 +00001911 // Create the temporary.
1912 llvm::Value *temp = CGF.CreateTempAlloca(destType->getElementType(),
1913 "icr.temp");
Fariborz Jahanian82c458e2012-11-27 23:02:53 +00001914 // Loading an l-value can introduce a cleanup if the l-value is __weak,
1915 // and that cleanup will be conditional if we can't prove that the l-value
1916 // isn't null, so we need to register a dominating point so that the cleanups
1917 // system will make valid IR.
1918 CodeGenFunction::ConditionalEvaluation condEval(CGF);
1919
John McCallf85e1932011-06-15 23:02:42 +00001920 // Zero-initialize it if we're not doing a copy-initialization.
1921 bool shouldCopy = CRE->shouldCopy();
1922 if (!shouldCopy) {
1923 llvm::Value *null =
1924 llvm::ConstantPointerNull::get(
1925 cast<llvm::PointerType>(destType->getElementType()));
1926 CGF.Builder.CreateStore(null, temp);
1927 }
Fariborz Jahanian82c458e2012-11-27 23:02:53 +00001928
John McCallf85e1932011-06-15 23:02:42 +00001929 llvm::BasicBlock *contBB = 0;
John McCallb6a60792013-03-23 02:35:54 +00001930 llvm::BasicBlock *originBB = 0;
John McCallf85e1932011-06-15 23:02:42 +00001931
1932 // If the address is *not* known to be non-null, we need to switch.
1933 llvm::Value *finalArgument;
1934
1935 bool provablyNonNull = isProvablyNonNull(srcAddr);
1936 if (provablyNonNull) {
1937 finalArgument = temp;
1938 } else {
1939 llvm::Value *isNull = CGF.Builder.CreateIsNull(srcAddr, "icr.isnull");
1940
1941 finalArgument = CGF.Builder.CreateSelect(isNull,
1942 llvm::ConstantPointerNull::get(destType),
1943 temp, "icr.argument");
1944
1945 // If we need to copy, then the load has to be conditional, which
1946 // means we need control flow.
1947 if (shouldCopy) {
John McCallb6a60792013-03-23 02:35:54 +00001948 originBB = CGF.Builder.GetInsertBlock();
John McCallf85e1932011-06-15 23:02:42 +00001949 contBB = CGF.createBasicBlock("icr.cont");
1950 llvm::BasicBlock *copyBB = CGF.createBasicBlock("icr.copy");
1951 CGF.Builder.CreateCondBr(isNull, contBB, copyBB);
1952 CGF.EmitBlock(copyBB);
Fariborz Jahanian82c458e2012-11-27 23:02:53 +00001953 condEval.begin(CGF);
John McCallf85e1932011-06-15 23:02:42 +00001954 }
1955 }
1956
John McCallb6a60792013-03-23 02:35:54 +00001957 llvm::Value *valueToUse = 0;
1958
John McCallf85e1932011-06-15 23:02:42 +00001959 // Perform a copy if necessary.
1960 if (shouldCopy) {
Nick Lewycky4ee7dc22013-10-02 02:29:49 +00001961 RValue srcRV = CGF.EmitLoadOfLValue(srcLV, SourceLocation());
John McCallf85e1932011-06-15 23:02:42 +00001962 assert(srcRV.isScalar());
1963
1964 llvm::Value *src = srcRV.getScalarVal();
1965 src = CGF.Builder.CreateBitCast(src, destType->getElementType(),
1966 "icr.cast");
1967
1968 // Use an ordinary store, not a store-to-lvalue.
1969 CGF.Builder.CreateStore(src, temp);
John McCallb6a60792013-03-23 02:35:54 +00001970
1971 // If optimization is enabled, and the value was held in a
1972 // __strong variable, we need to tell the optimizer that this
1973 // value has to stay alive until we're doing the store back.
1974 // This is because the temporary is effectively unretained,
1975 // and so otherwise we can violate the high-level semantics.
1976 if (CGF.CGM.getCodeGenOpts().OptimizationLevel != 0 &&
1977 srcLV.getObjCLifetime() == Qualifiers::OCL_Strong) {
1978 valueToUse = src;
1979 }
John McCallf85e1932011-06-15 23:02:42 +00001980 }
Fariborz Jahanian82c458e2012-11-27 23:02:53 +00001981
John McCallf85e1932011-06-15 23:02:42 +00001982 // Finish the control flow if we needed it.
Fariborz Jahanian82c458e2012-11-27 23:02:53 +00001983 if (shouldCopy && !provablyNonNull) {
John McCallb6a60792013-03-23 02:35:54 +00001984 llvm::BasicBlock *copyBB = CGF.Builder.GetInsertBlock();
John McCallf85e1932011-06-15 23:02:42 +00001985 CGF.EmitBlock(contBB);
John McCallb6a60792013-03-23 02:35:54 +00001986
1987 // Make a phi for the value to intrinsically use.
1988 if (valueToUse) {
1989 llvm::PHINode *phiToUse = CGF.Builder.CreatePHI(valueToUse->getType(), 2,
1990 "icr.to-use");
1991 phiToUse->addIncoming(valueToUse, copyBB);
1992 phiToUse->addIncoming(llvm::UndefValue::get(valueToUse->getType()),
1993 originBB);
1994 valueToUse = phiToUse;
1995 }
1996
Fariborz Jahanian82c458e2012-11-27 23:02:53 +00001997 condEval.end(CGF);
1998 }
John McCallf85e1932011-06-15 23:02:42 +00001999
John McCallb6a60792013-03-23 02:35:54 +00002000 args.addWriteback(srcLV, temp, valueToUse);
John McCallf85e1932011-06-15 23:02:42 +00002001 args.add(RValue::get(finalArgument), CRE->getType());
2002}
2003
John McCall413ebdb2011-03-11 20:59:21 +00002004void CodeGenFunction::EmitCallArg(CallArgList &args, const Expr *E,
2005 QualType type) {
John McCallf85e1932011-06-15 23:02:42 +00002006 if (const ObjCIndirectCopyRestoreExpr *CRE
2007 = dyn_cast<ObjCIndirectCopyRestoreExpr>(E)) {
Richard Smith7edf9e32012-11-01 22:30:59 +00002008 assert(getLangOpts().ObjCAutoRefCount);
John McCallf85e1932011-06-15 23:02:42 +00002009 assert(getContext().hasSameType(E->getType(), type));
2010 return emitWritebackArg(*this, args, CRE);
2011 }
2012
John McCall8affed52011-08-26 18:42:59 +00002013 assert(type->isReferenceType() == E->isGLValue() &&
2014 "reference binding to unmaterialized r-value!");
2015
John McCallcec52f02011-08-26 21:08:13 +00002016 if (E->isGLValue()) {
2017 assert(E->getObjectKind() == OK_Ordinary);
Richard Smithd4ec5622013-06-12 23:38:09 +00002018 return args.add(EmitReferenceBindingToExpr(E), type);
John McCallcec52f02011-08-26 21:08:13 +00002019 }
Mike Stump1eb44332009-09-09 15:08:12 +00002020
Reid Kleckner9b601952013-06-21 12:45:15 +00002021 bool HasAggregateEvalKind = hasAggregateEvaluationKind(type);
2022
2023 // In the Microsoft C++ ABI, aggregate arguments are destructed by the callee.
2024 // However, we still have to push an EH-only cleanup in case we unwind before
2025 // we make it to the call.
2026 if (HasAggregateEvalKind &&
2027 CGM.getTarget().getCXXABI().isArgumentDestroyedByCallee()) {
2028 const CXXRecordDecl *RD = type->getAsCXXRecordDecl();
2029 if (RD && RD->hasNonTrivialDestructor()) {
2030 AggValueSlot Slot = CreateAggTemp(type, "agg.arg.tmp");
2031 Slot.setExternallyDestructed();
2032 EmitAggExpr(E, Slot);
2033 RValue RV = Slot.asRValue();
2034 args.add(RV, type);
2035
2036 pushDestroy(EHCleanup, RV.getAggregateAddr(), type, destroyCXXObject,
2037 /*useEHCleanupForArray*/ true);
2038 // This unreachable is a temporary marker which will be removed later.
2039 llvm::Instruction *IsActive = Builder.CreateUnreachable();
2040 args.addArgCleanupDeactivation(EHStack.getInnermostEHScope(), IsActive);
2041 return;
2042 }
2043 }
2044
2045 if (HasAggregateEvalKind && isa<ImplicitCastExpr>(E) &&
Eli Friedman55d48482011-05-26 00:10:27 +00002046 cast<CastExpr>(E)->getCastKind() == CK_LValueToRValue) {
2047 LValue L = EmitLValue(cast<CastExpr>(E)->getSubExpr());
2048 assert(L.isSimple());
Eli Friedmand39083d2013-06-11 01:08:22 +00002049 if (L.getAlignment() >= getContext().getTypeAlignInChars(type)) {
2050 args.add(L.asAggregateRValue(), type, /*NeedsCopy*/true);
2051 } else {
2052 // We can't represent a misaligned lvalue in the CallArgList, so copy
2053 // to an aligned temporary now.
2054 llvm::Value *tmp = CreateMemTemp(type);
2055 EmitAggregateCopy(tmp, L.getAddress(), type, L.isVolatile(),
2056 L.getAlignment());
2057 args.add(RValue::getAggregate(tmp), type);
2058 }
Eli Friedman55d48482011-05-26 00:10:27 +00002059 return;
2060 }
2061
John McCall413ebdb2011-03-11 20:59:21 +00002062 args.add(EmitAnyExprToTemp(E), type);
Anders Carlsson0139bb92009-04-08 20:47:54 +00002063}
2064
Dan Gohmanb49bd272012-02-16 00:57:37 +00002065// In ObjC ARC mode with no ObjC ARC exception safety, tell the ARC
2066// optimizer it can aggressively ignore unwind edges.
2067void
2068CodeGenFunction::AddObjCARCExceptionMetadata(llvm::Instruction *Inst) {
2069 if (CGM.getCodeGenOpts().OptimizationLevel != 0 &&
2070 !CGM.getCodeGenOpts().ObjCAutoRefCountExceptions)
2071 Inst->setMetadata("clang.arc.no_objc_arc_exceptions",
2072 CGM.getNoObjCARCExceptionsMetadata());
2073}
2074
John McCallbd7370a2013-02-28 19:01:20 +00002075/// Emits a call to the given no-arguments nounwind runtime function.
2076llvm::CallInst *
2077CodeGenFunction::EmitNounwindRuntimeCall(llvm::Value *callee,
2078 const llvm::Twine &name) {
2079 return EmitNounwindRuntimeCall(callee, ArrayRef<llvm::Value*>(), name);
2080}
2081
2082/// Emits a call to the given nounwind runtime function.
2083llvm::CallInst *
2084CodeGenFunction::EmitNounwindRuntimeCall(llvm::Value *callee,
2085 ArrayRef<llvm::Value*> args,
2086 const llvm::Twine &name) {
2087 llvm::CallInst *call = EmitRuntimeCall(callee, args, name);
2088 call->setDoesNotThrow();
2089 return call;
2090}
2091
2092/// Emits a simple call (never an invoke) to the given no-arguments
2093/// runtime function.
2094llvm::CallInst *
2095CodeGenFunction::EmitRuntimeCall(llvm::Value *callee,
2096 const llvm::Twine &name) {
2097 return EmitRuntimeCall(callee, ArrayRef<llvm::Value*>(), name);
2098}
2099
2100/// Emits a simple call (never an invoke) to the given runtime
2101/// function.
2102llvm::CallInst *
2103CodeGenFunction::EmitRuntimeCall(llvm::Value *callee,
2104 ArrayRef<llvm::Value*> args,
2105 const llvm::Twine &name) {
2106 llvm::CallInst *call = Builder.CreateCall(callee, args, name);
2107 call->setCallingConv(getRuntimeCC());
2108 return call;
2109}
2110
2111/// Emits a call or invoke to the given noreturn runtime function.
2112void CodeGenFunction::EmitNoreturnRuntimeCallOrInvoke(llvm::Value *callee,
2113 ArrayRef<llvm::Value*> args) {
2114 if (getInvokeDest()) {
2115 llvm::InvokeInst *invoke =
2116 Builder.CreateInvoke(callee,
2117 getUnreachableBlock(),
2118 getInvokeDest(),
2119 args);
2120 invoke->setDoesNotReturn();
2121 invoke->setCallingConv(getRuntimeCC());
2122 } else {
2123 llvm::CallInst *call = Builder.CreateCall(callee, args);
2124 call->setDoesNotReturn();
2125 call->setCallingConv(getRuntimeCC());
2126 Builder.CreateUnreachable();
2127 }
2128}
2129
2130/// Emits a call or invoke instruction to the given nullary runtime
2131/// function.
2132llvm::CallSite
2133CodeGenFunction::EmitRuntimeCallOrInvoke(llvm::Value *callee,
2134 const Twine &name) {
2135 return EmitRuntimeCallOrInvoke(callee, ArrayRef<llvm::Value*>(), name);
2136}
2137
2138/// Emits a call or invoke instruction to the given runtime function.
2139llvm::CallSite
2140CodeGenFunction::EmitRuntimeCallOrInvoke(llvm::Value *callee,
2141 ArrayRef<llvm::Value*> args,
2142 const Twine &name) {
2143 llvm::CallSite callSite = EmitCallOrInvoke(callee, args, name);
2144 callSite.setCallingConv(getRuntimeCC());
2145 return callSite;
2146}
2147
2148llvm::CallSite
2149CodeGenFunction::EmitCallOrInvoke(llvm::Value *Callee,
2150 const Twine &Name) {
2151 return EmitCallOrInvoke(Callee, ArrayRef<llvm::Value *>(), Name);
2152}
2153
John McCallf1549f62010-07-06 01:34:17 +00002154/// Emits a call or invoke instruction to the given function, depending
2155/// on the current state of the EH stack.
2156llvm::CallSite
2157CodeGenFunction::EmitCallOrInvoke(llvm::Value *Callee,
Chris Lattner2d3ba4f2011-07-23 17:14:25 +00002158 ArrayRef<llvm::Value *> Args,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002159 const Twine &Name) {
John McCallf1549f62010-07-06 01:34:17 +00002160 llvm::BasicBlock *InvokeDest = getInvokeDest();
John McCallf1549f62010-07-06 01:34:17 +00002161
Dan Gohmanb49bd272012-02-16 00:57:37 +00002162 llvm::Instruction *Inst;
2163 if (!InvokeDest)
2164 Inst = Builder.CreateCall(Callee, Args, Name);
2165 else {
2166 llvm::BasicBlock *ContBB = createBasicBlock("invoke.cont");
2167 Inst = Builder.CreateInvoke(Callee, ContBB, InvokeDest, Args, Name);
2168 EmitBlock(ContBB);
2169 }
2170
2171 // In ObjC ARC mode with no ObjC ARC exception safety, tell the ARC
2172 // optimizer it can aggressively ignore unwind edges.
David Blaikie4e4d0842012-03-11 07:00:24 +00002173 if (CGM.getLangOpts().ObjCAutoRefCount)
Dan Gohmanb49bd272012-02-16 00:57:37 +00002174 AddObjCARCExceptionMetadata(Inst);
2175
2176 return Inst;
John McCallf1549f62010-07-06 01:34:17 +00002177}
2178
Chris Lattner70855442011-07-12 04:46:18 +00002179static void checkArgMatches(llvm::Value *Elt, unsigned &ArgNo,
2180 llvm::FunctionType *FTy) {
2181 if (ArgNo < FTy->getNumParams())
2182 assert(Elt->getType() == FTy->getParamType(ArgNo));
2183 else
2184 assert(FTy->isVarArg());
2185 ++ArgNo;
2186}
2187
Chris Lattner811bf362011-07-12 06:29:11 +00002188void CodeGenFunction::ExpandTypeToArgs(QualType Ty, RValue RV,
Craig Topper6b9240e2013-07-05 19:34:19 +00002189 SmallVectorImpl<llvm::Value *> &Args,
Chris Lattner811bf362011-07-12 06:29:11 +00002190 llvm::FunctionType *IRFuncTy) {
Bob Wilson194f06a2011-08-03 05:58:22 +00002191 if (const ConstantArrayType *AT = getContext().getAsConstantArrayType(Ty)) {
2192 unsigned NumElts = AT->getSize().getZExtValue();
2193 QualType EltTy = AT->getElementType();
2194 llvm::Value *Addr = RV.getAggregateAddr();
2195 for (unsigned Elt = 0; Elt < NumElts; ++Elt) {
2196 llvm::Value *EltAddr = Builder.CreateConstGEP2_32(Addr, 0, Elt);
Nick Lewycky4ee7dc22013-10-02 02:29:49 +00002197 RValue EltRV = convertTempToRValue(EltAddr, EltTy, SourceLocation());
Bob Wilson194f06a2011-08-03 05:58:22 +00002198 ExpandTypeToArgs(EltTy, EltRV, Args, IRFuncTy);
Chris Lattner811bf362011-07-12 06:29:11 +00002199 }
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +00002200 } else if (const RecordType *RT = Ty->getAs<RecordType>()) {
Bob Wilson194f06a2011-08-03 05:58:22 +00002201 RecordDecl *RD = RT->getDecl();
2202 assert(RV.isAggregate() && "Unexpected rvalue during struct expansion");
Eli Friedman377ecc72012-04-16 03:54:45 +00002203 LValue LV = MakeAddrLValue(RV.getAggregateAddr(), Ty);
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +00002204
2205 if (RD->isUnion()) {
2206 const FieldDecl *LargestFD = 0;
2207 CharUnits UnionSize = CharUnits::Zero();
2208
2209 for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end();
2210 i != e; ++i) {
David Blaikie581deb32012-06-06 20:45:41 +00002211 const FieldDecl *FD = *i;
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +00002212 assert(!FD->isBitField() &&
2213 "Cannot expand structure with bit-field members.");
2214 CharUnits FieldSize = getContext().getTypeSizeInChars(FD->getType());
2215 if (UnionSize < FieldSize) {
2216 UnionSize = FieldSize;
2217 LargestFD = FD;
2218 }
2219 }
2220 if (LargestFD) {
Nick Lewycky4ee7dc22013-10-02 02:29:49 +00002221 RValue FldRV = EmitRValueForField(LV, LargestFD, SourceLocation());
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +00002222 ExpandTypeToArgs(LargestFD->getType(), FldRV, Args, IRFuncTy);
2223 }
2224 } else {
2225 for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end();
2226 i != e; ++i) {
David Blaikie581deb32012-06-06 20:45:41 +00002227 FieldDecl *FD = *i;
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +00002228
Nick Lewycky4ee7dc22013-10-02 02:29:49 +00002229 RValue FldRV = EmitRValueForField(LV, FD, SourceLocation());
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +00002230 ExpandTypeToArgs(FD->getType(), FldRV, Args, IRFuncTy);
2231 }
Bob Wilson194f06a2011-08-03 05:58:22 +00002232 }
Eli Friedmanca3d3fc2011-11-15 02:46:03 +00002233 } else if (Ty->isAnyComplexType()) {
Bob Wilson194f06a2011-08-03 05:58:22 +00002234 ComplexPairTy CV = RV.getComplexVal();
2235 Args.push_back(CV.first);
2236 Args.push_back(CV.second);
2237 } else {
Chris Lattner811bf362011-07-12 06:29:11 +00002238 assert(RV.isScalar() &&
2239 "Unexpected non-scalar rvalue during struct expansion.");
2240
2241 // Insert a bitcast as needed.
2242 llvm::Value *V = RV.getScalarVal();
2243 if (Args.size() < IRFuncTy->getNumParams() &&
2244 V->getType() != IRFuncTy->getParamType(Args.size()))
2245 V = Builder.CreateBitCast(V, IRFuncTy->getParamType(Args.size()));
2246
2247 Args.push_back(V);
2248 }
2249}
2250
2251
Daniel Dunbar88b53962009-02-02 22:03:45 +00002252RValue CodeGenFunction::EmitCall(const CGFunctionInfo &CallInfo,
Mike Stump1eb44332009-09-09 15:08:12 +00002253 llvm::Value *Callee,
Anders Carlssonf3c47c92009-12-24 19:25:24 +00002254 ReturnValueSlot ReturnValue,
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00002255 const CallArgList &CallArgs,
David Chisnalldd5c98f2010-05-01 11:15:56 +00002256 const Decl *TargetDecl,
David Chisnall4b02afc2010-05-02 13:41:58 +00002257 llvm::Instruction **callOrInvoke) {
Mike Stumpf5408fe2009-05-16 07:57:57 +00002258 // FIXME: We no longer need the types from CallArgs; lift up and simplify.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002259 SmallVector<llvm::Value*, 16> Args;
Daniel Dunbar17b708d2008-09-09 23:27:19 +00002260
2261 // Handle struct-return functions by passing a pointer to the
2262 // location that we would like to return into.
Daniel Dunbarbb36d332009-02-02 21:43:58 +00002263 QualType RetTy = CallInfo.getReturnType();
Daniel Dunbarb225be42009-02-03 05:59:18 +00002264 const ABIArgInfo &RetAI = CallInfo.getReturnInfo();
Mike Stump1eb44332009-09-09 15:08:12 +00002265
Chris Lattner70855442011-07-12 04:46:18 +00002266 // IRArgNo - Keep track of the argument number in the callee we're looking at.
2267 unsigned IRArgNo = 0;
2268 llvm::FunctionType *IRFuncTy =
2269 cast<llvm::FunctionType>(
2270 cast<llvm::PointerType>(Callee->getType())->getElementType());
Mike Stump1eb44332009-09-09 15:08:12 +00002271
Chris Lattner5db7ae52009-06-13 00:26:38 +00002272 // If the call returns a temporary with struct return, create a temporary
Anders Carlssond2490a92009-12-24 20:40:36 +00002273 // alloca to hold the result, unless one is given to us.
Daniel Dunbardacf9dd2010-07-14 23:39:36 +00002274 if (CGM.ReturnTypeUsesSRet(CallInfo)) {
Anders Carlssond2490a92009-12-24 20:40:36 +00002275 llvm::Value *Value = ReturnValue.getValue();
2276 if (!Value)
Daniel Dunbar195337d2010-02-09 02:48:28 +00002277 Value = CreateMemTemp(RetTy);
Anders Carlssond2490a92009-12-24 20:40:36 +00002278 Args.push_back(Value);
Chris Lattner70855442011-07-12 04:46:18 +00002279 checkArgMatches(Value, IRArgNo, IRFuncTy);
Anders Carlssond2490a92009-12-24 20:40:36 +00002280 }
Mike Stump1eb44332009-09-09 15:08:12 +00002281
Daniel Dunbar4b5f0a42009-02-04 21:17:21 +00002282 assert(CallInfo.arg_size() == CallArgs.size() &&
2283 "Mismatch between function signature & arguments.");
Daniel Dunbarb225be42009-02-03 05:59:18 +00002284 CGFunctionInfo::const_arg_iterator info_it = CallInfo.arg_begin();
Mike Stump1eb44332009-09-09 15:08:12 +00002285 for (CallArgList::const_iterator I = CallArgs.begin(), E = CallArgs.end();
Daniel Dunbarb225be42009-02-03 05:59:18 +00002286 I != E; ++I, ++info_it) {
2287 const ABIArgInfo &ArgInfo = info_it->info;
Eli Friedmanc6d07822011-05-02 18:05:27 +00002288 RValue RV = I->RV;
Daniel Dunbar56273772008-09-17 00:51:38 +00002289
John McCall9d232c82013-03-07 21:37:08 +00002290 CharUnits TypeAlign = getContext().getTypeAlignInChars(I->Ty);
Rafael Espindolae4aeeaa2012-10-24 01:59:00 +00002291
2292 // Insert a padding argument to ensure proper alignment.
2293 if (llvm::Type *PaddingType = ArgInfo.getPaddingType()) {
2294 Args.push_back(llvm::UndefValue::get(PaddingType));
2295 ++IRArgNo;
2296 }
2297
Daniel Dunbar56273772008-09-17 00:51:38 +00002298 switch (ArgInfo.getKind()) {
Daniel Dunbar91a16fa2010-08-21 02:24:36 +00002299 case ABIArgInfo::Indirect: {
Daniel Dunbar1f745982009-02-05 09:16:39 +00002300 if (RV.isScalar() || RV.isComplex()) {
2301 // Make a temporary alloca to pass the argument.
Eli Friedman70cbd2a2011-06-15 18:26:32 +00002302 llvm::AllocaInst *AI = CreateMemTemp(I->Ty);
2303 if (ArgInfo.getIndirectAlign() > AI->getAlignment())
2304 AI->setAlignment(ArgInfo.getIndirectAlign());
2305 Args.push_back(AI);
John McCall9d232c82013-03-07 21:37:08 +00002306
2307 LValue argLV =
2308 MakeAddrLValue(Args.back(), I->Ty, TypeAlign);
Chris Lattner70855442011-07-12 04:46:18 +00002309
Daniel Dunbar1f745982009-02-05 09:16:39 +00002310 if (RV.isScalar())
John McCall9d232c82013-03-07 21:37:08 +00002311 EmitStoreOfScalar(RV.getScalarVal(), argLV, /*init*/ true);
Daniel Dunbar1f745982009-02-05 09:16:39 +00002312 else
John McCall9d232c82013-03-07 21:37:08 +00002313 EmitStoreOfComplex(RV.getComplexVal(), argLV, /*init*/ true);
Chris Lattner70855442011-07-12 04:46:18 +00002314
2315 // Validate argument match.
2316 checkArgMatches(AI, IRArgNo, IRFuncTy);
Daniel Dunbar1f745982009-02-05 09:16:39 +00002317 } else {
Eli Friedmanea5e4da2011-06-14 01:37:52 +00002318 // We want to avoid creating an unnecessary temporary+copy here;
Guy Benyeid436c992013-03-10 12:59:00 +00002319 // however, we need one in three cases:
Eli Friedmanea5e4da2011-06-14 01:37:52 +00002320 // 1. If the argument is not byval, and we are required to copy the
2321 // source. (This case doesn't occur on any common architecture.)
2322 // 2. If the argument is byval, RV is not sufficiently aligned, and
2323 // we cannot force it to be sufficiently aligned.
Guy Benyeid436c992013-03-10 12:59:00 +00002324 // 3. If the argument is byval, but RV is located in an address space
2325 // different than that of the argument (0).
Eli Friedman97cb5a42011-06-15 22:09:18 +00002326 llvm::Value *Addr = RV.getAggregateAddr();
2327 unsigned Align = ArgInfo.getIndirectAlign();
Micah Villmow25a6a842012-10-08 16:25:52 +00002328 const llvm::DataLayout *TD = &CGM.getDataLayout();
Guy Benyeid436c992013-03-10 12:59:00 +00002329 const unsigned RVAddrSpace = Addr->getType()->getPointerAddressSpace();
2330 const unsigned ArgAddrSpace = (IRArgNo < IRFuncTy->getNumParams() ?
2331 IRFuncTy->getParamType(IRArgNo)->getPointerAddressSpace() : 0);
Eli Friedman97cb5a42011-06-15 22:09:18 +00002332 if ((!ArgInfo.getIndirectByVal() && I->NeedsCopy) ||
John McCall9d232c82013-03-07 21:37:08 +00002333 (ArgInfo.getIndirectByVal() && TypeAlign.getQuantity() < Align &&
Guy Benyeid436c992013-03-10 12:59:00 +00002334 llvm::getOrEnforceKnownAlignment(Addr, Align, TD) < Align) ||
2335 (ArgInfo.getIndirectByVal() && (RVAddrSpace != ArgAddrSpace))) {
Eli Friedmanea5e4da2011-06-14 01:37:52 +00002336 // Create an aligned temporary, and copy to it.
Eli Friedman97cb5a42011-06-15 22:09:18 +00002337 llvm::AllocaInst *AI = CreateMemTemp(I->Ty);
2338 if (Align > AI->getAlignment())
2339 AI->setAlignment(Align);
Eli Friedmanea5e4da2011-06-14 01:37:52 +00002340 Args.push_back(AI);
Chad Rosier649b4a12012-03-29 17:37:10 +00002341 EmitAggregateCopy(AI, Addr, I->Ty, RV.isVolatileQualified());
Chris Lattner70855442011-07-12 04:46:18 +00002342
2343 // Validate argument match.
2344 checkArgMatches(AI, IRArgNo, IRFuncTy);
Eli Friedmanea5e4da2011-06-14 01:37:52 +00002345 } else {
2346 // Skip the extra memcpy call.
Eli Friedman97cb5a42011-06-15 22:09:18 +00002347 Args.push_back(Addr);
Chris Lattner70855442011-07-12 04:46:18 +00002348
2349 // Validate argument match.
2350 checkArgMatches(Addr, IRArgNo, IRFuncTy);
Eli Friedmanea5e4da2011-06-14 01:37:52 +00002351 }
Daniel Dunbar1f745982009-02-05 09:16:39 +00002352 }
2353 break;
Daniel Dunbar91a16fa2010-08-21 02:24:36 +00002354 }
Daniel Dunbar1f745982009-02-05 09:16:39 +00002355
Daniel Dunbar11434922009-01-26 21:26:08 +00002356 case ABIArgInfo::Ignore:
2357 break;
Michael J. Spencer9cac4942010-10-19 06:39:39 +00002358
Chris Lattner800588f2010-07-29 06:26:06 +00002359 case ABIArgInfo::Extend:
2360 case ABIArgInfo::Direct: {
2361 if (!isa<llvm::StructType>(ArgInfo.getCoerceToType()) &&
Chris Lattner117e3f42010-07-30 04:02:24 +00002362 ArgInfo.getCoerceToType() == ConvertType(info_it->type) &&
2363 ArgInfo.getDirectOffset() == 0) {
Chris Lattner70855442011-07-12 04:46:18 +00002364 llvm::Value *V;
Chris Lattner800588f2010-07-29 06:26:06 +00002365 if (RV.isScalar())
Chris Lattner70855442011-07-12 04:46:18 +00002366 V = RV.getScalarVal();
Chris Lattner800588f2010-07-29 06:26:06 +00002367 else
Chris Lattner70855442011-07-12 04:46:18 +00002368 V = Builder.CreateLoad(RV.getAggregateAddr());
2369
Chris Lattner21ca1fd2011-07-12 04:53:39 +00002370 // If the argument doesn't match, perform a bitcast to coerce it. This
2371 // can happen due to trivial type mismatches.
2372 if (IRArgNo < IRFuncTy->getNumParams() &&
2373 V->getType() != IRFuncTy->getParamType(IRArgNo))
2374 V = Builder.CreateBitCast(V, IRFuncTy->getParamType(IRArgNo));
Chris Lattner70855442011-07-12 04:46:18 +00002375 Args.push_back(V);
2376
Chris Lattner70855442011-07-12 04:46:18 +00002377 checkArgMatches(V, IRArgNo, IRFuncTy);
Chris Lattner800588f2010-07-29 06:26:06 +00002378 break;
2379 }
Daniel Dunbar11434922009-01-26 21:26:08 +00002380
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +00002381 // FIXME: Avoid the conversion through memory if possible.
2382 llvm::Value *SrcPtr;
John McCall9d232c82013-03-07 21:37:08 +00002383 if (RV.isScalar() || RV.isComplex()) {
Eli Friedmanc6d07822011-05-02 18:05:27 +00002384 SrcPtr = CreateMemTemp(I->Ty, "coerce");
John McCall9d232c82013-03-07 21:37:08 +00002385 LValue SrcLV = MakeAddrLValue(SrcPtr, I->Ty, TypeAlign);
2386 if (RV.isScalar()) {
2387 EmitStoreOfScalar(RV.getScalarVal(), SrcLV, /*init*/ true);
2388 } else {
2389 EmitStoreOfComplex(RV.getComplexVal(), SrcLV, /*init*/ true);
2390 }
Mike Stump1eb44332009-09-09 15:08:12 +00002391 } else
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +00002392 SrcPtr = RV.getAggregateAddr();
Michael J. Spencer9cac4942010-10-19 06:39:39 +00002393
Chris Lattner117e3f42010-07-30 04:02:24 +00002394 // If the value is offset in memory, apply the offset now.
2395 if (unsigned Offs = ArgInfo.getDirectOffset()) {
2396 SrcPtr = Builder.CreateBitCast(SrcPtr, Builder.getInt8PtrTy());
2397 SrcPtr = Builder.CreateConstGEP1_32(SrcPtr, Offs);
Michael J. Spencer9cac4942010-10-19 06:39:39 +00002398 SrcPtr = Builder.CreateBitCast(SrcPtr,
Chris Lattner117e3f42010-07-30 04:02:24 +00002399 llvm::PointerType::getUnqual(ArgInfo.getCoerceToType()));
2400
2401 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +00002402
Chris Lattnerce700162010-06-28 23:44:11 +00002403 // If the coerce-to type is a first class aggregate, we flatten it and
2404 // pass the elements. Either way is semantically identical, but fast-isel
2405 // and the optimizer generally likes scalar values better than FCAs.
Chris Lattner2acc6e32011-07-18 04:24:23 +00002406 if (llvm::StructType *STy =
Chris Lattner309c59f2010-06-29 00:06:42 +00002407 dyn_cast<llvm::StructType>(ArgInfo.getCoerceToType())) {
Chandler Carruthf82232c2012-10-10 11:29:08 +00002408 llvm::Type *SrcTy =
2409 cast<llvm::PointerType>(SrcPtr->getType())->getElementType();
2410 uint64_t SrcSize = CGM.getDataLayout().getTypeAllocSize(SrcTy);
2411 uint64_t DstSize = CGM.getDataLayout().getTypeAllocSize(STy);
2412
2413 // If the source type is smaller than the destination type of the
2414 // coerce-to logic, copy the source value into a temp alloca the size
2415 // of the destination type to allow loading all of it. The bits past
2416 // the source value are left undef.
2417 if (SrcSize < DstSize) {
2418 llvm::AllocaInst *TempAlloca
2419 = CreateTempAlloca(STy, SrcPtr->getName() + ".coerce");
2420 Builder.CreateMemCpy(TempAlloca, SrcPtr, SrcSize, 0);
2421 SrcPtr = TempAlloca;
2422 } else {
2423 SrcPtr = Builder.CreateBitCast(SrcPtr,
2424 llvm::PointerType::getUnqual(STy));
2425 }
2426
Chris Lattner92826882010-07-05 20:41:41 +00002427 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
2428 llvm::Value *EltPtr = Builder.CreateConstGEP2_32(SrcPtr, 0, i);
Chris Lattnerdeabde22010-07-28 18:24:28 +00002429 llvm::LoadInst *LI = Builder.CreateLoad(EltPtr);
2430 // We don't know what we're loading from.
2431 LI->setAlignment(1);
2432 Args.push_back(LI);
Chris Lattner70855442011-07-12 04:46:18 +00002433
2434 // Validate argument match.
2435 checkArgMatches(LI, IRArgNo, IRFuncTy);
Chris Lattner309c59f2010-06-29 00:06:42 +00002436 }
Chris Lattnerce700162010-06-28 23:44:11 +00002437 } else {
Chris Lattner309c59f2010-06-29 00:06:42 +00002438 // In the simple case, just pass the coerced loaded value.
2439 Args.push_back(CreateCoercedLoad(SrcPtr, ArgInfo.getCoerceToType(),
2440 *this));
Chris Lattner70855442011-07-12 04:46:18 +00002441
2442 // Validate argument match.
2443 checkArgMatches(Args.back(), IRArgNo, IRFuncTy);
Chris Lattnerce700162010-06-28 23:44:11 +00002444 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +00002445
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +00002446 break;
2447 }
2448
Daniel Dunbar56273772008-09-17 00:51:38 +00002449 case ABIArgInfo::Expand:
Chris Lattner811bf362011-07-12 06:29:11 +00002450 ExpandTypeToArgs(I->Ty, RV, Args, IRFuncTy);
Chris Lattner70855442011-07-12 04:46:18 +00002451 IRArgNo = Args.size();
Daniel Dunbar56273772008-09-17 00:51:38 +00002452 break;
Daniel Dunbar17b708d2008-09-09 23:27:19 +00002453 }
2454 }
Mike Stump1eb44332009-09-09 15:08:12 +00002455
Reid Kleckner9b601952013-06-21 12:45:15 +00002456 if (!CallArgs.getCleanupsToDeactivate().empty())
2457 deactivateArgCleanupsBeforeCall(*this, CallArgs);
2458
Chris Lattner5db7ae52009-06-13 00:26:38 +00002459 // If the callee is a bitcast of a function to a varargs pointer to function
2460 // type, check to see if we can remove the bitcast. This handles some cases
2461 // with unprototyped functions.
2462 if (llvm::ConstantExpr *CE = dyn_cast<llvm::ConstantExpr>(Callee))
2463 if (llvm::Function *CalleeF = dyn_cast<llvm::Function>(CE->getOperand(0))) {
Chris Lattner2acc6e32011-07-18 04:24:23 +00002464 llvm::PointerType *CurPT=cast<llvm::PointerType>(Callee->getType());
2465 llvm::FunctionType *CurFT =
Chris Lattner5db7ae52009-06-13 00:26:38 +00002466 cast<llvm::FunctionType>(CurPT->getElementType());
Chris Lattner2acc6e32011-07-18 04:24:23 +00002467 llvm::FunctionType *ActualFT = CalleeF->getFunctionType();
Mike Stump1eb44332009-09-09 15:08:12 +00002468
Chris Lattner5db7ae52009-06-13 00:26:38 +00002469 if (CE->getOpcode() == llvm::Instruction::BitCast &&
2470 ActualFT->getReturnType() == CurFT->getReturnType() &&
Chris Lattnerd6bebbf2009-06-23 01:38:41 +00002471 ActualFT->getNumParams() == CurFT->getNumParams() &&
Fariborz Jahanianc0ddef22011-03-01 17:28:13 +00002472 ActualFT->getNumParams() == Args.size() &&
2473 (CurFT->isVarArg() || !ActualFT->isVarArg())) {
Chris Lattner5db7ae52009-06-13 00:26:38 +00002474 bool ArgsMatch = true;
2475 for (unsigned i = 0, e = ActualFT->getNumParams(); i != e; ++i)
2476 if (ActualFT->getParamType(i) != CurFT->getParamType(i)) {
2477 ArgsMatch = false;
2478 break;
2479 }
Mike Stump1eb44332009-09-09 15:08:12 +00002480
Chris Lattner5db7ae52009-06-13 00:26:38 +00002481 // Strip the cast if we can get away with it. This is a nice cleanup,
2482 // but also allows us to inline the function at -O0 if it is marked
2483 // always_inline.
2484 if (ArgsMatch)
2485 Callee = CalleeF;
2486 }
2487 }
Mike Stump1eb44332009-09-09 15:08:12 +00002488
Daniel Dunbarca6408c2009-09-12 00:59:20 +00002489 unsigned CallingConv;
Devang Patel761d7f72008-09-25 21:02:23 +00002490 CodeGen::AttributeListType AttributeList;
Bill Wendling94236e72013-02-22 00:13:35 +00002491 CGM.ConstructAttributeList(CallInfo, TargetDecl, AttributeList,
2492 CallingConv, true);
Bill Wendling785b7782012-12-07 23:17:26 +00002493 llvm::AttributeSet Attrs = llvm::AttributeSet::get(getLLVMContext(),
Bill Wendling94236e72013-02-22 00:13:35 +00002494 AttributeList);
Mike Stump1eb44332009-09-09 15:08:12 +00002495
John McCallf1549f62010-07-06 01:34:17 +00002496 llvm::BasicBlock *InvokeDest = 0;
Bill Wendling01ad9542012-12-30 10:32:17 +00002497 if (!Attrs.hasAttribute(llvm::AttributeSet::FunctionIndex,
2498 llvm::Attribute::NoUnwind))
John McCallf1549f62010-07-06 01:34:17 +00002499 InvokeDest = getInvokeDest();
2500
Daniel Dunbard14151d2009-03-02 04:32:35 +00002501 llvm::CallSite CS;
John McCallf1549f62010-07-06 01:34:17 +00002502 if (!InvokeDest) {
Jay Foad4c7d9f12011-07-15 08:37:34 +00002503 CS = Builder.CreateCall(Callee, Args);
Daniel Dunbar9834ffb2009-02-23 17:26:39 +00002504 } else {
2505 llvm::BasicBlock *Cont = createBasicBlock("invoke.cont");
Jay Foad4c7d9f12011-07-15 08:37:34 +00002506 CS = Builder.CreateInvoke(Callee, Cont, InvokeDest, Args);
Daniel Dunbar9834ffb2009-02-23 17:26:39 +00002507 EmitBlock(Cont);
Daniel Dunbarf4fe0f02009-02-20 18:54:31 +00002508 }
Chris Lattnerce933992010-06-29 16:40:28 +00002509 if (callOrInvoke)
David Chisnall4b02afc2010-05-02 13:41:58 +00002510 *callOrInvoke = CS.getInstruction();
Daniel Dunbarf4fe0f02009-02-20 18:54:31 +00002511
Daniel Dunbard14151d2009-03-02 04:32:35 +00002512 CS.setAttributes(Attrs);
Daniel Dunbarca6408c2009-09-12 00:59:20 +00002513 CS.setCallingConv(static_cast<llvm::CallingConv::ID>(CallingConv));
Daniel Dunbard14151d2009-03-02 04:32:35 +00002514
Dan Gohmanb49bd272012-02-16 00:57:37 +00002515 // In ObjC ARC mode with no ObjC ARC exception safety, tell the ARC
2516 // optimizer it can aggressively ignore unwind edges.
David Blaikie4e4d0842012-03-11 07:00:24 +00002517 if (CGM.getLangOpts().ObjCAutoRefCount)
Dan Gohmanb49bd272012-02-16 00:57:37 +00002518 AddObjCARCExceptionMetadata(CS.getInstruction());
2519
Daniel Dunbard14151d2009-03-02 04:32:35 +00002520 // If the call doesn't return, finish the basic block and clear the
2521 // insertion point; this allows the rest of IRgen to discard
2522 // unreachable code.
2523 if (CS.doesNotReturn()) {
2524 Builder.CreateUnreachable();
2525 Builder.ClearInsertionPoint();
Mike Stump1eb44332009-09-09 15:08:12 +00002526
Mike Stumpf5408fe2009-05-16 07:57:57 +00002527 // FIXME: For now, emit a dummy basic block because expr emitters in
2528 // generally are not ready to handle emitting expressions at unreachable
2529 // points.
Daniel Dunbard14151d2009-03-02 04:32:35 +00002530 EnsureInsertPoint();
Mike Stump1eb44332009-09-09 15:08:12 +00002531
Daniel Dunbard14151d2009-03-02 04:32:35 +00002532 // Return a reasonable RValue.
2533 return GetUndefRValue(RetTy);
Mike Stump1eb44332009-09-09 15:08:12 +00002534 }
Daniel Dunbard14151d2009-03-02 04:32:35 +00002535
2536 llvm::Instruction *CI = CS.getInstruction();
Benjamin Kramerffbb15e2009-10-05 13:47:21 +00002537 if (Builder.isNamePreserving() && !CI->getType()->isVoidTy())
Daniel Dunbar17b708d2008-09-09 23:27:19 +00002538 CI->setName("call");
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00002539
John McCallf85e1932011-06-15 23:02:42 +00002540 // Emit any writebacks immediately. Arguably this should happen
2541 // after any return-value munging.
2542 if (CallArgs.hasWritebacks())
2543 emitWritebacks(*this, CallArgs);
2544
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00002545 switch (RetAI.getKind()) {
John McCall9d232c82013-03-07 21:37:08 +00002546 case ABIArgInfo::Indirect:
Nick Lewycky4ee7dc22013-10-02 02:29:49 +00002547 return convertTempToRValue(Args[0], RetTy, SourceLocation());
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00002548
Daniel Dunbar11434922009-01-26 21:26:08 +00002549 case ABIArgInfo::Ignore:
Daniel Dunbar0bcc5212009-02-03 06:30:17 +00002550 // If we are ignoring an argument that had a result, make sure to
2551 // construct the appropriate return value for our caller.
Daniel Dunbar13e81732009-02-05 07:09:07 +00002552 return GetUndefRValue(RetTy);
Michael J. Spencer9cac4942010-10-19 06:39:39 +00002553
Chris Lattner800588f2010-07-29 06:26:06 +00002554 case ABIArgInfo::Extend:
2555 case ABIArgInfo::Direct: {
Chris Lattner6af13f32011-07-13 03:59:32 +00002556 llvm::Type *RetIRTy = ConvertType(RetTy);
2557 if (RetAI.getCoerceToType() == RetIRTy && RetAI.getDirectOffset() == 0) {
John McCall9d232c82013-03-07 21:37:08 +00002558 switch (getEvaluationKind(RetTy)) {
2559 case TEK_Complex: {
Chris Lattner800588f2010-07-29 06:26:06 +00002560 llvm::Value *Real = Builder.CreateExtractValue(CI, 0);
2561 llvm::Value *Imag = Builder.CreateExtractValue(CI, 1);
2562 return RValue::getComplex(std::make_pair(Real, Imag));
2563 }
John McCall9d232c82013-03-07 21:37:08 +00002564 case TEK_Aggregate: {
Chris Lattner800588f2010-07-29 06:26:06 +00002565 llvm::Value *DestPtr = ReturnValue.getValue();
2566 bool DestIsVolatile = ReturnValue.isVolatile();
Daniel Dunbar11434922009-01-26 21:26:08 +00002567
Chris Lattner800588f2010-07-29 06:26:06 +00002568 if (!DestPtr) {
2569 DestPtr = CreateMemTemp(RetTy, "agg.tmp");
2570 DestIsVolatile = false;
2571 }
Eli Friedmanbadea572011-05-17 21:08:01 +00002572 BuildAggStore(*this, CI, DestPtr, DestIsVolatile, false);
Chris Lattner800588f2010-07-29 06:26:06 +00002573 return RValue::getAggregate(DestPtr);
2574 }
John McCall9d232c82013-03-07 21:37:08 +00002575 case TEK_Scalar: {
2576 // If the argument doesn't match, perform a bitcast to coerce it. This
2577 // can happen due to trivial type mismatches.
2578 llvm::Value *V = CI;
2579 if (V->getType() != RetIRTy)
2580 V = Builder.CreateBitCast(V, RetIRTy);
2581 return RValue::get(V);
2582 }
2583 }
2584 llvm_unreachable("bad evaluation kind");
Chris Lattner800588f2010-07-29 06:26:06 +00002585 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +00002586
Anders Carlssond2490a92009-12-24 20:40:36 +00002587 llvm::Value *DestPtr = ReturnValue.getValue();
2588 bool DestIsVolatile = ReturnValue.isVolatile();
Michael J. Spencer9cac4942010-10-19 06:39:39 +00002589
Anders Carlssond2490a92009-12-24 20:40:36 +00002590 if (!DestPtr) {
Daniel Dunbar195337d2010-02-09 02:48:28 +00002591 DestPtr = CreateMemTemp(RetTy, "coerce");
Anders Carlssond2490a92009-12-24 20:40:36 +00002592 DestIsVolatile = false;
2593 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +00002594
Chris Lattner117e3f42010-07-30 04:02:24 +00002595 // If the value is offset in memory, apply the offset now.
2596 llvm::Value *StorePtr = DestPtr;
2597 if (unsigned Offs = RetAI.getDirectOffset()) {
2598 StorePtr = Builder.CreateBitCast(StorePtr, Builder.getInt8PtrTy());
2599 StorePtr = Builder.CreateConstGEP1_32(StorePtr, Offs);
Michael J. Spencer9cac4942010-10-19 06:39:39 +00002600 StorePtr = Builder.CreateBitCast(StorePtr,
Chris Lattner117e3f42010-07-30 04:02:24 +00002601 llvm::PointerType::getUnqual(RetAI.getCoerceToType()));
2602 }
2603 CreateCoercedStore(CI, StorePtr, DestIsVolatile, *this);
Michael J. Spencer9cac4942010-10-19 06:39:39 +00002604
Nick Lewycky4ee7dc22013-10-02 02:29:49 +00002605 return convertTempToRValue(DestPtr, RetTy, SourceLocation());
Daniel Dunbar639ffe42008-09-10 07:04:09 +00002606 }
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00002607
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00002608 case ABIArgInfo::Expand:
David Blaikieb219cfc2011-09-23 05:06:16 +00002609 llvm_unreachable("Invalid ABI kind for return argument");
Daniel Dunbar17b708d2008-09-09 23:27:19 +00002610 }
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00002611
David Blaikieb219cfc2011-09-23 05:06:16 +00002612 llvm_unreachable("Unhandled ABIArgInfo::Kind");
Daniel Dunbar17b708d2008-09-09 23:27:19 +00002613}
Daniel Dunbarb4094ea2009-02-10 20:44:09 +00002614
2615/* VarArg handling */
2616
2617llvm::Value *CodeGenFunction::EmitVAArg(llvm::Value *VAListAddr, QualType Ty) {
2618 return CGM.getTypes().getABIInfo().EmitVAArg(VAListAddr, Ty, *this);
2619}