blob: 9a63a74fea62a1ca3070cfc6d2336ab69f658229 [file] [log] [blame]
Daniel Dunbar0dbe2272008-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 Dunbarb7688072008-09-10 00:41:16 +000017#include "CodeGenModule.h"
Daniel Dunbar6b1da0e2008-10-13 17:02:26 +000018#include "clang/Basic/TargetInfo.h"
Daniel Dunbar0dbe2272008-09-08 21:33:45 +000019#include "clang/AST/Decl.h"
Anders Carlssonf6f8ae52009-04-03 22:48:58 +000020#include "clang/AST/DeclCXX.h"
Daniel Dunbar0dbe2272008-09-08 21:33:45 +000021#include "clang/AST/DeclObjC.h"
Chandler Carruth06057ce2010-06-15 23:19:56 +000022#include "clang/Frontend/CodeGenOptions.h"
Devang Pateld0646bd2008-09-24 01:01:36 +000023#include "llvm/Attributes.h"
Daniel Dunbard14151d2009-03-02 04:32:35 +000024#include "llvm/Support/CallSite.h"
Daniel Dunbar54d1ccb2009-01-27 01:36:03 +000025#include "llvm/Target/TargetData.h"
Daniel Dunbar9eb5c6d2009-02-03 01:05:53 +000026
27#include "ABIInfo.h"
28
Daniel Dunbar0dbe2272008-09-08 21:33:45 +000029using namespace clang;
30using namespace CodeGen;
31
32/***/
33
Daniel Dunbar0dbe2272008-09-08 21:33:45 +000034// FIXME: Use iterator and sidestep silly type array creation.
35
John McCall04a67a62010-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 Gregorf813a2c2010-05-18 16:57:00 +000041 case CC_X86ThisCall: return llvm::CallingConv::X86_ThisCall;
John McCall04a67a62010-02-05 21:31:56 +000042 }
43}
44
John McCall0b0ef0a2010-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 McCallead608a2010-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 Dunbar45c25ba2008-09-10 04:01:49 +000051}
52
John McCall0b0ef0a2010-02-24 07:14:12 +000053/// Returns the canonical formal type of the given C++ method.
John McCallead608a2010-02-26 00:48:12 +000054static CanQual<FunctionProtoType> GetFormalType(const CXXMethodDecl *MD) {
55 return MD->getType()->getCanonicalTypeUnqualified()
56 .getAs<FunctionProtoType>();
John McCall0b0ef0a2010-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 McCallead608a2010-02-26 00:48:12 +000063static CanQualType GetReturnType(QualType RetTy) {
64 return RetTy->getCanonicalTypeUnqualified().getUnqualifiedType();
John McCall0b0ef0a2010-02-24 07:14:12 +000065}
66
67const CGFunctionInfo &
John McCallead608a2010-02-26 00:48:12 +000068CodeGenTypes::getFunctionInfo(CanQual<FunctionNoProtoType> FTNP) {
69 return getFunctionInfo(FTNP->getResultType().getUnqualifiedType(),
70 llvm::SmallVector<CanQualType, 16>(),
Rafael Espindola264ba482010-03-30 20:24:48 +000071 FTNP->getExtInfo());
John McCall0b0ef0a2010-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 McCallead608a2010-02-26 00:48:12 +000077 llvm::SmallVectorImpl<CanQualType> &ArgTys,
78 CanQual<FunctionProtoType> FTP) {
Daniel Dunbar541b63b2009-02-02 23:23:47 +000079 // FIXME: Kill copy.
Daniel Dunbar45c25ba2008-09-10 04:01:49 +000080 for (unsigned i = 0, e = FTP->getNumArgs(); i != e; ++i)
Daniel Dunbar541b63b2009-02-02 23:23:47 +000081 ArgTys.push_back(FTP->getArgType(i));
John McCallead608a2010-02-26 00:48:12 +000082 CanQualType ResTy = FTP->getResultType().getUnqualifiedType();
83 return CGT.getFunctionInfo(ResTy, ArgTys,
Rafael Espindola264ba482010-03-30 20:24:48 +000084 FTP->getExtInfo());
John McCall0b0ef0a2010-02-24 07:14:12 +000085}
86
87const CGFunctionInfo &
John McCallead608a2010-02-26 00:48:12 +000088CodeGenTypes::getFunctionInfo(CanQual<FunctionProtoType> FTP) {
89 llvm::SmallVector<CanQualType, 16> ArgTys;
John McCall0b0ef0a2010-02-24 07:14:12 +000090 return ::getFunctionInfo(*this, ArgTys, FTP);
Daniel Dunbarbac7c252009-09-11 22:24:53 +000091}
92
John McCall04a67a62010-02-05 21:31:56 +000093static CallingConv getCallingConventionForDecl(const Decl *D) {
Daniel Dunbarbac7c252009-09-11 22:24:53 +000094 // Set the appropriate calling convention for the Function.
95 if (D->hasAttr<StdCallAttr>())
John McCall04a67a62010-02-05 21:31:56 +000096 return CC_X86StdCall;
Daniel Dunbarbac7c252009-09-11 22:24:53 +000097
98 if (D->hasAttr<FastCallAttr>())
John McCall04a67a62010-02-05 21:31:56 +000099 return CC_X86FastCall;
Daniel Dunbarbac7c252009-09-11 22:24:53 +0000100
Douglas Gregorf813a2c2010-05-18 16:57:00 +0000101 if (D->hasAttr<ThisCallAttr>())
102 return CC_X86ThisCall;
103
John McCall04a67a62010-02-05 21:31:56 +0000104 return CC_C;
Daniel Dunbar45c25ba2008-09-10 04:01:49 +0000105}
106
Anders Carlsson375c31c2009-10-03 19:43:08 +0000107const CGFunctionInfo &CodeGenTypes::getFunctionInfo(const CXXRecordDecl *RD,
108 const FunctionProtoType *FTP) {
John McCallead608a2010-02-26 00:48:12 +0000109 llvm::SmallVector<CanQualType, 16> ArgTys;
John McCall0b0ef0a2010-02-24 07:14:12 +0000110
Anders Carlsson375c31c2009-10-03 19:43:08 +0000111 // Add the 'this' pointer.
John McCall0b0ef0a2010-02-24 07:14:12 +0000112 ArgTys.push_back(GetThisType(Context, RD));
113
114 return ::getFunctionInfo(*this, ArgTys,
John McCallead608a2010-02-26 00:48:12 +0000115 FTP->getCanonicalTypeUnqualified().getAs<FunctionProtoType>());
Anders Carlsson375c31c2009-10-03 19:43:08 +0000116}
117
Anders Carlssonf6f8ae52009-04-03 22:48:58 +0000118const CGFunctionInfo &CodeGenTypes::getFunctionInfo(const CXXMethodDecl *MD) {
John McCallead608a2010-02-26 00:48:12 +0000119 llvm::SmallVector<CanQualType, 16> ArgTys;
John McCall0b0ef0a2010-02-24 07:14:12 +0000120
Chris Lattner3eb67ca2009-05-12 20:27:19 +0000121 // Add the 'this' pointer unless this is a static method.
122 if (MD->isInstance())
John McCall0b0ef0a2010-02-24 07:14:12 +0000123 ArgTys.push_back(GetThisType(Context, MD->getParent()));
Mike Stump1eb44332009-09-09 15:08:12 +0000124
John McCall0b0ef0a2010-02-24 07:14:12 +0000125 return ::getFunctionInfo(*this, ArgTys, GetFormalType(MD));
Anders Carlssonf6f8ae52009-04-03 22:48:58 +0000126}
127
Anders Carlssonf6c56e22009-11-25 03:15:49 +0000128const CGFunctionInfo &CodeGenTypes::getFunctionInfo(const CXXConstructorDecl *D,
129 CXXCtorType Type) {
John McCallead608a2010-02-26 00:48:12 +0000130 llvm::SmallVector<CanQualType, 16> ArgTys;
Anders Carlssonf6c56e22009-11-25 03:15:49 +0000131
132 // Add the 'this' pointer.
John McCall0b0ef0a2010-02-24 07:14:12 +0000133 ArgTys.push_back(GetThisType(Context, D->getParent()));
Anders Carlssonf6c56e22009-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 McCall0b0ef0a2010-02-24 07:14:12 +0000138
139 return ::getFunctionInfo(*this, ArgTys, GetFormalType(D));
Anders Carlssonf6c56e22009-11-25 03:15:49 +0000140}
141
142const CGFunctionInfo &CodeGenTypes::getFunctionInfo(const CXXDestructorDecl *D,
143 CXXDtorType Type) {
John McCallead608a2010-02-26 00:48:12 +0000144 llvm::SmallVector<CanQualType, 16> ArgTys;
Anders Carlssonf6c56e22009-11-25 03:15:49 +0000145
146 // Add the 'this' pointer.
John McCallead608a2010-02-26 00:48:12 +0000147 ArgTys.push_back(GetThisType(Context, D->getParent()));
Anders Carlssonf6c56e22009-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 McCall0b0ef0a2010-02-24 07:14:12 +0000152
153 return ::getFunctionInfo(*this, ArgTys, GetFormalType(D));
Anders Carlssonf6c56e22009-11-25 03:15:49 +0000154}
155
Daniel Dunbar541b63b2009-02-02 23:23:47 +0000156const CGFunctionInfo &CodeGenTypes::getFunctionInfo(const FunctionDecl *FD) {
Chris Lattner3eb67ca2009-05-12 20:27:19 +0000157 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD))
Anders Carlssonf6f8ae52009-04-03 22:48:58 +0000158 if (MD->isInstance())
159 return getFunctionInfo(MD);
Mike Stump1eb44332009-09-09 15:08:12 +0000160
John McCallead608a2010-02-26 00:48:12 +0000161 CanQualType FTy = FD->getType()->getCanonicalTypeUnqualified();
162 assert(isa<FunctionType>(FTy));
John McCall0b0ef0a2010-02-24 07:14:12 +0000163 if (isa<FunctionNoProtoType>(FTy))
John McCallead608a2010-02-26 00:48:12 +0000164 return getFunctionInfo(FTy.getAs<FunctionNoProtoType>());
165 assert(isa<FunctionProtoType>(FTy));
166 return getFunctionInfo(FTy.getAs<FunctionProtoType>());
Daniel Dunbar0dbe2272008-09-08 21:33:45 +0000167}
168
Daniel Dunbar541b63b2009-02-02 23:23:47 +0000169const CGFunctionInfo &CodeGenTypes::getFunctionInfo(const ObjCMethodDecl *MD) {
John McCallead608a2010-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 Dunbar541b63b2009-02-02 23:23:47 +0000173 // FIXME: Kill copy?
Chris Lattner20732162009-02-20 06:23:21 +0000174 for (ObjCMethodDecl::param_iterator i = MD->param_begin(),
John McCall0b0ef0a2010-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 Espindola264ba482010-03-30 20:24:48 +0000180 FunctionType::ExtInfo(
181 /*NoReturn*/ false,
Rafael Espindola425ef722010-03-30 22:15:11 +0000182 /*RegParm*/ 0,
Rafael Espindola264ba482010-03-30 20:24:48 +0000183 getCallingConventionForDecl(MD)));
Daniel Dunbar0dbe2272008-09-08 21:33:45 +0000184}
185
Anders Carlssonb2bcf1c2010-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 Stump1eb44332009-09-09 15:08:12 +0000199const CGFunctionInfo &CodeGenTypes::getFunctionInfo(QualType ResTy,
Daniel Dunbarbac7c252009-09-11 22:24:53 +0000200 const CallArgList &Args,
Rafael Espindola264ba482010-03-30 20:24:48 +0000201 const FunctionType::ExtInfo &Info) {
Daniel Dunbar541b63b2009-02-02 23:23:47 +0000202 // FIXME: Kill copy.
John McCallead608a2010-02-26 00:48:12 +0000203 llvm::SmallVector<CanQualType, 16> ArgTys;
Mike Stump1eb44332009-09-09 15:08:12 +0000204 for (CallArgList::const_iterator i = Args.begin(), e = Args.end();
Daniel Dunbar725ad312009-01-31 02:19:00 +0000205 i != e; ++i)
John McCall0b0ef0a2010-02-24 07:14:12 +0000206 ArgTys.push_back(Context.getCanonicalParamType(i->second));
Rafael Espindola264ba482010-03-30 20:24:48 +0000207 return getFunctionInfo(GetReturnType(ResTy), ArgTys, Info);
Daniel Dunbar725ad312009-01-31 02:19:00 +0000208}
209
Mike Stump1eb44332009-09-09 15:08:12 +0000210const CGFunctionInfo &CodeGenTypes::getFunctionInfo(QualType ResTy,
Daniel Dunbarbac7c252009-09-11 22:24:53 +0000211 const FunctionArgList &Args,
Rafael Espindola264ba482010-03-30 20:24:48 +0000212 const FunctionType::ExtInfo &Info) {
Daniel Dunbar541b63b2009-02-02 23:23:47 +0000213 // FIXME: Kill copy.
John McCallead608a2010-02-26 00:48:12 +0000214 llvm::SmallVector<CanQualType, 16> ArgTys;
Mike Stump1eb44332009-09-09 15:08:12 +0000215 for (FunctionArgList::const_iterator i = Args.begin(), e = Args.end();
Daniel Dunbarbb36d332009-02-02 21:43:58 +0000216 i != e; ++i)
John McCall0b0ef0a2010-02-24 07:14:12 +0000217 ArgTys.push_back(Context.getCanonicalParamType(i->second));
Rafael Espindola264ba482010-03-30 20:24:48 +0000218 return getFunctionInfo(GetReturnType(ResTy), ArgTys, Info);
Daniel Dunbar541b63b2009-02-02 23:23:47 +0000219}
220
John McCallead608a2010-02-26 00:48:12 +0000221const CGFunctionInfo &CodeGenTypes::getFunctionInfo(CanQualType ResTy,
222 const llvm::SmallVectorImpl<CanQualType> &ArgTys,
Rafael Espindola264ba482010-03-30 20:24:48 +0000223 const FunctionType::ExtInfo &Info) {
John McCallead608a2010-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 Espindola425ef722010-03-30 22:15:11 +0000230 unsigned CC = ClangCallConvToLLVMCallConv(Info.getCC());
John McCall04a67a62010-02-05 21:31:56 +0000231
Daniel Dunbar40a6be62009-02-03 00:07:12 +0000232 // Lookup or create unique function info.
233 llvm::FoldingSetNodeID ID;
Rafael Espindola264ba482010-03-30 20:24:48 +0000234 CGFunctionInfo::Profile(ID, Info, ResTy,
Daniel Dunbarbac7c252009-09-11 22:24:53 +0000235 ArgTys.begin(), ArgTys.end());
Daniel Dunbar40a6be62009-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 Dunbar88c2fa92009-02-03 05:31:23 +0000242 // Construct the function info.
Rafael Espindola425ef722010-03-30 22:15:11 +0000243 FI = new CGFunctionInfo(CC, Info.getNoReturn(), Info.getRegParm(), ResTy, ArgTys);
Daniel Dunbar35e67d42009-02-05 00:00:23 +0000244 FunctionInfos.InsertNode(FI, InsertPos);
Daniel Dunbar88c2fa92009-02-03 05:31:23 +0000245
246 // Compute ABI information.
Owen Andersona1cf15f2009-07-14 23:10:40 +0000247 getABIInfo().computeInfo(*FI, getContext(), TheModule.getContext());
Daniel Dunbar88c2fa92009-02-03 05:31:23 +0000248
Daniel Dunbar40a6be62009-02-03 00:07:12 +0000249 return *FI;
Daniel Dunbar541b63b2009-02-02 23:23:47 +0000250}
251
Daniel Dunbarbac7c252009-09-11 22:24:53 +0000252CGFunctionInfo::CGFunctionInfo(unsigned _CallingConvention,
John McCall04a67a62010-02-05 21:31:56 +0000253 bool _NoReturn,
Rafael Espindola425ef722010-03-30 22:15:11 +0000254 unsigned _RegParm,
John McCallead608a2010-02-26 00:48:12 +0000255 CanQualType ResTy,
256 const llvm::SmallVectorImpl<CanQualType> &ArgTys)
Daniel Dunbarca6408c2009-09-12 00:59:20 +0000257 : CallingConvention(_CallingConvention),
John McCall04a67a62010-02-05 21:31:56 +0000258 EffectiveCallingConvention(_CallingConvention),
Rafael Espindola425ef722010-03-30 22:15:11 +0000259 NoReturn(_NoReturn), RegParm(_RegParm)
Daniel Dunbarbac7c252009-09-11 22:24:53 +0000260{
Daniel Dunbar88c2fa92009-02-03 05:31:23 +0000261 NumArgs = ArgTys.size();
262 Args = new ArgInfo[1 + NumArgs];
263 Args[0].type = ResTy;
264 for (unsigned i = 0; i < NumArgs; ++i)
265 Args[1 + i].type = ArgTys[i];
266}
267
268/***/
269
Mike Stump1eb44332009-09-09 15:08:12 +0000270void CodeGenTypes::GetExpandedTypes(QualType Ty,
Daniel Dunbar56273772008-09-17 00:51:38 +0000271 std::vector<const llvm::Type*> &ArgTys) {
272 const RecordType *RT = Ty->getAsStructureType();
273 assert(RT && "Can only expand structure types.");
274 const RecordDecl *RD = RT->getDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000275 assert(!RD->hasFlexibleArrayMember() &&
Daniel Dunbar56273772008-09-17 00:51:38 +0000276 "Cannot expand structure with flexible array.");
Mike Stump1eb44332009-09-09 15:08:12 +0000277
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000278 for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end();
279 i != e; ++i) {
Daniel Dunbar56273772008-09-17 00:51:38 +0000280 const FieldDecl *FD = *i;
Mike Stump1eb44332009-09-09 15:08:12 +0000281 assert(!FD->isBitField() &&
Daniel Dunbar56273772008-09-17 00:51:38 +0000282 "Cannot expand structure with bit-field members.");
Mike Stump1eb44332009-09-09 15:08:12 +0000283
Daniel Dunbar56273772008-09-17 00:51:38 +0000284 QualType FT = FD->getType();
285 if (CodeGenFunction::hasAggregateLLVMType(FT)) {
286 GetExpandedTypes(FT, ArgTys);
287 } else {
288 ArgTys.push_back(ConvertType(FT));
289 }
290 }
291}
292
Mike Stump1eb44332009-09-09 15:08:12 +0000293llvm::Function::arg_iterator
Daniel Dunbar56273772008-09-17 00:51:38 +0000294CodeGenFunction::ExpandTypeFromArgs(QualType Ty, LValue LV,
295 llvm::Function::arg_iterator AI) {
296 const RecordType *RT = Ty->getAsStructureType();
297 assert(RT && "Can only expand structure types.");
298
299 RecordDecl *RD = RT->getDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000300 assert(LV.isSimple() &&
301 "Unexpected non-simple lvalue during struct expansion.");
Daniel Dunbar56273772008-09-17 00:51:38 +0000302 llvm::Value *Addr = LV.getAddress();
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000303 for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end();
304 i != e; ++i) {
Mike Stump1eb44332009-09-09 15:08:12 +0000305 FieldDecl *FD = *i;
Daniel Dunbar56273772008-09-17 00:51:38 +0000306 QualType FT = FD->getType();
307
308 // FIXME: What are the right qualifiers here?
Anders Carlssone6d2a532010-01-29 05:05:36 +0000309 LValue LV = EmitLValueForField(Addr, FD, 0);
Daniel Dunbar56273772008-09-17 00:51:38 +0000310 if (CodeGenFunction::hasAggregateLLVMType(FT)) {
311 AI = ExpandTypeFromArgs(FT, LV, AI);
312 } else {
313 EmitStoreThroughLValue(RValue::get(AI), LV, FT);
314 ++AI;
315 }
316 }
317
318 return AI;
319}
320
Mike Stump1eb44332009-09-09 15:08:12 +0000321void
322CodeGenFunction::ExpandTypeToArgs(QualType Ty, RValue RV,
Daniel Dunbar56273772008-09-17 00:51:38 +0000323 llvm::SmallVector<llvm::Value*, 16> &Args) {
324 const RecordType *RT = Ty->getAsStructureType();
325 assert(RT && "Can only expand structure types.");
326
327 RecordDecl *RD = RT->getDecl();
328 assert(RV.isAggregate() && "Unexpected rvalue during struct expansion");
329 llvm::Value *Addr = RV.getAggregateAddr();
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000330 for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end();
331 i != e; ++i) {
Mike Stump1eb44332009-09-09 15:08:12 +0000332 FieldDecl *FD = *i;
Daniel Dunbar56273772008-09-17 00:51:38 +0000333 QualType FT = FD->getType();
Mike Stump1eb44332009-09-09 15:08:12 +0000334
Daniel Dunbar56273772008-09-17 00:51:38 +0000335 // FIXME: What are the right qualifiers here?
Anders Carlssone6d2a532010-01-29 05:05:36 +0000336 LValue LV = EmitLValueForField(Addr, FD, 0);
Daniel Dunbar56273772008-09-17 00:51:38 +0000337 if (CodeGenFunction::hasAggregateLLVMType(FT)) {
338 ExpandTypeToArgs(FT, RValue::getAggregate(LV.getAddress()), Args);
339 } else {
340 RValue RV = EmitLoadOfLValue(LV, FT);
Mike Stump1eb44332009-09-09 15:08:12 +0000341 assert(RV.isScalar() &&
Daniel Dunbar56273772008-09-17 00:51:38 +0000342 "Unexpected non-scalar rvalue during struct expansion.");
343 Args.push_back(RV.getScalarVal());
344 }
345 }
346}
347
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000348/// CreateCoercedLoad - Create a load from \arg SrcPtr interpreted as
349/// a pointer to an object of type \arg Ty.
350///
351/// This safely handles the case when the src type is smaller than the
352/// destination type; in this situation the values of bits which not
353/// present in the src are undefined.
354static llvm::Value *CreateCoercedLoad(llvm::Value *SrcPtr,
355 const llvm::Type *Ty,
356 CodeGenFunction &CGF) {
Mike Stump1eb44332009-09-09 15:08:12 +0000357 const llvm::Type *SrcTy =
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000358 cast<llvm::PointerType>(SrcPtr->getType())->getElementType();
Duncan Sands9408c452009-05-09 07:08:47 +0000359 uint64_t SrcSize = CGF.CGM.getTargetData().getTypeAllocSize(SrcTy);
360 uint64_t DstSize = CGF.CGM.getTargetData().getTypeAllocSize(Ty);
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000361
Daniel Dunbarb225be42009-02-03 05:59:18 +0000362 // If load is legal, just bitcast the src pointer.
Daniel Dunbar7ef455b2009-05-13 18:54:26 +0000363 if (SrcSize >= DstSize) {
Mike Stumpf5408fe2009-05-16 07:57:57 +0000364 // Generally SrcSize is never greater than DstSize, since this means we are
365 // losing bits. However, this can happen in cases where the structure has
366 // additional padding, for example due to a user specified alignment.
Daniel Dunbar7ef455b2009-05-13 18:54:26 +0000367 //
Mike Stumpf5408fe2009-05-16 07:57:57 +0000368 // FIXME: Assert that we aren't truncating non-padding bits when have access
369 // to that information.
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000370 llvm::Value *Casted =
371 CGF.Builder.CreateBitCast(SrcPtr, llvm::PointerType::getUnqual(Ty));
Daniel Dunbar386621f2009-02-07 02:46:03 +0000372 llvm::LoadInst *Load = CGF.Builder.CreateLoad(Casted);
373 // FIXME: Use better alignment / avoid requiring aligned load.
374 Load->setAlignment(1);
375 return Load;
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000376 } else {
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000377 // Otherwise do coercion through memory. This is stupid, but
378 // simple.
379 llvm::Value *Tmp = CGF.CreateTempAlloca(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +0000380 llvm::Value *Casted =
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000381 CGF.Builder.CreateBitCast(Tmp, llvm::PointerType::getUnqual(SrcTy));
Mike Stump1eb44332009-09-09 15:08:12 +0000382 llvm::StoreInst *Store =
Daniel Dunbar386621f2009-02-07 02:46:03 +0000383 CGF.Builder.CreateStore(CGF.Builder.CreateLoad(SrcPtr), Casted);
384 // FIXME: Use better alignment / avoid requiring aligned store.
385 Store->setAlignment(1);
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000386 return CGF.Builder.CreateLoad(Tmp);
387 }
388}
389
390/// CreateCoercedStore - Create a store to \arg DstPtr from \arg Src,
391/// where the source and destination may have different types.
392///
393/// This safely handles the case when the src type is larger than the
394/// destination type; the upper bits of the src will be lost.
395static void CreateCoercedStore(llvm::Value *Src,
396 llvm::Value *DstPtr,
Anders Carlssond2490a92009-12-24 20:40:36 +0000397 bool DstIsVolatile,
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000398 CodeGenFunction &CGF) {
399 const llvm::Type *SrcTy = Src->getType();
Mike Stump1eb44332009-09-09 15:08:12 +0000400 const llvm::Type *DstTy =
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000401 cast<llvm::PointerType>(DstPtr->getType())->getElementType();
402
Duncan Sands9408c452009-05-09 07:08:47 +0000403 uint64_t SrcSize = CGF.CGM.getTargetData().getTypeAllocSize(SrcTy);
404 uint64_t DstSize = CGF.CGM.getTargetData().getTypeAllocSize(DstTy);
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000405
Daniel Dunbar88c2fa92009-02-03 05:31:23 +0000406 // If store is legal, just bitcast the src pointer.
Daniel Dunbarfdf49862009-06-05 07:58:54 +0000407 if (SrcSize <= DstSize) {
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000408 llvm::Value *Casted =
409 CGF.Builder.CreateBitCast(DstPtr, llvm::PointerType::getUnqual(SrcTy));
Daniel Dunbar386621f2009-02-07 02:46:03 +0000410 // FIXME: Use better alignment / avoid requiring aligned store.
Anders Carlssond2490a92009-12-24 20:40:36 +0000411 CGF.Builder.CreateStore(Src, Casted, DstIsVolatile)->setAlignment(1);
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000412 } else {
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000413 // Otherwise do coercion through memory. This is stupid, but
414 // simple.
Daniel Dunbarfdf49862009-06-05 07:58:54 +0000415
416 // Generally SrcSize is never greater than DstSize, since this means we are
417 // losing bits. However, this can happen in cases where the structure has
418 // additional padding, for example due to a user specified alignment.
419 //
420 // FIXME: Assert that we aren't truncating non-padding bits when have access
421 // to that information.
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000422 llvm::Value *Tmp = CGF.CreateTempAlloca(SrcTy);
423 CGF.Builder.CreateStore(Src, Tmp);
Mike Stump1eb44332009-09-09 15:08:12 +0000424 llvm::Value *Casted =
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000425 CGF.Builder.CreateBitCast(Tmp, llvm::PointerType::getUnqual(DstTy));
Daniel Dunbar386621f2009-02-07 02:46:03 +0000426 llvm::LoadInst *Load = CGF.Builder.CreateLoad(Casted);
427 // FIXME: Use better alignment / avoid requiring aligned load.
428 Load->setAlignment(1);
Anders Carlssond2490a92009-12-24 20:40:36 +0000429 CGF.Builder.CreateStore(Load, DstPtr, DstIsVolatile);
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000430 }
431}
432
Daniel Dunbar56273772008-09-17 00:51:38 +0000433/***/
434
Daniel Dunbar88b53962009-02-02 22:03:45 +0000435bool CodeGenModule::ReturnTypeUsesSret(const CGFunctionInfo &FI) {
Daniel Dunbar11e383a2009-02-05 08:00:50 +0000436 return FI.getReturnInfo().isIndirect();
Daniel Dunbarbb36d332009-02-02 21:43:58 +0000437}
438
John McCallc0bf4622010-02-23 00:48:20 +0000439const llvm::FunctionType *CodeGenTypes::GetFunctionType(GlobalDecl GD) {
440 const CGFunctionInfo &FI = getFunctionInfo(GD);
441
442 // For definition purposes, don't consider a K&R function variadic.
443 bool Variadic = false;
444 if (const FunctionProtoType *FPT =
445 cast<FunctionDecl>(GD.getDecl())->getType()->getAs<FunctionProtoType>())
446 Variadic = FPT->isVariadic();
447
448 return GetFunctionType(FI, Variadic);
449}
450
Daniel Dunbar45c25ba2008-09-10 04:01:49 +0000451const llvm::FunctionType *
Daniel Dunbarbb36d332009-02-02 21:43:58 +0000452CodeGenTypes::GetFunctionType(const CGFunctionInfo &FI, bool IsVariadic) {
Daniel Dunbar45c25ba2008-09-10 04:01:49 +0000453 std::vector<const llvm::Type*> ArgTys;
454
455 const llvm::Type *ResultType = 0;
456
Daniel Dunbara0a99e02009-02-02 23:43:58 +0000457 QualType RetTy = FI.getReturnType();
Daniel Dunbarb225be42009-02-03 05:59:18 +0000458 const ABIArgInfo &RetAI = FI.getReturnInfo();
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000459 switch (RetAI.getKind()) {
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000460 case ABIArgInfo::Expand:
461 assert(0 && "Invalid ABI kind for return argument");
462
Anton Korobeynikovcc6fa882009-06-06 09:36:29 +0000463 case ABIArgInfo::Extend:
Daniel Dunbar46327aa2009-02-03 06:17:37 +0000464 case ABIArgInfo::Direct:
465 ResultType = ConvertType(RetTy);
466 break;
467
Daniel Dunbar11e383a2009-02-05 08:00:50 +0000468 case ABIArgInfo::Indirect: {
469 assert(!RetAI.getIndirectAlign() && "Align unused on indirect return.");
Owen Anderson0032b272009-08-13 21:57:51 +0000470 ResultType = llvm::Type::getVoidTy(getLLVMContext());
Daniel Dunbar62d5c1b2008-09-10 07:00:50 +0000471 const llvm::Type *STy = ConvertType(RetTy);
Daniel Dunbar45c25ba2008-09-10 04:01:49 +0000472 ArgTys.push_back(llvm::PointerType::get(STy, RetTy.getAddressSpace()));
473 break;
474 }
475
Daniel Dunbar11434922009-01-26 21:26:08 +0000476 case ABIArgInfo::Ignore:
Owen Anderson0032b272009-08-13 21:57:51 +0000477 ResultType = llvm::Type::getVoidTy(getLLVMContext());
Daniel Dunbar11434922009-01-26 21:26:08 +0000478 break;
479
Daniel Dunbar45c25ba2008-09-10 04:01:49 +0000480 case ABIArgInfo::Coerce:
Daniel Dunbar639ffe42008-09-10 07:04:09 +0000481 ResultType = RetAI.getCoerceToType();
Daniel Dunbar45c25ba2008-09-10 04:01:49 +0000482 break;
483 }
Mike Stump1eb44332009-09-09 15:08:12 +0000484
485 for (CGFunctionInfo::const_arg_iterator it = FI.arg_begin(),
Daniel Dunbar88c2fa92009-02-03 05:31:23 +0000486 ie = FI.arg_end(); it != ie; ++it) {
487 const ABIArgInfo &AI = it->info;
Mike Stump1eb44332009-09-09 15:08:12 +0000488
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000489 switch (AI.getKind()) {
Daniel Dunbar11434922009-01-26 21:26:08 +0000490 case ABIArgInfo::Ignore:
491 break;
492
Daniel Dunbar56273772008-09-17 00:51:38 +0000493 case ABIArgInfo::Coerce:
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +0000494 ArgTys.push_back(AI.getCoerceToType());
495 break;
496
Daniel Dunbaradc8bdd2009-02-10 01:51:39 +0000497 case ABIArgInfo::Indirect: {
Daniel Dunbar11e383a2009-02-05 08:00:50 +0000498 // indirect arguments are always on the stack, which is addr space #0.
Daniel Dunbaradc8bdd2009-02-10 01:51:39 +0000499 const llvm::Type *LTy = ConvertTypeForMem(it->type);
500 ArgTys.push_back(llvm::PointerType::getUnqual(LTy));
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000501 break;
Daniel Dunbaradc8bdd2009-02-10 01:51:39 +0000502 }
Anton Korobeynikovcc6fa882009-06-06 09:36:29 +0000503
504 case ABIArgInfo::Extend:
Daniel Dunbar46327aa2009-02-03 06:17:37 +0000505 case ABIArgInfo::Direct:
Daniel Dunbar1f745982009-02-05 09:16:39 +0000506 ArgTys.push_back(ConvertType(it->type));
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000507 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000508
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000509 case ABIArgInfo::Expand:
Daniel Dunbar88c2fa92009-02-03 05:31:23 +0000510 GetExpandedTypes(it->type, ArgTys);
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000511 break;
512 }
Daniel Dunbar45c25ba2008-09-10 04:01:49 +0000513 }
514
Daniel Dunbarbb36d332009-02-02 21:43:58 +0000515 return llvm::FunctionType::get(ResultType, ArgTys, IsVariadic);
Daniel Dunbar3913f182008-09-09 23:48:28 +0000516}
517
Anders Carlssonecf282b2009-11-24 05:08:52 +0000518const llvm::Type *
Anders Carlsson046c2942010-04-17 20:15:18 +0000519CodeGenTypes::GetFunctionTypeForVTable(const CXXMethodDecl *MD) {
Anders Carlssonecf282b2009-11-24 05:08:52 +0000520 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>();
521
Eli Friedmanc00129a2010-05-30 06:03:20 +0000522 if (!VerifyFuncTypeComplete(FPT))
Anders Carlssonecf282b2009-11-24 05:08:52 +0000523 return GetFunctionType(getFunctionInfo(MD), FPT->isVariadic());
524
525 return llvm::OpaqueType::get(getLLVMContext());
526}
527
Daniel Dunbara0a99e02009-02-02 23:43:58 +0000528void CodeGenModule::ConstructAttributeList(const CGFunctionInfo &FI,
Daniel Dunbar88b53962009-02-02 22:03:45 +0000529 const Decl *TargetDecl,
Daniel Dunbarca6408c2009-09-12 00:59:20 +0000530 AttributeListType &PAL,
531 unsigned &CallingConv) {
Daniel Dunbar5323a4b2008-09-10 00:32:18 +0000532 unsigned FuncAttrs = 0;
Devang Patela2c69122008-09-26 22:53:57 +0000533 unsigned RetAttrs = 0;
Daniel Dunbar5323a4b2008-09-10 00:32:18 +0000534
Daniel Dunbarca6408c2009-09-12 00:59:20 +0000535 CallingConv = FI.getEffectiveCallingConvention();
536
John McCall04a67a62010-02-05 21:31:56 +0000537 if (FI.isNoReturn())
538 FuncAttrs |= llvm::Attribute::NoReturn;
539
Anton Korobeynikov1102f422009-04-04 00:49:24 +0000540 // FIXME: handle sseregparm someday...
Daniel Dunbar5323a4b2008-09-10 00:32:18 +0000541 if (TargetDecl) {
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000542 if (TargetDecl->hasAttr<NoThrowAttr>())
Devang Patel761d7f72008-09-25 21:02:23 +0000543 FuncAttrs |= llvm::Attribute::NoUnwind;
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000544 if (TargetDecl->hasAttr<NoReturnAttr>())
Devang Patel761d7f72008-09-25 21:02:23 +0000545 FuncAttrs |= llvm::Attribute::NoReturn;
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000546 if (TargetDecl->hasAttr<ConstAttr>())
Anders Carlsson232eb7d2008-10-05 23:32:53 +0000547 FuncAttrs |= llvm::Attribute::ReadNone;
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000548 else if (TargetDecl->hasAttr<PureAttr>())
Daniel Dunbar64c2e072009-04-10 22:14:52 +0000549 FuncAttrs |= llvm::Attribute::ReadOnly;
Ryan Flynn76168e22009-08-09 20:07:29 +0000550 if (TargetDecl->hasAttr<MallocAttr>())
551 RetAttrs |= llvm::Attribute::NoAlias;
Daniel Dunbar5323a4b2008-09-10 00:32:18 +0000552 }
553
Chandler Carruth2811ccf2009-11-12 17:24:48 +0000554 if (CodeGenOpts.OptimizeSize)
Daniel Dunbar7ab1c3e2009-10-27 19:48:08 +0000555 FuncAttrs |= llvm::Attribute::OptimizeForSize;
Chandler Carruth2811ccf2009-11-12 17:24:48 +0000556 if (CodeGenOpts.DisableRedZone)
Devang Patel24095da2009-06-04 23:32:02 +0000557 FuncAttrs |= llvm::Attribute::NoRedZone;
Chandler Carruth2811ccf2009-11-12 17:24:48 +0000558 if (CodeGenOpts.NoImplicitFloat)
Devang Patelacebb392009-06-05 22:05:48 +0000559 FuncAttrs |= llvm::Attribute::NoImplicitFloat;
Devang Patel24095da2009-06-04 23:32:02 +0000560
Daniel Dunbara0a99e02009-02-02 23:43:58 +0000561 QualType RetTy = FI.getReturnType();
Daniel Dunbar5323a4b2008-09-10 00:32:18 +0000562 unsigned Index = 1;
Daniel Dunbarb225be42009-02-03 05:59:18 +0000563 const ABIArgInfo &RetAI = FI.getReturnInfo();
Daniel Dunbar45c25ba2008-09-10 04:01:49 +0000564 switch (RetAI.getKind()) {
Anton Korobeynikovcc6fa882009-06-06 09:36:29 +0000565 case ABIArgInfo::Extend:
566 if (RetTy->isSignedIntegerType()) {
567 RetAttrs |= llvm::Attribute::SExt;
568 } else if (RetTy->isUnsignedIntegerType()) {
569 RetAttrs |= llvm::Attribute::ZExt;
570 }
571 // FALLTHROUGH
Daniel Dunbar46327aa2009-02-03 06:17:37 +0000572 case ABIArgInfo::Direct:
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +0000573 break;
574
Daniel Dunbar11e383a2009-02-05 08:00:50 +0000575 case ABIArgInfo::Indirect:
Mike Stump1eb44332009-09-09 15:08:12 +0000576 PAL.push_back(llvm::AttributeWithIndex::get(Index,
Chris Lattnerfb97cf22010-04-20 05:44:43 +0000577 llvm::Attribute::StructRet));
Daniel Dunbar5323a4b2008-09-10 00:32:18 +0000578 ++Index;
Daniel Dunbar0ac86f02009-03-18 19:51:01 +0000579 // sret disables readnone and readonly
580 FuncAttrs &= ~(llvm::Attribute::ReadOnly |
581 llvm::Attribute::ReadNone);
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +0000582 break;
583
Daniel Dunbar11434922009-01-26 21:26:08 +0000584 case ABIArgInfo::Ignore:
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +0000585 case ABIArgInfo::Coerce:
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +0000586 break;
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000587
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000588 case ABIArgInfo::Expand:
Mike Stump1eb44332009-09-09 15:08:12 +0000589 assert(0 && "Invalid ABI kind for return argument");
Daniel Dunbar5323a4b2008-09-10 00:32:18 +0000590 }
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +0000591
Devang Patela2c69122008-09-26 22:53:57 +0000592 if (RetAttrs)
593 PAL.push_back(llvm::AttributeWithIndex::get(0, RetAttrs));
Anton Korobeynikov1102f422009-04-04 00:49:24 +0000594
595 // FIXME: we need to honour command line settings also...
596 // FIXME: RegParm should be reduced in case of nested functions and/or global
597 // register variable.
Rafael Espindola425ef722010-03-30 22:15:11 +0000598 signed RegParm = FI.getRegParm();
Anton Korobeynikov1102f422009-04-04 00:49:24 +0000599
600 unsigned PointerWidth = getContext().Target.getPointerWidth(0);
Mike Stump1eb44332009-09-09 15:08:12 +0000601 for (CGFunctionInfo::const_arg_iterator it = FI.arg_begin(),
Daniel Dunbar88c2fa92009-02-03 05:31:23 +0000602 ie = FI.arg_end(); it != ie; ++it) {
603 QualType ParamType = it->type;
604 const ABIArgInfo &AI = it->info;
Devang Patel761d7f72008-09-25 21:02:23 +0000605 unsigned Attributes = 0;
Anton Korobeynikov1102f422009-04-04 00:49:24 +0000606
John McCalld8e10d22010-03-27 00:47:27 +0000607 // 'restrict' -> 'noalias' is done in EmitFunctionProlog when we
608 // have the corresponding parameter variable. It doesn't make
609 // sense to do it here because parameters are so fucked up.
Nuno Lopes079b4952009-12-07 18:30:06 +0000610
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000611 switch (AI.getKind()) {
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +0000612 case ABIArgInfo::Coerce:
613 break;
614
Daniel Dunbar11e383a2009-02-05 08:00:50 +0000615 case ABIArgInfo::Indirect:
Anders Carlsson0a8f8472009-09-16 15:53:40 +0000616 if (AI.getIndirectByVal())
617 Attributes |= llvm::Attribute::ByVal;
618
Anton Korobeynikov1102f422009-04-04 00:49:24 +0000619 Attributes |=
Daniel Dunbar11e383a2009-02-05 08:00:50 +0000620 llvm::Attribute::constructAlignmentFromInt(AI.getIndirectAlign());
Daniel Dunbar0ac86f02009-03-18 19:51:01 +0000621 // byval disables readnone and readonly.
622 FuncAttrs &= ~(llvm::Attribute::ReadOnly |
623 llvm::Attribute::ReadNone);
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000624 break;
Anton Korobeynikovcc6fa882009-06-06 09:36:29 +0000625
626 case ABIArgInfo::Extend:
627 if (ParamType->isSignedIntegerType()) {
628 Attributes |= llvm::Attribute::SExt;
629 } else if (ParamType->isUnsignedIntegerType()) {
630 Attributes |= llvm::Attribute::ZExt;
631 }
632 // FALLS THROUGH
Daniel Dunbar46327aa2009-02-03 06:17:37 +0000633 case ABIArgInfo::Direct:
Anton Korobeynikov1102f422009-04-04 00:49:24 +0000634 if (RegParm > 0 &&
635 (ParamType->isIntegerType() || ParamType->isPointerType())) {
636 RegParm -=
637 (Context.getTypeSize(ParamType) + PointerWidth - 1) / PointerWidth;
638 if (RegParm >= 0)
639 Attributes |= llvm::Attribute::InReg;
640 }
641 // FIXME: handle sseregparm someday...
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000642 break;
Anton Korobeynikov1102f422009-04-04 00:49:24 +0000643
Daniel Dunbar11434922009-01-26 21:26:08 +0000644 case ABIArgInfo::Ignore:
645 // Skip increment, no matching LLVM parameter.
Mike Stump1eb44332009-09-09 15:08:12 +0000646 continue;
Daniel Dunbar11434922009-01-26 21:26:08 +0000647
Daniel Dunbar56273772008-09-17 00:51:38 +0000648 case ABIArgInfo::Expand: {
Mike Stump1eb44332009-09-09 15:08:12 +0000649 std::vector<const llvm::Type*> Tys;
Mike Stumpf5408fe2009-05-16 07:57:57 +0000650 // FIXME: This is rather inefficient. Do we ever actually need to do
651 // anything here? The result should be just reconstructed on the other
652 // side, so extension should be a non-issue.
Daniel Dunbar56273772008-09-17 00:51:38 +0000653 getTypes().GetExpandedTypes(ParamType, Tys);
654 Index += Tys.size();
655 continue;
656 }
Daniel Dunbar5323a4b2008-09-10 00:32:18 +0000657 }
Mike Stump1eb44332009-09-09 15:08:12 +0000658
Devang Patel761d7f72008-09-25 21:02:23 +0000659 if (Attributes)
660 PAL.push_back(llvm::AttributeWithIndex::get(Index, Attributes));
Daniel Dunbar56273772008-09-17 00:51:38 +0000661 ++Index;
Daniel Dunbar5323a4b2008-09-10 00:32:18 +0000662 }
Devang Patela2c69122008-09-26 22:53:57 +0000663 if (FuncAttrs)
664 PAL.push_back(llvm::AttributeWithIndex::get(~0, FuncAttrs));
Daniel Dunbar5323a4b2008-09-10 00:32:18 +0000665}
666
Daniel Dunbar88b53962009-02-02 22:03:45 +0000667void CodeGenFunction::EmitFunctionProlog(const CGFunctionInfo &FI,
668 llvm::Function *Fn,
Daniel Dunbar17b708d2008-09-09 23:27:19 +0000669 const FunctionArgList &Args) {
John McCall0cfeb632009-07-28 01:00:58 +0000670 // If this is an implicit-return-zero function, go ahead and
671 // initialize the return value. TODO: it might be nice to have
672 // a more general mechanism for this that didn't require synthesized
673 // return statements.
Anders Carlsson89ed31d2009-08-08 23:24:23 +0000674 if (const FunctionDecl* FD = dyn_cast_or_null<FunctionDecl>(CurFuncDecl)) {
John McCall0cfeb632009-07-28 01:00:58 +0000675 if (FD->hasImplicitReturnZero()) {
676 QualType RetTy = FD->getResultType().getUnqualifiedType();
677 const llvm::Type* LLVMTy = CGM.getTypes().ConvertType(RetTy);
Owen Andersonc9c88b42009-07-31 20:28:54 +0000678 llvm::Constant* Zero = llvm::Constant::getNullValue(LLVMTy);
John McCall0cfeb632009-07-28 01:00:58 +0000679 Builder.CreateStore(Zero, ReturnValue);
680 }
681 }
682
Mike Stumpf5408fe2009-05-16 07:57:57 +0000683 // FIXME: We no longer need the types from FunctionArgList; lift up and
684 // simplify.
Daniel Dunbar5251afa2009-02-03 06:02:10 +0000685
Daniel Dunbar17b708d2008-09-09 23:27:19 +0000686 // Emit allocs for param decls. Give the LLVM Argument nodes names.
687 llvm::Function::arg_iterator AI = Fn->arg_begin();
Mike Stump1eb44332009-09-09 15:08:12 +0000688
Daniel Dunbar17b708d2008-09-09 23:27:19 +0000689 // Name the struct return argument.
Daniel Dunbar88b53962009-02-02 22:03:45 +0000690 if (CGM.ReturnTypeUsesSret(FI)) {
Daniel Dunbar17b708d2008-09-09 23:27:19 +0000691 AI->setName("agg.result");
692 ++AI;
693 }
Mike Stump1eb44332009-09-09 15:08:12 +0000694
Daniel Dunbar4b5f0a42009-02-04 21:17:21 +0000695 assert(FI.arg_size() == Args.size() &&
696 "Mismatch between function signature & arguments.");
Daniel Dunbarb225be42009-02-03 05:59:18 +0000697 CGFunctionInfo::const_arg_iterator info_it = FI.arg_begin();
Daniel Dunbar17b708d2008-09-09 23:27:19 +0000698 for (FunctionArgList::const_iterator i = Args.begin(), e = Args.end();
Daniel Dunbarb225be42009-02-03 05:59:18 +0000699 i != e; ++i, ++info_it) {
Daniel Dunbar17b708d2008-09-09 23:27:19 +0000700 const VarDecl *Arg = i->first;
Daniel Dunbarb225be42009-02-03 05:59:18 +0000701 QualType Ty = info_it->type;
702 const ABIArgInfo &ArgI = info_it->info;
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000703
704 switch (ArgI.getKind()) {
Daniel Dunbar1f745982009-02-05 09:16:39 +0000705 case ABIArgInfo::Indirect: {
706 llvm::Value* V = AI;
707 if (hasAggregateLLVMType(Ty)) {
708 // Do nothing, aggregates and complex variables are accessed by
709 // reference.
710 } else {
711 // Load scalar value from indirect argument.
Daniel Dunbaradc8bdd2009-02-10 01:51:39 +0000712 V = EmitLoadOfScalar(V, false, Ty);
Daniel Dunbar1f745982009-02-05 09:16:39 +0000713 if (!getContext().typesAreCompatible(Ty, Arg->getType())) {
714 // This must be a promotion, for something like
715 // "void a(x) short x; {..."
716 V = EmitScalarConversion(V, Ty, Arg->getType());
717 }
718 }
Mike Stump1eb44332009-09-09 15:08:12 +0000719 EmitParmDecl(*Arg, V);
Daniel Dunbar1f745982009-02-05 09:16:39 +0000720 break;
721 }
Anton Korobeynikovcc6fa882009-06-06 09:36:29 +0000722
723 case ABIArgInfo::Extend:
Daniel Dunbar46327aa2009-02-03 06:17:37 +0000724 case ABIArgInfo::Direct: {
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000725 assert(AI != Fn->arg_end() && "Argument mismatch!");
726 llvm::Value* V = AI;
Daniel Dunbar2fbf2f52009-02-05 11:13:54 +0000727 if (hasAggregateLLVMType(Ty)) {
728 // Create a temporary alloca to hold the argument; the rest of
729 // codegen expects to access aggregates & complex values by
730 // reference.
Daniel Dunbar195337d2010-02-09 02:48:28 +0000731 V = CreateMemTemp(Ty);
Daniel Dunbar2fbf2f52009-02-05 11:13:54 +0000732 Builder.CreateStore(AI, V);
733 } else {
John McCalld8e10d22010-03-27 00:47:27 +0000734 if (Arg->getType().isRestrictQualified())
735 AI->addAttr(llvm::Attribute::NoAlias);
736
Daniel Dunbar2fbf2f52009-02-05 11:13:54 +0000737 if (!getContext().typesAreCompatible(Ty, Arg->getType())) {
738 // This must be a promotion, for something like
739 // "void a(x) short x; {..."
740 V = EmitScalarConversion(V, Ty, Arg->getType());
741 }
Daniel Dunbar17b708d2008-09-09 23:27:19 +0000742 }
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000743 EmitParmDecl(*Arg, V);
744 break;
745 }
Mike Stump1eb44332009-09-09 15:08:12 +0000746
Daniel Dunbar56273772008-09-17 00:51:38 +0000747 case ABIArgInfo::Expand: {
Daniel Dunbarb225be42009-02-03 05:59:18 +0000748 // If this structure was expanded into multiple arguments then
Daniel Dunbar56273772008-09-17 00:51:38 +0000749 // we need to create a temporary and reconstruct it from the
750 // arguments.
Daniel Dunbar195337d2010-02-09 02:48:28 +0000751 llvm::Value *Temp = CreateMemTemp(Ty, Arg->getName() + ".addr");
Daniel Dunbar56273772008-09-17 00:51:38 +0000752 // FIXME: What are the right qualifiers here?
Mike Stump1eb44332009-09-09 15:08:12 +0000753 llvm::Function::arg_iterator End =
John McCall0953e762009-09-24 19:53:00 +0000754 ExpandTypeFromArgs(Ty, LValue::MakeAddr(Temp, Qualifiers()), AI);
Daniel Dunbar56273772008-09-17 00:51:38 +0000755 EmitParmDecl(*Arg, Temp);
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000756
Daniel Dunbar56273772008-09-17 00:51:38 +0000757 // Name the arguments used in expansion and increment AI.
758 unsigned Index = 0;
759 for (; AI != End; ++AI, ++Index)
Daniel Dunbar259e9cc2009-10-19 01:21:05 +0000760 AI->setName(Arg->getName() + "." + llvm::Twine(Index));
Daniel Dunbar56273772008-09-17 00:51:38 +0000761 continue;
762 }
Daniel Dunbar11434922009-01-26 21:26:08 +0000763
764 case ABIArgInfo::Ignore:
Daniel Dunbar8b979d92009-02-10 00:06:49 +0000765 // Initialize the local variable appropriately.
Mike Stump1eb44332009-09-09 15:08:12 +0000766 if (hasAggregateLLVMType(Ty)) {
Daniel Dunbar195337d2010-02-09 02:48:28 +0000767 EmitParmDecl(*Arg, CreateMemTemp(Ty));
Daniel Dunbar8b979d92009-02-10 00:06:49 +0000768 } else {
769 EmitParmDecl(*Arg, llvm::UndefValue::get(ConvertType(Arg->getType())));
770 }
Mike Stump1eb44332009-09-09 15:08:12 +0000771
Daniel Dunbar59e5a0e2009-02-03 20:00:13 +0000772 // Skip increment, no matching LLVM parameter.
Mike Stump1eb44332009-09-09 15:08:12 +0000773 continue;
Daniel Dunbar11434922009-01-26 21:26:08 +0000774
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +0000775 case ABIArgInfo::Coerce: {
776 assert(AI != Fn->arg_end() && "Argument mismatch!");
Mike Stumpf5408fe2009-05-16 07:57:57 +0000777 // FIXME: This is very wasteful; EmitParmDecl is just going to drop the
778 // result in a new alloca anyway, so we could just store into that
779 // directly if we broke the abstraction down more.
Daniel Dunbar195337d2010-02-09 02:48:28 +0000780 llvm::Value *V = CreateMemTemp(Ty, "coerce");
Anders Carlssond2490a92009-12-24 20:40:36 +0000781 CreateCoercedStore(AI, V, /*DestIsVolatile=*/false, *this);
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +0000782 // Match to what EmitParmDecl is expecting for this type.
Daniel Dunbar8b29a382009-02-04 07:22:24 +0000783 if (!CodeGenFunction::hasAggregateLLVMType(Ty)) {
Daniel Dunbaradc8bdd2009-02-10 01:51:39 +0000784 V = EmitLoadOfScalar(V, false, Ty);
Daniel Dunbar8b29a382009-02-04 07:22:24 +0000785 if (!getContext().typesAreCompatible(Ty, Arg->getType())) {
786 // This must be a promotion, for something like
787 // "void a(x) short x; {..."
788 V = EmitScalarConversion(V, Ty, Arg->getType());
789 }
790 }
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +0000791 EmitParmDecl(*Arg, V);
792 break;
793 }
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000794 }
Daniel Dunbar56273772008-09-17 00:51:38 +0000795
796 ++AI;
Daniel Dunbar17b708d2008-09-09 23:27:19 +0000797 }
798 assert(AI == Fn->arg_end() && "Argument mismatch!");
799}
800
Daniel Dunbar88b53962009-02-02 22:03:45 +0000801void CodeGenFunction::EmitFunctionEpilog(const CGFunctionInfo &FI,
Daniel Dunbar17b708d2008-09-09 23:27:19 +0000802 llvm::Value *ReturnValue) {
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +0000803 llvm::Value *RV = 0;
804
805 // Functions with no result always return void.
Anton Korobeynikovcc6fa882009-06-06 09:36:29 +0000806 if (ReturnValue) {
Daniel Dunbar88b53962009-02-02 22:03:45 +0000807 QualType RetTy = FI.getReturnType();
Daniel Dunbarb225be42009-02-03 05:59:18 +0000808 const ABIArgInfo &RetAI = FI.getReturnInfo();
Anton Korobeynikovcc6fa882009-06-06 09:36:29 +0000809
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +0000810 switch (RetAI.getKind()) {
Daniel Dunbar11e383a2009-02-05 08:00:50 +0000811 case ABIArgInfo::Indirect:
Daniel Dunbar3aea8ca2008-12-18 04:52:14 +0000812 if (RetTy->isAnyComplexType()) {
Daniel Dunbar3aea8ca2008-12-18 04:52:14 +0000813 ComplexPairTy RT = LoadComplexFromAddr(ReturnValue, false);
814 StoreComplexToAddr(RT, CurFn->arg_begin(), false);
815 } else if (CodeGenFunction::hasAggregateLLVMType(RetTy)) {
Eli Friedmanb17daf92009-12-04 02:43:40 +0000816 // Do nothing; aggregrates get evaluated directly into the destination.
Daniel Dunbar3aea8ca2008-12-18 04:52:14 +0000817 } else {
Anton Korobeynikovcc6fa882009-06-06 09:36:29 +0000818 EmitStoreOfScalar(Builder.CreateLoad(ReturnValue), CurFn->arg_begin(),
Anders Carlssonb4aa4662009-05-19 18:50:41 +0000819 false, RetTy);
Daniel Dunbar3aea8ca2008-12-18 04:52:14 +0000820 }
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +0000821 break;
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000822
Anton Korobeynikovcc6fa882009-06-06 09:36:29 +0000823 case ABIArgInfo::Extend:
Daniel Dunbar46327aa2009-02-03 06:17:37 +0000824 case ABIArgInfo::Direct:
Daniel Dunbar2fbf2f52009-02-05 11:13:54 +0000825 // The internal return value temp always will have
826 // pointer-to-return-type type.
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +0000827 RV = Builder.CreateLoad(ReturnValue);
828 break;
829
Daniel Dunbar11434922009-01-26 21:26:08 +0000830 case ABIArgInfo::Ignore:
831 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000832
Daniel Dunbaradc8bdd2009-02-10 01:51:39 +0000833 case ABIArgInfo::Coerce:
Daniel Dunbar54d1ccb2009-01-27 01:36:03 +0000834 RV = CreateCoercedLoad(ReturnValue, RetAI.getCoerceToType(), *this);
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000835 break;
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000836
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000837 case ABIArgInfo::Expand:
Mike Stump1eb44332009-09-09 15:08:12 +0000838 assert(0 && "Invalid ABI kind for return argument");
Daniel Dunbar17b708d2008-09-09 23:27:19 +0000839 }
840 }
Mike Stump1eb44332009-09-09 15:08:12 +0000841
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +0000842 if (RV) {
843 Builder.CreateRet(RV);
844 } else {
845 Builder.CreateRetVoid();
846 }
Daniel Dunbar17b708d2008-09-09 23:27:19 +0000847}
848
John McCall27360712010-05-26 22:34:26 +0000849RValue CodeGenFunction::EmitDelegateCallArg(const VarDecl *Param) {
850 // StartFunction converted the ABI-lowered parameter(s) into a
851 // local alloca. We need to turn that into an r-value suitable
852 // for EmitCall.
853 llvm::Value *Local = GetAddrOfLocalVar(Param);
854
855 QualType ArgType = Param->getType();
856
857 // For the most part, we just need to load the alloca, except:
858 // 1) aggregate r-values are actually pointers to temporaries, and
859 // 2) references to aggregates are pointers directly to the aggregate.
860 // I don't know why references to non-aggregates are different here.
861 if (const ReferenceType *RefType = ArgType->getAs<ReferenceType>()) {
862 if (hasAggregateLLVMType(RefType->getPointeeType()))
863 return RValue::getAggregate(Local);
864
865 // Locals which are references to scalars are represented
866 // with allocas holding the pointer.
867 return RValue::get(Builder.CreateLoad(Local));
868 }
869
870 if (ArgType->isAnyComplexType())
871 return RValue::getComplex(LoadComplexFromAddr(Local, /*volatile*/ false));
872
873 if (hasAggregateLLVMType(ArgType))
874 return RValue::getAggregate(Local);
875
876 return RValue::get(EmitLoadOfScalar(Local, false, ArgType));
877}
878
Anders Carlsson0139bb92009-04-08 20:47:54 +0000879RValue CodeGenFunction::EmitCallArg(const Expr *E, QualType ArgType) {
Anders Carlsson4029ca72009-05-20 00:24:07 +0000880 if (ArgType->isReferenceType())
Anders Carlsson32f36ba2010-06-26 16:35:32 +0000881 return EmitReferenceBindingToExpr(E, /*InitializedDecl=*/0);
Mike Stump1eb44332009-09-09 15:08:12 +0000882
Anders Carlsson0139bb92009-04-08 20:47:54 +0000883 return EmitAnyExprToTemp(E);
884}
885
Daniel Dunbar88b53962009-02-02 22:03:45 +0000886RValue CodeGenFunction::EmitCall(const CGFunctionInfo &CallInfo,
Mike Stump1eb44332009-09-09 15:08:12 +0000887 llvm::Value *Callee,
Anders Carlssonf3c47c92009-12-24 19:25:24 +0000888 ReturnValueSlot ReturnValue,
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +0000889 const CallArgList &CallArgs,
David Chisnalldd5c98f2010-05-01 11:15:56 +0000890 const Decl *TargetDecl,
David Chisnall4b02afc2010-05-02 13:41:58 +0000891 llvm::Instruction **callOrInvoke) {
Mike Stumpf5408fe2009-05-16 07:57:57 +0000892 // FIXME: We no longer need the types from CallArgs; lift up and simplify.
Daniel Dunbar17b708d2008-09-09 23:27:19 +0000893 llvm::SmallVector<llvm::Value*, 16> Args;
Daniel Dunbar17b708d2008-09-09 23:27:19 +0000894
895 // Handle struct-return functions by passing a pointer to the
896 // location that we would like to return into.
Daniel Dunbarbb36d332009-02-02 21:43:58 +0000897 QualType RetTy = CallInfo.getReturnType();
Daniel Dunbarb225be42009-02-03 05:59:18 +0000898 const ABIArgInfo &RetAI = CallInfo.getReturnInfo();
Mike Stump1eb44332009-09-09 15:08:12 +0000899
900
Chris Lattner5db7ae52009-06-13 00:26:38 +0000901 // If the call returns a temporary with struct return, create a temporary
Anders Carlssond2490a92009-12-24 20:40:36 +0000902 // alloca to hold the result, unless one is given to us.
903 if (CGM.ReturnTypeUsesSret(CallInfo)) {
904 llvm::Value *Value = ReturnValue.getValue();
905 if (!Value)
Daniel Dunbar195337d2010-02-09 02:48:28 +0000906 Value = CreateMemTemp(RetTy);
Anders Carlssond2490a92009-12-24 20:40:36 +0000907 Args.push_back(Value);
908 }
Mike Stump1eb44332009-09-09 15:08:12 +0000909
Daniel Dunbar4b5f0a42009-02-04 21:17:21 +0000910 assert(CallInfo.arg_size() == CallArgs.size() &&
911 "Mismatch between function signature & arguments.");
Daniel Dunbarb225be42009-02-03 05:59:18 +0000912 CGFunctionInfo::const_arg_iterator info_it = CallInfo.arg_begin();
Mike Stump1eb44332009-09-09 15:08:12 +0000913 for (CallArgList::const_iterator I = CallArgs.begin(), E = CallArgs.end();
Daniel Dunbarb225be42009-02-03 05:59:18 +0000914 I != E; ++I, ++info_it) {
915 const ABIArgInfo &ArgInfo = info_it->info;
Daniel Dunbar17b708d2008-09-09 23:27:19 +0000916 RValue RV = I->first;
Daniel Dunbar56273772008-09-17 00:51:38 +0000917
918 switch (ArgInfo.getKind()) {
Daniel Dunbar11e383a2009-02-05 08:00:50 +0000919 case ABIArgInfo::Indirect:
Daniel Dunbar1f745982009-02-05 09:16:39 +0000920 if (RV.isScalar() || RV.isComplex()) {
921 // Make a temporary alloca to pass the argument.
Daniel Dunbar195337d2010-02-09 02:48:28 +0000922 Args.push_back(CreateMemTemp(I->second));
Daniel Dunbar1f745982009-02-05 09:16:39 +0000923 if (RV.isScalar())
Anders Carlssonb4aa4662009-05-19 18:50:41 +0000924 EmitStoreOfScalar(RV.getScalarVal(), Args.back(), false, I->second);
Daniel Dunbar1f745982009-02-05 09:16:39 +0000925 else
Mike Stump1eb44332009-09-09 15:08:12 +0000926 StoreComplexToAddr(RV.getComplexVal(), Args.back(), false);
Daniel Dunbar1f745982009-02-05 09:16:39 +0000927 } else {
928 Args.push_back(RV.getAggregateAddr());
929 }
930 break;
931
Anton Korobeynikovcc6fa882009-06-06 09:36:29 +0000932 case ABIArgInfo::Extend:
Daniel Dunbar46327aa2009-02-03 06:17:37 +0000933 case ABIArgInfo::Direct:
Daniel Dunbar56273772008-09-17 00:51:38 +0000934 if (RV.isScalar()) {
935 Args.push_back(RV.getScalarVal());
936 } else if (RV.isComplex()) {
Daniel Dunbar2fbf2f52009-02-05 11:13:54 +0000937 llvm::Value *Tmp = llvm::UndefValue::get(ConvertType(I->second));
938 Tmp = Builder.CreateInsertValue(Tmp, RV.getComplexVal().first, 0);
939 Tmp = Builder.CreateInsertValue(Tmp, RV.getComplexVal().second, 1);
940 Args.push_back(Tmp);
Daniel Dunbar56273772008-09-17 00:51:38 +0000941 } else {
Daniel Dunbar2fbf2f52009-02-05 11:13:54 +0000942 Args.push_back(Builder.CreateLoad(RV.getAggregateAddr()));
Daniel Dunbar56273772008-09-17 00:51:38 +0000943 }
944 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000945
Daniel Dunbar11434922009-01-26 21:26:08 +0000946 case ABIArgInfo::Ignore:
947 break;
948
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +0000949 case ABIArgInfo::Coerce: {
950 // FIXME: Avoid the conversion through memory if possible.
951 llvm::Value *SrcPtr;
952 if (RV.isScalar()) {
Daniel Dunbar195337d2010-02-09 02:48:28 +0000953 SrcPtr = CreateMemTemp(I->second, "coerce");
Anders Carlssonb4aa4662009-05-19 18:50:41 +0000954 EmitStoreOfScalar(RV.getScalarVal(), SrcPtr, false, I->second);
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +0000955 } else if (RV.isComplex()) {
Daniel Dunbar195337d2010-02-09 02:48:28 +0000956 SrcPtr = CreateMemTemp(I->second, "coerce");
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +0000957 StoreComplexToAddr(RV.getComplexVal(), SrcPtr, false);
Mike Stump1eb44332009-09-09 15:08:12 +0000958 } else
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +0000959 SrcPtr = RV.getAggregateAddr();
Mike Stump1eb44332009-09-09 15:08:12 +0000960 Args.push_back(CreateCoercedLoad(SrcPtr, ArgInfo.getCoerceToType(),
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +0000961 *this));
962 break;
963 }
964
Daniel Dunbar56273772008-09-17 00:51:38 +0000965 case ABIArgInfo::Expand:
966 ExpandTypeToArgs(I->second, RV, Args);
967 break;
Daniel Dunbar17b708d2008-09-09 23:27:19 +0000968 }
969 }
Mike Stump1eb44332009-09-09 15:08:12 +0000970
Chris Lattner5db7ae52009-06-13 00:26:38 +0000971 // If the callee is a bitcast of a function to a varargs pointer to function
972 // type, check to see if we can remove the bitcast. This handles some cases
973 // with unprototyped functions.
974 if (llvm::ConstantExpr *CE = dyn_cast<llvm::ConstantExpr>(Callee))
975 if (llvm::Function *CalleeF = dyn_cast<llvm::Function>(CE->getOperand(0))) {
976 const llvm::PointerType *CurPT=cast<llvm::PointerType>(Callee->getType());
977 const llvm::FunctionType *CurFT =
978 cast<llvm::FunctionType>(CurPT->getElementType());
979 const llvm::FunctionType *ActualFT = CalleeF->getFunctionType();
Mike Stump1eb44332009-09-09 15:08:12 +0000980
Chris Lattner5db7ae52009-06-13 00:26:38 +0000981 if (CE->getOpcode() == llvm::Instruction::BitCast &&
982 ActualFT->getReturnType() == CurFT->getReturnType() &&
Chris Lattnerd6bebbf2009-06-23 01:38:41 +0000983 ActualFT->getNumParams() == CurFT->getNumParams() &&
984 ActualFT->getNumParams() == Args.size()) {
Chris Lattner5db7ae52009-06-13 00:26:38 +0000985 bool ArgsMatch = true;
986 for (unsigned i = 0, e = ActualFT->getNumParams(); i != e; ++i)
987 if (ActualFT->getParamType(i) != CurFT->getParamType(i)) {
988 ArgsMatch = false;
989 break;
990 }
Mike Stump1eb44332009-09-09 15:08:12 +0000991
Chris Lattner5db7ae52009-06-13 00:26:38 +0000992 // Strip the cast if we can get away with it. This is a nice cleanup,
993 // but also allows us to inline the function at -O0 if it is marked
994 // always_inline.
995 if (ArgsMatch)
996 Callee = CalleeF;
997 }
998 }
Mike Stump1eb44332009-09-09 15:08:12 +0000999
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001000
Daniel Dunbar9834ffb2009-02-23 17:26:39 +00001001 llvm::BasicBlock *InvokeDest = getInvokeDest();
Daniel Dunbarca6408c2009-09-12 00:59:20 +00001002 unsigned CallingConv;
Devang Patel761d7f72008-09-25 21:02:23 +00001003 CodeGen::AttributeListType AttributeList;
Daniel Dunbarca6408c2009-09-12 00:59:20 +00001004 CGM.ConstructAttributeList(CallInfo, TargetDecl, AttributeList, CallingConv);
Daniel Dunbar9834ffb2009-02-23 17:26:39 +00001005 llvm::AttrListPtr Attrs = llvm::AttrListPtr::get(AttributeList.begin(),
1006 AttributeList.end());
Mike Stump1eb44332009-09-09 15:08:12 +00001007
Daniel Dunbard14151d2009-03-02 04:32:35 +00001008 llvm::CallSite CS;
1009 if (!InvokeDest || (Attrs.getFnAttributes() & llvm::Attribute::NoUnwind)) {
Jay Foadbeaaccd2009-05-21 09:52:38 +00001010 CS = Builder.CreateCall(Callee, Args.data(), Args.data()+Args.size());
Daniel Dunbar9834ffb2009-02-23 17:26:39 +00001011 } else {
1012 llvm::BasicBlock *Cont = createBasicBlock("invoke.cont");
Mike Stump1eb44332009-09-09 15:08:12 +00001013 CS = Builder.CreateInvoke(Callee, Cont, InvokeDest,
Jay Foadbeaaccd2009-05-21 09:52:38 +00001014 Args.data(), Args.data()+Args.size());
Daniel Dunbar9834ffb2009-02-23 17:26:39 +00001015 EmitBlock(Cont);
Daniel Dunbarf4fe0f02009-02-20 18:54:31 +00001016 }
David Chisnall4b02afc2010-05-02 13:41:58 +00001017 if (callOrInvoke) {
1018 *callOrInvoke = CS.getInstruction();
David Chisnalldd5c98f2010-05-01 11:15:56 +00001019 }
Daniel Dunbarf4fe0f02009-02-20 18:54:31 +00001020
Daniel Dunbard14151d2009-03-02 04:32:35 +00001021 CS.setAttributes(Attrs);
Daniel Dunbarca6408c2009-09-12 00:59:20 +00001022 CS.setCallingConv(static_cast<llvm::CallingConv::ID>(CallingConv));
Daniel Dunbard14151d2009-03-02 04:32:35 +00001023
1024 // If the call doesn't return, finish the basic block and clear the
1025 // insertion point; this allows the rest of IRgen to discard
1026 // unreachable code.
1027 if (CS.doesNotReturn()) {
1028 Builder.CreateUnreachable();
1029 Builder.ClearInsertionPoint();
Mike Stump1eb44332009-09-09 15:08:12 +00001030
Mike Stumpf5408fe2009-05-16 07:57:57 +00001031 // FIXME: For now, emit a dummy basic block because expr emitters in
1032 // generally are not ready to handle emitting expressions at unreachable
1033 // points.
Daniel Dunbard14151d2009-03-02 04:32:35 +00001034 EnsureInsertPoint();
Mike Stump1eb44332009-09-09 15:08:12 +00001035
Daniel Dunbard14151d2009-03-02 04:32:35 +00001036 // Return a reasonable RValue.
1037 return GetUndefRValue(RetTy);
Mike Stump1eb44332009-09-09 15:08:12 +00001038 }
Daniel Dunbard14151d2009-03-02 04:32:35 +00001039
1040 llvm::Instruction *CI = CS.getInstruction();
Benjamin Kramerffbb15e2009-10-05 13:47:21 +00001041 if (Builder.isNamePreserving() && !CI->getType()->isVoidTy())
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001042 CI->setName("call");
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001043
1044 switch (RetAI.getKind()) {
Daniel Dunbar11e383a2009-02-05 08:00:50 +00001045 case ABIArgInfo::Indirect:
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001046 if (RetTy->isAnyComplexType())
Daniel Dunbar56273772008-09-17 00:51:38 +00001047 return RValue::getComplex(LoadComplexFromAddr(Args[0], false));
Chris Lattner34030842009-03-22 00:32:22 +00001048 if (CodeGenFunction::hasAggregateLLVMType(RetTy))
Daniel Dunbar56273772008-09-17 00:51:38 +00001049 return RValue::getAggregate(Args[0]);
Chris Lattner34030842009-03-22 00:32:22 +00001050 return RValue::get(EmitLoadOfScalar(Args[0], false, RetTy));
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001051
Anton Korobeynikovcc6fa882009-06-06 09:36:29 +00001052 case ABIArgInfo::Extend:
Daniel Dunbar46327aa2009-02-03 06:17:37 +00001053 case ABIArgInfo::Direct:
Daniel Dunbar2fbf2f52009-02-05 11:13:54 +00001054 if (RetTy->isAnyComplexType()) {
1055 llvm::Value *Real = Builder.CreateExtractValue(CI, 0);
1056 llvm::Value *Imag = Builder.CreateExtractValue(CI, 1);
1057 return RValue::getComplex(std::make_pair(Real, Imag));
Chris Lattner34030842009-03-22 00:32:22 +00001058 }
1059 if (CodeGenFunction::hasAggregateLLVMType(RetTy)) {
Anders Carlssond2490a92009-12-24 20:40:36 +00001060 llvm::Value *DestPtr = ReturnValue.getValue();
1061 bool DestIsVolatile = ReturnValue.isVolatile();
1062
1063 if (!DestPtr) {
Daniel Dunbar195337d2010-02-09 02:48:28 +00001064 DestPtr = CreateMemTemp(RetTy, "agg.tmp");
Anders Carlssond2490a92009-12-24 20:40:36 +00001065 DestIsVolatile = false;
1066 }
1067 Builder.CreateStore(CI, DestPtr, DestIsVolatile);
1068 return RValue::getAggregate(DestPtr);
Chris Lattner34030842009-03-22 00:32:22 +00001069 }
1070 return RValue::get(CI);
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001071
Daniel Dunbar11434922009-01-26 21:26:08 +00001072 case ABIArgInfo::Ignore:
Daniel Dunbar0bcc5212009-02-03 06:30:17 +00001073 // If we are ignoring an argument that had a result, make sure to
1074 // construct the appropriate return value for our caller.
Daniel Dunbar13e81732009-02-05 07:09:07 +00001075 return GetUndefRValue(RetTy);
Daniel Dunbar11434922009-01-26 21:26:08 +00001076
Daniel Dunbar639ffe42008-09-10 07:04:09 +00001077 case ABIArgInfo::Coerce: {
Anders Carlssond2490a92009-12-24 20:40:36 +00001078 llvm::Value *DestPtr = ReturnValue.getValue();
1079 bool DestIsVolatile = ReturnValue.isVolatile();
1080
1081 if (!DestPtr) {
Daniel Dunbar195337d2010-02-09 02:48:28 +00001082 DestPtr = CreateMemTemp(RetTy, "coerce");
Anders Carlssond2490a92009-12-24 20:40:36 +00001083 DestIsVolatile = false;
1084 }
1085
1086 CreateCoercedStore(CI, DestPtr, DestIsVolatile, *this);
Anders Carlssonad3d6912008-11-25 22:21:48 +00001087 if (RetTy->isAnyComplexType())
Anders Carlssond2490a92009-12-24 20:40:36 +00001088 return RValue::getComplex(LoadComplexFromAddr(DestPtr, false));
Chris Lattner34030842009-03-22 00:32:22 +00001089 if (CodeGenFunction::hasAggregateLLVMType(RetTy))
Anders Carlssond2490a92009-12-24 20:40:36 +00001090 return RValue::getAggregate(DestPtr);
1091 return RValue::get(EmitLoadOfScalar(DestPtr, false, RetTy));
Daniel Dunbar639ffe42008-09-10 07:04:09 +00001092 }
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001093
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001094 case ABIArgInfo::Expand:
Mike Stump1eb44332009-09-09 15:08:12 +00001095 assert(0 && "Invalid ABI kind for return argument");
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001096 }
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001097
1098 assert(0 && "Unhandled ABIArgInfo::Kind");
1099 return RValue::get(0);
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001100}
Daniel Dunbarb4094ea2009-02-10 20:44:09 +00001101
1102/* VarArg handling */
1103
1104llvm::Value *CodeGenFunction::EmitVAArg(llvm::Value *VAListAddr, QualType Ty) {
1105 return CGM.getTypes().getABIInfo().EmitVAArg(VAListAddr, Ty, *this);
1106}