blob: 32547db7fa33174f103fef9d551c9089d40a4a7c [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"
Chris Lattnerce933992010-06-29 16:40:28 +000016#include "ABIInfo.h"
Daniel Dunbar0dbe2272008-09-08 21:33:45 +000017#include "CodeGenFunction.h"
Daniel Dunbarb7688072008-09-10 00:41:16 +000018#include "CodeGenModule.h"
Daniel Dunbar6b1da0e2008-10-13 17:02:26 +000019#include "clang/Basic/TargetInfo.h"
Daniel Dunbar0dbe2272008-09-08 21:33:45 +000020#include "clang/AST/Decl.h"
Anders Carlssonf6f8ae52009-04-03 22:48:58 +000021#include "clang/AST/DeclCXX.h"
Daniel Dunbar0dbe2272008-09-08 21:33:45 +000022#include "clang/AST/DeclObjC.h"
Chandler Carruth06057ce2010-06-15 23:19:56 +000023#include "clang/Frontend/CodeGenOptions.h"
Devang Pateld0646bd2008-09-24 01:01:36 +000024#include "llvm/Attributes.h"
Daniel Dunbard14151d2009-03-02 04:32:35 +000025#include "llvm/Support/CallSite.h"
Daniel Dunbar54d1ccb2009-01-27 01:36:03 +000026#include "llvm/Target/TargetData.h"
Daniel Dunbar0dbe2272008-09-08 21:33:45 +000027using namespace clang;
28using namespace CodeGen;
29
30/***/
31
John McCall04a67a62010-02-05 21:31:56 +000032static unsigned ClangCallConvToLLVMCallConv(CallingConv CC) {
33 switch (CC) {
34 default: return llvm::CallingConv::C;
35 case CC_X86StdCall: return llvm::CallingConv::X86_StdCall;
36 case CC_X86FastCall: return llvm::CallingConv::X86_FastCall;
Douglas Gregorf813a2c2010-05-18 16:57:00 +000037 case CC_X86ThisCall: return llvm::CallingConv::X86_ThisCall;
John McCall04a67a62010-02-05 21:31:56 +000038 }
39}
40
John McCall0b0ef0a2010-02-24 07:14:12 +000041/// Derives the 'this' type for codegen purposes, i.e. ignoring method
42/// qualification.
43/// FIXME: address space qualification?
John McCallead608a2010-02-26 00:48:12 +000044static CanQualType GetThisType(ASTContext &Context, const CXXRecordDecl *RD) {
45 QualType RecTy = Context.getTagDeclType(RD)->getCanonicalTypeInternal();
46 return Context.getPointerType(CanQualType::CreateUnsafe(RecTy));
Daniel Dunbar45c25ba2008-09-10 04:01:49 +000047}
48
John McCall0b0ef0a2010-02-24 07:14:12 +000049/// Returns the canonical formal type of the given C++ method.
John McCallead608a2010-02-26 00:48:12 +000050static CanQual<FunctionProtoType> GetFormalType(const CXXMethodDecl *MD) {
51 return MD->getType()->getCanonicalTypeUnqualified()
52 .getAs<FunctionProtoType>();
John McCall0b0ef0a2010-02-24 07:14:12 +000053}
54
55/// Returns the "extra-canonicalized" return type, which discards
56/// qualifiers on the return type. Codegen doesn't care about them,
57/// and it makes ABI code a little easier to be able to assume that
58/// all parameter and return types are top-level unqualified.
John McCallead608a2010-02-26 00:48:12 +000059static CanQualType GetReturnType(QualType RetTy) {
60 return RetTy->getCanonicalTypeUnqualified().getUnqualifiedType();
John McCall0b0ef0a2010-02-24 07:14:12 +000061}
62
63const CGFunctionInfo &
Chris Lattnerbcaedae2010-06-30 19:14:05 +000064CodeGenTypes::getFunctionInfo(CanQual<FunctionNoProtoType> FTNP,
65 bool IsRecursive) {
John McCallead608a2010-02-26 00:48:12 +000066 return getFunctionInfo(FTNP->getResultType().getUnqualifiedType(),
67 llvm::SmallVector<CanQualType, 16>(),
Chris Lattnerbcaedae2010-06-30 19:14:05 +000068 FTNP->getExtInfo(), IsRecursive);
John McCall0b0ef0a2010-02-24 07:14:12 +000069}
70
71/// \param Args - contains any initial parameters besides those
72/// in the formal type
73static const CGFunctionInfo &getFunctionInfo(CodeGenTypes &CGT,
John McCallead608a2010-02-26 00:48:12 +000074 llvm::SmallVectorImpl<CanQualType> &ArgTys,
Chris Lattnerbcaedae2010-06-30 19:14:05 +000075 CanQual<FunctionProtoType> FTP,
76 bool IsRecursive = false) {
Daniel Dunbar541b63b2009-02-02 23:23:47 +000077 // FIXME: Kill copy.
Daniel Dunbar45c25ba2008-09-10 04:01:49 +000078 for (unsigned i = 0, e = FTP->getNumArgs(); i != e; ++i)
Daniel Dunbar541b63b2009-02-02 23:23:47 +000079 ArgTys.push_back(FTP->getArgType(i));
John McCallead608a2010-02-26 00:48:12 +000080 CanQualType ResTy = FTP->getResultType().getUnqualifiedType();
Chris Lattnerbcaedae2010-06-30 19:14:05 +000081 return CGT.getFunctionInfo(ResTy, ArgTys, FTP->getExtInfo(), IsRecursive);
John McCall0b0ef0a2010-02-24 07:14:12 +000082}
83
84const CGFunctionInfo &
Chris Lattnerbcaedae2010-06-30 19:14:05 +000085CodeGenTypes::getFunctionInfo(CanQual<FunctionProtoType> FTP,
86 bool IsRecursive) {
John McCallead608a2010-02-26 00:48:12 +000087 llvm::SmallVector<CanQualType, 16> ArgTys;
Chris Lattnerbcaedae2010-06-30 19:14:05 +000088 return ::getFunctionInfo(*this, ArgTys, FTP, IsRecursive);
Daniel Dunbarbac7c252009-09-11 22:24:53 +000089}
90
John McCall04a67a62010-02-05 21:31:56 +000091static CallingConv getCallingConventionForDecl(const Decl *D) {
Daniel Dunbarbac7c252009-09-11 22:24:53 +000092 // Set the appropriate calling convention for the Function.
93 if (D->hasAttr<StdCallAttr>())
John McCall04a67a62010-02-05 21:31:56 +000094 return CC_X86StdCall;
Daniel Dunbarbac7c252009-09-11 22:24:53 +000095
96 if (D->hasAttr<FastCallAttr>())
John McCall04a67a62010-02-05 21:31:56 +000097 return CC_X86FastCall;
Daniel Dunbarbac7c252009-09-11 22:24:53 +000098
Douglas Gregorf813a2c2010-05-18 16:57:00 +000099 if (D->hasAttr<ThisCallAttr>())
100 return CC_X86ThisCall;
101
John McCall04a67a62010-02-05 21:31:56 +0000102 return CC_C;
Daniel Dunbar45c25ba2008-09-10 04:01:49 +0000103}
104
Anders Carlsson375c31c2009-10-03 19:43:08 +0000105const CGFunctionInfo &CodeGenTypes::getFunctionInfo(const CXXRecordDecl *RD,
106 const FunctionProtoType *FTP) {
John McCallead608a2010-02-26 00:48:12 +0000107 llvm::SmallVector<CanQualType, 16> ArgTys;
John McCall0b0ef0a2010-02-24 07:14:12 +0000108
Anders Carlsson375c31c2009-10-03 19:43:08 +0000109 // Add the 'this' pointer.
John McCall0b0ef0a2010-02-24 07:14:12 +0000110 ArgTys.push_back(GetThisType(Context, RD));
111
112 return ::getFunctionInfo(*this, ArgTys,
John McCallead608a2010-02-26 00:48:12 +0000113 FTP->getCanonicalTypeUnqualified().getAs<FunctionProtoType>());
Anders Carlsson375c31c2009-10-03 19:43:08 +0000114}
115
Anders Carlssonf6f8ae52009-04-03 22:48:58 +0000116const CGFunctionInfo &CodeGenTypes::getFunctionInfo(const CXXMethodDecl *MD) {
John McCallead608a2010-02-26 00:48:12 +0000117 llvm::SmallVector<CanQualType, 16> ArgTys;
John McCall0b0ef0a2010-02-24 07:14:12 +0000118
Chris Lattner3eb67ca2009-05-12 20:27:19 +0000119 // Add the 'this' pointer unless this is a static method.
120 if (MD->isInstance())
John McCall0b0ef0a2010-02-24 07:14:12 +0000121 ArgTys.push_back(GetThisType(Context, MD->getParent()));
Mike Stump1eb44332009-09-09 15:08:12 +0000122
John McCall0b0ef0a2010-02-24 07:14:12 +0000123 return ::getFunctionInfo(*this, ArgTys, GetFormalType(MD));
Anders Carlssonf6f8ae52009-04-03 22:48:58 +0000124}
125
Anders Carlssonf6c56e22009-11-25 03:15:49 +0000126const CGFunctionInfo &CodeGenTypes::getFunctionInfo(const CXXConstructorDecl *D,
127 CXXCtorType Type) {
John McCallead608a2010-02-26 00:48:12 +0000128 llvm::SmallVector<CanQualType, 16> ArgTys;
Anders Carlssonf6c56e22009-11-25 03:15:49 +0000129
130 // Add the 'this' pointer.
John McCall0b0ef0a2010-02-24 07:14:12 +0000131 ArgTys.push_back(GetThisType(Context, D->getParent()));
Anders Carlssonf6c56e22009-11-25 03:15:49 +0000132
133 // Check if we need to add a VTT parameter (which has type void **).
134 if (Type == Ctor_Base && D->getParent()->getNumVBases() != 0)
135 ArgTys.push_back(Context.getPointerType(Context.VoidPtrTy));
John McCall0b0ef0a2010-02-24 07:14:12 +0000136
137 return ::getFunctionInfo(*this, ArgTys, GetFormalType(D));
Anders Carlssonf6c56e22009-11-25 03:15:49 +0000138}
139
140const CGFunctionInfo &CodeGenTypes::getFunctionInfo(const CXXDestructorDecl *D,
141 CXXDtorType Type) {
John McCallead608a2010-02-26 00:48:12 +0000142 llvm::SmallVector<CanQualType, 16> ArgTys;
Anders Carlssonf6c56e22009-11-25 03:15:49 +0000143
144 // Add the 'this' pointer.
John McCallead608a2010-02-26 00:48:12 +0000145 ArgTys.push_back(GetThisType(Context, D->getParent()));
Anders Carlssonf6c56e22009-11-25 03:15:49 +0000146
147 // Check if we need to add a VTT parameter (which has type void **).
148 if (Type == Dtor_Base && D->getParent()->getNumVBases() != 0)
149 ArgTys.push_back(Context.getPointerType(Context.VoidPtrTy));
John McCall0b0ef0a2010-02-24 07:14:12 +0000150
151 return ::getFunctionInfo(*this, ArgTys, GetFormalType(D));
Anders Carlssonf6c56e22009-11-25 03:15:49 +0000152}
153
Daniel Dunbar541b63b2009-02-02 23:23:47 +0000154const CGFunctionInfo &CodeGenTypes::getFunctionInfo(const FunctionDecl *FD) {
Chris Lattner3eb67ca2009-05-12 20:27:19 +0000155 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD))
Anders Carlssonf6f8ae52009-04-03 22:48:58 +0000156 if (MD->isInstance())
157 return getFunctionInfo(MD);
Mike Stump1eb44332009-09-09 15:08:12 +0000158
John McCallead608a2010-02-26 00:48:12 +0000159 CanQualType FTy = FD->getType()->getCanonicalTypeUnqualified();
160 assert(isa<FunctionType>(FTy));
John McCall0b0ef0a2010-02-24 07:14:12 +0000161 if (isa<FunctionNoProtoType>(FTy))
John McCallead608a2010-02-26 00:48:12 +0000162 return getFunctionInfo(FTy.getAs<FunctionNoProtoType>());
163 assert(isa<FunctionProtoType>(FTy));
164 return getFunctionInfo(FTy.getAs<FunctionProtoType>());
Daniel Dunbar0dbe2272008-09-08 21:33:45 +0000165}
166
Daniel Dunbar541b63b2009-02-02 23:23:47 +0000167const CGFunctionInfo &CodeGenTypes::getFunctionInfo(const ObjCMethodDecl *MD) {
John McCallead608a2010-02-26 00:48:12 +0000168 llvm::SmallVector<CanQualType, 16> ArgTys;
169 ArgTys.push_back(Context.getCanonicalParamType(MD->getSelfDecl()->getType()));
170 ArgTys.push_back(Context.getCanonicalParamType(Context.getObjCSelType()));
Daniel Dunbar541b63b2009-02-02 23:23:47 +0000171 // FIXME: Kill copy?
Chris Lattner20732162009-02-20 06:23:21 +0000172 for (ObjCMethodDecl::param_iterator i = MD->param_begin(),
John McCall0b0ef0a2010-02-24 07:14:12 +0000173 e = MD->param_end(); i != e; ++i) {
174 ArgTys.push_back(Context.getCanonicalParamType((*i)->getType()));
175 }
176 return getFunctionInfo(GetReturnType(MD->getResultType()),
177 ArgTys,
Rafael Espindola264ba482010-03-30 20:24:48 +0000178 FunctionType::ExtInfo(
179 /*NoReturn*/ false,
Rafael Espindola425ef722010-03-30 22:15:11 +0000180 /*RegParm*/ 0,
Rafael Espindola264ba482010-03-30 20:24:48 +0000181 getCallingConventionForDecl(MD)));
Daniel Dunbar0dbe2272008-09-08 21:33:45 +0000182}
183
Anders Carlssonb2bcf1c2010-02-06 02:44:09 +0000184const CGFunctionInfo &CodeGenTypes::getFunctionInfo(GlobalDecl GD) {
185 // FIXME: Do we need to handle ObjCMethodDecl?
186 const FunctionDecl *FD = cast<FunctionDecl>(GD.getDecl());
187
188 if (const CXXConstructorDecl *CD = dyn_cast<CXXConstructorDecl>(FD))
189 return getFunctionInfo(CD, GD.getCtorType());
190
191 if (const CXXDestructorDecl *DD = dyn_cast<CXXDestructorDecl>(FD))
192 return getFunctionInfo(DD, GD.getDtorType());
193
194 return getFunctionInfo(FD);
195}
196
Mike Stump1eb44332009-09-09 15:08:12 +0000197const CGFunctionInfo &CodeGenTypes::getFunctionInfo(QualType ResTy,
Daniel Dunbarbac7c252009-09-11 22:24:53 +0000198 const CallArgList &Args,
Rafael Espindola264ba482010-03-30 20:24:48 +0000199 const FunctionType::ExtInfo &Info) {
Daniel Dunbar541b63b2009-02-02 23:23:47 +0000200 // FIXME: Kill copy.
John McCallead608a2010-02-26 00:48:12 +0000201 llvm::SmallVector<CanQualType, 16> ArgTys;
Mike Stump1eb44332009-09-09 15:08:12 +0000202 for (CallArgList::const_iterator i = Args.begin(), e = Args.end();
Daniel Dunbar725ad312009-01-31 02:19:00 +0000203 i != e; ++i)
John McCall0b0ef0a2010-02-24 07:14:12 +0000204 ArgTys.push_back(Context.getCanonicalParamType(i->second));
Rafael Espindola264ba482010-03-30 20:24:48 +0000205 return getFunctionInfo(GetReturnType(ResTy), ArgTys, Info);
Daniel Dunbar725ad312009-01-31 02:19:00 +0000206}
207
Mike Stump1eb44332009-09-09 15:08:12 +0000208const CGFunctionInfo &CodeGenTypes::getFunctionInfo(QualType ResTy,
Daniel Dunbarbac7c252009-09-11 22:24:53 +0000209 const FunctionArgList &Args,
Rafael Espindola264ba482010-03-30 20:24:48 +0000210 const FunctionType::ExtInfo &Info) {
Daniel Dunbar541b63b2009-02-02 23:23:47 +0000211 // FIXME: Kill copy.
John McCallead608a2010-02-26 00:48:12 +0000212 llvm::SmallVector<CanQualType, 16> ArgTys;
Mike Stump1eb44332009-09-09 15:08:12 +0000213 for (FunctionArgList::const_iterator i = Args.begin(), e = Args.end();
Daniel Dunbarbb36d332009-02-02 21:43:58 +0000214 i != e; ++i)
John McCall0b0ef0a2010-02-24 07:14:12 +0000215 ArgTys.push_back(Context.getCanonicalParamType(i->second));
Rafael Espindola264ba482010-03-30 20:24:48 +0000216 return getFunctionInfo(GetReturnType(ResTy), ArgTys, Info);
Daniel Dunbar541b63b2009-02-02 23:23:47 +0000217}
218
John McCallead608a2010-02-26 00:48:12 +0000219const CGFunctionInfo &CodeGenTypes::getFunctionInfo(CanQualType ResTy,
220 const llvm::SmallVectorImpl<CanQualType> &ArgTys,
Chris Lattnerbcaedae2010-06-30 19:14:05 +0000221 const FunctionType::ExtInfo &Info,
222 bool IsRecursive) {
John McCallead608a2010-02-26 00:48:12 +0000223#ifndef NDEBUG
224 for (llvm::SmallVectorImpl<CanQualType>::const_iterator
225 I = ArgTys.begin(), E = ArgTys.end(); I != E; ++I)
226 assert(I->isCanonicalAsParam());
227#endif
228
Rafael Espindola425ef722010-03-30 22:15:11 +0000229 unsigned CC = ClangCallConvToLLVMCallConv(Info.getCC());
John McCall04a67a62010-02-05 21:31:56 +0000230
Daniel Dunbar40a6be62009-02-03 00:07:12 +0000231 // Lookup or create unique function info.
232 llvm::FoldingSetNodeID ID;
Rafael Espindola264ba482010-03-30 20:24:48 +0000233 CGFunctionInfo::Profile(ID, Info, ResTy,
Daniel Dunbarbac7c252009-09-11 22:24:53 +0000234 ArgTys.begin(), ArgTys.end());
Daniel Dunbar40a6be62009-02-03 00:07:12 +0000235
236 void *InsertPos = 0;
237 CGFunctionInfo *FI = FunctionInfos.FindNodeOrInsertPos(ID, InsertPos);
238 if (FI)
239 return *FI;
240
Daniel Dunbar88c2fa92009-02-03 05:31:23 +0000241 // Construct the function info.
Chris Lattnerce700162010-06-28 23:44:11 +0000242 FI = new CGFunctionInfo(CC, Info.getNoReturn(), Info.getRegParm(), ResTy,
Chris Lattnerbb521142010-06-29 18:13:52 +0000243 ArgTys.data(), ArgTys.size());
Daniel Dunbar35e67d42009-02-05 00:00:23 +0000244 FunctionInfos.InsertNode(FI, InsertPos);
Daniel Dunbar88c2fa92009-02-03 05:31:23 +0000245
Chris Lattner8640cd62010-06-29 01:08:48 +0000246 // ABI lowering wants to know what our preferred type for the argument is in
247 // various situations, pass it in.
248 llvm::SmallVector<const llvm::Type *, 8> PreferredArgTypes;
249 for (llvm::SmallVectorImpl<CanQualType>::const_iterator
Chris Lattnerbcaedae2010-06-30 19:14:05 +0000250 I = ArgTys.begin(), E = ArgTys.end(); I != E; ++I) {
251 // If this is being called from the guts of the ConvertType loop, make sure
252 // to call ConvertTypeRecursive so we don't get into issues with cyclic
253 // pointer type structures.
Chris Lattnera9fa8582010-07-01 06:20:47 +0000254 PreferredArgTypes.push_back(ConvertTypeRecursive(*I));
Chris Lattnerbcaedae2010-06-30 19:14:05 +0000255 }
Chris Lattnera9fa8582010-07-01 06:20:47 +0000256
Daniel Dunbar88c2fa92009-02-03 05:31:23 +0000257 // Compute ABI information.
Chris Lattner8640cd62010-06-29 01:08:48 +0000258 getABIInfo().computeInfo(*FI, getContext(), TheModule.getContext(),
259 PreferredArgTypes.data(), PreferredArgTypes.size());
Daniel Dunbar88c2fa92009-02-03 05:31:23 +0000260
Chris Lattnera9fa8582010-07-01 06:20:47 +0000261 // If this is a top-level call and ConvertTypeRecursive hit unresolved pointer
262 // types, resolve them now. These pointers may point to this function, which
263 // we *just* filled in the FunctionInfo for.
264 if (!IsRecursive && !PointersToResolve.empty()) {
265 // Use PATypeHolder's so that our preferred types don't dangle under
266 // refinement.
267 llvm::SmallVector<llvm::PATypeHolder, 8> Handles(PreferredArgTypes.begin(),
268 PreferredArgTypes.end());
269 HandleLateResolvedPointers();
270 PreferredArgTypes.clear();
271 PreferredArgTypes.append(Handles.begin(), Handles.end());
272 }
273
274
Daniel Dunbar40a6be62009-02-03 00:07:12 +0000275 return *FI;
Daniel Dunbar541b63b2009-02-02 23:23:47 +0000276}
277
Daniel Dunbarbac7c252009-09-11 22:24:53 +0000278CGFunctionInfo::CGFunctionInfo(unsigned _CallingConvention,
Chris Lattnerbb521142010-06-29 18:13:52 +0000279 bool _NoReturn, unsigned _RegParm,
John McCallead608a2010-02-26 00:48:12 +0000280 CanQualType ResTy,
Chris Lattnerbb521142010-06-29 18:13:52 +0000281 const CanQualType *ArgTys,
282 unsigned NumArgTys)
Daniel Dunbarca6408c2009-09-12 00:59:20 +0000283 : CallingConvention(_CallingConvention),
John McCall04a67a62010-02-05 21:31:56 +0000284 EffectiveCallingConvention(_CallingConvention),
Rafael Espindola425ef722010-03-30 22:15:11 +0000285 NoReturn(_NoReturn), RegParm(_RegParm)
Daniel Dunbarbac7c252009-09-11 22:24:53 +0000286{
Chris Lattnerbb521142010-06-29 18:13:52 +0000287 NumArgs = NumArgTys;
Chris Lattnerce700162010-06-28 23:44:11 +0000288
289 // FIXME: Coallocate with the CGFunctionInfo object.
Chris Lattnerbb521142010-06-29 18:13:52 +0000290 Args = new ArgInfo[1 + NumArgTys];
Daniel Dunbar88c2fa92009-02-03 05:31:23 +0000291 Args[0].type = ResTy;
Chris Lattnerbb521142010-06-29 18:13:52 +0000292 for (unsigned i = 0; i != NumArgTys; ++i)
Daniel Dunbar88c2fa92009-02-03 05:31:23 +0000293 Args[1 + i].type = ArgTys[i];
294}
295
296/***/
297
Mike Stump1eb44332009-09-09 15:08:12 +0000298void CodeGenTypes::GetExpandedTypes(QualType Ty,
Chris Lattnerbcaedae2010-06-30 19:14:05 +0000299 std::vector<const llvm::Type*> &ArgTys,
300 bool IsRecursive) {
Daniel Dunbar56273772008-09-17 00:51:38 +0000301 const RecordType *RT = Ty->getAsStructureType();
302 assert(RT && "Can only expand structure types.");
303 const RecordDecl *RD = RT->getDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000304 assert(!RD->hasFlexibleArrayMember() &&
Daniel Dunbar56273772008-09-17 00:51:38 +0000305 "Cannot expand structure with flexible array.");
Mike Stump1eb44332009-09-09 15:08:12 +0000306
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000307 for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end();
308 i != e; ++i) {
Daniel Dunbar56273772008-09-17 00:51:38 +0000309 const FieldDecl *FD = *i;
Mike Stump1eb44332009-09-09 15:08:12 +0000310 assert(!FD->isBitField() &&
Daniel Dunbar56273772008-09-17 00:51:38 +0000311 "Cannot expand structure with bit-field members.");
Mike Stump1eb44332009-09-09 15:08:12 +0000312
Daniel Dunbar56273772008-09-17 00:51:38 +0000313 QualType FT = FD->getType();
Chris Lattnerdeabde22010-07-28 18:24:28 +0000314 if (CodeGenFunction::hasAggregateLLVMType(FT))
Chris Lattnerbcaedae2010-06-30 19:14:05 +0000315 GetExpandedTypes(FT, ArgTys, IsRecursive);
Chris Lattnerdeabde22010-07-28 18:24:28 +0000316 else
Chris Lattnerbcaedae2010-06-30 19:14:05 +0000317 ArgTys.push_back(ConvertType(FT, IsRecursive));
Daniel Dunbar56273772008-09-17 00:51:38 +0000318 }
319}
320
Mike Stump1eb44332009-09-09 15:08:12 +0000321llvm::Function::arg_iterator
Daniel Dunbar56273772008-09-17 00:51:38 +0000322CodeGenFunction::ExpandTypeFromArgs(QualType Ty, LValue LV,
323 llvm::Function::arg_iterator AI) {
324 const RecordType *RT = Ty->getAsStructureType();
325 assert(RT && "Can only expand structure types.");
326
327 RecordDecl *RD = RT->getDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000328 assert(LV.isSimple() &&
329 "Unexpected non-simple lvalue during struct expansion.");
Daniel Dunbar56273772008-09-17 00:51:38 +0000330 llvm::Value *Addr = LV.getAddress();
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000331 for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end();
332 i != e; ++i) {
Mike Stump1eb44332009-09-09 15:08:12 +0000333 FieldDecl *FD = *i;
Daniel Dunbar56273772008-09-17 00:51:38 +0000334 QualType FT = FD->getType();
335
336 // FIXME: What are the right qualifiers here?
Anders Carlssone6d2a532010-01-29 05:05:36 +0000337 LValue LV = EmitLValueForField(Addr, FD, 0);
Daniel Dunbar56273772008-09-17 00:51:38 +0000338 if (CodeGenFunction::hasAggregateLLVMType(FT)) {
339 AI = ExpandTypeFromArgs(FT, LV, AI);
340 } else {
341 EmitStoreThroughLValue(RValue::get(AI), LV, FT);
342 ++AI;
343 }
344 }
345
346 return AI;
347}
348
Mike Stump1eb44332009-09-09 15:08:12 +0000349void
350CodeGenFunction::ExpandTypeToArgs(QualType Ty, RValue RV,
Daniel Dunbar56273772008-09-17 00:51:38 +0000351 llvm::SmallVector<llvm::Value*, 16> &Args) {
352 const RecordType *RT = Ty->getAsStructureType();
353 assert(RT && "Can only expand structure types.");
354
355 RecordDecl *RD = RT->getDecl();
356 assert(RV.isAggregate() && "Unexpected rvalue during struct expansion");
357 llvm::Value *Addr = RV.getAggregateAddr();
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000358 for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end();
359 i != e; ++i) {
Mike Stump1eb44332009-09-09 15:08:12 +0000360 FieldDecl *FD = *i;
Daniel Dunbar56273772008-09-17 00:51:38 +0000361 QualType FT = FD->getType();
Mike Stump1eb44332009-09-09 15:08:12 +0000362
Daniel Dunbar56273772008-09-17 00:51:38 +0000363 // FIXME: What are the right qualifiers here?
Anders Carlssone6d2a532010-01-29 05:05:36 +0000364 LValue LV = EmitLValueForField(Addr, FD, 0);
Daniel Dunbar56273772008-09-17 00:51:38 +0000365 if (CodeGenFunction::hasAggregateLLVMType(FT)) {
366 ExpandTypeToArgs(FT, RValue::getAggregate(LV.getAddress()), Args);
367 } else {
368 RValue RV = EmitLoadOfLValue(LV, FT);
Mike Stump1eb44332009-09-09 15:08:12 +0000369 assert(RV.isScalar() &&
Daniel Dunbar56273772008-09-17 00:51:38 +0000370 "Unexpected non-scalar rvalue during struct expansion.");
371 Args.push_back(RV.getScalarVal());
372 }
373 }
374}
375
Chris Lattnere7bb7772010-06-27 06:04:18 +0000376/// EnterStructPointerForCoercedAccess - Given a struct pointer that we are
Chris Lattner08dd2a02010-06-27 05:56:15 +0000377/// accessing some number of bytes out of it, try to gep into the struct to get
378/// at its inner goodness. Dive as deep as possible without entering an element
379/// with an in-memory size smaller than DstSize.
380static llvm::Value *
Chris Lattnere7bb7772010-06-27 06:04:18 +0000381EnterStructPointerForCoercedAccess(llvm::Value *SrcPtr,
382 const llvm::StructType *SrcSTy,
383 uint64_t DstSize, CodeGenFunction &CGF) {
Chris Lattner08dd2a02010-06-27 05:56:15 +0000384 // We can't dive into a zero-element struct.
385 if (SrcSTy->getNumElements() == 0) return SrcPtr;
386
387 const llvm::Type *FirstElt = SrcSTy->getElementType(0);
388
389 // If the first elt is at least as large as what we're looking for, or if the
390 // first element is the same size as the whole struct, we can enter it.
391 uint64_t FirstEltSize =
392 CGF.CGM.getTargetData().getTypeAllocSize(FirstElt);
393 if (FirstEltSize < DstSize &&
394 FirstEltSize < CGF.CGM.getTargetData().getTypeAllocSize(SrcSTy))
395 return SrcPtr;
396
397 // GEP into the first element.
398 SrcPtr = CGF.Builder.CreateConstGEP2_32(SrcPtr, 0, 0, "coerce.dive");
399
400 // If the first element is a struct, recurse.
401 const llvm::Type *SrcTy =
402 cast<llvm::PointerType>(SrcPtr->getType())->getElementType();
403 if (const llvm::StructType *SrcSTy = dyn_cast<llvm::StructType>(SrcTy))
Chris Lattnere7bb7772010-06-27 06:04:18 +0000404 return EnterStructPointerForCoercedAccess(SrcPtr, SrcSTy, DstSize, CGF);
Chris Lattner08dd2a02010-06-27 05:56:15 +0000405
406 return SrcPtr;
407}
408
Chris Lattner6d11cdb2010-06-27 06:26:04 +0000409/// CoerceIntOrPtrToIntOrPtr - Convert a value Val to the specific Ty where both
410/// are either integers or pointers. This does a truncation of the value if it
411/// is too large or a zero extension if it is too small.
412static llvm::Value *CoerceIntOrPtrToIntOrPtr(llvm::Value *Val,
413 const llvm::Type *Ty,
414 CodeGenFunction &CGF) {
415 if (Val->getType() == Ty)
416 return Val;
417
418 if (isa<llvm::PointerType>(Val->getType())) {
419 // If this is Pointer->Pointer avoid conversion to and from int.
420 if (isa<llvm::PointerType>(Ty))
421 return CGF.Builder.CreateBitCast(Val, Ty, "coerce.val");
422
423 // Convert the pointer to an integer so we can play with its width.
Chris Lattner77b89b82010-06-27 07:15:29 +0000424 Val = CGF.Builder.CreatePtrToInt(Val, CGF.IntPtrTy, "coerce.val.pi");
Chris Lattner6d11cdb2010-06-27 06:26:04 +0000425 }
426
427 const llvm::Type *DestIntTy = Ty;
428 if (isa<llvm::PointerType>(DestIntTy))
Chris Lattner77b89b82010-06-27 07:15:29 +0000429 DestIntTy = CGF.IntPtrTy;
Chris Lattner6d11cdb2010-06-27 06:26:04 +0000430
431 if (Val->getType() != DestIntTy)
432 Val = CGF.Builder.CreateIntCast(Val, DestIntTy, false, "coerce.val.ii");
433
434 if (isa<llvm::PointerType>(Ty))
435 Val = CGF.Builder.CreateIntToPtr(Val, Ty, "coerce.val.ip");
436 return Val;
437}
438
Chris Lattner08dd2a02010-06-27 05:56:15 +0000439
440
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000441/// CreateCoercedLoad - Create a load from \arg SrcPtr interpreted as
442/// a pointer to an object of type \arg Ty.
443///
444/// This safely handles the case when the src type is smaller than the
445/// destination type; in this situation the values of bits which not
446/// present in the src are undefined.
447static llvm::Value *CreateCoercedLoad(llvm::Value *SrcPtr,
448 const llvm::Type *Ty,
449 CodeGenFunction &CGF) {
Mike Stump1eb44332009-09-09 15:08:12 +0000450 const llvm::Type *SrcTy =
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000451 cast<llvm::PointerType>(SrcPtr->getType())->getElementType();
Chris Lattner6ae00692010-06-28 22:51:39 +0000452
453 // If SrcTy and Ty are the same, just do a load.
454 if (SrcTy == Ty)
455 return CGF.Builder.CreateLoad(SrcPtr);
456
Duncan Sands9408c452009-05-09 07:08:47 +0000457 uint64_t DstSize = CGF.CGM.getTargetData().getTypeAllocSize(Ty);
Chris Lattner08dd2a02010-06-27 05:56:15 +0000458
459 if (const llvm::StructType *SrcSTy = dyn_cast<llvm::StructType>(SrcTy)) {
Chris Lattnere7bb7772010-06-27 06:04:18 +0000460 SrcPtr = EnterStructPointerForCoercedAccess(SrcPtr, SrcSTy, DstSize, CGF);
Chris Lattner08dd2a02010-06-27 05:56:15 +0000461 SrcTy = cast<llvm::PointerType>(SrcPtr->getType())->getElementType();
462 }
463
464 uint64_t SrcSize = CGF.CGM.getTargetData().getTypeAllocSize(SrcTy);
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000465
Chris Lattner6d11cdb2010-06-27 06:26:04 +0000466 // If the source and destination are integer or pointer types, just do an
467 // extension or truncation to the desired type.
468 if ((isa<llvm::IntegerType>(Ty) || isa<llvm::PointerType>(Ty)) &&
469 (isa<llvm::IntegerType>(SrcTy) || isa<llvm::PointerType>(SrcTy))) {
470 llvm::LoadInst *Load = CGF.Builder.CreateLoad(SrcPtr);
471 return CoerceIntOrPtrToIntOrPtr(Load, Ty, CGF);
472 }
473
Daniel Dunbarb225be42009-02-03 05:59:18 +0000474 // If load is legal, just bitcast the src pointer.
Daniel Dunbar7ef455b2009-05-13 18:54:26 +0000475 if (SrcSize >= DstSize) {
Mike Stumpf5408fe2009-05-16 07:57:57 +0000476 // Generally SrcSize is never greater than DstSize, since this means we are
477 // losing bits. However, this can happen in cases where the structure has
478 // additional padding, for example due to a user specified alignment.
Daniel Dunbar7ef455b2009-05-13 18:54:26 +0000479 //
Mike Stumpf5408fe2009-05-16 07:57:57 +0000480 // FIXME: Assert that we aren't truncating non-padding bits when have access
481 // to that information.
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000482 llvm::Value *Casted =
483 CGF.Builder.CreateBitCast(SrcPtr, llvm::PointerType::getUnqual(Ty));
Daniel Dunbar386621f2009-02-07 02:46:03 +0000484 llvm::LoadInst *Load = CGF.Builder.CreateLoad(Casted);
485 // FIXME: Use better alignment / avoid requiring aligned load.
486 Load->setAlignment(1);
487 return Load;
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000488 }
Chris Lattner35b21b82010-06-27 01:06:27 +0000489
490 // Otherwise do coercion through memory. This is stupid, but
491 // simple.
492 llvm::Value *Tmp = CGF.CreateTempAlloca(Ty);
493 llvm::Value *Casted =
494 CGF.Builder.CreateBitCast(Tmp, llvm::PointerType::getUnqual(SrcTy));
495 llvm::StoreInst *Store =
496 CGF.Builder.CreateStore(CGF.Builder.CreateLoad(SrcPtr), Casted);
497 // FIXME: Use better alignment / avoid requiring aligned store.
498 Store->setAlignment(1);
499 return CGF.Builder.CreateLoad(Tmp);
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000500}
501
502/// CreateCoercedStore - Create a store to \arg DstPtr from \arg Src,
503/// where the source and destination may have different types.
504///
505/// This safely handles the case when the src type is larger than the
506/// destination type; the upper bits of the src will be lost.
507static void CreateCoercedStore(llvm::Value *Src,
508 llvm::Value *DstPtr,
Anders Carlssond2490a92009-12-24 20:40:36 +0000509 bool DstIsVolatile,
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000510 CodeGenFunction &CGF) {
511 const llvm::Type *SrcTy = Src->getType();
Mike Stump1eb44332009-09-09 15:08:12 +0000512 const llvm::Type *DstTy =
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000513 cast<llvm::PointerType>(DstPtr->getType())->getElementType();
Chris Lattner6ae00692010-06-28 22:51:39 +0000514 if (SrcTy == DstTy) {
515 CGF.Builder.CreateStore(Src, DstPtr, DstIsVolatile);
516 return;
517 }
518
519 uint64_t SrcSize = CGF.CGM.getTargetData().getTypeAllocSize(SrcTy);
520
Chris Lattnere7bb7772010-06-27 06:04:18 +0000521 if (const llvm::StructType *DstSTy = dyn_cast<llvm::StructType>(DstTy)) {
522 DstPtr = EnterStructPointerForCoercedAccess(DstPtr, DstSTy, SrcSize, CGF);
523 DstTy = cast<llvm::PointerType>(DstPtr->getType())->getElementType();
524 }
525
Chris Lattner6d11cdb2010-06-27 06:26:04 +0000526 // If the source and destination are integer or pointer types, just do an
527 // extension or truncation to the desired type.
528 if ((isa<llvm::IntegerType>(SrcTy) || isa<llvm::PointerType>(SrcTy)) &&
529 (isa<llvm::IntegerType>(DstTy) || isa<llvm::PointerType>(DstTy))) {
530 Src = CoerceIntOrPtrToIntOrPtr(Src, DstTy, CGF);
531 CGF.Builder.CreateStore(Src, DstPtr, DstIsVolatile);
532 return;
533 }
534
Duncan Sands9408c452009-05-09 07:08:47 +0000535 uint64_t DstSize = CGF.CGM.getTargetData().getTypeAllocSize(DstTy);
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000536
Daniel Dunbar88c2fa92009-02-03 05:31:23 +0000537 // If store is legal, just bitcast the src pointer.
Daniel Dunbarfdf49862009-06-05 07:58:54 +0000538 if (SrcSize <= DstSize) {
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000539 llvm::Value *Casted =
540 CGF.Builder.CreateBitCast(DstPtr, llvm::PointerType::getUnqual(SrcTy));
Daniel Dunbar386621f2009-02-07 02:46:03 +0000541 // FIXME: Use better alignment / avoid requiring aligned store.
Anders Carlssond2490a92009-12-24 20:40:36 +0000542 CGF.Builder.CreateStore(Src, Casted, DstIsVolatile)->setAlignment(1);
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000543 } else {
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000544 // Otherwise do coercion through memory. This is stupid, but
545 // simple.
Daniel Dunbarfdf49862009-06-05 07:58:54 +0000546
547 // Generally SrcSize is never greater than DstSize, since this means we are
548 // losing bits. However, this can happen in cases where the structure has
549 // additional padding, for example due to a user specified alignment.
550 //
551 // FIXME: Assert that we aren't truncating non-padding bits when have access
552 // to that information.
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000553 llvm::Value *Tmp = CGF.CreateTempAlloca(SrcTy);
554 CGF.Builder.CreateStore(Src, Tmp);
Mike Stump1eb44332009-09-09 15:08:12 +0000555 llvm::Value *Casted =
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000556 CGF.Builder.CreateBitCast(Tmp, llvm::PointerType::getUnqual(DstTy));
Daniel Dunbar386621f2009-02-07 02:46:03 +0000557 llvm::LoadInst *Load = CGF.Builder.CreateLoad(Casted);
558 // FIXME: Use better alignment / avoid requiring aligned load.
559 Load->setAlignment(1);
Anders Carlssond2490a92009-12-24 20:40:36 +0000560 CGF.Builder.CreateStore(Load, DstPtr, DstIsVolatile);
Daniel Dunbar275e10d2009-02-02 19:06:38 +0000561 }
562}
563
Daniel Dunbar56273772008-09-17 00:51:38 +0000564/***/
565
Daniel Dunbardacf9dd2010-07-14 23:39:36 +0000566bool CodeGenModule::ReturnTypeUsesSRet(const CGFunctionInfo &FI) {
Daniel Dunbar11e383a2009-02-05 08:00:50 +0000567 return FI.getReturnInfo().isIndirect();
Daniel Dunbarbb36d332009-02-02 21:43:58 +0000568}
569
Daniel Dunbardacf9dd2010-07-14 23:39:36 +0000570bool CodeGenModule::ReturnTypeUsesFPRet(QualType ResultType) {
571 if (const BuiltinType *BT = ResultType->getAs<BuiltinType>()) {
572 switch (BT->getKind()) {
573 default:
574 return false;
575 case BuiltinType::Float:
576 return getContext().Target.useObjCFPRetForRealType(TargetInfo::Float);
577 case BuiltinType::Double:
578 return getContext().Target.useObjCFPRetForRealType(TargetInfo::Double);
579 case BuiltinType::LongDouble:
580 return getContext().Target.useObjCFPRetForRealType(
581 TargetInfo::LongDouble);
582 }
583 }
584
585 return false;
586}
587
John McCallc0bf4622010-02-23 00:48:20 +0000588const llvm::FunctionType *CodeGenTypes::GetFunctionType(GlobalDecl GD) {
589 const CGFunctionInfo &FI = getFunctionInfo(GD);
590
591 // For definition purposes, don't consider a K&R function variadic.
592 bool Variadic = false;
593 if (const FunctionProtoType *FPT =
594 cast<FunctionDecl>(GD.getDecl())->getType()->getAs<FunctionProtoType>())
595 Variadic = FPT->isVariadic();
596
Chris Lattnerbcaedae2010-06-30 19:14:05 +0000597 return GetFunctionType(FI, Variadic, false);
John McCallc0bf4622010-02-23 00:48:20 +0000598}
599
Daniel Dunbar45c25ba2008-09-10 04:01:49 +0000600const llvm::FunctionType *
Chris Lattnerbcaedae2010-06-30 19:14:05 +0000601CodeGenTypes::GetFunctionType(const CGFunctionInfo &FI, bool IsVariadic,
602 bool IsRecursive) {
Daniel Dunbar45c25ba2008-09-10 04:01:49 +0000603 std::vector<const llvm::Type*> ArgTys;
604
605 const llvm::Type *ResultType = 0;
606
Daniel Dunbara0a99e02009-02-02 23:43:58 +0000607 QualType RetTy = FI.getReturnType();
Daniel Dunbarb225be42009-02-03 05:59:18 +0000608 const ABIArgInfo &RetAI = FI.getReturnInfo();
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000609 switch (RetAI.getKind()) {
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000610 case ABIArgInfo::Expand:
611 assert(0 && "Invalid ABI kind for return argument");
612
Anton Korobeynikovcc6fa882009-06-06 09:36:29 +0000613 case ABIArgInfo::Extend:
Daniel Dunbar46327aa2009-02-03 06:17:37 +0000614 case ABIArgInfo::Direct:
Chris Lattnerbcaedae2010-06-30 19:14:05 +0000615 ResultType = ConvertType(RetTy, IsRecursive);
Daniel Dunbar46327aa2009-02-03 06:17:37 +0000616 break;
617
Daniel Dunbar11e383a2009-02-05 08:00:50 +0000618 case ABIArgInfo::Indirect: {
619 assert(!RetAI.getIndirectAlign() && "Align unused on indirect return.");
Owen Anderson0032b272009-08-13 21:57:51 +0000620 ResultType = llvm::Type::getVoidTy(getLLVMContext());
Chris Lattnerbcaedae2010-06-30 19:14:05 +0000621 const llvm::Type *STy = ConvertType(RetTy, IsRecursive);
Daniel Dunbar45c25ba2008-09-10 04:01:49 +0000622 ArgTys.push_back(llvm::PointerType::get(STy, RetTy.getAddressSpace()));
623 break;
624 }
625
Daniel Dunbar11434922009-01-26 21:26:08 +0000626 case ABIArgInfo::Ignore:
Owen Anderson0032b272009-08-13 21:57:51 +0000627 ResultType = llvm::Type::getVoidTy(getLLVMContext());
Daniel Dunbar11434922009-01-26 21:26:08 +0000628 break;
629
Daniel Dunbar45c25ba2008-09-10 04:01:49 +0000630 case ABIArgInfo::Coerce:
Daniel Dunbar639ffe42008-09-10 07:04:09 +0000631 ResultType = RetAI.getCoerceToType();
Daniel Dunbar45c25ba2008-09-10 04:01:49 +0000632 break;
633 }
Mike Stump1eb44332009-09-09 15:08:12 +0000634
635 for (CGFunctionInfo::const_arg_iterator it = FI.arg_begin(),
Daniel Dunbar88c2fa92009-02-03 05:31:23 +0000636 ie = FI.arg_end(); it != ie; ++it) {
637 const ABIArgInfo &AI = it->info;
Mike Stump1eb44332009-09-09 15:08:12 +0000638
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000639 switch (AI.getKind()) {
Daniel Dunbar11434922009-01-26 21:26:08 +0000640 case ABIArgInfo::Ignore:
641 break;
642
Chris Lattnerce700162010-06-28 23:44:11 +0000643 case ABIArgInfo::Coerce: {
644 // If the coerce-to type is a first class aggregate, flatten it. Either
645 // way is semantically identical, but fast-isel and the optimizer
646 // generally likes scalar values better than FCAs.
647 const llvm::Type *ArgTy = AI.getCoerceToType();
648 if (const llvm::StructType *STy = dyn_cast<llvm::StructType>(ArgTy)) {
649 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i)
650 ArgTys.push_back(STy->getElementType(i));
651 } else {
652 ArgTys.push_back(ArgTy);
653 }
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +0000654 break;
Chris Lattnerce700162010-06-28 23:44:11 +0000655 }
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +0000656
Daniel Dunbaradc8bdd2009-02-10 01:51:39 +0000657 case ABIArgInfo::Indirect: {
Daniel Dunbar11e383a2009-02-05 08:00:50 +0000658 // indirect arguments are always on the stack, which is addr space #0.
Chris Lattnerbcaedae2010-06-30 19:14:05 +0000659 const llvm::Type *LTy = ConvertTypeForMem(it->type, IsRecursive);
Daniel Dunbaradc8bdd2009-02-10 01:51:39 +0000660 ArgTys.push_back(llvm::PointerType::getUnqual(LTy));
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000661 break;
Daniel Dunbaradc8bdd2009-02-10 01:51:39 +0000662 }
Anton Korobeynikovcc6fa882009-06-06 09:36:29 +0000663
664 case ABIArgInfo::Extend:
Daniel Dunbar46327aa2009-02-03 06:17:37 +0000665 case ABIArgInfo::Direct:
Chris Lattnerbcaedae2010-06-30 19:14:05 +0000666 ArgTys.push_back(ConvertType(it->type, IsRecursive));
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000667 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000668
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000669 case ABIArgInfo::Expand:
Chris Lattnerbcaedae2010-06-30 19:14:05 +0000670 GetExpandedTypes(it->type, ArgTys, IsRecursive);
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000671 break;
672 }
Daniel Dunbar45c25ba2008-09-10 04:01:49 +0000673 }
674
Daniel Dunbarbb36d332009-02-02 21:43:58 +0000675 return llvm::FunctionType::get(ResultType, ArgTys, IsVariadic);
Daniel Dunbar3913f182008-09-09 23:48:28 +0000676}
677
Anders Carlssonecf282b2009-11-24 05:08:52 +0000678const llvm::Type *
Anders Carlsson046c2942010-04-17 20:15:18 +0000679CodeGenTypes::GetFunctionTypeForVTable(const CXXMethodDecl *MD) {
Anders Carlssonecf282b2009-11-24 05:08:52 +0000680 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>();
681
Eli Friedmanc00129a2010-05-30 06:03:20 +0000682 if (!VerifyFuncTypeComplete(FPT))
Chris Lattnerbcaedae2010-06-30 19:14:05 +0000683 return GetFunctionType(getFunctionInfo(MD), FPT->isVariadic(), false);
Anders Carlssonecf282b2009-11-24 05:08:52 +0000684
685 return llvm::OpaqueType::get(getLLVMContext());
686}
687
Daniel Dunbara0a99e02009-02-02 23:43:58 +0000688void CodeGenModule::ConstructAttributeList(const CGFunctionInfo &FI,
Daniel Dunbar88b53962009-02-02 22:03:45 +0000689 const Decl *TargetDecl,
Daniel Dunbarca6408c2009-09-12 00:59:20 +0000690 AttributeListType &PAL,
691 unsigned &CallingConv) {
Daniel Dunbar5323a4b2008-09-10 00:32:18 +0000692 unsigned FuncAttrs = 0;
Devang Patela2c69122008-09-26 22:53:57 +0000693 unsigned RetAttrs = 0;
Daniel Dunbar5323a4b2008-09-10 00:32:18 +0000694
Daniel Dunbarca6408c2009-09-12 00:59:20 +0000695 CallingConv = FI.getEffectiveCallingConvention();
696
John McCall04a67a62010-02-05 21:31:56 +0000697 if (FI.isNoReturn())
698 FuncAttrs |= llvm::Attribute::NoReturn;
699
Anton Korobeynikov1102f422009-04-04 00:49:24 +0000700 // FIXME: handle sseregparm someday...
Daniel Dunbar5323a4b2008-09-10 00:32:18 +0000701 if (TargetDecl) {
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000702 if (TargetDecl->hasAttr<NoThrowAttr>())
Devang Patel761d7f72008-09-25 21:02:23 +0000703 FuncAttrs |= llvm::Attribute::NoUnwind;
John McCall9c0c1f32010-07-08 06:48:12 +0000704 else if (const FunctionDecl *Fn = dyn_cast<FunctionDecl>(TargetDecl)) {
705 const FunctionProtoType *FPT = Fn->getType()->getAs<FunctionProtoType>();
706 if (FPT && FPT->hasEmptyExceptionSpec())
707 FuncAttrs |= llvm::Attribute::NoUnwind;
708 }
709
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000710 if (TargetDecl->hasAttr<NoReturnAttr>())
Devang Patel761d7f72008-09-25 21:02:23 +0000711 FuncAttrs |= llvm::Attribute::NoReturn;
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000712 if (TargetDecl->hasAttr<ConstAttr>())
Anders Carlsson232eb7d2008-10-05 23:32:53 +0000713 FuncAttrs |= llvm::Attribute::ReadNone;
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000714 else if (TargetDecl->hasAttr<PureAttr>())
Daniel Dunbar64c2e072009-04-10 22:14:52 +0000715 FuncAttrs |= llvm::Attribute::ReadOnly;
Ryan Flynn76168e22009-08-09 20:07:29 +0000716 if (TargetDecl->hasAttr<MallocAttr>())
717 RetAttrs |= llvm::Attribute::NoAlias;
Daniel Dunbar5323a4b2008-09-10 00:32:18 +0000718 }
719
Chandler Carruth2811ccf2009-11-12 17:24:48 +0000720 if (CodeGenOpts.OptimizeSize)
Daniel Dunbar7ab1c3e2009-10-27 19:48:08 +0000721 FuncAttrs |= llvm::Attribute::OptimizeForSize;
Chandler Carruth2811ccf2009-11-12 17:24:48 +0000722 if (CodeGenOpts.DisableRedZone)
Devang Patel24095da2009-06-04 23:32:02 +0000723 FuncAttrs |= llvm::Attribute::NoRedZone;
Chandler Carruth2811ccf2009-11-12 17:24:48 +0000724 if (CodeGenOpts.NoImplicitFloat)
Devang Patelacebb392009-06-05 22:05:48 +0000725 FuncAttrs |= llvm::Attribute::NoImplicitFloat;
Devang Patel24095da2009-06-04 23:32:02 +0000726
Daniel Dunbara0a99e02009-02-02 23:43:58 +0000727 QualType RetTy = FI.getReturnType();
Daniel Dunbar5323a4b2008-09-10 00:32:18 +0000728 unsigned Index = 1;
Daniel Dunbarb225be42009-02-03 05:59:18 +0000729 const ABIArgInfo &RetAI = FI.getReturnInfo();
Daniel Dunbar45c25ba2008-09-10 04:01:49 +0000730 switch (RetAI.getKind()) {
Anton Korobeynikovcc6fa882009-06-06 09:36:29 +0000731 case ABIArgInfo::Extend:
Douglas Gregorf6094622010-07-23 15:58:24 +0000732 if (RetTy->hasSignedIntegerRepresentation()) {
Anton Korobeynikovcc6fa882009-06-06 09:36:29 +0000733 RetAttrs |= llvm::Attribute::SExt;
Douglas Gregorf6094622010-07-23 15:58:24 +0000734 } else if (RetTy->hasUnsignedIntegerRepresentation()) {
Anton Korobeynikovcc6fa882009-06-06 09:36:29 +0000735 RetAttrs |= llvm::Attribute::ZExt;
736 }
737 // FALLTHROUGH
Daniel Dunbar46327aa2009-02-03 06:17:37 +0000738 case ABIArgInfo::Direct:
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +0000739 break;
740
Daniel Dunbar11e383a2009-02-05 08:00:50 +0000741 case ABIArgInfo::Indirect:
Mike Stump1eb44332009-09-09 15:08:12 +0000742 PAL.push_back(llvm::AttributeWithIndex::get(Index,
Chris Lattnerfb97cf22010-04-20 05:44:43 +0000743 llvm::Attribute::StructRet));
Daniel Dunbar5323a4b2008-09-10 00:32:18 +0000744 ++Index;
Daniel Dunbar0ac86f02009-03-18 19:51:01 +0000745 // sret disables readnone and readonly
746 FuncAttrs &= ~(llvm::Attribute::ReadOnly |
747 llvm::Attribute::ReadNone);
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +0000748 break;
749
Daniel Dunbar11434922009-01-26 21:26:08 +0000750 case ABIArgInfo::Ignore:
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +0000751 case ABIArgInfo::Coerce:
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +0000752 break;
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000753
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000754 case ABIArgInfo::Expand:
Mike Stump1eb44332009-09-09 15:08:12 +0000755 assert(0 && "Invalid ABI kind for return argument");
Daniel Dunbar5323a4b2008-09-10 00:32:18 +0000756 }
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +0000757
Devang Patela2c69122008-09-26 22:53:57 +0000758 if (RetAttrs)
759 PAL.push_back(llvm::AttributeWithIndex::get(0, RetAttrs));
Anton Korobeynikov1102f422009-04-04 00:49:24 +0000760
Chris Lattnerdeabde22010-07-28 18:24:28 +0000761 // FIXME: we need to honor command line settings also.
Anton Korobeynikov1102f422009-04-04 00:49:24 +0000762 // FIXME: RegParm should be reduced in case of nested functions and/or global
763 // register variable.
Rafael Espindola425ef722010-03-30 22:15:11 +0000764 signed RegParm = FI.getRegParm();
Anton Korobeynikov1102f422009-04-04 00:49:24 +0000765
766 unsigned PointerWidth = getContext().Target.getPointerWidth(0);
Mike Stump1eb44332009-09-09 15:08:12 +0000767 for (CGFunctionInfo::const_arg_iterator it = FI.arg_begin(),
Daniel Dunbar88c2fa92009-02-03 05:31:23 +0000768 ie = FI.arg_end(); it != ie; ++it) {
769 QualType ParamType = it->type;
770 const ABIArgInfo &AI = it->info;
Devang Patel761d7f72008-09-25 21:02:23 +0000771 unsigned Attributes = 0;
Anton Korobeynikov1102f422009-04-04 00:49:24 +0000772
John McCalld8e10d22010-03-27 00:47:27 +0000773 // 'restrict' -> 'noalias' is done in EmitFunctionProlog when we
774 // have the corresponding parameter variable. It doesn't make
775 // sense to do it here because parameters are so fucked up.
Nuno Lopes079b4952009-12-07 18:30:06 +0000776
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000777 switch (AI.getKind()) {
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +0000778 case ABIArgInfo::Coerce:
Chris Lattnerce700162010-06-28 23:44:11 +0000779 if (const llvm::StructType *STy =
780 dyn_cast<llvm::StructType>(AI.getCoerceToType()))
781 Index += STy->getNumElements();
782 else
783 ++Index;
784 continue; // Skip index increment.
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +0000785
Daniel Dunbar11e383a2009-02-05 08:00:50 +0000786 case ABIArgInfo::Indirect:
Anders Carlsson0a8f8472009-09-16 15:53:40 +0000787 if (AI.getIndirectByVal())
788 Attributes |= llvm::Attribute::ByVal;
789
Anton Korobeynikov1102f422009-04-04 00:49:24 +0000790 Attributes |=
Daniel Dunbar11e383a2009-02-05 08:00:50 +0000791 llvm::Attribute::constructAlignmentFromInt(AI.getIndirectAlign());
Daniel Dunbar0ac86f02009-03-18 19:51:01 +0000792 // byval disables readnone and readonly.
793 FuncAttrs &= ~(llvm::Attribute::ReadOnly |
794 llvm::Attribute::ReadNone);
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000795 break;
Anton Korobeynikovcc6fa882009-06-06 09:36:29 +0000796
797 case ABIArgInfo::Extend:
798 if (ParamType->isSignedIntegerType()) {
799 Attributes |= llvm::Attribute::SExt;
800 } else if (ParamType->isUnsignedIntegerType()) {
801 Attributes |= llvm::Attribute::ZExt;
802 }
803 // FALLS THROUGH
Daniel Dunbar46327aa2009-02-03 06:17:37 +0000804 case ABIArgInfo::Direct:
Anton Korobeynikov1102f422009-04-04 00:49:24 +0000805 if (RegParm > 0 &&
806 (ParamType->isIntegerType() || ParamType->isPointerType())) {
807 RegParm -=
808 (Context.getTypeSize(ParamType) + PointerWidth - 1) / PointerWidth;
809 if (RegParm >= 0)
810 Attributes |= llvm::Attribute::InReg;
811 }
812 // FIXME: handle sseregparm someday...
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000813 break;
Anton Korobeynikov1102f422009-04-04 00:49:24 +0000814
Daniel Dunbar11434922009-01-26 21:26:08 +0000815 case ABIArgInfo::Ignore:
816 // Skip increment, no matching LLVM parameter.
Mike Stump1eb44332009-09-09 15:08:12 +0000817 continue;
Daniel Dunbar11434922009-01-26 21:26:08 +0000818
Daniel Dunbar56273772008-09-17 00:51:38 +0000819 case ABIArgInfo::Expand: {
Mike Stump1eb44332009-09-09 15:08:12 +0000820 std::vector<const llvm::Type*> Tys;
Mike Stumpf5408fe2009-05-16 07:57:57 +0000821 // FIXME: This is rather inefficient. Do we ever actually need to do
822 // anything here? The result should be just reconstructed on the other
823 // side, so extension should be a non-issue.
Chris Lattnerbcaedae2010-06-30 19:14:05 +0000824 getTypes().GetExpandedTypes(ParamType, Tys, false);
Daniel Dunbar56273772008-09-17 00:51:38 +0000825 Index += Tys.size();
826 continue;
827 }
Daniel Dunbar5323a4b2008-09-10 00:32:18 +0000828 }
Mike Stump1eb44332009-09-09 15:08:12 +0000829
Devang Patel761d7f72008-09-25 21:02:23 +0000830 if (Attributes)
831 PAL.push_back(llvm::AttributeWithIndex::get(Index, Attributes));
Daniel Dunbar56273772008-09-17 00:51:38 +0000832 ++Index;
Daniel Dunbar5323a4b2008-09-10 00:32:18 +0000833 }
Devang Patela2c69122008-09-26 22:53:57 +0000834 if (FuncAttrs)
835 PAL.push_back(llvm::AttributeWithIndex::get(~0, FuncAttrs));
Daniel Dunbar5323a4b2008-09-10 00:32:18 +0000836}
837
Daniel Dunbar88b53962009-02-02 22:03:45 +0000838void CodeGenFunction::EmitFunctionProlog(const CGFunctionInfo &FI,
839 llvm::Function *Fn,
Daniel Dunbar17b708d2008-09-09 23:27:19 +0000840 const FunctionArgList &Args) {
John McCall0cfeb632009-07-28 01:00:58 +0000841 // If this is an implicit-return-zero function, go ahead and
842 // initialize the return value. TODO: it might be nice to have
843 // a more general mechanism for this that didn't require synthesized
844 // return statements.
Chris Lattner121b3fa2010-07-05 20:21:00 +0000845 if (const FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(CurFuncDecl)) {
John McCall0cfeb632009-07-28 01:00:58 +0000846 if (FD->hasImplicitReturnZero()) {
847 QualType RetTy = FD->getResultType().getUnqualifiedType();
848 const llvm::Type* LLVMTy = CGM.getTypes().ConvertType(RetTy);
Owen Andersonc9c88b42009-07-31 20:28:54 +0000849 llvm::Constant* Zero = llvm::Constant::getNullValue(LLVMTy);
John McCall0cfeb632009-07-28 01:00:58 +0000850 Builder.CreateStore(Zero, ReturnValue);
851 }
852 }
853
Mike Stumpf5408fe2009-05-16 07:57:57 +0000854 // FIXME: We no longer need the types from FunctionArgList; lift up and
855 // simplify.
Daniel Dunbar5251afa2009-02-03 06:02:10 +0000856
Daniel Dunbar17b708d2008-09-09 23:27:19 +0000857 // Emit allocs for param decls. Give the LLVM Argument nodes names.
858 llvm::Function::arg_iterator AI = Fn->arg_begin();
Mike Stump1eb44332009-09-09 15:08:12 +0000859
Daniel Dunbar17b708d2008-09-09 23:27:19 +0000860 // Name the struct return argument.
Daniel Dunbardacf9dd2010-07-14 23:39:36 +0000861 if (CGM.ReturnTypeUsesSRet(FI)) {
Daniel Dunbar17b708d2008-09-09 23:27:19 +0000862 AI->setName("agg.result");
863 ++AI;
864 }
Mike Stump1eb44332009-09-09 15:08:12 +0000865
Daniel Dunbar4b5f0a42009-02-04 21:17:21 +0000866 assert(FI.arg_size() == Args.size() &&
867 "Mismatch between function signature & arguments.");
Daniel Dunbarb225be42009-02-03 05:59:18 +0000868 CGFunctionInfo::const_arg_iterator info_it = FI.arg_begin();
Daniel Dunbar17b708d2008-09-09 23:27:19 +0000869 for (FunctionArgList::const_iterator i = Args.begin(), e = Args.end();
Daniel Dunbarb225be42009-02-03 05:59:18 +0000870 i != e; ++i, ++info_it) {
Daniel Dunbar17b708d2008-09-09 23:27:19 +0000871 const VarDecl *Arg = i->first;
Daniel Dunbarb225be42009-02-03 05:59:18 +0000872 QualType Ty = info_it->type;
873 const ABIArgInfo &ArgI = info_it->info;
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000874
875 switch (ArgI.getKind()) {
Daniel Dunbar1f745982009-02-05 09:16:39 +0000876 case ABIArgInfo::Indirect: {
Chris Lattnerce700162010-06-28 23:44:11 +0000877 llvm::Value *V = AI;
Daniel Dunbar1f745982009-02-05 09:16:39 +0000878 if (hasAggregateLLVMType(Ty)) {
879 // Do nothing, aggregates and complex variables are accessed by
880 // reference.
881 } else {
882 // Load scalar value from indirect argument.
Daniel Dunbaradc8bdd2009-02-10 01:51:39 +0000883 V = EmitLoadOfScalar(V, false, Ty);
Daniel Dunbar1f745982009-02-05 09:16:39 +0000884 if (!getContext().typesAreCompatible(Ty, Arg->getType())) {
885 // This must be a promotion, for something like
886 // "void a(x) short x; {..."
887 V = EmitScalarConversion(V, Ty, Arg->getType());
888 }
889 }
Mike Stump1eb44332009-09-09 15:08:12 +0000890 EmitParmDecl(*Arg, V);
Daniel Dunbar1f745982009-02-05 09:16:39 +0000891 break;
892 }
Anton Korobeynikovcc6fa882009-06-06 09:36:29 +0000893
894 case ABIArgInfo::Extend:
Daniel Dunbar46327aa2009-02-03 06:17:37 +0000895 case ABIArgInfo::Direct: {
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000896 assert(AI != Fn->arg_end() && "Argument mismatch!");
Chris Lattnerce700162010-06-28 23:44:11 +0000897 llvm::Value *V = AI;
Daniel Dunbar2fbf2f52009-02-05 11:13:54 +0000898 if (hasAggregateLLVMType(Ty)) {
899 // Create a temporary alloca to hold the argument; the rest of
900 // codegen expects to access aggregates & complex values by
901 // reference.
Daniel Dunbar195337d2010-02-09 02:48:28 +0000902 V = CreateMemTemp(Ty);
Daniel Dunbar2fbf2f52009-02-05 11:13:54 +0000903 Builder.CreateStore(AI, V);
904 } else {
John McCalld8e10d22010-03-27 00:47:27 +0000905 if (Arg->getType().isRestrictQualified())
906 AI->addAttr(llvm::Attribute::NoAlias);
907
Daniel Dunbar2fbf2f52009-02-05 11:13:54 +0000908 if (!getContext().typesAreCompatible(Ty, Arg->getType())) {
909 // This must be a promotion, for something like
910 // "void a(x) short x; {..."
911 V = EmitScalarConversion(V, Ty, Arg->getType());
912 }
Daniel Dunbar17b708d2008-09-09 23:27:19 +0000913 }
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000914 EmitParmDecl(*Arg, V);
915 break;
916 }
Mike Stump1eb44332009-09-09 15:08:12 +0000917
Daniel Dunbar56273772008-09-17 00:51:38 +0000918 case ABIArgInfo::Expand: {
Daniel Dunbarb225be42009-02-03 05:59:18 +0000919 // If this structure was expanded into multiple arguments then
Daniel Dunbar56273772008-09-17 00:51:38 +0000920 // we need to create a temporary and reconstruct it from the
921 // arguments.
Daniel Dunbar195337d2010-02-09 02:48:28 +0000922 llvm::Value *Temp = CreateMemTemp(Ty, Arg->getName() + ".addr");
Daniel Dunbar56273772008-09-17 00:51:38 +0000923 // FIXME: What are the right qualifiers here?
Mike Stump1eb44332009-09-09 15:08:12 +0000924 llvm::Function::arg_iterator End =
John McCall0953e762009-09-24 19:53:00 +0000925 ExpandTypeFromArgs(Ty, LValue::MakeAddr(Temp, Qualifiers()), AI);
Daniel Dunbar56273772008-09-17 00:51:38 +0000926 EmitParmDecl(*Arg, Temp);
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000927
Daniel Dunbar56273772008-09-17 00:51:38 +0000928 // Name the arguments used in expansion and increment AI.
929 unsigned Index = 0;
930 for (; AI != End; ++AI, ++Index)
Daniel Dunbar259e9cc2009-10-19 01:21:05 +0000931 AI->setName(Arg->getName() + "." + llvm::Twine(Index));
Daniel Dunbar56273772008-09-17 00:51:38 +0000932 continue;
933 }
Daniel Dunbar11434922009-01-26 21:26:08 +0000934
935 case ABIArgInfo::Ignore:
Daniel Dunbar8b979d92009-02-10 00:06:49 +0000936 // Initialize the local variable appropriately.
Mike Stump1eb44332009-09-09 15:08:12 +0000937 if (hasAggregateLLVMType(Ty)) {
Daniel Dunbar195337d2010-02-09 02:48:28 +0000938 EmitParmDecl(*Arg, CreateMemTemp(Ty));
Daniel Dunbar8b979d92009-02-10 00:06:49 +0000939 } else {
940 EmitParmDecl(*Arg, llvm::UndefValue::get(ConvertType(Arg->getType())));
941 }
Mike Stump1eb44332009-09-09 15:08:12 +0000942
Daniel Dunbar59e5a0e2009-02-03 20:00:13 +0000943 // Skip increment, no matching LLVM parameter.
Mike Stump1eb44332009-09-09 15:08:12 +0000944 continue;
Daniel Dunbar11434922009-01-26 21:26:08 +0000945
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +0000946 case ABIArgInfo::Coerce: {
Chris Lattner121b3fa2010-07-05 20:21:00 +0000947 llvm::AllocaInst *Alloca = CreateMemTemp(Ty, "coerce");
Chris Lattnerdeabde22010-07-28 18:24:28 +0000948
949 // The alignment we need to use is the max of the requested alignment for
950 // the argument plus the alignment required by our access code below.
951 unsigned AlignmentToUse =
952 CGF.CGM.getTargetData().getABITypeAlignment(ArgI.getCoerceToType());
953 AlignmentToUse = std::max(AlignmentToUse,
954 (unsigned)getContext().getDeclAlign(Arg).getQuantity());
955
956 Alloca->setAlignment(AlignmentToUse);
Chris Lattner121b3fa2010-07-05 20:21:00 +0000957 llvm::Value *V = Alloca;
Chris Lattner309c59f2010-06-29 00:06:42 +0000958
959 // If the coerce-to type is a first class aggregate, we flatten it and
960 // pass the elements. Either way is semantically identical, but fast-isel
961 // and the optimizer generally likes scalar values better than FCAs.
962 if (const llvm::StructType *STy =
963 dyn_cast<llvm::StructType>(ArgI.getCoerceToType())) {
Chris Lattner92826882010-07-05 20:41:41 +0000964 llvm::Value *Ptr = V;
965 Ptr = Builder.CreateBitCast(Ptr, llvm::PointerType::getUnqual(STy));
966
967 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
968 assert(AI != Fn->arg_end() && "Argument mismatch!");
969 AI->setName(Arg->getName() + ".coerce" + llvm::Twine(i));
970 llvm::Value *EltPtr = Builder.CreateConstGEP2_32(Ptr, 0, i);
971 Builder.CreateStore(AI++, EltPtr);
Chris Lattner309c59f2010-06-29 00:06:42 +0000972 }
973 } else {
974 // Simple case, just do a coerced store of the argument into the alloca.
975 assert(AI != Fn->arg_end() && "Argument mismatch!");
Chris Lattner225e2862010-06-29 00:14:52 +0000976 AI->setName(Arg->getName() + ".coerce");
Chris Lattner309c59f2010-06-29 00:06:42 +0000977 CreateCoercedStore(AI++, V, /*DestIsVolatile=*/false, *this);
978 }
979
980
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +0000981 // Match to what EmitParmDecl is expecting for this type.
Daniel Dunbar8b29a382009-02-04 07:22:24 +0000982 if (!CodeGenFunction::hasAggregateLLVMType(Ty)) {
Daniel Dunbaradc8bdd2009-02-10 01:51:39 +0000983 V = EmitLoadOfScalar(V, false, Ty);
Daniel Dunbar8b29a382009-02-04 07:22:24 +0000984 if (!getContext().typesAreCompatible(Ty, Arg->getType())) {
985 // This must be a promotion, for something like
986 // "void a(x) short x; {..."
987 V = EmitScalarConversion(V, Ty, Arg->getType());
988 }
989 }
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +0000990 EmitParmDecl(*Arg, V);
Chris Lattnerce700162010-06-28 23:44:11 +0000991 continue; // Skip ++AI increment, already done.
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +0000992 }
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000993 }
Daniel Dunbar56273772008-09-17 00:51:38 +0000994
995 ++AI;
Daniel Dunbar17b708d2008-09-09 23:27:19 +0000996 }
997 assert(AI == Fn->arg_end() && "Argument mismatch!");
998}
999
Chris Lattner35b21b82010-06-27 01:06:27 +00001000void CodeGenFunction::EmitFunctionEpilog(const CGFunctionInfo &FI) {
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001001 // Functions with no result always return void.
Chris Lattnerc6e6dd22010-06-26 23:13:19 +00001002 if (ReturnValue == 0) {
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001003 Builder.CreateRetVoid();
Chris Lattnerc6e6dd22010-06-26 23:13:19 +00001004 return;
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001005 }
Daniel Dunbar21fcc8f2010-06-30 21:27:58 +00001006
Dan Gohman4751a532010-07-20 20:13:52 +00001007 llvm::DebugLoc RetDbgLoc;
Chris Lattnerc6e6dd22010-06-26 23:13:19 +00001008 llvm::Value *RV = 0;
1009 QualType RetTy = FI.getReturnType();
1010 const ABIArgInfo &RetAI = FI.getReturnInfo();
1011
1012 switch (RetAI.getKind()) {
1013 case ABIArgInfo::Indirect:
1014 if (RetTy->isAnyComplexType()) {
1015 ComplexPairTy RT = LoadComplexFromAddr(ReturnValue, false);
1016 StoreComplexToAddr(RT, CurFn->arg_begin(), false);
1017 } else if (CodeGenFunction::hasAggregateLLVMType(RetTy)) {
1018 // Do nothing; aggregrates get evaluated directly into the destination.
1019 } else {
1020 EmitStoreOfScalar(Builder.CreateLoad(ReturnValue), CurFn->arg_begin(),
1021 false, RetTy);
1022 }
1023 break;
1024
1025 case ABIArgInfo::Extend:
Chris Lattner35b21b82010-06-27 01:06:27 +00001026 case ABIArgInfo::Direct: {
1027 // The internal return value temp always will have pointer-to-return-type
1028 // type, just do a load.
1029
1030 // If the instruction right before the insertion point is a store to the
1031 // return value, we can elide the load, zap the store, and usually zap the
1032 // alloca.
1033 llvm::BasicBlock *InsertBB = Builder.GetInsertBlock();
1034 llvm::StoreInst *SI = 0;
1035 if (InsertBB->empty() ||
1036 !(SI = dyn_cast<llvm::StoreInst>(&InsertBB->back())) ||
1037 SI->getPointerOperand() != ReturnValue || SI->isVolatile()) {
1038 RV = Builder.CreateLoad(ReturnValue);
1039 } else {
1040 // Get the stored value and nuke the now-dead store.
Dan Gohman4751a532010-07-20 20:13:52 +00001041 RetDbgLoc = SI->getDebugLoc();
Chris Lattner35b21b82010-06-27 01:06:27 +00001042 RV = SI->getValueOperand();
1043 SI->eraseFromParent();
1044
1045 // If that was the only use of the return value, nuke it as well now.
1046 if (ReturnValue->use_empty() && isa<llvm::AllocaInst>(ReturnValue)) {
1047 cast<llvm::AllocaInst>(ReturnValue)->eraseFromParent();
1048 ReturnValue = 0;
1049 }
1050 }
Chris Lattnerc6e6dd22010-06-26 23:13:19 +00001051 break;
Chris Lattner35b21b82010-06-27 01:06:27 +00001052 }
Chris Lattnerc6e6dd22010-06-26 23:13:19 +00001053 case ABIArgInfo::Ignore:
1054 break;
1055
1056 case ABIArgInfo::Coerce:
1057 RV = CreateCoercedLoad(ReturnValue, RetAI.getCoerceToType(), *this);
1058 break;
1059
1060 case ABIArgInfo::Expand:
1061 assert(0 && "Invalid ABI kind for return argument");
1062 }
1063
Daniel Dunbar21fcc8f2010-06-30 21:27:58 +00001064 llvm::Instruction *Ret = RV ? Builder.CreateRet(RV) : Builder.CreateRetVoid();
Devang Pateld3f265d2010-07-21 18:08:50 +00001065 if (!RetDbgLoc.isUnknown())
1066 Ret->setDebugLoc(RetDbgLoc);
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001067}
1068
John McCall27360712010-05-26 22:34:26 +00001069RValue CodeGenFunction::EmitDelegateCallArg(const VarDecl *Param) {
1070 // StartFunction converted the ABI-lowered parameter(s) into a
1071 // local alloca. We need to turn that into an r-value suitable
1072 // for EmitCall.
1073 llvm::Value *Local = GetAddrOfLocalVar(Param);
1074
1075 QualType ArgType = Param->getType();
1076
1077 // For the most part, we just need to load the alloca, except:
1078 // 1) aggregate r-values are actually pointers to temporaries, and
1079 // 2) references to aggregates are pointers directly to the aggregate.
1080 // I don't know why references to non-aggregates are different here.
1081 if (const ReferenceType *RefType = ArgType->getAs<ReferenceType>()) {
1082 if (hasAggregateLLVMType(RefType->getPointeeType()))
1083 return RValue::getAggregate(Local);
1084
1085 // Locals which are references to scalars are represented
1086 // with allocas holding the pointer.
1087 return RValue::get(Builder.CreateLoad(Local));
1088 }
1089
1090 if (ArgType->isAnyComplexType())
1091 return RValue::getComplex(LoadComplexFromAddr(Local, /*volatile*/ false));
1092
1093 if (hasAggregateLLVMType(ArgType))
1094 return RValue::getAggregate(Local);
1095
1096 return RValue::get(EmitLoadOfScalar(Local, false, ArgType));
1097}
1098
Anders Carlsson0139bb92009-04-08 20:47:54 +00001099RValue CodeGenFunction::EmitCallArg(const Expr *E, QualType ArgType) {
Anders Carlsson4029ca72009-05-20 00:24:07 +00001100 if (ArgType->isReferenceType())
Anders Carlsson32f36ba2010-06-26 16:35:32 +00001101 return EmitReferenceBindingToExpr(E, /*InitializedDecl=*/0);
Mike Stump1eb44332009-09-09 15:08:12 +00001102
Anders Carlsson0139bb92009-04-08 20:47:54 +00001103 return EmitAnyExprToTemp(E);
1104}
1105
John McCallf1549f62010-07-06 01:34:17 +00001106/// Emits a call or invoke instruction to the given function, depending
1107/// on the current state of the EH stack.
1108llvm::CallSite
1109CodeGenFunction::EmitCallOrInvoke(llvm::Value *Callee,
1110 llvm::Value * const *ArgBegin,
1111 llvm::Value * const *ArgEnd,
1112 const llvm::Twine &Name) {
1113 llvm::BasicBlock *InvokeDest = getInvokeDest();
1114 if (!InvokeDest)
1115 return Builder.CreateCall(Callee, ArgBegin, ArgEnd, Name);
1116
1117 llvm::BasicBlock *ContBB = createBasicBlock("invoke.cont");
1118 llvm::InvokeInst *Invoke = Builder.CreateInvoke(Callee, ContBB, InvokeDest,
1119 ArgBegin, ArgEnd, Name);
1120 EmitBlock(ContBB);
1121 return Invoke;
1122}
1123
Daniel Dunbar88b53962009-02-02 22:03:45 +00001124RValue CodeGenFunction::EmitCall(const CGFunctionInfo &CallInfo,
Mike Stump1eb44332009-09-09 15:08:12 +00001125 llvm::Value *Callee,
Anders Carlssonf3c47c92009-12-24 19:25:24 +00001126 ReturnValueSlot ReturnValue,
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00001127 const CallArgList &CallArgs,
David Chisnalldd5c98f2010-05-01 11:15:56 +00001128 const Decl *TargetDecl,
David Chisnall4b02afc2010-05-02 13:41:58 +00001129 llvm::Instruction **callOrInvoke) {
Mike Stumpf5408fe2009-05-16 07:57:57 +00001130 // FIXME: We no longer need the types from CallArgs; lift up and simplify.
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001131 llvm::SmallVector<llvm::Value*, 16> Args;
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001132
1133 // Handle struct-return functions by passing a pointer to the
1134 // location that we would like to return into.
Daniel Dunbarbb36d332009-02-02 21:43:58 +00001135 QualType RetTy = CallInfo.getReturnType();
Daniel Dunbarb225be42009-02-03 05:59:18 +00001136 const ABIArgInfo &RetAI = CallInfo.getReturnInfo();
Mike Stump1eb44332009-09-09 15:08:12 +00001137
1138
Chris Lattner5db7ae52009-06-13 00:26:38 +00001139 // If the call returns a temporary with struct return, create a temporary
Anders Carlssond2490a92009-12-24 20:40:36 +00001140 // alloca to hold the result, unless one is given to us.
Daniel Dunbardacf9dd2010-07-14 23:39:36 +00001141 if (CGM.ReturnTypeUsesSRet(CallInfo)) {
Anders Carlssond2490a92009-12-24 20:40:36 +00001142 llvm::Value *Value = ReturnValue.getValue();
1143 if (!Value)
Daniel Dunbar195337d2010-02-09 02:48:28 +00001144 Value = CreateMemTemp(RetTy);
Anders Carlssond2490a92009-12-24 20:40:36 +00001145 Args.push_back(Value);
1146 }
Mike Stump1eb44332009-09-09 15:08:12 +00001147
Daniel Dunbar4b5f0a42009-02-04 21:17:21 +00001148 assert(CallInfo.arg_size() == CallArgs.size() &&
1149 "Mismatch between function signature & arguments.");
Daniel Dunbarb225be42009-02-03 05:59:18 +00001150 CGFunctionInfo::const_arg_iterator info_it = CallInfo.arg_begin();
Mike Stump1eb44332009-09-09 15:08:12 +00001151 for (CallArgList::const_iterator I = CallArgs.begin(), E = CallArgs.end();
Daniel Dunbarb225be42009-02-03 05:59:18 +00001152 I != E; ++I, ++info_it) {
1153 const ABIArgInfo &ArgInfo = info_it->info;
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001154 RValue RV = I->first;
Daniel Dunbar56273772008-09-17 00:51:38 +00001155
1156 switch (ArgInfo.getKind()) {
Daniel Dunbar11e383a2009-02-05 08:00:50 +00001157 case ABIArgInfo::Indirect:
Daniel Dunbar1f745982009-02-05 09:16:39 +00001158 if (RV.isScalar() || RV.isComplex()) {
1159 // Make a temporary alloca to pass the argument.
Daniel Dunbar195337d2010-02-09 02:48:28 +00001160 Args.push_back(CreateMemTemp(I->second));
Daniel Dunbar1f745982009-02-05 09:16:39 +00001161 if (RV.isScalar())
Anders Carlssonb4aa4662009-05-19 18:50:41 +00001162 EmitStoreOfScalar(RV.getScalarVal(), Args.back(), false, I->second);
Daniel Dunbar1f745982009-02-05 09:16:39 +00001163 else
Mike Stump1eb44332009-09-09 15:08:12 +00001164 StoreComplexToAddr(RV.getComplexVal(), Args.back(), false);
Daniel Dunbar1f745982009-02-05 09:16:39 +00001165 } else {
1166 Args.push_back(RV.getAggregateAddr());
1167 }
1168 break;
1169
Anton Korobeynikovcc6fa882009-06-06 09:36:29 +00001170 case ABIArgInfo::Extend:
Daniel Dunbar46327aa2009-02-03 06:17:37 +00001171 case ABIArgInfo::Direct:
Daniel Dunbar56273772008-09-17 00:51:38 +00001172 if (RV.isScalar()) {
1173 Args.push_back(RV.getScalarVal());
1174 } else if (RV.isComplex()) {
Daniel Dunbar2fbf2f52009-02-05 11:13:54 +00001175 llvm::Value *Tmp = llvm::UndefValue::get(ConvertType(I->second));
1176 Tmp = Builder.CreateInsertValue(Tmp, RV.getComplexVal().first, 0);
1177 Tmp = Builder.CreateInsertValue(Tmp, RV.getComplexVal().second, 1);
1178 Args.push_back(Tmp);
Daniel Dunbar56273772008-09-17 00:51:38 +00001179 } else {
Daniel Dunbar2fbf2f52009-02-05 11:13:54 +00001180 Args.push_back(Builder.CreateLoad(RV.getAggregateAddr()));
Daniel Dunbar56273772008-09-17 00:51:38 +00001181 }
1182 break;
Mike Stump1eb44332009-09-09 15:08:12 +00001183
Daniel Dunbar11434922009-01-26 21:26:08 +00001184 case ABIArgInfo::Ignore:
1185 break;
1186
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +00001187 case ABIArgInfo::Coerce: {
1188 // FIXME: Avoid the conversion through memory if possible.
1189 llvm::Value *SrcPtr;
1190 if (RV.isScalar()) {
Daniel Dunbar195337d2010-02-09 02:48:28 +00001191 SrcPtr = CreateMemTemp(I->second, "coerce");
Anders Carlssonb4aa4662009-05-19 18:50:41 +00001192 EmitStoreOfScalar(RV.getScalarVal(), SrcPtr, false, I->second);
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +00001193 } else if (RV.isComplex()) {
Daniel Dunbar195337d2010-02-09 02:48:28 +00001194 SrcPtr = CreateMemTemp(I->second, "coerce");
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +00001195 StoreComplexToAddr(RV.getComplexVal(), SrcPtr, false);
Mike Stump1eb44332009-09-09 15:08:12 +00001196 } else
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +00001197 SrcPtr = RV.getAggregateAddr();
Chris Lattnerce700162010-06-28 23:44:11 +00001198
Chris Lattnerce700162010-06-28 23:44:11 +00001199 // If the coerce-to type is a first class aggregate, we flatten it and
1200 // pass the elements. Either way is semantically identical, but fast-isel
1201 // and the optimizer generally likes scalar values better than FCAs.
1202 if (const llvm::StructType *STy =
Chris Lattner309c59f2010-06-29 00:06:42 +00001203 dyn_cast<llvm::StructType>(ArgInfo.getCoerceToType())) {
Chris Lattner92826882010-07-05 20:41:41 +00001204 SrcPtr = Builder.CreateBitCast(SrcPtr,
1205 llvm::PointerType::getUnqual(STy));
1206 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1207 llvm::Value *EltPtr = Builder.CreateConstGEP2_32(SrcPtr, 0, i);
Chris Lattnerdeabde22010-07-28 18:24:28 +00001208 llvm::LoadInst *LI = Builder.CreateLoad(EltPtr);
1209 // We don't know what we're loading from.
1210 LI->setAlignment(1);
1211 Args.push_back(LI);
Chris Lattner309c59f2010-06-29 00:06:42 +00001212 }
Chris Lattnerce700162010-06-28 23:44:11 +00001213 } else {
Chris Lattner309c59f2010-06-29 00:06:42 +00001214 // In the simple case, just pass the coerced loaded value.
1215 Args.push_back(CreateCoercedLoad(SrcPtr, ArgInfo.getCoerceToType(),
1216 *this));
Chris Lattnerce700162010-06-28 23:44:11 +00001217 }
1218
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +00001219 break;
1220 }
1221
Daniel Dunbar56273772008-09-17 00:51:38 +00001222 case ABIArgInfo::Expand:
1223 ExpandTypeToArgs(I->second, RV, Args);
1224 break;
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001225 }
1226 }
Mike Stump1eb44332009-09-09 15:08:12 +00001227
Chris Lattner5db7ae52009-06-13 00:26:38 +00001228 // If the callee is a bitcast of a function to a varargs pointer to function
1229 // type, check to see if we can remove the bitcast. This handles some cases
1230 // with unprototyped functions.
1231 if (llvm::ConstantExpr *CE = dyn_cast<llvm::ConstantExpr>(Callee))
1232 if (llvm::Function *CalleeF = dyn_cast<llvm::Function>(CE->getOperand(0))) {
1233 const llvm::PointerType *CurPT=cast<llvm::PointerType>(Callee->getType());
1234 const llvm::FunctionType *CurFT =
1235 cast<llvm::FunctionType>(CurPT->getElementType());
1236 const llvm::FunctionType *ActualFT = CalleeF->getFunctionType();
Mike Stump1eb44332009-09-09 15:08:12 +00001237
Chris Lattner5db7ae52009-06-13 00:26:38 +00001238 if (CE->getOpcode() == llvm::Instruction::BitCast &&
1239 ActualFT->getReturnType() == CurFT->getReturnType() &&
Chris Lattnerd6bebbf2009-06-23 01:38:41 +00001240 ActualFT->getNumParams() == CurFT->getNumParams() &&
1241 ActualFT->getNumParams() == Args.size()) {
Chris Lattner5db7ae52009-06-13 00:26:38 +00001242 bool ArgsMatch = true;
1243 for (unsigned i = 0, e = ActualFT->getNumParams(); i != e; ++i)
1244 if (ActualFT->getParamType(i) != CurFT->getParamType(i)) {
1245 ArgsMatch = false;
1246 break;
1247 }
Mike Stump1eb44332009-09-09 15:08:12 +00001248
Chris Lattner5db7ae52009-06-13 00:26:38 +00001249 // Strip the cast if we can get away with it. This is a nice cleanup,
1250 // but also allows us to inline the function at -O0 if it is marked
1251 // always_inline.
1252 if (ArgsMatch)
1253 Callee = CalleeF;
1254 }
1255 }
Mike Stump1eb44332009-09-09 15:08:12 +00001256
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001257
Daniel Dunbarca6408c2009-09-12 00:59:20 +00001258 unsigned CallingConv;
Devang Patel761d7f72008-09-25 21:02:23 +00001259 CodeGen::AttributeListType AttributeList;
Daniel Dunbarca6408c2009-09-12 00:59:20 +00001260 CGM.ConstructAttributeList(CallInfo, TargetDecl, AttributeList, CallingConv);
Daniel Dunbar9834ffb2009-02-23 17:26:39 +00001261 llvm::AttrListPtr Attrs = llvm::AttrListPtr::get(AttributeList.begin(),
1262 AttributeList.end());
Mike Stump1eb44332009-09-09 15:08:12 +00001263
John McCallf1549f62010-07-06 01:34:17 +00001264 llvm::BasicBlock *InvokeDest = 0;
1265 if (!(Attrs.getFnAttributes() & llvm::Attribute::NoUnwind))
1266 InvokeDest = getInvokeDest();
1267
Daniel Dunbard14151d2009-03-02 04:32:35 +00001268 llvm::CallSite CS;
John McCallf1549f62010-07-06 01:34:17 +00001269 if (!InvokeDest) {
Jay Foadbeaaccd2009-05-21 09:52:38 +00001270 CS = Builder.CreateCall(Callee, Args.data(), Args.data()+Args.size());
Daniel Dunbar9834ffb2009-02-23 17:26:39 +00001271 } else {
1272 llvm::BasicBlock *Cont = createBasicBlock("invoke.cont");
Mike Stump1eb44332009-09-09 15:08:12 +00001273 CS = Builder.CreateInvoke(Callee, Cont, InvokeDest,
Jay Foadbeaaccd2009-05-21 09:52:38 +00001274 Args.data(), Args.data()+Args.size());
Daniel Dunbar9834ffb2009-02-23 17:26:39 +00001275 EmitBlock(Cont);
Daniel Dunbarf4fe0f02009-02-20 18:54:31 +00001276 }
Chris Lattnerce933992010-06-29 16:40:28 +00001277 if (callOrInvoke)
David Chisnall4b02afc2010-05-02 13:41:58 +00001278 *callOrInvoke = CS.getInstruction();
Daniel Dunbarf4fe0f02009-02-20 18:54:31 +00001279
Daniel Dunbard14151d2009-03-02 04:32:35 +00001280 CS.setAttributes(Attrs);
Daniel Dunbarca6408c2009-09-12 00:59:20 +00001281 CS.setCallingConv(static_cast<llvm::CallingConv::ID>(CallingConv));
Daniel Dunbard14151d2009-03-02 04:32:35 +00001282
1283 // If the call doesn't return, finish the basic block and clear the
1284 // insertion point; this allows the rest of IRgen to discard
1285 // unreachable code.
1286 if (CS.doesNotReturn()) {
1287 Builder.CreateUnreachable();
1288 Builder.ClearInsertionPoint();
Mike Stump1eb44332009-09-09 15:08:12 +00001289
Mike Stumpf5408fe2009-05-16 07:57:57 +00001290 // FIXME: For now, emit a dummy basic block because expr emitters in
1291 // generally are not ready to handle emitting expressions at unreachable
1292 // points.
Daniel Dunbard14151d2009-03-02 04:32:35 +00001293 EnsureInsertPoint();
Mike Stump1eb44332009-09-09 15:08:12 +00001294
Daniel Dunbard14151d2009-03-02 04:32:35 +00001295 // Return a reasonable RValue.
1296 return GetUndefRValue(RetTy);
Mike Stump1eb44332009-09-09 15:08:12 +00001297 }
Daniel Dunbard14151d2009-03-02 04:32:35 +00001298
1299 llvm::Instruction *CI = CS.getInstruction();
Benjamin Kramerffbb15e2009-10-05 13:47:21 +00001300 if (Builder.isNamePreserving() && !CI->getType()->isVoidTy())
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001301 CI->setName("call");
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001302
1303 switch (RetAI.getKind()) {
Daniel Dunbar11e383a2009-02-05 08:00:50 +00001304 case ABIArgInfo::Indirect:
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001305 if (RetTy->isAnyComplexType())
Daniel Dunbar56273772008-09-17 00:51:38 +00001306 return RValue::getComplex(LoadComplexFromAddr(Args[0], false));
Chris Lattner34030842009-03-22 00:32:22 +00001307 if (CodeGenFunction::hasAggregateLLVMType(RetTy))
Daniel Dunbar56273772008-09-17 00:51:38 +00001308 return RValue::getAggregate(Args[0]);
Chris Lattner34030842009-03-22 00:32:22 +00001309 return RValue::get(EmitLoadOfScalar(Args[0], false, RetTy));
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001310
Anton Korobeynikovcc6fa882009-06-06 09:36:29 +00001311 case ABIArgInfo::Extend:
Daniel Dunbar46327aa2009-02-03 06:17:37 +00001312 case ABIArgInfo::Direct:
Daniel Dunbar2fbf2f52009-02-05 11:13:54 +00001313 if (RetTy->isAnyComplexType()) {
1314 llvm::Value *Real = Builder.CreateExtractValue(CI, 0);
1315 llvm::Value *Imag = Builder.CreateExtractValue(CI, 1);
1316 return RValue::getComplex(std::make_pair(Real, Imag));
Chris Lattner34030842009-03-22 00:32:22 +00001317 }
1318 if (CodeGenFunction::hasAggregateLLVMType(RetTy)) {
Anders Carlssond2490a92009-12-24 20:40:36 +00001319 llvm::Value *DestPtr = ReturnValue.getValue();
1320 bool DestIsVolatile = ReturnValue.isVolatile();
1321
1322 if (!DestPtr) {
Daniel Dunbar195337d2010-02-09 02:48:28 +00001323 DestPtr = CreateMemTemp(RetTy, "agg.tmp");
Anders Carlssond2490a92009-12-24 20:40:36 +00001324 DestIsVolatile = false;
1325 }
1326 Builder.CreateStore(CI, DestPtr, DestIsVolatile);
1327 return RValue::getAggregate(DestPtr);
Chris Lattner34030842009-03-22 00:32:22 +00001328 }
1329 return RValue::get(CI);
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001330
Daniel Dunbar11434922009-01-26 21:26:08 +00001331 case ABIArgInfo::Ignore:
Daniel Dunbar0bcc5212009-02-03 06:30:17 +00001332 // If we are ignoring an argument that had a result, make sure to
1333 // construct the appropriate return value for our caller.
Daniel Dunbar13e81732009-02-05 07:09:07 +00001334 return GetUndefRValue(RetTy);
Daniel Dunbar11434922009-01-26 21:26:08 +00001335
Daniel Dunbar639ffe42008-09-10 07:04:09 +00001336 case ABIArgInfo::Coerce: {
Anders Carlssond2490a92009-12-24 20:40:36 +00001337 llvm::Value *DestPtr = ReturnValue.getValue();
1338 bool DestIsVolatile = ReturnValue.isVolatile();
1339
1340 if (!DestPtr) {
Daniel Dunbar195337d2010-02-09 02:48:28 +00001341 DestPtr = CreateMemTemp(RetTy, "coerce");
Anders Carlssond2490a92009-12-24 20:40:36 +00001342 DestIsVolatile = false;
1343 }
1344
1345 CreateCoercedStore(CI, DestPtr, DestIsVolatile, *this);
Anders Carlssonad3d6912008-11-25 22:21:48 +00001346 if (RetTy->isAnyComplexType())
Anders Carlssond2490a92009-12-24 20:40:36 +00001347 return RValue::getComplex(LoadComplexFromAddr(DestPtr, false));
Chris Lattner34030842009-03-22 00:32:22 +00001348 if (CodeGenFunction::hasAggregateLLVMType(RetTy))
Anders Carlssond2490a92009-12-24 20:40:36 +00001349 return RValue::getAggregate(DestPtr);
1350 return RValue::get(EmitLoadOfScalar(DestPtr, false, RetTy));
Daniel Dunbar639ffe42008-09-10 07:04:09 +00001351 }
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001352
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001353 case ABIArgInfo::Expand:
Mike Stump1eb44332009-09-09 15:08:12 +00001354 assert(0 && "Invalid ABI kind for return argument");
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001355 }
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001356
1357 assert(0 && "Unhandled ABIArgInfo::Kind");
1358 return RValue::get(0);
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001359}
Daniel Dunbarb4094ea2009-02-10 20:44:09 +00001360
1361/* VarArg handling */
1362
1363llvm::Value *CodeGenFunction::EmitVAArg(llvm::Value *VAListAddr, QualType Ty) {
1364 return CGM.getTypes().getABIInfo().EmitVAArg(VAListAddr, Ty, *this);
1365}