blob: cb5c78a6d59851f88fe080cfdf9aa83454613486 [file] [log] [blame]
Chris Lattner9cbe4f02011-07-09 17:41:47 +00001//===--- CGCall.cpp - Encapsulate calling convention details ----*- C++ -*-===//
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;
Anton Korobeynikov414d8962011-04-14 20:06:49 +000044 case CC_AAPCS: return llvm::CallingConv::ARM_AAPCS;
45 case CC_AAPCS_VFP: return llvm::CallingConv::ARM_AAPCS_VFP;
Guy Benyei38980082012-12-25 08:53:55 +000046 case CC_IntelOclBicc: return llvm::CallingConv::Intel_OCL_BI;
Dawn Perchik52fc3142010-09-03 01:29:35 +000047 // TODO: add support for CC_X86Pascal to llvm
John McCall04a67a62010-02-05 21:31:56 +000048 }
49}
50
John McCall0b0ef0a2010-02-24 07:14:12 +000051/// Derives the 'this' type for codegen purposes, i.e. ignoring method
52/// qualification.
53/// FIXME: address space qualification?
John McCallead608a2010-02-26 00:48:12 +000054static CanQualType GetThisType(ASTContext &Context, const CXXRecordDecl *RD) {
55 QualType RecTy = Context.getTagDeclType(RD)->getCanonicalTypeInternal();
56 return Context.getPointerType(CanQualType::CreateUnsafe(RecTy));
Daniel Dunbar45c25ba2008-09-10 04:01:49 +000057}
58
John McCall0b0ef0a2010-02-24 07:14:12 +000059/// Returns the canonical formal type of the given C++ method.
John McCallead608a2010-02-26 00:48:12 +000060static CanQual<FunctionProtoType> GetFormalType(const CXXMethodDecl *MD) {
61 return MD->getType()->getCanonicalTypeUnqualified()
62 .getAs<FunctionProtoType>();
John McCall0b0ef0a2010-02-24 07:14:12 +000063}
64
65/// Returns the "extra-canonicalized" return type, which discards
66/// qualifiers on the return type. Codegen doesn't care about them,
67/// and it makes ABI code a little easier to be able to assume that
68/// all parameter and return types are top-level unqualified.
John McCallead608a2010-02-26 00:48:12 +000069static CanQualType GetReturnType(QualType RetTy) {
70 return RetTy->getCanonicalTypeUnqualified().getUnqualifiedType();
John McCall0b0ef0a2010-02-24 07:14:12 +000071}
72
John McCall0f3d0972012-07-07 06:41:13 +000073/// Arrange the argument and result information for a value of the given
74/// unprototyped freestanding function type.
John McCall0b0ef0a2010-02-24 07:14:12 +000075const CGFunctionInfo &
John McCall0f3d0972012-07-07 06:41:13 +000076CodeGenTypes::arrangeFreeFunctionType(CanQual<FunctionNoProtoType> FTNP) {
John McCallde5d3c72012-02-17 03:33:10 +000077 // When translating an unprototyped function type, always use a
78 // variadic type.
John McCall0f3d0972012-07-07 06:41:13 +000079 return arrangeLLVMFunctionInfo(FTNP->getResultType().getUnqualifiedType(),
Dmitri Gribenko55431692013-05-05 00:41:58 +000080 None, FTNP->getExtInfo(), RequiredArgs(0));
John McCall0b0ef0a2010-02-24 07:14:12 +000081}
82
John McCall0f3d0972012-07-07 06:41:13 +000083/// Arrange the LLVM function layout for a value of the given function
84/// type, on top of any implicit parameters already stored. Use the
85/// given ExtInfo instead of the ExtInfo from the function type.
86static const CGFunctionInfo &arrangeLLVMFunctionInfo(CodeGenTypes &CGT,
87 SmallVectorImpl<CanQualType> &prefix,
88 CanQual<FunctionProtoType> FTP,
89 FunctionType::ExtInfo extInfo) {
90 RequiredArgs required = RequiredArgs::forPrototypePlus(FTP, prefix.size());
Daniel Dunbar541b63b2009-02-02 23:23:47 +000091 // FIXME: Kill copy.
Daniel Dunbar45c25ba2008-09-10 04:01:49 +000092 for (unsigned i = 0, e = FTP->getNumArgs(); i != e; ++i)
John McCall0f3d0972012-07-07 06:41:13 +000093 prefix.push_back(FTP->getArgType(i));
John McCallde5d3c72012-02-17 03:33:10 +000094 CanQualType resultType = FTP->getResultType().getUnqualifiedType();
John McCall0f3d0972012-07-07 06:41:13 +000095 return CGT.arrangeLLVMFunctionInfo(resultType, prefix, extInfo, required);
96}
97
98/// Arrange the argument and result information for a free function (i.e.
99/// not a C++ or ObjC instance method) of the given type.
100static const CGFunctionInfo &arrangeFreeFunctionType(CodeGenTypes &CGT,
101 SmallVectorImpl<CanQualType> &prefix,
102 CanQual<FunctionProtoType> FTP) {
103 return arrangeLLVMFunctionInfo(CGT, prefix, FTP, FTP->getExtInfo());
104}
105
106/// Given the formal ext-info of a C++ instance method, adjust it
107/// according to the C++ ABI in effect.
108static void adjustCXXMethodInfo(CodeGenTypes &CGT,
Timur Iskhodzhanov8f88a1d2012-07-12 09:50:54 +0000109 FunctionType::ExtInfo &extInfo,
110 bool isVariadic) {
111 if (extInfo.getCC() == CC_Default) {
112 CallingConv CC = CGT.getContext().getDefaultCXXMethodCallConv(isVariadic);
113 extInfo = extInfo.withCallingConv(CC);
114 }
John McCall0f3d0972012-07-07 06:41:13 +0000115}
116
117/// Arrange the argument and result information for a free function (i.e.
118/// not a C++ or ObjC instance method) of the given type.
119static const CGFunctionInfo &arrangeCXXMethodType(CodeGenTypes &CGT,
120 SmallVectorImpl<CanQualType> &prefix,
121 CanQual<FunctionProtoType> FTP) {
122 FunctionType::ExtInfo extInfo = FTP->getExtInfo();
Timur Iskhodzhanov8f88a1d2012-07-12 09:50:54 +0000123 adjustCXXMethodInfo(CGT, extInfo, FTP->isVariadic());
John McCall0f3d0972012-07-07 06:41:13 +0000124 return arrangeLLVMFunctionInfo(CGT, prefix, FTP, extInfo);
John McCall0b0ef0a2010-02-24 07:14:12 +0000125}
126
John McCallde5d3c72012-02-17 03:33:10 +0000127/// Arrange the argument and result information for a value of the
John McCall0f3d0972012-07-07 06:41:13 +0000128/// given freestanding function type.
John McCall0b0ef0a2010-02-24 07:14:12 +0000129const CGFunctionInfo &
John McCall0f3d0972012-07-07 06:41:13 +0000130CodeGenTypes::arrangeFreeFunctionType(CanQual<FunctionProtoType> FTP) {
John McCallde5d3c72012-02-17 03:33:10 +0000131 SmallVector<CanQualType, 16> argTypes;
John McCall0f3d0972012-07-07 06:41:13 +0000132 return ::arrangeFreeFunctionType(*this, argTypes, FTP);
Daniel Dunbarbac7c252009-09-11 22:24:53 +0000133}
134
John McCall04a67a62010-02-05 21:31:56 +0000135static CallingConv getCallingConventionForDecl(const Decl *D) {
Daniel Dunbarbac7c252009-09-11 22:24:53 +0000136 // Set the appropriate calling convention for the Function.
137 if (D->hasAttr<StdCallAttr>())
John McCall04a67a62010-02-05 21:31:56 +0000138 return CC_X86StdCall;
Daniel Dunbarbac7c252009-09-11 22:24:53 +0000139
140 if (D->hasAttr<FastCallAttr>())
John McCall04a67a62010-02-05 21:31:56 +0000141 return CC_X86FastCall;
Daniel Dunbarbac7c252009-09-11 22:24:53 +0000142
Douglas Gregorf813a2c2010-05-18 16:57:00 +0000143 if (D->hasAttr<ThisCallAttr>())
144 return CC_X86ThisCall;
145
Dawn Perchik52fc3142010-09-03 01:29:35 +0000146 if (D->hasAttr<PascalAttr>())
147 return CC_X86Pascal;
148
Anton Korobeynikov414d8962011-04-14 20:06:49 +0000149 if (PcsAttr *PCS = D->getAttr<PcsAttr>())
150 return (PCS->getPCS() == PcsAttr::AAPCS ? CC_AAPCS : CC_AAPCS_VFP);
151
Derek Schuff263366f2012-10-16 22:30:41 +0000152 if (D->hasAttr<PnaclCallAttr>())
153 return CC_PnaclCall;
154
Guy Benyei38980082012-12-25 08:53:55 +0000155 if (D->hasAttr<IntelOclBiccAttr>())
156 return CC_IntelOclBicc;
157
John McCall04a67a62010-02-05 21:31:56 +0000158 return CC_C;
Daniel Dunbar45c25ba2008-09-10 04:01:49 +0000159}
160
John McCallde5d3c72012-02-17 03:33:10 +0000161/// Arrange the argument and result information for a call to an
162/// unknown C++ non-static member function of the given abstract type.
163/// The member function must be an ordinary function, i.e. not a
164/// constructor or destructor.
165const CGFunctionInfo &
166CodeGenTypes::arrangeCXXMethodType(const CXXRecordDecl *RD,
167 const FunctionProtoType *FTP) {
168 SmallVector<CanQualType, 16> argTypes;
John McCall0b0ef0a2010-02-24 07:14:12 +0000169
Anders Carlsson375c31c2009-10-03 19:43:08 +0000170 // Add the 'this' pointer.
John McCallde5d3c72012-02-17 03:33:10 +0000171 argTypes.push_back(GetThisType(Context, RD));
John McCall0b0ef0a2010-02-24 07:14:12 +0000172
John McCall0f3d0972012-07-07 06:41:13 +0000173 return ::arrangeCXXMethodType(*this, argTypes,
Tilmann Scheller9c6082f2011-03-02 21:36:49 +0000174 FTP->getCanonicalTypeUnqualified().getAs<FunctionProtoType>());
Anders Carlsson375c31c2009-10-03 19:43:08 +0000175}
176
John McCallde5d3c72012-02-17 03:33:10 +0000177/// Arrange the argument and result information for a declaration or
178/// definition of the given C++ non-static member function. The
179/// member function must be an ordinary function, i.e. not a
180/// constructor or destructor.
181const CGFunctionInfo &
182CodeGenTypes::arrangeCXXMethodDeclaration(const CXXMethodDecl *MD) {
John McCallfc400282010-09-03 01:26:39 +0000183 assert(!isa<CXXConstructorDecl>(MD) && "wrong method for contructors!");
184 assert(!isa<CXXDestructorDecl>(MD) && "wrong method for destructors!");
185
John McCallde5d3c72012-02-17 03:33:10 +0000186 CanQual<FunctionProtoType> prototype = GetFormalType(MD);
Mike Stump1eb44332009-09-09 15:08:12 +0000187
John McCallde5d3c72012-02-17 03:33:10 +0000188 if (MD->isInstance()) {
189 // The abstract case is perfectly fine.
190 return arrangeCXXMethodType(MD->getParent(), prototype.getTypePtr());
191 }
192
John McCall0f3d0972012-07-07 06:41:13 +0000193 return arrangeFreeFunctionType(prototype);
Anders Carlssonf6f8ae52009-04-03 22:48:58 +0000194}
195
John McCallde5d3c72012-02-17 03:33:10 +0000196/// Arrange the argument and result information for a declaration
197/// or definition to the given constructor variant.
198const CGFunctionInfo &
199CodeGenTypes::arrangeCXXConstructorDeclaration(const CXXConstructorDecl *D,
200 CXXCtorType ctorKind) {
201 SmallVector<CanQualType, 16> argTypes;
202 argTypes.push_back(GetThisType(Context, D->getParent()));
Stephen Lin3258abc2013-06-19 23:23:19 +0000203 CanQualType resultType = Context.VoidTy;
Anders Carlssonf6c56e22009-11-25 03:15:49 +0000204
John McCallde5d3c72012-02-17 03:33:10 +0000205 TheCXXABI.BuildConstructorSignature(D, ctorKind, resultType, argTypes);
John McCall0b0ef0a2010-02-24 07:14:12 +0000206
John McCall4c40d982010-08-31 07:33:07 +0000207 CanQual<FunctionProtoType> FTP = GetFormalType(D);
208
John McCallde5d3c72012-02-17 03:33:10 +0000209 RequiredArgs required = RequiredArgs::forPrototypePlus(FTP, argTypes.size());
210
John McCall4c40d982010-08-31 07:33:07 +0000211 // Add the formal parameters.
212 for (unsigned i = 0, e = FTP->getNumArgs(); i != e; ++i)
John McCallde5d3c72012-02-17 03:33:10 +0000213 argTypes.push_back(FTP->getArgType(i));
John McCall4c40d982010-08-31 07:33:07 +0000214
John McCall0f3d0972012-07-07 06:41:13 +0000215 FunctionType::ExtInfo extInfo = FTP->getExtInfo();
Timur Iskhodzhanov8f88a1d2012-07-12 09:50:54 +0000216 adjustCXXMethodInfo(*this, extInfo, FTP->isVariadic());
John McCall0f3d0972012-07-07 06:41:13 +0000217 return arrangeLLVMFunctionInfo(resultType, argTypes, extInfo, required);
Anders Carlssonf6c56e22009-11-25 03:15:49 +0000218}
219
John McCallde5d3c72012-02-17 03:33:10 +0000220/// Arrange the argument and result information for a declaration,
221/// definition, or call to the given destructor variant. It so
222/// happens that all three cases produce the same information.
223const CGFunctionInfo &
224CodeGenTypes::arrangeCXXDestructor(const CXXDestructorDecl *D,
225 CXXDtorType dtorKind) {
226 SmallVector<CanQualType, 2> argTypes;
227 argTypes.push_back(GetThisType(Context, D->getParent()));
Stephen Lin3258abc2013-06-19 23:23:19 +0000228 CanQualType resultType = Context.VoidTy;
John McCall0b0ef0a2010-02-24 07:14:12 +0000229
John McCallde5d3c72012-02-17 03:33:10 +0000230 TheCXXABI.BuildDestructorSignature(D, dtorKind, resultType, argTypes);
John McCall4c40d982010-08-31 07:33:07 +0000231
232 CanQual<FunctionProtoType> FTP = GetFormalType(D);
233 assert(FTP->getNumArgs() == 0 && "dtor with formal parameters");
Timur Iskhodzhanov8f88a1d2012-07-12 09:50:54 +0000234 assert(FTP->isVariadic() == 0 && "dtor with formal parameters");
John McCall4c40d982010-08-31 07:33:07 +0000235
John McCall0f3d0972012-07-07 06:41:13 +0000236 FunctionType::ExtInfo extInfo = FTP->getExtInfo();
Timur Iskhodzhanov8f88a1d2012-07-12 09:50:54 +0000237 adjustCXXMethodInfo(*this, extInfo, false);
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();
Timur Iskhodzhanov8f88a1d2012-07-12 09:50:54 +0000396 adjustCXXMethodInfo(*this, info, FPT->isVariadic());
John McCall0f3d0972012-07-07 06:41:13 +0000397 return arrangeLLVMFunctionInfo(GetReturnType(FPT->getResultType()),
398 argTypes, info, required);
Daniel Dunbar725ad312009-01-31 02:19:00 +0000399}
400
John McCallde5d3c72012-02-17 03:33:10 +0000401const CGFunctionInfo &
402CodeGenTypes::arrangeFunctionDeclaration(QualType resultType,
403 const FunctionArgList &args,
404 const FunctionType::ExtInfo &info,
405 bool isVariadic) {
Daniel Dunbar541b63b2009-02-02 23:23:47 +0000406 // FIXME: Kill copy.
John McCallde5d3c72012-02-17 03:33:10 +0000407 SmallVector<CanQualType, 16> argTypes;
408 for (FunctionArgList::const_iterator i = args.begin(), e = args.end();
Daniel Dunbarbb36d332009-02-02 21:43:58 +0000409 i != e; ++i)
John McCallde5d3c72012-02-17 03:33:10 +0000410 argTypes.push_back(Context.getCanonicalParamType((*i)->getType()));
411
412 RequiredArgs required =
413 (isVariadic ? RequiredArgs(args.size()) : RequiredArgs::All);
John McCall0f3d0972012-07-07 06:41:13 +0000414 return arrangeLLVMFunctionInfo(GetReturnType(resultType), argTypes, info,
415 required);
Daniel Dunbar541b63b2009-02-02 23:23:47 +0000416}
417
John McCallde5d3c72012-02-17 03:33:10 +0000418const CGFunctionInfo &CodeGenTypes::arrangeNullaryFunction() {
Dmitri Gribenko55431692013-05-05 00:41:58 +0000419 return arrangeLLVMFunctionInfo(getContext().VoidTy, None,
John McCall0f3d0972012-07-07 06:41:13 +0000420 FunctionType::ExtInfo(), RequiredArgs::All);
John McCalld26bc762011-03-09 04:27:21 +0000421}
422
John McCallde5d3c72012-02-17 03:33:10 +0000423/// Arrange the argument and result information for an abstract value
424/// of a given function type. This is the method which all of the
425/// above functions ultimately defer to.
426const CGFunctionInfo &
John McCall0f3d0972012-07-07 06:41:13 +0000427CodeGenTypes::arrangeLLVMFunctionInfo(CanQualType resultType,
428 ArrayRef<CanQualType> argTypes,
429 FunctionType::ExtInfo info,
430 RequiredArgs required) {
John McCallead608a2010-02-26 00:48:12 +0000431#ifndef NDEBUG
John McCallde5d3c72012-02-17 03:33:10 +0000432 for (ArrayRef<CanQualType>::const_iterator
433 I = argTypes.begin(), E = argTypes.end(); I != E; ++I)
John McCallead608a2010-02-26 00:48:12 +0000434 assert(I->isCanonicalAsParam());
435#endif
436
John McCallde5d3c72012-02-17 03:33:10 +0000437 unsigned CC = ClangCallConvToLLVMCallConv(info.getCC());
John McCall04a67a62010-02-05 21:31:56 +0000438
Daniel Dunbar40a6be62009-02-03 00:07:12 +0000439 // Lookup or create unique function info.
440 llvm::FoldingSetNodeID ID;
John McCallde5d3c72012-02-17 03:33:10 +0000441 CGFunctionInfo::Profile(ID, info, required, resultType, argTypes);
Daniel Dunbar40a6be62009-02-03 00:07:12 +0000442
John McCallde5d3c72012-02-17 03:33:10 +0000443 void *insertPos = 0;
444 CGFunctionInfo *FI = FunctionInfos.FindNodeOrInsertPos(ID, insertPos);
Daniel Dunbar40a6be62009-02-03 00:07:12 +0000445 if (FI)
446 return *FI;
447
John McCallde5d3c72012-02-17 03:33:10 +0000448 // Construct the function info. We co-allocate the ArgInfos.
449 FI = CGFunctionInfo::create(CC, info, resultType, argTypes, required);
450 FunctionInfos.InsertNode(FI, insertPos);
Daniel Dunbar88c2fa92009-02-03 05:31:23 +0000451
John McCallde5d3c72012-02-17 03:33:10 +0000452 bool inserted = FunctionsBeingProcessed.insert(FI); (void)inserted;
453 assert(inserted && "Recursively being processed?");
Chris Lattner71305cc2011-07-15 05:16:14 +0000454
Daniel Dunbar88c2fa92009-02-03 05:31:23 +0000455 // Compute ABI information.
Chris Lattneree5dcd02010-07-29 02:31:05 +0000456 getABIInfo().computeInfo(*FI);
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000457
Chris Lattner800588f2010-07-29 06:26:06 +0000458 // Loop over all of the computed argument and return value info. If any of
459 // them are direct or extend without a specified coerce type, specify the
460 // default now.
John McCallde5d3c72012-02-17 03:33:10 +0000461 ABIArgInfo &retInfo = FI->getReturnInfo();
462 if (retInfo.canHaveCoerceToType() && retInfo.getCoerceToType() == 0)
463 retInfo.setCoerceToType(ConvertType(FI->getReturnType()));
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000464
Chris Lattner800588f2010-07-29 06:26:06 +0000465 for (CGFunctionInfo::arg_iterator I = FI->arg_begin(), E = FI->arg_end();
466 I != E; ++I)
467 if (I->info.canHaveCoerceToType() && I->info.getCoerceToType() == 0)
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000468 I->info.setCoerceToType(ConvertType(I->type));
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000469
John McCallde5d3c72012-02-17 03:33:10 +0000470 bool erased = FunctionsBeingProcessed.erase(FI); (void)erased;
471 assert(erased && "Not in set?");
Chris Lattnerd26c0712011-07-15 06:41:05 +0000472
Daniel Dunbar40a6be62009-02-03 00:07:12 +0000473 return *FI;
Daniel Dunbar541b63b2009-02-02 23:23:47 +0000474}
475
John McCallde5d3c72012-02-17 03:33:10 +0000476CGFunctionInfo *CGFunctionInfo::create(unsigned llvmCC,
477 const FunctionType::ExtInfo &info,
478 CanQualType resultType,
479 ArrayRef<CanQualType> argTypes,
480 RequiredArgs required) {
481 void *buffer = operator new(sizeof(CGFunctionInfo) +
482 sizeof(ArgInfo) * (argTypes.size() + 1));
483 CGFunctionInfo *FI = new(buffer) CGFunctionInfo();
484 FI->CallingConvention = llvmCC;
485 FI->EffectiveCallingConvention = llvmCC;
486 FI->ASTCallingConvention = info.getCC();
487 FI->NoReturn = info.getNoReturn();
488 FI->ReturnsRetained = info.getProducesResult();
489 FI->Required = required;
490 FI->HasRegParm = info.getHasRegParm();
491 FI->RegParm = info.getRegParm();
492 FI->NumArgs = argTypes.size();
493 FI->getArgsBuffer()[0].type = resultType;
494 for (unsigned i = 0, e = argTypes.size(); i != e; ++i)
495 FI->getArgsBuffer()[i + 1].type = argTypes[i];
496 return FI;
Daniel Dunbar88c2fa92009-02-03 05:31:23 +0000497}
498
499/***/
500
John McCall42e06112011-05-15 02:19:42 +0000501void CodeGenTypes::GetExpandedTypes(QualType type,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000502 SmallVectorImpl<llvm::Type*> &expandedTypes) {
Bob Wilson194f06a2011-08-03 05:58:22 +0000503 if (const ConstantArrayType *AT = Context.getAsConstantArrayType(type)) {
504 uint64_t NumElts = AT->getSize().getZExtValue();
505 for (uint64_t Elt = 0; Elt < NumElts; ++Elt)
506 GetExpandedTypes(AT->getElementType(), expandedTypes);
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +0000507 } else if (const RecordType *RT = type->getAs<RecordType>()) {
Bob Wilson194f06a2011-08-03 05:58:22 +0000508 const RecordDecl *RD = RT->getDecl();
509 assert(!RD->hasFlexibleArrayMember() &&
510 "Cannot expand structure with flexible array.");
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +0000511 if (RD->isUnion()) {
512 // Unions can be here only in degenerative cases - all the fields are same
513 // after flattening. Thus we have to use the "largest" field.
514 const FieldDecl *LargestFD = 0;
515 CharUnits UnionSize = CharUnits::Zero();
516
517 for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end();
518 i != e; ++i) {
David Blaikie581deb32012-06-06 20:45:41 +0000519 const FieldDecl *FD = *i;
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +0000520 assert(!FD->isBitField() &&
521 "Cannot expand structure with bit-field members.");
522 CharUnits FieldSize = getContext().getTypeSizeInChars(FD->getType());
523 if (UnionSize < FieldSize) {
524 UnionSize = FieldSize;
525 LargestFD = FD;
526 }
527 }
528 if (LargestFD)
529 GetExpandedTypes(LargestFD->getType(), expandedTypes);
530 } else {
531 for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end();
532 i != e; ++i) {
David Blaikie581deb32012-06-06 20:45:41 +0000533 assert(!i->isBitField() &&
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +0000534 "Cannot expand structure with bit-field members.");
David Blaikie581deb32012-06-06 20:45:41 +0000535 GetExpandedTypes(i->getType(), expandedTypes);
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +0000536 }
Bob Wilson194f06a2011-08-03 05:58:22 +0000537 }
538 } else if (const ComplexType *CT = type->getAs<ComplexType>()) {
539 llvm::Type *EltTy = ConvertType(CT->getElementType());
540 expandedTypes.push_back(EltTy);
541 expandedTypes.push_back(EltTy);
542 } else
543 expandedTypes.push_back(ConvertType(type));
Daniel Dunbar56273772008-09-17 00:51:38 +0000544}
545
Mike Stump1eb44332009-09-09 15:08:12 +0000546llvm::Function::arg_iterator
Daniel Dunbar56273772008-09-17 00:51:38 +0000547CodeGenFunction::ExpandTypeFromArgs(QualType Ty, LValue LV,
548 llvm::Function::arg_iterator AI) {
Mike Stump1eb44332009-09-09 15:08:12 +0000549 assert(LV.isSimple() &&
550 "Unexpected non-simple lvalue during struct expansion.");
Daniel Dunbar56273772008-09-17 00:51:38 +0000551
Bob Wilson194f06a2011-08-03 05:58:22 +0000552 if (const ConstantArrayType *AT = getContext().getAsConstantArrayType(Ty)) {
553 unsigned NumElts = AT->getSize().getZExtValue();
554 QualType EltTy = AT->getElementType();
555 for (unsigned Elt = 0; Elt < NumElts; ++Elt) {
Eli Friedman377ecc72012-04-16 03:54:45 +0000556 llvm::Value *EltAddr = Builder.CreateConstGEP2_32(LV.getAddress(), 0, Elt);
Bob Wilson194f06a2011-08-03 05:58:22 +0000557 LValue LV = MakeAddrLValue(EltAddr, EltTy);
558 AI = ExpandTypeFromArgs(EltTy, LV, AI);
Daniel Dunbar56273772008-09-17 00:51:38 +0000559 }
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +0000560 } else if (const RecordType *RT = Ty->getAs<RecordType>()) {
Bob Wilson194f06a2011-08-03 05:58:22 +0000561 RecordDecl *RD = RT->getDecl();
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +0000562 if (RD->isUnion()) {
563 // Unions can be here only in degenerative cases - all the fields are same
564 // after flattening. Thus we have to use the "largest" field.
565 const FieldDecl *LargestFD = 0;
566 CharUnits UnionSize = CharUnits::Zero();
Bob Wilson194f06a2011-08-03 05:58:22 +0000567
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +0000568 for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end();
569 i != e; ++i) {
David Blaikie581deb32012-06-06 20:45:41 +0000570 const FieldDecl *FD = *i;
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +0000571 assert(!FD->isBitField() &&
572 "Cannot expand structure with bit-field members.");
573 CharUnits FieldSize = getContext().getTypeSizeInChars(FD->getType());
574 if (UnionSize < FieldSize) {
575 UnionSize = FieldSize;
576 LargestFD = FD;
577 }
578 }
579 if (LargestFD) {
580 // FIXME: What are the right qualifiers here?
Eli Friedman377ecc72012-04-16 03:54:45 +0000581 LValue SubLV = EmitLValueForField(LV, LargestFD);
582 AI = ExpandTypeFromArgs(LargestFD->getType(), SubLV, AI);
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +0000583 }
584 } else {
585 for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end();
586 i != e; ++i) {
David Blaikie581deb32012-06-06 20:45:41 +0000587 FieldDecl *FD = *i;
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +0000588 QualType FT = FD->getType();
589
590 // FIXME: What are the right qualifiers here?
Eli Friedman377ecc72012-04-16 03:54:45 +0000591 LValue SubLV = EmitLValueForField(LV, FD);
592 AI = ExpandTypeFromArgs(FT, SubLV, AI);
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +0000593 }
Bob Wilson194f06a2011-08-03 05:58:22 +0000594 }
595 } else if (const ComplexType *CT = Ty->getAs<ComplexType>()) {
596 QualType EltTy = CT->getElementType();
Eli Friedman377ecc72012-04-16 03:54:45 +0000597 llvm::Value *RealAddr = Builder.CreateStructGEP(LV.getAddress(), 0, "real");
Bob Wilson194f06a2011-08-03 05:58:22 +0000598 EmitStoreThroughLValue(RValue::get(AI++), MakeAddrLValue(RealAddr, EltTy));
Eli Friedman377ecc72012-04-16 03:54:45 +0000599 llvm::Value *ImagAddr = Builder.CreateStructGEP(LV.getAddress(), 1, "imag");
Bob Wilson194f06a2011-08-03 05:58:22 +0000600 EmitStoreThroughLValue(RValue::get(AI++), MakeAddrLValue(ImagAddr, EltTy));
601 } else {
602 EmitStoreThroughLValue(RValue::get(AI), LV);
603 ++AI;
Daniel Dunbar56273772008-09-17 00:51:38 +0000604 }
605
606 return AI;
607}
608
Chris Lattnere7bb7772010-06-27 06:04:18 +0000609/// EnterStructPointerForCoercedAccess - Given a struct pointer that we are
Chris Lattner08dd2a02010-06-27 05:56:15 +0000610/// accessing some number of bytes out of it, try to gep into the struct to get
611/// at its inner goodness. Dive as deep as possible without entering an element
612/// with an in-memory size smaller than DstSize.
613static llvm::Value *
Chris Lattnere7bb7772010-06-27 06:04:18 +0000614EnterStructPointerForCoercedAccess(llvm::Value *SrcPtr,
Chris Lattner2acc6e32011-07-18 04:24:23 +0000615 llvm::StructType *SrcSTy,
Chris Lattnere7bb7772010-06-27 06:04:18 +0000616 uint64_t DstSize, CodeGenFunction &CGF) {
Chris Lattner08dd2a02010-06-27 05:56:15 +0000617 // We can't dive into a zero-element struct.
618 if (SrcSTy->getNumElements() == 0) return SrcPtr;
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000619
Chris Lattner2acc6e32011-07-18 04:24:23 +0000620 llvm::Type *FirstElt = SrcSTy->getElementType(0);
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000621
Chris Lattner08dd2a02010-06-27 05:56:15 +0000622 // If the first elt is at least as large as what we're looking for, or if the
623 // first element is the same size as the whole struct, we can enter it.
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000624 uint64_t FirstEltSize =
Micah Villmow25a6a842012-10-08 16:25:52 +0000625 CGF.CGM.getDataLayout().getTypeAllocSize(FirstElt);
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000626 if (FirstEltSize < DstSize &&
Micah Villmow25a6a842012-10-08 16:25:52 +0000627 FirstEltSize < CGF.CGM.getDataLayout().getTypeAllocSize(SrcSTy))
Chris Lattner08dd2a02010-06-27 05:56:15 +0000628 return SrcPtr;
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000629
Chris Lattner08dd2a02010-06-27 05:56:15 +0000630 // GEP into the first element.
631 SrcPtr = CGF.Builder.CreateConstGEP2_32(SrcPtr, 0, 0, "coerce.dive");
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000632
Chris Lattner08dd2a02010-06-27 05:56:15 +0000633 // If the first element is a struct, recurse.
Chris Lattner2acc6e32011-07-18 04:24:23 +0000634 llvm::Type *SrcTy =
Chris Lattner08dd2a02010-06-27 05:56:15 +0000635 cast<llvm::PointerType>(SrcPtr->getType())->getElementType();
Chris Lattner2acc6e32011-07-18 04:24:23 +0000636 if (llvm::StructType *SrcSTy = dyn_cast<llvm::StructType>(SrcTy))
Chris Lattnere7bb7772010-06-27 06:04:18 +0000637 return EnterStructPointerForCoercedAccess(SrcPtr, SrcSTy, DstSize, CGF);
Chris Lattner08dd2a02010-06-27 05:56:15 +0000638
639 return SrcPtr;
640}
641
Chris Lattner6d11cdb2010-06-27 06:26:04 +0000642/// CoerceIntOrPtrToIntOrPtr - Convert a value Val to the specific Ty where both
643/// are either integers or pointers. This does a truncation of the value if it
644/// is too large or a zero extension if it is too small.
Jakob Stoklund Olesen7e9f52f2013-06-05 03:00:13 +0000645///
646/// This behaves as if the value were coerced through memory, so on big-endian
647/// targets the high bits are preserved in a truncation, while little-endian
648/// targets preserve the low bits.
Chris Lattner6d11cdb2010-06-27 06:26:04 +0000649static llvm::Value *CoerceIntOrPtrToIntOrPtr(llvm::Value *Val,
Chris Lattner2acc6e32011-07-18 04:24:23 +0000650 llvm::Type *Ty,
Chris Lattner6d11cdb2010-06-27 06:26:04 +0000651 CodeGenFunction &CGF) {
652 if (Val->getType() == Ty)
653 return Val;
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000654
Chris Lattner6d11cdb2010-06-27 06:26:04 +0000655 if (isa<llvm::PointerType>(Val->getType())) {
656 // If this is Pointer->Pointer avoid conversion to and from int.
657 if (isa<llvm::PointerType>(Ty))
658 return CGF.Builder.CreateBitCast(Val, Ty, "coerce.val");
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000659
Chris Lattner6d11cdb2010-06-27 06:26:04 +0000660 // Convert the pointer to an integer so we can play with its width.
Chris Lattner77b89b82010-06-27 07:15:29 +0000661 Val = CGF.Builder.CreatePtrToInt(Val, CGF.IntPtrTy, "coerce.val.pi");
Chris Lattner6d11cdb2010-06-27 06:26:04 +0000662 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000663
Chris Lattner2acc6e32011-07-18 04:24:23 +0000664 llvm::Type *DestIntTy = Ty;
Chris Lattner6d11cdb2010-06-27 06:26:04 +0000665 if (isa<llvm::PointerType>(DestIntTy))
Chris Lattner77b89b82010-06-27 07:15:29 +0000666 DestIntTy = CGF.IntPtrTy;
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000667
Jakob Stoklund Olesen7e9f52f2013-06-05 03:00:13 +0000668 if (Val->getType() != DestIntTy) {
669 const llvm::DataLayout &DL = CGF.CGM.getDataLayout();
670 if (DL.isBigEndian()) {
671 // Preserve the high bits on big-endian targets.
672 // That is what memory coercion does.
673 uint64_t SrcSize = DL.getTypeAllocSizeInBits(Val->getType());
674 uint64_t DstSize = DL.getTypeAllocSizeInBits(DestIntTy);
675 if (SrcSize > DstSize) {
676 Val = CGF.Builder.CreateLShr(Val, SrcSize - DstSize, "coerce.highbits");
677 Val = CGF.Builder.CreateTrunc(Val, DestIntTy, "coerce.val.ii");
678 } else {
679 Val = CGF.Builder.CreateZExt(Val, DestIntTy, "coerce.val.ii");
680 Val = CGF.Builder.CreateShl(Val, DstSize - SrcSize, "coerce.highbits");
681 }
682 } else {
683 // Little-endian targets preserve the low bits. No shifts required.
684 Val = CGF.Builder.CreateIntCast(Val, DestIntTy, false, "coerce.val.ii");
685 }
686 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000687
Chris Lattner6d11cdb2010-06-27 06:26:04 +0000688 if (isa<llvm::PointerType>(Ty))
689 Val = CGF.Builder.CreateIntToPtr(Val, Ty, "coerce.val.ip");
690 return Val;
691}
692
Chris Lattner08dd2a02010-06-27 05:56:15 +0000693
694
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000695/// CreateCoercedLoad - Create a load from \arg SrcPtr interpreted as
696/// a pointer to an object of type \arg Ty.
697///
698/// This safely handles the case when the src type is smaller than the
699/// destination type; in this situation the values of bits which not
700/// present in the src are undefined.
701static llvm::Value *CreateCoercedLoad(llvm::Value *SrcPtr,
Chris Lattner2acc6e32011-07-18 04:24:23 +0000702 llvm::Type *Ty,
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000703 CodeGenFunction &CGF) {
Chris Lattner2acc6e32011-07-18 04:24:23 +0000704 llvm::Type *SrcTy =
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000705 cast<llvm::PointerType>(SrcPtr->getType())->getElementType();
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000706
Chris Lattner6ae00692010-06-28 22:51:39 +0000707 // If SrcTy and Ty are the same, just do a load.
708 if (SrcTy == Ty)
709 return CGF.Builder.CreateLoad(SrcPtr);
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000710
Micah Villmow25a6a842012-10-08 16:25:52 +0000711 uint64_t DstSize = CGF.CGM.getDataLayout().getTypeAllocSize(Ty);
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000712
Chris Lattner2acc6e32011-07-18 04:24:23 +0000713 if (llvm::StructType *SrcSTy = dyn_cast<llvm::StructType>(SrcTy)) {
Chris Lattnere7bb7772010-06-27 06:04:18 +0000714 SrcPtr = EnterStructPointerForCoercedAccess(SrcPtr, SrcSTy, DstSize, CGF);
Chris Lattner08dd2a02010-06-27 05:56:15 +0000715 SrcTy = cast<llvm::PointerType>(SrcPtr->getType())->getElementType();
716 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000717
Micah Villmow25a6a842012-10-08 16:25:52 +0000718 uint64_t SrcSize = CGF.CGM.getDataLayout().getTypeAllocSize(SrcTy);
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000719
Chris Lattner6d11cdb2010-06-27 06:26:04 +0000720 // If the source and destination are integer or pointer types, just do an
721 // extension or truncation to the desired type.
722 if ((isa<llvm::IntegerType>(Ty) || isa<llvm::PointerType>(Ty)) &&
723 (isa<llvm::IntegerType>(SrcTy) || isa<llvm::PointerType>(SrcTy))) {
724 llvm::LoadInst *Load = CGF.Builder.CreateLoad(SrcPtr);
725 return CoerceIntOrPtrToIntOrPtr(Load, Ty, CGF);
726 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000727
Daniel Dunbarb225be42009-02-03 05:59:18 +0000728 // If load is legal, just bitcast the src pointer.
Daniel Dunbar7ef455b2009-05-13 18:54:26 +0000729 if (SrcSize >= DstSize) {
Mike Stumpf5408fe2009-05-16 07:57:57 +0000730 // Generally SrcSize is never greater than DstSize, since this means we are
731 // losing bits. However, this can happen in cases where the structure has
732 // additional padding, for example due to a user specified alignment.
Daniel Dunbar7ef455b2009-05-13 18:54:26 +0000733 //
Mike Stumpf5408fe2009-05-16 07:57:57 +0000734 // FIXME: Assert that we aren't truncating non-padding bits when have access
735 // to that information.
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000736 llvm::Value *Casted =
737 CGF.Builder.CreateBitCast(SrcPtr, llvm::PointerType::getUnqual(Ty));
Daniel Dunbar386621f2009-02-07 02:46:03 +0000738 llvm::LoadInst *Load = CGF.Builder.CreateLoad(Casted);
739 // FIXME: Use better alignment / avoid requiring aligned load.
740 Load->setAlignment(1);
741 return Load;
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000742 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000743
Chris Lattner35b21b82010-06-27 01:06:27 +0000744 // Otherwise do coercion through memory. This is stupid, but
745 // simple.
746 llvm::Value *Tmp = CGF.CreateTempAlloca(Ty);
Manman Renf51c61c2012-11-28 22:08:52 +0000747 llvm::Type *I8PtrTy = CGF.Builder.getInt8PtrTy();
748 llvm::Value *Casted = CGF.Builder.CreateBitCast(Tmp, I8PtrTy);
749 llvm::Value *SrcCasted = CGF.Builder.CreateBitCast(SrcPtr, I8PtrTy);
Manman Ren060f34d2012-11-28 22:29:41 +0000750 // FIXME: Use better alignment.
Manman Renf51c61c2012-11-28 22:08:52 +0000751 CGF.Builder.CreateMemCpy(Casted, SrcCasted,
752 llvm::ConstantInt::get(CGF.IntPtrTy, SrcSize),
753 1, false);
Chris Lattner35b21b82010-06-27 01:06:27 +0000754 return CGF.Builder.CreateLoad(Tmp);
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000755}
756
Eli Friedmanbadea572011-05-17 21:08:01 +0000757// Function to store a first-class aggregate into memory. We prefer to
758// store the elements rather than the aggregate to be more friendly to
759// fast-isel.
760// FIXME: Do we need to recurse here?
761static void BuildAggStore(CodeGenFunction &CGF, llvm::Value *Val,
762 llvm::Value *DestPtr, bool DestIsVolatile,
763 bool LowAlignment) {
764 // Prefer scalar stores to first-class aggregate stores.
Chris Lattner2acc6e32011-07-18 04:24:23 +0000765 if (llvm::StructType *STy =
Eli Friedmanbadea572011-05-17 21:08:01 +0000766 dyn_cast<llvm::StructType>(Val->getType())) {
767 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
768 llvm::Value *EltPtr = CGF.Builder.CreateConstGEP2_32(DestPtr, 0, i);
769 llvm::Value *Elt = CGF.Builder.CreateExtractValue(Val, i);
770 llvm::StoreInst *SI = CGF.Builder.CreateStore(Elt, EltPtr,
771 DestIsVolatile);
772 if (LowAlignment)
773 SI->setAlignment(1);
774 }
775 } else {
Bill Wendling08212632012-03-16 21:45:12 +0000776 llvm::StoreInst *SI = CGF.Builder.CreateStore(Val, DestPtr, DestIsVolatile);
777 if (LowAlignment)
778 SI->setAlignment(1);
Eli Friedmanbadea572011-05-17 21:08:01 +0000779 }
780}
781
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000782/// CreateCoercedStore - Create a store to \arg DstPtr from \arg Src,
783/// where the source and destination may have different types.
784///
785/// This safely handles the case when the src type is larger than the
786/// destination type; the upper bits of the src will be lost.
787static void CreateCoercedStore(llvm::Value *Src,
788 llvm::Value *DstPtr,
Anders Carlssond2490a92009-12-24 20:40:36 +0000789 bool DstIsVolatile,
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000790 CodeGenFunction &CGF) {
Chris Lattner2acc6e32011-07-18 04:24:23 +0000791 llvm::Type *SrcTy = Src->getType();
792 llvm::Type *DstTy =
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000793 cast<llvm::PointerType>(DstPtr->getType())->getElementType();
Chris Lattner6ae00692010-06-28 22:51:39 +0000794 if (SrcTy == DstTy) {
795 CGF.Builder.CreateStore(Src, DstPtr, DstIsVolatile);
796 return;
797 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000798
Micah Villmow25a6a842012-10-08 16:25:52 +0000799 uint64_t SrcSize = CGF.CGM.getDataLayout().getTypeAllocSize(SrcTy);
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000800
Chris Lattner2acc6e32011-07-18 04:24:23 +0000801 if (llvm::StructType *DstSTy = dyn_cast<llvm::StructType>(DstTy)) {
Chris Lattnere7bb7772010-06-27 06:04:18 +0000802 DstPtr = EnterStructPointerForCoercedAccess(DstPtr, DstSTy, SrcSize, CGF);
803 DstTy = cast<llvm::PointerType>(DstPtr->getType())->getElementType();
804 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000805
Chris Lattner6d11cdb2010-06-27 06:26:04 +0000806 // If the source and destination are integer or pointer types, just do an
807 // extension or truncation to the desired type.
808 if ((isa<llvm::IntegerType>(SrcTy) || isa<llvm::PointerType>(SrcTy)) &&
809 (isa<llvm::IntegerType>(DstTy) || isa<llvm::PointerType>(DstTy))) {
810 Src = CoerceIntOrPtrToIntOrPtr(Src, DstTy, CGF);
811 CGF.Builder.CreateStore(Src, DstPtr, DstIsVolatile);
812 return;
813 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000814
Micah Villmow25a6a842012-10-08 16:25:52 +0000815 uint64_t DstSize = CGF.CGM.getDataLayout().getTypeAllocSize(DstTy);
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000816
Daniel Dunbar88c2fa92009-02-03 05:31:23 +0000817 // If store is legal, just bitcast the src pointer.
Daniel Dunbarfdf49862009-06-05 07:58:54 +0000818 if (SrcSize <= DstSize) {
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000819 llvm::Value *Casted =
820 CGF.Builder.CreateBitCast(DstPtr, llvm::PointerType::getUnqual(SrcTy));
Daniel Dunbar386621f2009-02-07 02:46:03 +0000821 // FIXME: Use better alignment / avoid requiring aligned store.
Eli Friedmanbadea572011-05-17 21:08:01 +0000822 BuildAggStore(CGF, Src, Casted, DstIsVolatile, true);
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000823 } else {
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000824 // Otherwise do coercion through memory. This is stupid, but
825 // simple.
Daniel Dunbarfdf49862009-06-05 07:58:54 +0000826
827 // Generally SrcSize is never greater than DstSize, since this means we are
828 // losing bits. However, this can happen in cases where the structure has
829 // additional padding, for example due to a user specified alignment.
830 //
831 // FIXME: Assert that we aren't truncating non-padding bits when have access
832 // to that information.
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000833 llvm::Value *Tmp = CGF.CreateTempAlloca(SrcTy);
834 CGF.Builder.CreateStore(Src, Tmp);
Manman Renf51c61c2012-11-28 22:08:52 +0000835 llvm::Type *I8PtrTy = CGF.Builder.getInt8PtrTy();
836 llvm::Value *Casted = CGF.Builder.CreateBitCast(Tmp, I8PtrTy);
837 llvm::Value *DstCasted = CGF.Builder.CreateBitCast(DstPtr, I8PtrTy);
Manman Ren060f34d2012-11-28 22:29:41 +0000838 // FIXME: Use better alignment.
Manman Renf51c61c2012-11-28 22:08:52 +0000839 CGF.Builder.CreateMemCpy(DstCasted, Casted,
840 llvm::ConstantInt::get(CGF.IntPtrTy, DstSize),
841 1, false);
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000842 }
843}
844
Daniel Dunbar56273772008-09-17 00:51:38 +0000845/***/
846
Daniel Dunbardacf9dd2010-07-14 23:39:36 +0000847bool CodeGenModule::ReturnTypeUsesSRet(const CGFunctionInfo &FI) {
Daniel Dunbar11e383a2009-02-05 08:00:50 +0000848 return FI.getReturnInfo().isIndirect();
Daniel Dunbarbb36d332009-02-02 21:43:58 +0000849}
850
Daniel Dunbardacf9dd2010-07-14 23:39:36 +0000851bool CodeGenModule::ReturnTypeUsesFPRet(QualType ResultType) {
852 if (const BuiltinType *BT = ResultType->getAs<BuiltinType>()) {
853 switch (BT->getKind()) {
854 default:
855 return false;
856 case BuiltinType::Float:
John McCall64aa4b32013-04-16 22:48:15 +0000857 return getTarget().useObjCFPRetForRealType(TargetInfo::Float);
Daniel Dunbardacf9dd2010-07-14 23:39:36 +0000858 case BuiltinType::Double:
John McCall64aa4b32013-04-16 22:48:15 +0000859 return getTarget().useObjCFPRetForRealType(TargetInfo::Double);
Daniel Dunbardacf9dd2010-07-14 23:39:36 +0000860 case BuiltinType::LongDouble:
John McCall64aa4b32013-04-16 22:48:15 +0000861 return getTarget().useObjCFPRetForRealType(TargetInfo::LongDouble);
Daniel Dunbardacf9dd2010-07-14 23:39:36 +0000862 }
863 }
864
865 return false;
866}
867
Anders Carlssoneea64802011-10-31 16:27:11 +0000868bool CodeGenModule::ReturnTypeUsesFP2Ret(QualType ResultType) {
869 if (const ComplexType *CT = ResultType->getAs<ComplexType>()) {
870 if (const BuiltinType *BT = CT->getElementType()->getAs<BuiltinType>()) {
871 if (BT->getKind() == BuiltinType::LongDouble)
John McCall64aa4b32013-04-16 22:48:15 +0000872 return getTarget().useObjCFP2RetForComplexLongDouble();
Anders Carlssoneea64802011-10-31 16:27:11 +0000873 }
874 }
875
876 return false;
877}
878
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000879llvm::FunctionType *CodeGenTypes::GetFunctionType(GlobalDecl GD) {
John McCallde5d3c72012-02-17 03:33:10 +0000880 const CGFunctionInfo &FI = arrangeGlobalDeclaration(GD);
881 return GetFunctionType(FI);
John McCallc0bf4622010-02-23 00:48:20 +0000882}
883
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000884llvm::FunctionType *
John McCallde5d3c72012-02-17 03:33:10 +0000885CodeGenTypes::GetFunctionType(const CGFunctionInfo &FI) {
Chris Lattner71305cc2011-07-15 05:16:14 +0000886
887 bool Inserted = FunctionsBeingProcessed.insert(&FI); (void)Inserted;
888 assert(Inserted && "Recursively being processed?");
889
Chris Lattner5f9e2722011-07-23 10:55:15 +0000890 SmallVector<llvm::Type*, 8> argTypes;
Chris Lattner2acc6e32011-07-18 04:24:23 +0000891 llvm::Type *resultType = 0;
Daniel Dunbar45c25ba2008-09-10 04:01:49 +0000892
John McCall42e06112011-05-15 02:19:42 +0000893 const ABIArgInfo &retAI = FI.getReturnInfo();
894 switch (retAI.getKind()) {
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000895 case ABIArgInfo::Expand:
John McCall42e06112011-05-15 02:19:42 +0000896 llvm_unreachable("Invalid ABI kind for return argument");
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000897
Anton Korobeynikovcc6fa882009-06-06 09:36:29 +0000898 case ABIArgInfo::Extend:
Daniel Dunbar46327aa2009-02-03 06:17:37 +0000899 case ABIArgInfo::Direct:
John McCall42e06112011-05-15 02:19:42 +0000900 resultType = retAI.getCoerceToType();
Daniel Dunbar46327aa2009-02-03 06:17:37 +0000901 break;
902
Daniel Dunbar11e383a2009-02-05 08:00:50 +0000903 case ABIArgInfo::Indirect: {
John McCall42e06112011-05-15 02:19:42 +0000904 assert(!retAI.getIndirectAlign() && "Align unused on indirect return.");
905 resultType = llvm::Type::getVoidTy(getLLVMContext());
906
907 QualType ret = FI.getReturnType();
Chris Lattner2acc6e32011-07-18 04:24:23 +0000908 llvm::Type *ty = ConvertType(ret);
John McCall42e06112011-05-15 02:19:42 +0000909 unsigned addressSpace = Context.getTargetAddressSpace(ret);
910 argTypes.push_back(llvm::PointerType::get(ty, addressSpace));
Daniel Dunbar45c25ba2008-09-10 04:01:49 +0000911 break;
912 }
913
Daniel Dunbar11434922009-01-26 21:26:08 +0000914 case ABIArgInfo::Ignore:
John McCall42e06112011-05-15 02:19:42 +0000915 resultType = llvm::Type::getVoidTy(getLLVMContext());
Daniel Dunbar11434922009-01-26 21:26:08 +0000916 break;
Daniel Dunbar45c25ba2008-09-10 04:01:49 +0000917 }
Mike Stump1eb44332009-09-09 15:08:12 +0000918
John McCalle56bb362012-12-07 07:03:17 +0000919 // Add in all of the required arguments.
920 CGFunctionInfo::const_arg_iterator it = FI.arg_begin(), ie;
921 if (FI.isVariadic()) {
922 ie = it + FI.getRequiredArgs().getNumRequiredArgs();
923 } else {
924 ie = FI.arg_end();
925 }
926 for (; it != ie; ++it) {
John McCall42e06112011-05-15 02:19:42 +0000927 const ABIArgInfo &argAI = it->info;
Mike Stump1eb44332009-09-09 15:08:12 +0000928
Rafael Espindolae4aeeaa2012-10-24 01:59:00 +0000929 // Insert a padding type to ensure proper alignment.
930 if (llvm::Type *PaddingType = argAI.getPaddingType())
931 argTypes.push_back(PaddingType);
932
John McCall42e06112011-05-15 02:19:42 +0000933 switch (argAI.getKind()) {
Daniel Dunbar11434922009-01-26 21:26:08 +0000934 case ABIArgInfo::Ignore:
935 break;
936
Chris Lattner800588f2010-07-29 06:26:06 +0000937 case ABIArgInfo::Indirect: {
938 // indirect arguments are always on the stack, which is addr space #0.
Chris Lattner2acc6e32011-07-18 04:24:23 +0000939 llvm::Type *LTy = ConvertTypeForMem(it->type);
John McCall42e06112011-05-15 02:19:42 +0000940 argTypes.push_back(LTy->getPointerTo());
Chris Lattner800588f2010-07-29 06:26:06 +0000941 break;
942 }
943
944 case ABIArgInfo::Extend:
Chris Lattner1ed72672010-07-29 06:44:09 +0000945 case ABIArgInfo::Direct: {
Chris Lattnerce700162010-06-28 23:44:11 +0000946 // If the coerce-to type is a first class aggregate, flatten it. Either
947 // way is semantically identical, but fast-isel and the optimizer
948 // generally likes scalar values better than FCAs.
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000949 llvm::Type *argType = argAI.getCoerceToType();
Chris Lattner2acc6e32011-07-18 04:24:23 +0000950 if (llvm::StructType *st = dyn_cast<llvm::StructType>(argType)) {
John McCall42e06112011-05-15 02:19:42 +0000951 for (unsigned i = 0, e = st->getNumElements(); i != e; ++i)
952 argTypes.push_back(st->getElementType(i));
Chris Lattnerce700162010-06-28 23:44:11 +0000953 } else {
John McCall42e06112011-05-15 02:19:42 +0000954 argTypes.push_back(argType);
Chris Lattnerce700162010-06-28 23:44:11 +0000955 }
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +0000956 break;
Chris Lattner1ed72672010-07-29 06:44:09 +0000957 }
Mike Stump1eb44332009-09-09 15:08:12 +0000958
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000959 case ABIArgInfo::Expand:
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000960 GetExpandedTypes(it->type, argTypes);
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000961 break;
962 }
Daniel Dunbar45c25ba2008-09-10 04:01:49 +0000963 }
964
Chris Lattner71305cc2011-07-15 05:16:14 +0000965 bool Erased = FunctionsBeingProcessed.erase(&FI); (void)Erased;
966 assert(Erased && "Not in set?");
967
John McCallde5d3c72012-02-17 03:33:10 +0000968 return llvm::FunctionType::get(resultType, argTypes, FI.isVariadic());
Daniel Dunbar3913f182008-09-09 23:48:28 +0000969}
970
Chris Lattner2acc6e32011-07-18 04:24:23 +0000971llvm::Type *CodeGenTypes::GetFunctionTypeForVTable(GlobalDecl GD) {
John McCall4c40d982010-08-31 07:33:07 +0000972 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl());
Anders Carlssonecf282b2009-11-24 05:08:52 +0000973 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>();
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000974
Chris Lattnerf742eb02011-07-10 00:18:59 +0000975 if (!isFuncTypeConvertible(FPT))
976 return llvm::StructType::get(getLLVMContext());
977
978 const CGFunctionInfo *Info;
979 if (isa<CXXDestructorDecl>(MD))
John McCallde5d3c72012-02-17 03:33:10 +0000980 Info = &arrangeCXXDestructor(cast<CXXDestructorDecl>(MD), GD.getDtorType());
Chris Lattnerf742eb02011-07-10 00:18:59 +0000981 else
John McCallde5d3c72012-02-17 03:33:10 +0000982 Info = &arrangeCXXMethodDeclaration(MD);
983 return GetFunctionType(*Info);
Anders Carlssonecf282b2009-11-24 05:08:52 +0000984}
985
Daniel Dunbara0a99e02009-02-02 23:43:58 +0000986void CodeGenModule::ConstructAttributeList(const CGFunctionInfo &FI,
Daniel Dunbar88b53962009-02-02 22:03:45 +0000987 const Decl *TargetDecl,
Michael J. Spencer9cac4942010-10-19 06:39:39 +0000988 AttributeListType &PAL,
Bill Wendling94236e72013-02-22 00:13:35 +0000989 unsigned &CallingConv,
990 bool AttrOnCallSite) {
Bill Wendling0d583392012-10-15 20:36:26 +0000991 llvm::AttrBuilder FuncAttrs;
992 llvm::AttrBuilder RetAttrs;
Daniel Dunbar5323a4b2008-09-10 00:32:18 +0000993
Daniel Dunbarca6408c2009-09-12 00:59:20 +0000994 CallingConv = FI.getEffectiveCallingConvention();
995
John McCall04a67a62010-02-05 21:31:56 +0000996 if (FI.isNoReturn())
Bill Wendling72390b32012-12-20 19:27:06 +0000997 FuncAttrs.addAttribute(llvm::Attribute::NoReturn);
John McCall04a67a62010-02-05 21:31:56 +0000998
Anton Korobeynikov1102f422009-04-04 00:49:24 +0000999 // FIXME: handle sseregparm someday...
Daniel Dunbar5323a4b2008-09-10 00:32:18 +00001000 if (TargetDecl) {
Rafael Espindola67004152011-10-12 19:51:18 +00001001 if (TargetDecl->hasAttr<ReturnsTwiceAttr>())
Bill Wendling72390b32012-12-20 19:27:06 +00001002 FuncAttrs.addAttribute(llvm::Attribute::ReturnsTwice);
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00001003 if (TargetDecl->hasAttr<NoThrowAttr>())
Bill Wendling72390b32012-12-20 19:27:06 +00001004 FuncAttrs.addAttribute(llvm::Attribute::NoUnwind);
Richard Smith7586a6e2013-01-30 05:45:05 +00001005 if (TargetDecl->hasAttr<NoReturnAttr>())
1006 FuncAttrs.addAttribute(llvm::Attribute::NoReturn);
1007
1008 if (const FunctionDecl *Fn = dyn_cast<FunctionDecl>(TargetDecl)) {
John McCall9c0c1f32010-07-08 06:48:12 +00001009 const FunctionProtoType *FPT = Fn->getType()->getAs<FunctionProtoType>();
Sebastian Redl8026f6d2011-03-13 17:09:40 +00001010 if (FPT && FPT->isNothrow(getContext()))
Bill Wendling72390b32012-12-20 19:27:06 +00001011 FuncAttrs.addAttribute(llvm::Attribute::NoUnwind);
Richard Smith3c5cd152013-03-05 08:30:04 +00001012 // Don't use [[noreturn]] or _Noreturn for a call to a virtual function.
1013 // These attributes are not inherited by overloads.
1014 const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Fn);
1015 if (Fn->isNoReturn() && !(AttrOnCallSite && MD && MD->isVirtual()))
Richard Smith7586a6e2013-01-30 05:45:05 +00001016 FuncAttrs.addAttribute(llvm::Attribute::NoReturn);
John McCall9c0c1f32010-07-08 06:48:12 +00001017 }
1018
Eric Christopher041087c2011-08-15 22:38:22 +00001019 // 'const' and 'pure' attribute functions are also nounwind.
1020 if (TargetDecl->hasAttr<ConstAttr>()) {
Bill Wendling72390b32012-12-20 19:27:06 +00001021 FuncAttrs.addAttribute(llvm::Attribute::ReadNone);
1022 FuncAttrs.addAttribute(llvm::Attribute::NoUnwind);
Eric Christopher041087c2011-08-15 22:38:22 +00001023 } else if (TargetDecl->hasAttr<PureAttr>()) {
Bill Wendling72390b32012-12-20 19:27:06 +00001024 FuncAttrs.addAttribute(llvm::Attribute::ReadOnly);
1025 FuncAttrs.addAttribute(llvm::Attribute::NoUnwind);
Eric Christopher041087c2011-08-15 22:38:22 +00001026 }
Ryan Flynn76168e22009-08-09 20:07:29 +00001027 if (TargetDecl->hasAttr<MallocAttr>())
Bill Wendling72390b32012-12-20 19:27:06 +00001028 RetAttrs.addAttribute(llvm::Attribute::NoAlias);
Daniel Dunbar5323a4b2008-09-10 00:32:18 +00001029 }
1030
Chandler Carruth2811ccf2009-11-12 17:24:48 +00001031 if (CodeGenOpts.OptimizeSize)
Bill Wendling72390b32012-12-20 19:27:06 +00001032 FuncAttrs.addAttribute(llvm::Attribute::OptimizeForSize);
Quentin Colombet90467682012-10-26 00:29:48 +00001033 if (CodeGenOpts.OptimizeSize == 2)
Bill Wendling72390b32012-12-20 19:27:06 +00001034 FuncAttrs.addAttribute(llvm::Attribute::MinSize);
Chandler Carruth2811ccf2009-11-12 17:24:48 +00001035 if (CodeGenOpts.DisableRedZone)
Bill Wendling72390b32012-12-20 19:27:06 +00001036 FuncAttrs.addAttribute(llvm::Attribute::NoRedZone);
Chandler Carruth2811ccf2009-11-12 17:24:48 +00001037 if (CodeGenOpts.NoImplicitFloat)
Bill Wendling72390b32012-12-20 19:27:06 +00001038 FuncAttrs.addAttribute(llvm::Attribute::NoImplicitFloat);
Devang Patel24095da2009-06-04 23:32:02 +00001039
Bill Wendling93e4bff2013-02-22 20:53:29 +00001040 if (AttrOnCallSite) {
1041 // Attributes that should go on the call site only.
1042 if (!CodeGenOpts.SimplifyLibCalls)
1043 FuncAttrs.addAttribute(llvm::Attribute::NoBuiltin);
Bill Wendlingbe9e8bf2013-02-28 22:49:57 +00001044 } else {
1045 // Attributes that should go on the function, but not the call site.
Bill Wendlingbe9e8bf2013-02-28 22:49:57 +00001046 if (!CodeGenOpts.DisableFPElim) {
Bill Wendling4159f052013-03-13 22:24:33 +00001047 FuncAttrs.addAttribute("no-frame-pointer-elim", "false");
1048 FuncAttrs.addAttribute("no-frame-pointer-elim-non-leaf", "false");
Bill Wendlingbe9e8bf2013-02-28 22:49:57 +00001049 } else if (CodeGenOpts.OmitLeafFramePointer) {
Bill Wendling4159f052013-03-13 22:24:33 +00001050 FuncAttrs.addAttribute("no-frame-pointer-elim", "false");
1051 FuncAttrs.addAttribute("no-frame-pointer-elim-non-leaf", "true");
Bill Wendlingbe9e8bf2013-02-28 22:49:57 +00001052 } else {
Bill Wendling4159f052013-03-13 22:24:33 +00001053 FuncAttrs.addAttribute("no-frame-pointer-elim", "true");
1054 FuncAttrs.addAttribute("no-frame-pointer-elim-non-leaf", "true");
Bill Wendlingbe9e8bf2013-02-28 22:49:57 +00001055 }
1056
Bill Wendling4159f052013-03-13 22:24:33 +00001057 FuncAttrs.addAttribute("less-precise-fpmad",
1058 CodeGenOpts.LessPreciseFPMAD ? "true" : "false");
1059 FuncAttrs.addAttribute("no-infs-fp-math",
1060 CodeGenOpts.NoInfsFPMath ? "true" : "false");
1061 FuncAttrs.addAttribute("no-nans-fp-math",
1062 CodeGenOpts.NoNaNsFPMath ? "true" : "false");
1063 FuncAttrs.addAttribute("unsafe-fp-math",
1064 CodeGenOpts.UnsafeFPMath ? "true" : "false");
1065 FuncAttrs.addAttribute("use-soft-float",
1066 CodeGenOpts.SoftFloat ? "true" : "false");
Bill Wendlingc0dcc2d2013-02-15 21:30:01 +00001067 }
1068
Daniel Dunbara0a99e02009-02-02 23:43:58 +00001069 QualType RetTy = FI.getReturnType();
Daniel Dunbar5323a4b2008-09-10 00:32:18 +00001070 unsigned Index = 1;
Daniel Dunbarb225be42009-02-03 05:59:18 +00001071 const ABIArgInfo &RetAI = FI.getReturnInfo();
Daniel Dunbar45c25ba2008-09-10 04:01:49 +00001072 switch (RetAI.getKind()) {
Anton Korobeynikovcc6fa882009-06-06 09:36:29 +00001073 case ABIArgInfo::Extend:
Jakob Stoklund Olesen5baefa82013-05-29 03:57:23 +00001074 if (RetTy->hasSignedIntegerRepresentation())
1075 RetAttrs.addAttribute(llvm::Attribute::SExt);
1076 else if (RetTy->hasUnsignedIntegerRepresentation())
1077 RetAttrs.addAttribute(llvm::Attribute::ZExt);
Jakob Stoklund Olesen90f9ec02013-06-05 03:00:09 +00001078 // FALL THROUGH
Daniel Dunbar46327aa2009-02-03 06:17:37 +00001079 case ABIArgInfo::Direct:
Jakob Stoklund Olesen90f9ec02013-06-05 03:00:09 +00001080 if (RetAI.getInReg())
1081 RetAttrs.addAttribute(llvm::Attribute::InReg);
1082 break;
Chris Lattner800588f2010-07-29 06:26:06 +00001083 case ABIArgInfo::Ignore:
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001084 break;
1085
Rafael Espindolab48280b2012-07-31 02:44:24 +00001086 case ABIArgInfo::Indirect: {
Bill Wendling0d583392012-10-15 20:36:26 +00001087 llvm::AttrBuilder SRETAttrs;
Bill Wendling72390b32012-12-20 19:27:06 +00001088 SRETAttrs.addAttribute(llvm::Attribute::StructRet);
Rafael Espindolab48280b2012-07-31 02:44:24 +00001089 if (RetAI.getInReg())
Bill Wendling72390b32012-12-20 19:27:06 +00001090 SRETAttrs.addAttribute(llvm::Attribute::InReg);
Bill Wendling603571a2012-10-10 07:36:56 +00001091 PAL.push_back(llvm::
Bill Wendlingb263bdf2013-01-27 02:46:53 +00001092 AttributeSet::get(getLLVMContext(), Index, SRETAttrs));
Rafael Espindolab48280b2012-07-31 02:44:24 +00001093
Daniel Dunbar5323a4b2008-09-10 00:32:18 +00001094 ++Index;
Daniel Dunbar0ac86f02009-03-18 19:51:01 +00001095 // sret disables readnone and readonly
Bill Wendling72390b32012-12-20 19:27:06 +00001096 FuncAttrs.removeAttribute(llvm::Attribute::ReadOnly)
1097 .removeAttribute(llvm::Attribute::ReadNone);
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001098 break;
Rafael Espindolab48280b2012-07-31 02:44:24 +00001099 }
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001100
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001101 case ABIArgInfo::Expand:
David Blaikieb219cfc2011-09-23 05:06:16 +00001102 llvm_unreachable("Invalid ABI kind for return argument");
Daniel Dunbar5323a4b2008-09-10 00:32:18 +00001103 }
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001104
Bill Wendling603571a2012-10-10 07:36:56 +00001105 if (RetAttrs.hasAttributes())
1106 PAL.push_back(llvm::
Bill Wendlingb263bdf2013-01-27 02:46:53 +00001107 AttributeSet::get(getLLVMContext(),
1108 llvm::AttributeSet::ReturnIndex,
1109 RetAttrs));
Anton Korobeynikov1102f422009-04-04 00:49:24 +00001110
Mike Stump1eb44332009-09-09 15:08:12 +00001111 for (CGFunctionInfo::const_arg_iterator it = FI.arg_begin(),
Daniel Dunbar88c2fa92009-02-03 05:31:23 +00001112 ie = FI.arg_end(); it != ie; ++it) {
1113 QualType ParamType = it->type;
1114 const ABIArgInfo &AI = it->info;
Bill Wendling0d583392012-10-15 20:36:26 +00001115 llvm::AttrBuilder Attrs;
Anton Korobeynikov1102f422009-04-04 00:49:24 +00001116
Rafael Espindolae4aeeaa2012-10-24 01:59:00 +00001117 if (AI.getPaddingType()) {
Bill Wendlingb263bdf2013-01-27 02:46:53 +00001118 if (AI.getPaddingInReg())
1119 PAL.push_back(llvm::AttributeSet::get(getLLVMContext(), Index,
1120 llvm::Attribute::InReg));
Rafael Espindolae4aeeaa2012-10-24 01:59:00 +00001121 // Increment Index if there is padding.
1122 ++Index;
1123 }
1124
John McCalld8e10d22010-03-27 00:47:27 +00001125 // 'restrict' -> 'noalias' is done in EmitFunctionProlog when we
1126 // have the corresponding parameter variable. It doesn't make
Daniel Dunbar7f6890e2011-02-10 18:10:07 +00001127 // sense to do it here because parameters are so messed up.
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001128 switch (AI.getKind()) {
Chris Lattner800588f2010-07-29 06:26:06 +00001129 case ABIArgInfo::Extend:
Douglas Gregor575a1c92011-05-20 16:38:50 +00001130 if (ParamType->isSignedIntegerOrEnumerationType())
Bill Wendling72390b32012-12-20 19:27:06 +00001131 Attrs.addAttribute(llvm::Attribute::SExt);
Douglas Gregor575a1c92011-05-20 16:38:50 +00001132 else if (ParamType->isUnsignedIntegerOrEnumerationType())
Bill Wendling72390b32012-12-20 19:27:06 +00001133 Attrs.addAttribute(llvm::Attribute::ZExt);
Chris Lattner800588f2010-07-29 06:26:06 +00001134 // FALL THROUGH
1135 case ABIArgInfo::Direct:
Rafael Espindolab48280b2012-07-31 02:44:24 +00001136 if (AI.getInReg())
Bill Wendling72390b32012-12-20 19:27:06 +00001137 Attrs.addAttribute(llvm::Attribute::InReg);
Rafael Espindolab48280b2012-07-31 02:44:24 +00001138
Chris Lattner800588f2010-07-29 06:26:06 +00001139 // FIXME: handle sseregparm someday...
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001140
Chris Lattner2acc6e32011-07-18 04:24:23 +00001141 if (llvm::StructType *STy =
Rafael Espindolab48280b2012-07-31 02:44:24 +00001142 dyn_cast<llvm::StructType>(AI.getCoerceToType())) {
1143 unsigned Extra = STy->getNumElements()-1; // 1 will be added below.
Bill Wendling603571a2012-10-10 07:36:56 +00001144 if (Attrs.hasAttributes())
Rafael Espindolab48280b2012-07-31 02:44:24 +00001145 for (unsigned I = 0; I < Extra; ++I)
Bill Wendlingb263bdf2013-01-27 02:46:53 +00001146 PAL.push_back(llvm::AttributeSet::get(getLLVMContext(), Index + I,
1147 Attrs));
Rafael Espindolab48280b2012-07-31 02:44:24 +00001148 Index += Extra;
1149 }
Chris Lattner800588f2010-07-29 06:26:06 +00001150 break;
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +00001151
Daniel Dunbar11e383a2009-02-05 08:00:50 +00001152 case ABIArgInfo::Indirect:
Rafael Espindola0b4cc952012-10-19 05:04:37 +00001153 if (AI.getInReg())
Bill Wendling72390b32012-12-20 19:27:06 +00001154 Attrs.addAttribute(llvm::Attribute::InReg);
Rafael Espindola0b4cc952012-10-19 05:04:37 +00001155
Anders Carlsson0a8f8472009-09-16 15:53:40 +00001156 if (AI.getIndirectByVal())
Bill Wendling72390b32012-12-20 19:27:06 +00001157 Attrs.addAttribute(llvm::Attribute::ByVal);
Anders Carlsson0a8f8472009-09-16 15:53:40 +00001158
Bill Wendling603571a2012-10-10 07:36:56 +00001159 Attrs.addAlignmentAttr(AI.getIndirectAlign());
1160
Daniel Dunbar0ac86f02009-03-18 19:51:01 +00001161 // byval disables readnone and readonly.
Bill Wendling72390b32012-12-20 19:27:06 +00001162 FuncAttrs.removeAttribute(llvm::Attribute::ReadOnly)
1163 .removeAttribute(llvm::Attribute::ReadNone);
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001164 break;
Anton Korobeynikovcc6fa882009-06-06 09:36:29 +00001165
Daniel Dunbar11434922009-01-26 21:26:08 +00001166 case ABIArgInfo::Ignore:
1167 // Skip increment, no matching LLVM parameter.
Mike Stump1eb44332009-09-09 15:08:12 +00001168 continue;
Daniel Dunbar11434922009-01-26 21:26:08 +00001169
Daniel Dunbar56273772008-09-17 00:51:38 +00001170 case ABIArgInfo::Expand: {
Chris Lattner5f9e2722011-07-23 10:55:15 +00001171 SmallVector<llvm::Type*, 8> types;
Mike Stumpf5408fe2009-05-16 07:57:57 +00001172 // FIXME: This is rather inefficient. Do we ever actually need to do
1173 // anything here? The result should be just reconstructed on the other
1174 // side, so extension should be a non-issue.
Chris Lattner9cbe4f02011-07-09 17:41:47 +00001175 getTypes().GetExpandedTypes(ParamType, types);
John McCall42e06112011-05-15 02:19:42 +00001176 Index += types.size();
Daniel Dunbar56273772008-09-17 00:51:38 +00001177 continue;
1178 }
Daniel Dunbar5323a4b2008-09-10 00:32:18 +00001179 }
Mike Stump1eb44332009-09-09 15:08:12 +00001180
Bill Wendling603571a2012-10-10 07:36:56 +00001181 if (Attrs.hasAttributes())
Bill Wendlingb263bdf2013-01-27 02:46:53 +00001182 PAL.push_back(llvm::AttributeSet::get(getLLVMContext(), Index, Attrs));
Daniel Dunbar56273772008-09-17 00:51:38 +00001183 ++Index;
Daniel Dunbar5323a4b2008-09-10 00:32:18 +00001184 }
Bill Wendling603571a2012-10-10 07:36:56 +00001185 if (FuncAttrs.hasAttributes())
Bill Wendling75d37b42012-10-15 07:31:59 +00001186 PAL.push_back(llvm::
Bill Wendlingb263bdf2013-01-27 02:46:53 +00001187 AttributeSet::get(getLLVMContext(),
1188 llvm::AttributeSet::FunctionIndex,
1189 FuncAttrs));
Daniel Dunbar5323a4b2008-09-10 00:32:18 +00001190}
1191
John McCalld26bc762011-03-09 04:27:21 +00001192/// An argument came in as a promoted argument; demote it back to its
1193/// declared type.
1194static llvm::Value *emitArgumentDemotion(CodeGenFunction &CGF,
1195 const VarDecl *var,
1196 llvm::Value *value) {
Chris Lattner2acc6e32011-07-18 04:24:23 +00001197 llvm::Type *varType = CGF.ConvertType(var->getType());
John McCalld26bc762011-03-09 04:27:21 +00001198
1199 // This can happen with promotions that actually don't change the
1200 // underlying type, like the enum promotions.
1201 if (value->getType() == varType) return value;
1202
1203 assert((varType->isIntegerTy() || varType->isFloatingPointTy())
1204 && "unexpected promotion type");
1205
1206 if (isa<llvm::IntegerType>(varType))
1207 return CGF.Builder.CreateTrunc(value, varType, "arg.unpromote");
1208
1209 return CGF.Builder.CreateFPCast(value, varType, "arg.unpromote");
1210}
1211
Daniel Dunbar88b53962009-02-02 22:03:45 +00001212void CodeGenFunction::EmitFunctionProlog(const CGFunctionInfo &FI,
1213 llvm::Function *Fn,
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001214 const FunctionArgList &Args) {
John McCall0cfeb632009-07-28 01:00:58 +00001215 // If this is an implicit-return-zero function, go ahead and
1216 // initialize the return value. TODO: it might be nice to have
1217 // a more general mechanism for this that didn't require synthesized
1218 // return statements.
John McCallf5ebf9b2013-05-03 07:33:41 +00001219 if (const FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(CurCodeDecl)) {
John McCall0cfeb632009-07-28 01:00:58 +00001220 if (FD->hasImplicitReturnZero()) {
1221 QualType RetTy = FD->getResultType().getUnqualifiedType();
Chris Lattner2acc6e32011-07-18 04:24:23 +00001222 llvm::Type* LLVMTy = CGM.getTypes().ConvertType(RetTy);
Owen Andersonc9c88b42009-07-31 20:28:54 +00001223 llvm::Constant* Zero = llvm::Constant::getNullValue(LLVMTy);
John McCall0cfeb632009-07-28 01:00:58 +00001224 Builder.CreateStore(Zero, ReturnValue);
1225 }
1226 }
1227
Mike Stumpf5408fe2009-05-16 07:57:57 +00001228 // FIXME: We no longer need the types from FunctionArgList; lift up and
1229 // simplify.
Daniel Dunbar5251afa2009-02-03 06:02:10 +00001230
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001231 // Emit allocs for param decls. Give the LLVM Argument nodes names.
1232 llvm::Function::arg_iterator AI = Fn->arg_begin();
Mike Stump1eb44332009-09-09 15:08:12 +00001233
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001234 // Name the struct return argument.
Daniel Dunbardacf9dd2010-07-14 23:39:36 +00001235 if (CGM.ReturnTypeUsesSRet(FI)) {
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001236 AI->setName("agg.result");
Bill Wendling89530e42013-01-23 06:15:10 +00001237 AI->addAttr(llvm::AttributeSet::get(getLLVMContext(),
1238 AI->getArgNo() + 1,
1239 llvm::Attribute::NoAlias));
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001240 ++AI;
1241 }
Mike Stump1eb44332009-09-09 15:08:12 +00001242
Daniel Dunbar4b5f0a42009-02-04 21:17:21 +00001243 assert(FI.arg_size() == Args.size() &&
1244 "Mismatch between function signature & arguments.");
Devang Patel093ac462011-03-03 20:13:15 +00001245 unsigned ArgNo = 1;
Daniel Dunbarb225be42009-02-03 05:59:18 +00001246 CGFunctionInfo::const_arg_iterator info_it = FI.arg_begin();
Devang Patel093ac462011-03-03 20:13:15 +00001247 for (FunctionArgList::const_iterator i = Args.begin(), e = Args.end();
1248 i != e; ++i, ++info_it, ++ArgNo) {
John McCalld26bc762011-03-09 04:27:21 +00001249 const VarDecl *Arg = *i;
Daniel Dunbarb225be42009-02-03 05:59:18 +00001250 QualType Ty = info_it->type;
1251 const ABIArgInfo &ArgI = info_it->info;
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001252
John McCalld26bc762011-03-09 04:27:21 +00001253 bool isPromoted =
1254 isa<ParmVarDecl>(Arg) && cast<ParmVarDecl>(Arg)->isKNRPromoted();
1255
Rafael Espindolae4aeeaa2012-10-24 01:59:00 +00001256 // Skip the dummy padding argument.
1257 if (ArgI.getPaddingType())
1258 ++AI;
1259
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001260 switch (ArgI.getKind()) {
Daniel Dunbar1f745982009-02-05 09:16:39 +00001261 case ABIArgInfo::Indirect: {
Chris Lattnerce700162010-06-28 23:44:11 +00001262 llvm::Value *V = AI;
Daniel Dunbarcf3b6f22010-09-16 20:42:02 +00001263
John McCall9d232c82013-03-07 21:37:08 +00001264 if (!hasScalarEvaluationKind(Ty)) {
Daniel Dunbarcf3b6f22010-09-16 20:42:02 +00001265 // Aggregates and complex variables are accessed by reference. All we
1266 // need to do is realign the value, if requested
1267 if (ArgI.getIndirectRealign()) {
1268 llvm::Value *AlignedTemp = CreateMemTemp(Ty, "coerce");
1269
1270 // Copy from the incoming argument pointer to the temporary with the
1271 // appropriate alignment.
1272 //
1273 // FIXME: We should have a common utility for generating an aggregate
1274 // copy.
Chris Lattner2acc6e32011-07-18 04:24:23 +00001275 llvm::Type *I8PtrTy = Builder.getInt8PtrTy();
Ken Dyckfe710082011-01-19 01:58:38 +00001276 CharUnits Size = getContext().getTypeSizeInChars(Ty);
NAKAMURA Takumic95a8fc2011-03-10 14:02:21 +00001277 llvm::Value *Dst = Builder.CreateBitCast(AlignedTemp, I8PtrTy);
1278 llvm::Value *Src = Builder.CreateBitCast(V, I8PtrTy);
1279 Builder.CreateMemCpy(Dst,
1280 Src,
Ken Dyckfe710082011-01-19 01:58:38 +00001281 llvm::ConstantInt::get(IntPtrTy,
1282 Size.getQuantity()),
Benjamin Kramer9f0c7cc2010-12-30 00:13:21 +00001283 ArgI.getIndirectAlign(),
1284 false);
Daniel Dunbarcf3b6f22010-09-16 20:42:02 +00001285 V = AlignedTemp;
1286 }
Daniel Dunbar1f745982009-02-05 09:16:39 +00001287 } else {
1288 // Load scalar value from indirect argument.
Ken Dyckfe710082011-01-19 01:58:38 +00001289 CharUnits Alignment = getContext().getTypeAlignInChars(Ty);
1290 V = EmitLoadOfScalar(V, false, Alignment.getQuantity(), Ty);
John McCalld26bc762011-03-09 04:27:21 +00001291
1292 if (isPromoted)
1293 V = emitArgumentDemotion(*this, Arg, V);
Daniel Dunbar1f745982009-02-05 09:16:39 +00001294 }
Devang Patel093ac462011-03-03 20:13:15 +00001295 EmitParmDecl(*Arg, V, ArgNo);
Daniel Dunbar1f745982009-02-05 09:16:39 +00001296 break;
1297 }
Anton Korobeynikovcc6fa882009-06-06 09:36:29 +00001298
1299 case ABIArgInfo::Extend:
Daniel Dunbar46327aa2009-02-03 06:17:37 +00001300 case ABIArgInfo::Direct: {
Akira Hatanaka4ba3fd42012-01-09 19:08:06 +00001301
Chris Lattner800588f2010-07-29 06:26:06 +00001302 // If we have the trivial case, handle it with no muss and fuss.
1303 if (!isa<llvm::StructType>(ArgI.getCoerceToType()) &&
Chris Lattner117e3f42010-07-30 04:02:24 +00001304 ArgI.getCoerceToType() == ConvertType(Ty) &&
1305 ArgI.getDirectOffset() == 0) {
Chris Lattner800588f2010-07-29 06:26:06 +00001306 assert(AI != Fn->arg_end() && "Argument mismatch!");
1307 llvm::Value *V = AI;
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001308
Bill Wendlinga6375562012-10-16 05:23:44 +00001309 if (Arg->getType().isRestrictQualified())
Bill Wendling89530e42013-01-23 06:15:10 +00001310 AI->addAttr(llvm::AttributeSet::get(getLLVMContext(),
1311 AI->getArgNo() + 1,
1312 llvm::Attribute::NoAlias));
John McCalld8e10d22010-03-27 00:47:27 +00001313
Chris Lattnerb13eab92011-07-20 06:29:00 +00001314 // Ensure the argument is the correct type.
1315 if (V->getType() != ArgI.getCoerceToType())
1316 V = Builder.CreateBitCast(V, ArgI.getCoerceToType());
1317
John McCalld26bc762011-03-09 04:27:21 +00001318 if (isPromoted)
1319 V = emitArgumentDemotion(*this, Arg, V);
Rafael Espindola8b8a09e2012-11-29 16:09:03 +00001320
1321 // Because of merging of function types from multiple decls it is
1322 // possible for the type of an argument to not match the corresponding
1323 // type in the function type. Since we are codegening the callee
1324 // in here, add a cast to the argument type.
1325 llvm::Type *LTy = ConvertType(Arg->getType());
1326 if (V->getType() != LTy)
1327 V = Builder.CreateBitCast(V, LTy);
1328
Devang Patel093ac462011-03-03 20:13:15 +00001329 EmitParmDecl(*Arg, V, ArgNo);
Chris Lattner800588f2010-07-29 06:26:06 +00001330 break;
Daniel Dunbar8b979d92009-02-10 00:06:49 +00001331 }
Mike Stump1eb44332009-09-09 15:08:12 +00001332
Evgeniy Stepanova6ce20e2012-02-10 09:30:15 +00001333 llvm::AllocaInst *Alloca = CreateMemTemp(Ty, Arg->getName());
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001334
Chris Lattnerdeabde22010-07-28 18:24:28 +00001335 // The alignment we need to use is the max of the requested alignment for
1336 // the argument plus the alignment required by our access code below.
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001337 unsigned AlignmentToUse =
Micah Villmow25a6a842012-10-08 16:25:52 +00001338 CGM.getDataLayout().getABITypeAlignment(ArgI.getCoerceToType());
Chris Lattnerdeabde22010-07-28 18:24:28 +00001339 AlignmentToUse = std::max(AlignmentToUse,
1340 (unsigned)getContext().getDeclAlign(Arg).getQuantity());
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001341
Chris Lattnerdeabde22010-07-28 18:24:28 +00001342 Alloca->setAlignment(AlignmentToUse);
Chris Lattner121b3fa2010-07-05 20:21:00 +00001343 llvm::Value *V = Alloca;
Chris Lattner117e3f42010-07-30 04:02:24 +00001344 llvm::Value *Ptr = V; // Pointer to store into.
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001345
Chris Lattner117e3f42010-07-30 04:02:24 +00001346 // If the value is offset in memory, apply the offset now.
1347 if (unsigned Offs = ArgI.getDirectOffset()) {
1348 Ptr = Builder.CreateBitCast(Ptr, Builder.getInt8PtrTy());
1349 Ptr = Builder.CreateConstGEP1_32(Ptr, Offs);
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001350 Ptr = Builder.CreateBitCast(Ptr,
Chris Lattner117e3f42010-07-30 04:02:24 +00001351 llvm::PointerType::getUnqual(ArgI.getCoerceToType()));
1352 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001353
Chris Lattner309c59f2010-06-29 00:06:42 +00001354 // If the coerce-to type is a first class aggregate, we flatten it and
1355 // pass the elements. Either way is semantically identical, but fast-isel
1356 // and the optimizer generally likes scalar values better than FCAs.
Evgeniy Stepanova6ce20e2012-02-10 09:30:15 +00001357 llvm::StructType *STy = dyn_cast<llvm::StructType>(ArgI.getCoerceToType());
1358 if (STy && STy->getNumElements() > 1) {
Micah Villmow25a6a842012-10-08 16:25:52 +00001359 uint64_t SrcSize = CGM.getDataLayout().getTypeAllocSize(STy);
Evgeniy Stepanova6ce20e2012-02-10 09:30:15 +00001360 llvm::Type *DstTy =
1361 cast<llvm::PointerType>(Ptr->getType())->getElementType();
Micah Villmow25a6a842012-10-08 16:25:52 +00001362 uint64_t DstSize = CGM.getDataLayout().getTypeAllocSize(DstTy);
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001363
Evgeniy Stepanova6ce20e2012-02-10 09:30:15 +00001364 if (SrcSize <= DstSize) {
1365 Ptr = Builder.CreateBitCast(Ptr, llvm::PointerType::getUnqual(STy));
1366
1367 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1368 assert(AI != Fn->arg_end() && "Argument mismatch!");
1369 AI->setName(Arg->getName() + ".coerce" + Twine(i));
1370 llvm::Value *EltPtr = Builder.CreateConstGEP2_32(Ptr, 0, i);
1371 Builder.CreateStore(AI++, EltPtr);
1372 }
1373 } else {
1374 llvm::AllocaInst *TempAlloca =
1375 CreateTempAlloca(ArgI.getCoerceToType(), "coerce");
1376 TempAlloca->setAlignment(AlignmentToUse);
1377 llvm::Value *TempV = TempAlloca;
1378
1379 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1380 assert(AI != Fn->arg_end() && "Argument mismatch!");
1381 AI->setName(Arg->getName() + ".coerce" + Twine(i));
1382 llvm::Value *EltPtr = Builder.CreateConstGEP2_32(TempV, 0, i);
1383 Builder.CreateStore(AI++, EltPtr);
1384 }
1385
1386 Builder.CreateMemCpy(Ptr, TempV, DstSize, AlignmentToUse);
Chris Lattner309c59f2010-06-29 00:06:42 +00001387 }
1388 } else {
1389 // Simple case, just do a coerced store of the argument into the alloca.
1390 assert(AI != Fn->arg_end() && "Argument mismatch!");
Chris Lattner225e2862010-06-29 00:14:52 +00001391 AI->setName(Arg->getName() + ".coerce");
Chris Lattner117e3f42010-07-30 04:02:24 +00001392 CreateCoercedStore(AI++, Ptr, /*DestIsVolatile=*/false, *this);
Chris Lattner309c59f2010-06-29 00:06:42 +00001393 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001394
1395
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +00001396 // Match to what EmitParmDecl is expecting for this type.
John McCall9d232c82013-03-07 21:37:08 +00001397 if (CodeGenFunction::hasScalarEvaluationKind(Ty)) {
Daniel Dunbar91a16fa2010-08-21 02:24:36 +00001398 V = EmitLoadOfScalar(V, false, AlignmentToUse, Ty);
John McCalld26bc762011-03-09 04:27:21 +00001399 if (isPromoted)
1400 V = emitArgumentDemotion(*this, Arg, V);
Daniel Dunbar8b29a382009-02-04 07:22:24 +00001401 }
Devang Patel093ac462011-03-03 20:13:15 +00001402 EmitParmDecl(*Arg, V, ArgNo);
Chris Lattnerce700162010-06-28 23:44:11 +00001403 continue; // Skip ++AI increment, already done.
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +00001404 }
Chris Lattner800588f2010-07-29 06:26:06 +00001405
1406 case ABIArgInfo::Expand: {
1407 // If this structure was expanded into multiple arguments then
1408 // we need to create a temporary and reconstruct it from the
1409 // arguments.
Eli Friedman1bb94a42011-11-03 21:39:02 +00001410 llvm::AllocaInst *Alloca = CreateMemTemp(Ty);
Eli Friedman6da2c712011-12-03 04:14:32 +00001411 CharUnits Align = getContext().getDeclAlign(Arg);
1412 Alloca->setAlignment(Align.getQuantity());
1413 LValue LV = MakeAddrLValue(Alloca, Ty, Align);
Eli Friedman1bb94a42011-11-03 21:39:02 +00001414 llvm::Function::arg_iterator End = ExpandTypeFromArgs(Ty, LV, AI);
1415 EmitParmDecl(*Arg, Alloca, ArgNo);
Chris Lattner800588f2010-07-29 06:26:06 +00001416
1417 // Name the arguments used in expansion and increment AI.
1418 unsigned Index = 0;
1419 for (; AI != End; ++AI, ++Index)
Chris Lattner5f9e2722011-07-23 10:55:15 +00001420 AI->setName(Arg->getName() + "." + Twine(Index));
Chris Lattner800588f2010-07-29 06:26:06 +00001421 continue;
1422 }
1423
1424 case ABIArgInfo::Ignore:
1425 // Initialize the local variable appropriately.
John McCall9d232c82013-03-07 21:37:08 +00001426 if (!hasScalarEvaluationKind(Ty))
Devang Patel093ac462011-03-03 20:13:15 +00001427 EmitParmDecl(*Arg, CreateMemTemp(Ty), ArgNo);
Chris Lattner800588f2010-07-29 06:26:06 +00001428 else
Devang Patel093ac462011-03-03 20:13:15 +00001429 EmitParmDecl(*Arg, llvm::UndefValue::get(ConvertType(Arg->getType())),
1430 ArgNo);
Chris Lattner800588f2010-07-29 06:26:06 +00001431
1432 // Skip increment, no matching LLVM parameter.
1433 continue;
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001434 }
Daniel Dunbar56273772008-09-17 00:51:38 +00001435
1436 ++AI;
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001437 }
1438 assert(AI == Fn->arg_end() && "Argument mismatch!");
1439}
1440
John McCall77fe6cd2012-01-29 07:46:59 +00001441static void eraseUnusedBitCasts(llvm::Instruction *insn) {
1442 while (insn->use_empty()) {
1443 llvm::BitCastInst *bitcast = dyn_cast<llvm::BitCastInst>(insn);
1444 if (!bitcast) return;
1445
1446 // This is "safe" because we would have used a ConstantExpr otherwise.
1447 insn = cast<llvm::Instruction>(bitcast->getOperand(0));
1448 bitcast->eraseFromParent();
1449 }
1450}
1451
John McCallf85e1932011-06-15 23:02:42 +00001452/// Try to emit a fused autorelease of a return result.
1453static llvm::Value *tryEmitFusedAutoreleaseOfResult(CodeGenFunction &CGF,
1454 llvm::Value *result) {
1455 // We must be immediately followed the cast.
1456 llvm::BasicBlock *BB = CGF.Builder.GetInsertBlock();
1457 if (BB->empty()) return 0;
1458 if (&BB->back() != result) return 0;
1459
Chris Lattner2acc6e32011-07-18 04:24:23 +00001460 llvm::Type *resultType = result->getType();
John McCallf85e1932011-06-15 23:02:42 +00001461
1462 // result is in a BasicBlock and is therefore an Instruction.
1463 llvm::Instruction *generator = cast<llvm::Instruction>(result);
1464
Chris Lattner5f9e2722011-07-23 10:55:15 +00001465 SmallVector<llvm::Instruction*,4> insnsToKill;
John McCallf85e1932011-06-15 23:02:42 +00001466
1467 // Look for:
1468 // %generator = bitcast %type1* %generator2 to %type2*
1469 while (llvm::BitCastInst *bitcast = dyn_cast<llvm::BitCastInst>(generator)) {
1470 // We would have emitted this as a constant if the operand weren't
1471 // an Instruction.
1472 generator = cast<llvm::Instruction>(bitcast->getOperand(0));
1473
1474 // Require the generator to be immediately followed by the cast.
1475 if (generator->getNextNode() != bitcast)
1476 return 0;
1477
1478 insnsToKill.push_back(bitcast);
1479 }
1480
1481 // Look for:
1482 // %generator = call i8* @objc_retain(i8* %originalResult)
1483 // or
1484 // %generator = call i8* @objc_retainAutoreleasedReturnValue(i8* %originalResult)
1485 llvm::CallInst *call = dyn_cast<llvm::CallInst>(generator);
1486 if (!call) return 0;
1487
1488 bool doRetainAutorelease;
1489
1490 if (call->getCalledValue() == CGF.CGM.getARCEntrypoints().objc_retain) {
1491 doRetainAutorelease = true;
1492 } else if (call->getCalledValue() == CGF.CGM.getARCEntrypoints()
1493 .objc_retainAutoreleasedReturnValue) {
1494 doRetainAutorelease = false;
1495
John McCallf9fdcc02012-09-07 23:30:50 +00001496 // If we emitted an assembly marker for this call (and the
1497 // ARCEntrypoints field should have been set if so), go looking
1498 // for that call. If we can't find it, we can't do this
1499 // optimization. But it should always be the immediately previous
1500 // instruction, unless we needed bitcasts around the call.
1501 if (CGF.CGM.getARCEntrypoints().retainAutoreleasedReturnValueMarker) {
1502 llvm::Instruction *prev = call->getPrevNode();
1503 assert(prev);
1504 if (isa<llvm::BitCastInst>(prev)) {
1505 prev = prev->getPrevNode();
1506 assert(prev);
1507 }
1508 assert(isa<llvm::CallInst>(prev));
1509 assert(cast<llvm::CallInst>(prev)->getCalledValue() ==
1510 CGF.CGM.getARCEntrypoints().retainAutoreleasedReturnValueMarker);
1511 insnsToKill.push_back(prev);
1512 }
John McCallf85e1932011-06-15 23:02:42 +00001513 } else {
1514 return 0;
1515 }
1516
1517 result = call->getArgOperand(0);
1518 insnsToKill.push_back(call);
1519
1520 // Keep killing bitcasts, for sanity. Note that we no longer care
1521 // about precise ordering as long as there's exactly one use.
1522 while (llvm::BitCastInst *bitcast = dyn_cast<llvm::BitCastInst>(result)) {
1523 if (!bitcast->hasOneUse()) break;
1524 insnsToKill.push_back(bitcast);
1525 result = bitcast->getOperand(0);
1526 }
1527
1528 // Delete all the unnecessary instructions, from latest to earliest.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001529 for (SmallVectorImpl<llvm::Instruction*>::iterator
John McCallf85e1932011-06-15 23:02:42 +00001530 i = insnsToKill.begin(), e = insnsToKill.end(); i != e; ++i)
1531 (*i)->eraseFromParent();
1532
1533 // Do the fused retain/autorelease if we were asked to.
1534 if (doRetainAutorelease)
1535 result = CGF.EmitARCRetainAutoreleaseReturnValue(result);
1536
1537 // Cast back to the result type.
1538 return CGF.Builder.CreateBitCast(result, resultType);
1539}
1540
John McCall77fe6cd2012-01-29 07:46:59 +00001541/// If this is a +1 of the value of an immutable 'self', remove it.
1542static llvm::Value *tryRemoveRetainOfSelf(CodeGenFunction &CGF,
1543 llvm::Value *result) {
1544 // This is only applicable to a method with an immutable 'self'.
John McCallbd9b65a2012-07-31 00:33:55 +00001545 const ObjCMethodDecl *method =
1546 dyn_cast_or_null<ObjCMethodDecl>(CGF.CurCodeDecl);
John McCall77fe6cd2012-01-29 07:46:59 +00001547 if (!method) return 0;
1548 const VarDecl *self = method->getSelfDecl();
1549 if (!self->getType().isConstQualified()) return 0;
1550
1551 // Look for a retain call.
1552 llvm::CallInst *retainCall =
1553 dyn_cast<llvm::CallInst>(result->stripPointerCasts());
1554 if (!retainCall ||
1555 retainCall->getCalledValue() != CGF.CGM.getARCEntrypoints().objc_retain)
1556 return 0;
1557
1558 // Look for an ordinary load of 'self'.
1559 llvm::Value *retainedValue = retainCall->getArgOperand(0);
1560 llvm::LoadInst *load =
1561 dyn_cast<llvm::LoadInst>(retainedValue->stripPointerCasts());
1562 if (!load || load->isAtomic() || load->isVolatile() ||
1563 load->getPointerOperand() != CGF.GetAddrOfLocalVar(self))
1564 return 0;
1565
1566 // Okay! Burn it all down. This relies for correctness on the
1567 // assumption that the retain is emitted as part of the return and
1568 // that thereafter everything is used "linearly".
1569 llvm::Type *resultType = result->getType();
1570 eraseUnusedBitCasts(cast<llvm::Instruction>(result));
1571 assert(retainCall->use_empty());
1572 retainCall->eraseFromParent();
1573 eraseUnusedBitCasts(cast<llvm::Instruction>(retainedValue));
1574
1575 return CGF.Builder.CreateBitCast(load, resultType);
1576}
1577
John McCallf85e1932011-06-15 23:02:42 +00001578/// Emit an ARC autorelease of the result of a function.
John McCall77fe6cd2012-01-29 07:46:59 +00001579///
1580/// \return the value to actually return from the function
John McCallf85e1932011-06-15 23:02:42 +00001581static llvm::Value *emitAutoreleaseOfResult(CodeGenFunction &CGF,
1582 llvm::Value *result) {
John McCall77fe6cd2012-01-29 07:46:59 +00001583 // If we're returning 'self', kill the initial retain. This is a
1584 // heuristic attempt to "encourage correctness" in the really unfortunate
1585 // case where we have a return of self during a dealloc and we desperately
1586 // need to avoid the possible autorelease.
1587 if (llvm::Value *self = tryRemoveRetainOfSelf(CGF, result))
1588 return self;
1589
John McCallf85e1932011-06-15 23:02:42 +00001590 // At -O0, try to emit a fused retain/autorelease.
1591 if (CGF.shouldUseFusedARCCalls())
1592 if (llvm::Value *fused = tryEmitFusedAutoreleaseOfResult(CGF, result))
1593 return fused;
1594
1595 return CGF.EmitARCAutoreleaseReturnValue(result);
1596}
1597
John McCallf48f7962012-01-29 02:35:02 +00001598/// Heuristically search for a dominating store to the return-value slot.
1599static llvm::StoreInst *findDominatingStoreToReturnValue(CodeGenFunction &CGF) {
1600 // If there are multiple uses of the return-value slot, just check
1601 // for something immediately preceding the IP. Sometimes this can
1602 // happen with how we generate implicit-returns; it can also happen
1603 // with noreturn cleanups.
1604 if (!CGF.ReturnValue->hasOneUse()) {
1605 llvm::BasicBlock *IP = CGF.Builder.GetInsertBlock();
1606 if (IP->empty()) return 0;
1607 llvm::StoreInst *store = dyn_cast<llvm::StoreInst>(&IP->back());
1608 if (!store) return 0;
1609 if (store->getPointerOperand() != CGF.ReturnValue) return 0;
1610 assert(!store->isAtomic() && !store->isVolatile()); // see below
1611 return store;
1612 }
1613
1614 llvm::StoreInst *store =
1615 dyn_cast<llvm::StoreInst>(CGF.ReturnValue->use_back());
1616 if (!store) return 0;
1617
1618 // These aren't actually possible for non-coerced returns, and we
1619 // only care about non-coerced returns on this code path.
1620 assert(!store->isAtomic() && !store->isVolatile());
1621
1622 // Now do a first-and-dirty dominance check: just walk up the
1623 // single-predecessors chain from the current insertion point.
1624 llvm::BasicBlock *StoreBB = store->getParent();
1625 llvm::BasicBlock *IP = CGF.Builder.GetInsertBlock();
1626 while (IP != StoreBB) {
1627 if (!(IP = IP->getSinglePredecessor()))
1628 return 0;
1629 }
1630
1631 // Okay, the store's basic block dominates the insertion point; we
1632 // can do our thing.
1633 return store;
1634}
1635
Stephen Lin3258abc2013-06-19 23:23:19 +00001636/// Check whether 'this' argument of a callsite matches 'this' of the caller.
1637static bool checkThisPointer(llvm::Value *ThisArg, llvm::Value *This) {
1638 if (ThisArg == This)
1639 return true;
1640 // Check whether ThisArg is a bitcast of This.
1641 llvm::BitCastInst *Bitcast;
1642 if ((Bitcast = dyn_cast<llvm::BitCastInst>(ThisArg)) &&
1643 Bitcast->getOperand(0) == This)
1644 return true;
1645 return false;
1646}
1647
Adrian Prantlfa6b0792013-05-02 17:30:20 +00001648void CodeGenFunction::EmitFunctionEpilog(const CGFunctionInfo &FI,
1649 bool EmitRetDbgLoc) {
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 =
1666 EmitLoadOfComplex(MakeNaturalAlignAddrLValue(ReturnValue, RetTy));
1667 EmitStoreOfComplex(RT,
1668 MakeNaturalAlignAddrLValue(CurFn->arg_begin(), RetTy),
1669 /*isInit*/ true);
1670 break;
1671 }
1672 case TEK_Aggregate:
Chris Lattnerc6e6dd22010-06-26 23:13:19 +00001673 // Do nothing; aggregrates get evaluated directly into the destination.
John McCall9d232c82013-03-07 21:37:08 +00001674 break;
1675 case TEK_Scalar:
1676 EmitStoreOfScalar(Builder.CreateLoad(ReturnValue),
1677 MakeNaturalAlignAddrLValue(CurFn->arg_begin(), RetTy),
1678 /*isInit*/ true);
1679 break;
Chris Lattnerc6e6dd22010-06-26 23:13:19 +00001680 }
1681 break;
Daniel Dunbar91a16fa2010-08-21 02:24:36 +00001682 }
Chris Lattnerc6e6dd22010-06-26 23:13:19 +00001683
1684 case ABIArgInfo::Extend:
Chris Lattner800588f2010-07-29 06:26:06 +00001685 case ABIArgInfo::Direct:
Chris Lattner117e3f42010-07-30 04:02:24 +00001686 if (RetAI.getCoerceToType() == ConvertType(RetTy) &&
1687 RetAI.getDirectOffset() == 0) {
Chris Lattner800588f2010-07-29 06:26:06 +00001688 // The internal return value temp always will have pointer-to-return-type
1689 // type, just do a load.
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001690
John McCallf48f7962012-01-29 02:35:02 +00001691 // If there is a dominating store to ReturnValue, we can elide
1692 // the load, zap the store, and usually zap the alloca.
1693 if (llvm::StoreInst *SI = findDominatingStoreToReturnValue(*this)) {
Adrian Prantl7c731f52013-05-30 18:12:23 +00001694 // Reuse the debug location from the store unless there is
1695 // cleanup code to be emitted between the store and return
1696 // instruction.
1697 if (EmitRetDbgLoc && !AutoreleaseResult)
Adrian Prantlfa6b0792013-05-02 17:30:20 +00001698 RetDbgLoc = SI->getDebugLoc();
Chris Lattner800588f2010-07-29 06:26:06 +00001699 // Get the stored value and nuke the now-dead store.
Chris Lattner800588f2010-07-29 06:26:06 +00001700 RV = SI->getValueOperand();
1701 SI->eraseFromParent();
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001702
Chris Lattner800588f2010-07-29 06:26:06 +00001703 // If that was the only use of the return value, nuke it as well now.
1704 if (ReturnValue->use_empty() && isa<llvm::AllocaInst>(ReturnValue)) {
1705 cast<llvm::AllocaInst>(ReturnValue)->eraseFromParent();
1706 ReturnValue = 0;
1707 }
John McCallf48f7962012-01-29 02:35:02 +00001708
1709 // Otherwise, we have to do a simple load.
1710 } else {
1711 RV = Builder.CreateLoad(ReturnValue);
Chris Lattner35b21b82010-06-27 01:06:27 +00001712 }
Chris Lattner800588f2010-07-29 06:26:06 +00001713 } else {
Chris Lattner117e3f42010-07-30 04:02:24 +00001714 llvm::Value *V = ReturnValue;
1715 // If the value is offset in memory, apply the offset now.
1716 if (unsigned Offs = RetAI.getDirectOffset()) {
1717 V = Builder.CreateBitCast(V, Builder.getInt8PtrTy());
1718 V = Builder.CreateConstGEP1_32(V, Offs);
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001719 V = Builder.CreateBitCast(V,
Chris Lattner117e3f42010-07-30 04:02:24 +00001720 llvm::PointerType::getUnqual(RetAI.getCoerceToType()));
1721 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001722
Chris Lattner117e3f42010-07-30 04:02:24 +00001723 RV = CreateCoercedLoad(V, RetAI.getCoerceToType(), *this);
Chris Lattner35b21b82010-06-27 01:06:27 +00001724 }
John McCallf85e1932011-06-15 23:02:42 +00001725
1726 // In ARC, end functions that return a retainable type with a call
1727 // to objc_autoreleaseReturnValue.
1728 if (AutoreleaseResult) {
David Blaikie4e4d0842012-03-11 07:00:24 +00001729 assert(getLangOpts().ObjCAutoRefCount &&
John McCallf85e1932011-06-15 23:02:42 +00001730 !FI.isReturnsRetained() &&
1731 RetTy->isObjCRetainableType());
1732 RV = emitAutoreleaseOfResult(*this, RV);
1733 }
1734
Chris Lattnerc6e6dd22010-06-26 23:13:19 +00001735 break;
Chris Lattnerc6e6dd22010-06-26 23:13:19 +00001736
Chris Lattner800588f2010-07-29 06:26:06 +00001737 case ABIArgInfo::Ignore:
Chris Lattnerc6e6dd22010-06-26 23:13:19 +00001738 break;
1739
1740 case ABIArgInfo::Expand:
David Blaikieb219cfc2011-09-23 05:06:16 +00001741 llvm_unreachable("Invalid ABI kind for return argument");
Chris Lattnerc6e6dd22010-06-26 23:13:19 +00001742 }
1743
Stephen Lin3258abc2013-06-19 23:23:19 +00001744 // If this function returns 'this', the last instruction is a CallInst
1745 // that returns 'this', and 'this' argument of the CallInst points to
1746 // the same object as CXXThisValue, use the return value from the CallInst.
1747 // We will not need to keep 'this' alive through the callsite. It also enables
1748 // optimizations in the backend, such as tail call optimization.
1749 if (CalleeWithThisReturn && CGM.getCXXABI().HasThisReturn(CurGD)) {
1750 llvm::BasicBlock *IP = Builder.GetInsertBlock();
1751 llvm::CallInst *Callsite;
1752 if (!IP->empty() && (Callsite = dyn_cast<llvm::CallInst>(&IP->back())) &&
1753 Callsite->getCalledFunction() == CalleeWithThisReturn &&
1754 checkThisPointer(Callsite->getOperand(0), CXXThisValue))
1755 RV = Builder.CreateBitCast(Callsite, RetAI.getCoerceToType());
1756 }
Daniel Dunbar21fcc8f2010-06-30 21:27:58 +00001757 llvm::Instruction *Ret = RV ? Builder.CreateRet(RV) : Builder.CreateRetVoid();
Devang Pateld3f265d2010-07-21 18:08:50 +00001758 if (!RetDbgLoc.isUnknown())
1759 Ret->setDebugLoc(RetDbgLoc);
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001760}
1761
John McCall413ebdb2011-03-11 20:59:21 +00001762void CodeGenFunction::EmitDelegateCallArg(CallArgList &args,
1763 const VarDecl *param) {
John McCall27360712010-05-26 22:34:26 +00001764 // StartFunction converted the ABI-lowered parameter(s) into a
1765 // local alloca. We need to turn that into an r-value suitable
1766 // for EmitCall.
John McCall413ebdb2011-03-11 20:59:21 +00001767 llvm::Value *local = GetAddrOfLocalVar(param);
John McCall27360712010-05-26 22:34:26 +00001768
John McCall413ebdb2011-03-11 20:59:21 +00001769 QualType type = param->getType();
Michael J. Spencer9cac4942010-10-19 06:39:39 +00001770
John McCall27360712010-05-26 22:34:26 +00001771 // For the most part, we just need to load the alloca, except:
1772 // 1) aggregate r-values are actually pointers to temporaries, and
John McCall9d232c82013-03-07 21:37:08 +00001773 // 2) references to non-scalars are pointers directly to the aggregate.
1774 // I don't know why references to scalars are different here.
John McCall413ebdb2011-03-11 20:59:21 +00001775 if (const ReferenceType *ref = type->getAs<ReferenceType>()) {
John McCall9d232c82013-03-07 21:37:08 +00001776 if (!hasScalarEvaluationKind(ref->getPointeeType()))
John McCall413ebdb2011-03-11 20:59:21 +00001777 return args.add(RValue::getAggregate(local), type);
John McCall27360712010-05-26 22:34:26 +00001778
1779 // Locals which are references to scalars are represented
1780 // with allocas holding the pointer.
John McCall413ebdb2011-03-11 20:59:21 +00001781 return args.add(RValue::get(Builder.CreateLoad(local)), type);
John McCall27360712010-05-26 22:34:26 +00001782 }
1783
John McCall9d232c82013-03-07 21:37:08 +00001784 args.add(convertTempToRValue(local, type), type);
John McCall27360712010-05-26 22:34:26 +00001785}
1786
John McCallf85e1932011-06-15 23:02:42 +00001787static bool isProvablyNull(llvm::Value *addr) {
1788 return isa<llvm::ConstantPointerNull>(addr);
1789}
1790
1791static bool isProvablyNonNull(llvm::Value *addr) {
1792 return isa<llvm::AllocaInst>(addr);
1793}
1794
1795/// Emit the actual writing-back of a writeback.
1796static void emitWriteback(CodeGenFunction &CGF,
1797 const CallArgList::Writeback &writeback) {
John McCallb6a60792013-03-23 02:35:54 +00001798 const LValue &srcLV = writeback.Source;
1799 llvm::Value *srcAddr = srcLV.getAddress();
John McCallf85e1932011-06-15 23:02:42 +00001800 assert(!isProvablyNull(srcAddr) &&
1801 "shouldn't have writeback for provably null argument");
1802
1803 llvm::BasicBlock *contBB = 0;
1804
1805 // If the argument wasn't provably non-null, we need to null check
1806 // before doing the store.
1807 bool provablyNonNull = isProvablyNonNull(srcAddr);
1808 if (!provablyNonNull) {
1809 llvm::BasicBlock *writebackBB = CGF.createBasicBlock("icr.writeback");
1810 contBB = CGF.createBasicBlock("icr.done");
1811
1812 llvm::Value *isNull = CGF.Builder.CreateIsNull(srcAddr, "icr.isnull");
1813 CGF.Builder.CreateCondBr(isNull, contBB, writebackBB);
1814 CGF.EmitBlock(writebackBB);
1815 }
1816
1817 // Load the value to writeback.
1818 llvm::Value *value = CGF.Builder.CreateLoad(writeback.Temporary);
1819
1820 // Cast it back, in case we're writing an id to a Foo* or something.
1821 value = CGF.Builder.CreateBitCast(value,
1822 cast<llvm::PointerType>(srcAddr->getType())->getElementType(),
1823 "icr.writeback-cast");
1824
1825 // Perform the writeback.
John McCallb6a60792013-03-23 02:35:54 +00001826
1827 // If we have a "to use" value, it's something we need to emit a use
1828 // of. This has to be carefully threaded in: if it's done after the
1829 // release it's potentially undefined behavior (and the optimizer
1830 // will ignore it), and if it happens before the retain then the
1831 // optimizer could move the release there.
1832 if (writeback.ToUse) {
1833 assert(srcLV.getObjCLifetime() == Qualifiers::OCL_Strong);
1834
1835 // Retain the new value. No need to block-copy here: the block's
1836 // being passed up the stack.
1837 value = CGF.EmitARCRetainNonBlock(value);
1838
1839 // Emit the intrinsic use here.
1840 CGF.EmitARCIntrinsicUse(writeback.ToUse);
1841
1842 // Load the old value (primitively).
1843 llvm::Value *oldValue = CGF.EmitLoadOfScalar(srcLV);
1844
1845 // Put the new value in place (primitively).
1846 CGF.EmitStoreOfScalar(value, srcLV, /*init*/ false);
1847
1848 // Release the old value.
1849 CGF.EmitARCRelease(oldValue, srcLV.isARCPreciseLifetime());
1850
1851 // Otherwise, we can just do a normal lvalue store.
1852 } else {
1853 CGF.EmitStoreThroughLValue(RValue::get(value), srcLV);
1854 }
John McCallf85e1932011-06-15 23:02:42 +00001855
1856 // Jump to the continuation block.
1857 if (!provablyNonNull)
1858 CGF.EmitBlock(contBB);
1859}
1860
1861static void emitWritebacks(CodeGenFunction &CGF,
1862 const CallArgList &args) {
1863 for (CallArgList::writeback_iterator
1864 i = args.writeback_begin(), e = args.writeback_end(); i != e; ++i)
1865 emitWriteback(CGF, *i);
1866}
1867
Reid Kleckner9b601952013-06-21 12:45:15 +00001868static void deactivateArgCleanupsBeforeCall(CodeGenFunction &CGF,
1869 const CallArgList &CallArgs) {
1870 assert(CGF.getTarget().getCXXABI().isArgumentDestroyedByCallee());
1871 ArrayRef<CallArgList::CallArgCleanup> Cleanups =
1872 CallArgs.getCleanupsToDeactivate();
1873 // Iterate in reverse to increase the likelihood of popping the cleanup.
1874 for (ArrayRef<CallArgList::CallArgCleanup>::reverse_iterator
1875 I = Cleanups.rbegin(), E = Cleanups.rend(); I != E; ++I) {
1876 CGF.DeactivateCleanupBlock(I->Cleanup, I->IsActiveIP);
1877 I->IsActiveIP->eraseFromParent();
1878 }
1879}
1880
John McCallb6a60792013-03-23 02:35:54 +00001881static const Expr *maybeGetUnaryAddrOfOperand(const Expr *E) {
1882 if (const UnaryOperator *uop = dyn_cast<UnaryOperator>(E->IgnoreParens()))
1883 if (uop->getOpcode() == UO_AddrOf)
1884 return uop->getSubExpr();
1885 return 0;
1886}
1887
John McCallf85e1932011-06-15 23:02:42 +00001888/// Emit an argument that's being passed call-by-writeback. That is,
1889/// we are passing the address of
1890static void emitWritebackArg(CodeGenFunction &CGF, CallArgList &args,
1891 const ObjCIndirectCopyRestoreExpr *CRE) {
John McCallb6a60792013-03-23 02:35:54 +00001892 LValue srcLV;
1893
1894 // Make an optimistic effort to emit the address as an l-value.
1895 // This can fail if the the argument expression is more complicated.
1896 if (const Expr *lvExpr = maybeGetUnaryAddrOfOperand(CRE->getSubExpr())) {
1897 srcLV = CGF.EmitLValue(lvExpr);
1898
1899 // Otherwise, just emit it as a scalar.
1900 } else {
1901 llvm::Value *srcAddr = CGF.EmitScalarExpr(CRE->getSubExpr());
1902
1903 QualType srcAddrType =
1904 CRE->getSubExpr()->getType()->castAs<PointerType>()->getPointeeType();
1905 srcLV = CGF.MakeNaturalAlignAddrLValue(srcAddr, srcAddrType);
1906 }
1907 llvm::Value *srcAddr = srcLV.getAddress();
John McCallf85e1932011-06-15 23:02:42 +00001908
1909 // The dest and src types don't necessarily match in LLVM terms
1910 // because of the crazy ObjC compatibility rules.
1911
Chris Lattner2acc6e32011-07-18 04:24:23 +00001912 llvm::PointerType *destType =
John McCallf85e1932011-06-15 23:02:42 +00001913 cast<llvm::PointerType>(CGF.ConvertType(CRE->getType()));
1914
1915 // If the address is a constant null, just pass the appropriate null.
1916 if (isProvablyNull(srcAddr)) {
1917 args.add(RValue::get(llvm::ConstantPointerNull::get(destType)),
1918 CRE->getType());
1919 return;
1920 }
1921
John McCallf85e1932011-06-15 23:02:42 +00001922 // Create the temporary.
1923 llvm::Value *temp = CGF.CreateTempAlloca(destType->getElementType(),
1924 "icr.temp");
Fariborz Jahanian82c458e2012-11-27 23:02:53 +00001925 // Loading an l-value can introduce a cleanup if the l-value is __weak,
1926 // and that cleanup will be conditional if we can't prove that the l-value
1927 // isn't null, so we need to register a dominating point so that the cleanups
1928 // system will make valid IR.
1929 CodeGenFunction::ConditionalEvaluation condEval(CGF);
1930
John McCallf85e1932011-06-15 23:02:42 +00001931 // Zero-initialize it if we're not doing a copy-initialization.
1932 bool shouldCopy = CRE->shouldCopy();
1933 if (!shouldCopy) {
1934 llvm::Value *null =
1935 llvm::ConstantPointerNull::get(
1936 cast<llvm::PointerType>(destType->getElementType()));
1937 CGF.Builder.CreateStore(null, temp);
1938 }
Fariborz Jahanian82c458e2012-11-27 23:02:53 +00001939
John McCallf85e1932011-06-15 23:02:42 +00001940 llvm::BasicBlock *contBB = 0;
John McCallb6a60792013-03-23 02:35:54 +00001941 llvm::BasicBlock *originBB = 0;
John McCallf85e1932011-06-15 23:02:42 +00001942
1943 // If the address is *not* known to be non-null, we need to switch.
1944 llvm::Value *finalArgument;
1945
1946 bool provablyNonNull = isProvablyNonNull(srcAddr);
1947 if (provablyNonNull) {
1948 finalArgument = temp;
1949 } else {
1950 llvm::Value *isNull = CGF.Builder.CreateIsNull(srcAddr, "icr.isnull");
1951
1952 finalArgument = CGF.Builder.CreateSelect(isNull,
1953 llvm::ConstantPointerNull::get(destType),
1954 temp, "icr.argument");
1955
1956 // If we need to copy, then the load has to be conditional, which
1957 // means we need control flow.
1958 if (shouldCopy) {
John McCallb6a60792013-03-23 02:35:54 +00001959 originBB = CGF.Builder.GetInsertBlock();
John McCallf85e1932011-06-15 23:02:42 +00001960 contBB = CGF.createBasicBlock("icr.cont");
1961 llvm::BasicBlock *copyBB = CGF.createBasicBlock("icr.copy");
1962 CGF.Builder.CreateCondBr(isNull, contBB, copyBB);
1963 CGF.EmitBlock(copyBB);
Fariborz Jahanian82c458e2012-11-27 23:02:53 +00001964 condEval.begin(CGF);
John McCallf85e1932011-06-15 23:02:42 +00001965 }
1966 }
1967
John McCallb6a60792013-03-23 02:35:54 +00001968 llvm::Value *valueToUse = 0;
1969
John McCallf85e1932011-06-15 23:02:42 +00001970 // Perform a copy if necessary.
1971 if (shouldCopy) {
John McCall545d9962011-06-25 02:11:03 +00001972 RValue srcRV = CGF.EmitLoadOfLValue(srcLV);
John McCallf85e1932011-06-15 23:02:42 +00001973 assert(srcRV.isScalar());
1974
1975 llvm::Value *src = srcRV.getScalarVal();
1976 src = CGF.Builder.CreateBitCast(src, destType->getElementType(),
1977 "icr.cast");
1978
1979 // Use an ordinary store, not a store-to-lvalue.
1980 CGF.Builder.CreateStore(src, temp);
John McCallb6a60792013-03-23 02:35:54 +00001981
1982 // If optimization is enabled, and the value was held in a
1983 // __strong variable, we need to tell the optimizer that this
1984 // value has to stay alive until we're doing the store back.
1985 // This is because the temporary is effectively unretained,
1986 // and so otherwise we can violate the high-level semantics.
1987 if (CGF.CGM.getCodeGenOpts().OptimizationLevel != 0 &&
1988 srcLV.getObjCLifetime() == Qualifiers::OCL_Strong) {
1989 valueToUse = src;
1990 }
John McCallf85e1932011-06-15 23:02:42 +00001991 }
Fariborz Jahanian82c458e2012-11-27 23:02:53 +00001992
John McCallf85e1932011-06-15 23:02:42 +00001993 // Finish the control flow if we needed it.
Fariborz Jahanian82c458e2012-11-27 23:02:53 +00001994 if (shouldCopy && !provablyNonNull) {
John McCallb6a60792013-03-23 02:35:54 +00001995 llvm::BasicBlock *copyBB = CGF.Builder.GetInsertBlock();
John McCallf85e1932011-06-15 23:02:42 +00001996 CGF.EmitBlock(contBB);
John McCallb6a60792013-03-23 02:35:54 +00001997
1998 // Make a phi for the value to intrinsically use.
1999 if (valueToUse) {
2000 llvm::PHINode *phiToUse = CGF.Builder.CreatePHI(valueToUse->getType(), 2,
2001 "icr.to-use");
2002 phiToUse->addIncoming(valueToUse, copyBB);
2003 phiToUse->addIncoming(llvm::UndefValue::get(valueToUse->getType()),
2004 originBB);
2005 valueToUse = phiToUse;
2006 }
2007
Fariborz Jahanian82c458e2012-11-27 23:02:53 +00002008 condEval.end(CGF);
2009 }
John McCallf85e1932011-06-15 23:02:42 +00002010
John McCallb6a60792013-03-23 02:35:54 +00002011 args.addWriteback(srcLV, temp, valueToUse);
John McCallf85e1932011-06-15 23:02:42 +00002012 args.add(RValue::get(finalArgument), CRE->getType());
2013}
2014
John McCall413ebdb2011-03-11 20:59:21 +00002015void CodeGenFunction::EmitCallArg(CallArgList &args, const Expr *E,
2016 QualType type) {
John McCallf85e1932011-06-15 23:02:42 +00002017 if (const ObjCIndirectCopyRestoreExpr *CRE
2018 = dyn_cast<ObjCIndirectCopyRestoreExpr>(E)) {
Richard Smith7edf9e32012-11-01 22:30:59 +00002019 assert(getLangOpts().ObjCAutoRefCount);
John McCallf85e1932011-06-15 23:02:42 +00002020 assert(getContext().hasSameType(E->getType(), type));
2021 return emitWritebackArg(*this, args, CRE);
2022 }
2023
John McCall8affed52011-08-26 18:42:59 +00002024 assert(type->isReferenceType() == E->isGLValue() &&
2025 "reference binding to unmaterialized r-value!");
2026
John McCallcec52f02011-08-26 21:08:13 +00002027 if (E->isGLValue()) {
2028 assert(E->getObjectKind() == OK_Ordinary);
Richard Smithd4ec5622013-06-12 23:38:09 +00002029 return args.add(EmitReferenceBindingToExpr(E), type);
John McCallcec52f02011-08-26 21:08:13 +00002030 }
Mike Stump1eb44332009-09-09 15:08:12 +00002031
Reid Kleckner9b601952013-06-21 12:45:15 +00002032 bool HasAggregateEvalKind = hasAggregateEvaluationKind(type);
2033
2034 // In the Microsoft C++ ABI, aggregate arguments are destructed by the callee.
2035 // However, we still have to push an EH-only cleanup in case we unwind before
2036 // we make it to the call.
2037 if (HasAggregateEvalKind &&
2038 CGM.getTarget().getCXXABI().isArgumentDestroyedByCallee()) {
2039 const CXXRecordDecl *RD = type->getAsCXXRecordDecl();
2040 if (RD && RD->hasNonTrivialDestructor()) {
2041 AggValueSlot Slot = CreateAggTemp(type, "agg.arg.tmp");
2042 Slot.setExternallyDestructed();
2043 EmitAggExpr(E, Slot);
2044 RValue RV = Slot.asRValue();
2045 args.add(RV, type);
2046
2047 pushDestroy(EHCleanup, RV.getAggregateAddr(), type, destroyCXXObject,
2048 /*useEHCleanupForArray*/ true);
2049 // This unreachable is a temporary marker which will be removed later.
2050 llvm::Instruction *IsActive = Builder.CreateUnreachable();
2051 args.addArgCleanupDeactivation(EHStack.getInnermostEHScope(), IsActive);
2052 return;
2053 }
2054 }
2055
2056 if (HasAggregateEvalKind && isa<ImplicitCastExpr>(E) &&
Eli Friedman55d48482011-05-26 00:10:27 +00002057 cast<CastExpr>(E)->getCastKind() == CK_LValueToRValue) {
2058 LValue L = EmitLValue(cast<CastExpr>(E)->getSubExpr());
2059 assert(L.isSimple());
Eli Friedmand39083d2013-06-11 01:08:22 +00002060 if (L.getAlignment() >= getContext().getTypeAlignInChars(type)) {
2061 args.add(L.asAggregateRValue(), type, /*NeedsCopy*/true);
2062 } else {
2063 // We can't represent a misaligned lvalue in the CallArgList, so copy
2064 // to an aligned temporary now.
2065 llvm::Value *tmp = CreateMemTemp(type);
2066 EmitAggregateCopy(tmp, L.getAddress(), type, L.isVolatile(),
2067 L.getAlignment());
2068 args.add(RValue::getAggregate(tmp), type);
2069 }
Eli Friedman55d48482011-05-26 00:10:27 +00002070 return;
2071 }
2072
John McCall413ebdb2011-03-11 20:59:21 +00002073 args.add(EmitAnyExprToTemp(E), type);
Anders Carlsson0139bb92009-04-08 20:47:54 +00002074}
2075
Dan Gohmanb49bd272012-02-16 00:57:37 +00002076// In ObjC ARC mode with no ObjC ARC exception safety, tell the ARC
2077// optimizer it can aggressively ignore unwind edges.
2078void
2079CodeGenFunction::AddObjCARCExceptionMetadata(llvm::Instruction *Inst) {
2080 if (CGM.getCodeGenOpts().OptimizationLevel != 0 &&
2081 !CGM.getCodeGenOpts().ObjCAutoRefCountExceptions)
2082 Inst->setMetadata("clang.arc.no_objc_arc_exceptions",
2083 CGM.getNoObjCARCExceptionsMetadata());
2084}
2085
John McCallbd7370a2013-02-28 19:01:20 +00002086/// Emits a call to the given no-arguments nounwind runtime function.
2087llvm::CallInst *
2088CodeGenFunction::EmitNounwindRuntimeCall(llvm::Value *callee,
2089 const llvm::Twine &name) {
2090 return EmitNounwindRuntimeCall(callee, ArrayRef<llvm::Value*>(), name);
2091}
2092
2093/// Emits a call to the given nounwind runtime function.
2094llvm::CallInst *
2095CodeGenFunction::EmitNounwindRuntimeCall(llvm::Value *callee,
2096 ArrayRef<llvm::Value*> args,
2097 const llvm::Twine &name) {
2098 llvm::CallInst *call = EmitRuntimeCall(callee, args, name);
2099 call->setDoesNotThrow();
2100 return call;
2101}
2102
2103/// Emits a simple call (never an invoke) to the given no-arguments
2104/// runtime function.
2105llvm::CallInst *
2106CodeGenFunction::EmitRuntimeCall(llvm::Value *callee,
2107 const llvm::Twine &name) {
2108 return EmitRuntimeCall(callee, ArrayRef<llvm::Value*>(), name);
2109}
2110
2111/// Emits a simple call (never an invoke) to the given runtime
2112/// function.
2113llvm::CallInst *
2114CodeGenFunction::EmitRuntimeCall(llvm::Value *callee,
2115 ArrayRef<llvm::Value*> args,
2116 const llvm::Twine &name) {
2117 llvm::CallInst *call = Builder.CreateCall(callee, args, name);
2118 call->setCallingConv(getRuntimeCC());
2119 return call;
2120}
2121
2122/// Emits a call or invoke to the given noreturn runtime function.
2123void CodeGenFunction::EmitNoreturnRuntimeCallOrInvoke(llvm::Value *callee,
2124 ArrayRef<llvm::Value*> args) {
2125 if (getInvokeDest()) {
2126 llvm::InvokeInst *invoke =
2127 Builder.CreateInvoke(callee,
2128 getUnreachableBlock(),
2129 getInvokeDest(),
2130 args);
2131 invoke->setDoesNotReturn();
2132 invoke->setCallingConv(getRuntimeCC());
2133 } else {
2134 llvm::CallInst *call = Builder.CreateCall(callee, args);
2135 call->setDoesNotReturn();
2136 call->setCallingConv(getRuntimeCC());
2137 Builder.CreateUnreachable();
2138 }
2139}
2140
2141/// Emits a call or invoke instruction to the given nullary runtime
2142/// function.
2143llvm::CallSite
2144CodeGenFunction::EmitRuntimeCallOrInvoke(llvm::Value *callee,
2145 const Twine &name) {
2146 return EmitRuntimeCallOrInvoke(callee, ArrayRef<llvm::Value*>(), name);
2147}
2148
2149/// Emits a call or invoke instruction to the given runtime function.
2150llvm::CallSite
2151CodeGenFunction::EmitRuntimeCallOrInvoke(llvm::Value *callee,
2152 ArrayRef<llvm::Value*> args,
2153 const Twine &name) {
2154 llvm::CallSite callSite = EmitCallOrInvoke(callee, args, name);
2155 callSite.setCallingConv(getRuntimeCC());
2156 return callSite;
2157}
2158
2159llvm::CallSite
2160CodeGenFunction::EmitCallOrInvoke(llvm::Value *Callee,
2161 const Twine &Name) {
2162 return EmitCallOrInvoke(Callee, ArrayRef<llvm::Value *>(), Name);
2163}
2164
John McCallf1549f62010-07-06 01:34:17 +00002165/// Emits a call or invoke instruction to the given function, depending
2166/// on the current state of the EH stack.
2167llvm::CallSite
2168CodeGenFunction::EmitCallOrInvoke(llvm::Value *Callee,
Chris Lattner2d3ba4f2011-07-23 17:14:25 +00002169 ArrayRef<llvm::Value *> Args,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002170 const Twine &Name) {
John McCallf1549f62010-07-06 01:34:17 +00002171 llvm::BasicBlock *InvokeDest = getInvokeDest();
John McCallf1549f62010-07-06 01:34:17 +00002172
Dan Gohmanb49bd272012-02-16 00:57:37 +00002173 llvm::Instruction *Inst;
2174 if (!InvokeDest)
2175 Inst = Builder.CreateCall(Callee, Args, Name);
2176 else {
2177 llvm::BasicBlock *ContBB = createBasicBlock("invoke.cont");
2178 Inst = Builder.CreateInvoke(Callee, ContBB, InvokeDest, Args, Name);
2179 EmitBlock(ContBB);
2180 }
2181
2182 // In ObjC ARC mode with no ObjC ARC exception safety, tell the ARC
2183 // optimizer it can aggressively ignore unwind edges.
David Blaikie4e4d0842012-03-11 07:00:24 +00002184 if (CGM.getLangOpts().ObjCAutoRefCount)
Dan Gohmanb49bd272012-02-16 00:57:37 +00002185 AddObjCARCExceptionMetadata(Inst);
2186
2187 return Inst;
John McCallf1549f62010-07-06 01:34:17 +00002188}
2189
Chris Lattner70855442011-07-12 04:46:18 +00002190static void checkArgMatches(llvm::Value *Elt, unsigned &ArgNo,
2191 llvm::FunctionType *FTy) {
2192 if (ArgNo < FTy->getNumParams())
2193 assert(Elt->getType() == FTy->getParamType(ArgNo));
2194 else
2195 assert(FTy->isVarArg());
2196 ++ArgNo;
2197}
2198
Chris Lattner811bf362011-07-12 06:29:11 +00002199void CodeGenFunction::ExpandTypeToArgs(QualType Ty, RValue RV,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002200 SmallVector<llvm::Value*,16> &Args,
Chris Lattner811bf362011-07-12 06:29:11 +00002201 llvm::FunctionType *IRFuncTy) {
Bob Wilson194f06a2011-08-03 05:58:22 +00002202 if (const ConstantArrayType *AT = getContext().getAsConstantArrayType(Ty)) {
2203 unsigned NumElts = AT->getSize().getZExtValue();
2204 QualType EltTy = AT->getElementType();
2205 llvm::Value *Addr = RV.getAggregateAddr();
2206 for (unsigned Elt = 0; Elt < NumElts; ++Elt) {
2207 llvm::Value *EltAddr = Builder.CreateConstGEP2_32(Addr, 0, Elt);
John McCall9d232c82013-03-07 21:37:08 +00002208 RValue EltRV = convertTempToRValue(EltAddr, EltTy);
Bob Wilson194f06a2011-08-03 05:58:22 +00002209 ExpandTypeToArgs(EltTy, EltRV, Args, IRFuncTy);
Chris Lattner811bf362011-07-12 06:29:11 +00002210 }
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +00002211 } else if (const RecordType *RT = Ty->getAs<RecordType>()) {
Bob Wilson194f06a2011-08-03 05:58:22 +00002212 RecordDecl *RD = RT->getDecl();
2213 assert(RV.isAggregate() && "Unexpected rvalue during struct expansion");
Eli Friedman377ecc72012-04-16 03:54:45 +00002214 LValue LV = MakeAddrLValue(RV.getAggregateAddr(), Ty);
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +00002215
2216 if (RD->isUnion()) {
2217 const FieldDecl *LargestFD = 0;
2218 CharUnits UnionSize = CharUnits::Zero();
2219
2220 for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end();
2221 i != e; ++i) {
David Blaikie581deb32012-06-06 20:45:41 +00002222 const FieldDecl *FD = *i;
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +00002223 assert(!FD->isBitField() &&
2224 "Cannot expand structure with bit-field members.");
2225 CharUnits FieldSize = getContext().getTypeSizeInChars(FD->getType());
2226 if (UnionSize < FieldSize) {
2227 UnionSize = FieldSize;
2228 LargestFD = FD;
2229 }
2230 }
2231 if (LargestFD) {
Eli Friedman377ecc72012-04-16 03:54:45 +00002232 RValue FldRV = EmitRValueForField(LV, LargestFD);
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +00002233 ExpandTypeToArgs(LargestFD->getType(), FldRV, Args, IRFuncTy);
2234 }
2235 } else {
2236 for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end();
2237 i != e; ++i) {
David Blaikie581deb32012-06-06 20:45:41 +00002238 FieldDecl *FD = *i;
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +00002239
Eli Friedman377ecc72012-04-16 03:54:45 +00002240 RValue FldRV = EmitRValueForField(LV, FD);
Anton Korobeynikoveaf856d2012-04-13 11:22:00 +00002241 ExpandTypeToArgs(FD->getType(), FldRV, Args, IRFuncTy);
2242 }
Bob Wilson194f06a2011-08-03 05:58:22 +00002243 }
Eli Friedmanca3d3fc2011-11-15 02:46:03 +00002244 } else if (Ty->isAnyComplexType()) {
Bob Wilson194f06a2011-08-03 05:58:22 +00002245 ComplexPairTy CV = RV.getComplexVal();
2246 Args.push_back(CV.first);
2247 Args.push_back(CV.second);
2248 } else {
Chris Lattner811bf362011-07-12 06:29:11 +00002249 assert(RV.isScalar() &&
2250 "Unexpected non-scalar rvalue during struct expansion.");
2251
2252 // Insert a bitcast as needed.
2253 llvm::Value *V = RV.getScalarVal();
2254 if (Args.size() < IRFuncTy->getNumParams() &&
2255 V->getType() != IRFuncTy->getParamType(Args.size()))
2256 V = Builder.CreateBitCast(V, IRFuncTy->getParamType(Args.size()));
2257
2258 Args.push_back(V);
2259 }
2260}
2261
2262
Daniel Dunbar88b53962009-02-02 22:03:45 +00002263RValue CodeGenFunction::EmitCall(const CGFunctionInfo &CallInfo,
Mike Stump1eb44332009-09-09 15:08:12 +00002264 llvm::Value *Callee,
Anders Carlssonf3c47c92009-12-24 19:25:24 +00002265 ReturnValueSlot ReturnValue,
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00002266 const CallArgList &CallArgs,
David Chisnalldd5c98f2010-05-01 11:15:56 +00002267 const Decl *TargetDecl,
David Chisnall4b02afc2010-05-02 13:41:58 +00002268 llvm::Instruction **callOrInvoke) {
Mike Stumpf5408fe2009-05-16 07:57:57 +00002269 // FIXME: We no longer need the types from CallArgs; lift up and simplify.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002270 SmallVector<llvm::Value*, 16> Args;
Daniel Dunbar17b708d2008-09-09 23:27:19 +00002271
2272 // Handle struct-return functions by passing a pointer to the
2273 // location that we would like to return into.
Daniel Dunbarbb36d332009-02-02 21:43:58 +00002274 QualType RetTy = CallInfo.getReturnType();
Daniel Dunbarb225be42009-02-03 05:59:18 +00002275 const ABIArgInfo &RetAI = CallInfo.getReturnInfo();
Mike Stump1eb44332009-09-09 15:08:12 +00002276
Chris Lattner70855442011-07-12 04:46:18 +00002277 // IRArgNo - Keep track of the argument number in the callee we're looking at.
2278 unsigned IRArgNo = 0;
2279 llvm::FunctionType *IRFuncTy =
2280 cast<llvm::FunctionType>(
2281 cast<llvm::PointerType>(Callee->getType())->getElementType());
Mike Stump1eb44332009-09-09 15:08:12 +00002282
Chris Lattner5db7ae52009-06-13 00:26:38 +00002283 // If the call returns a temporary with struct return, create a temporary
Anders Carlssond2490a92009-12-24 20:40:36 +00002284 // alloca to hold the result, unless one is given to us.
Daniel Dunbardacf9dd2010-07-14 23:39:36 +00002285 if (CGM.ReturnTypeUsesSRet(CallInfo)) {
Anders Carlssond2490a92009-12-24 20:40:36 +00002286 llvm::Value *Value = ReturnValue.getValue();
2287 if (!Value)
Daniel Dunbar195337d2010-02-09 02:48:28 +00002288 Value = CreateMemTemp(RetTy);
Anders Carlssond2490a92009-12-24 20:40:36 +00002289 Args.push_back(Value);
Chris Lattner70855442011-07-12 04:46:18 +00002290 checkArgMatches(Value, IRArgNo, IRFuncTy);
Anders Carlssond2490a92009-12-24 20:40:36 +00002291 }
Mike Stump1eb44332009-09-09 15:08:12 +00002292
Daniel Dunbar4b5f0a42009-02-04 21:17:21 +00002293 assert(CallInfo.arg_size() == CallArgs.size() &&
2294 "Mismatch between function signature & arguments.");
Daniel Dunbarb225be42009-02-03 05:59:18 +00002295 CGFunctionInfo::const_arg_iterator info_it = CallInfo.arg_begin();
Mike Stump1eb44332009-09-09 15:08:12 +00002296 for (CallArgList::const_iterator I = CallArgs.begin(), E = CallArgs.end();
Daniel Dunbarb225be42009-02-03 05:59:18 +00002297 I != E; ++I, ++info_it) {
2298 const ABIArgInfo &ArgInfo = info_it->info;
Eli Friedmanc6d07822011-05-02 18:05:27 +00002299 RValue RV = I->RV;
Daniel Dunbar56273772008-09-17 00:51:38 +00002300
John McCall9d232c82013-03-07 21:37:08 +00002301 CharUnits TypeAlign = getContext().getTypeAlignInChars(I->Ty);
Rafael Espindolae4aeeaa2012-10-24 01:59:00 +00002302
2303 // Insert a padding argument to ensure proper alignment.
2304 if (llvm::Type *PaddingType = ArgInfo.getPaddingType()) {
2305 Args.push_back(llvm::UndefValue::get(PaddingType));
2306 ++IRArgNo;
2307 }
2308
Daniel Dunbar56273772008-09-17 00:51:38 +00002309 switch (ArgInfo.getKind()) {
Daniel Dunbar91a16fa2010-08-21 02:24:36 +00002310 case ABIArgInfo::Indirect: {
Daniel Dunbar1f745982009-02-05 09:16:39 +00002311 if (RV.isScalar() || RV.isComplex()) {
2312 // Make a temporary alloca to pass the argument.
Eli Friedman70cbd2a2011-06-15 18:26:32 +00002313 llvm::AllocaInst *AI = CreateMemTemp(I->Ty);
2314 if (ArgInfo.getIndirectAlign() > AI->getAlignment())
2315 AI->setAlignment(ArgInfo.getIndirectAlign());
2316 Args.push_back(AI);
John McCall9d232c82013-03-07 21:37:08 +00002317
2318 LValue argLV =
2319 MakeAddrLValue(Args.back(), I->Ty, TypeAlign);
Chris Lattner70855442011-07-12 04:46:18 +00002320
Daniel Dunbar1f745982009-02-05 09:16:39 +00002321 if (RV.isScalar())
John McCall9d232c82013-03-07 21:37:08 +00002322 EmitStoreOfScalar(RV.getScalarVal(), argLV, /*init*/ true);
Daniel Dunbar1f745982009-02-05 09:16:39 +00002323 else
John McCall9d232c82013-03-07 21:37:08 +00002324 EmitStoreOfComplex(RV.getComplexVal(), argLV, /*init*/ true);
Chris Lattner70855442011-07-12 04:46:18 +00002325
2326 // Validate argument match.
2327 checkArgMatches(AI, IRArgNo, IRFuncTy);
Daniel Dunbar1f745982009-02-05 09:16:39 +00002328 } else {
Eli Friedmanea5e4da2011-06-14 01:37:52 +00002329 // We want to avoid creating an unnecessary temporary+copy here;
Guy Benyeid436c992013-03-10 12:59:00 +00002330 // however, we need one in three cases:
Eli Friedmanea5e4da2011-06-14 01:37:52 +00002331 // 1. If the argument is not byval, and we are required to copy the
2332 // source. (This case doesn't occur on any common architecture.)
2333 // 2. If the argument is byval, RV is not sufficiently aligned, and
2334 // we cannot force it to be sufficiently aligned.
Guy Benyeid436c992013-03-10 12:59:00 +00002335 // 3. If the argument is byval, but RV is located in an address space
2336 // different than that of the argument (0).
Eli Friedman97cb5a42011-06-15 22:09:18 +00002337 llvm::Value *Addr = RV.getAggregateAddr();
2338 unsigned Align = ArgInfo.getIndirectAlign();
Micah Villmow25a6a842012-10-08 16:25:52 +00002339 const llvm::DataLayout *TD = &CGM.getDataLayout();
Guy Benyeid436c992013-03-10 12:59:00 +00002340 const unsigned RVAddrSpace = Addr->getType()->getPointerAddressSpace();
2341 const unsigned ArgAddrSpace = (IRArgNo < IRFuncTy->getNumParams() ?
2342 IRFuncTy->getParamType(IRArgNo)->getPointerAddressSpace() : 0);
Eli Friedman97cb5a42011-06-15 22:09:18 +00002343 if ((!ArgInfo.getIndirectByVal() && I->NeedsCopy) ||
John McCall9d232c82013-03-07 21:37:08 +00002344 (ArgInfo.getIndirectByVal() && TypeAlign.getQuantity() < Align &&
Guy Benyeid436c992013-03-10 12:59:00 +00002345 llvm::getOrEnforceKnownAlignment(Addr, Align, TD) < Align) ||
2346 (ArgInfo.getIndirectByVal() && (RVAddrSpace != ArgAddrSpace))) {
Eli Friedmanea5e4da2011-06-14 01:37:52 +00002347 // Create an aligned temporary, and copy to it.
Eli Friedman97cb5a42011-06-15 22:09:18 +00002348 llvm::AllocaInst *AI = CreateMemTemp(I->Ty);
2349 if (Align > AI->getAlignment())
2350 AI->setAlignment(Align);
Eli Friedmanea5e4da2011-06-14 01:37:52 +00002351 Args.push_back(AI);
Chad Rosier649b4a12012-03-29 17:37:10 +00002352 EmitAggregateCopy(AI, Addr, I->Ty, RV.isVolatileQualified());
Chris Lattner70855442011-07-12 04:46:18 +00002353
2354 // Validate argument match.
2355 checkArgMatches(AI, IRArgNo, IRFuncTy);
Eli Friedmanea5e4da2011-06-14 01:37:52 +00002356 } else {
2357 // Skip the extra memcpy call.
Eli Friedman97cb5a42011-06-15 22:09:18 +00002358 Args.push_back(Addr);
Chris Lattner70855442011-07-12 04:46:18 +00002359
2360 // Validate argument match.
2361 checkArgMatches(Addr, IRArgNo, IRFuncTy);
Eli Friedmanea5e4da2011-06-14 01:37:52 +00002362 }
Daniel Dunbar1f745982009-02-05 09:16:39 +00002363 }
2364 break;
Daniel Dunbar91a16fa2010-08-21 02:24:36 +00002365 }
Daniel Dunbar1f745982009-02-05 09:16:39 +00002366
Daniel Dunbar11434922009-01-26 21:26:08 +00002367 case ABIArgInfo::Ignore:
2368 break;
Michael J. Spencer9cac4942010-10-19 06:39:39 +00002369
Chris Lattner800588f2010-07-29 06:26:06 +00002370 case ABIArgInfo::Extend:
2371 case ABIArgInfo::Direct: {
2372 if (!isa<llvm::StructType>(ArgInfo.getCoerceToType()) &&
Chris Lattner117e3f42010-07-30 04:02:24 +00002373 ArgInfo.getCoerceToType() == ConvertType(info_it->type) &&
2374 ArgInfo.getDirectOffset() == 0) {
Chris Lattner70855442011-07-12 04:46:18 +00002375 llvm::Value *V;
Chris Lattner800588f2010-07-29 06:26:06 +00002376 if (RV.isScalar())
Chris Lattner70855442011-07-12 04:46:18 +00002377 V = RV.getScalarVal();
Chris Lattner800588f2010-07-29 06:26:06 +00002378 else
Chris Lattner70855442011-07-12 04:46:18 +00002379 V = Builder.CreateLoad(RV.getAggregateAddr());
2380
Chris Lattner21ca1fd2011-07-12 04:53:39 +00002381 // If the argument doesn't match, perform a bitcast to coerce it. This
2382 // can happen due to trivial type mismatches.
2383 if (IRArgNo < IRFuncTy->getNumParams() &&
2384 V->getType() != IRFuncTy->getParamType(IRArgNo))
2385 V = Builder.CreateBitCast(V, IRFuncTy->getParamType(IRArgNo));
Chris Lattner70855442011-07-12 04:46:18 +00002386 Args.push_back(V);
2387
Chris Lattner70855442011-07-12 04:46:18 +00002388 checkArgMatches(V, IRArgNo, IRFuncTy);
Chris Lattner800588f2010-07-29 06:26:06 +00002389 break;
2390 }
Daniel Dunbar11434922009-01-26 21:26:08 +00002391
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +00002392 // FIXME: Avoid the conversion through memory if possible.
2393 llvm::Value *SrcPtr;
John McCall9d232c82013-03-07 21:37:08 +00002394 if (RV.isScalar() || RV.isComplex()) {
Eli Friedmanc6d07822011-05-02 18:05:27 +00002395 SrcPtr = CreateMemTemp(I->Ty, "coerce");
John McCall9d232c82013-03-07 21:37:08 +00002396 LValue SrcLV = MakeAddrLValue(SrcPtr, I->Ty, TypeAlign);
2397 if (RV.isScalar()) {
2398 EmitStoreOfScalar(RV.getScalarVal(), SrcLV, /*init*/ true);
2399 } else {
2400 EmitStoreOfComplex(RV.getComplexVal(), SrcLV, /*init*/ true);
2401 }
Mike Stump1eb44332009-09-09 15:08:12 +00002402 } else
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +00002403 SrcPtr = RV.getAggregateAddr();
Michael J. Spencer9cac4942010-10-19 06:39:39 +00002404
Chris Lattner117e3f42010-07-30 04:02:24 +00002405 // If the value is offset in memory, apply the offset now.
2406 if (unsigned Offs = ArgInfo.getDirectOffset()) {
2407 SrcPtr = Builder.CreateBitCast(SrcPtr, Builder.getInt8PtrTy());
2408 SrcPtr = Builder.CreateConstGEP1_32(SrcPtr, Offs);
Michael J. Spencer9cac4942010-10-19 06:39:39 +00002409 SrcPtr = Builder.CreateBitCast(SrcPtr,
Chris Lattner117e3f42010-07-30 04:02:24 +00002410 llvm::PointerType::getUnqual(ArgInfo.getCoerceToType()));
2411
2412 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +00002413
Chris Lattnerce700162010-06-28 23:44:11 +00002414 // If the coerce-to type is a first class aggregate, we flatten it and
2415 // pass the elements. Either way is semantically identical, but fast-isel
2416 // and the optimizer generally likes scalar values better than FCAs.
Chris Lattner2acc6e32011-07-18 04:24:23 +00002417 if (llvm::StructType *STy =
Chris Lattner309c59f2010-06-29 00:06:42 +00002418 dyn_cast<llvm::StructType>(ArgInfo.getCoerceToType())) {
Chandler Carruthf82232c2012-10-10 11:29:08 +00002419 llvm::Type *SrcTy =
2420 cast<llvm::PointerType>(SrcPtr->getType())->getElementType();
2421 uint64_t SrcSize = CGM.getDataLayout().getTypeAllocSize(SrcTy);
2422 uint64_t DstSize = CGM.getDataLayout().getTypeAllocSize(STy);
2423
2424 // If the source type is smaller than the destination type of the
2425 // coerce-to logic, copy the source value into a temp alloca the size
2426 // of the destination type to allow loading all of it. The bits past
2427 // the source value are left undef.
2428 if (SrcSize < DstSize) {
2429 llvm::AllocaInst *TempAlloca
2430 = CreateTempAlloca(STy, SrcPtr->getName() + ".coerce");
2431 Builder.CreateMemCpy(TempAlloca, SrcPtr, SrcSize, 0);
2432 SrcPtr = TempAlloca;
2433 } else {
2434 SrcPtr = Builder.CreateBitCast(SrcPtr,
2435 llvm::PointerType::getUnqual(STy));
2436 }
2437
Chris Lattner92826882010-07-05 20:41:41 +00002438 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
2439 llvm::Value *EltPtr = Builder.CreateConstGEP2_32(SrcPtr, 0, i);
Chris Lattnerdeabde22010-07-28 18:24:28 +00002440 llvm::LoadInst *LI = Builder.CreateLoad(EltPtr);
2441 // We don't know what we're loading from.
2442 LI->setAlignment(1);
2443 Args.push_back(LI);
Chris Lattner70855442011-07-12 04:46:18 +00002444
2445 // Validate argument match.
2446 checkArgMatches(LI, IRArgNo, IRFuncTy);
Chris Lattner309c59f2010-06-29 00:06:42 +00002447 }
Chris Lattnerce700162010-06-28 23:44:11 +00002448 } else {
Chris Lattner309c59f2010-06-29 00:06:42 +00002449 // In the simple case, just pass the coerced loaded value.
2450 Args.push_back(CreateCoercedLoad(SrcPtr, ArgInfo.getCoerceToType(),
2451 *this));
Chris Lattner70855442011-07-12 04:46:18 +00002452
2453 // Validate argument match.
2454 checkArgMatches(Args.back(), IRArgNo, IRFuncTy);
Chris Lattnerce700162010-06-28 23:44:11 +00002455 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +00002456
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +00002457 break;
2458 }
2459
Daniel Dunbar56273772008-09-17 00:51:38 +00002460 case ABIArgInfo::Expand:
Chris Lattner811bf362011-07-12 06:29:11 +00002461 ExpandTypeToArgs(I->Ty, RV, Args, IRFuncTy);
Chris Lattner70855442011-07-12 04:46:18 +00002462 IRArgNo = Args.size();
Daniel Dunbar56273772008-09-17 00:51:38 +00002463 break;
Daniel Dunbar17b708d2008-09-09 23:27:19 +00002464 }
2465 }
Mike Stump1eb44332009-09-09 15:08:12 +00002466
Reid Kleckner9b601952013-06-21 12:45:15 +00002467 if (!CallArgs.getCleanupsToDeactivate().empty())
2468 deactivateArgCleanupsBeforeCall(*this, CallArgs);
2469
Chris Lattner5db7ae52009-06-13 00:26:38 +00002470 // If the callee is a bitcast of a function to a varargs pointer to function
2471 // type, check to see if we can remove the bitcast. This handles some cases
2472 // with unprototyped functions.
2473 if (llvm::ConstantExpr *CE = dyn_cast<llvm::ConstantExpr>(Callee))
2474 if (llvm::Function *CalleeF = dyn_cast<llvm::Function>(CE->getOperand(0))) {
Chris Lattner2acc6e32011-07-18 04:24:23 +00002475 llvm::PointerType *CurPT=cast<llvm::PointerType>(Callee->getType());
2476 llvm::FunctionType *CurFT =
Chris Lattner5db7ae52009-06-13 00:26:38 +00002477 cast<llvm::FunctionType>(CurPT->getElementType());
Chris Lattner2acc6e32011-07-18 04:24:23 +00002478 llvm::FunctionType *ActualFT = CalleeF->getFunctionType();
Mike Stump1eb44332009-09-09 15:08:12 +00002479
Chris Lattner5db7ae52009-06-13 00:26:38 +00002480 if (CE->getOpcode() == llvm::Instruction::BitCast &&
2481 ActualFT->getReturnType() == CurFT->getReturnType() &&
Chris Lattnerd6bebbf2009-06-23 01:38:41 +00002482 ActualFT->getNumParams() == CurFT->getNumParams() &&
Fariborz Jahanianc0ddef22011-03-01 17:28:13 +00002483 ActualFT->getNumParams() == Args.size() &&
2484 (CurFT->isVarArg() || !ActualFT->isVarArg())) {
Chris Lattner5db7ae52009-06-13 00:26:38 +00002485 bool ArgsMatch = true;
2486 for (unsigned i = 0, e = ActualFT->getNumParams(); i != e; ++i)
2487 if (ActualFT->getParamType(i) != CurFT->getParamType(i)) {
2488 ArgsMatch = false;
2489 break;
2490 }
Mike Stump1eb44332009-09-09 15:08:12 +00002491
Chris Lattner5db7ae52009-06-13 00:26:38 +00002492 // Strip the cast if we can get away with it. This is a nice cleanup,
2493 // but also allows us to inline the function at -O0 if it is marked
2494 // always_inline.
2495 if (ArgsMatch)
2496 Callee = CalleeF;
2497 }
2498 }
Mike Stump1eb44332009-09-09 15:08:12 +00002499
Daniel Dunbarca6408c2009-09-12 00:59:20 +00002500 unsigned CallingConv;
Devang Patel761d7f72008-09-25 21:02:23 +00002501 CodeGen::AttributeListType AttributeList;
Bill Wendling94236e72013-02-22 00:13:35 +00002502 CGM.ConstructAttributeList(CallInfo, TargetDecl, AttributeList,
2503 CallingConv, true);
Bill Wendling785b7782012-12-07 23:17:26 +00002504 llvm::AttributeSet Attrs = llvm::AttributeSet::get(getLLVMContext(),
Bill Wendling94236e72013-02-22 00:13:35 +00002505 AttributeList);
Mike Stump1eb44332009-09-09 15:08:12 +00002506
John McCallf1549f62010-07-06 01:34:17 +00002507 llvm::BasicBlock *InvokeDest = 0;
Bill Wendling01ad9542012-12-30 10:32:17 +00002508 if (!Attrs.hasAttribute(llvm::AttributeSet::FunctionIndex,
2509 llvm::Attribute::NoUnwind))
John McCallf1549f62010-07-06 01:34:17 +00002510 InvokeDest = getInvokeDest();
2511
Daniel Dunbard14151d2009-03-02 04:32:35 +00002512 llvm::CallSite CS;
John McCallf1549f62010-07-06 01:34:17 +00002513 if (!InvokeDest) {
Jay Foad4c7d9f12011-07-15 08:37:34 +00002514 CS = Builder.CreateCall(Callee, Args);
Daniel Dunbar9834ffb2009-02-23 17:26:39 +00002515 } else {
2516 llvm::BasicBlock *Cont = createBasicBlock("invoke.cont");
Jay Foad4c7d9f12011-07-15 08:37:34 +00002517 CS = Builder.CreateInvoke(Callee, Cont, InvokeDest, Args);
Daniel Dunbar9834ffb2009-02-23 17:26:39 +00002518 EmitBlock(Cont);
Daniel Dunbarf4fe0f02009-02-20 18:54:31 +00002519 }
Chris Lattnerce933992010-06-29 16:40:28 +00002520 if (callOrInvoke)
David Chisnall4b02afc2010-05-02 13:41:58 +00002521 *callOrInvoke = CS.getInstruction();
Daniel Dunbarf4fe0f02009-02-20 18:54:31 +00002522
Daniel Dunbard14151d2009-03-02 04:32:35 +00002523 CS.setAttributes(Attrs);
Daniel Dunbarca6408c2009-09-12 00:59:20 +00002524 CS.setCallingConv(static_cast<llvm::CallingConv::ID>(CallingConv));
Daniel Dunbard14151d2009-03-02 04:32:35 +00002525
Dan Gohmanb49bd272012-02-16 00:57:37 +00002526 // In ObjC ARC mode with no ObjC ARC exception safety, tell the ARC
2527 // optimizer it can aggressively ignore unwind edges.
David Blaikie4e4d0842012-03-11 07:00:24 +00002528 if (CGM.getLangOpts().ObjCAutoRefCount)
Dan Gohmanb49bd272012-02-16 00:57:37 +00002529 AddObjCARCExceptionMetadata(CS.getInstruction());
2530
Daniel Dunbard14151d2009-03-02 04:32:35 +00002531 // If the call doesn't return, finish the basic block and clear the
2532 // insertion point; this allows the rest of IRgen to discard
2533 // unreachable code.
2534 if (CS.doesNotReturn()) {
2535 Builder.CreateUnreachable();
2536 Builder.ClearInsertionPoint();
Mike Stump1eb44332009-09-09 15:08:12 +00002537
Mike Stumpf5408fe2009-05-16 07:57:57 +00002538 // FIXME: For now, emit a dummy basic block because expr emitters in
2539 // generally are not ready to handle emitting expressions at unreachable
2540 // points.
Daniel Dunbard14151d2009-03-02 04:32:35 +00002541 EnsureInsertPoint();
Mike Stump1eb44332009-09-09 15:08:12 +00002542
Daniel Dunbard14151d2009-03-02 04:32:35 +00002543 // Return a reasonable RValue.
2544 return GetUndefRValue(RetTy);
Mike Stump1eb44332009-09-09 15:08:12 +00002545 }
Daniel Dunbard14151d2009-03-02 04:32:35 +00002546
2547 llvm::Instruction *CI = CS.getInstruction();
Benjamin Kramerffbb15e2009-10-05 13:47:21 +00002548 if (Builder.isNamePreserving() && !CI->getType()->isVoidTy())
Daniel Dunbar17b708d2008-09-09 23:27:19 +00002549 CI->setName("call");
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00002550
John McCallf85e1932011-06-15 23:02:42 +00002551 // Emit any writebacks immediately. Arguably this should happen
2552 // after any return-value munging.
2553 if (CallArgs.hasWritebacks())
2554 emitWritebacks(*this, CallArgs);
2555
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00002556 switch (RetAI.getKind()) {
John McCall9d232c82013-03-07 21:37:08 +00002557 case ABIArgInfo::Indirect:
2558 return convertTempToRValue(Args[0], RetTy);
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00002559
Daniel Dunbar11434922009-01-26 21:26:08 +00002560 case ABIArgInfo::Ignore:
Daniel Dunbar0bcc5212009-02-03 06:30:17 +00002561 // If we are ignoring an argument that had a result, make sure to
2562 // construct the appropriate return value for our caller.
Daniel Dunbar13e81732009-02-05 07:09:07 +00002563 return GetUndefRValue(RetTy);
Michael J. Spencer9cac4942010-10-19 06:39:39 +00002564
Chris Lattner800588f2010-07-29 06:26:06 +00002565 case ABIArgInfo::Extend:
2566 case ABIArgInfo::Direct: {
Chris Lattner6af13f32011-07-13 03:59:32 +00002567 llvm::Type *RetIRTy = ConvertType(RetTy);
2568 if (RetAI.getCoerceToType() == RetIRTy && RetAI.getDirectOffset() == 0) {
John McCall9d232c82013-03-07 21:37:08 +00002569 switch (getEvaluationKind(RetTy)) {
2570 case TEK_Complex: {
Chris Lattner800588f2010-07-29 06:26:06 +00002571 llvm::Value *Real = Builder.CreateExtractValue(CI, 0);
2572 llvm::Value *Imag = Builder.CreateExtractValue(CI, 1);
2573 return RValue::getComplex(std::make_pair(Real, Imag));
2574 }
John McCall9d232c82013-03-07 21:37:08 +00002575 case TEK_Aggregate: {
Chris Lattner800588f2010-07-29 06:26:06 +00002576 llvm::Value *DestPtr = ReturnValue.getValue();
2577 bool DestIsVolatile = ReturnValue.isVolatile();
Daniel Dunbar11434922009-01-26 21:26:08 +00002578
Chris Lattner800588f2010-07-29 06:26:06 +00002579 if (!DestPtr) {
2580 DestPtr = CreateMemTemp(RetTy, "agg.tmp");
2581 DestIsVolatile = false;
2582 }
Eli Friedmanbadea572011-05-17 21:08:01 +00002583 BuildAggStore(*this, CI, DestPtr, DestIsVolatile, false);
Chris Lattner800588f2010-07-29 06:26:06 +00002584 return RValue::getAggregate(DestPtr);
2585 }
John McCall9d232c82013-03-07 21:37:08 +00002586 case TEK_Scalar: {
2587 // If the argument doesn't match, perform a bitcast to coerce it. This
2588 // can happen due to trivial type mismatches.
2589 llvm::Value *V = CI;
2590 if (V->getType() != RetIRTy)
2591 V = Builder.CreateBitCast(V, RetIRTy);
2592 return RValue::get(V);
2593 }
2594 }
2595 llvm_unreachable("bad evaluation kind");
Chris Lattner800588f2010-07-29 06:26:06 +00002596 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +00002597
Anders Carlssond2490a92009-12-24 20:40:36 +00002598 llvm::Value *DestPtr = ReturnValue.getValue();
2599 bool DestIsVolatile = ReturnValue.isVolatile();
Michael J. Spencer9cac4942010-10-19 06:39:39 +00002600
Anders Carlssond2490a92009-12-24 20:40:36 +00002601 if (!DestPtr) {
Daniel Dunbar195337d2010-02-09 02:48:28 +00002602 DestPtr = CreateMemTemp(RetTy, "coerce");
Anders Carlssond2490a92009-12-24 20:40:36 +00002603 DestIsVolatile = false;
2604 }
Michael J. Spencer9cac4942010-10-19 06:39:39 +00002605
Chris Lattner117e3f42010-07-30 04:02:24 +00002606 // If the value is offset in memory, apply the offset now.
2607 llvm::Value *StorePtr = DestPtr;
2608 if (unsigned Offs = RetAI.getDirectOffset()) {
2609 StorePtr = Builder.CreateBitCast(StorePtr, Builder.getInt8PtrTy());
2610 StorePtr = Builder.CreateConstGEP1_32(StorePtr, Offs);
Michael J. Spencer9cac4942010-10-19 06:39:39 +00002611 StorePtr = Builder.CreateBitCast(StorePtr,
Chris Lattner117e3f42010-07-30 04:02:24 +00002612 llvm::PointerType::getUnqual(RetAI.getCoerceToType()));
2613 }
2614 CreateCoercedStore(CI, StorePtr, DestIsVolatile, *this);
Michael J. Spencer9cac4942010-10-19 06:39:39 +00002615
John McCall9d232c82013-03-07 21:37:08 +00002616 return convertTempToRValue(DestPtr, RetTy);
Daniel Dunbar639ffe42008-09-10 07:04:09 +00002617 }
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00002618
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00002619 case ABIArgInfo::Expand:
David Blaikieb219cfc2011-09-23 05:06:16 +00002620 llvm_unreachable("Invalid ABI kind for return argument");
Daniel Dunbar17b708d2008-09-09 23:27:19 +00002621 }
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00002622
David Blaikieb219cfc2011-09-23 05:06:16 +00002623 llvm_unreachable("Unhandled ABIArgInfo::Kind");
Daniel Dunbar17b708d2008-09-09 23:27:19 +00002624}
Daniel Dunbarb4094ea2009-02-10 20:44:09 +00002625
2626/* VarArg handling */
2627
2628llvm::Value *CodeGenFunction::EmitVAArg(llvm::Value *VAListAddr, QualType Ty) {
2629 return CGM.getTypes().getABIInfo().EmitVAArg(VAListAddr, Ty, *this);
2630}