blob: 7835505dcf4a21d4fdccfa1bb2d691ecadee13ac [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 Lattnere7bb7772010-06-27 06:04:18 +0000348/// EnterStructPointerForCoercedAccess - Given a struct pointer that we are
Chris Lattner08dd2a02010-06-27 05:56:15 +0000349/// 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 *
Chris Lattnere7bb7772010-06-27 06:04:18 +0000353EnterStructPointerForCoercedAccess(llvm::Value *SrcPtr,
354 const llvm::StructType *SrcSTy,
355 uint64_t DstSize, CodeGenFunction &CGF) {
Chris Lattner08dd2a02010-06-27 05:56:15 +0000356 // 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))
Chris Lattnere7bb7772010-06-27 06:04:18 +0000376 return EnterStructPointerForCoercedAccess(SrcPtr, SrcSTy, DstSize, CGF);
Chris Lattner08dd2a02010-06-27 05:56:15 +0000377
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)) {
Chris Lattnere7bb7772010-06-27 06:04:18 +0000397 SrcPtr = EnterStructPointerForCoercedAccess(SrcPtr, SrcSTy, DstSize, CGF);
Chris Lattner08dd2a02010-06-27 05:56:15 +0000398 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();
Chris Lattnere7bb7772010-06-27 06:04:18 +0000441 uint64_t SrcSize = CGF.CGM.getTargetData().getTypeAllocSize(SrcTy);
442
Mike Stump1eb44332009-09-09 15:08:12 +0000443 const llvm::Type *DstTy =
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000444 cast<llvm::PointerType>(DstPtr->getType())->getElementType();
445
Chris Lattnere7bb7772010-06-27 06:04:18 +0000446 if (const llvm::StructType *DstSTy = dyn_cast<llvm::StructType>(DstTy)) {
447 DstPtr = EnterStructPointerForCoercedAccess(DstPtr, DstSTy, SrcSize, CGF);
448 DstTy = cast<llvm::PointerType>(DstPtr->getType())->getElementType();
449 }
450
Duncan Sands9408c452009-05-09 07:08:47 +0000451 uint64_t DstSize = CGF.CGM.getTargetData().getTypeAllocSize(DstTy);
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000452
Daniel Dunbar88c2fa92009-02-03 05:31:23 +0000453 // If store is legal, just bitcast the src pointer.
Daniel Dunbarfdf49862009-06-05 07:58:54 +0000454 if (SrcSize <= DstSize) {
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000455 llvm::Value *Casted =
456 CGF.Builder.CreateBitCast(DstPtr, llvm::PointerType::getUnqual(SrcTy));
Daniel Dunbar386621f2009-02-07 02:46:03 +0000457 // FIXME: Use better alignment / avoid requiring aligned store.
Anders Carlssond2490a92009-12-24 20:40:36 +0000458 CGF.Builder.CreateStore(Src, Casted, DstIsVolatile)->setAlignment(1);
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000459 } else {
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000460 // Otherwise do coercion through memory. This is stupid, but
461 // simple.
Daniel Dunbarfdf49862009-06-05 07:58:54 +0000462
463 // Generally SrcSize is never greater than DstSize, since this means we are
464 // losing bits. However, this can happen in cases where the structure has
465 // additional padding, for example due to a user specified alignment.
466 //
467 // FIXME: Assert that we aren't truncating non-padding bits when have access
468 // to that information.
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000469 llvm::Value *Tmp = CGF.CreateTempAlloca(SrcTy);
470 CGF.Builder.CreateStore(Src, Tmp);
Mike Stump1eb44332009-09-09 15:08:12 +0000471 llvm::Value *Casted =
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000472 CGF.Builder.CreateBitCast(Tmp, llvm::PointerType::getUnqual(DstTy));
Daniel Dunbar386621f2009-02-07 02:46:03 +0000473 llvm::LoadInst *Load = CGF.Builder.CreateLoad(Casted);
474 // FIXME: Use better alignment / avoid requiring aligned load.
475 Load->setAlignment(1);
Anders Carlssond2490a92009-12-24 20:40:36 +0000476 CGF.Builder.CreateStore(Load, DstPtr, DstIsVolatile);
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000477 }
478}
479
Daniel Dunbar56273772008-09-17 00:51:38 +0000480/***/
481
Daniel Dunbar88b53962009-02-02 22:03:45 +0000482bool CodeGenModule::ReturnTypeUsesSret(const CGFunctionInfo &FI) {
Daniel Dunbar11e383a2009-02-05 08:00:50 +0000483 return FI.getReturnInfo().isIndirect();
Daniel Dunbarbb36d332009-02-02 21:43:58 +0000484}
485
John McCallc0bf4622010-02-23 00:48:20 +0000486const llvm::FunctionType *CodeGenTypes::GetFunctionType(GlobalDecl GD) {
487 const CGFunctionInfo &FI = getFunctionInfo(GD);
488
489 // For definition purposes, don't consider a K&R function variadic.
490 bool Variadic = false;
491 if (const FunctionProtoType *FPT =
492 cast<FunctionDecl>(GD.getDecl())->getType()->getAs<FunctionProtoType>())
493 Variadic = FPT->isVariadic();
494
495 return GetFunctionType(FI, Variadic);
496}
497
Daniel Dunbar45c25ba2008-09-10 04:01:49 +0000498const llvm::FunctionType *
Daniel Dunbarbb36d332009-02-02 21:43:58 +0000499CodeGenTypes::GetFunctionType(const CGFunctionInfo &FI, bool IsVariadic) {
Daniel Dunbar45c25ba2008-09-10 04:01:49 +0000500 std::vector<const llvm::Type*> ArgTys;
501
502 const llvm::Type *ResultType = 0;
503
Daniel Dunbara0a99e02009-02-02 23:43:58 +0000504 QualType RetTy = FI.getReturnType();
Daniel Dunbarb225be42009-02-03 05:59:18 +0000505 const ABIArgInfo &RetAI = FI.getReturnInfo();
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000506 switch (RetAI.getKind()) {
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000507 case ABIArgInfo::Expand:
508 assert(0 && "Invalid ABI kind for return argument");
509
Anton Korobeynikovcc6fa882009-06-06 09:36:29 +0000510 case ABIArgInfo::Extend:
Daniel Dunbar46327aa2009-02-03 06:17:37 +0000511 case ABIArgInfo::Direct:
512 ResultType = ConvertType(RetTy);
513 break;
514
Daniel Dunbar11e383a2009-02-05 08:00:50 +0000515 case ABIArgInfo::Indirect: {
516 assert(!RetAI.getIndirectAlign() && "Align unused on indirect return.");
Owen Anderson0032b272009-08-13 21:57:51 +0000517 ResultType = llvm::Type::getVoidTy(getLLVMContext());
Daniel Dunbar62d5c1b2008-09-10 07:00:50 +0000518 const llvm::Type *STy = ConvertType(RetTy);
Daniel Dunbar45c25ba2008-09-10 04:01:49 +0000519 ArgTys.push_back(llvm::PointerType::get(STy, RetTy.getAddressSpace()));
520 break;
521 }
522
Daniel Dunbar11434922009-01-26 21:26:08 +0000523 case ABIArgInfo::Ignore:
Owen Anderson0032b272009-08-13 21:57:51 +0000524 ResultType = llvm::Type::getVoidTy(getLLVMContext());
Daniel Dunbar11434922009-01-26 21:26:08 +0000525 break;
526
Daniel Dunbar45c25ba2008-09-10 04:01:49 +0000527 case ABIArgInfo::Coerce:
Daniel Dunbar639ffe42008-09-10 07:04:09 +0000528 ResultType = RetAI.getCoerceToType();
Daniel Dunbar45c25ba2008-09-10 04:01:49 +0000529 break;
530 }
Mike Stump1eb44332009-09-09 15:08:12 +0000531
532 for (CGFunctionInfo::const_arg_iterator it = FI.arg_begin(),
Daniel Dunbar88c2fa92009-02-03 05:31:23 +0000533 ie = FI.arg_end(); it != ie; ++it) {
534 const ABIArgInfo &AI = it->info;
Mike Stump1eb44332009-09-09 15:08:12 +0000535
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000536 switch (AI.getKind()) {
Daniel Dunbar11434922009-01-26 21:26:08 +0000537 case ABIArgInfo::Ignore:
538 break;
539
Daniel Dunbar56273772008-09-17 00:51:38 +0000540 case ABIArgInfo::Coerce:
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +0000541 ArgTys.push_back(AI.getCoerceToType());
542 break;
543
Daniel Dunbaradc8bdd2009-02-10 01:51:39 +0000544 case ABIArgInfo::Indirect: {
Daniel Dunbar11e383a2009-02-05 08:00:50 +0000545 // indirect arguments are always on the stack, which is addr space #0.
Daniel Dunbaradc8bdd2009-02-10 01:51:39 +0000546 const llvm::Type *LTy = ConvertTypeForMem(it->type);
547 ArgTys.push_back(llvm::PointerType::getUnqual(LTy));
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000548 break;
Daniel Dunbaradc8bdd2009-02-10 01:51:39 +0000549 }
Anton Korobeynikovcc6fa882009-06-06 09:36:29 +0000550
551 case ABIArgInfo::Extend:
Daniel Dunbar46327aa2009-02-03 06:17:37 +0000552 case ABIArgInfo::Direct:
Daniel Dunbar1f745982009-02-05 09:16:39 +0000553 ArgTys.push_back(ConvertType(it->type));
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000554 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000555
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000556 case ABIArgInfo::Expand:
Daniel Dunbar88c2fa92009-02-03 05:31:23 +0000557 GetExpandedTypes(it->type, ArgTys);
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000558 break;
559 }
Daniel Dunbar45c25ba2008-09-10 04:01:49 +0000560 }
561
Daniel Dunbarbb36d332009-02-02 21:43:58 +0000562 return llvm::FunctionType::get(ResultType, ArgTys, IsVariadic);
Daniel Dunbar3913f182008-09-09 23:48:28 +0000563}
564
Anders Carlssonecf282b2009-11-24 05:08:52 +0000565const llvm::Type *
Anders Carlsson046c2942010-04-17 20:15:18 +0000566CodeGenTypes::GetFunctionTypeForVTable(const CXXMethodDecl *MD) {
Anders Carlssonecf282b2009-11-24 05:08:52 +0000567 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>();
568
Eli Friedmanc00129a2010-05-30 06:03:20 +0000569 if (!VerifyFuncTypeComplete(FPT))
Anders Carlssonecf282b2009-11-24 05:08:52 +0000570 return GetFunctionType(getFunctionInfo(MD), FPT->isVariadic());
571
572 return llvm::OpaqueType::get(getLLVMContext());
573}
574
Daniel Dunbara0a99e02009-02-02 23:43:58 +0000575void CodeGenModule::ConstructAttributeList(const CGFunctionInfo &FI,
Daniel Dunbar88b53962009-02-02 22:03:45 +0000576 const Decl *TargetDecl,
Daniel Dunbarca6408c2009-09-12 00:59:20 +0000577 AttributeListType &PAL,
578 unsigned &CallingConv) {
Daniel Dunbar5323a4b2008-09-10 00:32:18 +0000579 unsigned FuncAttrs = 0;
Devang Patela2c69122008-09-26 22:53:57 +0000580 unsigned RetAttrs = 0;
Daniel Dunbar5323a4b2008-09-10 00:32:18 +0000581
Daniel Dunbarca6408c2009-09-12 00:59:20 +0000582 CallingConv = FI.getEffectiveCallingConvention();
583
John McCall04a67a62010-02-05 21:31:56 +0000584 if (FI.isNoReturn())
585 FuncAttrs |= llvm::Attribute::NoReturn;
586
Anton Korobeynikov1102f422009-04-04 00:49:24 +0000587 // FIXME: handle sseregparm someday...
Daniel Dunbar5323a4b2008-09-10 00:32:18 +0000588 if (TargetDecl) {
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000589 if (TargetDecl->hasAttr<NoThrowAttr>())
Devang Patel761d7f72008-09-25 21:02:23 +0000590 FuncAttrs |= llvm::Attribute::NoUnwind;
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000591 if (TargetDecl->hasAttr<NoReturnAttr>())
Devang Patel761d7f72008-09-25 21:02:23 +0000592 FuncAttrs |= llvm::Attribute::NoReturn;
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000593 if (TargetDecl->hasAttr<ConstAttr>())
Anders Carlsson232eb7d2008-10-05 23:32:53 +0000594 FuncAttrs |= llvm::Attribute::ReadNone;
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000595 else if (TargetDecl->hasAttr<PureAttr>())
Daniel Dunbar64c2e072009-04-10 22:14:52 +0000596 FuncAttrs |= llvm::Attribute::ReadOnly;
Ryan Flynn76168e22009-08-09 20:07:29 +0000597 if (TargetDecl->hasAttr<MallocAttr>())
598 RetAttrs |= llvm::Attribute::NoAlias;
Daniel Dunbar5323a4b2008-09-10 00:32:18 +0000599 }
600
Chandler Carruth2811ccf2009-11-12 17:24:48 +0000601 if (CodeGenOpts.OptimizeSize)
Daniel Dunbar7ab1c3e2009-10-27 19:48:08 +0000602 FuncAttrs |= llvm::Attribute::OptimizeForSize;
Chandler Carruth2811ccf2009-11-12 17:24:48 +0000603 if (CodeGenOpts.DisableRedZone)
Devang Patel24095da2009-06-04 23:32:02 +0000604 FuncAttrs |= llvm::Attribute::NoRedZone;
Chandler Carruth2811ccf2009-11-12 17:24:48 +0000605 if (CodeGenOpts.NoImplicitFloat)
Devang Patelacebb392009-06-05 22:05:48 +0000606 FuncAttrs |= llvm::Attribute::NoImplicitFloat;
Devang Patel24095da2009-06-04 23:32:02 +0000607
Daniel Dunbara0a99e02009-02-02 23:43:58 +0000608 QualType RetTy = FI.getReturnType();
Daniel Dunbar5323a4b2008-09-10 00:32:18 +0000609 unsigned Index = 1;
Daniel Dunbarb225be42009-02-03 05:59:18 +0000610 const ABIArgInfo &RetAI = FI.getReturnInfo();
Daniel Dunbar45c25ba2008-09-10 04:01:49 +0000611 switch (RetAI.getKind()) {
Anton Korobeynikovcc6fa882009-06-06 09:36:29 +0000612 case ABIArgInfo::Extend:
613 if (RetTy->isSignedIntegerType()) {
614 RetAttrs |= llvm::Attribute::SExt;
615 } else if (RetTy->isUnsignedIntegerType()) {
616 RetAttrs |= llvm::Attribute::ZExt;
617 }
618 // FALLTHROUGH
Daniel Dunbar46327aa2009-02-03 06:17:37 +0000619 case ABIArgInfo::Direct:
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +0000620 break;
621
Daniel Dunbar11e383a2009-02-05 08:00:50 +0000622 case ABIArgInfo::Indirect:
Mike Stump1eb44332009-09-09 15:08:12 +0000623 PAL.push_back(llvm::AttributeWithIndex::get(Index,
Chris Lattnerfb97cf22010-04-20 05:44:43 +0000624 llvm::Attribute::StructRet));
Daniel Dunbar5323a4b2008-09-10 00:32:18 +0000625 ++Index;
Daniel Dunbar0ac86f02009-03-18 19:51:01 +0000626 // sret disables readnone and readonly
627 FuncAttrs &= ~(llvm::Attribute::ReadOnly |
628 llvm::Attribute::ReadNone);
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +0000629 break;
630
Daniel Dunbar11434922009-01-26 21:26:08 +0000631 case ABIArgInfo::Ignore:
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +0000632 case ABIArgInfo::Coerce:
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +0000633 break;
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000634
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000635 case ABIArgInfo::Expand:
Mike Stump1eb44332009-09-09 15:08:12 +0000636 assert(0 && "Invalid ABI kind for return argument");
Daniel Dunbar5323a4b2008-09-10 00:32:18 +0000637 }
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +0000638
Devang Patela2c69122008-09-26 22:53:57 +0000639 if (RetAttrs)
640 PAL.push_back(llvm::AttributeWithIndex::get(0, RetAttrs));
Anton Korobeynikov1102f422009-04-04 00:49:24 +0000641
642 // FIXME: we need to honour command line settings also...
643 // FIXME: RegParm should be reduced in case of nested functions and/or global
644 // register variable.
Rafael Espindola425ef722010-03-30 22:15:11 +0000645 signed RegParm = FI.getRegParm();
Anton Korobeynikov1102f422009-04-04 00:49:24 +0000646
647 unsigned PointerWidth = getContext().Target.getPointerWidth(0);
Mike Stump1eb44332009-09-09 15:08:12 +0000648 for (CGFunctionInfo::const_arg_iterator it = FI.arg_begin(),
Daniel Dunbar88c2fa92009-02-03 05:31:23 +0000649 ie = FI.arg_end(); it != ie; ++it) {
650 QualType ParamType = it->type;
651 const ABIArgInfo &AI = it->info;
Devang Patel761d7f72008-09-25 21:02:23 +0000652 unsigned Attributes = 0;
Anton Korobeynikov1102f422009-04-04 00:49:24 +0000653
John McCalld8e10d22010-03-27 00:47:27 +0000654 // 'restrict' -> 'noalias' is done in EmitFunctionProlog when we
655 // have the corresponding parameter variable. It doesn't make
656 // sense to do it here because parameters are so fucked up.
Nuno Lopes079b4952009-12-07 18:30:06 +0000657
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000658 switch (AI.getKind()) {
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +0000659 case ABIArgInfo::Coerce:
660 break;
661
Daniel Dunbar11e383a2009-02-05 08:00:50 +0000662 case ABIArgInfo::Indirect:
Anders Carlsson0a8f8472009-09-16 15:53:40 +0000663 if (AI.getIndirectByVal())
664 Attributes |= llvm::Attribute::ByVal;
665
Anton Korobeynikov1102f422009-04-04 00:49:24 +0000666 Attributes |=
Daniel Dunbar11e383a2009-02-05 08:00:50 +0000667 llvm::Attribute::constructAlignmentFromInt(AI.getIndirectAlign());
Daniel Dunbar0ac86f02009-03-18 19:51:01 +0000668 // byval disables readnone and readonly.
669 FuncAttrs &= ~(llvm::Attribute::ReadOnly |
670 llvm::Attribute::ReadNone);
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000671 break;
Anton Korobeynikovcc6fa882009-06-06 09:36:29 +0000672
673 case ABIArgInfo::Extend:
674 if (ParamType->isSignedIntegerType()) {
675 Attributes |= llvm::Attribute::SExt;
676 } else if (ParamType->isUnsignedIntegerType()) {
677 Attributes |= llvm::Attribute::ZExt;
678 }
679 // FALLS THROUGH
Daniel Dunbar46327aa2009-02-03 06:17:37 +0000680 case ABIArgInfo::Direct:
Anton Korobeynikov1102f422009-04-04 00:49:24 +0000681 if (RegParm > 0 &&
682 (ParamType->isIntegerType() || ParamType->isPointerType())) {
683 RegParm -=
684 (Context.getTypeSize(ParamType) + PointerWidth - 1) / PointerWidth;
685 if (RegParm >= 0)
686 Attributes |= llvm::Attribute::InReg;
687 }
688 // FIXME: handle sseregparm someday...
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000689 break;
Anton Korobeynikov1102f422009-04-04 00:49:24 +0000690
Daniel Dunbar11434922009-01-26 21:26:08 +0000691 case ABIArgInfo::Ignore:
692 // Skip increment, no matching LLVM parameter.
Mike Stump1eb44332009-09-09 15:08:12 +0000693 continue;
Daniel Dunbar11434922009-01-26 21:26:08 +0000694
Daniel Dunbar56273772008-09-17 00:51:38 +0000695 case ABIArgInfo::Expand: {
Mike Stump1eb44332009-09-09 15:08:12 +0000696 std::vector<const llvm::Type*> Tys;
Mike Stumpf5408fe2009-05-16 07:57:57 +0000697 // FIXME: This is rather inefficient. Do we ever actually need to do
698 // anything here? The result should be just reconstructed on the other
699 // side, so extension should be a non-issue.
Daniel Dunbar56273772008-09-17 00:51:38 +0000700 getTypes().GetExpandedTypes(ParamType, Tys);
701 Index += Tys.size();
702 continue;
703 }
Daniel Dunbar5323a4b2008-09-10 00:32:18 +0000704 }
Mike Stump1eb44332009-09-09 15:08:12 +0000705
Devang Patel761d7f72008-09-25 21:02:23 +0000706 if (Attributes)
707 PAL.push_back(llvm::AttributeWithIndex::get(Index, Attributes));
Daniel Dunbar56273772008-09-17 00:51:38 +0000708 ++Index;
Daniel Dunbar5323a4b2008-09-10 00:32:18 +0000709 }
Devang Patela2c69122008-09-26 22:53:57 +0000710 if (FuncAttrs)
711 PAL.push_back(llvm::AttributeWithIndex::get(~0, FuncAttrs));
Daniel Dunbar5323a4b2008-09-10 00:32:18 +0000712}
713
Daniel Dunbar88b53962009-02-02 22:03:45 +0000714void CodeGenFunction::EmitFunctionProlog(const CGFunctionInfo &FI,
715 llvm::Function *Fn,
Daniel Dunbar17b708d2008-09-09 23:27:19 +0000716 const FunctionArgList &Args) {
John McCall0cfeb632009-07-28 01:00:58 +0000717 // If this is an implicit-return-zero function, go ahead and
718 // initialize the return value. TODO: it might be nice to have
719 // a more general mechanism for this that didn't require synthesized
720 // return statements.
Anders Carlsson89ed31d2009-08-08 23:24:23 +0000721 if (const FunctionDecl* FD = dyn_cast_or_null<FunctionDecl>(CurFuncDecl)) {
John McCall0cfeb632009-07-28 01:00:58 +0000722 if (FD->hasImplicitReturnZero()) {
723 QualType RetTy = FD->getResultType().getUnqualifiedType();
724 const llvm::Type* LLVMTy = CGM.getTypes().ConvertType(RetTy);
Owen Andersonc9c88b42009-07-31 20:28:54 +0000725 llvm::Constant* Zero = llvm::Constant::getNullValue(LLVMTy);
John McCall0cfeb632009-07-28 01:00:58 +0000726 Builder.CreateStore(Zero, ReturnValue);
727 }
728 }
729
Mike Stumpf5408fe2009-05-16 07:57:57 +0000730 // FIXME: We no longer need the types from FunctionArgList; lift up and
731 // simplify.
Daniel Dunbar5251afa2009-02-03 06:02:10 +0000732
Daniel Dunbar17b708d2008-09-09 23:27:19 +0000733 // Emit allocs for param decls. Give the LLVM Argument nodes names.
734 llvm::Function::arg_iterator AI = Fn->arg_begin();
Mike Stump1eb44332009-09-09 15:08:12 +0000735
Daniel Dunbar17b708d2008-09-09 23:27:19 +0000736 // Name the struct return argument.
Daniel Dunbar88b53962009-02-02 22:03:45 +0000737 if (CGM.ReturnTypeUsesSret(FI)) {
Daniel Dunbar17b708d2008-09-09 23:27:19 +0000738 AI->setName("agg.result");
739 ++AI;
740 }
Mike Stump1eb44332009-09-09 15:08:12 +0000741
Daniel Dunbar4b5f0a42009-02-04 21:17:21 +0000742 assert(FI.arg_size() == Args.size() &&
743 "Mismatch between function signature & arguments.");
Daniel Dunbarb225be42009-02-03 05:59:18 +0000744 CGFunctionInfo::const_arg_iterator info_it = FI.arg_begin();
Daniel Dunbar17b708d2008-09-09 23:27:19 +0000745 for (FunctionArgList::const_iterator i = Args.begin(), e = Args.end();
Daniel Dunbarb225be42009-02-03 05:59:18 +0000746 i != e; ++i, ++info_it) {
Daniel Dunbar17b708d2008-09-09 23:27:19 +0000747 const VarDecl *Arg = i->first;
Daniel Dunbarb225be42009-02-03 05:59:18 +0000748 QualType Ty = info_it->type;
749 const ABIArgInfo &ArgI = info_it->info;
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000750
751 switch (ArgI.getKind()) {
Daniel Dunbar1f745982009-02-05 09:16:39 +0000752 case ABIArgInfo::Indirect: {
753 llvm::Value* V = AI;
754 if (hasAggregateLLVMType(Ty)) {
755 // Do nothing, aggregates and complex variables are accessed by
756 // reference.
757 } else {
758 // Load scalar value from indirect argument.
Daniel Dunbaradc8bdd2009-02-10 01:51:39 +0000759 V = EmitLoadOfScalar(V, false, Ty);
Daniel Dunbar1f745982009-02-05 09:16:39 +0000760 if (!getContext().typesAreCompatible(Ty, Arg->getType())) {
761 // This must be a promotion, for something like
762 // "void a(x) short x; {..."
763 V = EmitScalarConversion(V, Ty, Arg->getType());
764 }
765 }
Mike Stump1eb44332009-09-09 15:08:12 +0000766 EmitParmDecl(*Arg, V);
Daniel Dunbar1f745982009-02-05 09:16:39 +0000767 break;
768 }
Anton Korobeynikovcc6fa882009-06-06 09:36:29 +0000769
770 case ABIArgInfo::Extend:
Daniel Dunbar46327aa2009-02-03 06:17:37 +0000771 case ABIArgInfo::Direct: {
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000772 assert(AI != Fn->arg_end() && "Argument mismatch!");
773 llvm::Value* V = AI;
Daniel Dunbar2fbf2f52009-02-05 11:13:54 +0000774 if (hasAggregateLLVMType(Ty)) {
775 // Create a temporary alloca to hold the argument; the rest of
776 // codegen expects to access aggregates & complex values by
777 // reference.
Daniel Dunbar195337d2010-02-09 02:48:28 +0000778 V = CreateMemTemp(Ty);
Daniel Dunbar2fbf2f52009-02-05 11:13:54 +0000779 Builder.CreateStore(AI, V);
780 } else {
John McCalld8e10d22010-03-27 00:47:27 +0000781 if (Arg->getType().isRestrictQualified())
782 AI->addAttr(llvm::Attribute::NoAlias);
783
Daniel Dunbar2fbf2f52009-02-05 11:13:54 +0000784 if (!getContext().typesAreCompatible(Ty, Arg->getType())) {
785 // This must be a promotion, for something like
786 // "void a(x) short x; {..."
787 V = EmitScalarConversion(V, Ty, Arg->getType());
788 }
Daniel Dunbar17b708d2008-09-09 23:27:19 +0000789 }
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000790 EmitParmDecl(*Arg, V);
791 break;
792 }
Mike Stump1eb44332009-09-09 15:08:12 +0000793
Daniel Dunbar56273772008-09-17 00:51:38 +0000794 case ABIArgInfo::Expand: {
Daniel Dunbarb225be42009-02-03 05:59:18 +0000795 // If this structure was expanded into multiple arguments then
Daniel Dunbar56273772008-09-17 00:51:38 +0000796 // we need to create a temporary and reconstruct it from the
797 // arguments.
Daniel Dunbar195337d2010-02-09 02:48:28 +0000798 llvm::Value *Temp = CreateMemTemp(Ty, Arg->getName() + ".addr");
Daniel Dunbar56273772008-09-17 00:51:38 +0000799 // FIXME: What are the right qualifiers here?
Mike Stump1eb44332009-09-09 15:08:12 +0000800 llvm::Function::arg_iterator End =
John McCall0953e762009-09-24 19:53:00 +0000801 ExpandTypeFromArgs(Ty, LValue::MakeAddr(Temp, Qualifiers()), AI);
Daniel Dunbar56273772008-09-17 00:51:38 +0000802 EmitParmDecl(*Arg, Temp);
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000803
Daniel Dunbar56273772008-09-17 00:51:38 +0000804 // Name the arguments used in expansion and increment AI.
805 unsigned Index = 0;
806 for (; AI != End; ++AI, ++Index)
Daniel Dunbar259e9cc2009-10-19 01:21:05 +0000807 AI->setName(Arg->getName() + "." + llvm::Twine(Index));
Daniel Dunbar56273772008-09-17 00:51:38 +0000808 continue;
809 }
Daniel Dunbar11434922009-01-26 21:26:08 +0000810
811 case ABIArgInfo::Ignore:
Daniel Dunbar8b979d92009-02-10 00:06:49 +0000812 // Initialize the local variable appropriately.
Mike Stump1eb44332009-09-09 15:08:12 +0000813 if (hasAggregateLLVMType(Ty)) {
Daniel Dunbar195337d2010-02-09 02:48:28 +0000814 EmitParmDecl(*Arg, CreateMemTemp(Ty));
Daniel Dunbar8b979d92009-02-10 00:06:49 +0000815 } else {
816 EmitParmDecl(*Arg, llvm::UndefValue::get(ConvertType(Arg->getType())));
817 }
Mike Stump1eb44332009-09-09 15:08:12 +0000818
Daniel Dunbar59e5a0e2009-02-03 20:00:13 +0000819 // Skip increment, no matching LLVM parameter.
Mike Stump1eb44332009-09-09 15:08:12 +0000820 continue;
Daniel Dunbar11434922009-01-26 21:26:08 +0000821
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +0000822 case ABIArgInfo::Coerce: {
823 assert(AI != Fn->arg_end() && "Argument mismatch!");
Mike Stumpf5408fe2009-05-16 07:57:57 +0000824 // FIXME: This is very wasteful; EmitParmDecl is just going to drop the
825 // result in a new alloca anyway, so we could just store into that
826 // directly if we broke the abstraction down more.
Daniel Dunbar195337d2010-02-09 02:48:28 +0000827 llvm::Value *V = CreateMemTemp(Ty, "coerce");
Anders Carlssond2490a92009-12-24 20:40:36 +0000828 CreateCoercedStore(AI, V, /*DestIsVolatile=*/false, *this);
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +0000829 // Match to what EmitParmDecl is expecting for this type.
Daniel Dunbar8b29a382009-02-04 07:22:24 +0000830 if (!CodeGenFunction::hasAggregateLLVMType(Ty)) {
Daniel Dunbaradc8bdd2009-02-10 01:51:39 +0000831 V = EmitLoadOfScalar(V, false, Ty);
Daniel Dunbar8b29a382009-02-04 07:22:24 +0000832 if (!getContext().typesAreCompatible(Ty, Arg->getType())) {
833 // This must be a promotion, for something like
834 // "void a(x) short x; {..."
835 V = EmitScalarConversion(V, Ty, Arg->getType());
836 }
837 }
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +0000838 EmitParmDecl(*Arg, V);
839 break;
840 }
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000841 }
Daniel Dunbar56273772008-09-17 00:51:38 +0000842
843 ++AI;
Daniel Dunbar17b708d2008-09-09 23:27:19 +0000844 }
845 assert(AI == Fn->arg_end() && "Argument mismatch!");
846}
847
Chris Lattner35b21b82010-06-27 01:06:27 +0000848void CodeGenFunction::EmitFunctionEpilog(const CGFunctionInfo &FI) {
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +0000849 // Functions with no result always return void.
Chris Lattnerc6e6dd22010-06-26 23:13:19 +0000850 if (ReturnValue == 0) {
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +0000851 Builder.CreateRetVoid();
Chris Lattnerc6e6dd22010-06-26 23:13:19 +0000852 return;
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +0000853 }
Chris Lattnerc6e6dd22010-06-26 23:13:19 +0000854
855 llvm::Value *RV = 0;
856 QualType RetTy = FI.getReturnType();
857 const ABIArgInfo &RetAI = FI.getReturnInfo();
858
859 switch (RetAI.getKind()) {
860 case ABIArgInfo::Indirect:
861 if (RetTy->isAnyComplexType()) {
862 ComplexPairTy RT = LoadComplexFromAddr(ReturnValue, false);
863 StoreComplexToAddr(RT, CurFn->arg_begin(), false);
864 } else if (CodeGenFunction::hasAggregateLLVMType(RetTy)) {
865 // Do nothing; aggregrates get evaluated directly into the destination.
866 } else {
867 EmitStoreOfScalar(Builder.CreateLoad(ReturnValue), CurFn->arg_begin(),
868 false, RetTy);
869 }
870 break;
871
872 case ABIArgInfo::Extend:
Chris Lattner35b21b82010-06-27 01:06:27 +0000873 case ABIArgInfo::Direct: {
874 // The internal return value temp always will have pointer-to-return-type
875 // type, just do a load.
876
877 // If the instruction right before the insertion point is a store to the
878 // return value, we can elide the load, zap the store, and usually zap the
879 // alloca.
880 llvm::BasicBlock *InsertBB = Builder.GetInsertBlock();
881 llvm::StoreInst *SI = 0;
882 if (InsertBB->empty() ||
883 !(SI = dyn_cast<llvm::StoreInst>(&InsertBB->back())) ||
884 SI->getPointerOperand() != ReturnValue || SI->isVolatile()) {
885 RV = Builder.CreateLoad(ReturnValue);
886 } else {
887 // Get the stored value and nuke the now-dead store.
888 RV = SI->getValueOperand();
889 SI->eraseFromParent();
890
891 // If that was the only use of the return value, nuke it as well now.
892 if (ReturnValue->use_empty() && isa<llvm::AllocaInst>(ReturnValue)) {
893 cast<llvm::AllocaInst>(ReturnValue)->eraseFromParent();
894 ReturnValue = 0;
895 }
896 }
Chris Lattnerc6e6dd22010-06-26 23:13:19 +0000897 break;
Chris Lattner35b21b82010-06-27 01:06:27 +0000898 }
Chris Lattnerc6e6dd22010-06-26 23:13:19 +0000899 case ABIArgInfo::Ignore:
900 break;
901
902 case ABIArgInfo::Coerce:
903 RV = CreateCoercedLoad(ReturnValue, RetAI.getCoerceToType(), *this);
904 break;
905
906 case ABIArgInfo::Expand:
907 assert(0 && "Invalid ABI kind for return argument");
908 }
909
910 if (RV)
911 Builder.CreateRet(RV);
912 else
913 Builder.CreateRetVoid();
Daniel Dunbar17b708d2008-09-09 23:27:19 +0000914}
915
John McCall27360712010-05-26 22:34:26 +0000916RValue CodeGenFunction::EmitDelegateCallArg(const VarDecl *Param) {
917 // StartFunction converted the ABI-lowered parameter(s) into a
918 // local alloca. We need to turn that into an r-value suitable
919 // for EmitCall.
920 llvm::Value *Local = GetAddrOfLocalVar(Param);
921
922 QualType ArgType = Param->getType();
923
924 // For the most part, we just need to load the alloca, except:
925 // 1) aggregate r-values are actually pointers to temporaries, and
926 // 2) references to aggregates are pointers directly to the aggregate.
927 // I don't know why references to non-aggregates are different here.
928 if (const ReferenceType *RefType = ArgType->getAs<ReferenceType>()) {
929 if (hasAggregateLLVMType(RefType->getPointeeType()))
930 return RValue::getAggregate(Local);
931
932 // Locals which are references to scalars are represented
933 // with allocas holding the pointer.
934 return RValue::get(Builder.CreateLoad(Local));
935 }
936
937 if (ArgType->isAnyComplexType())
938 return RValue::getComplex(LoadComplexFromAddr(Local, /*volatile*/ false));
939
940 if (hasAggregateLLVMType(ArgType))
941 return RValue::getAggregate(Local);
942
943 return RValue::get(EmitLoadOfScalar(Local, false, ArgType));
944}
945
Anders Carlsson0139bb92009-04-08 20:47:54 +0000946RValue CodeGenFunction::EmitCallArg(const Expr *E, QualType ArgType) {
Anders Carlsson4029ca72009-05-20 00:24:07 +0000947 if (ArgType->isReferenceType())
Anders Carlsson32f36ba2010-06-26 16:35:32 +0000948 return EmitReferenceBindingToExpr(E, /*InitializedDecl=*/0);
Mike Stump1eb44332009-09-09 15:08:12 +0000949
Anders Carlsson0139bb92009-04-08 20:47:54 +0000950 return EmitAnyExprToTemp(E);
951}
952
Daniel Dunbar88b53962009-02-02 22:03:45 +0000953RValue CodeGenFunction::EmitCall(const CGFunctionInfo &CallInfo,
Mike Stump1eb44332009-09-09 15:08:12 +0000954 llvm::Value *Callee,
Anders Carlssonf3c47c92009-12-24 19:25:24 +0000955 ReturnValueSlot ReturnValue,
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +0000956 const CallArgList &CallArgs,
David Chisnalldd5c98f2010-05-01 11:15:56 +0000957 const Decl *TargetDecl,
David Chisnall4b02afc2010-05-02 13:41:58 +0000958 llvm::Instruction **callOrInvoke) {
Mike Stumpf5408fe2009-05-16 07:57:57 +0000959 // FIXME: We no longer need the types from CallArgs; lift up and simplify.
Daniel Dunbar17b708d2008-09-09 23:27:19 +0000960 llvm::SmallVector<llvm::Value*, 16> Args;
Daniel Dunbar17b708d2008-09-09 23:27:19 +0000961
962 // Handle struct-return functions by passing a pointer to the
963 // location that we would like to return into.
Daniel Dunbarbb36d332009-02-02 21:43:58 +0000964 QualType RetTy = CallInfo.getReturnType();
Daniel Dunbarb225be42009-02-03 05:59:18 +0000965 const ABIArgInfo &RetAI = CallInfo.getReturnInfo();
Mike Stump1eb44332009-09-09 15:08:12 +0000966
967
Chris Lattner5db7ae52009-06-13 00:26:38 +0000968 // If the call returns a temporary with struct return, create a temporary
Anders Carlssond2490a92009-12-24 20:40:36 +0000969 // alloca to hold the result, unless one is given to us.
970 if (CGM.ReturnTypeUsesSret(CallInfo)) {
971 llvm::Value *Value = ReturnValue.getValue();
972 if (!Value)
Daniel Dunbar195337d2010-02-09 02:48:28 +0000973 Value = CreateMemTemp(RetTy);
Anders Carlssond2490a92009-12-24 20:40:36 +0000974 Args.push_back(Value);
975 }
Mike Stump1eb44332009-09-09 15:08:12 +0000976
Daniel Dunbar4b5f0a42009-02-04 21:17:21 +0000977 assert(CallInfo.arg_size() == CallArgs.size() &&
978 "Mismatch between function signature & arguments.");
Daniel Dunbarb225be42009-02-03 05:59:18 +0000979 CGFunctionInfo::const_arg_iterator info_it = CallInfo.arg_begin();
Mike Stump1eb44332009-09-09 15:08:12 +0000980 for (CallArgList::const_iterator I = CallArgs.begin(), E = CallArgs.end();
Daniel Dunbarb225be42009-02-03 05:59:18 +0000981 I != E; ++I, ++info_it) {
982 const ABIArgInfo &ArgInfo = info_it->info;
Daniel Dunbar17b708d2008-09-09 23:27:19 +0000983 RValue RV = I->first;
Daniel Dunbar56273772008-09-17 00:51:38 +0000984
985 switch (ArgInfo.getKind()) {
Daniel Dunbar11e383a2009-02-05 08:00:50 +0000986 case ABIArgInfo::Indirect:
Daniel Dunbar1f745982009-02-05 09:16:39 +0000987 if (RV.isScalar() || RV.isComplex()) {
988 // Make a temporary alloca to pass the argument.
Daniel Dunbar195337d2010-02-09 02:48:28 +0000989 Args.push_back(CreateMemTemp(I->second));
Daniel Dunbar1f745982009-02-05 09:16:39 +0000990 if (RV.isScalar())
Anders Carlssonb4aa4662009-05-19 18:50:41 +0000991 EmitStoreOfScalar(RV.getScalarVal(), Args.back(), false, I->second);
Daniel Dunbar1f745982009-02-05 09:16:39 +0000992 else
Mike Stump1eb44332009-09-09 15:08:12 +0000993 StoreComplexToAddr(RV.getComplexVal(), Args.back(), false);
Daniel Dunbar1f745982009-02-05 09:16:39 +0000994 } else {
995 Args.push_back(RV.getAggregateAddr());
996 }
997 break;
998
Anton Korobeynikovcc6fa882009-06-06 09:36:29 +0000999 case ABIArgInfo::Extend:
Daniel Dunbar46327aa2009-02-03 06:17:37 +00001000 case ABIArgInfo::Direct:
Daniel Dunbar56273772008-09-17 00:51:38 +00001001 if (RV.isScalar()) {
1002 Args.push_back(RV.getScalarVal());
1003 } else if (RV.isComplex()) {
Daniel Dunbar2fbf2f52009-02-05 11:13:54 +00001004 llvm::Value *Tmp = llvm::UndefValue::get(ConvertType(I->second));
1005 Tmp = Builder.CreateInsertValue(Tmp, RV.getComplexVal().first, 0);
1006 Tmp = Builder.CreateInsertValue(Tmp, RV.getComplexVal().second, 1);
1007 Args.push_back(Tmp);
Daniel Dunbar56273772008-09-17 00:51:38 +00001008 } else {
Daniel Dunbar2fbf2f52009-02-05 11:13:54 +00001009 Args.push_back(Builder.CreateLoad(RV.getAggregateAddr()));
Daniel Dunbar56273772008-09-17 00:51:38 +00001010 }
1011 break;
Mike Stump1eb44332009-09-09 15:08:12 +00001012
Daniel Dunbar11434922009-01-26 21:26:08 +00001013 case ABIArgInfo::Ignore:
1014 break;
1015
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +00001016 case ABIArgInfo::Coerce: {
1017 // FIXME: Avoid the conversion through memory if possible.
1018 llvm::Value *SrcPtr;
1019 if (RV.isScalar()) {
Daniel Dunbar195337d2010-02-09 02:48:28 +00001020 SrcPtr = CreateMemTemp(I->second, "coerce");
Anders Carlssonb4aa4662009-05-19 18:50:41 +00001021 EmitStoreOfScalar(RV.getScalarVal(), SrcPtr, false, I->second);
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +00001022 } else if (RV.isComplex()) {
Daniel Dunbar195337d2010-02-09 02:48:28 +00001023 SrcPtr = CreateMemTemp(I->second, "coerce");
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +00001024 StoreComplexToAddr(RV.getComplexVal(), SrcPtr, false);
Mike Stump1eb44332009-09-09 15:08:12 +00001025 } else
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +00001026 SrcPtr = RV.getAggregateAddr();
Mike Stump1eb44332009-09-09 15:08:12 +00001027 Args.push_back(CreateCoercedLoad(SrcPtr, ArgInfo.getCoerceToType(),
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +00001028 *this));
1029 break;
1030 }
1031
Daniel Dunbar56273772008-09-17 00:51:38 +00001032 case ABIArgInfo::Expand:
1033 ExpandTypeToArgs(I->second, RV, Args);
1034 break;
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001035 }
1036 }
Mike Stump1eb44332009-09-09 15:08:12 +00001037
Chris Lattner5db7ae52009-06-13 00:26:38 +00001038 // If the callee is a bitcast of a function to a varargs pointer to function
1039 // type, check to see if we can remove the bitcast. This handles some cases
1040 // with unprototyped functions.
1041 if (llvm::ConstantExpr *CE = dyn_cast<llvm::ConstantExpr>(Callee))
1042 if (llvm::Function *CalleeF = dyn_cast<llvm::Function>(CE->getOperand(0))) {
1043 const llvm::PointerType *CurPT=cast<llvm::PointerType>(Callee->getType());
1044 const llvm::FunctionType *CurFT =
1045 cast<llvm::FunctionType>(CurPT->getElementType());
1046 const llvm::FunctionType *ActualFT = CalleeF->getFunctionType();
Mike Stump1eb44332009-09-09 15:08:12 +00001047
Chris Lattner5db7ae52009-06-13 00:26:38 +00001048 if (CE->getOpcode() == llvm::Instruction::BitCast &&
1049 ActualFT->getReturnType() == CurFT->getReturnType() &&
Chris Lattnerd6bebbf2009-06-23 01:38:41 +00001050 ActualFT->getNumParams() == CurFT->getNumParams() &&
1051 ActualFT->getNumParams() == Args.size()) {
Chris Lattner5db7ae52009-06-13 00:26:38 +00001052 bool ArgsMatch = true;
1053 for (unsigned i = 0, e = ActualFT->getNumParams(); i != e; ++i)
1054 if (ActualFT->getParamType(i) != CurFT->getParamType(i)) {
1055 ArgsMatch = false;
1056 break;
1057 }
Mike Stump1eb44332009-09-09 15:08:12 +00001058
Chris Lattner5db7ae52009-06-13 00:26:38 +00001059 // Strip the cast if we can get away with it. This is a nice cleanup,
1060 // but also allows us to inline the function at -O0 if it is marked
1061 // always_inline.
1062 if (ArgsMatch)
1063 Callee = CalleeF;
1064 }
1065 }
Mike Stump1eb44332009-09-09 15:08:12 +00001066
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001067
Daniel Dunbar9834ffb2009-02-23 17:26:39 +00001068 llvm::BasicBlock *InvokeDest = getInvokeDest();
Daniel Dunbarca6408c2009-09-12 00:59:20 +00001069 unsigned CallingConv;
Devang Patel761d7f72008-09-25 21:02:23 +00001070 CodeGen::AttributeListType AttributeList;
Daniel Dunbarca6408c2009-09-12 00:59:20 +00001071 CGM.ConstructAttributeList(CallInfo, TargetDecl, AttributeList, CallingConv);
Daniel Dunbar9834ffb2009-02-23 17:26:39 +00001072 llvm::AttrListPtr Attrs = llvm::AttrListPtr::get(AttributeList.begin(),
1073 AttributeList.end());
Mike Stump1eb44332009-09-09 15:08:12 +00001074
Daniel Dunbard14151d2009-03-02 04:32:35 +00001075 llvm::CallSite CS;
1076 if (!InvokeDest || (Attrs.getFnAttributes() & llvm::Attribute::NoUnwind)) {
Jay Foadbeaaccd2009-05-21 09:52:38 +00001077 CS = Builder.CreateCall(Callee, Args.data(), Args.data()+Args.size());
Daniel Dunbar9834ffb2009-02-23 17:26:39 +00001078 } else {
1079 llvm::BasicBlock *Cont = createBasicBlock("invoke.cont");
Mike Stump1eb44332009-09-09 15:08:12 +00001080 CS = Builder.CreateInvoke(Callee, Cont, InvokeDest,
Jay Foadbeaaccd2009-05-21 09:52:38 +00001081 Args.data(), Args.data()+Args.size());
Daniel Dunbar9834ffb2009-02-23 17:26:39 +00001082 EmitBlock(Cont);
Daniel Dunbarf4fe0f02009-02-20 18:54:31 +00001083 }
David Chisnall4b02afc2010-05-02 13:41:58 +00001084 if (callOrInvoke) {
1085 *callOrInvoke = CS.getInstruction();
David Chisnalldd5c98f2010-05-01 11:15:56 +00001086 }
Daniel Dunbarf4fe0f02009-02-20 18:54:31 +00001087
Daniel Dunbard14151d2009-03-02 04:32:35 +00001088 CS.setAttributes(Attrs);
Daniel Dunbarca6408c2009-09-12 00:59:20 +00001089 CS.setCallingConv(static_cast<llvm::CallingConv::ID>(CallingConv));
Daniel Dunbard14151d2009-03-02 04:32:35 +00001090
1091 // If the call doesn't return, finish the basic block and clear the
1092 // insertion point; this allows the rest of IRgen to discard
1093 // unreachable code.
1094 if (CS.doesNotReturn()) {
1095 Builder.CreateUnreachable();
1096 Builder.ClearInsertionPoint();
Mike Stump1eb44332009-09-09 15:08:12 +00001097
Mike Stumpf5408fe2009-05-16 07:57:57 +00001098 // FIXME: For now, emit a dummy basic block because expr emitters in
1099 // generally are not ready to handle emitting expressions at unreachable
1100 // points.
Daniel Dunbard14151d2009-03-02 04:32:35 +00001101 EnsureInsertPoint();
Mike Stump1eb44332009-09-09 15:08:12 +00001102
Daniel Dunbard14151d2009-03-02 04:32:35 +00001103 // Return a reasonable RValue.
1104 return GetUndefRValue(RetTy);
Mike Stump1eb44332009-09-09 15:08:12 +00001105 }
Daniel Dunbard14151d2009-03-02 04:32:35 +00001106
1107 llvm::Instruction *CI = CS.getInstruction();
Benjamin Kramerffbb15e2009-10-05 13:47:21 +00001108 if (Builder.isNamePreserving() && !CI->getType()->isVoidTy())
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001109 CI->setName("call");
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001110
1111 switch (RetAI.getKind()) {
Daniel Dunbar11e383a2009-02-05 08:00:50 +00001112 case ABIArgInfo::Indirect:
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001113 if (RetTy->isAnyComplexType())
Daniel Dunbar56273772008-09-17 00:51:38 +00001114 return RValue::getComplex(LoadComplexFromAddr(Args[0], false));
Chris Lattner34030842009-03-22 00:32:22 +00001115 if (CodeGenFunction::hasAggregateLLVMType(RetTy))
Daniel Dunbar56273772008-09-17 00:51:38 +00001116 return RValue::getAggregate(Args[0]);
Chris Lattner34030842009-03-22 00:32:22 +00001117 return RValue::get(EmitLoadOfScalar(Args[0], false, RetTy));
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001118
Anton Korobeynikovcc6fa882009-06-06 09:36:29 +00001119 case ABIArgInfo::Extend:
Daniel Dunbar46327aa2009-02-03 06:17:37 +00001120 case ABIArgInfo::Direct:
Daniel Dunbar2fbf2f52009-02-05 11:13:54 +00001121 if (RetTy->isAnyComplexType()) {
1122 llvm::Value *Real = Builder.CreateExtractValue(CI, 0);
1123 llvm::Value *Imag = Builder.CreateExtractValue(CI, 1);
1124 return RValue::getComplex(std::make_pair(Real, Imag));
Chris Lattner34030842009-03-22 00:32:22 +00001125 }
1126 if (CodeGenFunction::hasAggregateLLVMType(RetTy)) {
Anders Carlssond2490a92009-12-24 20:40:36 +00001127 llvm::Value *DestPtr = ReturnValue.getValue();
1128 bool DestIsVolatile = ReturnValue.isVolatile();
1129
1130 if (!DestPtr) {
Daniel Dunbar195337d2010-02-09 02:48:28 +00001131 DestPtr = CreateMemTemp(RetTy, "agg.tmp");
Anders Carlssond2490a92009-12-24 20:40:36 +00001132 DestIsVolatile = false;
1133 }
1134 Builder.CreateStore(CI, DestPtr, DestIsVolatile);
1135 return RValue::getAggregate(DestPtr);
Chris Lattner34030842009-03-22 00:32:22 +00001136 }
1137 return RValue::get(CI);
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001138
Daniel Dunbar11434922009-01-26 21:26:08 +00001139 case ABIArgInfo::Ignore:
Daniel Dunbar0bcc5212009-02-03 06:30:17 +00001140 // If we are ignoring an argument that had a result, make sure to
1141 // construct the appropriate return value for our caller.
Daniel Dunbar13e81732009-02-05 07:09:07 +00001142 return GetUndefRValue(RetTy);
Daniel Dunbar11434922009-01-26 21:26:08 +00001143
Daniel Dunbar639ffe42008-09-10 07:04:09 +00001144 case ABIArgInfo::Coerce: {
Anders Carlssond2490a92009-12-24 20:40:36 +00001145 llvm::Value *DestPtr = ReturnValue.getValue();
1146 bool DestIsVolatile = ReturnValue.isVolatile();
1147
1148 if (!DestPtr) {
Daniel Dunbar195337d2010-02-09 02:48:28 +00001149 DestPtr = CreateMemTemp(RetTy, "coerce");
Anders Carlssond2490a92009-12-24 20:40:36 +00001150 DestIsVolatile = false;
1151 }
1152
1153 CreateCoercedStore(CI, DestPtr, DestIsVolatile, *this);
Anders Carlssonad3d6912008-11-25 22:21:48 +00001154 if (RetTy->isAnyComplexType())
Anders Carlssond2490a92009-12-24 20:40:36 +00001155 return RValue::getComplex(LoadComplexFromAddr(DestPtr, false));
Chris Lattner34030842009-03-22 00:32:22 +00001156 if (CodeGenFunction::hasAggregateLLVMType(RetTy))
Anders Carlssond2490a92009-12-24 20:40:36 +00001157 return RValue::getAggregate(DestPtr);
1158 return RValue::get(EmitLoadOfScalar(DestPtr, false, RetTy));
Daniel Dunbar639ffe42008-09-10 07:04:09 +00001159 }
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001160
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001161 case ABIArgInfo::Expand:
Mike Stump1eb44332009-09-09 15:08:12 +00001162 assert(0 && "Invalid ABI kind for return argument");
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001163 }
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001164
1165 assert(0 && "Unhandled ABIArgInfo::Kind");
1166 return RValue::get(0);
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001167}
Daniel Dunbarb4094ea2009-02-10 20:44:09 +00001168
1169/* VarArg handling */
1170
1171llvm::Value *CodeGenFunction::EmitVAArg(llvm::Value *VAListAddr, QualType Ty) {
1172 return CGM.getTypes().getABIInfo().EmitVAArg(VAListAddr, Ty, *this);
1173}