blob: 4d72d91cb7d8fa6f02f54117181515550d39997c [file] [log] [blame]
Daniel Dunbar3d7c90b2008-09-08 21:33:45 +00001//===----- CGCall.h - Encapsulate calling convention details ----*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// These classes wrap the information about a call or function
11// definition used to handle ABI compliancy.
12//
13//===----------------------------------------------------------------------===//
14
15#include "CGCall.h"
16#include "CodeGenFunction.h"
Daniel Dunbarc68897d2008-09-10 00:41:16 +000017#include "CodeGenModule.h"
Daniel Dunbard9eff3d2008-10-13 17:02:26 +000018#include "clang/Basic/TargetInfo.h"
Daniel Dunbar3d7c90b2008-09-08 21:33:45 +000019#include "clang/AST/Decl.h"
Anders Carlssonb15b55c2009-04-03 22:48:58 +000020#include "clang/AST/DeclCXX.h"
Daniel Dunbar3d7c90b2008-09-08 21:33:45 +000021#include "clang/AST/DeclObjC.h"
Chandler Carruth85098242010-06-15 23:19:56 +000022#include "clang/Frontend/CodeGenOptions.h"
Devang Patel3e1f51b2008-09-24 01:01:36 +000023#include "llvm/Attributes.h"
Daniel Dunbarb960b7b2009-03-02 04:32:35 +000024#include "llvm/Support/CallSite.h"
Daniel Dunbar0f4aa3c2009-01-27 01:36:03 +000025#include "llvm/Target/TargetData.h"
Daniel Dunbar6d6b0d32009-02-03 01:05:53 +000026
27#include "ABIInfo.h"
28
Daniel Dunbar3d7c90b2008-09-08 21:33:45 +000029using namespace clang;
30using namespace CodeGen;
31
32/***/
33
Daniel Dunbar3d7c90b2008-09-08 21:33:45 +000034// FIXME: Use iterator and sidestep silly type array creation.
35
John McCallab26cfa2010-02-05 21:31:56 +000036static unsigned ClangCallConvToLLVMCallConv(CallingConv CC) {
37 switch (CC) {
38 default: return llvm::CallingConv::C;
39 case CC_X86StdCall: return llvm::CallingConv::X86_StdCall;
40 case CC_X86FastCall: return llvm::CallingConv::X86_FastCall;
Douglas Gregora941dca2010-05-18 16:57:00 +000041 case CC_X86ThisCall: return llvm::CallingConv::X86_ThisCall;
John McCallab26cfa2010-02-05 21:31:56 +000042 }
43}
44
John McCall8ee376f2010-02-24 07:14:12 +000045/// Derives the 'this' type for codegen purposes, i.e. ignoring method
46/// qualification.
47/// FIXME: address space qualification?
John McCall2da83a32010-02-26 00:48:12 +000048static CanQualType GetThisType(ASTContext &Context, const CXXRecordDecl *RD) {
49 QualType RecTy = Context.getTagDeclType(RD)->getCanonicalTypeInternal();
50 return Context.getPointerType(CanQualType::CreateUnsafe(RecTy));
Daniel Dunbar7a95ca32008-09-10 04:01:49 +000051}
52
John McCall8ee376f2010-02-24 07:14:12 +000053/// Returns the canonical formal type of the given C++ method.
John McCall2da83a32010-02-26 00:48:12 +000054static CanQual<FunctionProtoType> GetFormalType(const CXXMethodDecl *MD) {
55 return MD->getType()->getCanonicalTypeUnqualified()
56 .getAs<FunctionProtoType>();
John McCall8ee376f2010-02-24 07:14:12 +000057}
58
59/// Returns the "extra-canonicalized" return type, which discards
60/// qualifiers on the return type. Codegen doesn't care about them,
61/// and it makes ABI code a little easier to be able to assume that
62/// all parameter and return types are top-level unqualified.
John McCall2da83a32010-02-26 00:48:12 +000063static CanQualType GetReturnType(QualType RetTy) {
64 return RetTy->getCanonicalTypeUnqualified().getUnqualifiedType();
John McCall8ee376f2010-02-24 07:14:12 +000065}
66
67const CGFunctionInfo &
John McCall2da83a32010-02-26 00:48:12 +000068CodeGenTypes::getFunctionInfo(CanQual<FunctionNoProtoType> FTNP) {
69 return getFunctionInfo(FTNP->getResultType().getUnqualifiedType(),
70 llvm::SmallVector<CanQualType, 16>(),
Rafael Espindolac50c27c2010-03-30 20:24:48 +000071 FTNP->getExtInfo());
John McCall8ee376f2010-02-24 07:14:12 +000072}
73
74/// \param Args - contains any initial parameters besides those
75/// in the formal type
76static const CGFunctionInfo &getFunctionInfo(CodeGenTypes &CGT,
John McCall2da83a32010-02-26 00:48:12 +000077 llvm::SmallVectorImpl<CanQualType> &ArgTys,
78 CanQual<FunctionProtoType> FTP) {
Daniel Dunbarbf8c24a2009-02-02 23:23:47 +000079 // FIXME: Kill copy.
Daniel Dunbar7a95ca32008-09-10 04:01:49 +000080 for (unsigned i = 0, e = FTP->getNumArgs(); i != e; ++i)
Daniel Dunbarbf8c24a2009-02-02 23:23:47 +000081 ArgTys.push_back(FTP->getArgType(i));
John McCall2da83a32010-02-26 00:48:12 +000082 CanQualType ResTy = FTP->getResultType().getUnqualifiedType();
83 return CGT.getFunctionInfo(ResTy, ArgTys,
Rafael Espindolac50c27c2010-03-30 20:24:48 +000084 FTP->getExtInfo());
John McCall8ee376f2010-02-24 07:14:12 +000085}
86
87const CGFunctionInfo &
John McCall2da83a32010-02-26 00:48:12 +000088CodeGenTypes::getFunctionInfo(CanQual<FunctionProtoType> FTP) {
89 llvm::SmallVector<CanQualType, 16> ArgTys;
John McCall8ee376f2010-02-24 07:14:12 +000090 return ::getFunctionInfo(*this, ArgTys, FTP);
Daniel Dunbar7feafc72009-09-11 22:24:53 +000091}
92
John McCallab26cfa2010-02-05 21:31:56 +000093static CallingConv getCallingConventionForDecl(const Decl *D) {
Daniel Dunbar7feafc72009-09-11 22:24:53 +000094 // Set the appropriate calling convention for the Function.
95 if (D->hasAttr<StdCallAttr>())
John McCallab26cfa2010-02-05 21:31:56 +000096 return CC_X86StdCall;
Daniel Dunbar7feafc72009-09-11 22:24:53 +000097
98 if (D->hasAttr<FastCallAttr>())
John McCallab26cfa2010-02-05 21:31:56 +000099 return CC_X86FastCall;
Daniel Dunbar7feafc72009-09-11 22:24:53 +0000100
Douglas Gregora941dca2010-05-18 16:57:00 +0000101 if (D->hasAttr<ThisCallAttr>())
102 return CC_X86ThisCall;
103
John McCallab26cfa2010-02-05 21:31:56 +0000104 return CC_C;
Daniel Dunbar7a95ca32008-09-10 04:01:49 +0000105}
106
Anders Carlsson2ee3c012009-10-03 19:43:08 +0000107const CGFunctionInfo &CodeGenTypes::getFunctionInfo(const CXXRecordDecl *RD,
108 const FunctionProtoType *FTP) {
John McCall2da83a32010-02-26 00:48:12 +0000109 llvm::SmallVector<CanQualType, 16> ArgTys;
John McCall8ee376f2010-02-24 07:14:12 +0000110
Anders Carlsson2ee3c012009-10-03 19:43:08 +0000111 // Add the 'this' pointer.
John McCall8ee376f2010-02-24 07:14:12 +0000112 ArgTys.push_back(GetThisType(Context, RD));
113
114 return ::getFunctionInfo(*this, ArgTys,
John McCall2da83a32010-02-26 00:48:12 +0000115 FTP->getCanonicalTypeUnqualified().getAs<FunctionProtoType>());
Anders Carlsson2ee3c012009-10-03 19:43:08 +0000116}
117
Anders Carlssonb15b55c2009-04-03 22:48:58 +0000118const CGFunctionInfo &CodeGenTypes::getFunctionInfo(const CXXMethodDecl *MD) {
John McCall2da83a32010-02-26 00:48:12 +0000119 llvm::SmallVector<CanQualType, 16> ArgTys;
John McCall8ee376f2010-02-24 07:14:12 +0000120
Chris Lattnerbea5b622009-05-12 20:27:19 +0000121 // Add the 'this' pointer unless this is a static method.
122 if (MD->isInstance())
John McCall8ee376f2010-02-24 07:14:12 +0000123 ArgTys.push_back(GetThisType(Context, MD->getParent()));
Mike Stump11289f42009-09-09 15:08:12 +0000124
John McCall8ee376f2010-02-24 07:14:12 +0000125 return ::getFunctionInfo(*this, ArgTys, GetFormalType(MD));
Anders Carlssonb15b55c2009-04-03 22:48:58 +0000126}
127
Anders Carlsson82ba57c2009-11-25 03:15:49 +0000128const CGFunctionInfo &CodeGenTypes::getFunctionInfo(const CXXConstructorDecl *D,
129 CXXCtorType Type) {
John McCall2da83a32010-02-26 00:48:12 +0000130 llvm::SmallVector<CanQualType, 16> ArgTys;
Anders Carlsson82ba57c2009-11-25 03:15:49 +0000131
132 // Add the 'this' pointer.
John McCall8ee376f2010-02-24 07:14:12 +0000133 ArgTys.push_back(GetThisType(Context, D->getParent()));
Anders Carlsson82ba57c2009-11-25 03:15:49 +0000134
135 // Check if we need to add a VTT parameter (which has type void **).
136 if (Type == Ctor_Base && D->getParent()->getNumVBases() != 0)
137 ArgTys.push_back(Context.getPointerType(Context.VoidPtrTy));
John McCall8ee376f2010-02-24 07:14:12 +0000138
139 return ::getFunctionInfo(*this, ArgTys, GetFormalType(D));
Anders Carlsson82ba57c2009-11-25 03:15:49 +0000140}
141
142const CGFunctionInfo &CodeGenTypes::getFunctionInfo(const CXXDestructorDecl *D,
143 CXXDtorType Type) {
John McCall2da83a32010-02-26 00:48:12 +0000144 llvm::SmallVector<CanQualType, 16> ArgTys;
Anders Carlsson82ba57c2009-11-25 03:15:49 +0000145
146 // Add the 'this' pointer.
John McCall2da83a32010-02-26 00:48:12 +0000147 ArgTys.push_back(GetThisType(Context, D->getParent()));
Anders Carlsson82ba57c2009-11-25 03:15:49 +0000148
149 // Check if we need to add a VTT parameter (which has type void **).
150 if (Type == Dtor_Base && D->getParent()->getNumVBases() != 0)
151 ArgTys.push_back(Context.getPointerType(Context.VoidPtrTy));
John McCall8ee376f2010-02-24 07:14:12 +0000152
153 return ::getFunctionInfo(*this, ArgTys, GetFormalType(D));
Anders Carlsson82ba57c2009-11-25 03:15:49 +0000154}
155
Daniel Dunbarbf8c24a2009-02-02 23:23:47 +0000156const CGFunctionInfo &CodeGenTypes::getFunctionInfo(const FunctionDecl *FD) {
Chris Lattnerbea5b622009-05-12 20:27:19 +0000157 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD))
Anders Carlssonb15b55c2009-04-03 22:48:58 +0000158 if (MD->isInstance())
159 return getFunctionInfo(MD);
Mike Stump11289f42009-09-09 15:08:12 +0000160
John McCall2da83a32010-02-26 00:48:12 +0000161 CanQualType FTy = FD->getType()->getCanonicalTypeUnqualified();
162 assert(isa<FunctionType>(FTy));
John McCall8ee376f2010-02-24 07:14:12 +0000163 if (isa<FunctionNoProtoType>(FTy))
John McCall2da83a32010-02-26 00:48:12 +0000164 return getFunctionInfo(FTy.getAs<FunctionNoProtoType>());
165 assert(isa<FunctionProtoType>(FTy));
166 return getFunctionInfo(FTy.getAs<FunctionProtoType>());
Daniel Dunbar3d7c90b2008-09-08 21:33:45 +0000167}
168
Daniel Dunbarbf8c24a2009-02-02 23:23:47 +0000169const CGFunctionInfo &CodeGenTypes::getFunctionInfo(const ObjCMethodDecl *MD) {
John McCall2da83a32010-02-26 00:48:12 +0000170 llvm::SmallVector<CanQualType, 16> ArgTys;
171 ArgTys.push_back(Context.getCanonicalParamType(MD->getSelfDecl()->getType()));
172 ArgTys.push_back(Context.getCanonicalParamType(Context.getObjCSelType()));
Daniel Dunbarbf8c24a2009-02-02 23:23:47 +0000173 // FIXME: Kill copy?
Chris Lattner90669d02009-02-20 06:23:21 +0000174 for (ObjCMethodDecl::param_iterator i = MD->param_begin(),
John McCall8ee376f2010-02-24 07:14:12 +0000175 e = MD->param_end(); i != e; ++i) {
176 ArgTys.push_back(Context.getCanonicalParamType((*i)->getType()));
177 }
178 return getFunctionInfo(GetReturnType(MD->getResultType()),
179 ArgTys,
Rafael Espindolac50c27c2010-03-30 20:24:48 +0000180 FunctionType::ExtInfo(
181 /*NoReturn*/ false,
Rafael Espindola49b85ab2010-03-30 22:15:11 +0000182 /*RegParm*/ 0,
Rafael Espindolac50c27c2010-03-30 20:24:48 +0000183 getCallingConventionForDecl(MD)));
Daniel Dunbar3d7c90b2008-09-08 21:33:45 +0000184}
185
Anders Carlsson6710c532010-02-06 02:44:09 +0000186const CGFunctionInfo &CodeGenTypes::getFunctionInfo(GlobalDecl GD) {
187 // FIXME: Do we need to handle ObjCMethodDecl?
188 const FunctionDecl *FD = cast<FunctionDecl>(GD.getDecl());
189
190 if (const CXXConstructorDecl *CD = dyn_cast<CXXConstructorDecl>(FD))
191 return getFunctionInfo(CD, GD.getCtorType());
192
193 if (const CXXDestructorDecl *DD = dyn_cast<CXXDestructorDecl>(FD))
194 return getFunctionInfo(DD, GD.getDtorType());
195
196 return getFunctionInfo(FD);
197}
198
Mike Stump11289f42009-09-09 15:08:12 +0000199const CGFunctionInfo &CodeGenTypes::getFunctionInfo(QualType ResTy,
Daniel Dunbar7feafc72009-09-11 22:24:53 +0000200 const CallArgList &Args,
Rafael Espindolac50c27c2010-03-30 20:24:48 +0000201 const FunctionType::ExtInfo &Info) {
Daniel Dunbarbf8c24a2009-02-02 23:23:47 +0000202 // FIXME: Kill copy.
John McCall2da83a32010-02-26 00:48:12 +0000203 llvm::SmallVector<CanQualType, 16> ArgTys;
Mike Stump11289f42009-09-09 15:08:12 +0000204 for (CallArgList::const_iterator i = Args.begin(), e = Args.end();
Daniel Dunbar3cd20632009-01-31 02:19:00 +0000205 i != e; ++i)
John McCall8ee376f2010-02-24 07:14:12 +0000206 ArgTys.push_back(Context.getCanonicalParamType(i->second));
Rafael Espindolac50c27c2010-03-30 20:24:48 +0000207 return getFunctionInfo(GetReturnType(ResTy), ArgTys, Info);
Daniel Dunbar3cd20632009-01-31 02:19:00 +0000208}
209
Mike Stump11289f42009-09-09 15:08:12 +0000210const CGFunctionInfo &CodeGenTypes::getFunctionInfo(QualType ResTy,
Daniel Dunbar7feafc72009-09-11 22:24:53 +0000211 const FunctionArgList &Args,
Rafael Espindolac50c27c2010-03-30 20:24:48 +0000212 const FunctionType::ExtInfo &Info) {
Daniel Dunbarbf8c24a2009-02-02 23:23:47 +0000213 // FIXME: Kill copy.
John McCall2da83a32010-02-26 00:48:12 +0000214 llvm::SmallVector<CanQualType, 16> ArgTys;
Mike Stump11289f42009-09-09 15:08:12 +0000215 for (FunctionArgList::const_iterator i = Args.begin(), e = Args.end();
Daniel Dunbar7633cbf2009-02-02 21:43:58 +0000216 i != e; ++i)
John McCall8ee376f2010-02-24 07:14:12 +0000217 ArgTys.push_back(Context.getCanonicalParamType(i->second));
Rafael Espindolac50c27c2010-03-30 20:24:48 +0000218 return getFunctionInfo(GetReturnType(ResTy), ArgTys, Info);
Daniel Dunbarbf8c24a2009-02-02 23:23:47 +0000219}
220
John McCall2da83a32010-02-26 00:48:12 +0000221const CGFunctionInfo &CodeGenTypes::getFunctionInfo(CanQualType ResTy,
222 const llvm::SmallVectorImpl<CanQualType> &ArgTys,
Rafael Espindolac50c27c2010-03-30 20:24:48 +0000223 const FunctionType::ExtInfo &Info) {
John McCall2da83a32010-02-26 00:48:12 +0000224#ifndef NDEBUG
225 for (llvm::SmallVectorImpl<CanQualType>::const_iterator
226 I = ArgTys.begin(), E = ArgTys.end(); I != E; ++I)
227 assert(I->isCanonicalAsParam());
228#endif
229
Rafael Espindola49b85ab2010-03-30 22:15:11 +0000230 unsigned CC = ClangCallConvToLLVMCallConv(Info.getCC());
John McCallab26cfa2010-02-05 21:31:56 +0000231
Daniel Dunbare0be8292009-02-03 00:07:12 +0000232 // Lookup or create unique function info.
233 llvm::FoldingSetNodeID ID;
Rafael Espindolac50c27c2010-03-30 20:24:48 +0000234 CGFunctionInfo::Profile(ID, Info, ResTy,
Daniel Dunbar7feafc72009-09-11 22:24:53 +0000235 ArgTys.begin(), ArgTys.end());
Daniel Dunbare0be8292009-02-03 00:07:12 +0000236
237 void *InsertPos = 0;
238 CGFunctionInfo *FI = FunctionInfos.FindNodeOrInsertPos(ID, InsertPos);
239 if (FI)
240 return *FI;
241
Daniel Dunbar313321e2009-02-03 05:31:23 +0000242 // Construct the function info.
Chris Lattner3dd716c2010-06-28 23:44:11 +0000243 FI = new CGFunctionInfo(CC, Info.getNoReturn(), Info.getRegParm(), ResTy,
244 ArgTys);
Daniel Dunbarfff09f32009-02-05 00:00:23 +0000245 FunctionInfos.InsertNode(FI, InsertPos);
Daniel Dunbar313321e2009-02-03 05:31:23 +0000246
247 // Compute ABI information.
Owen Anderson170229f2009-07-14 23:10:40 +0000248 getABIInfo().computeInfo(*FI, getContext(), TheModule.getContext());
Daniel Dunbar313321e2009-02-03 05:31:23 +0000249
Daniel Dunbare0be8292009-02-03 00:07:12 +0000250 return *FI;
Daniel Dunbarbf8c24a2009-02-02 23:23:47 +0000251}
252
Daniel Dunbar7feafc72009-09-11 22:24:53 +0000253CGFunctionInfo::CGFunctionInfo(unsigned _CallingConvention,
John McCallab26cfa2010-02-05 21:31:56 +0000254 bool _NoReturn,
Rafael Espindola49b85ab2010-03-30 22:15:11 +0000255 unsigned _RegParm,
John McCall2da83a32010-02-26 00:48:12 +0000256 CanQualType ResTy,
257 const llvm::SmallVectorImpl<CanQualType> &ArgTys)
Daniel Dunbar0ef34792009-09-12 00:59:20 +0000258 : CallingConvention(_CallingConvention),
John McCallab26cfa2010-02-05 21:31:56 +0000259 EffectiveCallingConvention(_CallingConvention),
Rafael Espindola49b85ab2010-03-30 22:15:11 +0000260 NoReturn(_NoReturn), RegParm(_RegParm)
Daniel Dunbar7feafc72009-09-11 22:24:53 +0000261{
Daniel Dunbar313321e2009-02-03 05:31:23 +0000262 NumArgs = ArgTys.size();
Chris Lattner3dd716c2010-06-28 23:44:11 +0000263
264 // FIXME: Coallocate with the CGFunctionInfo object.
Daniel Dunbar313321e2009-02-03 05:31:23 +0000265 Args = new ArgInfo[1 + NumArgs];
266 Args[0].type = ResTy;
267 for (unsigned i = 0; i < NumArgs; ++i)
268 Args[1 + i].type = ArgTys[i];
269}
270
271/***/
272
Mike Stump11289f42009-09-09 15:08:12 +0000273void CodeGenTypes::GetExpandedTypes(QualType Ty,
Daniel Dunbar8fc81b02008-09-17 00:51:38 +0000274 std::vector<const llvm::Type*> &ArgTys) {
275 const RecordType *RT = Ty->getAsStructureType();
276 assert(RT && "Can only expand structure types.");
277 const RecordDecl *RD = RT->getDecl();
Mike Stump11289f42009-09-09 15:08:12 +0000278 assert(!RD->hasFlexibleArrayMember() &&
Daniel Dunbar8fc81b02008-09-17 00:51:38 +0000279 "Cannot expand structure with flexible array.");
Mike Stump11289f42009-09-09 15:08:12 +0000280
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +0000281 for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end();
282 i != e; ++i) {
Daniel Dunbar8fc81b02008-09-17 00:51:38 +0000283 const FieldDecl *FD = *i;
Mike Stump11289f42009-09-09 15:08:12 +0000284 assert(!FD->isBitField() &&
Daniel Dunbar8fc81b02008-09-17 00:51:38 +0000285 "Cannot expand structure with bit-field members.");
Mike Stump11289f42009-09-09 15:08:12 +0000286
Daniel Dunbar8fc81b02008-09-17 00:51:38 +0000287 QualType FT = FD->getType();
288 if (CodeGenFunction::hasAggregateLLVMType(FT)) {
289 GetExpandedTypes(FT, ArgTys);
290 } else {
291 ArgTys.push_back(ConvertType(FT));
292 }
293 }
294}
295
Mike Stump11289f42009-09-09 15:08:12 +0000296llvm::Function::arg_iterator
Daniel Dunbar8fc81b02008-09-17 00:51:38 +0000297CodeGenFunction::ExpandTypeFromArgs(QualType Ty, LValue LV,
298 llvm::Function::arg_iterator AI) {
299 const RecordType *RT = Ty->getAsStructureType();
300 assert(RT && "Can only expand structure types.");
301
302 RecordDecl *RD = RT->getDecl();
Mike Stump11289f42009-09-09 15:08:12 +0000303 assert(LV.isSimple() &&
304 "Unexpected non-simple lvalue during struct expansion.");
Daniel Dunbar8fc81b02008-09-17 00:51:38 +0000305 llvm::Value *Addr = LV.getAddress();
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +0000306 for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end();
307 i != e; ++i) {
Mike Stump11289f42009-09-09 15:08:12 +0000308 FieldDecl *FD = *i;
Daniel Dunbar8fc81b02008-09-17 00:51:38 +0000309 QualType FT = FD->getType();
310
311 // FIXME: What are the right qualifiers here?
Anders Carlsson5d8645b2010-01-29 05:05:36 +0000312 LValue LV = EmitLValueForField(Addr, FD, 0);
Daniel Dunbar8fc81b02008-09-17 00:51:38 +0000313 if (CodeGenFunction::hasAggregateLLVMType(FT)) {
314 AI = ExpandTypeFromArgs(FT, LV, AI);
315 } else {
316 EmitStoreThroughLValue(RValue::get(AI), LV, FT);
317 ++AI;
318 }
319 }
320
321 return AI;
322}
323
Mike Stump11289f42009-09-09 15:08:12 +0000324void
325CodeGenFunction::ExpandTypeToArgs(QualType Ty, RValue RV,
Daniel Dunbar8fc81b02008-09-17 00:51:38 +0000326 llvm::SmallVector<llvm::Value*, 16> &Args) {
327 const RecordType *RT = Ty->getAsStructureType();
328 assert(RT && "Can only expand structure types.");
329
330 RecordDecl *RD = RT->getDecl();
331 assert(RV.isAggregate() && "Unexpected rvalue during struct expansion");
332 llvm::Value *Addr = RV.getAggregateAddr();
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +0000333 for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end();
334 i != e; ++i) {
Mike Stump11289f42009-09-09 15:08:12 +0000335 FieldDecl *FD = *i;
Daniel Dunbar8fc81b02008-09-17 00:51:38 +0000336 QualType FT = FD->getType();
Mike Stump11289f42009-09-09 15:08:12 +0000337
Daniel Dunbar8fc81b02008-09-17 00:51:38 +0000338 // FIXME: What are the right qualifiers here?
Anders Carlsson5d8645b2010-01-29 05:05:36 +0000339 LValue LV = EmitLValueForField(Addr, FD, 0);
Daniel Dunbar8fc81b02008-09-17 00:51:38 +0000340 if (CodeGenFunction::hasAggregateLLVMType(FT)) {
341 ExpandTypeToArgs(FT, RValue::getAggregate(LV.getAddress()), Args);
342 } else {
343 RValue RV = EmitLoadOfLValue(LV, FT);
Mike Stump11289f42009-09-09 15:08:12 +0000344 assert(RV.isScalar() &&
Daniel Dunbar8fc81b02008-09-17 00:51:38 +0000345 "Unexpected non-scalar rvalue during struct expansion.");
346 Args.push_back(RV.getScalarVal());
347 }
348 }
349}
350
Chris Lattner895c52b2010-06-27 06:04:18 +0000351/// EnterStructPointerForCoercedAccess - Given a struct pointer that we are
Chris Lattner1cd66982010-06-27 05:56:15 +0000352/// accessing some number of bytes out of it, try to gep into the struct to get
353/// at its inner goodness. Dive as deep as possible without entering an element
354/// with an in-memory size smaller than DstSize.
355static llvm::Value *
Chris Lattner895c52b2010-06-27 06:04:18 +0000356EnterStructPointerForCoercedAccess(llvm::Value *SrcPtr,
357 const llvm::StructType *SrcSTy,
358 uint64_t DstSize, CodeGenFunction &CGF) {
Chris Lattner1cd66982010-06-27 05:56:15 +0000359 // We can't dive into a zero-element struct.
360 if (SrcSTy->getNumElements() == 0) return SrcPtr;
361
362 const llvm::Type *FirstElt = SrcSTy->getElementType(0);
363
364 // If the first elt is at least as large as what we're looking for, or if the
365 // first element is the same size as the whole struct, we can enter it.
366 uint64_t FirstEltSize =
367 CGF.CGM.getTargetData().getTypeAllocSize(FirstElt);
368 if (FirstEltSize < DstSize &&
369 FirstEltSize < CGF.CGM.getTargetData().getTypeAllocSize(SrcSTy))
370 return SrcPtr;
371
372 // GEP into the first element.
373 SrcPtr = CGF.Builder.CreateConstGEP2_32(SrcPtr, 0, 0, "coerce.dive");
374
375 // If the first element is a struct, recurse.
376 const llvm::Type *SrcTy =
377 cast<llvm::PointerType>(SrcPtr->getType())->getElementType();
378 if (const llvm::StructType *SrcSTy = dyn_cast<llvm::StructType>(SrcTy))
Chris Lattner895c52b2010-06-27 06:04:18 +0000379 return EnterStructPointerForCoercedAccess(SrcPtr, SrcSTy, DstSize, CGF);
Chris Lattner1cd66982010-06-27 05:56:15 +0000380
381 return SrcPtr;
382}
383
Chris Lattner055097f2010-06-27 06:26:04 +0000384/// CoerceIntOrPtrToIntOrPtr - Convert a value Val to the specific Ty where both
385/// are either integers or pointers. This does a truncation of the value if it
386/// is too large or a zero extension if it is too small.
387static llvm::Value *CoerceIntOrPtrToIntOrPtr(llvm::Value *Val,
388 const llvm::Type *Ty,
389 CodeGenFunction &CGF) {
390 if (Val->getType() == Ty)
391 return Val;
392
393 if (isa<llvm::PointerType>(Val->getType())) {
394 // If this is Pointer->Pointer avoid conversion to and from int.
395 if (isa<llvm::PointerType>(Ty))
396 return CGF.Builder.CreateBitCast(Val, Ty, "coerce.val");
397
398 // Convert the pointer to an integer so we can play with its width.
Chris Lattner5e016ae2010-06-27 07:15:29 +0000399 Val = CGF.Builder.CreatePtrToInt(Val, CGF.IntPtrTy, "coerce.val.pi");
Chris Lattner055097f2010-06-27 06:26:04 +0000400 }
401
402 const llvm::Type *DestIntTy = Ty;
403 if (isa<llvm::PointerType>(DestIntTy))
Chris Lattner5e016ae2010-06-27 07:15:29 +0000404 DestIntTy = CGF.IntPtrTy;
Chris Lattner055097f2010-06-27 06:26:04 +0000405
406 if (Val->getType() != DestIntTy)
407 Val = CGF.Builder.CreateIntCast(Val, DestIntTy, false, "coerce.val.ii");
408
409 if (isa<llvm::PointerType>(Ty))
410 Val = CGF.Builder.CreateIntToPtr(Val, Ty, "coerce.val.ip");
411 return Val;
412}
413
Chris Lattner1cd66982010-06-27 05:56:15 +0000414
415
Daniel Dunbarf5589ac2009-02-02 19:06:38 +0000416/// CreateCoercedLoad - Create a load from \arg SrcPtr interpreted as
417/// a pointer to an object of type \arg Ty.
418///
419/// This safely handles the case when the src type is smaller than the
420/// destination type; in this situation the values of bits which not
421/// present in the src are undefined.
422static llvm::Value *CreateCoercedLoad(llvm::Value *SrcPtr,
423 const llvm::Type *Ty,
424 CodeGenFunction &CGF) {
Mike Stump11289f42009-09-09 15:08:12 +0000425 const llvm::Type *SrcTy =
Daniel Dunbarf5589ac2009-02-02 19:06:38 +0000426 cast<llvm::PointerType>(SrcPtr->getType())->getElementType();
Chris Lattnerd200eda2010-06-28 22:51:39 +0000427
428 // If SrcTy and Ty are the same, just do a load.
429 if (SrcTy == Ty)
430 return CGF.Builder.CreateLoad(SrcPtr);
431
Duncan Sandsc76fe8b2009-05-09 07:08:47 +0000432 uint64_t DstSize = CGF.CGM.getTargetData().getTypeAllocSize(Ty);
Chris Lattner1cd66982010-06-27 05:56:15 +0000433
434 if (const llvm::StructType *SrcSTy = dyn_cast<llvm::StructType>(SrcTy)) {
Chris Lattner895c52b2010-06-27 06:04:18 +0000435 SrcPtr = EnterStructPointerForCoercedAccess(SrcPtr, SrcSTy, DstSize, CGF);
Chris Lattner1cd66982010-06-27 05:56:15 +0000436 SrcTy = cast<llvm::PointerType>(SrcPtr->getType())->getElementType();
437 }
438
439 uint64_t SrcSize = CGF.CGM.getTargetData().getTypeAllocSize(SrcTy);
Daniel Dunbarf5589ac2009-02-02 19:06:38 +0000440
Chris Lattner055097f2010-06-27 06:26:04 +0000441 // If the source and destination are integer or pointer types, just do an
442 // extension or truncation to the desired type.
443 if ((isa<llvm::IntegerType>(Ty) || isa<llvm::PointerType>(Ty)) &&
444 (isa<llvm::IntegerType>(SrcTy) || isa<llvm::PointerType>(SrcTy))) {
445 llvm::LoadInst *Load = CGF.Builder.CreateLoad(SrcPtr);
446 return CoerceIntOrPtrToIntOrPtr(Load, Ty, CGF);
447 }
448
Daniel Dunbarb52d0772009-02-03 05:59:18 +0000449 // If load is legal, just bitcast the src pointer.
Daniel Dunbarffdb8432009-05-13 18:54:26 +0000450 if (SrcSize >= DstSize) {
Mike Stump18bb9282009-05-16 07:57:57 +0000451 // Generally SrcSize is never greater than DstSize, since this means we are
452 // losing bits. However, this can happen in cases where the structure has
453 // additional padding, for example due to a user specified alignment.
Daniel Dunbarffdb8432009-05-13 18:54:26 +0000454 //
Mike Stump18bb9282009-05-16 07:57:57 +0000455 // FIXME: Assert that we aren't truncating non-padding bits when have access
456 // to that information.
Daniel Dunbarf5589ac2009-02-02 19:06:38 +0000457 llvm::Value *Casted =
458 CGF.Builder.CreateBitCast(SrcPtr, llvm::PointerType::getUnqual(Ty));
Daniel Dunbaree9e4c22009-02-07 02:46:03 +0000459 llvm::LoadInst *Load = CGF.Builder.CreateLoad(Casted);
460 // FIXME: Use better alignment / avoid requiring aligned load.
461 Load->setAlignment(1);
462 return Load;
Daniel Dunbarf5589ac2009-02-02 19:06:38 +0000463 }
Chris Lattner3fcc7902010-06-27 01:06:27 +0000464
465 // Otherwise do coercion through memory. This is stupid, but
466 // simple.
467 llvm::Value *Tmp = CGF.CreateTempAlloca(Ty);
468 llvm::Value *Casted =
469 CGF.Builder.CreateBitCast(Tmp, llvm::PointerType::getUnqual(SrcTy));
470 llvm::StoreInst *Store =
471 CGF.Builder.CreateStore(CGF.Builder.CreateLoad(SrcPtr), Casted);
472 // FIXME: Use better alignment / avoid requiring aligned store.
473 Store->setAlignment(1);
474 return CGF.Builder.CreateLoad(Tmp);
Daniel Dunbarf5589ac2009-02-02 19:06:38 +0000475}
476
477/// CreateCoercedStore - Create a store to \arg DstPtr from \arg Src,
478/// where the source and destination may have different types.
479///
480/// This safely handles the case when the src type is larger than the
481/// destination type; the upper bits of the src will be lost.
482static void CreateCoercedStore(llvm::Value *Src,
483 llvm::Value *DstPtr,
Anders Carlsson17490832009-12-24 20:40:36 +0000484 bool DstIsVolatile,
Daniel Dunbarf5589ac2009-02-02 19:06:38 +0000485 CodeGenFunction &CGF) {
486 const llvm::Type *SrcTy = Src->getType();
Mike Stump11289f42009-09-09 15:08:12 +0000487 const llvm::Type *DstTy =
Daniel Dunbarf5589ac2009-02-02 19:06:38 +0000488 cast<llvm::PointerType>(DstPtr->getType())->getElementType();
Chris Lattnerd200eda2010-06-28 22:51:39 +0000489 if (SrcTy == DstTy) {
490 CGF.Builder.CreateStore(Src, DstPtr, DstIsVolatile);
491 return;
492 }
493
494 uint64_t SrcSize = CGF.CGM.getTargetData().getTypeAllocSize(SrcTy);
495
Chris Lattner895c52b2010-06-27 06:04:18 +0000496 if (const llvm::StructType *DstSTy = dyn_cast<llvm::StructType>(DstTy)) {
497 DstPtr = EnterStructPointerForCoercedAccess(DstPtr, DstSTy, SrcSize, CGF);
498 DstTy = cast<llvm::PointerType>(DstPtr->getType())->getElementType();
499 }
500
Chris Lattner055097f2010-06-27 06:26:04 +0000501 // If the source and destination are integer or pointer types, just do an
502 // extension or truncation to the desired type.
503 if ((isa<llvm::IntegerType>(SrcTy) || isa<llvm::PointerType>(SrcTy)) &&
504 (isa<llvm::IntegerType>(DstTy) || isa<llvm::PointerType>(DstTy))) {
505 Src = CoerceIntOrPtrToIntOrPtr(Src, DstTy, CGF);
506 CGF.Builder.CreateStore(Src, DstPtr, DstIsVolatile);
507 return;
508 }
509
Duncan Sandsc76fe8b2009-05-09 07:08:47 +0000510 uint64_t DstSize = CGF.CGM.getTargetData().getTypeAllocSize(DstTy);
Daniel Dunbarf5589ac2009-02-02 19:06:38 +0000511
Daniel Dunbar313321e2009-02-03 05:31:23 +0000512 // If store is legal, just bitcast the src pointer.
Daniel Dunbar4be99ff2009-06-05 07:58:54 +0000513 if (SrcSize <= DstSize) {
Daniel Dunbarf5589ac2009-02-02 19:06:38 +0000514 llvm::Value *Casted =
515 CGF.Builder.CreateBitCast(DstPtr, llvm::PointerType::getUnqual(SrcTy));
Daniel Dunbaree9e4c22009-02-07 02:46:03 +0000516 // FIXME: Use better alignment / avoid requiring aligned store.
Anders Carlsson17490832009-12-24 20:40:36 +0000517 CGF.Builder.CreateStore(Src, Casted, DstIsVolatile)->setAlignment(1);
Daniel Dunbarf5589ac2009-02-02 19:06:38 +0000518 } else {
Daniel Dunbarf5589ac2009-02-02 19:06:38 +0000519 // Otherwise do coercion through memory. This is stupid, but
520 // simple.
Daniel Dunbar4be99ff2009-06-05 07:58:54 +0000521
522 // Generally SrcSize is never greater than DstSize, since this means we are
523 // losing bits. However, this can happen in cases where the structure has
524 // additional padding, for example due to a user specified alignment.
525 //
526 // FIXME: Assert that we aren't truncating non-padding bits when have access
527 // to that information.
Daniel Dunbarf5589ac2009-02-02 19:06:38 +0000528 llvm::Value *Tmp = CGF.CreateTempAlloca(SrcTy);
529 CGF.Builder.CreateStore(Src, Tmp);
Mike Stump11289f42009-09-09 15:08:12 +0000530 llvm::Value *Casted =
Daniel Dunbarf5589ac2009-02-02 19:06:38 +0000531 CGF.Builder.CreateBitCast(Tmp, llvm::PointerType::getUnqual(DstTy));
Daniel Dunbaree9e4c22009-02-07 02:46:03 +0000532 llvm::LoadInst *Load = CGF.Builder.CreateLoad(Casted);
533 // FIXME: Use better alignment / avoid requiring aligned load.
534 Load->setAlignment(1);
Anders Carlsson17490832009-12-24 20:40:36 +0000535 CGF.Builder.CreateStore(Load, DstPtr, DstIsVolatile);
Daniel Dunbarf5589ac2009-02-02 19:06:38 +0000536 }
537}
538
Daniel Dunbar8fc81b02008-09-17 00:51:38 +0000539/***/
540
Daniel Dunbard931a872009-02-02 22:03:45 +0000541bool CodeGenModule::ReturnTypeUsesSret(const CGFunctionInfo &FI) {
Daniel Dunbarb8b1c672009-02-05 08:00:50 +0000542 return FI.getReturnInfo().isIndirect();
Daniel Dunbar7633cbf2009-02-02 21:43:58 +0000543}
544
John McCallf8ff7b92010-02-23 00:48:20 +0000545const llvm::FunctionType *CodeGenTypes::GetFunctionType(GlobalDecl GD) {
546 const CGFunctionInfo &FI = getFunctionInfo(GD);
547
548 // For definition purposes, don't consider a K&R function variadic.
549 bool Variadic = false;
550 if (const FunctionProtoType *FPT =
551 cast<FunctionDecl>(GD.getDecl())->getType()->getAs<FunctionProtoType>())
552 Variadic = FPT->isVariadic();
553
554 return GetFunctionType(FI, Variadic);
555}
556
Daniel Dunbar7a95ca32008-09-10 04:01:49 +0000557const llvm::FunctionType *
Daniel Dunbar7633cbf2009-02-02 21:43:58 +0000558CodeGenTypes::GetFunctionType(const CGFunctionInfo &FI, bool IsVariadic) {
Daniel Dunbar7a95ca32008-09-10 04:01:49 +0000559 std::vector<const llvm::Type*> ArgTys;
560
561 const llvm::Type *ResultType = 0;
562
Daniel Dunbar3668cb22009-02-02 23:43:58 +0000563 QualType RetTy = FI.getReturnType();
Daniel Dunbarb52d0772009-02-03 05:59:18 +0000564 const ABIArgInfo &RetAI = FI.getReturnInfo();
Daniel Dunbard3674e62008-09-11 01:48:57 +0000565 switch (RetAI.getKind()) {
Daniel Dunbard3674e62008-09-11 01:48:57 +0000566 case ABIArgInfo::Expand:
567 assert(0 && "Invalid ABI kind for return argument");
568
Anton Korobeynikov18adbf52009-06-06 09:36:29 +0000569 case ABIArgInfo::Extend:
Daniel Dunbar67dace892009-02-03 06:17:37 +0000570 case ABIArgInfo::Direct:
571 ResultType = ConvertType(RetTy);
572 break;
573
Daniel Dunbarb8b1c672009-02-05 08:00:50 +0000574 case ABIArgInfo::Indirect: {
575 assert(!RetAI.getIndirectAlign() && "Align unused on indirect return.");
Owen Anderson41a75022009-08-13 21:57:51 +0000576 ResultType = llvm::Type::getVoidTy(getLLVMContext());
Daniel Dunbarb8b47592008-09-10 07:00:50 +0000577 const llvm::Type *STy = ConvertType(RetTy);
Daniel Dunbar7a95ca32008-09-10 04:01:49 +0000578 ArgTys.push_back(llvm::PointerType::get(STy, RetTy.getAddressSpace()));
579 break;
580 }
581
Daniel Dunbar94a6f252009-01-26 21:26:08 +0000582 case ABIArgInfo::Ignore:
Owen Anderson41a75022009-08-13 21:57:51 +0000583 ResultType = llvm::Type::getVoidTy(getLLVMContext());
Daniel Dunbar94a6f252009-01-26 21:26:08 +0000584 break;
585
Daniel Dunbar7a95ca32008-09-10 04:01:49 +0000586 case ABIArgInfo::Coerce:
Daniel Dunbar573884e2008-09-10 07:04:09 +0000587 ResultType = RetAI.getCoerceToType();
Daniel Dunbar7a95ca32008-09-10 04:01:49 +0000588 break;
589 }
Mike Stump11289f42009-09-09 15:08:12 +0000590
591 for (CGFunctionInfo::const_arg_iterator it = FI.arg_begin(),
Daniel Dunbar313321e2009-02-03 05:31:23 +0000592 ie = FI.arg_end(); it != ie; ++it) {
593 const ABIArgInfo &AI = it->info;
Mike Stump11289f42009-09-09 15:08:12 +0000594
Daniel Dunbard3674e62008-09-11 01:48:57 +0000595 switch (AI.getKind()) {
Daniel Dunbar94a6f252009-01-26 21:26:08 +0000596 case ABIArgInfo::Ignore:
597 break;
598
Chris Lattner3dd716c2010-06-28 23:44:11 +0000599 case ABIArgInfo::Coerce: {
600 // If the coerce-to type is a first class aggregate, flatten it. Either
601 // way is semantically identical, but fast-isel and the optimizer
602 // generally likes scalar values better than FCAs.
603 const llvm::Type *ArgTy = AI.getCoerceToType();
604 if (const llvm::StructType *STy = dyn_cast<llvm::StructType>(ArgTy)) {
605 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i)
606 ArgTys.push_back(STy->getElementType(i));
607 } else {
608 ArgTys.push_back(ArgTy);
609 }
Daniel Dunbar2f219b02009-02-03 19:12:28 +0000610 break;
Chris Lattner3dd716c2010-06-28 23:44:11 +0000611 }
Daniel Dunbar2f219b02009-02-03 19:12:28 +0000612
Daniel Dunbar9bfb4de2009-02-10 01:51:39 +0000613 case ABIArgInfo::Indirect: {
Daniel Dunbarb8b1c672009-02-05 08:00:50 +0000614 // indirect arguments are always on the stack, which is addr space #0.
Daniel Dunbar9bfb4de2009-02-10 01:51:39 +0000615 const llvm::Type *LTy = ConvertTypeForMem(it->type);
616 ArgTys.push_back(llvm::PointerType::getUnqual(LTy));
Daniel Dunbard3674e62008-09-11 01:48:57 +0000617 break;
Daniel Dunbar9bfb4de2009-02-10 01:51:39 +0000618 }
Anton Korobeynikov18adbf52009-06-06 09:36:29 +0000619
620 case ABIArgInfo::Extend:
Daniel Dunbar67dace892009-02-03 06:17:37 +0000621 case ABIArgInfo::Direct:
Daniel Dunbar747865a2009-02-05 09:16:39 +0000622 ArgTys.push_back(ConvertType(it->type));
Daniel Dunbard3674e62008-09-11 01:48:57 +0000623 break;
Mike Stump11289f42009-09-09 15:08:12 +0000624
Daniel Dunbard3674e62008-09-11 01:48:57 +0000625 case ABIArgInfo::Expand:
Daniel Dunbar313321e2009-02-03 05:31:23 +0000626 GetExpandedTypes(it->type, ArgTys);
Daniel Dunbard3674e62008-09-11 01:48:57 +0000627 break;
628 }
Daniel Dunbar7a95ca32008-09-10 04:01:49 +0000629 }
630
Daniel Dunbar7633cbf2009-02-02 21:43:58 +0000631 return llvm::FunctionType::get(ResultType, ArgTys, IsVariadic);
Daniel Dunbar81cf67f2008-09-09 23:48:28 +0000632}
633
Anders Carlsson64457732009-11-24 05:08:52 +0000634const llvm::Type *
Anders Carlsson11e51402010-04-17 20:15:18 +0000635CodeGenTypes::GetFunctionTypeForVTable(const CXXMethodDecl *MD) {
Anders Carlsson64457732009-11-24 05:08:52 +0000636 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>();
637
Eli Friedmanc8731be2010-05-30 06:03:20 +0000638 if (!VerifyFuncTypeComplete(FPT))
Anders Carlsson64457732009-11-24 05:08:52 +0000639 return GetFunctionType(getFunctionInfo(MD), FPT->isVariadic());
640
641 return llvm::OpaqueType::get(getLLVMContext());
642}
643
Daniel Dunbar3668cb22009-02-02 23:43:58 +0000644void CodeGenModule::ConstructAttributeList(const CGFunctionInfo &FI,
Daniel Dunbard931a872009-02-02 22:03:45 +0000645 const Decl *TargetDecl,
Daniel Dunbar0ef34792009-09-12 00:59:20 +0000646 AttributeListType &PAL,
647 unsigned &CallingConv) {
Daniel Dunbar76c8eb72008-09-10 00:32:18 +0000648 unsigned FuncAttrs = 0;
Devang Patel597e7082008-09-26 22:53:57 +0000649 unsigned RetAttrs = 0;
Daniel Dunbar76c8eb72008-09-10 00:32:18 +0000650
Daniel Dunbar0ef34792009-09-12 00:59:20 +0000651 CallingConv = FI.getEffectiveCallingConvention();
652
John McCallab26cfa2010-02-05 21:31:56 +0000653 if (FI.isNoReturn())
654 FuncAttrs |= llvm::Attribute::NoReturn;
655
Anton Korobeynikovc8478242009-04-04 00:49:24 +0000656 // FIXME: handle sseregparm someday...
Daniel Dunbar76c8eb72008-09-10 00:32:18 +0000657 if (TargetDecl) {
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +0000658 if (TargetDecl->hasAttr<NoThrowAttr>())
Devang Patel322300d2008-09-25 21:02:23 +0000659 FuncAttrs |= llvm::Attribute::NoUnwind;
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +0000660 if (TargetDecl->hasAttr<NoReturnAttr>())
Devang Patel322300d2008-09-25 21:02:23 +0000661 FuncAttrs |= llvm::Attribute::NoReturn;
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +0000662 if (TargetDecl->hasAttr<ConstAttr>())
Anders Carlssonb8316282008-10-05 23:32:53 +0000663 FuncAttrs |= llvm::Attribute::ReadNone;
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +0000664 else if (TargetDecl->hasAttr<PureAttr>())
Daniel Dunbar8c920c92009-04-10 22:14:52 +0000665 FuncAttrs |= llvm::Attribute::ReadOnly;
Ryan Flynn1f1fdc02009-08-09 20:07:29 +0000666 if (TargetDecl->hasAttr<MallocAttr>())
667 RetAttrs |= llvm::Attribute::NoAlias;
Daniel Dunbar76c8eb72008-09-10 00:32:18 +0000668 }
669
Chandler Carruthbc55fe22009-11-12 17:24:48 +0000670 if (CodeGenOpts.OptimizeSize)
Daniel Dunbarc369d732009-10-27 19:48:08 +0000671 FuncAttrs |= llvm::Attribute::OptimizeForSize;
Chandler Carruthbc55fe22009-11-12 17:24:48 +0000672 if (CodeGenOpts.DisableRedZone)
Devang Patel6e467b12009-06-04 23:32:02 +0000673 FuncAttrs |= llvm::Attribute::NoRedZone;
Chandler Carruthbc55fe22009-11-12 17:24:48 +0000674 if (CodeGenOpts.NoImplicitFloat)
Devang Patel9e243862009-06-05 22:05:48 +0000675 FuncAttrs |= llvm::Attribute::NoImplicitFloat;
Devang Patel6e467b12009-06-04 23:32:02 +0000676
Daniel Dunbar3668cb22009-02-02 23:43:58 +0000677 QualType RetTy = FI.getReturnType();
Daniel Dunbar76c8eb72008-09-10 00:32:18 +0000678 unsigned Index = 1;
Daniel Dunbarb52d0772009-02-03 05:59:18 +0000679 const ABIArgInfo &RetAI = FI.getReturnInfo();
Daniel Dunbar7a95ca32008-09-10 04:01:49 +0000680 switch (RetAI.getKind()) {
Anton Korobeynikov18adbf52009-06-06 09:36:29 +0000681 case ABIArgInfo::Extend:
682 if (RetTy->isSignedIntegerType()) {
683 RetAttrs |= llvm::Attribute::SExt;
684 } else if (RetTy->isUnsignedIntegerType()) {
685 RetAttrs |= llvm::Attribute::ZExt;
686 }
687 // FALLTHROUGH
Daniel Dunbar67dace892009-02-03 06:17:37 +0000688 case ABIArgInfo::Direct:
Daniel Dunbara72d4ae2008-09-10 02:41:04 +0000689 break;
690
Daniel Dunbarb8b1c672009-02-05 08:00:50 +0000691 case ABIArgInfo::Indirect:
Mike Stump11289f42009-09-09 15:08:12 +0000692 PAL.push_back(llvm::AttributeWithIndex::get(Index,
Chris Lattner9cffdf12010-04-20 05:44:43 +0000693 llvm::Attribute::StructRet));
Daniel Dunbar76c8eb72008-09-10 00:32:18 +0000694 ++Index;
Daniel Dunbarc2304432009-03-18 19:51:01 +0000695 // sret disables readnone and readonly
696 FuncAttrs &= ~(llvm::Attribute::ReadOnly |
697 llvm::Attribute::ReadNone);
Daniel Dunbara72d4ae2008-09-10 02:41:04 +0000698 break;
699
Daniel Dunbar94a6f252009-01-26 21:26:08 +0000700 case ABIArgInfo::Ignore:
Daniel Dunbara72d4ae2008-09-10 02:41:04 +0000701 case ABIArgInfo::Coerce:
Daniel Dunbara72d4ae2008-09-10 02:41:04 +0000702 break;
Daniel Dunbard3674e62008-09-11 01:48:57 +0000703
Daniel Dunbard3674e62008-09-11 01:48:57 +0000704 case ABIArgInfo::Expand:
Mike Stump11289f42009-09-09 15:08:12 +0000705 assert(0 && "Invalid ABI kind for return argument");
Daniel Dunbar76c8eb72008-09-10 00:32:18 +0000706 }
Daniel Dunbara72d4ae2008-09-10 02:41:04 +0000707
Devang Patel597e7082008-09-26 22:53:57 +0000708 if (RetAttrs)
709 PAL.push_back(llvm::AttributeWithIndex::get(0, RetAttrs));
Anton Korobeynikovc8478242009-04-04 00:49:24 +0000710
711 // FIXME: we need to honour command line settings also...
712 // FIXME: RegParm should be reduced in case of nested functions and/or global
713 // register variable.
Rafael Espindola49b85ab2010-03-30 22:15:11 +0000714 signed RegParm = FI.getRegParm();
Anton Korobeynikovc8478242009-04-04 00:49:24 +0000715
716 unsigned PointerWidth = getContext().Target.getPointerWidth(0);
Mike Stump11289f42009-09-09 15:08:12 +0000717 for (CGFunctionInfo::const_arg_iterator it = FI.arg_begin(),
Daniel Dunbar313321e2009-02-03 05:31:23 +0000718 ie = FI.arg_end(); it != ie; ++it) {
719 QualType ParamType = it->type;
720 const ABIArgInfo &AI = it->info;
Devang Patel322300d2008-09-25 21:02:23 +0000721 unsigned Attributes = 0;
Anton Korobeynikovc8478242009-04-04 00:49:24 +0000722
John McCall39ec71f2010-03-27 00:47:27 +0000723 // 'restrict' -> 'noalias' is done in EmitFunctionProlog when we
724 // have the corresponding parameter variable. It doesn't make
725 // sense to do it here because parameters are so fucked up.
Nuno Lopes72513272009-12-07 18:30:06 +0000726
Daniel Dunbard3674e62008-09-11 01:48:57 +0000727 switch (AI.getKind()) {
Daniel Dunbar2f219b02009-02-03 19:12:28 +0000728 case ABIArgInfo::Coerce:
Chris Lattner3dd716c2010-06-28 23:44:11 +0000729 if (const llvm::StructType *STy =
730 dyn_cast<llvm::StructType>(AI.getCoerceToType()))
731 Index += STy->getNumElements();
732 else
733 ++Index;
734 continue; // Skip index increment.
Daniel Dunbar2f219b02009-02-03 19:12:28 +0000735
Daniel Dunbarb8b1c672009-02-05 08:00:50 +0000736 case ABIArgInfo::Indirect:
Anders Carlsson20759ad2009-09-16 15:53:40 +0000737 if (AI.getIndirectByVal())
738 Attributes |= llvm::Attribute::ByVal;
739
Anton Korobeynikovc8478242009-04-04 00:49:24 +0000740 Attributes |=
Daniel Dunbarb8b1c672009-02-05 08:00:50 +0000741 llvm::Attribute::constructAlignmentFromInt(AI.getIndirectAlign());
Daniel Dunbarc2304432009-03-18 19:51:01 +0000742 // byval disables readnone and readonly.
743 FuncAttrs &= ~(llvm::Attribute::ReadOnly |
744 llvm::Attribute::ReadNone);
Daniel Dunbard3674e62008-09-11 01:48:57 +0000745 break;
Anton Korobeynikov18adbf52009-06-06 09:36:29 +0000746
747 case ABIArgInfo::Extend:
748 if (ParamType->isSignedIntegerType()) {
749 Attributes |= llvm::Attribute::SExt;
750 } else if (ParamType->isUnsignedIntegerType()) {
751 Attributes |= llvm::Attribute::ZExt;
752 }
753 // FALLS THROUGH
Daniel Dunbar67dace892009-02-03 06:17:37 +0000754 case ABIArgInfo::Direct:
Anton Korobeynikovc8478242009-04-04 00:49:24 +0000755 if (RegParm > 0 &&
756 (ParamType->isIntegerType() || ParamType->isPointerType())) {
757 RegParm -=
758 (Context.getTypeSize(ParamType) + PointerWidth - 1) / PointerWidth;
759 if (RegParm >= 0)
760 Attributes |= llvm::Attribute::InReg;
761 }
762 // FIXME: handle sseregparm someday...
Daniel Dunbard3674e62008-09-11 01:48:57 +0000763 break;
Anton Korobeynikovc8478242009-04-04 00:49:24 +0000764
Daniel Dunbar94a6f252009-01-26 21:26:08 +0000765 case ABIArgInfo::Ignore:
766 // Skip increment, no matching LLVM parameter.
Mike Stump11289f42009-09-09 15:08:12 +0000767 continue;
Daniel Dunbar94a6f252009-01-26 21:26:08 +0000768
Daniel Dunbar8fc81b02008-09-17 00:51:38 +0000769 case ABIArgInfo::Expand: {
Mike Stump11289f42009-09-09 15:08:12 +0000770 std::vector<const llvm::Type*> Tys;
Mike Stump18bb9282009-05-16 07:57:57 +0000771 // FIXME: This is rather inefficient. Do we ever actually need to do
772 // anything here? The result should be just reconstructed on the other
773 // side, so extension should be a non-issue.
Daniel Dunbar8fc81b02008-09-17 00:51:38 +0000774 getTypes().GetExpandedTypes(ParamType, Tys);
775 Index += Tys.size();
776 continue;
777 }
Daniel Dunbar76c8eb72008-09-10 00:32:18 +0000778 }
Mike Stump11289f42009-09-09 15:08:12 +0000779
Devang Patel322300d2008-09-25 21:02:23 +0000780 if (Attributes)
781 PAL.push_back(llvm::AttributeWithIndex::get(Index, Attributes));
Daniel Dunbar8fc81b02008-09-17 00:51:38 +0000782 ++Index;
Daniel Dunbar76c8eb72008-09-10 00:32:18 +0000783 }
Devang Patel597e7082008-09-26 22:53:57 +0000784 if (FuncAttrs)
785 PAL.push_back(llvm::AttributeWithIndex::get(~0, FuncAttrs));
Daniel Dunbar76c8eb72008-09-10 00:32:18 +0000786}
787
Daniel Dunbard931a872009-02-02 22:03:45 +0000788void CodeGenFunction::EmitFunctionProlog(const CGFunctionInfo &FI,
789 llvm::Function *Fn,
Daniel Dunbar613855c2008-09-09 23:27:19 +0000790 const FunctionArgList &Args) {
John McCallcaa19452009-07-28 01:00:58 +0000791 // If this is an implicit-return-zero function, go ahead and
792 // initialize the return value. TODO: it might be nice to have
793 // a more general mechanism for this that didn't require synthesized
794 // return statements.
Anders Carlssonb8be93f2009-08-08 23:24:23 +0000795 if (const FunctionDecl* FD = dyn_cast_or_null<FunctionDecl>(CurFuncDecl)) {
John McCallcaa19452009-07-28 01:00:58 +0000796 if (FD->hasImplicitReturnZero()) {
797 QualType RetTy = FD->getResultType().getUnqualifiedType();
798 const llvm::Type* LLVMTy = CGM.getTypes().ConvertType(RetTy);
Owen Anderson0b75f232009-07-31 20:28:54 +0000799 llvm::Constant* Zero = llvm::Constant::getNullValue(LLVMTy);
John McCallcaa19452009-07-28 01:00:58 +0000800 Builder.CreateStore(Zero, ReturnValue);
801 }
802 }
803
Mike Stump18bb9282009-05-16 07:57:57 +0000804 // FIXME: We no longer need the types from FunctionArgList; lift up and
805 // simplify.
Daniel Dunbar5a0acdc92009-02-03 06:02:10 +0000806
Daniel Dunbar613855c2008-09-09 23:27:19 +0000807 // Emit allocs for param decls. Give the LLVM Argument nodes names.
808 llvm::Function::arg_iterator AI = Fn->arg_begin();
Mike Stump11289f42009-09-09 15:08:12 +0000809
Daniel Dunbar613855c2008-09-09 23:27:19 +0000810 // Name the struct return argument.
Daniel Dunbard931a872009-02-02 22:03:45 +0000811 if (CGM.ReturnTypeUsesSret(FI)) {
Daniel Dunbar613855c2008-09-09 23:27:19 +0000812 AI->setName("agg.result");
813 ++AI;
814 }
Mike Stump11289f42009-09-09 15:08:12 +0000815
Daniel Dunbara45bdbb2009-02-04 21:17:21 +0000816 assert(FI.arg_size() == Args.size() &&
817 "Mismatch between function signature & arguments.");
Daniel Dunbarb52d0772009-02-03 05:59:18 +0000818 CGFunctionInfo::const_arg_iterator info_it = FI.arg_begin();
Daniel Dunbar613855c2008-09-09 23:27:19 +0000819 for (FunctionArgList::const_iterator i = Args.begin(), e = Args.end();
Daniel Dunbarb52d0772009-02-03 05:59:18 +0000820 i != e; ++i, ++info_it) {
Daniel Dunbar613855c2008-09-09 23:27:19 +0000821 const VarDecl *Arg = i->first;
Daniel Dunbarb52d0772009-02-03 05:59:18 +0000822 QualType Ty = info_it->type;
823 const ABIArgInfo &ArgI = info_it->info;
Daniel Dunbard3674e62008-09-11 01:48:57 +0000824
825 switch (ArgI.getKind()) {
Daniel Dunbar747865a2009-02-05 09:16:39 +0000826 case ABIArgInfo::Indirect: {
Chris Lattner3dd716c2010-06-28 23:44:11 +0000827 llvm::Value *V = AI;
Daniel Dunbar747865a2009-02-05 09:16:39 +0000828 if (hasAggregateLLVMType(Ty)) {
829 // Do nothing, aggregates and complex variables are accessed by
830 // reference.
831 } else {
832 // Load scalar value from indirect argument.
Daniel Dunbar9bfb4de2009-02-10 01:51:39 +0000833 V = EmitLoadOfScalar(V, false, Ty);
Daniel Dunbar747865a2009-02-05 09:16:39 +0000834 if (!getContext().typesAreCompatible(Ty, Arg->getType())) {
835 // This must be a promotion, for something like
836 // "void a(x) short x; {..."
837 V = EmitScalarConversion(V, Ty, Arg->getType());
838 }
839 }
Mike Stump11289f42009-09-09 15:08:12 +0000840 EmitParmDecl(*Arg, V);
Daniel Dunbar747865a2009-02-05 09:16:39 +0000841 break;
842 }
Anton Korobeynikov18adbf52009-06-06 09:36:29 +0000843
844 case ABIArgInfo::Extend:
Daniel Dunbar67dace892009-02-03 06:17:37 +0000845 case ABIArgInfo::Direct: {
Daniel Dunbard3674e62008-09-11 01:48:57 +0000846 assert(AI != Fn->arg_end() && "Argument mismatch!");
Chris Lattner3dd716c2010-06-28 23:44:11 +0000847 llvm::Value *V = AI;
Daniel Dunbar5d3dbd62009-02-05 11:13:54 +0000848 if (hasAggregateLLVMType(Ty)) {
849 // Create a temporary alloca to hold the argument; the rest of
850 // codegen expects to access aggregates & complex values by
851 // reference.
Daniel Dunbara7566f12010-02-09 02:48:28 +0000852 V = CreateMemTemp(Ty);
Daniel Dunbar5d3dbd62009-02-05 11:13:54 +0000853 Builder.CreateStore(AI, V);
854 } else {
John McCall39ec71f2010-03-27 00:47:27 +0000855 if (Arg->getType().isRestrictQualified())
856 AI->addAttr(llvm::Attribute::NoAlias);
857
Daniel Dunbar5d3dbd62009-02-05 11:13:54 +0000858 if (!getContext().typesAreCompatible(Ty, Arg->getType())) {
859 // This must be a promotion, for something like
860 // "void a(x) short x; {..."
861 V = EmitScalarConversion(V, Ty, Arg->getType());
862 }
Daniel Dunbar613855c2008-09-09 23:27:19 +0000863 }
Daniel Dunbard3674e62008-09-11 01:48:57 +0000864 EmitParmDecl(*Arg, V);
865 break;
866 }
Mike Stump11289f42009-09-09 15:08:12 +0000867
Daniel Dunbar8fc81b02008-09-17 00:51:38 +0000868 case ABIArgInfo::Expand: {
Daniel Dunbarb52d0772009-02-03 05:59:18 +0000869 // If this structure was expanded into multiple arguments then
Daniel Dunbar8fc81b02008-09-17 00:51:38 +0000870 // we need to create a temporary and reconstruct it from the
871 // arguments.
Daniel Dunbara7566f12010-02-09 02:48:28 +0000872 llvm::Value *Temp = CreateMemTemp(Ty, Arg->getName() + ".addr");
Daniel Dunbar8fc81b02008-09-17 00:51:38 +0000873 // FIXME: What are the right qualifiers here?
Mike Stump11289f42009-09-09 15:08:12 +0000874 llvm::Function::arg_iterator End =
John McCall8ccfcb52009-09-24 19:53:00 +0000875 ExpandTypeFromArgs(Ty, LValue::MakeAddr(Temp, Qualifiers()), AI);
Daniel Dunbar8fc81b02008-09-17 00:51:38 +0000876 EmitParmDecl(*Arg, Temp);
Daniel Dunbard3674e62008-09-11 01:48:57 +0000877
Daniel Dunbar8fc81b02008-09-17 00:51:38 +0000878 // Name the arguments used in expansion and increment AI.
879 unsigned Index = 0;
880 for (; AI != End; ++AI, ++Index)
Daniel Dunbarb5aacc22009-10-19 01:21:05 +0000881 AI->setName(Arg->getName() + "." + llvm::Twine(Index));
Daniel Dunbar8fc81b02008-09-17 00:51:38 +0000882 continue;
883 }
Daniel Dunbar94a6f252009-01-26 21:26:08 +0000884
885 case ABIArgInfo::Ignore:
Daniel Dunbard5f1f552009-02-10 00:06:49 +0000886 // Initialize the local variable appropriately.
Mike Stump11289f42009-09-09 15:08:12 +0000887 if (hasAggregateLLVMType(Ty)) {
Daniel Dunbara7566f12010-02-09 02:48:28 +0000888 EmitParmDecl(*Arg, CreateMemTemp(Ty));
Daniel Dunbard5f1f552009-02-10 00:06:49 +0000889 } else {
890 EmitParmDecl(*Arg, llvm::UndefValue::get(ConvertType(Arg->getType())));
891 }
Mike Stump11289f42009-09-09 15:08:12 +0000892
Daniel Dunbarfc7c7612009-02-03 20:00:13 +0000893 // Skip increment, no matching LLVM parameter.
Mike Stump11289f42009-09-09 15:08:12 +0000894 continue;
Daniel Dunbar94a6f252009-01-26 21:26:08 +0000895
Daniel Dunbar2f219b02009-02-03 19:12:28 +0000896 case ABIArgInfo::Coerce: {
Mike Stump18bb9282009-05-16 07:57:57 +0000897 // FIXME: This is very wasteful; EmitParmDecl is just going to drop the
898 // result in a new alloca anyway, so we could just store into that
899 // directly if we broke the abstraction down more.
Daniel Dunbara7566f12010-02-09 02:48:28 +0000900 llvm::Value *V = CreateMemTemp(Ty, "coerce");
Chris Lattner15ec3612010-06-29 00:06:42 +0000901
902 // If the coerce-to type is a first class aggregate, we flatten it and
903 // pass the elements. Either way is semantically identical, but fast-isel
904 // and the optimizer generally likes scalar values better than FCAs.
905 if (const llvm::StructType *STy =
906 dyn_cast<llvm::StructType>(ArgI.getCoerceToType())) {
907 // If the argument and alloca types match up, we don't have to build the
908 // FCA at all, emit a series of GEPs and stores, which is better for
909 // fast isel.
910 if (STy == cast<llvm::PointerType>(V->getType())->getElementType()) {
911 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
912 assert(AI != Fn->arg_end() && "Argument mismatch!");
913 llvm::Value *EltPtr = Builder.CreateConstGEP2_32(V, 0, i);
914 Builder.CreateStore(AI++, EltPtr);
915 }
916 } else {
917 // Reconstruct the FCA here so we can do a coerced store.
918 llvm::Value *FormalArg = llvm::UndefValue::get(STy);
919 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
920 assert(AI != Fn->arg_end() && "Argument mismatch!");
921 FormalArg = Builder.CreateInsertValue(FormalArg, AI++, i);
922 }
923 CreateCoercedStore(FormalArg, V, /*DestIsVolatile=*/false, *this);
924 }
925 } else {
926 // Simple case, just do a coerced store of the argument into the alloca.
927 assert(AI != Fn->arg_end() && "Argument mismatch!");
928 CreateCoercedStore(AI++, V, /*DestIsVolatile=*/false, *this);
929 }
930
931
Daniel Dunbar2f219b02009-02-03 19:12:28 +0000932 // Match to what EmitParmDecl is expecting for this type.
Daniel Dunbar6e3b7df2009-02-04 07:22:24 +0000933 if (!CodeGenFunction::hasAggregateLLVMType(Ty)) {
Daniel Dunbar9bfb4de2009-02-10 01:51:39 +0000934 V = EmitLoadOfScalar(V, false, Ty);
Daniel Dunbar6e3b7df2009-02-04 07:22:24 +0000935 if (!getContext().typesAreCompatible(Ty, Arg->getType())) {
936 // This must be a promotion, for something like
937 // "void a(x) short x; {..."
938 V = EmitScalarConversion(V, Ty, Arg->getType());
939 }
940 }
Daniel Dunbar2f219b02009-02-03 19:12:28 +0000941 EmitParmDecl(*Arg, V);
Chris Lattner3dd716c2010-06-28 23:44:11 +0000942 continue; // Skip ++AI increment, already done.
Daniel Dunbar2f219b02009-02-03 19:12:28 +0000943 }
Daniel Dunbard3674e62008-09-11 01:48:57 +0000944 }
Daniel Dunbar8fc81b02008-09-17 00:51:38 +0000945
946 ++AI;
Daniel Dunbar613855c2008-09-09 23:27:19 +0000947 }
948 assert(AI == Fn->arg_end() && "Argument mismatch!");
949}
950
Chris Lattner3fcc7902010-06-27 01:06:27 +0000951void CodeGenFunction::EmitFunctionEpilog(const CGFunctionInfo &FI) {
Daniel Dunbara72d4ae2008-09-10 02:41:04 +0000952 // Functions with no result always return void.
Chris Lattner726b3d02010-06-26 23:13:19 +0000953 if (ReturnValue == 0) {
Daniel Dunbara72d4ae2008-09-10 02:41:04 +0000954 Builder.CreateRetVoid();
Chris Lattner726b3d02010-06-26 23:13:19 +0000955 return;
Daniel Dunbara72d4ae2008-09-10 02:41:04 +0000956 }
Chris Lattner726b3d02010-06-26 23:13:19 +0000957
958 llvm::Value *RV = 0;
959 QualType RetTy = FI.getReturnType();
960 const ABIArgInfo &RetAI = FI.getReturnInfo();
961
962 switch (RetAI.getKind()) {
963 case ABIArgInfo::Indirect:
964 if (RetTy->isAnyComplexType()) {
965 ComplexPairTy RT = LoadComplexFromAddr(ReturnValue, false);
966 StoreComplexToAddr(RT, CurFn->arg_begin(), false);
967 } else if (CodeGenFunction::hasAggregateLLVMType(RetTy)) {
968 // Do nothing; aggregrates get evaluated directly into the destination.
969 } else {
970 EmitStoreOfScalar(Builder.CreateLoad(ReturnValue), CurFn->arg_begin(),
971 false, RetTy);
972 }
973 break;
974
975 case ABIArgInfo::Extend:
Chris Lattner3fcc7902010-06-27 01:06:27 +0000976 case ABIArgInfo::Direct: {
977 // The internal return value temp always will have pointer-to-return-type
978 // type, just do a load.
979
980 // If the instruction right before the insertion point is a store to the
981 // return value, we can elide the load, zap the store, and usually zap the
982 // alloca.
983 llvm::BasicBlock *InsertBB = Builder.GetInsertBlock();
984 llvm::StoreInst *SI = 0;
985 if (InsertBB->empty() ||
986 !(SI = dyn_cast<llvm::StoreInst>(&InsertBB->back())) ||
987 SI->getPointerOperand() != ReturnValue || SI->isVolatile()) {
988 RV = Builder.CreateLoad(ReturnValue);
989 } else {
990 // Get the stored value and nuke the now-dead store.
991 RV = SI->getValueOperand();
992 SI->eraseFromParent();
993
994 // If that was the only use of the return value, nuke it as well now.
995 if (ReturnValue->use_empty() && isa<llvm::AllocaInst>(ReturnValue)) {
996 cast<llvm::AllocaInst>(ReturnValue)->eraseFromParent();
997 ReturnValue = 0;
998 }
999 }
Chris Lattner726b3d02010-06-26 23:13:19 +00001000 break;
Chris Lattner3fcc7902010-06-27 01:06:27 +00001001 }
Chris Lattner726b3d02010-06-26 23:13:19 +00001002 case ABIArgInfo::Ignore:
1003 break;
1004
1005 case ABIArgInfo::Coerce:
1006 RV = CreateCoercedLoad(ReturnValue, RetAI.getCoerceToType(), *this);
1007 break;
1008
1009 case ABIArgInfo::Expand:
1010 assert(0 && "Invalid ABI kind for return argument");
1011 }
1012
1013 if (RV)
1014 Builder.CreateRet(RV);
1015 else
1016 Builder.CreateRetVoid();
Daniel Dunbar613855c2008-09-09 23:27:19 +00001017}
1018
John McCall23f66262010-05-26 22:34:26 +00001019RValue CodeGenFunction::EmitDelegateCallArg(const VarDecl *Param) {
1020 // StartFunction converted the ABI-lowered parameter(s) into a
1021 // local alloca. We need to turn that into an r-value suitable
1022 // for EmitCall.
1023 llvm::Value *Local = GetAddrOfLocalVar(Param);
1024
1025 QualType ArgType = Param->getType();
1026
1027 // For the most part, we just need to load the alloca, except:
1028 // 1) aggregate r-values are actually pointers to temporaries, and
1029 // 2) references to aggregates are pointers directly to the aggregate.
1030 // I don't know why references to non-aggregates are different here.
1031 if (const ReferenceType *RefType = ArgType->getAs<ReferenceType>()) {
1032 if (hasAggregateLLVMType(RefType->getPointeeType()))
1033 return RValue::getAggregate(Local);
1034
1035 // Locals which are references to scalars are represented
1036 // with allocas holding the pointer.
1037 return RValue::get(Builder.CreateLoad(Local));
1038 }
1039
1040 if (ArgType->isAnyComplexType())
1041 return RValue::getComplex(LoadComplexFromAddr(Local, /*volatile*/ false));
1042
1043 if (hasAggregateLLVMType(ArgType))
1044 return RValue::getAggregate(Local);
1045
1046 return RValue::get(EmitLoadOfScalar(Local, false, ArgType));
1047}
1048
Anders Carlsson60ce3fe2009-04-08 20:47:54 +00001049RValue CodeGenFunction::EmitCallArg(const Expr *E, QualType ArgType) {
Anders Carlsson6f5a0152009-05-20 00:24:07 +00001050 if (ArgType->isReferenceType())
Anders Carlsson04775f82010-06-26 16:35:32 +00001051 return EmitReferenceBindingToExpr(E, /*InitializedDecl=*/0);
Mike Stump11289f42009-09-09 15:08:12 +00001052
Anders Carlsson60ce3fe2009-04-08 20:47:54 +00001053 return EmitAnyExprToTemp(E);
1054}
1055
Daniel Dunbard931a872009-02-02 22:03:45 +00001056RValue CodeGenFunction::EmitCall(const CGFunctionInfo &CallInfo,
Mike Stump11289f42009-09-09 15:08:12 +00001057 llvm::Value *Callee,
Anders Carlsson61a401c2009-12-24 19:25:24 +00001058 ReturnValueSlot ReturnValue,
Daniel Dunbarcdbb5e32009-02-20 18:06:48 +00001059 const CallArgList &CallArgs,
David Chisnall9eecafa2010-05-01 11:15:56 +00001060 const Decl *TargetDecl,
David Chisnallff5f88c2010-05-02 13:41:58 +00001061 llvm::Instruction **callOrInvoke) {
Mike Stump18bb9282009-05-16 07:57:57 +00001062 // FIXME: We no longer need the types from CallArgs; lift up and simplify.
Daniel Dunbar613855c2008-09-09 23:27:19 +00001063 llvm::SmallVector<llvm::Value*, 16> Args;
Daniel Dunbar613855c2008-09-09 23:27:19 +00001064
1065 // Handle struct-return functions by passing a pointer to the
1066 // location that we would like to return into.
Daniel Dunbar7633cbf2009-02-02 21:43:58 +00001067 QualType RetTy = CallInfo.getReturnType();
Daniel Dunbarb52d0772009-02-03 05:59:18 +00001068 const ABIArgInfo &RetAI = CallInfo.getReturnInfo();
Mike Stump11289f42009-09-09 15:08:12 +00001069
1070
Chris Lattner4ca97c32009-06-13 00:26:38 +00001071 // If the call returns a temporary with struct return, create a temporary
Anders Carlsson17490832009-12-24 20:40:36 +00001072 // alloca to hold the result, unless one is given to us.
1073 if (CGM.ReturnTypeUsesSret(CallInfo)) {
1074 llvm::Value *Value = ReturnValue.getValue();
1075 if (!Value)
Daniel Dunbara7566f12010-02-09 02:48:28 +00001076 Value = CreateMemTemp(RetTy);
Anders Carlsson17490832009-12-24 20:40:36 +00001077 Args.push_back(Value);
1078 }
Mike Stump11289f42009-09-09 15:08:12 +00001079
Daniel Dunbara45bdbb2009-02-04 21:17:21 +00001080 assert(CallInfo.arg_size() == CallArgs.size() &&
1081 "Mismatch between function signature & arguments.");
Daniel Dunbarb52d0772009-02-03 05:59:18 +00001082 CGFunctionInfo::const_arg_iterator info_it = CallInfo.arg_begin();
Mike Stump11289f42009-09-09 15:08:12 +00001083 for (CallArgList::const_iterator I = CallArgs.begin(), E = CallArgs.end();
Daniel Dunbarb52d0772009-02-03 05:59:18 +00001084 I != E; ++I, ++info_it) {
1085 const ABIArgInfo &ArgInfo = info_it->info;
Daniel Dunbar613855c2008-09-09 23:27:19 +00001086 RValue RV = I->first;
Daniel Dunbar8fc81b02008-09-17 00:51:38 +00001087
1088 switch (ArgInfo.getKind()) {
Daniel Dunbarb8b1c672009-02-05 08:00:50 +00001089 case ABIArgInfo::Indirect:
Daniel Dunbar747865a2009-02-05 09:16:39 +00001090 if (RV.isScalar() || RV.isComplex()) {
1091 // Make a temporary alloca to pass the argument.
Daniel Dunbara7566f12010-02-09 02:48:28 +00001092 Args.push_back(CreateMemTemp(I->second));
Daniel Dunbar747865a2009-02-05 09:16:39 +00001093 if (RV.isScalar())
Anders Carlsson83709642009-05-19 18:50:41 +00001094 EmitStoreOfScalar(RV.getScalarVal(), Args.back(), false, I->second);
Daniel Dunbar747865a2009-02-05 09:16:39 +00001095 else
Mike Stump11289f42009-09-09 15:08:12 +00001096 StoreComplexToAddr(RV.getComplexVal(), Args.back(), false);
Daniel Dunbar747865a2009-02-05 09:16:39 +00001097 } else {
1098 Args.push_back(RV.getAggregateAddr());
1099 }
1100 break;
1101
Anton Korobeynikov18adbf52009-06-06 09:36:29 +00001102 case ABIArgInfo::Extend:
Daniel Dunbar67dace892009-02-03 06:17:37 +00001103 case ABIArgInfo::Direct:
Daniel Dunbar8fc81b02008-09-17 00:51:38 +00001104 if (RV.isScalar()) {
1105 Args.push_back(RV.getScalarVal());
1106 } else if (RV.isComplex()) {
Daniel Dunbar5d3dbd62009-02-05 11:13:54 +00001107 llvm::Value *Tmp = llvm::UndefValue::get(ConvertType(I->second));
1108 Tmp = Builder.CreateInsertValue(Tmp, RV.getComplexVal().first, 0);
1109 Tmp = Builder.CreateInsertValue(Tmp, RV.getComplexVal().second, 1);
1110 Args.push_back(Tmp);
Daniel Dunbar8fc81b02008-09-17 00:51:38 +00001111 } else {
Daniel Dunbar5d3dbd62009-02-05 11:13:54 +00001112 Args.push_back(Builder.CreateLoad(RV.getAggregateAddr()));
Daniel Dunbar8fc81b02008-09-17 00:51:38 +00001113 }
1114 break;
Mike Stump11289f42009-09-09 15:08:12 +00001115
Daniel Dunbar94a6f252009-01-26 21:26:08 +00001116 case ABIArgInfo::Ignore:
1117 break;
1118
Daniel Dunbar2f219b02009-02-03 19:12:28 +00001119 case ABIArgInfo::Coerce: {
1120 // FIXME: Avoid the conversion through memory if possible.
1121 llvm::Value *SrcPtr;
1122 if (RV.isScalar()) {
Daniel Dunbara7566f12010-02-09 02:48:28 +00001123 SrcPtr = CreateMemTemp(I->second, "coerce");
Anders Carlsson83709642009-05-19 18:50:41 +00001124 EmitStoreOfScalar(RV.getScalarVal(), SrcPtr, false, I->second);
Daniel Dunbar2f219b02009-02-03 19:12:28 +00001125 } else if (RV.isComplex()) {
Daniel Dunbara7566f12010-02-09 02:48:28 +00001126 SrcPtr = CreateMemTemp(I->second, "coerce");
Daniel Dunbar2f219b02009-02-03 19:12:28 +00001127 StoreComplexToAddr(RV.getComplexVal(), SrcPtr, false);
Mike Stump11289f42009-09-09 15:08:12 +00001128 } else
Daniel Dunbar2f219b02009-02-03 19:12:28 +00001129 SrcPtr = RV.getAggregateAddr();
Chris Lattner3dd716c2010-06-28 23:44:11 +00001130
Chris Lattner3dd716c2010-06-28 23:44:11 +00001131 // If the coerce-to type is a first class aggregate, we flatten it and
1132 // pass the elements. Either way is semantically identical, but fast-isel
1133 // and the optimizer generally likes scalar values better than FCAs.
1134 if (const llvm::StructType *STy =
Chris Lattner15ec3612010-06-29 00:06:42 +00001135 dyn_cast<llvm::StructType>(ArgInfo.getCoerceToType())) {
1136 // If the argument and alloca types match up, we don't have to build the
1137 // FCA at all, emit a series of GEPs and loads, which is better for
1138 // fast isel.
1139 if (STy ==cast<llvm::PointerType>(SrcPtr->getType())->getElementType()){
1140 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1141 llvm::Value *EltPtr = Builder.CreateConstGEP2_32(SrcPtr, 0, i);
1142 Args.push_back(Builder.CreateLoad(EltPtr));
1143 }
1144 } else {
1145 // Otherwise, do a coerced load the entire FCA and handle the pieces.
1146 llvm::Value *SrcVal =
1147 CreateCoercedLoad(SrcPtr, ArgInfo.getCoerceToType(), *this);
1148
1149 // Extract the elements of the value to pass in.
1150 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i)
1151 Args.push_back(Builder.CreateExtractValue(SrcVal, i));
1152 }
Chris Lattner3dd716c2010-06-28 23:44:11 +00001153 } else {
Chris Lattner15ec3612010-06-29 00:06:42 +00001154 // In the simple case, just pass the coerced loaded value.
1155 Args.push_back(CreateCoercedLoad(SrcPtr, ArgInfo.getCoerceToType(),
1156 *this));
Chris Lattner3dd716c2010-06-28 23:44:11 +00001157 }
1158
Daniel Dunbar2f219b02009-02-03 19:12:28 +00001159 break;
1160 }
1161
Daniel Dunbar8fc81b02008-09-17 00:51:38 +00001162 case ABIArgInfo::Expand:
1163 ExpandTypeToArgs(I->second, RV, Args);
1164 break;
Daniel Dunbar613855c2008-09-09 23:27:19 +00001165 }
1166 }
Mike Stump11289f42009-09-09 15:08:12 +00001167
Chris Lattner4ca97c32009-06-13 00:26:38 +00001168 // If the callee is a bitcast of a function to a varargs pointer to function
1169 // type, check to see if we can remove the bitcast. This handles some cases
1170 // with unprototyped functions.
1171 if (llvm::ConstantExpr *CE = dyn_cast<llvm::ConstantExpr>(Callee))
1172 if (llvm::Function *CalleeF = dyn_cast<llvm::Function>(CE->getOperand(0))) {
1173 const llvm::PointerType *CurPT=cast<llvm::PointerType>(Callee->getType());
1174 const llvm::FunctionType *CurFT =
1175 cast<llvm::FunctionType>(CurPT->getElementType());
1176 const llvm::FunctionType *ActualFT = CalleeF->getFunctionType();
Mike Stump11289f42009-09-09 15:08:12 +00001177
Chris Lattner4ca97c32009-06-13 00:26:38 +00001178 if (CE->getOpcode() == llvm::Instruction::BitCast &&
1179 ActualFT->getReturnType() == CurFT->getReturnType() &&
Chris Lattner4c8da962009-06-23 01:38:41 +00001180 ActualFT->getNumParams() == CurFT->getNumParams() &&
1181 ActualFT->getNumParams() == Args.size()) {
Chris Lattner4ca97c32009-06-13 00:26:38 +00001182 bool ArgsMatch = true;
1183 for (unsigned i = 0, e = ActualFT->getNumParams(); i != e; ++i)
1184 if (ActualFT->getParamType(i) != CurFT->getParamType(i)) {
1185 ArgsMatch = false;
1186 break;
1187 }
Mike Stump11289f42009-09-09 15:08:12 +00001188
Chris Lattner4ca97c32009-06-13 00:26:38 +00001189 // Strip the cast if we can get away with it. This is a nice cleanup,
1190 // but also allows us to inline the function at -O0 if it is marked
1191 // always_inline.
1192 if (ArgsMatch)
1193 Callee = CalleeF;
1194 }
1195 }
Mike Stump11289f42009-09-09 15:08:12 +00001196
Daniel Dunbar613855c2008-09-09 23:27:19 +00001197
Daniel Dunbar12347492009-02-23 17:26:39 +00001198 llvm::BasicBlock *InvokeDest = getInvokeDest();
Daniel Dunbar0ef34792009-09-12 00:59:20 +00001199 unsigned CallingConv;
Devang Patel322300d2008-09-25 21:02:23 +00001200 CodeGen::AttributeListType AttributeList;
Daniel Dunbar0ef34792009-09-12 00:59:20 +00001201 CGM.ConstructAttributeList(CallInfo, TargetDecl, AttributeList, CallingConv);
Daniel Dunbar12347492009-02-23 17:26:39 +00001202 llvm::AttrListPtr Attrs = llvm::AttrListPtr::get(AttributeList.begin(),
1203 AttributeList.end());
Mike Stump11289f42009-09-09 15:08:12 +00001204
Daniel Dunbarb960b7b2009-03-02 04:32:35 +00001205 llvm::CallSite CS;
1206 if (!InvokeDest || (Attrs.getFnAttributes() & llvm::Attribute::NoUnwind)) {
Jay Foad7d0479f2009-05-21 09:52:38 +00001207 CS = Builder.CreateCall(Callee, Args.data(), Args.data()+Args.size());
Daniel Dunbar12347492009-02-23 17:26:39 +00001208 } else {
1209 llvm::BasicBlock *Cont = createBasicBlock("invoke.cont");
Mike Stump11289f42009-09-09 15:08:12 +00001210 CS = Builder.CreateInvoke(Callee, Cont, InvokeDest,
Jay Foad7d0479f2009-05-21 09:52:38 +00001211 Args.data(), Args.data()+Args.size());
Daniel Dunbar12347492009-02-23 17:26:39 +00001212 EmitBlock(Cont);
Daniel Dunbar5006f4a2009-02-20 18:54:31 +00001213 }
David Chisnallff5f88c2010-05-02 13:41:58 +00001214 if (callOrInvoke) {
1215 *callOrInvoke = CS.getInstruction();
David Chisnall9eecafa2010-05-01 11:15:56 +00001216 }
Daniel Dunbar5006f4a2009-02-20 18:54:31 +00001217
Daniel Dunbarb960b7b2009-03-02 04:32:35 +00001218 CS.setAttributes(Attrs);
Daniel Dunbar0ef34792009-09-12 00:59:20 +00001219 CS.setCallingConv(static_cast<llvm::CallingConv::ID>(CallingConv));
Daniel Dunbarb960b7b2009-03-02 04:32:35 +00001220
1221 // If the call doesn't return, finish the basic block and clear the
1222 // insertion point; this allows the rest of IRgen to discard
1223 // unreachable code.
1224 if (CS.doesNotReturn()) {
1225 Builder.CreateUnreachable();
1226 Builder.ClearInsertionPoint();
Mike Stump11289f42009-09-09 15:08:12 +00001227
Mike Stump18bb9282009-05-16 07:57:57 +00001228 // FIXME: For now, emit a dummy basic block because expr emitters in
1229 // generally are not ready to handle emitting expressions at unreachable
1230 // points.
Daniel Dunbarb960b7b2009-03-02 04:32:35 +00001231 EnsureInsertPoint();
Mike Stump11289f42009-09-09 15:08:12 +00001232
Daniel Dunbarb960b7b2009-03-02 04:32:35 +00001233 // Return a reasonable RValue.
1234 return GetUndefRValue(RetTy);
Mike Stump11289f42009-09-09 15:08:12 +00001235 }
Daniel Dunbarb960b7b2009-03-02 04:32:35 +00001236
1237 llvm::Instruction *CI = CS.getInstruction();
Benjamin Kramerdde0fee2009-10-05 13:47:21 +00001238 if (Builder.isNamePreserving() && !CI->getType()->isVoidTy())
Daniel Dunbar613855c2008-09-09 23:27:19 +00001239 CI->setName("call");
Daniel Dunbara72d4ae2008-09-10 02:41:04 +00001240
1241 switch (RetAI.getKind()) {
Daniel Dunbarb8b1c672009-02-05 08:00:50 +00001242 case ABIArgInfo::Indirect:
Daniel Dunbara72d4ae2008-09-10 02:41:04 +00001243 if (RetTy->isAnyComplexType())
Daniel Dunbar8fc81b02008-09-17 00:51:38 +00001244 return RValue::getComplex(LoadComplexFromAddr(Args[0], false));
Chris Lattnere09ad902009-03-22 00:32:22 +00001245 if (CodeGenFunction::hasAggregateLLVMType(RetTy))
Daniel Dunbar8fc81b02008-09-17 00:51:38 +00001246 return RValue::getAggregate(Args[0]);
Chris Lattnere09ad902009-03-22 00:32:22 +00001247 return RValue::get(EmitLoadOfScalar(Args[0], false, RetTy));
Daniel Dunbard3674e62008-09-11 01:48:57 +00001248
Anton Korobeynikov18adbf52009-06-06 09:36:29 +00001249 case ABIArgInfo::Extend:
Daniel Dunbar67dace892009-02-03 06:17:37 +00001250 case ABIArgInfo::Direct:
Daniel Dunbar5d3dbd62009-02-05 11:13:54 +00001251 if (RetTy->isAnyComplexType()) {
1252 llvm::Value *Real = Builder.CreateExtractValue(CI, 0);
1253 llvm::Value *Imag = Builder.CreateExtractValue(CI, 1);
1254 return RValue::getComplex(std::make_pair(Real, Imag));
Chris Lattnere09ad902009-03-22 00:32:22 +00001255 }
1256 if (CodeGenFunction::hasAggregateLLVMType(RetTy)) {
Anders Carlsson17490832009-12-24 20:40:36 +00001257 llvm::Value *DestPtr = ReturnValue.getValue();
1258 bool DestIsVolatile = ReturnValue.isVolatile();
1259
1260 if (!DestPtr) {
Daniel Dunbara7566f12010-02-09 02:48:28 +00001261 DestPtr = CreateMemTemp(RetTy, "agg.tmp");
Anders Carlsson17490832009-12-24 20:40:36 +00001262 DestIsVolatile = false;
1263 }
1264 Builder.CreateStore(CI, DestPtr, DestIsVolatile);
1265 return RValue::getAggregate(DestPtr);
Chris Lattnere09ad902009-03-22 00:32:22 +00001266 }
1267 return RValue::get(CI);
Daniel Dunbara72d4ae2008-09-10 02:41:04 +00001268
Daniel Dunbar94a6f252009-01-26 21:26:08 +00001269 case ABIArgInfo::Ignore:
Daniel Dunbar01362822009-02-03 06:30:17 +00001270 // If we are ignoring an argument that had a result, make sure to
1271 // construct the appropriate return value for our caller.
Daniel Dunbarc79407f2009-02-05 07:09:07 +00001272 return GetUndefRValue(RetTy);
Daniel Dunbar94a6f252009-01-26 21:26:08 +00001273
Daniel Dunbar573884e2008-09-10 07:04:09 +00001274 case ABIArgInfo::Coerce: {
Anders Carlsson17490832009-12-24 20:40:36 +00001275 llvm::Value *DestPtr = ReturnValue.getValue();
1276 bool DestIsVolatile = ReturnValue.isVolatile();
1277
1278 if (!DestPtr) {
Daniel Dunbara7566f12010-02-09 02:48:28 +00001279 DestPtr = CreateMemTemp(RetTy, "coerce");
Anders Carlsson17490832009-12-24 20:40:36 +00001280 DestIsVolatile = false;
1281 }
1282
1283 CreateCoercedStore(CI, DestPtr, DestIsVolatile, *this);
Anders Carlsson32ef8ce2008-11-25 22:21:48 +00001284 if (RetTy->isAnyComplexType())
Anders Carlsson17490832009-12-24 20:40:36 +00001285 return RValue::getComplex(LoadComplexFromAddr(DestPtr, false));
Chris Lattnere09ad902009-03-22 00:32:22 +00001286 if (CodeGenFunction::hasAggregateLLVMType(RetTy))
Anders Carlsson17490832009-12-24 20:40:36 +00001287 return RValue::getAggregate(DestPtr);
1288 return RValue::get(EmitLoadOfScalar(DestPtr, false, RetTy));
Daniel Dunbar573884e2008-09-10 07:04:09 +00001289 }
Daniel Dunbard3674e62008-09-11 01:48:57 +00001290
Daniel Dunbard3674e62008-09-11 01:48:57 +00001291 case ABIArgInfo::Expand:
Mike Stump11289f42009-09-09 15:08:12 +00001292 assert(0 && "Invalid ABI kind for return argument");
Daniel Dunbar613855c2008-09-09 23:27:19 +00001293 }
Daniel Dunbara72d4ae2008-09-10 02:41:04 +00001294
1295 assert(0 && "Unhandled ABIArgInfo::Kind");
1296 return RValue::get(0);
Daniel Dunbar613855c2008-09-09 23:27:19 +00001297}
Daniel Dunbar2d0746f2009-02-10 20:44:09 +00001298
1299/* VarArg handling */
1300
1301llvm::Value *CodeGenFunction::EmitVAArg(llvm::Value *VAListAddr, QualType Ty) {
1302 return CGM.getTypes().getABIInfo().EmitVAArg(VAListAddr, Ty, *this);
1303}