blob: d7a03c9bbfaba964ec74ad22710b8413bcd9a497 [file] [log] [blame]
Daniel Dunbar3d7c90b2008-09-08 21:33:45 +00001//===----- CGCall.h - Encapsulate calling convention details ----*- C++ -*-===//
2//
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"
16#include "CodeGenFunction.h"
Daniel Dunbarc68897d2008-09-10 00:41:16 +000017#include "CodeGenModule.h"
Daniel Dunbard9eff3d2008-10-13 17:02:26 +000018#include "clang/Basic/TargetInfo.h"
Daniel Dunbar3d7c90b2008-09-08 21:33:45 +000019#include "clang/AST/Decl.h"
Anders Carlssonb15b55c2009-04-03 22:48:58 +000020#include "clang/AST/DeclCXX.h"
Daniel Dunbar3d7c90b2008-09-08 21:33:45 +000021#include "clang/AST/DeclObjC.h"
Chandler Carruth85098242010-06-15 23:19:56 +000022#include "clang/Frontend/CodeGenOptions.h"
Devang Patel3e1f51b2008-09-24 01:01:36 +000023#include "llvm/Attributes.h"
Daniel Dunbarb960b7b2009-03-02 04:32:35 +000024#include "llvm/Support/CallSite.h"
Daniel Dunbar0f4aa3c2009-01-27 01:36:03 +000025#include "llvm/Target/TargetData.h"
Daniel Dunbar6d6b0d32009-02-03 01:05:53 +000026
27#include "ABIInfo.h"
28
Daniel Dunbar3d7c90b2008-09-08 21:33:45 +000029using namespace clang;
30using namespace CodeGen;
31
32/***/
33
Daniel Dunbar3d7c90b2008-09-08 21:33:45 +000034// FIXME: Use iterator and sidestep silly type array creation.
35
John McCallab26cfa2010-02-05 21:31:56 +000036static unsigned ClangCallConvToLLVMCallConv(CallingConv CC) {
37 switch (CC) {
38 default: return llvm::CallingConv::C;
39 case CC_X86StdCall: return llvm::CallingConv::X86_StdCall;
40 case CC_X86FastCall: return llvm::CallingConv::X86_FastCall;
Douglas Gregora941dca2010-05-18 16:57:00 +000041 case CC_X86ThisCall: return llvm::CallingConv::X86_ThisCall;
John McCallab26cfa2010-02-05 21:31:56 +000042 }
43}
44
John McCall8ee376f2010-02-24 07:14:12 +000045/// Derives the 'this' type for codegen purposes, i.e. ignoring method
46/// qualification.
47/// FIXME: address space qualification?
John McCall2da83a32010-02-26 00:48:12 +000048static CanQualType GetThisType(ASTContext &Context, const CXXRecordDecl *RD) {
49 QualType RecTy = Context.getTagDeclType(RD)->getCanonicalTypeInternal();
50 return Context.getPointerType(CanQualType::CreateUnsafe(RecTy));
Daniel Dunbar7a95ca32008-09-10 04:01:49 +000051}
52
John McCall8ee376f2010-02-24 07:14:12 +000053/// Returns the canonical formal type of the given C++ method.
John McCall2da83a32010-02-26 00:48:12 +000054static CanQual<FunctionProtoType> GetFormalType(const CXXMethodDecl *MD) {
55 return MD->getType()->getCanonicalTypeUnqualified()
56 .getAs<FunctionProtoType>();
John McCall8ee376f2010-02-24 07:14:12 +000057}
58
59/// Returns the "extra-canonicalized" return type, which discards
60/// qualifiers on the return type. Codegen doesn't care about them,
61/// and it makes ABI code a little easier to be able to assume that
62/// all parameter and return types are top-level unqualified.
John McCall2da83a32010-02-26 00:48:12 +000063static CanQualType GetReturnType(QualType RetTy) {
64 return RetTy->getCanonicalTypeUnqualified().getUnqualifiedType();
John McCall8ee376f2010-02-24 07:14:12 +000065}
66
67const CGFunctionInfo &
John McCall2da83a32010-02-26 00:48:12 +000068CodeGenTypes::getFunctionInfo(CanQual<FunctionNoProtoType> FTNP) {
69 return getFunctionInfo(FTNP->getResultType().getUnqualifiedType(),
70 llvm::SmallVector<CanQualType, 16>(),
Rafael Espindolac50c27c2010-03-30 20:24:48 +000071 FTNP->getExtInfo());
John McCall8ee376f2010-02-24 07:14:12 +000072}
73
74/// \param Args - contains any initial parameters besides those
75/// in the formal type
76static const CGFunctionInfo &getFunctionInfo(CodeGenTypes &CGT,
John McCall2da83a32010-02-26 00:48:12 +000077 llvm::SmallVectorImpl<CanQualType> &ArgTys,
78 CanQual<FunctionProtoType> FTP) {
Daniel Dunbarbf8c24a2009-02-02 23:23:47 +000079 // FIXME: Kill copy.
Daniel Dunbar7a95ca32008-09-10 04:01:49 +000080 for (unsigned i = 0, e = FTP->getNumArgs(); i != e; ++i)
Daniel Dunbarbf8c24a2009-02-02 23:23:47 +000081 ArgTys.push_back(FTP->getArgType(i));
John McCall2da83a32010-02-26 00:48:12 +000082 CanQualType ResTy = FTP->getResultType().getUnqualifiedType();
83 return CGT.getFunctionInfo(ResTy, ArgTys,
Rafael Espindolac50c27c2010-03-30 20:24:48 +000084 FTP->getExtInfo());
John McCall8ee376f2010-02-24 07:14:12 +000085}
86
87const CGFunctionInfo &
John McCall2da83a32010-02-26 00:48:12 +000088CodeGenTypes::getFunctionInfo(CanQual<FunctionProtoType> FTP) {
89 llvm::SmallVector<CanQualType, 16> ArgTys;
John McCall8ee376f2010-02-24 07:14:12 +000090 return ::getFunctionInfo(*this, ArgTys, FTP);
Daniel Dunbar7feafc72009-09-11 22:24:53 +000091}
92
John McCallab26cfa2010-02-05 21:31:56 +000093static CallingConv getCallingConventionForDecl(const Decl *D) {
Daniel Dunbar7feafc72009-09-11 22:24:53 +000094 // Set the appropriate calling convention for the Function.
95 if (D->hasAttr<StdCallAttr>())
John McCallab26cfa2010-02-05 21:31:56 +000096 return CC_X86StdCall;
Daniel Dunbar7feafc72009-09-11 22:24:53 +000097
98 if (D->hasAttr<FastCallAttr>())
John McCallab26cfa2010-02-05 21:31:56 +000099 return CC_X86FastCall;
Daniel Dunbar7feafc72009-09-11 22:24:53 +0000100
Douglas Gregora941dca2010-05-18 16:57:00 +0000101 if (D->hasAttr<ThisCallAttr>())
102 return CC_X86ThisCall;
103
John McCallab26cfa2010-02-05 21:31:56 +0000104 return CC_C;
Daniel Dunbar7a95ca32008-09-10 04:01:49 +0000105}
106
Anders Carlsson2ee3c012009-10-03 19:43:08 +0000107const CGFunctionInfo &CodeGenTypes::getFunctionInfo(const CXXRecordDecl *RD,
108 const FunctionProtoType *FTP) {
John McCall2da83a32010-02-26 00:48:12 +0000109 llvm::SmallVector<CanQualType, 16> ArgTys;
John McCall8ee376f2010-02-24 07:14:12 +0000110
Anders Carlsson2ee3c012009-10-03 19:43:08 +0000111 // Add the 'this' pointer.
John McCall8ee376f2010-02-24 07:14:12 +0000112 ArgTys.push_back(GetThisType(Context, RD));
113
114 return ::getFunctionInfo(*this, ArgTys,
John McCall2da83a32010-02-26 00:48:12 +0000115 FTP->getCanonicalTypeUnqualified().getAs<FunctionProtoType>());
Anders Carlsson2ee3c012009-10-03 19:43:08 +0000116}
117
Anders Carlssonb15b55c2009-04-03 22:48:58 +0000118const CGFunctionInfo &CodeGenTypes::getFunctionInfo(const CXXMethodDecl *MD) {
John McCall2da83a32010-02-26 00:48:12 +0000119 llvm::SmallVector<CanQualType, 16> ArgTys;
John McCall8ee376f2010-02-24 07:14:12 +0000120
Chris Lattnerbea5b622009-05-12 20:27:19 +0000121 // Add the 'this' pointer unless this is a static method.
122 if (MD->isInstance())
John McCall8ee376f2010-02-24 07:14:12 +0000123 ArgTys.push_back(GetThisType(Context, MD->getParent()));
Mike Stump11289f42009-09-09 15:08:12 +0000124
John McCall8ee376f2010-02-24 07:14:12 +0000125 return ::getFunctionInfo(*this, ArgTys, GetFormalType(MD));
Anders Carlssonb15b55c2009-04-03 22:48:58 +0000126}
127
Anders Carlsson82ba57c2009-11-25 03:15:49 +0000128const CGFunctionInfo &CodeGenTypes::getFunctionInfo(const CXXConstructorDecl *D,
129 CXXCtorType Type) {
John McCall2da83a32010-02-26 00:48:12 +0000130 llvm::SmallVector<CanQualType, 16> ArgTys;
Anders Carlsson82ba57c2009-11-25 03:15:49 +0000131
132 // Add the 'this' pointer.
John McCall8ee376f2010-02-24 07:14:12 +0000133 ArgTys.push_back(GetThisType(Context, D->getParent()));
Anders Carlsson82ba57c2009-11-25 03:15:49 +0000134
135 // Check if we need to add a VTT parameter (which has type void **).
136 if (Type == Ctor_Base && D->getParent()->getNumVBases() != 0)
137 ArgTys.push_back(Context.getPointerType(Context.VoidPtrTy));
John McCall8ee376f2010-02-24 07:14:12 +0000138
139 return ::getFunctionInfo(*this, ArgTys, GetFormalType(D));
Anders Carlsson82ba57c2009-11-25 03:15:49 +0000140}
141
142const CGFunctionInfo &CodeGenTypes::getFunctionInfo(const CXXDestructorDecl *D,
143 CXXDtorType Type) {
John McCall2da83a32010-02-26 00:48:12 +0000144 llvm::SmallVector<CanQualType, 16> ArgTys;
Anders Carlsson82ba57c2009-11-25 03:15:49 +0000145
146 // Add the 'this' pointer.
John McCall2da83a32010-02-26 00:48:12 +0000147 ArgTys.push_back(GetThisType(Context, D->getParent()));
Anders Carlsson82ba57c2009-11-25 03:15:49 +0000148
149 // Check if we need to add a VTT parameter (which has type void **).
150 if (Type == Dtor_Base && D->getParent()->getNumVBases() != 0)
151 ArgTys.push_back(Context.getPointerType(Context.VoidPtrTy));
John McCall8ee376f2010-02-24 07:14:12 +0000152
153 return ::getFunctionInfo(*this, ArgTys, GetFormalType(D));
Anders Carlsson82ba57c2009-11-25 03:15:49 +0000154}
155
Daniel Dunbarbf8c24a2009-02-02 23:23:47 +0000156const CGFunctionInfo &CodeGenTypes::getFunctionInfo(const FunctionDecl *FD) {
Chris Lattnerbea5b622009-05-12 20:27:19 +0000157 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD))
Anders Carlssonb15b55c2009-04-03 22:48:58 +0000158 if (MD->isInstance())
159 return getFunctionInfo(MD);
Mike Stump11289f42009-09-09 15:08:12 +0000160
John McCall2da83a32010-02-26 00:48:12 +0000161 CanQualType FTy = FD->getType()->getCanonicalTypeUnqualified();
162 assert(isa<FunctionType>(FTy));
John McCall8ee376f2010-02-24 07:14:12 +0000163 if (isa<FunctionNoProtoType>(FTy))
John McCall2da83a32010-02-26 00:48:12 +0000164 return getFunctionInfo(FTy.getAs<FunctionNoProtoType>());
165 assert(isa<FunctionProtoType>(FTy));
166 return getFunctionInfo(FTy.getAs<FunctionProtoType>());
Daniel Dunbar3d7c90b2008-09-08 21:33:45 +0000167}
168
Daniel Dunbarbf8c24a2009-02-02 23:23:47 +0000169const CGFunctionInfo &CodeGenTypes::getFunctionInfo(const ObjCMethodDecl *MD) {
John McCall2da83a32010-02-26 00:48:12 +0000170 llvm::SmallVector<CanQualType, 16> ArgTys;
171 ArgTys.push_back(Context.getCanonicalParamType(MD->getSelfDecl()->getType()));
172 ArgTys.push_back(Context.getCanonicalParamType(Context.getObjCSelType()));
Daniel Dunbarbf8c24a2009-02-02 23:23:47 +0000173 // FIXME: Kill copy?
Chris Lattner90669d02009-02-20 06:23:21 +0000174 for (ObjCMethodDecl::param_iterator i = MD->param_begin(),
John McCall8ee376f2010-02-24 07:14:12 +0000175 e = MD->param_end(); i != e; ++i) {
176 ArgTys.push_back(Context.getCanonicalParamType((*i)->getType()));
177 }
178 return getFunctionInfo(GetReturnType(MD->getResultType()),
179 ArgTys,
Rafael Espindolac50c27c2010-03-30 20:24:48 +0000180 FunctionType::ExtInfo(
181 /*NoReturn*/ false,
Rafael Espindola49b85ab2010-03-30 22:15:11 +0000182 /*RegParm*/ 0,
Rafael Espindolac50c27c2010-03-30 20:24:48 +0000183 getCallingConventionForDecl(MD)));
Daniel Dunbar3d7c90b2008-09-08 21:33:45 +0000184}
185
Anders Carlsson6710c532010-02-06 02:44:09 +0000186const CGFunctionInfo &CodeGenTypes::getFunctionInfo(GlobalDecl GD) {
187 // FIXME: Do we need to handle ObjCMethodDecl?
188 const FunctionDecl *FD = cast<FunctionDecl>(GD.getDecl());
189
190 if (const CXXConstructorDecl *CD = dyn_cast<CXXConstructorDecl>(FD))
191 return getFunctionInfo(CD, GD.getCtorType());
192
193 if (const CXXDestructorDecl *DD = dyn_cast<CXXDestructorDecl>(FD))
194 return getFunctionInfo(DD, GD.getDtorType());
195
196 return getFunctionInfo(FD);
197}
198
Mike Stump11289f42009-09-09 15:08:12 +0000199const CGFunctionInfo &CodeGenTypes::getFunctionInfo(QualType ResTy,
Daniel Dunbar7feafc72009-09-11 22:24:53 +0000200 const CallArgList &Args,
Rafael Espindolac50c27c2010-03-30 20:24:48 +0000201 const FunctionType::ExtInfo &Info) {
Daniel Dunbarbf8c24a2009-02-02 23:23:47 +0000202 // FIXME: Kill copy.
John McCall2da83a32010-02-26 00:48:12 +0000203 llvm::SmallVector<CanQualType, 16> ArgTys;
Mike Stump11289f42009-09-09 15:08:12 +0000204 for (CallArgList::const_iterator i = Args.begin(), e = Args.end();
Daniel Dunbar3cd20632009-01-31 02:19:00 +0000205 i != e; ++i)
John McCall8ee376f2010-02-24 07:14:12 +0000206 ArgTys.push_back(Context.getCanonicalParamType(i->second));
Rafael Espindolac50c27c2010-03-30 20:24:48 +0000207 return getFunctionInfo(GetReturnType(ResTy), ArgTys, Info);
Daniel Dunbar3cd20632009-01-31 02:19:00 +0000208}
209
Mike Stump11289f42009-09-09 15:08:12 +0000210const CGFunctionInfo &CodeGenTypes::getFunctionInfo(QualType ResTy,
Daniel Dunbar7feafc72009-09-11 22:24:53 +0000211 const FunctionArgList &Args,
Rafael Espindolac50c27c2010-03-30 20:24:48 +0000212 const FunctionType::ExtInfo &Info) {
Daniel Dunbarbf8c24a2009-02-02 23:23:47 +0000213 // FIXME: Kill copy.
John McCall2da83a32010-02-26 00:48:12 +0000214 llvm::SmallVector<CanQualType, 16> ArgTys;
Mike Stump11289f42009-09-09 15:08:12 +0000215 for (FunctionArgList::const_iterator i = Args.begin(), e = Args.end();
Daniel Dunbar7633cbf2009-02-02 21:43:58 +0000216 i != e; ++i)
John McCall8ee376f2010-02-24 07:14:12 +0000217 ArgTys.push_back(Context.getCanonicalParamType(i->second));
Rafael Espindolac50c27c2010-03-30 20:24:48 +0000218 return getFunctionInfo(GetReturnType(ResTy), ArgTys, Info);
Daniel Dunbarbf8c24a2009-02-02 23:23:47 +0000219}
220
John McCall2da83a32010-02-26 00:48:12 +0000221const CGFunctionInfo &CodeGenTypes::getFunctionInfo(CanQualType ResTy,
222 const llvm::SmallVectorImpl<CanQualType> &ArgTys,
Rafael Espindolac50c27c2010-03-30 20:24:48 +0000223 const FunctionType::ExtInfo &Info) {
John McCall2da83a32010-02-26 00:48:12 +0000224#ifndef NDEBUG
225 for (llvm::SmallVectorImpl<CanQualType>::const_iterator
226 I = ArgTys.begin(), E = ArgTys.end(); I != E; ++I)
227 assert(I->isCanonicalAsParam());
228#endif
229
Rafael Espindola49b85ab2010-03-30 22:15:11 +0000230 unsigned CC = ClangCallConvToLLVMCallConv(Info.getCC());
John McCallab26cfa2010-02-05 21:31:56 +0000231
Daniel Dunbare0be8292009-02-03 00:07:12 +0000232 // Lookup or create unique function info.
233 llvm::FoldingSetNodeID ID;
Rafael Espindolac50c27c2010-03-30 20:24:48 +0000234 CGFunctionInfo::Profile(ID, Info, ResTy,
Daniel Dunbar7feafc72009-09-11 22:24:53 +0000235 ArgTys.begin(), ArgTys.end());
Daniel Dunbare0be8292009-02-03 00:07:12 +0000236
237 void *InsertPos = 0;
238 CGFunctionInfo *FI = FunctionInfos.FindNodeOrInsertPos(ID, InsertPos);
239 if (FI)
240 return *FI;
241
Daniel Dunbar313321e2009-02-03 05:31:23 +0000242 // Construct the function info.
Chris Lattner3dd716c2010-06-28 23:44:11 +0000243 FI = new CGFunctionInfo(CC, Info.getNoReturn(), Info.getRegParm(), ResTy,
244 ArgTys);
Daniel Dunbarfff09f32009-02-05 00:00:23 +0000245 FunctionInfos.InsertNode(FI, InsertPos);
Daniel Dunbar313321e2009-02-03 05:31:23 +0000246
Chris Lattner1d7c9f72010-06-29 01:08:48 +0000247 // ABI lowering wants to know what our preferred type for the argument is in
248 // various situations, pass it in.
249 llvm::SmallVector<const llvm::Type *, 8> PreferredArgTypes;
250 for (llvm::SmallVectorImpl<CanQualType>::const_iterator
251 I = ArgTys.begin(), E = ArgTys.end(); I != E; ++I)
252 PreferredArgTypes.push_back(ConvertType(*I));
253
Daniel Dunbar313321e2009-02-03 05:31:23 +0000254 // Compute ABI information.
Chris Lattner1d7c9f72010-06-29 01:08:48 +0000255 getABIInfo().computeInfo(*FI, getContext(), TheModule.getContext(),
256 PreferredArgTypes.data(), PreferredArgTypes.size());
Daniel Dunbar313321e2009-02-03 05:31:23 +0000257
Daniel Dunbare0be8292009-02-03 00:07:12 +0000258 return *FI;
Daniel Dunbarbf8c24a2009-02-02 23:23:47 +0000259}
260
Daniel Dunbar7feafc72009-09-11 22:24:53 +0000261CGFunctionInfo::CGFunctionInfo(unsigned _CallingConvention,
John McCallab26cfa2010-02-05 21:31:56 +0000262 bool _NoReturn,
Rafael Espindola49b85ab2010-03-30 22:15:11 +0000263 unsigned _RegParm,
John McCall2da83a32010-02-26 00:48:12 +0000264 CanQualType ResTy,
265 const llvm::SmallVectorImpl<CanQualType> &ArgTys)
Daniel Dunbar0ef34792009-09-12 00:59:20 +0000266 : CallingConvention(_CallingConvention),
John McCallab26cfa2010-02-05 21:31:56 +0000267 EffectiveCallingConvention(_CallingConvention),
Rafael Espindola49b85ab2010-03-30 22:15:11 +0000268 NoReturn(_NoReturn), RegParm(_RegParm)
Daniel Dunbar7feafc72009-09-11 22:24:53 +0000269{
Daniel Dunbar313321e2009-02-03 05:31:23 +0000270 NumArgs = ArgTys.size();
Chris Lattner3dd716c2010-06-28 23:44:11 +0000271
272 // FIXME: Coallocate with the CGFunctionInfo object.
Daniel Dunbar313321e2009-02-03 05:31:23 +0000273 Args = new ArgInfo[1 + NumArgs];
274 Args[0].type = ResTy;
275 for (unsigned i = 0; i < NumArgs; ++i)
276 Args[1 + i].type = ArgTys[i];
277}
278
279/***/
280
Mike Stump11289f42009-09-09 15:08:12 +0000281void CodeGenTypes::GetExpandedTypes(QualType Ty,
Daniel Dunbar8fc81b02008-09-17 00:51:38 +0000282 std::vector<const llvm::Type*> &ArgTys) {
283 const RecordType *RT = Ty->getAsStructureType();
284 assert(RT && "Can only expand structure types.");
285 const RecordDecl *RD = RT->getDecl();
Mike Stump11289f42009-09-09 15:08:12 +0000286 assert(!RD->hasFlexibleArrayMember() &&
Daniel Dunbar8fc81b02008-09-17 00:51:38 +0000287 "Cannot expand structure with flexible array.");
Mike Stump11289f42009-09-09 15:08:12 +0000288
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +0000289 for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end();
290 i != e; ++i) {
Daniel Dunbar8fc81b02008-09-17 00:51:38 +0000291 const FieldDecl *FD = *i;
Mike Stump11289f42009-09-09 15:08:12 +0000292 assert(!FD->isBitField() &&
Daniel Dunbar8fc81b02008-09-17 00:51:38 +0000293 "Cannot expand structure with bit-field members.");
Mike Stump11289f42009-09-09 15:08:12 +0000294
Daniel Dunbar8fc81b02008-09-17 00:51:38 +0000295 QualType FT = FD->getType();
296 if (CodeGenFunction::hasAggregateLLVMType(FT)) {
297 GetExpandedTypes(FT, ArgTys);
298 } else {
299 ArgTys.push_back(ConvertType(FT));
300 }
301 }
302}
303
Mike Stump11289f42009-09-09 15:08:12 +0000304llvm::Function::arg_iterator
Daniel Dunbar8fc81b02008-09-17 00:51:38 +0000305CodeGenFunction::ExpandTypeFromArgs(QualType Ty, LValue LV,
306 llvm::Function::arg_iterator AI) {
307 const RecordType *RT = Ty->getAsStructureType();
308 assert(RT && "Can only expand structure types.");
309
310 RecordDecl *RD = RT->getDecl();
Mike Stump11289f42009-09-09 15:08:12 +0000311 assert(LV.isSimple() &&
312 "Unexpected non-simple lvalue during struct expansion.");
Daniel Dunbar8fc81b02008-09-17 00:51:38 +0000313 llvm::Value *Addr = LV.getAddress();
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +0000314 for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end();
315 i != e; ++i) {
Mike Stump11289f42009-09-09 15:08:12 +0000316 FieldDecl *FD = *i;
Daniel Dunbar8fc81b02008-09-17 00:51:38 +0000317 QualType FT = FD->getType();
318
319 // FIXME: What are the right qualifiers here?
Anders Carlsson5d8645b2010-01-29 05:05:36 +0000320 LValue LV = EmitLValueForField(Addr, FD, 0);
Daniel Dunbar8fc81b02008-09-17 00:51:38 +0000321 if (CodeGenFunction::hasAggregateLLVMType(FT)) {
322 AI = ExpandTypeFromArgs(FT, LV, AI);
323 } else {
324 EmitStoreThroughLValue(RValue::get(AI), LV, FT);
325 ++AI;
326 }
327 }
328
329 return AI;
330}
331
Mike Stump11289f42009-09-09 15:08:12 +0000332void
333CodeGenFunction::ExpandTypeToArgs(QualType Ty, RValue RV,
Daniel Dunbar8fc81b02008-09-17 00:51:38 +0000334 llvm::SmallVector<llvm::Value*, 16> &Args) {
335 const RecordType *RT = Ty->getAsStructureType();
336 assert(RT && "Can only expand structure types.");
337
338 RecordDecl *RD = RT->getDecl();
339 assert(RV.isAggregate() && "Unexpected rvalue during struct expansion");
340 llvm::Value *Addr = RV.getAggregateAddr();
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +0000341 for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end();
342 i != e; ++i) {
Mike Stump11289f42009-09-09 15:08:12 +0000343 FieldDecl *FD = *i;
Daniel Dunbar8fc81b02008-09-17 00:51:38 +0000344 QualType FT = FD->getType();
Mike Stump11289f42009-09-09 15:08:12 +0000345
Daniel Dunbar8fc81b02008-09-17 00:51:38 +0000346 // FIXME: What are the right qualifiers here?
Anders Carlsson5d8645b2010-01-29 05:05:36 +0000347 LValue LV = EmitLValueForField(Addr, FD, 0);
Daniel Dunbar8fc81b02008-09-17 00:51:38 +0000348 if (CodeGenFunction::hasAggregateLLVMType(FT)) {
349 ExpandTypeToArgs(FT, RValue::getAggregate(LV.getAddress()), Args);
350 } else {
351 RValue RV = EmitLoadOfLValue(LV, FT);
Mike Stump11289f42009-09-09 15:08:12 +0000352 assert(RV.isScalar() &&
Daniel Dunbar8fc81b02008-09-17 00:51:38 +0000353 "Unexpected non-scalar rvalue during struct expansion.");
354 Args.push_back(RV.getScalarVal());
355 }
356 }
357}
358
Chris Lattner895c52b2010-06-27 06:04:18 +0000359/// EnterStructPointerForCoercedAccess - Given a struct pointer that we are
Chris Lattner1cd66982010-06-27 05:56:15 +0000360/// accessing some number of bytes out of it, try to gep into the struct to get
361/// at its inner goodness. Dive as deep as possible without entering an element
362/// with an in-memory size smaller than DstSize.
363static llvm::Value *
Chris Lattner895c52b2010-06-27 06:04:18 +0000364EnterStructPointerForCoercedAccess(llvm::Value *SrcPtr,
365 const llvm::StructType *SrcSTy,
366 uint64_t DstSize, CodeGenFunction &CGF) {
Chris Lattner1cd66982010-06-27 05:56:15 +0000367 // We can't dive into a zero-element struct.
368 if (SrcSTy->getNumElements() == 0) return SrcPtr;
369
370 const llvm::Type *FirstElt = SrcSTy->getElementType(0);
371
372 // If the first elt is at least as large as what we're looking for, or if the
373 // first element is the same size as the whole struct, we can enter it.
374 uint64_t FirstEltSize =
375 CGF.CGM.getTargetData().getTypeAllocSize(FirstElt);
376 if (FirstEltSize < DstSize &&
377 FirstEltSize < CGF.CGM.getTargetData().getTypeAllocSize(SrcSTy))
378 return SrcPtr;
379
380 // GEP into the first element.
381 SrcPtr = CGF.Builder.CreateConstGEP2_32(SrcPtr, 0, 0, "coerce.dive");
382
383 // If the first element is a struct, recurse.
384 const llvm::Type *SrcTy =
385 cast<llvm::PointerType>(SrcPtr->getType())->getElementType();
386 if (const llvm::StructType *SrcSTy = dyn_cast<llvm::StructType>(SrcTy))
Chris Lattner895c52b2010-06-27 06:04:18 +0000387 return EnterStructPointerForCoercedAccess(SrcPtr, SrcSTy, DstSize, CGF);
Chris Lattner1cd66982010-06-27 05:56:15 +0000388
389 return SrcPtr;
390}
391
Chris Lattner055097f2010-06-27 06:26:04 +0000392/// CoerceIntOrPtrToIntOrPtr - Convert a value Val to the specific Ty where both
393/// are either integers or pointers. This does a truncation of the value if it
394/// is too large or a zero extension if it is too small.
395static llvm::Value *CoerceIntOrPtrToIntOrPtr(llvm::Value *Val,
396 const llvm::Type *Ty,
397 CodeGenFunction &CGF) {
398 if (Val->getType() == Ty)
399 return Val;
400
401 if (isa<llvm::PointerType>(Val->getType())) {
402 // If this is Pointer->Pointer avoid conversion to and from int.
403 if (isa<llvm::PointerType>(Ty))
404 return CGF.Builder.CreateBitCast(Val, Ty, "coerce.val");
405
406 // Convert the pointer to an integer so we can play with its width.
Chris Lattner5e016ae2010-06-27 07:15:29 +0000407 Val = CGF.Builder.CreatePtrToInt(Val, CGF.IntPtrTy, "coerce.val.pi");
Chris Lattner055097f2010-06-27 06:26:04 +0000408 }
409
410 const llvm::Type *DestIntTy = Ty;
411 if (isa<llvm::PointerType>(DestIntTy))
Chris Lattner5e016ae2010-06-27 07:15:29 +0000412 DestIntTy = CGF.IntPtrTy;
Chris Lattner055097f2010-06-27 06:26:04 +0000413
414 if (Val->getType() != DestIntTy)
415 Val = CGF.Builder.CreateIntCast(Val, DestIntTy, false, "coerce.val.ii");
416
417 if (isa<llvm::PointerType>(Ty))
418 Val = CGF.Builder.CreateIntToPtr(Val, Ty, "coerce.val.ip");
419 return Val;
420}
421
Chris Lattner1cd66982010-06-27 05:56:15 +0000422
423
Daniel Dunbarf5589ac2009-02-02 19:06:38 +0000424/// CreateCoercedLoad - Create a load from \arg SrcPtr interpreted as
425/// a pointer to an object of type \arg Ty.
426///
427/// This safely handles the case when the src type is smaller than the
428/// destination type; in this situation the values of bits which not
429/// present in the src are undefined.
430static llvm::Value *CreateCoercedLoad(llvm::Value *SrcPtr,
431 const llvm::Type *Ty,
432 CodeGenFunction &CGF) {
Mike Stump11289f42009-09-09 15:08:12 +0000433 const llvm::Type *SrcTy =
Daniel Dunbarf5589ac2009-02-02 19:06:38 +0000434 cast<llvm::PointerType>(SrcPtr->getType())->getElementType();
Chris Lattnerd200eda2010-06-28 22:51:39 +0000435
436 // If SrcTy and Ty are the same, just do a load.
437 if (SrcTy == Ty)
438 return CGF.Builder.CreateLoad(SrcPtr);
439
Duncan Sandsc76fe8b2009-05-09 07:08:47 +0000440 uint64_t DstSize = CGF.CGM.getTargetData().getTypeAllocSize(Ty);
Chris Lattner1cd66982010-06-27 05:56:15 +0000441
442 if (const llvm::StructType *SrcSTy = dyn_cast<llvm::StructType>(SrcTy)) {
Chris Lattner895c52b2010-06-27 06:04:18 +0000443 SrcPtr = EnterStructPointerForCoercedAccess(SrcPtr, SrcSTy, DstSize, CGF);
Chris Lattner1cd66982010-06-27 05:56:15 +0000444 SrcTy = cast<llvm::PointerType>(SrcPtr->getType())->getElementType();
445 }
446
447 uint64_t SrcSize = CGF.CGM.getTargetData().getTypeAllocSize(SrcTy);
Daniel Dunbarf5589ac2009-02-02 19:06:38 +0000448
Chris Lattner055097f2010-06-27 06:26:04 +0000449 // If the source and destination are integer or pointer types, just do an
450 // extension or truncation to the desired type.
451 if ((isa<llvm::IntegerType>(Ty) || isa<llvm::PointerType>(Ty)) &&
452 (isa<llvm::IntegerType>(SrcTy) || isa<llvm::PointerType>(SrcTy))) {
453 llvm::LoadInst *Load = CGF.Builder.CreateLoad(SrcPtr);
454 return CoerceIntOrPtrToIntOrPtr(Load, Ty, CGF);
455 }
456
Daniel Dunbarb52d0772009-02-03 05:59:18 +0000457 // If load is legal, just bitcast the src pointer.
Daniel Dunbarffdb8432009-05-13 18:54:26 +0000458 if (SrcSize >= DstSize) {
Mike Stump18bb9282009-05-16 07:57:57 +0000459 // Generally SrcSize is never greater than DstSize, since this means we are
460 // losing bits. However, this can happen in cases where the structure has
461 // additional padding, for example due to a user specified alignment.
Daniel Dunbarffdb8432009-05-13 18:54:26 +0000462 //
Mike Stump18bb9282009-05-16 07:57:57 +0000463 // FIXME: Assert that we aren't truncating non-padding bits when have access
464 // to that information.
Daniel Dunbarf5589ac2009-02-02 19:06:38 +0000465 llvm::Value *Casted =
466 CGF.Builder.CreateBitCast(SrcPtr, llvm::PointerType::getUnqual(Ty));
Daniel Dunbaree9e4c22009-02-07 02:46:03 +0000467 llvm::LoadInst *Load = CGF.Builder.CreateLoad(Casted);
468 // FIXME: Use better alignment / avoid requiring aligned load.
469 Load->setAlignment(1);
470 return Load;
Daniel Dunbarf5589ac2009-02-02 19:06:38 +0000471 }
Chris Lattner3fcc7902010-06-27 01:06:27 +0000472
473 // Otherwise do coercion through memory. This is stupid, but
474 // simple.
475 llvm::Value *Tmp = CGF.CreateTempAlloca(Ty);
476 llvm::Value *Casted =
477 CGF.Builder.CreateBitCast(Tmp, llvm::PointerType::getUnqual(SrcTy));
478 llvm::StoreInst *Store =
479 CGF.Builder.CreateStore(CGF.Builder.CreateLoad(SrcPtr), Casted);
480 // FIXME: Use better alignment / avoid requiring aligned store.
481 Store->setAlignment(1);
482 return CGF.Builder.CreateLoad(Tmp);
Daniel Dunbarf5589ac2009-02-02 19:06:38 +0000483}
484
485/// CreateCoercedStore - Create a store to \arg DstPtr from \arg Src,
486/// where the source and destination may have different types.
487///
488/// This safely handles the case when the src type is larger than the
489/// destination type; the upper bits of the src will be lost.
490static void CreateCoercedStore(llvm::Value *Src,
491 llvm::Value *DstPtr,
Anders Carlsson17490832009-12-24 20:40:36 +0000492 bool DstIsVolatile,
Daniel Dunbarf5589ac2009-02-02 19:06:38 +0000493 CodeGenFunction &CGF) {
494 const llvm::Type *SrcTy = Src->getType();
Mike Stump11289f42009-09-09 15:08:12 +0000495 const llvm::Type *DstTy =
Daniel Dunbarf5589ac2009-02-02 19:06:38 +0000496 cast<llvm::PointerType>(DstPtr->getType())->getElementType();
Chris Lattnerd200eda2010-06-28 22:51:39 +0000497 if (SrcTy == DstTy) {
498 CGF.Builder.CreateStore(Src, DstPtr, DstIsVolatile);
499 return;
500 }
501
502 uint64_t SrcSize = CGF.CGM.getTargetData().getTypeAllocSize(SrcTy);
503
Chris Lattner895c52b2010-06-27 06:04:18 +0000504 if (const llvm::StructType *DstSTy = dyn_cast<llvm::StructType>(DstTy)) {
505 DstPtr = EnterStructPointerForCoercedAccess(DstPtr, DstSTy, SrcSize, CGF);
506 DstTy = cast<llvm::PointerType>(DstPtr->getType())->getElementType();
507 }
508
Chris Lattner055097f2010-06-27 06:26:04 +0000509 // If the source and destination are integer or pointer types, just do an
510 // extension or truncation to the desired type.
511 if ((isa<llvm::IntegerType>(SrcTy) || isa<llvm::PointerType>(SrcTy)) &&
512 (isa<llvm::IntegerType>(DstTy) || isa<llvm::PointerType>(DstTy))) {
513 Src = CoerceIntOrPtrToIntOrPtr(Src, DstTy, CGF);
514 CGF.Builder.CreateStore(Src, DstPtr, DstIsVolatile);
515 return;
516 }
517
Duncan Sandsc76fe8b2009-05-09 07:08:47 +0000518 uint64_t DstSize = CGF.CGM.getTargetData().getTypeAllocSize(DstTy);
Daniel Dunbarf5589ac2009-02-02 19:06:38 +0000519
Daniel Dunbar313321e2009-02-03 05:31:23 +0000520 // If store is legal, just bitcast the src pointer.
Daniel Dunbar4be99ff2009-06-05 07:58:54 +0000521 if (SrcSize <= DstSize) {
Daniel Dunbarf5589ac2009-02-02 19:06:38 +0000522 llvm::Value *Casted =
523 CGF.Builder.CreateBitCast(DstPtr, llvm::PointerType::getUnqual(SrcTy));
Daniel Dunbaree9e4c22009-02-07 02:46:03 +0000524 // FIXME: Use better alignment / avoid requiring aligned store.
Anders Carlsson17490832009-12-24 20:40:36 +0000525 CGF.Builder.CreateStore(Src, Casted, DstIsVolatile)->setAlignment(1);
Daniel Dunbarf5589ac2009-02-02 19:06:38 +0000526 } else {
Daniel Dunbarf5589ac2009-02-02 19:06:38 +0000527 // Otherwise do coercion through memory. This is stupid, but
528 // simple.
Daniel Dunbar4be99ff2009-06-05 07:58:54 +0000529
530 // Generally SrcSize is never greater than DstSize, since this means we are
531 // losing bits. However, this can happen in cases where the structure has
532 // additional padding, for example due to a user specified alignment.
533 //
534 // FIXME: Assert that we aren't truncating non-padding bits when have access
535 // to that information.
Daniel Dunbarf5589ac2009-02-02 19:06:38 +0000536 llvm::Value *Tmp = CGF.CreateTempAlloca(SrcTy);
537 CGF.Builder.CreateStore(Src, Tmp);
Mike Stump11289f42009-09-09 15:08:12 +0000538 llvm::Value *Casted =
Daniel Dunbarf5589ac2009-02-02 19:06:38 +0000539 CGF.Builder.CreateBitCast(Tmp, llvm::PointerType::getUnqual(DstTy));
Daniel Dunbaree9e4c22009-02-07 02:46:03 +0000540 llvm::LoadInst *Load = CGF.Builder.CreateLoad(Casted);
541 // FIXME: Use better alignment / avoid requiring aligned load.
542 Load->setAlignment(1);
Anders Carlsson17490832009-12-24 20:40:36 +0000543 CGF.Builder.CreateStore(Load, DstPtr, DstIsVolatile);
Daniel Dunbarf5589ac2009-02-02 19:06:38 +0000544 }
545}
546
Daniel Dunbar8fc81b02008-09-17 00:51:38 +0000547/***/
548
Daniel Dunbard931a872009-02-02 22:03:45 +0000549bool CodeGenModule::ReturnTypeUsesSret(const CGFunctionInfo &FI) {
Daniel Dunbarb8b1c672009-02-05 08:00:50 +0000550 return FI.getReturnInfo().isIndirect();
Daniel Dunbar7633cbf2009-02-02 21:43:58 +0000551}
552
John McCallf8ff7b92010-02-23 00:48:20 +0000553const llvm::FunctionType *CodeGenTypes::GetFunctionType(GlobalDecl GD) {
554 const CGFunctionInfo &FI = getFunctionInfo(GD);
555
556 // For definition purposes, don't consider a K&R function variadic.
557 bool Variadic = false;
558 if (const FunctionProtoType *FPT =
559 cast<FunctionDecl>(GD.getDecl())->getType()->getAs<FunctionProtoType>())
560 Variadic = FPT->isVariadic();
561
562 return GetFunctionType(FI, Variadic);
563}
564
Daniel Dunbar7a95ca32008-09-10 04:01:49 +0000565const llvm::FunctionType *
Daniel Dunbar7633cbf2009-02-02 21:43:58 +0000566CodeGenTypes::GetFunctionType(const CGFunctionInfo &FI, bool IsVariadic) {
Daniel Dunbar7a95ca32008-09-10 04:01:49 +0000567 std::vector<const llvm::Type*> ArgTys;
568
569 const llvm::Type *ResultType = 0;
570
Daniel Dunbar3668cb22009-02-02 23:43:58 +0000571 QualType RetTy = FI.getReturnType();
Daniel Dunbarb52d0772009-02-03 05:59:18 +0000572 const ABIArgInfo &RetAI = FI.getReturnInfo();
Daniel Dunbard3674e62008-09-11 01:48:57 +0000573 switch (RetAI.getKind()) {
Daniel Dunbard3674e62008-09-11 01:48:57 +0000574 case ABIArgInfo::Expand:
575 assert(0 && "Invalid ABI kind for return argument");
576
Anton Korobeynikov18adbf52009-06-06 09:36:29 +0000577 case ABIArgInfo::Extend:
Daniel Dunbar67dace892009-02-03 06:17:37 +0000578 case ABIArgInfo::Direct:
579 ResultType = ConvertType(RetTy);
580 break;
581
Daniel Dunbarb8b1c672009-02-05 08:00:50 +0000582 case ABIArgInfo::Indirect: {
583 assert(!RetAI.getIndirectAlign() && "Align unused on indirect return.");
Owen Anderson41a75022009-08-13 21:57:51 +0000584 ResultType = llvm::Type::getVoidTy(getLLVMContext());
Daniel Dunbarb8b47592008-09-10 07:00:50 +0000585 const llvm::Type *STy = ConvertType(RetTy);
Daniel Dunbar7a95ca32008-09-10 04:01:49 +0000586 ArgTys.push_back(llvm::PointerType::get(STy, RetTy.getAddressSpace()));
587 break;
588 }
589
Daniel Dunbar94a6f252009-01-26 21:26:08 +0000590 case ABIArgInfo::Ignore:
Owen Anderson41a75022009-08-13 21:57:51 +0000591 ResultType = llvm::Type::getVoidTy(getLLVMContext());
Daniel Dunbar94a6f252009-01-26 21:26:08 +0000592 break;
593
Daniel Dunbar7a95ca32008-09-10 04:01:49 +0000594 case ABIArgInfo::Coerce:
Daniel Dunbar573884e2008-09-10 07:04:09 +0000595 ResultType = RetAI.getCoerceToType();
Daniel Dunbar7a95ca32008-09-10 04:01:49 +0000596 break;
597 }
Mike Stump11289f42009-09-09 15:08:12 +0000598
599 for (CGFunctionInfo::const_arg_iterator it = FI.arg_begin(),
Daniel Dunbar313321e2009-02-03 05:31:23 +0000600 ie = FI.arg_end(); it != ie; ++it) {
601 const ABIArgInfo &AI = it->info;
Mike Stump11289f42009-09-09 15:08:12 +0000602
Daniel Dunbard3674e62008-09-11 01:48:57 +0000603 switch (AI.getKind()) {
Daniel Dunbar94a6f252009-01-26 21:26:08 +0000604 case ABIArgInfo::Ignore:
605 break;
606
Chris Lattner3dd716c2010-06-28 23:44:11 +0000607 case ABIArgInfo::Coerce: {
608 // If the coerce-to type is a first class aggregate, flatten it. Either
609 // way is semantically identical, but fast-isel and the optimizer
610 // generally likes scalar values better than FCAs.
611 const llvm::Type *ArgTy = AI.getCoerceToType();
612 if (const llvm::StructType *STy = dyn_cast<llvm::StructType>(ArgTy)) {
613 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i)
614 ArgTys.push_back(STy->getElementType(i));
615 } else {
616 ArgTys.push_back(ArgTy);
617 }
Daniel Dunbar2f219b02009-02-03 19:12:28 +0000618 break;
Chris Lattner3dd716c2010-06-28 23:44:11 +0000619 }
Daniel Dunbar2f219b02009-02-03 19:12:28 +0000620
Daniel Dunbar9bfb4de2009-02-10 01:51:39 +0000621 case ABIArgInfo::Indirect: {
Daniel Dunbarb8b1c672009-02-05 08:00:50 +0000622 // indirect arguments are always on the stack, which is addr space #0.
Daniel Dunbar9bfb4de2009-02-10 01:51:39 +0000623 const llvm::Type *LTy = ConvertTypeForMem(it->type);
624 ArgTys.push_back(llvm::PointerType::getUnqual(LTy));
Daniel Dunbard3674e62008-09-11 01:48:57 +0000625 break;
Daniel Dunbar9bfb4de2009-02-10 01:51:39 +0000626 }
Anton Korobeynikov18adbf52009-06-06 09:36:29 +0000627
628 case ABIArgInfo::Extend:
Daniel Dunbar67dace892009-02-03 06:17:37 +0000629 case ABIArgInfo::Direct:
Daniel Dunbar747865a2009-02-05 09:16:39 +0000630 ArgTys.push_back(ConvertType(it->type));
Daniel Dunbard3674e62008-09-11 01:48:57 +0000631 break;
Mike Stump11289f42009-09-09 15:08:12 +0000632
Daniel Dunbard3674e62008-09-11 01:48:57 +0000633 case ABIArgInfo::Expand:
Daniel Dunbar313321e2009-02-03 05:31:23 +0000634 GetExpandedTypes(it->type, ArgTys);
Daniel Dunbard3674e62008-09-11 01:48:57 +0000635 break;
636 }
Daniel Dunbar7a95ca32008-09-10 04:01:49 +0000637 }
638
Daniel Dunbar7633cbf2009-02-02 21:43:58 +0000639 return llvm::FunctionType::get(ResultType, ArgTys, IsVariadic);
Daniel Dunbar81cf67f2008-09-09 23:48:28 +0000640}
641
Anders Carlsson64457732009-11-24 05:08:52 +0000642const llvm::Type *
Anders Carlsson11e51402010-04-17 20:15:18 +0000643CodeGenTypes::GetFunctionTypeForVTable(const CXXMethodDecl *MD) {
Anders Carlsson64457732009-11-24 05:08:52 +0000644 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>();
645
Eli Friedmanc8731be2010-05-30 06:03:20 +0000646 if (!VerifyFuncTypeComplete(FPT))
Anders Carlsson64457732009-11-24 05:08:52 +0000647 return GetFunctionType(getFunctionInfo(MD), FPT->isVariadic());
648
649 return llvm::OpaqueType::get(getLLVMContext());
650}
651
Daniel Dunbar3668cb22009-02-02 23:43:58 +0000652void CodeGenModule::ConstructAttributeList(const CGFunctionInfo &FI,
Daniel Dunbard931a872009-02-02 22:03:45 +0000653 const Decl *TargetDecl,
Daniel Dunbar0ef34792009-09-12 00:59:20 +0000654 AttributeListType &PAL,
655 unsigned &CallingConv) {
Daniel Dunbar76c8eb72008-09-10 00:32:18 +0000656 unsigned FuncAttrs = 0;
Devang Patel597e7082008-09-26 22:53:57 +0000657 unsigned RetAttrs = 0;
Daniel Dunbar76c8eb72008-09-10 00:32:18 +0000658
Daniel Dunbar0ef34792009-09-12 00:59:20 +0000659 CallingConv = FI.getEffectiveCallingConvention();
660
John McCallab26cfa2010-02-05 21:31:56 +0000661 if (FI.isNoReturn())
662 FuncAttrs |= llvm::Attribute::NoReturn;
663
Anton Korobeynikovc8478242009-04-04 00:49:24 +0000664 // FIXME: handle sseregparm someday...
Daniel Dunbar76c8eb72008-09-10 00:32:18 +0000665 if (TargetDecl) {
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +0000666 if (TargetDecl->hasAttr<NoThrowAttr>())
Devang Patel322300d2008-09-25 21:02:23 +0000667 FuncAttrs |= llvm::Attribute::NoUnwind;
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +0000668 if (TargetDecl->hasAttr<NoReturnAttr>())
Devang Patel322300d2008-09-25 21:02:23 +0000669 FuncAttrs |= llvm::Attribute::NoReturn;
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +0000670 if (TargetDecl->hasAttr<ConstAttr>())
Anders Carlssonb8316282008-10-05 23:32:53 +0000671 FuncAttrs |= llvm::Attribute::ReadNone;
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +0000672 else if (TargetDecl->hasAttr<PureAttr>())
Daniel Dunbar8c920c92009-04-10 22:14:52 +0000673 FuncAttrs |= llvm::Attribute::ReadOnly;
Ryan Flynn1f1fdc02009-08-09 20:07:29 +0000674 if (TargetDecl->hasAttr<MallocAttr>())
675 RetAttrs |= llvm::Attribute::NoAlias;
Daniel Dunbar76c8eb72008-09-10 00:32:18 +0000676 }
677
Chandler Carruthbc55fe22009-11-12 17:24:48 +0000678 if (CodeGenOpts.OptimizeSize)
Daniel Dunbarc369d732009-10-27 19:48:08 +0000679 FuncAttrs |= llvm::Attribute::OptimizeForSize;
Chandler Carruthbc55fe22009-11-12 17:24:48 +0000680 if (CodeGenOpts.DisableRedZone)
Devang Patel6e467b12009-06-04 23:32:02 +0000681 FuncAttrs |= llvm::Attribute::NoRedZone;
Chandler Carruthbc55fe22009-11-12 17:24:48 +0000682 if (CodeGenOpts.NoImplicitFloat)
Devang Patel9e243862009-06-05 22:05:48 +0000683 FuncAttrs |= llvm::Attribute::NoImplicitFloat;
Devang Patel6e467b12009-06-04 23:32:02 +0000684
Daniel Dunbar3668cb22009-02-02 23:43:58 +0000685 QualType RetTy = FI.getReturnType();
Daniel Dunbar76c8eb72008-09-10 00:32:18 +0000686 unsigned Index = 1;
Daniel Dunbarb52d0772009-02-03 05:59:18 +0000687 const ABIArgInfo &RetAI = FI.getReturnInfo();
Daniel Dunbar7a95ca32008-09-10 04:01:49 +0000688 switch (RetAI.getKind()) {
Anton Korobeynikov18adbf52009-06-06 09:36:29 +0000689 case ABIArgInfo::Extend:
690 if (RetTy->isSignedIntegerType()) {
691 RetAttrs |= llvm::Attribute::SExt;
692 } else if (RetTy->isUnsignedIntegerType()) {
693 RetAttrs |= llvm::Attribute::ZExt;
694 }
695 // FALLTHROUGH
Daniel Dunbar67dace892009-02-03 06:17:37 +0000696 case ABIArgInfo::Direct:
Daniel Dunbara72d4ae2008-09-10 02:41:04 +0000697 break;
698
Daniel Dunbarb8b1c672009-02-05 08:00:50 +0000699 case ABIArgInfo::Indirect:
Mike Stump11289f42009-09-09 15:08:12 +0000700 PAL.push_back(llvm::AttributeWithIndex::get(Index,
Chris Lattner9cffdf12010-04-20 05:44:43 +0000701 llvm::Attribute::StructRet));
Daniel Dunbar76c8eb72008-09-10 00:32:18 +0000702 ++Index;
Daniel Dunbarc2304432009-03-18 19:51:01 +0000703 // sret disables readnone and readonly
704 FuncAttrs &= ~(llvm::Attribute::ReadOnly |
705 llvm::Attribute::ReadNone);
Daniel Dunbara72d4ae2008-09-10 02:41:04 +0000706 break;
707
Daniel Dunbar94a6f252009-01-26 21:26:08 +0000708 case ABIArgInfo::Ignore:
Daniel Dunbara72d4ae2008-09-10 02:41:04 +0000709 case ABIArgInfo::Coerce:
Daniel Dunbara72d4ae2008-09-10 02:41:04 +0000710 break;
Daniel Dunbard3674e62008-09-11 01:48:57 +0000711
Daniel Dunbard3674e62008-09-11 01:48:57 +0000712 case ABIArgInfo::Expand:
Mike Stump11289f42009-09-09 15:08:12 +0000713 assert(0 && "Invalid ABI kind for return argument");
Daniel Dunbar76c8eb72008-09-10 00:32:18 +0000714 }
Daniel Dunbara72d4ae2008-09-10 02:41:04 +0000715
Devang Patel597e7082008-09-26 22:53:57 +0000716 if (RetAttrs)
717 PAL.push_back(llvm::AttributeWithIndex::get(0, RetAttrs));
Anton Korobeynikovc8478242009-04-04 00:49:24 +0000718
719 // FIXME: we need to honour command line settings also...
720 // FIXME: RegParm should be reduced in case of nested functions and/or global
721 // register variable.
Rafael Espindola49b85ab2010-03-30 22:15:11 +0000722 signed RegParm = FI.getRegParm();
Anton Korobeynikovc8478242009-04-04 00:49:24 +0000723
724 unsigned PointerWidth = getContext().Target.getPointerWidth(0);
Mike Stump11289f42009-09-09 15:08:12 +0000725 for (CGFunctionInfo::const_arg_iterator it = FI.arg_begin(),
Daniel Dunbar313321e2009-02-03 05:31:23 +0000726 ie = FI.arg_end(); it != ie; ++it) {
727 QualType ParamType = it->type;
728 const ABIArgInfo &AI = it->info;
Devang Patel322300d2008-09-25 21:02:23 +0000729 unsigned Attributes = 0;
Anton Korobeynikovc8478242009-04-04 00:49:24 +0000730
John McCall39ec71f2010-03-27 00:47:27 +0000731 // 'restrict' -> 'noalias' is done in EmitFunctionProlog when we
732 // have the corresponding parameter variable. It doesn't make
733 // sense to do it here because parameters are so fucked up.
Nuno Lopes72513272009-12-07 18:30:06 +0000734
Daniel Dunbard3674e62008-09-11 01:48:57 +0000735 switch (AI.getKind()) {
Daniel Dunbar2f219b02009-02-03 19:12:28 +0000736 case ABIArgInfo::Coerce:
Chris Lattner3dd716c2010-06-28 23:44:11 +0000737 if (const llvm::StructType *STy =
738 dyn_cast<llvm::StructType>(AI.getCoerceToType()))
739 Index += STy->getNumElements();
740 else
741 ++Index;
742 continue; // Skip index increment.
Daniel Dunbar2f219b02009-02-03 19:12:28 +0000743
Daniel Dunbarb8b1c672009-02-05 08:00:50 +0000744 case ABIArgInfo::Indirect:
Anders Carlsson20759ad2009-09-16 15:53:40 +0000745 if (AI.getIndirectByVal())
746 Attributes |= llvm::Attribute::ByVal;
747
Anton Korobeynikovc8478242009-04-04 00:49:24 +0000748 Attributes |=
Daniel Dunbarb8b1c672009-02-05 08:00:50 +0000749 llvm::Attribute::constructAlignmentFromInt(AI.getIndirectAlign());
Daniel Dunbarc2304432009-03-18 19:51:01 +0000750 // byval disables readnone and readonly.
751 FuncAttrs &= ~(llvm::Attribute::ReadOnly |
752 llvm::Attribute::ReadNone);
Daniel Dunbard3674e62008-09-11 01:48:57 +0000753 break;
Anton Korobeynikov18adbf52009-06-06 09:36:29 +0000754
755 case ABIArgInfo::Extend:
756 if (ParamType->isSignedIntegerType()) {
757 Attributes |= llvm::Attribute::SExt;
758 } else if (ParamType->isUnsignedIntegerType()) {
759 Attributes |= llvm::Attribute::ZExt;
760 }
761 // FALLS THROUGH
Daniel Dunbar67dace892009-02-03 06:17:37 +0000762 case ABIArgInfo::Direct:
Anton Korobeynikovc8478242009-04-04 00:49:24 +0000763 if (RegParm > 0 &&
764 (ParamType->isIntegerType() || ParamType->isPointerType())) {
765 RegParm -=
766 (Context.getTypeSize(ParamType) + PointerWidth - 1) / PointerWidth;
767 if (RegParm >= 0)
768 Attributes |= llvm::Attribute::InReg;
769 }
770 // FIXME: handle sseregparm someday...
Daniel Dunbard3674e62008-09-11 01:48:57 +0000771 break;
Anton Korobeynikovc8478242009-04-04 00:49:24 +0000772
Daniel Dunbar94a6f252009-01-26 21:26:08 +0000773 case ABIArgInfo::Ignore:
774 // Skip increment, no matching LLVM parameter.
Mike Stump11289f42009-09-09 15:08:12 +0000775 continue;
Daniel Dunbar94a6f252009-01-26 21:26:08 +0000776
Daniel Dunbar8fc81b02008-09-17 00:51:38 +0000777 case ABIArgInfo::Expand: {
Mike Stump11289f42009-09-09 15:08:12 +0000778 std::vector<const llvm::Type*> Tys;
Mike Stump18bb9282009-05-16 07:57:57 +0000779 // FIXME: This is rather inefficient. Do we ever actually need to do
780 // anything here? The result should be just reconstructed on the other
781 // side, so extension should be a non-issue.
Daniel Dunbar8fc81b02008-09-17 00:51:38 +0000782 getTypes().GetExpandedTypes(ParamType, Tys);
783 Index += Tys.size();
784 continue;
785 }
Daniel Dunbar76c8eb72008-09-10 00:32:18 +0000786 }
Mike Stump11289f42009-09-09 15:08:12 +0000787
Devang Patel322300d2008-09-25 21:02:23 +0000788 if (Attributes)
789 PAL.push_back(llvm::AttributeWithIndex::get(Index, Attributes));
Daniel Dunbar8fc81b02008-09-17 00:51:38 +0000790 ++Index;
Daniel Dunbar76c8eb72008-09-10 00:32:18 +0000791 }
Devang Patel597e7082008-09-26 22:53:57 +0000792 if (FuncAttrs)
793 PAL.push_back(llvm::AttributeWithIndex::get(~0, FuncAttrs));
Daniel Dunbar76c8eb72008-09-10 00:32:18 +0000794}
795
Daniel Dunbard931a872009-02-02 22:03:45 +0000796void CodeGenFunction::EmitFunctionProlog(const CGFunctionInfo &FI,
797 llvm::Function *Fn,
Daniel Dunbar613855c2008-09-09 23:27:19 +0000798 const FunctionArgList &Args) {
John McCallcaa19452009-07-28 01:00:58 +0000799 // If this is an implicit-return-zero function, go ahead and
800 // initialize the return value. TODO: it might be nice to have
801 // a more general mechanism for this that didn't require synthesized
802 // return statements.
Anders Carlssonb8be93f2009-08-08 23:24:23 +0000803 if (const FunctionDecl* FD = dyn_cast_or_null<FunctionDecl>(CurFuncDecl)) {
John McCallcaa19452009-07-28 01:00:58 +0000804 if (FD->hasImplicitReturnZero()) {
805 QualType RetTy = FD->getResultType().getUnqualifiedType();
806 const llvm::Type* LLVMTy = CGM.getTypes().ConvertType(RetTy);
Owen Anderson0b75f232009-07-31 20:28:54 +0000807 llvm::Constant* Zero = llvm::Constant::getNullValue(LLVMTy);
John McCallcaa19452009-07-28 01:00:58 +0000808 Builder.CreateStore(Zero, ReturnValue);
809 }
810 }
811
Mike Stump18bb9282009-05-16 07:57:57 +0000812 // FIXME: We no longer need the types from FunctionArgList; lift up and
813 // simplify.
Daniel Dunbar5a0acdc92009-02-03 06:02:10 +0000814
Daniel Dunbar613855c2008-09-09 23:27:19 +0000815 // Emit allocs for param decls. Give the LLVM Argument nodes names.
816 llvm::Function::arg_iterator AI = Fn->arg_begin();
Mike Stump11289f42009-09-09 15:08:12 +0000817
Daniel Dunbar613855c2008-09-09 23:27:19 +0000818 // Name the struct return argument.
Daniel Dunbard931a872009-02-02 22:03:45 +0000819 if (CGM.ReturnTypeUsesSret(FI)) {
Daniel Dunbar613855c2008-09-09 23:27:19 +0000820 AI->setName("agg.result");
821 ++AI;
822 }
Mike Stump11289f42009-09-09 15:08:12 +0000823
Daniel Dunbara45bdbb2009-02-04 21:17:21 +0000824 assert(FI.arg_size() == Args.size() &&
825 "Mismatch between function signature & arguments.");
Daniel Dunbarb52d0772009-02-03 05:59:18 +0000826 CGFunctionInfo::const_arg_iterator info_it = FI.arg_begin();
Daniel Dunbar613855c2008-09-09 23:27:19 +0000827 for (FunctionArgList::const_iterator i = Args.begin(), e = Args.end();
Daniel Dunbarb52d0772009-02-03 05:59:18 +0000828 i != e; ++i, ++info_it) {
Daniel Dunbar613855c2008-09-09 23:27:19 +0000829 const VarDecl *Arg = i->first;
Daniel Dunbarb52d0772009-02-03 05:59:18 +0000830 QualType Ty = info_it->type;
831 const ABIArgInfo &ArgI = info_it->info;
Daniel Dunbard3674e62008-09-11 01:48:57 +0000832
833 switch (ArgI.getKind()) {
Daniel Dunbar747865a2009-02-05 09:16:39 +0000834 case ABIArgInfo::Indirect: {
Chris Lattner3dd716c2010-06-28 23:44:11 +0000835 llvm::Value *V = AI;
Daniel Dunbar747865a2009-02-05 09:16:39 +0000836 if (hasAggregateLLVMType(Ty)) {
837 // Do nothing, aggregates and complex variables are accessed by
838 // reference.
839 } else {
840 // Load scalar value from indirect argument.
Daniel Dunbar9bfb4de2009-02-10 01:51:39 +0000841 V = EmitLoadOfScalar(V, false, Ty);
Daniel Dunbar747865a2009-02-05 09:16:39 +0000842 if (!getContext().typesAreCompatible(Ty, Arg->getType())) {
843 // This must be a promotion, for something like
844 // "void a(x) short x; {..."
845 V = EmitScalarConversion(V, Ty, Arg->getType());
846 }
847 }
Mike Stump11289f42009-09-09 15:08:12 +0000848 EmitParmDecl(*Arg, V);
Daniel Dunbar747865a2009-02-05 09:16:39 +0000849 break;
850 }
Anton Korobeynikov18adbf52009-06-06 09:36:29 +0000851
852 case ABIArgInfo::Extend:
Daniel Dunbar67dace892009-02-03 06:17:37 +0000853 case ABIArgInfo::Direct: {
Daniel Dunbard3674e62008-09-11 01:48:57 +0000854 assert(AI != Fn->arg_end() && "Argument mismatch!");
Chris Lattner3dd716c2010-06-28 23:44:11 +0000855 llvm::Value *V = AI;
Daniel Dunbar5d3dbd62009-02-05 11:13:54 +0000856 if (hasAggregateLLVMType(Ty)) {
857 // Create a temporary alloca to hold the argument; the rest of
858 // codegen expects to access aggregates & complex values by
859 // reference.
Daniel Dunbara7566f12010-02-09 02:48:28 +0000860 V = CreateMemTemp(Ty);
Daniel Dunbar5d3dbd62009-02-05 11:13:54 +0000861 Builder.CreateStore(AI, V);
862 } else {
John McCall39ec71f2010-03-27 00:47:27 +0000863 if (Arg->getType().isRestrictQualified())
864 AI->addAttr(llvm::Attribute::NoAlias);
865
Daniel Dunbar5d3dbd62009-02-05 11:13:54 +0000866 if (!getContext().typesAreCompatible(Ty, Arg->getType())) {
867 // This must be a promotion, for something like
868 // "void a(x) short x; {..."
869 V = EmitScalarConversion(V, Ty, Arg->getType());
870 }
Daniel Dunbar613855c2008-09-09 23:27:19 +0000871 }
Daniel Dunbard3674e62008-09-11 01:48:57 +0000872 EmitParmDecl(*Arg, V);
873 break;
874 }
Mike Stump11289f42009-09-09 15:08:12 +0000875
Daniel Dunbar8fc81b02008-09-17 00:51:38 +0000876 case ABIArgInfo::Expand: {
Daniel Dunbarb52d0772009-02-03 05:59:18 +0000877 // If this structure was expanded into multiple arguments then
Daniel Dunbar8fc81b02008-09-17 00:51:38 +0000878 // we need to create a temporary and reconstruct it from the
879 // arguments.
Daniel Dunbara7566f12010-02-09 02:48:28 +0000880 llvm::Value *Temp = CreateMemTemp(Ty, Arg->getName() + ".addr");
Daniel Dunbar8fc81b02008-09-17 00:51:38 +0000881 // FIXME: What are the right qualifiers here?
Mike Stump11289f42009-09-09 15:08:12 +0000882 llvm::Function::arg_iterator End =
John McCall8ccfcb52009-09-24 19:53:00 +0000883 ExpandTypeFromArgs(Ty, LValue::MakeAddr(Temp, Qualifiers()), AI);
Daniel Dunbar8fc81b02008-09-17 00:51:38 +0000884 EmitParmDecl(*Arg, Temp);
Daniel Dunbard3674e62008-09-11 01:48:57 +0000885
Daniel Dunbar8fc81b02008-09-17 00:51:38 +0000886 // Name the arguments used in expansion and increment AI.
887 unsigned Index = 0;
888 for (; AI != End; ++AI, ++Index)
Daniel Dunbarb5aacc22009-10-19 01:21:05 +0000889 AI->setName(Arg->getName() + "." + llvm::Twine(Index));
Daniel Dunbar8fc81b02008-09-17 00:51:38 +0000890 continue;
891 }
Daniel Dunbar94a6f252009-01-26 21:26:08 +0000892
893 case ABIArgInfo::Ignore:
Daniel Dunbard5f1f552009-02-10 00:06:49 +0000894 // Initialize the local variable appropriately.
Mike Stump11289f42009-09-09 15:08:12 +0000895 if (hasAggregateLLVMType(Ty)) {
Daniel Dunbara7566f12010-02-09 02:48:28 +0000896 EmitParmDecl(*Arg, CreateMemTemp(Ty));
Daniel Dunbard5f1f552009-02-10 00:06:49 +0000897 } else {
898 EmitParmDecl(*Arg, llvm::UndefValue::get(ConvertType(Arg->getType())));
899 }
Mike Stump11289f42009-09-09 15:08:12 +0000900
Daniel Dunbarfc7c7612009-02-03 20:00:13 +0000901 // Skip increment, no matching LLVM parameter.
Mike Stump11289f42009-09-09 15:08:12 +0000902 continue;
Daniel Dunbar94a6f252009-01-26 21:26:08 +0000903
Daniel Dunbar2f219b02009-02-03 19:12:28 +0000904 case ABIArgInfo::Coerce: {
Mike Stump18bb9282009-05-16 07:57:57 +0000905 // FIXME: This is very wasteful; EmitParmDecl is just going to drop the
906 // result in a new alloca anyway, so we could just store into that
907 // directly if we broke the abstraction down more.
Daniel Dunbara7566f12010-02-09 02:48:28 +0000908 llvm::Value *V = CreateMemTemp(Ty, "coerce");
Chris Lattner15ec3612010-06-29 00:06:42 +0000909
910 // If the coerce-to type is a first class aggregate, we flatten it and
911 // pass the elements. Either way is semantically identical, but fast-isel
912 // and the optimizer generally likes scalar values better than FCAs.
913 if (const llvm::StructType *STy =
914 dyn_cast<llvm::StructType>(ArgI.getCoerceToType())) {
915 // If the argument and alloca types match up, we don't have to build the
916 // FCA at all, emit a series of GEPs and stores, which is better for
917 // fast isel.
918 if (STy == cast<llvm::PointerType>(V->getType())->getElementType()) {
919 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
920 assert(AI != Fn->arg_end() && "Argument mismatch!");
Chris Lattner9e748e92010-06-29 00:14:52 +0000921 AI->setName(Arg->getName() + ".coerce" + llvm::Twine(i));
Chris Lattner15ec3612010-06-29 00:06:42 +0000922 llvm::Value *EltPtr = Builder.CreateConstGEP2_32(V, 0, i);
923 Builder.CreateStore(AI++, EltPtr);
924 }
925 } else {
926 // Reconstruct the FCA here so we can do a coerced store.
927 llvm::Value *FormalArg = llvm::UndefValue::get(STy);
928 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
929 assert(AI != Fn->arg_end() && "Argument mismatch!");
Chris Lattner9e748e92010-06-29 00:14:52 +0000930 AI->setName(Arg->getName() + ".coerce" + llvm::Twine(i));
Chris Lattner15ec3612010-06-29 00:06:42 +0000931 FormalArg = Builder.CreateInsertValue(FormalArg, AI++, i);
932 }
933 CreateCoercedStore(FormalArg, V, /*DestIsVolatile=*/false, *this);
934 }
935 } else {
936 // Simple case, just do a coerced store of the argument into the alloca.
937 assert(AI != Fn->arg_end() && "Argument mismatch!");
Chris Lattner9e748e92010-06-29 00:14:52 +0000938 AI->setName(Arg->getName() + ".coerce");
Chris Lattner15ec3612010-06-29 00:06:42 +0000939 CreateCoercedStore(AI++, V, /*DestIsVolatile=*/false, *this);
940 }
941
942
Daniel Dunbar2f219b02009-02-03 19:12:28 +0000943 // Match to what EmitParmDecl is expecting for this type.
Daniel Dunbar6e3b7df2009-02-04 07:22:24 +0000944 if (!CodeGenFunction::hasAggregateLLVMType(Ty)) {
Daniel Dunbar9bfb4de2009-02-10 01:51:39 +0000945 V = EmitLoadOfScalar(V, false, Ty);
Daniel Dunbar6e3b7df2009-02-04 07:22:24 +0000946 if (!getContext().typesAreCompatible(Ty, Arg->getType())) {
947 // This must be a promotion, for something like
948 // "void a(x) short x; {..."
949 V = EmitScalarConversion(V, Ty, Arg->getType());
950 }
951 }
Daniel Dunbar2f219b02009-02-03 19:12:28 +0000952 EmitParmDecl(*Arg, V);
Chris Lattner3dd716c2010-06-28 23:44:11 +0000953 continue; // Skip ++AI increment, already done.
Daniel Dunbar2f219b02009-02-03 19:12:28 +0000954 }
Daniel Dunbard3674e62008-09-11 01:48:57 +0000955 }
Daniel Dunbar8fc81b02008-09-17 00:51:38 +0000956
957 ++AI;
Daniel Dunbar613855c2008-09-09 23:27:19 +0000958 }
959 assert(AI == Fn->arg_end() && "Argument mismatch!");
960}
961
Chris Lattner3fcc7902010-06-27 01:06:27 +0000962void CodeGenFunction::EmitFunctionEpilog(const CGFunctionInfo &FI) {
Daniel Dunbara72d4ae2008-09-10 02:41:04 +0000963 // Functions with no result always return void.
Chris Lattner726b3d02010-06-26 23:13:19 +0000964 if (ReturnValue == 0) {
Daniel Dunbara72d4ae2008-09-10 02:41:04 +0000965 Builder.CreateRetVoid();
Chris Lattner726b3d02010-06-26 23:13:19 +0000966 return;
Daniel Dunbara72d4ae2008-09-10 02:41:04 +0000967 }
Chris Lattner726b3d02010-06-26 23:13:19 +0000968
969 llvm::Value *RV = 0;
970 QualType RetTy = FI.getReturnType();
971 const ABIArgInfo &RetAI = FI.getReturnInfo();
972
973 switch (RetAI.getKind()) {
974 case ABIArgInfo::Indirect:
975 if (RetTy->isAnyComplexType()) {
976 ComplexPairTy RT = LoadComplexFromAddr(ReturnValue, false);
977 StoreComplexToAddr(RT, CurFn->arg_begin(), false);
978 } else if (CodeGenFunction::hasAggregateLLVMType(RetTy)) {
979 // Do nothing; aggregrates get evaluated directly into the destination.
980 } else {
981 EmitStoreOfScalar(Builder.CreateLoad(ReturnValue), CurFn->arg_begin(),
982 false, RetTy);
983 }
984 break;
985
986 case ABIArgInfo::Extend:
Chris Lattner3fcc7902010-06-27 01:06:27 +0000987 case ABIArgInfo::Direct: {
988 // The internal return value temp always will have pointer-to-return-type
989 // type, just do a load.
990
991 // If the instruction right before the insertion point is a store to the
992 // return value, we can elide the load, zap the store, and usually zap the
993 // alloca.
994 llvm::BasicBlock *InsertBB = Builder.GetInsertBlock();
995 llvm::StoreInst *SI = 0;
996 if (InsertBB->empty() ||
997 !(SI = dyn_cast<llvm::StoreInst>(&InsertBB->back())) ||
998 SI->getPointerOperand() != ReturnValue || SI->isVolatile()) {
999 RV = Builder.CreateLoad(ReturnValue);
1000 } else {
1001 // Get the stored value and nuke the now-dead store.
1002 RV = SI->getValueOperand();
1003 SI->eraseFromParent();
1004
1005 // If that was the only use of the return value, nuke it as well now.
1006 if (ReturnValue->use_empty() && isa<llvm::AllocaInst>(ReturnValue)) {
1007 cast<llvm::AllocaInst>(ReturnValue)->eraseFromParent();
1008 ReturnValue = 0;
1009 }
1010 }
Chris Lattner726b3d02010-06-26 23:13:19 +00001011 break;
Chris Lattner3fcc7902010-06-27 01:06:27 +00001012 }
Chris Lattner726b3d02010-06-26 23:13:19 +00001013 case ABIArgInfo::Ignore:
1014 break;
1015
1016 case ABIArgInfo::Coerce:
1017 RV = CreateCoercedLoad(ReturnValue, RetAI.getCoerceToType(), *this);
1018 break;
1019
1020 case ABIArgInfo::Expand:
1021 assert(0 && "Invalid ABI kind for return argument");
1022 }
1023
1024 if (RV)
1025 Builder.CreateRet(RV);
1026 else
1027 Builder.CreateRetVoid();
Daniel Dunbar613855c2008-09-09 23:27:19 +00001028}
1029
John McCall23f66262010-05-26 22:34:26 +00001030RValue CodeGenFunction::EmitDelegateCallArg(const VarDecl *Param) {
1031 // StartFunction converted the ABI-lowered parameter(s) into a
1032 // local alloca. We need to turn that into an r-value suitable
1033 // for EmitCall.
1034 llvm::Value *Local = GetAddrOfLocalVar(Param);
1035
1036 QualType ArgType = Param->getType();
1037
1038 // For the most part, we just need to load the alloca, except:
1039 // 1) aggregate r-values are actually pointers to temporaries, and
1040 // 2) references to aggregates are pointers directly to the aggregate.
1041 // I don't know why references to non-aggregates are different here.
1042 if (const ReferenceType *RefType = ArgType->getAs<ReferenceType>()) {
1043 if (hasAggregateLLVMType(RefType->getPointeeType()))
1044 return RValue::getAggregate(Local);
1045
1046 // Locals which are references to scalars are represented
1047 // with allocas holding the pointer.
1048 return RValue::get(Builder.CreateLoad(Local));
1049 }
1050
1051 if (ArgType->isAnyComplexType())
1052 return RValue::getComplex(LoadComplexFromAddr(Local, /*volatile*/ false));
1053
1054 if (hasAggregateLLVMType(ArgType))
1055 return RValue::getAggregate(Local);
1056
1057 return RValue::get(EmitLoadOfScalar(Local, false, ArgType));
1058}
1059
Anders Carlsson60ce3fe2009-04-08 20:47:54 +00001060RValue CodeGenFunction::EmitCallArg(const Expr *E, QualType ArgType) {
Anders Carlsson6f5a0152009-05-20 00:24:07 +00001061 if (ArgType->isReferenceType())
Anders Carlsson04775f82010-06-26 16:35:32 +00001062 return EmitReferenceBindingToExpr(E, /*InitializedDecl=*/0);
Mike Stump11289f42009-09-09 15:08:12 +00001063
Anders Carlsson60ce3fe2009-04-08 20:47:54 +00001064 return EmitAnyExprToTemp(E);
1065}
1066
Daniel Dunbard931a872009-02-02 22:03:45 +00001067RValue CodeGenFunction::EmitCall(const CGFunctionInfo &CallInfo,
Mike Stump11289f42009-09-09 15:08:12 +00001068 llvm::Value *Callee,
Anders Carlsson61a401c2009-12-24 19:25:24 +00001069 ReturnValueSlot ReturnValue,
Daniel Dunbarcdbb5e32009-02-20 18:06:48 +00001070 const CallArgList &CallArgs,
David Chisnall9eecafa2010-05-01 11:15:56 +00001071 const Decl *TargetDecl,
David Chisnallff5f88c2010-05-02 13:41:58 +00001072 llvm::Instruction **callOrInvoke) {
Mike Stump18bb9282009-05-16 07:57:57 +00001073 // FIXME: We no longer need the types from CallArgs; lift up and simplify.
Daniel Dunbar613855c2008-09-09 23:27:19 +00001074 llvm::SmallVector<llvm::Value*, 16> Args;
Daniel Dunbar613855c2008-09-09 23:27:19 +00001075
1076 // Handle struct-return functions by passing a pointer to the
1077 // location that we would like to return into.
Daniel Dunbar7633cbf2009-02-02 21:43:58 +00001078 QualType RetTy = CallInfo.getReturnType();
Daniel Dunbarb52d0772009-02-03 05:59:18 +00001079 const ABIArgInfo &RetAI = CallInfo.getReturnInfo();
Mike Stump11289f42009-09-09 15:08:12 +00001080
1081
Chris Lattner4ca97c32009-06-13 00:26:38 +00001082 // If the call returns a temporary with struct return, create a temporary
Anders Carlsson17490832009-12-24 20:40:36 +00001083 // alloca to hold the result, unless one is given to us.
1084 if (CGM.ReturnTypeUsesSret(CallInfo)) {
1085 llvm::Value *Value = ReturnValue.getValue();
1086 if (!Value)
Daniel Dunbara7566f12010-02-09 02:48:28 +00001087 Value = CreateMemTemp(RetTy);
Anders Carlsson17490832009-12-24 20:40:36 +00001088 Args.push_back(Value);
1089 }
Mike Stump11289f42009-09-09 15:08:12 +00001090
Daniel Dunbara45bdbb2009-02-04 21:17:21 +00001091 assert(CallInfo.arg_size() == CallArgs.size() &&
1092 "Mismatch between function signature & arguments.");
Daniel Dunbarb52d0772009-02-03 05:59:18 +00001093 CGFunctionInfo::const_arg_iterator info_it = CallInfo.arg_begin();
Mike Stump11289f42009-09-09 15:08:12 +00001094 for (CallArgList::const_iterator I = CallArgs.begin(), E = CallArgs.end();
Daniel Dunbarb52d0772009-02-03 05:59:18 +00001095 I != E; ++I, ++info_it) {
1096 const ABIArgInfo &ArgInfo = info_it->info;
Daniel Dunbar613855c2008-09-09 23:27:19 +00001097 RValue RV = I->first;
Daniel Dunbar8fc81b02008-09-17 00:51:38 +00001098
1099 switch (ArgInfo.getKind()) {
Daniel Dunbarb8b1c672009-02-05 08:00:50 +00001100 case ABIArgInfo::Indirect:
Daniel Dunbar747865a2009-02-05 09:16:39 +00001101 if (RV.isScalar() || RV.isComplex()) {
1102 // Make a temporary alloca to pass the argument.
Daniel Dunbara7566f12010-02-09 02:48:28 +00001103 Args.push_back(CreateMemTemp(I->second));
Daniel Dunbar747865a2009-02-05 09:16:39 +00001104 if (RV.isScalar())
Anders Carlsson83709642009-05-19 18:50:41 +00001105 EmitStoreOfScalar(RV.getScalarVal(), Args.back(), false, I->second);
Daniel Dunbar747865a2009-02-05 09:16:39 +00001106 else
Mike Stump11289f42009-09-09 15:08:12 +00001107 StoreComplexToAddr(RV.getComplexVal(), Args.back(), false);
Daniel Dunbar747865a2009-02-05 09:16:39 +00001108 } else {
1109 Args.push_back(RV.getAggregateAddr());
1110 }
1111 break;
1112
Anton Korobeynikov18adbf52009-06-06 09:36:29 +00001113 case ABIArgInfo::Extend:
Daniel Dunbar67dace892009-02-03 06:17:37 +00001114 case ABIArgInfo::Direct:
Daniel Dunbar8fc81b02008-09-17 00:51:38 +00001115 if (RV.isScalar()) {
1116 Args.push_back(RV.getScalarVal());
1117 } else if (RV.isComplex()) {
Daniel Dunbar5d3dbd62009-02-05 11:13:54 +00001118 llvm::Value *Tmp = llvm::UndefValue::get(ConvertType(I->second));
1119 Tmp = Builder.CreateInsertValue(Tmp, RV.getComplexVal().first, 0);
1120 Tmp = Builder.CreateInsertValue(Tmp, RV.getComplexVal().second, 1);
1121 Args.push_back(Tmp);
Daniel Dunbar8fc81b02008-09-17 00:51:38 +00001122 } else {
Daniel Dunbar5d3dbd62009-02-05 11:13:54 +00001123 Args.push_back(Builder.CreateLoad(RV.getAggregateAddr()));
Daniel Dunbar8fc81b02008-09-17 00:51:38 +00001124 }
1125 break;
Mike Stump11289f42009-09-09 15:08:12 +00001126
Daniel Dunbar94a6f252009-01-26 21:26:08 +00001127 case ABIArgInfo::Ignore:
1128 break;
1129
Daniel Dunbar2f219b02009-02-03 19:12:28 +00001130 case ABIArgInfo::Coerce: {
1131 // FIXME: Avoid the conversion through memory if possible.
1132 llvm::Value *SrcPtr;
1133 if (RV.isScalar()) {
Daniel Dunbara7566f12010-02-09 02:48:28 +00001134 SrcPtr = CreateMemTemp(I->second, "coerce");
Anders Carlsson83709642009-05-19 18:50:41 +00001135 EmitStoreOfScalar(RV.getScalarVal(), SrcPtr, false, I->second);
Daniel Dunbar2f219b02009-02-03 19:12:28 +00001136 } else if (RV.isComplex()) {
Daniel Dunbara7566f12010-02-09 02:48:28 +00001137 SrcPtr = CreateMemTemp(I->second, "coerce");
Daniel Dunbar2f219b02009-02-03 19:12:28 +00001138 StoreComplexToAddr(RV.getComplexVal(), SrcPtr, false);
Mike Stump11289f42009-09-09 15:08:12 +00001139 } else
Daniel Dunbar2f219b02009-02-03 19:12:28 +00001140 SrcPtr = RV.getAggregateAddr();
Chris Lattner3dd716c2010-06-28 23:44:11 +00001141
Chris Lattner3dd716c2010-06-28 23:44:11 +00001142 // If the coerce-to type is a first class aggregate, we flatten it and
1143 // pass the elements. Either way is semantically identical, but fast-isel
1144 // and the optimizer generally likes scalar values better than FCAs.
1145 if (const llvm::StructType *STy =
Chris Lattner15ec3612010-06-29 00:06:42 +00001146 dyn_cast<llvm::StructType>(ArgInfo.getCoerceToType())) {
1147 // If the argument and alloca types match up, we don't have to build the
1148 // FCA at all, emit a series of GEPs and loads, which is better for
1149 // fast isel.
1150 if (STy ==cast<llvm::PointerType>(SrcPtr->getType())->getElementType()){
1151 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1152 llvm::Value *EltPtr = Builder.CreateConstGEP2_32(SrcPtr, 0, i);
1153 Args.push_back(Builder.CreateLoad(EltPtr));
1154 }
1155 } else {
1156 // Otherwise, do a coerced load the entire FCA and handle the pieces.
1157 llvm::Value *SrcVal =
1158 CreateCoercedLoad(SrcPtr, ArgInfo.getCoerceToType(), *this);
1159
1160 // Extract the elements of the value to pass in.
1161 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i)
1162 Args.push_back(Builder.CreateExtractValue(SrcVal, i));
1163 }
Chris Lattner3dd716c2010-06-28 23:44:11 +00001164 } else {
Chris Lattner15ec3612010-06-29 00:06:42 +00001165 // In the simple case, just pass the coerced loaded value.
1166 Args.push_back(CreateCoercedLoad(SrcPtr, ArgInfo.getCoerceToType(),
1167 *this));
Chris Lattner3dd716c2010-06-28 23:44:11 +00001168 }
1169
Daniel Dunbar2f219b02009-02-03 19:12:28 +00001170 break;
1171 }
1172
Daniel Dunbar8fc81b02008-09-17 00:51:38 +00001173 case ABIArgInfo::Expand:
1174 ExpandTypeToArgs(I->second, RV, Args);
1175 break;
Daniel Dunbar613855c2008-09-09 23:27:19 +00001176 }
1177 }
Mike Stump11289f42009-09-09 15:08:12 +00001178
Chris Lattner4ca97c32009-06-13 00:26:38 +00001179 // If the callee is a bitcast of a function to a varargs pointer to function
1180 // type, check to see if we can remove the bitcast. This handles some cases
1181 // with unprototyped functions.
1182 if (llvm::ConstantExpr *CE = dyn_cast<llvm::ConstantExpr>(Callee))
1183 if (llvm::Function *CalleeF = dyn_cast<llvm::Function>(CE->getOperand(0))) {
1184 const llvm::PointerType *CurPT=cast<llvm::PointerType>(Callee->getType());
1185 const llvm::FunctionType *CurFT =
1186 cast<llvm::FunctionType>(CurPT->getElementType());
1187 const llvm::FunctionType *ActualFT = CalleeF->getFunctionType();
Mike Stump11289f42009-09-09 15:08:12 +00001188
Chris Lattner4ca97c32009-06-13 00:26:38 +00001189 if (CE->getOpcode() == llvm::Instruction::BitCast &&
1190 ActualFT->getReturnType() == CurFT->getReturnType() &&
Chris Lattner4c8da962009-06-23 01:38:41 +00001191 ActualFT->getNumParams() == CurFT->getNumParams() &&
1192 ActualFT->getNumParams() == Args.size()) {
Chris Lattner4ca97c32009-06-13 00:26:38 +00001193 bool ArgsMatch = true;
1194 for (unsigned i = 0, e = ActualFT->getNumParams(); i != e; ++i)
1195 if (ActualFT->getParamType(i) != CurFT->getParamType(i)) {
1196 ArgsMatch = false;
1197 break;
1198 }
Mike Stump11289f42009-09-09 15:08:12 +00001199
Chris Lattner4ca97c32009-06-13 00:26:38 +00001200 // Strip the cast if we can get away with it. This is a nice cleanup,
1201 // but also allows us to inline the function at -O0 if it is marked
1202 // always_inline.
1203 if (ArgsMatch)
1204 Callee = CalleeF;
1205 }
1206 }
Mike Stump11289f42009-09-09 15:08:12 +00001207
Daniel Dunbar613855c2008-09-09 23:27:19 +00001208
Daniel Dunbar12347492009-02-23 17:26:39 +00001209 llvm::BasicBlock *InvokeDest = getInvokeDest();
Daniel Dunbar0ef34792009-09-12 00:59:20 +00001210 unsigned CallingConv;
Devang Patel322300d2008-09-25 21:02:23 +00001211 CodeGen::AttributeListType AttributeList;
Daniel Dunbar0ef34792009-09-12 00:59:20 +00001212 CGM.ConstructAttributeList(CallInfo, TargetDecl, AttributeList, CallingConv);
Daniel Dunbar12347492009-02-23 17:26:39 +00001213 llvm::AttrListPtr Attrs = llvm::AttrListPtr::get(AttributeList.begin(),
1214 AttributeList.end());
Mike Stump11289f42009-09-09 15:08:12 +00001215
Daniel Dunbarb960b7b2009-03-02 04:32:35 +00001216 llvm::CallSite CS;
1217 if (!InvokeDest || (Attrs.getFnAttributes() & llvm::Attribute::NoUnwind)) {
Jay Foad7d0479f2009-05-21 09:52:38 +00001218 CS = Builder.CreateCall(Callee, Args.data(), Args.data()+Args.size());
Daniel Dunbar12347492009-02-23 17:26:39 +00001219 } else {
1220 llvm::BasicBlock *Cont = createBasicBlock("invoke.cont");
Mike Stump11289f42009-09-09 15:08:12 +00001221 CS = Builder.CreateInvoke(Callee, Cont, InvokeDest,
Jay Foad7d0479f2009-05-21 09:52:38 +00001222 Args.data(), Args.data()+Args.size());
Daniel Dunbar12347492009-02-23 17:26:39 +00001223 EmitBlock(Cont);
Daniel Dunbar5006f4a2009-02-20 18:54:31 +00001224 }
David Chisnallff5f88c2010-05-02 13:41:58 +00001225 if (callOrInvoke) {
1226 *callOrInvoke = CS.getInstruction();
David Chisnall9eecafa2010-05-01 11:15:56 +00001227 }
Daniel Dunbar5006f4a2009-02-20 18:54:31 +00001228
Daniel Dunbarb960b7b2009-03-02 04:32:35 +00001229 CS.setAttributes(Attrs);
Daniel Dunbar0ef34792009-09-12 00:59:20 +00001230 CS.setCallingConv(static_cast<llvm::CallingConv::ID>(CallingConv));
Daniel Dunbarb960b7b2009-03-02 04:32:35 +00001231
1232 // If the call doesn't return, finish the basic block and clear the
1233 // insertion point; this allows the rest of IRgen to discard
1234 // unreachable code.
1235 if (CS.doesNotReturn()) {
1236 Builder.CreateUnreachable();
1237 Builder.ClearInsertionPoint();
Mike Stump11289f42009-09-09 15:08:12 +00001238
Mike Stump18bb9282009-05-16 07:57:57 +00001239 // FIXME: For now, emit a dummy basic block because expr emitters in
1240 // generally are not ready to handle emitting expressions at unreachable
1241 // points.
Daniel Dunbarb960b7b2009-03-02 04:32:35 +00001242 EnsureInsertPoint();
Mike Stump11289f42009-09-09 15:08:12 +00001243
Daniel Dunbarb960b7b2009-03-02 04:32:35 +00001244 // Return a reasonable RValue.
1245 return GetUndefRValue(RetTy);
Mike Stump11289f42009-09-09 15:08:12 +00001246 }
Daniel Dunbarb960b7b2009-03-02 04:32:35 +00001247
1248 llvm::Instruction *CI = CS.getInstruction();
Benjamin Kramerdde0fee2009-10-05 13:47:21 +00001249 if (Builder.isNamePreserving() && !CI->getType()->isVoidTy())
Daniel Dunbar613855c2008-09-09 23:27:19 +00001250 CI->setName("call");
Daniel Dunbara72d4ae2008-09-10 02:41:04 +00001251
1252 switch (RetAI.getKind()) {
Daniel Dunbarb8b1c672009-02-05 08:00:50 +00001253 case ABIArgInfo::Indirect:
Daniel Dunbara72d4ae2008-09-10 02:41:04 +00001254 if (RetTy->isAnyComplexType())
Daniel Dunbar8fc81b02008-09-17 00:51:38 +00001255 return RValue::getComplex(LoadComplexFromAddr(Args[0], false));
Chris Lattnere09ad902009-03-22 00:32:22 +00001256 if (CodeGenFunction::hasAggregateLLVMType(RetTy))
Daniel Dunbar8fc81b02008-09-17 00:51:38 +00001257 return RValue::getAggregate(Args[0]);
Chris Lattnere09ad902009-03-22 00:32:22 +00001258 return RValue::get(EmitLoadOfScalar(Args[0], false, RetTy));
Daniel Dunbard3674e62008-09-11 01:48:57 +00001259
Anton Korobeynikov18adbf52009-06-06 09:36:29 +00001260 case ABIArgInfo::Extend:
Daniel Dunbar67dace892009-02-03 06:17:37 +00001261 case ABIArgInfo::Direct:
Daniel Dunbar5d3dbd62009-02-05 11:13:54 +00001262 if (RetTy->isAnyComplexType()) {
1263 llvm::Value *Real = Builder.CreateExtractValue(CI, 0);
1264 llvm::Value *Imag = Builder.CreateExtractValue(CI, 1);
1265 return RValue::getComplex(std::make_pair(Real, Imag));
Chris Lattnere09ad902009-03-22 00:32:22 +00001266 }
1267 if (CodeGenFunction::hasAggregateLLVMType(RetTy)) {
Anders Carlsson17490832009-12-24 20:40:36 +00001268 llvm::Value *DestPtr = ReturnValue.getValue();
1269 bool DestIsVolatile = ReturnValue.isVolatile();
1270
1271 if (!DestPtr) {
Daniel Dunbara7566f12010-02-09 02:48:28 +00001272 DestPtr = CreateMemTemp(RetTy, "agg.tmp");
Anders Carlsson17490832009-12-24 20:40:36 +00001273 DestIsVolatile = false;
1274 }
1275 Builder.CreateStore(CI, DestPtr, DestIsVolatile);
1276 return RValue::getAggregate(DestPtr);
Chris Lattnere09ad902009-03-22 00:32:22 +00001277 }
1278 return RValue::get(CI);
Daniel Dunbara72d4ae2008-09-10 02:41:04 +00001279
Daniel Dunbar94a6f252009-01-26 21:26:08 +00001280 case ABIArgInfo::Ignore:
Daniel Dunbar01362822009-02-03 06:30:17 +00001281 // If we are ignoring an argument that had a result, make sure to
1282 // construct the appropriate return value for our caller.
Daniel Dunbarc79407f2009-02-05 07:09:07 +00001283 return GetUndefRValue(RetTy);
Daniel Dunbar94a6f252009-01-26 21:26:08 +00001284
Daniel Dunbar573884e2008-09-10 07:04:09 +00001285 case ABIArgInfo::Coerce: {
Anders Carlsson17490832009-12-24 20:40:36 +00001286 llvm::Value *DestPtr = ReturnValue.getValue();
1287 bool DestIsVolatile = ReturnValue.isVolatile();
1288
1289 if (!DestPtr) {
Daniel Dunbara7566f12010-02-09 02:48:28 +00001290 DestPtr = CreateMemTemp(RetTy, "coerce");
Anders Carlsson17490832009-12-24 20:40:36 +00001291 DestIsVolatile = false;
1292 }
1293
1294 CreateCoercedStore(CI, DestPtr, DestIsVolatile, *this);
Anders Carlsson32ef8ce2008-11-25 22:21:48 +00001295 if (RetTy->isAnyComplexType())
Anders Carlsson17490832009-12-24 20:40:36 +00001296 return RValue::getComplex(LoadComplexFromAddr(DestPtr, false));
Chris Lattnere09ad902009-03-22 00:32:22 +00001297 if (CodeGenFunction::hasAggregateLLVMType(RetTy))
Anders Carlsson17490832009-12-24 20:40:36 +00001298 return RValue::getAggregate(DestPtr);
1299 return RValue::get(EmitLoadOfScalar(DestPtr, false, RetTy));
Daniel Dunbar573884e2008-09-10 07:04:09 +00001300 }
Daniel Dunbard3674e62008-09-11 01:48:57 +00001301
Daniel Dunbard3674e62008-09-11 01:48:57 +00001302 case ABIArgInfo::Expand:
Mike Stump11289f42009-09-09 15:08:12 +00001303 assert(0 && "Invalid ABI kind for return argument");
Daniel Dunbar613855c2008-09-09 23:27:19 +00001304 }
Daniel Dunbara72d4ae2008-09-10 02:41:04 +00001305
1306 assert(0 && "Unhandled ABIArgInfo::Kind");
1307 return RValue::get(0);
Daniel Dunbar613855c2008-09-09 23:27:19 +00001308}
Daniel Dunbar2d0746f2009-02-10 20:44:09 +00001309
1310/* VarArg handling */
1311
1312llvm::Value *CodeGenFunction::EmitVAArg(llvm::Value *VAListAddr, QualType Ty) {
1313 return CGM.getTypes().getABIInfo().EmitVAArg(VAListAddr, Ty, *this);
1314}