blob: 7ec5e303dcd1d2b755bb167822efff38ce5bc4b7 [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
Chris Lattner08dd2a02010-06-27 05:56:15 +0000348/// EnterStructPointerForCoercedLoad - Given a pointer to a struct where we are
349/// accessing some number of bytes out of it, try to gep into the struct to get
350/// at its inner goodness. Dive as deep as possible without entering an element
351/// with an in-memory size smaller than DstSize.
352static llvm::Value *
353EnterStructPointerForCoercedLoad(llvm::Value *SrcPtr,
354 const llvm::StructType *SrcSTy,
355 uint64_t DstSize, CodeGenFunction &CGF) {
356 // We can't dive into a zero-element struct.
357 if (SrcSTy->getNumElements() == 0) return SrcPtr;
358
359 const llvm::Type *FirstElt = SrcSTy->getElementType(0);
360
361 // If the first elt is at least as large as what we're looking for, or if the
362 // first element is the same size as the whole struct, we can enter it.
363 uint64_t FirstEltSize =
364 CGF.CGM.getTargetData().getTypeAllocSize(FirstElt);
365 if (FirstEltSize < DstSize &&
366 FirstEltSize < CGF.CGM.getTargetData().getTypeAllocSize(SrcSTy))
367 return SrcPtr;
368
369 // GEP into the first element.
370 SrcPtr = CGF.Builder.CreateConstGEP2_32(SrcPtr, 0, 0, "coerce.dive");
371
372 // If the first element is a struct, recurse.
373 const llvm::Type *SrcTy =
374 cast<llvm::PointerType>(SrcPtr->getType())->getElementType();
375 if (const llvm::StructType *SrcSTy = dyn_cast<llvm::StructType>(SrcTy))
376 return EnterStructPointerForCoercedLoad(SrcPtr, SrcSTy, DstSize, CGF);
377
378 return SrcPtr;
379}
380
381
382
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000383/// CreateCoercedLoad - Create a load from \arg SrcPtr interpreted as
384/// a pointer to an object of type \arg Ty.
385///
386/// This safely handles the case when the src type is smaller than the
387/// destination type; in this situation the values of bits which not
388/// present in the src are undefined.
389static llvm::Value *CreateCoercedLoad(llvm::Value *SrcPtr,
390 const llvm::Type *Ty,
391 CodeGenFunction &CGF) {
Mike Stump1eb44332009-09-09 15:08:12 +0000392 const llvm::Type *SrcTy =
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000393 cast<llvm::PointerType>(SrcPtr->getType())->getElementType();
Duncan Sands9408c452009-05-09 07:08:47 +0000394 uint64_t DstSize = CGF.CGM.getTargetData().getTypeAllocSize(Ty);
Chris Lattner08dd2a02010-06-27 05:56:15 +0000395
396 if (const llvm::StructType *SrcSTy = dyn_cast<llvm::StructType>(SrcTy)) {
397 SrcPtr = EnterStructPointerForCoercedLoad(SrcPtr, SrcSTy, DstSize, CGF);
398 SrcTy = cast<llvm::PointerType>(SrcPtr->getType())->getElementType();
399 }
400
401 uint64_t SrcSize = CGF.CGM.getTargetData().getTypeAllocSize(SrcTy);
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000402
Daniel Dunbarb225be42009-02-03 05:59:18 +0000403 // If load is legal, just bitcast the src pointer.
Daniel Dunbar7ef455b2009-05-13 18:54:26 +0000404 if (SrcSize >= DstSize) {
Mike Stumpf5408fe2009-05-16 07:57:57 +0000405 // Generally SrcSize is never greater than DstSize, since this means we are
406 // losing bits. However, this can happen in cases where the structure has
407 // additional padding, for example due to a user specified alignment.
Daniel Dunbar7ef455b2009-05-13 18:54:26 +0000408 //
Mike Stumpf5408fe2009-05-16 07:57:57 +0000409 // FIXME: Assert that we aren't truncating non-padding bits when have access
410 // to that information.
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000411 llvm::Value *Casted =
412 CGF.Builder.CreateBitCast(SrcPtr, llvm::PointerType::getUnqual(Ty));
Daniel Dunbar386621f2009-02-07 02:46:03 +0000413 llvm::LoadInst *Load = CGF.Builder.CreateLoad(Casted);
414 // FIXME: Use better alignment / avoid requiring aligned load.
415 Load->setAlignment(1);
416 return Load;
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000417 }
Chris Lattner35b21b82010-06-27 01:06:27 +0000418
419 // Otherwise do coercion through memory. This is stupid, but
420 // simple.
421 llvm::Value *Tmp = CGF.CreateTempAlloca(Ty);
422 llvm::Value *Casted =
423 CGF.Builder.CreateBitCast(Tmp, llvm::PointerType::getUnqual(SrcTy));
424 llvm::StoreInst *Store =
425 CGF.Builder.CreateStore(CGF.Builder.CreateLoad(SrcPtr), Casted);
426 // FIXME: Use better alignment / avoid requiring aligned store.
427 Store->setAlignment(1);
428 return CGF.Builder.CreateLoad(Tmp);
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000429}
430
431/// CreateCoercedStore - Create a store to \arg DstPtr from \arg Src,
432/// where the source and destination may have different types.
433///
434/// This safely handles the case when the src type is larger than the
435/// destination type; the upper bits of the src will be lost.
436static void CreateCoercedStore(llvm::Value *Src,
437 llvm::Value *DstPtr,
Anders Carlssond2490a92009-12-24 20:40:36 +0000438 bool DstIsVolatile,
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000439 CodeGenFunction &CGF) {
440 const llvm::Type *SrcTy = Src->getType();
Mike Stump1eb44332009-09-09 15:08:12 +0000441 const llvm::Type *DstTy =
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000442 cast<llvm::PointerType>(DstPtr->getType())->getElementType();
443
Duncan Sands9408c452009-05-09 07:08:47 +0000444 uint64_t SrcSize = CGF.CGM.getTargetData().getTypeAllocSize(SrcTy);
445 uint64_t DstSize = CGF.CGM.getTargetData().getTypeAllocSize(DstTy);
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000446
Daniel Dunbar88c2fa92009-02-03 05:31:23 +0000447 // If store is legal, just bitcast the src pointer.
Daniel Dunbarfdf49862009-06-05 07:58:54 +0000448 if (SrcSize <= DstSize) {
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000449 llvm::Value *Casted =
450 CGF.Builder.CreateBitCast(DstPtr, llvm::PointerType::getUnqual(SrcTy));
Daniel Dunbar386621f2009-02-07 02:46:03 +0000451 // FIXME: Use better alignment / avoid requiring aligned store.
Anders Carlssond2490a92009-12-24 20:40:36 +0000452 CGF.Builder.CreateStore(Src, Casted, DstIsVolatile)->setAlignment(1);
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000453 } else {
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000454 // Otherwise do coercion through memory. This is stupid, but
455 // simple.
Daniel Dunbarfdf49862009-06-05 07:58:54 +0000456
457 // Generally SrcSize is never greater than DstSize, since this means we are
458 // losing bits. However, this can happen in cases where the structure has
459 // additional padding, for example due to a user specified alignment.
460 //
461 // FIXME: Assert that we aren't truncating non-padding bits when have access
462 // to that information.
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000463 llvm::Value *Tmp = CGF.CreateTempAlloca(SrcTy);
464 CGF.Builder.CreateStore(Src, Tmp);
Mike Stump1eb44332009-09-09 15:08:12 +0000465 llvm::Value *Casted =
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000466 CGF.Builder.CreateBitCast(Tmp, llvm::PointerType::getUnqual(DstTy));
Daniel Dunbar386621f2009-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);
Anders Carlssond2490a92009-12-24 20:40:36 +0000470 CGF.Builder.CreateStore(Load, DstPtr, DstIsVolatile);
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000471 }
472}
473
Daniel Dunbar56273772008-09-17 00:51:38 +0000474/***/
475
Daniel Dunbar88b53962009-02-02 22:03:45 +0000476bool CodeGenModule::ReturnTypeUsesSret(const CGFunctionInfo &FI) {
Daniel Dunbar11e383a2009-02-05 08:00:50 +0000477 return FI.getReturnInfo().isIndirect();
Daniel Dunbarbb36d332009-02-02 21:43:58 +0000478}
479
John McCallc0bf4622010-02-23 00:48:20 +0000480const llvm::FunctionType *CodeGenTypes::GetFunctionType(GlobalDecl GD) {
481 const CGFunctionInfo &FI = getFunctionInfo(GD);
482
483 // For definition purposes, don't consider a K&R function variadic.
484 bool Variadic = false;
485 if (const FunctionProtoType *FPT =
486 cast<FunctionDecl>(GD.getDecl())->getType()->getAs<FunctionProtoType>())
487 Variadic = FPT->isVariadic();
488
489 return GetFunctionType(FI, Variadic);
490}
491
Daniel Dunbar45c25ba2008-09-10 04:01:49 +0000492const llvm::FunctionType *
Daniel Dunbarbb36d332009-02-02 21:43:58 +0000493CodeGenTypes::GetFunctionType(const CGFunctionInfo &FI, bool IsVariadic) {
Daniel Dunbar45c25ba2008-09-10 04:01:49 +0000494 std::vector<const llvm::Type*> ArgTys;
495
496 const llvm::Type *ResultType = 0;
497
Daniel Dunbara0a99e02009-02-02 23:43:58 +0000498 QualType RetTy = FI.getReturnType();
Daniel Dunbarb225be42009-02-03 05:59:18 +0000499 const ABIArgInfo &RetAI = FI.getReturnInfo();
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000500 switch (RetAI.getKind()) {
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000501 case ABIArgInfo::Expand:
502 assert(0 && "Invalid ABI kind for return argument");
503
Anton Korobeynikovcc6fa882009-06-06 09:36:29 +0000504 case ABIArgInfo::Extend:
Daniel Dunbar46327aa2009-02-03 06:17:37 +0000505 case ABIArgInfo::Direct:
506 ResultType = ConvertType(RetTy);
507 break;
508
Daniel Dunbar11e383a2009-02-05 08:00:50 +0000509 case ABIArgInfo::Indirect: {
510 assert(!RetAI.getIndirectAlign() && "Align unused on indirect return.");
Owen Anderson0032b272009-08-13 21:57:51 +0000511 ResultType = llvm::Type::getVoidTy(getLLVMContext());
Daniel Dunbar62d5c1b2008-09-10 07:00:50 +0000512 const llvm::Type *STy = ConvertType(RetTy);
Daniel Dunbar45c25ba2008-09-10 04:01:49 +0000513 ArgTys.push_back(llvm::PointerType::get(STy, RetTy.getAddressSpace()));
514 break;
515 }
516
Daniel Dunbar11434922009-01-26 21:26:08 +0000517 case ABIArgInfo::Ignore:
Owen Anderson0032b272009-08-13 21:57:51 +0000518 ResultType = llvm::Type::getVoidTy(getLLVMContext());
Daniel Dunbar11434922009-01-26 21:26:08 +0000519 break;
520
Daniel Dunbar45c25ba2008-09-10 04:01:49 +0000521 case ABIArgInfo::Coerce:
Daniel Dunbar639ffe42008-09-10 07:04:09 +0000522 ResultType = RetAI.getCoerceToType();
Daniel Dunbar45c25ba2008-09-10 04:01:49 +0000523 break;
524 }
Mike Stump1eb44332009-09-09 15:08:12 +0000525
526 for (CGFunctionInfo::const_arg_iterator it = FI.arg_begin(),
Daniel Dunbar88c2fa92009-02-03 05:31:23 +0000527 ie = FI.arg_end(); it != ie; ++it) {
528 const ABIArgInfo &AI = it->info;
Mike Stump1eb44332009-09-09 15:08:12 +0000529
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000530 switch (AI.getKind()) {
Daniel Dunbar11434922009-01-26 21:26:08 +0000531 case ABIArgInfo::Ignore:
532 break;
533
Daniel Dunbar56273772008-09-17 00:51:38 +0000534 case ABIArgInfo::Coerce:
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +0000535 ArgTys.push_back(AI.getCoerceToType());
536 break;
537
Daniel Dunbaradc8bdd2009-02-10 01:51:39 +0000538 case ABIArgInfo::Indirect: {
Daniel Dunbar11e383a2009-02-05 08:00:50 +0000539 // indirect arguments are always on the stack, which is addr space #0.
Daniel Dunbaradc8bdd2009-02-10 01:51:39 +0000540 const llvm::Type *LTy = ConvertTypeForMem(it->type);
541 ArgTys.push_back(llvm::PointerType::getUnqual(LTy));
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000542 break;
Daniel Dunbaradc8bdd2009-02-10 01:51:39 +0000543 }
Anton Korobeynikovcc6fa882009-06-06 09:36:29 +0000544
545 case ABIArgInfo::Extend:
Daniel Dunbar46327aa2009-02-03 06:17:37 +0000546 case ABIArgInfo::Direct:
Daniel Dunbar1f745982009-02-05 09:16:39 +0000547 ArgTys.push_back(ConvertType(it->type));
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000548 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000549
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000550 case ABIArgInfo::Expand:
Daniel Dunbar88c2fa92009-02-03 05:31:23 +0000551 GetExpandedTypes(it->type, ArgTys);
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000552 break;
553 }
Daniel Dunbar45c25ba2008-09-10 04:01:49 +0000554 }
555
Daniel Dunbarbb36d332009-02-02 21:43:58 +0000556 return llvm::FunctionType::get(ResultType, ArgTys, IsVariadic);
Daniel Dunbar3913f182008-09-09 23:48:28 +0000557}
558
Anders Carlssonecf282b2009-11-24 05:08:52 +0000559const llvm::Type *
Anders Carlsson046c2942010-04-17 20:15:18 +0000560CodeGenTypes::GetFunctionTypeForVTable(const CXXMethodDecl *MD) {
Anders Carlssonecf282b2009-11-24 05:08:52 +0000561 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>();
562
Eli Friedmanc00129a2010-05-30 06:03:20 +0000563 if (!VerifyFuncTypeComplete(FPT))
Anders Carlssonecf282b2009-11-24 05:08:52 +0000564 return GetFunctionType(getFunctionInfo(MD), FPT->isVariadic());
565
566 return llvm::OpaqueType::get(getLLVMContext());
567}
568
Daniel Dunbara0a99e02009-02-02 23:43:58 +0000569void CodeGenModule::ConstructAttributeList(const CGFunctionInfo &FI,
Daniel Dunbar88b53962009-02-02 22:03:45 +0000570 const Decl *TargetDecl,
Daniel Dunbarca6408c2009-09-12 00:59:20 +0000571 AttributeListType &PAL,
572 unsigned &CallingConv) {
Daniel Dunbar5323a4b2008-09-10 00:32:18 +0000573 unsigned FuncAttrs = 0;
Devang Patela2c69122008-09-26 22:53:57 +0000574 unsigned RetAttrs = 0;
Daniel Dunbar5323a4b2008-09-10 00:32:18 +0000575
Daniel Dunbarca6408c2009-09-12 00:59:20 +0000576 CallingConv = FI.getEffectiveCallingConvention();
577
John McCall04a67a62010-02-05 21:31:56 +0000578 if (FI.isNoReturn())
579 FuncAttrs |= llvm::Attribute::NoReturn;
580
Anton Korobeynikov1102f422009-04-04 00:49:24 +0000581 // FIXME: handle sseregparm someday...
Daniel Dunbar5323a4b2008-09-10 00:32:18 +0000582 if (TargetDecl) {
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000583 if (TargetDecl->hasAttr<NoThrowAttr>())
Devang Patel761d7f72008-09-25 21:02:23 +0000584 FuncAttrs |= llvm::Attribute::NoUnwind;
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000585 if (TargetDecl->hasAttr<NoReturnAttr>())
Devang Patel761d7f72008-09-25 21:02:23 +0000586 FuncAttrs |= llvm::Attribute::NoReturn;
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000587 if (TargetDecl->hasAttr<ConstAttr>())
Anders Carlsson232eb7d2008-10-05 23:32:53 +0000588 FuncAttrs |= llvm::Attribute::ReadNone;
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000589 else if (TargetDecl->hasAttr<PureAttr>())
Daniel Dunbar64c2e072009-04-10 22:14:52 +0000590 FuncAttrs |= llvm::Attribute::ReadOnly;
Ryan Flynn76168e22009-08-09 20:07:29 +0000591 if (TargetDecl->hasAttr<MallocAttr>())
592 RetAttrs |= llvm::Attribute::NoAlias;
Daniel Dunbar5323a4b2008-09-10 00:32:18 +0000593 }
594
Chandler Carruth2811ccf2009-11-12 17:24:48 +0000595 if (CodeGenOpts.OptimizeSize)
Daniel Dunbar7ab1c3e2009-10-27 19:48:08 +0000596 FuncAttrs |= llvm::Attribute::OptimizeForSize;
Chandler Carruth2811ccf2009-11-12 17:24:48 +0000597 if (CodeGenOpts.DisableRedZone)
Devang Patel24095da2009-06-04 23:32:02 +0000598 FuncAttrs |= llvm::Attribute::NoRedZone;
Chandler Carruth2811ccf2009-11-12 17:24:48 +0000599 if (CodeGenOpts.NoImplicitFloat)
Devang Patelacebb392009-06-05 22:05:48 +0000600 FuncAttrs |= llvm::Attribute::NoImplicitFloat;
Devang Patel24095da2009-06-04 23:32:02 +0000601
Daniel Dunbara0a99e02009-02-02 23:43:58 +0000602 QualType RetTy = FI.getReturnType();
Daniel Dunbar5323a4b2008-09-10 00:32:18 +0000603 unsigned Index = 1;
Daniel Dunbarb225be42009-02-03 05:59:18 +0000604 const ABIArgInfo &RetAI = FI.getReturnInfo();
Daniel Dunbar45c25ba2008-09-10 04:01:49 +0000605 switch (RetAI.getKind()) {
Anton Korobeynikovcc6fa882009-06-06 09:36:29 +0000606 case ABIArgInfo::Extend:
607 if (RetTy->isSignedIntegerType()) {
608 RetAttrs |= llvm::Attribute::SExt;
609 } else if (RetTy->isUnsignedIntegerType()) {
610 RetAttrs |= llvm::Attribute::ZExt;
611 }
612 // FALLTHROUGH
Daniel Dunbar46327aa2009-02-03 06:17:37 +0000613 case ABIArgInfo::Direct:
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +0000614 break;
615
Daniel Dunbar11e383a2009-02-05 08:00:50 +0000616 case ABIArgInfo::Indirect:
Mike Stump1eb44332009-09-09 15:08:12 +0000617 PAL.push_back(llvm::AttributeWithIndex::get(Index,
Chris Lattnerfb97cf22010-04-20 05:44:43 +0000618 llvm::Attribute::StructRet));
Daniel Dunbar5323a4b2008-09-10 00:32:18 +0000619 ++Index;
Daniel Dunbar0ac86f02009-03-18 19:51:01 +0000620 // sret disables readnone and readonly
621 FuncAttrs &= ~(llvm::Attribute::ReadOnly |
622 llvm::Attribute::ReadNone);
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +0000623 break;
624
Daniel Dunbar11434922009-01-26 21:26:08 +0000625 case ABIArgInfo::Ignore:
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +0000626 case ABIArgInfo::Coerce:
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +0000627 break;
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000628
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000629 case ABIArgInfo::Expand:
Mike Stump1eb44332009-09-09 15:08:12 +0000630 assert(0 && "Invalid ABI kind for return argument");
Daniel Dunbar5323a4b2008-09-10 00:32:18 +0000631 }
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +0000632
Devang Patela2c69122008-09-26 22:53:57 +0000633 if (RetAttrs)
634 PAL.push_back(llvm::AttributeWithIndex::get(0, RetAttrs));
Anton Korobeynikov1102f422009-04-04 00:49:24 +0000635
636 // FIXME: we need to honour command line settings also...
637 // FIXME: RegParm should be reduced in case of nested functions and/or global
638 // register variable.
Rafael Espindola425ef722010-03-30 22:15:11 +0000639 signed RegParm = FI.getRegParm();
Anton Korobeynikov1102f422009-04-04 00:49:24 +0000640
641 unsigned PointerWidth = getContext().Target.getPointerWidth(0);
Mike Stump1eb44332009-09-09 15:08:12 +0000642 for (CGFunctionInfo::const_arg_iterator it = FI.arg_begin(),
Daniel Dunbar88c2fa92009-02-03 05:31:23 +0000643 ie = FI.arg_end(); it != ie; ++it) {
644 QualType ParamType = it->type;
645 const ABIArgInfo &AI = it->info;
Devang Patel761d7f72008-09-25 21:02:23 +0000646 unsigned Attributes = 0;
Anton Korobeynikov1102f422009-04-04 00:49:24 +0000647
John McCalld8e10d22010-03-27 00:47:27 +0000648 // 'restrict' -> 'noalias' is done in EmitFunctionProlog when we
649 // have the corresponding parameter variable. It doesn't make
650 // sense to do it here because parameters are so fucked up.
Nuno Lopes079b4952009-12-07 18:30:06 +0000651
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000652 switch (AI.getKind()) {
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +0000653 case ABIArgInfo::Coerce:
654 break;
655
Daniel Dunbar11e383a2009-02-05 08:00:50 +0000656 case ABIArgInfo::Indirect:
Anders Carlsson0a8f8472009-09-16 15:53:40 +0000657 if (AI.getIndirectByVal())
658 Attributes |= llvm::Attribute::ByVal;
659
Anton Korobeynikov1102f422009-04-04 00:49:24 +0000660 Attributes |=
Daniel Dunbar11e383a2009-02-05 08:00:50 +0000661 llvm::Attribute::constructAlignmentFromInt(AI.getIndirectAlign());
Daniel Dunbar0ac86f02009-03-18 19:51:01 +0000662 // byval disables readnone and readonly.
663 FuncAttrs &= ~(llvm::Attribute::ReadOnly |
664 llvm::Attribute::ReadNone);
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000665 break;
Anton Korobeynikovcc6fa882009-06-06 09:36:29 +0000666
667 case ABIArgInfo::Extend:
668 if (ParamType->isSignedIntegerType()) {
669 Attributes |= llvm::Attribute::SExt;
670 } else if (ParamType->isUnsignedIntegerType()) {
671 Attributes |= llvm::Attribute::ZExt;
672 }
673 // FALLS THROUGH
Daniel Dunbar46327aa2009-02-03 06:17:37 +0000674 case ABIArgInfo::Direct:
Anton Korobeynikov1102f422009-04-04 00:49:24 +0000675 if (RegParm > 0 &&
676 (ParamType->isIntegerType() || ParamType->isPointerType())) {
677 RegParm -=
678 (Context.getTypeSize(ParamType) + PointerWidth - 1) / PointerWidth;
679 if (RegParm >= 0)
680 Attributes |= llvm::Attribute::InReg;
681 }
682 // FIXME: handle sseregparm someday...
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000683 break;
Anton Korobeynikov1102f422009-04-04 00:49:24 +0000684
Daniel Dunbar11434922009-01-26 21:26:08 +0000685 case ABIArgInfo::Ignore:
686 // Skip increment, no matching LLVM parameter.
Mike Stump1eb44332009-09-09 15:08:12 +0000687 continue;
Daniel Dunbar11434922009-01-26 21:26:08 +0000688
Daniel Dunbar56273772008-09-17 00:51:38 +0000689 case ABIArgInfo::Expand: {
Mike Stump1eb44332009-09-09 15:08:12 +0000690 std::vector<const llvm::Type*> Tys;
Mike Stumpf5408fe2009-05-16 07:57:57 +0000691 // FIXME: This is rather inefficient. Do we ever actually need to do
692 // anything here? The result should be just reconstructed on the other
693 // side, so extension should be a non-issue.
Daniel Dunbar56273772008-09-17 00:51:38 +0000694 getTypes().GetExpandedTypes(ParamType, Tys);
695 Index += Tys.size();
696 continue;
697 }
Daniel Dunbar5323a4b2008-09-10 00:32:18 +0000698 }
Mike Stump1eb44332009-09-09 15:08:12 +0000699
Devang Patel761d7f72008-09-25 21:02:23 +0000700 if (Attributes)
701 PAL.push_back(llvm::AttributeWithIndex::get(Index, Attributes));
Daniel Dunbar56273772008-09-17 00:51:38 +0000702 ++Index;
Daniel Dunbar5323a4b2008-09-10 00:32:18 +0000703 }
Devang Patela2c69122008-09-26 22:53:57 +0000704 if (FuncAttrs)
705 PAL.push_back(llvm::AttributeWithIndex::get(~0, FuncAttrs));
Daniel Dunbar5323a4b2008-09-10 00:32:18 +0000706}
707
Daniel Dunbar88b53962009-02-02 22:03:45 +0000708void CodeGenFunction::EmitFunctionProlog(const CGFunctionInfo &FI,
709 llvm::Function *Fn,
Daniel Dunbar17b708d2008-09-09 23:27:19 +0000710 const FunctionArgList &Args) {
John McCall0cfeb632009-07-28 01:00:58 +0000711 // If this is an implicit-return-zero function, go ahead and
712 // initialize the return value. TODO: it might be nice to have
713 // a more general mechanism for this that didn't require synthesized
714 // return statements.
Anders Carlsson89ed31d2009-08-08 23:24:23 +0000715 if (const FunctionDecl* FD = dyn_cast_or_null<FunctionDecl>(CurFuncDecl)) {
John McCall0cfeb632009-07-28 01:00:58 +0000716 if (FD->hasImplicitReturnZero()) {
717 QualType RetTy = FD->getResultType().getUnqualifiedType();
718 const llvm::Type* LLVMTy = CGM.getTypes().ConvertType(RetTy);
Owen Andersonc9c88b42009-07-31 20:28:54 +0000719 llvm::Constant* Zero = llvm::Constant::getNullValue(LLVMTy);
John McCall0cfeb632009-07-28 01:00:58 +0000720 Builder.CreateStore(Zero, ReturnValue);
721 }
722 }
723
Mike Stumpf5408fe2009-05-16 07:57:57 +0000724 // FIXME: We no longer need the types from FunctionArgList; lift up and
725 // simplify.
Daniel Dunbar5251afa2009-02-03 06:02:10 +0000726
Daniel Dunbar17b708d2008-09-09 23:27:19 +0000727 // Emit allocs for param decls. Give the LLVM Argument nodes names.
728 llvm::Function::arg_iterator AI = Fn->arg_begin();
Mike Stump1eb44332009-09-09 15:08:12 +0000729
Daniel Dunbar17b708d2008-09-09 23:27:19 +0000730 // Name the struct return argument.
Daniel Dunbar88b53962009-02-02 22:03:45 +0000731 if (CGM.ReturnTypeUsesSret(FI)) {
Daniel Dunbar17b708d2008-09-09 23:27:19 +0000732 AI->setName("agg.result");
733 ++AI;
734 }
Mike Stump1eb44332009-09-09 15:08:12 +0000735
Daniel Dunbar4b5f0a42009-02-04 21:17:21 +0000736 assert(FI.arg_size() == Args.size() &&
737 "Mismatch between function signature & arguments.");
Daniel Dunbarb225be42009-02-03 05:59:18 +0000738 CGFunctionInfo::const_arg_iterator info_it = FI.arg_begin();
Daniel Dunbar17b708d2008-09-09 23:27:19 +0000739 for (FunctionArgList::const_iterator i = Args.begin(), e = Args.end();
Daniel Dunbarb225be42009-02-03 05:59:18 +0000740 i != e; ++i, ++info_it) {
Daniel Dunbar17b708d2008-09-09 23:27:19 +0000741 const VarDecl *Arg = i->first;
Daniel Dunbarb225be42009-02-03 05:59:18 +0000742 QualType Ty = info_it->type;
743 const ABIArgInfo &ArgI = info_it->info;
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000744
745 switch (ArgI.getKind()) {
Daniel Dunbar1f745982009-02-05 09:16:39 +0000746 case ABIArgInfo::Indirect: {
747 llvm::Value* V = AI;
748 if (hasAggregateLLVMType(Ty)) {
749 // Do nothing, aggregates and complex variables are accessed by
750 // reference.
751 } else {
752 // Load scalar value from indirect argument.
Daniel Dunbaradc8bdd2009-02-10 01:51:39 +0000753 V = EmitLoadOfScalar(V, false, Ty);
Daniel Dunbar1f745982009-02-05 09:16:39 +0000754 if (!getContext().typesAreCompatible(Ty, Arg->getType())) {
755 // This must be a promotion, for something like
756 // "void a(x) short x; {..."
757 V = EmitScalarConversion(V, Ty, Arg->getType());
758 }
759 }
Mike Stump1eb44332009-09-09 15:08:12 +0000760 EmitParmDecl(*Arg, V);
Daniel Dunbar1f745982009-02-05 09:16:39 +0000761 break;
762 }
Anton Korobeynikovcc6fa882009-06-06 09:36:29 +0000763
764 case ABIArgInfo::Extend:
Daniel Dunbar46327aa2009-02-03 06:17:37 +0000765 case ABIArgInfo::Direct: {
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000766 assert(AI != Fn->arg_end() && "Argument mismatch!");
767 llvm::Value* V = AI;
Daniel Dunbar2fbf2f52009-02-05 11:13:54 +0000768 if (hasAggregateLLVMType(Ty)) {
769 // Create a temporary alloca to hold the argument; the rest of
770 // codegen expects to access aggregates & complex values by
771 // reference.
Daniel Dunbar195337d2010-02-09 02:48:28 +0000772 V = CreateMemTemp(Ty);
Daniel Dunbar2fbf2f52009-02-05 11:13:54 +0000773 Builder.CreateStore(AI, V);
774 } else {
John McCalld8e10d22010-03-27 00:47:27 +0000775 if (Arg->getType().isRestrictQualified())
776 AI->addAttr(llvm::Attribute::NoAlias);
777
Daniel Dunbar2fbf2f52009-02-05 11:13:54 +0000778 if (!getContext().typesAreCompatible(Ty, Arg->getType())) {
779 // This must be a promotion, for something like
780 // "void a(x) short x; {..."
781 V = EmitScalarConversion(V, Ty, Arg->getType());
782 }
Daniel Dunbar17b708d2008-09-09 23:27:19 +0000783 }
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000784 EmitParmDecl(*Arg, V);
785 break;
786 }
Mike Stump1eb44332009-09-09 15:08:12 +0000787
Daniel Dunbar56273772008-09-17 00:51:38 +0000788 case ABIArgInfo::Expand: {
Daniel Dunbarb225be42009-02-03 05:59:18 +0000789 // If this structure was expanded into multiple arguments then
Daniel Dunbar56273772008-09-17 00:51:38 +0000790 // we need to create a temporary and reconstruct it from the
791 // arguments.
Daniel Dunbar195337d2010-02-09 02:48:28 +0000792 llvm::Value *Temp = CreateMemTemp(Ty, Arg->getName() + ".addr");
Daniel Dunbar56273772008-09-17 00:51:38 +0000793 // FIXME: What are the right qualifiers here?
Mike Stump1eb44332009-09-09 15:08:12 +0000794 llvm::Function::arg_iterator End =
John McCall0953e762009-09-24 19:53:00 +0000795 ExpandTypeFromArgs(Ty, LValue::MakeAddr(Temp, Qualifiers()), AI);
Daniel Dunbar56273772008-09-17 00:51:38 +0000796 EmitParmDecl(*Arg, Temp);
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000797
Daniel Dunbar56273772008-09-17 00:51:38 +0000798 // Name the arguments used in expansion and increment AI.
799 unsigned Index = 0;
800 for (; AI != End; ++AI, ++Index)
Daniel Dunbar259e9cc2009-10-19 01:21:05 +0000801 AI->setName(Arg->getName() + "." + llvm::Twine(Index));
Daniel Dunbar56273772008-09-17 00:51:38 +0000802 continue;
803 }
Daniel Dunbar11434922009-01-26 21:26:08 +0000804
805 case ABIArgInfo::Ignore:
Daniel Dunbar8b979d92009-02-10 00:06:49 +0000806 // Initialize the local variable appropriately.
Mike Stump1eb44332009-09-09 15:08:12 +0000807 if (hasAggregateLLVMType(Ty)) {
Daniel Dunbar195337d2010-02-09 02:48:28 +0000808 EmitParmDecl(*Arg, CreateMemTemp(Ty));
Daniel Dunbar8b979d92009-02-10 00:06:49 +0000809 } else {
810 EmitParmDecl(*Arg, llvm::UndefValue::get(ConvertType(Arg->getType())));
811 }
Mike Stump1eb44332009-09-09 15:08:12 +0000812
Daniel Dunbar59e5a0e2009-02-03 20:00:13 +0000813 // Skip increment, no matching LLVM parameter.
Mike Stump1eb44332009-09-09 15:08:12 +0000814 continue;
Daniel Dunbar11434922009-01-26 21:26:08 +0000815
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +0000816 case ABIArgInfo::Coerce: {
817 assert(AI != Fn->arg_end() && "Argument mismatch!");
Mike Stumpf5408fe2009-05-16 07:57:57 +0000818 // FIXME: This is very wasteful; EmitParmDecl is just going to drop the
819 // result in a new alloca anyway, so we could just store into that
820 // directly if we broke the abstraction down more.
Daniel Dunbar195337d2010-02-09 02:48:28 +0000821 llvm::Value *V = CreateMemTemp(Ty, "coerce");
Anders Carlssond2490a92009-12-24 20:40:36 +0000822 CreateCoercedStore(AI, V, /*DestIsVolatile=*/false, *this);
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +0000823 // Match to what EmitParmDecl is expecting for this type.
Daniel Dunbar8b29a382009-02-04 07:22:24 +0000824 if (!CodeGenFunction::hasAggregateLLVMType(Ty)) {
Daniel Dunbaradc8bdd2009-02-10 01:51:39 +0000825 V = EmitLoadOfScalar(V, false, Ty);
Daniel Dunbar8b29a382009-02-04 07:22:24 +0000826 if (!getContext().typesAreCompatible(Ty, Arg->getType())) {
827 // This must be a promotion, for something like
828 // "void a(x) short x; {..."
829 V = EmitScalarConversion(V, Ty, Arg->getType());
830 }
831 }
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +0000832 EmitParmDecl(*Arg, V);
833 break;
834 }
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000835 }
Daniel Dunbar56273772008-09-17 00:51:38 +0000836
837 ++AI;
Daniel Dunbar17b708d2008-09-09 23:27:19 +0000838 }
839 assert(AI == Fn->arg_end() && "Argument mismatch!");
840}
841
Chris Lattner35b21b82010-06-27 01:06:27 +0000842void CodeGenFunction::EmitFunctionEpilog(const CGFunctionInfo &FI) {
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +0000843 // Functions with no result always return void.
Chris Lattnerc6e6dd22010-06-26 23:13:19 +0000844 if (ReturnValue == 0) {
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +0000845 Builder.CreateRetVoid();
Chris Lattnerc6e6dd22010-06-26 23:13:19 +0000846 return;
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +0000847 }
Chris Lattnerc6e6dd22010-06-26 23:13:19 +0000848
849 llvm::Value *RV = 0;
850 QualType RetTy = FI.getReturnType();
851 const ABIArgInfo &RetAI = FI.getReturnInfo();
852
853 switch (RetAI.getKind()) {
854 case ABIArgInfo::Indirect:
855 if (RetTy->isAnyComplexType()) {
856 ComplexPairTy RT = LoadComplexFromAddr(ReturnValue, false);
857 StoreComplexToAddr(RT, CurFn->arg_begin(), false);
858 } else if (CodeGenFunction::hasAggregateLLVMType(RetTy)) {
859 // Do nothing; aggregrates get evaluated directly into the destination.
860 } else {
861 EmitStoreOfScalar(Builder.CreateLoad(ReturnValue), CurFn->arg_begin(),
862 false, RetTy);
863 }
864 break;
865
866 case ABIArgInfo::Extend:
Chris Lattner35b21b82010-06-27 01:06:27 +0000867 case ABIArgInfo::Direct: {
868 // The internal return value temp always will have pointer-to-return-type
869 // type, just do a load.
870
871 // If the instruction right before the insertion point is a store to the
872 // return value, we can elide the load, zap the store, and usually zap the
873 // alloca.
874 llvm::BasicBlock *InsertBB = Builder.GetInsertBlock();
875 llvm::StoreInst *SI = 0;
876 if (InsertBB->empty() ||
877 !(SI = dyn_cast<llvm::StoreInst>(&InsertBB->back())) ||
878 SI->getPointerOperand() != ReturnValue || SI->isVolatile()) {
879 RV = Builder.CreateLoad(ReturnValue);
880 } else {
881 // Get the stored value and nuke the now-dead store.
882 RV = SI->getValueOperand();
883 SI->eraseFromParent();
884
885 // If that was the only use of the return value, nuke it as well now.
886 if (ReturnValue->use_empty() && isa<llvm::AllocaInst>(ReturnValue)) {
887 cast<llvm::AllocaInst>(ReturnValue)->eraseFromParent();
888 ReturnValue = 0;
889 }
890 }
Chris Lattnerc6e6dd22010-06-26 23:13:19 +0000891 break;
Chris Lattner35b21b82010-06-27 01:06:27 +0000892 }
Chris Lattnerc6e6dd22010-06-26 23:13:19 +0000893 case ABIArgInfo::Ignore:
894 break;
895
896 case ABIArgInfo::Coerce:
897 RV = CreateCoercedLoad(ReturnValue, RetAI.getCoerceToType(), *this);
898 break;
899
900 case ABIArgInfo::Expand:
901 assert(0 && "Invalid ABI kind for return argument");
902 }
903
904 if (RV)
905 Builder.CreateRet(RV);
906 else
907 Builder.CreateRetVoid();
Daniel Dunbar17b708d2008-09-09 23:27:19 +0000908}
909
John McCall27360712010-05-26 22:34:26 +0000910RValue CodeGenFunction::EmitDelegateCallArg(const VarDecl *Param) {
911 // StartFunction converted the ABI-lowered parameter(s) into a
912 // local alloca. We need to turn that into an r-value suitable
913 // for EmitCall.
914 llvm::Value *Local = GetAddrOfLocalVar(Param);
915
916 QualType ArgType = Param->getType();
917
918 // For the most part, we just need to load the alloca, except:
919 // 1) aggregate r-values are actually pointers to temporaries, and
920 // 2) references to aggregates are pointers directly to the aggregate.
921 // I don't know why references to non-aggregates are different here.
922 if (const ReferenceType *RefType = ArgType->getAs<ReferenceType>()) {
923 if (hasAggregateLLVMType(RefType->getPointeeType()))
924 return RValue::getAggregate(Local);
925
926 // Locals which are references to scalars are represented
927 // with allocas holding the pointer.
928 return RValue::get(Builder.CreateLoad(Local));
929 }
930
931 if (ArgType->isAnyComplexType())
932 return RValue::getComplex(LoadComplexFromAddr(Local, /*volatile*/ false));
933
934 if (hasAggregateLLVMType(ArgType))
935 return RValue::getAggregate(Local);
936
937 return RValue::get(EmitLoadOfScalar(Local, false, ArgType));
938}
939
Anders Carlsson0139bb92009-04-08 20:47:54 +0000940RValue CodeGenFunction::EmitCallArg(const Expr *E, QualType ArgType) {
Anders Carlsson4029ca72009-05-20 00:24:07 +0000941 if (ArgType->isReferenceType())
Anders Carlsson32f36ba2010-06-26 16:35:32 +0000942 return EmitReferenceBindingToExpr(E, /*InitializedDecl=*/0);
Mike Stump1eb44332009-09-09 15:08:12 +0000943
Anders Carlsson0139bb92009-04-08 20:47:54 +0000944 return EmitAnyExprToTemp(E);
945}
946
Daniel Dunbar88b53962009-02-02 22:03:45 +0000947RValue CodeGenFunction::EmitCall(const CGFunctionInfo &CallInfo,
Mike Stump1eb44332009-09-09 15:08:12 +0000948 llvm::Value *Callee,
Anders Carlssonf3c47c92009-12-24 19:25:24 +0000949 ReturnValueSlot ReturnValue,
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +0000950 const CallArgList &CallArgs,
David Chisnalldd5c98f2010-05-01 11:15:56 +0000951 const Decl *TargetDecl,
David Chisnall4b02afc2010-05-02 13:41:58 +0000952 llvm::Instruction **callOrInvoke) {
Mike Stumpf5408fe2009-05-16 07:57:57 +0000953 // FIXME: We no longer need the types from CallArgs; lift up and simplify.
Daniel Dunbar17b708d2008-09-09 23:27:19 +0000954 llvm::SmallVector<llvm::Value*, 16> Args;
Daniel Dunbar17b708d2008-09-09 23:27:19 +0000955
956 // Handle struct-return functions by passing a pointer to the
957 // location that we would like to return into.
Daniel Dunbarbb36d332009-02-02 21:43:58 +0000958 QualType RetTy = CallInfo.getReturnType();
Daniel Dunbarb225be42009-02-03 05:59:18 +0000959 const ABIArgInfo &RetAI = CallInfo.getReturnInfo();
Mike Stump1eb44332009-09-09 15:08:12 +0000960
961
Chris Lattner5db7ae52009-06-13 00:26:38 +0000962 // If the call returns a temporary with struct return, create a temporary
Anders Carlssond2490a92009-12-24 20:40:36 +0000963 // alloca to hold the result, unless one is given to us.
964 if (CGM.ReturnTypeUsesSret(CallInfo)) {
965 llvm::Value *Value = ReturnValue.getValue();
966 if (!Value)
Daniel Dunbar195337d2010-02-09 02:48:28 +0000967 Value = CreateMemTemp(RetTy);
Anders Carlssond2490a92009-12-24 20:40:36 +0000968 Args.push_back(Value);
969 }
Mike Stump1eb44332009-09-09 15:08:12 +0000970
Daniel Dunbar4b5f0a42009-02-04 21:17:21 +0000971 assert(CallInfo.arg_size() == CallArgs.size() &&
972 "Mismatch between function signature & arguments.");
Daniel Dunbarb225be42009-02-03 05:59:18 +0000973 CGFunctionInfo::const_arg_iterator info_it = CallInfo.arg_begin();
Mike Stump1eb44332009-09-09 15:08:12 +0000974 for (CallArgList::const_iterator I = CallArgs.begin(), E = CallArgs.end();
Daniel Dunbarb225be42009-02-03 05:59:18 +0000975 I != E; ++I, ++info_it) {
976 const ABIArgInfo &ArgInfo = info_it->info;
Daniel Dunbar17b708d2008-09-09 23:27:19 +0000977 RValue RV = I->first;
Daniel Dunbar56273772008-09-17 00:51:38 +0000978
979 switch (ArgInfo.getKind()) {
Daniel Dunbar11e383a2009-02-05 08:00:50 +0000980 case ABIArgInfo::Indirect:
Daniel Dunbar1f745982009-02-05 09:16:39 +0000981 if (RV.isScalar() || RV.isComplex()) {
982 // Make a temporary alloca to pass the argument.
Daniel Dunbar195337d2010-02-09 02:48:28 +0000983 Args.push_back(CreateMemTemp(I->second));
Daniel Dunbar1f745982009-02-05 09:16:39 +0000984 if (RV.isScalar())
Anders Carlssonb4aa4662009-05-19 18:50:41 +0000985 EmitStoreOfScalar(RV.getScalarVal(), Args.back(), false, I->second);
Daniel Dunbar1f745982009-02-05 09:16:39 +0000986 else
Mike Stump1eb44332009-09-09 15:08:12 +0000987 StoreComplexToAddr(RV.getComplexVal(), Args.back(), false);
Daniel Dunbar1f745982009-02-05 09:16:39 +0000988 } else {
989 Args.push_back(RV.getAggregateAddr());
990 }
991 break;
992
Anton Korobeynikovcc6fa882009-06-06 09:36:29 +0000993 case ABIArgInfo::Extend:
Daniel Dunbar46327aa2009-02-03 06:17:37 +0000994 case ABIArgInfo::Direct:
Daniel Dunbar56273772008-09-17 00:51:38 +0000995 if (RV.isScalar()) {
996 Args.push_back(RV.getScalarVal());
997 } else if (RV.isComplex()) {
Daniel Dunbar2fbf2f52009-02-05 11:13:54 +0000998 llvm::Value *Tmp = llvm::UndefValue::get(ConvertType(I->second));
999 Tmp = Builder.CreateInsertValue(Tmp, RV.getComplexVal().first, 0);
1000 Tmp = Builder.CreateInsertValue(Tmp, RV.getComplexVal().second, 1);
1001 Args.push_back(Tmp);
Daniel Dunbar56273772008-09-17 00:51:38 +00001002 } else {
Daniel Dunbar2fbf2f52009-02-05 11:13:54 +00001003 Args.push_back(Builder.CreateLoad(RV.getAggregateAddr()));
Daniel Dunbar56273772008-09-17 00:51:38 +00001004 }
1005 break;
Mike Stump1eb44332009-09-09 15:08:12 +00001006
Daniel Dunbar11434922009-01-26 21:26:08 +00001007 case ABIArgInfo::Ignore:
1008 break;
1009
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +00001010 case ABIArgInfo::Coerce: {
1011 // FIXME: Avoid the conversion through memory if possible.
1012 llvm::Value *SrcPtr;
1013 if (RV.isScalar()) {
Daniel Dunbar195337d2010-02-09 02:48:28 +00001014 SrcPtr = CreateMemTemp(I->second, "coerce");
Anders Carlssonb4aa4662009-05-19 18:50:41 +00001015 EmitStoreOfScalar(RV.getScalarVal(), SrcPtr, false, I->second);
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +00001016 } else if (RV.isComplex()) {
Daniel Dunbar195337d2010-02-09 02:48:28 +00001017 SrcPtr = CreateMemTemp(I->second, "coerce");
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +00001018 StoreComplexToAddr(RV.getComplexVal(), SrcPtr, false);
Mike Stump1eb44332009-09-09 15:08:12 +00001019 } else
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +00001020 SrcPtr = RV.getAggregateAddr();
Mike Stump1eb44332009-09-09 15:08:12 +00001021 Args.push_back(CreateCoercedLoad(SrcPtr, ArgInfo.getCoerceToType(),
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +00001022 *this));
1023 break;
1024 }
1025
Daniel Dunbar56273772008-09-17 00:51:38 +00001026 case ABIArgInfo::Expand:
1027 ExpandTypeToArgs(I->second, RV, Args);
1028 break;
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001029 }
1030 }
Mike Stump1eb44332009-09-09 15:08:12 +00001031
Chris Lattner5db7ae52009-06-13 00:26:38 +00001032 // If the callee is a bitcast of a function to a varargs pointer to function
1033 // type, check to see if we can remove the bitcast. This handles some cases
1034 // with unprototyped functions.
1035 if (llvm::ConstantExpr *CE = dyn_cast<llvm::ConstantExpr>(Callee))
1036 if (llvm::Function *CalleeF = dyn_cast<llvm::Function>(CE->getOperand(0))) {
1037 const llvm::PointerType *CurPT=cast<llvm::PointerType>(Callee->getType());
1038 const llvm::FunctionType *CurFT =
1039 cast<llvm::FunctionType>(CurPT->getElementType());
1040 const llvm::FunctionType *ActualFT = CalleeF->getFunctionType();
Mike Stump1eb44332009-09-09 15:08:12 +00001041
Chris Lattner5db7ae52009-06-13 00:26:38 +00001042 if (CE->getOpcode() == llvm::Instruction::BitCast &&
1043 ActualFT->getReturnType() == CurFT->getReturnType() &&
Chris Lattnerd6bebbf2009-06-23 01:38:41 +00001044 ActualFT->getNumParams() == CurFT->getNumParams() &&
1045 ActualFT->getNumParams() == Args.size()) {
Chris Lattner5db7ae52009-06-13 00:26:38 +00001046 bool ArgsMatch = true;
1047 for (unsigned i = 0, e = ActualFT->getNumParams(); i != e; ++i)
1048 if (ActualFT->getParamType(i) != CurFT->getParamType(i)) {
1049 ArgsMatch = false;
1050 break;
1051 }
Mike Stump1eb44332009-09-09 15:08:12 +00001052
Chris Lattner5db7ae52009-06-13 00:26:38 +00001053 // Strip the cast if we can get away with it. This is a nice cleanup,
1054 // but also allows us to inline the function at -O0 if it is marked
1055 // always_inline.
1056 if (ArgsMatch)
1057 Callee = CalleeF;
1058 }
1059 }
Mike Stump1eb44332009-09-09 15:08:12 +00001060
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001061
Daniel Dunbar9834ffb2009-02-23 17:26:39 +00001062 llvm::BasicBlock *InvokeDest = getInvokeDest();
Daniel Dunbarca6408c2009-09-12 00:59:20 +00001063 unsigned CallingConv;
Devang Patel761d7f72008-09-25 21:02:23 +00001064 CodeGen::AttributeListType AttributeList;
Daniel Dunbarca6408c2009-09-12 00:59:20 +00001065 CGM.ConstructAttributeList(CallInfo, TargetDecl, AttributeList, CallingConv);
Daniel Dunbar9834ffb2009-02-23 17:26:39 +00001066 llvm::AttrListPtr Attrs = llvm::AttrListPtr::get(AttributeList.begin(),
1067 AttributeList.end());
Mike Stump1eb44332009-09-09 15:08:12 +00001068
Daniel Dunbard14151d2009-03-02 04:32:35 +00001069 llvm::CallSite CS;
1070 if (!InvokeDest || (Attrs.getFnAttributes() & llvm::Attribute::NoUnwind)) {
Jay Foadbeaaccd2009-05-21 09:52:38 +00001071 CS = Builder.CreateCall(Callee, Args.data(), Args.data()+Args.size());
Daniel Dunbar9834ffb2009-02-23 17:26:39 +00001072 } else {
1073 llvm::BasicBlock *Cont = createBasicBlock("invoke.cont");
Mike Stump1eb44332009-09-09 15:08:12 +00001074 CS = Builder.CreateInvoke(Callee, Cont, InvokeDest,
Jay Foadbeaaccd2009-05-21 09:52:38 +00001075 Args.data(), Args.data()+Args.size());
Daniel Dunbar9834ffb2009-02-23 17:26:39 +00001076 EmitBlock(Cont);
Daniel Dunbarf4fe0f02009-02-20 18:54:31 +00001077 }
David Chisnall4b02afc2010-05-02 13:41:58 +00001078 if (callOrInvoke) {
1079 *callOrInvoke = CS.getInstruction();
David Chisnalldd5c98f2010-05-01 11:15:56 +00001080 }
Daniel Dunbarf4fe0f02009-02-20 18:54:31 +00001081
Daniel Dunbard14151d2009-03-02 04:32:35 +00001082 CS.setAttributes(Attrs);
Daniel Dunbarca6408c2009-09-12 00:59:20 +00001083 CS.setCallingConv(static_cast<llvm::CallingConv::ID>(CallingConv));
Daniel Dunbard14151d2009-03-02 04:32:35 +00001084
1085 // If the call doesn't return, finish the basic block and clear the
1086 // insertion point; this allows the rest of IRgen to discard
1087 // unreachable code.
1088 if (CS.doesNotReturn()) {
1089 Builder.CreateUnreachable();
1090 Builder.ClearInsertionPoint();
Mike Stump1eb44332009-09-09 15:08:12 +00001091
Mike Stumpf5408fe2009-05-16 07:57:57 +00001092 // FIXME: For now, emit a dummy basic block because expr emitters in
1093 // generally are not ready to handle emitting expressions at unreachable
1094 // points.
Daniel Dunbard14151d2009-03-02 04:32:35 +00001095 EnsureInsertPoint();
Mike Stump1eb44332009-09-09 15:08:12 +00001096
Daniel Dunbard14151d2009-03-02 04:32:35 +00001097 // Return a reasonable RValue.
1098 return GetUndefRValue(RetTy);
Mike Stump1eb44332009-09-09 15:08:12 +00001099 }
Daniel Dunbard14151d2009-03-02 04:32:35 +00001100
1101 llvm::Instruction *CI = CS.getInstruction();
Benjamin Kramerffbb15e2009-10-05 13:47:21 +00001102 if (Builder.isNamePreserving() && !CI->getType()->isVoidTy())
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001103 CI->setName("call");
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001104
1105 switch (RetAI.getKind()) {
Daniel Dunbar11e383a2009-02-05 08:00:50 +00001106 case ABIArgInfo::Indirect:
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001107 if (RetTy->isAnyComplexType())
Daniel Dunbar56273772008-09-17 00:51:38 +00001108 return RValue::getComplex(LoadComplexFromAddr(Args[0], false));
Chris Lattner34030842009-03-22 00:32:22 +00001109 if (CodeGenFunction::hasAggregateLLVMType(RetTy))
Daniel Dunbar56273772008-09-17 00:51:38 +00001110 return RValue::getAggregate(Args[0]);
Chris Lattner34030842009-03-22 00:32:22 +00001111 return RValue::get(EmitLoadOfScalar(Args[0], false, RetTy));
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001112
Anton Korobeynikovcc6fa882009-06-06 09:36:29 +00001113 case ABIArgInfo::Extend:
Daniel Dunbar46327aa2009-02-03 06:17:37 +00001114 case ABIArgInfo::Direct:
Daniel Dunbar2fbf2f52009-02-05 11:13:54 +00001115 if (RetTy->isAnyComplexType()) {
1116 llvm::Value *Real = Builder.CreateExtractValue(CI, 0);
1117 llvm::Value *Imag = Builder.CreateExtractValue(CI, 1);
1118 return RValue::getComplex(std::make_pair(Real, Imag));
Chris Lattner34030842009-03-22 00:32:22 +00001119 }
1120 if (CodeGenFunction::hasAggregateLLVMType(RetTy)) {
Anders Carlssond2490a92009-12-24 20:40:36 +00001121 llvm::Value *DestPtr = ReturnValue.getValue();
1122 bool DestIsVolatile = ReturnValue.isVolatile();
1123
1124 if (!DestPtr) {
Daniel Dunbar195337d2010-02-09 02:48:28 +00001125 DestPtr = CreateMemTemp(RetTy, "agg.tmp");
Anders Carlssond2490a92009-12-24 20:40:36 +00001126 DestIsVolatile = false;
1127 }
1128 Builder.CreateStore(CI, DestPtr, DestIsVolatile);
1129 return RValue::getAggregate(DestPtr);
Chris Lattner34030842009-03-22 00:32:22 +00001130 }
1131 return RValue::get(CI);
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001132
Daniel Dunbar11434922009-01-26 21:26:08 +00001133 case ABIArgInfo::Ignore:
Daniel Dunbar0bcc5212009-02-03 06:30:17 +00001134 // If we are ignoring an argument that had a result, make sure to
1135 // construct the appropriate return value for our caller.
Daniel Dunbar13e81732009-02-05 07:09:07 +00001136 return GetUndefRValue(RetTy);
Daniel Dunbar11434922009-01-26 21:26:08 +00001137
Daniel Dunbar639ffe42008-09-10 07:04:09 +00001138 case ABIArgInfo::Coerce: {
Anders Carlssond2490a92009-12-24 20:40:36 +00001139 llvm::Value *DestPtr = ReturnValue.getValue();
1140 bool DestIsVolatile = ReturnValue.isVolatile();
1141
1142 if (!DestPtr) {
Daniel Dunbar195337d2010-02-09 02:48:28 +00001143 DestPtr = CreateMemTemp(RetTy, "coerce");
Anders Carlssond2490a92009-12-24 20:40:36 +00001144 DestIsVolatile = false;
1145 }
1146
1147 CreateCoercedStore(CI, DestPtr, DestIsVolatile, *this);
Anders Carlssonad3d6912008-11-25 22:21:48 +00001148 if (RetTy->isAnyComplexType())
Anders Carlssond2490a92009-12-24 20:40:36 +00001149 return RValue::getComplex(LoadComplexFromAddr(DestPtr, false));
Chris Lattner34030842009-03-22 00:32:22 +00001150 if (CodeGenFunction::hasAggregateLLVMType(RetTy))
Anders Carlssond2490a92009-12-24 20:40:36 +00001151 return RValue::getAggregate(DestPtr);
1152 return RValue::get(EmitLoadOfScalar(DestPtr, false, RetTy));
Daniel Dunbar639ffe42008-09-10 07:04:09 +00001153 }
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001154
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001155 case ABIArgInfo::Expand:
Mike Stump1eb44332009-09-09 15:08:12 +00001156 assert(0 && "Invalid ABI kind for return argument");
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001157 }
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001158
1159 assert(0 && "Unhandled ABIArgInfo::Kind");
1160 return RValue::get(0);
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001161}
Daniel Dunbarb4094ea2009-02-10 20:44:09 +00001162
1163/* VarArg handling */
1164
1165llvm::Value *CodeGenFunction::EmitVAArg(llvm::Value *VAListAddr, QualType Ty) {
1166 return CGM.getTypes().getABIInfo().EmitVAArg(VAListAddr, Ty, *this);
1167}