blob: 5427466cdf9a2b3f59b5fc26a7282314bde2eb11 [file] [log] [blame]
Daniel Dunbar0dbe2272008-09-08 21:33:45 +00001//===----- CGCall.h - Encapsulate calling convention details ----*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// These classes wrap the information about a call or function
11// definition used to handle ABI compliancy.
12//
13//===----------------------------------------------------------------------===//
14
15#include "CGCall.h"
16#include "CodeGenFunction.h"
Daniel Dunbarb7688072008-09-10 00:41:16 +000017#include "CodeGenModule.h"
Daniel Dunbar6b1da0e2008-10-13 17:02:26 +000018#include "clang/Basic/TargetInfo.h"
Daniel Dunbar0dbe2272008-09-08 21:33:45 +000019#include "clang/AST/ASTContext.h"
20#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"
Daniel Dunbar99037e52009-01-29 08:13:58 +000023#include "clang/AST/RecordLayout.h"
Daniel Dunbar56273772008-09-17 00:51:38 +000024#include "llvm/ADT/StringExtras.h"
Devang Pateld0646bd2008-09-24 01:01:36 +000025#include "llvm/Attributes.h"
Daniel Dunbard14151d2009-03-02 04:32:35 +000026#include "llvm/Support/CallSite.h"
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +000027#include "llvm/Support/CommandLine.h"
Daniel Dunbarbe9eb092009-02-12 09:04:14 +000028#include "llvm/Support/MathExtras.h"
Daniel Dunbar6f7279b2009-02-04 23:24:38 +000029#include "llvm/Support/raw_ostream.h"
Daniel Dunbar54d1ccb2009-01-27 01:36:03 +000030#include "llvm/Target/TargetData.h"
Daniel Dunbar9eb5c6d2009-02-03 01:05:53 +000031
32#include "ABIInfo.h"
33
Daniel Dunbar0dbe2272008-09-08 21:33:45 +000034using namespace clang;
35using namespace CodeGen;
36
37/***/
38
Daniel Dunbar0dbe2272008-09-08 21:33:45 +000039// FIXME: Use iterator and sidestep silly type array creation.
40
Daniel Dunbar541b63b2009-02-02 23:23:47 +000041const
Douglas Gregor72564e72009-02-26 23:50:07 +000042CGFunctionInfo &CodeGenTypes::getFunctionInfo(const FunctionNoProtoType *FTNP) {
Daniel Dunbar541b63b2009-02-02 23:23:47 +000043 return getFunctionInfo(FTNP->getResultType(),
44 llvm::SmallVector<QualType, 16>());
Daniel Dunbar45c25ba2008-09-10 04:01:49 +000045}
46
Daniel Dunbar541b63b2009-02-02 23:23:47 +000047const
Douglas Gregor72564e72009-02-26 23:50:07 +000048CGFunctionInfo &CodeGenTypes::getFunctionInfo(const FunctionProtoType *FTP) {
Daniel Dunbar541b63b2009-02-02 23:23:47 +000049 llvm::SmallVector<QualType, 16> ArgTys;
50 // FIXME: Kill copy.
Daniel Dunbar45c25ba2008-09-10 04:01:49 +000051 for (unsigned i = 0, e = FTP->getNumArgs(); i != e; ++i)
Daniel Dunbar541b63b2009-02-02 23:23:47 +000052 ArgTys.push_back(FTP->getArgType(i));
53 return getFunctionInfo(FTP->getResultType(), ArgTys);
Daniel Dunbar45c25ba2008-09-10 04:01:49 +000054}
55
Anders Carlssonf6f8ae52009-04-03 22:48:58 +000056const CGFunctionInfo &CodeGenTypes::getFunctionInfo(const CXXMethodDecl *MD) {
57 llvm::SmallVector<QualType, 16> ArgTys;
58 // Add the 'this' pointer.
59 ArgTys.push_back(MD->getThisType(Context));
60
61 const FunctionProtoType *FTP = MD->getType()->getAsFunctionProtoType();
62 for (unsigned i = 0, e = FTP->getNumArgs(); i != e; ++i)
63 ArgTys.push_back(FTP->getArgType(i));
64 return getFunctionInfo(FTP->getResultType(), ArgTys);
65}
66
Daniel Dunbar541b63b2009-02-02 23:23:47 +000067const CGFunctionInfo &CodeGenTypes::getFunctionInfo(const FunctionDecl *FD) {
Anders Carlssonf6f8ae52009-04-03 22:48:58 +000068 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) {
69 if (MD->isInstance())
70 return getFunctionInfo(MD);
71 }
72
Daniel Dunbar0dbe2272008-09-08 21:33:45 +000073 const FunctionType *FTy = FD->getType()->getAsFunctionType();
Douglas Gregor72564e72009-02-26 23:50:07 +000074 if (const FunctionProtoType *FTP = dyn_cast<FunctionProtoType>(FTy))
Daniel Dunbar541b63b2009-02-02 23:23:47 +000075 return getFunctionInfo(FTP);
Douglas Gregor72564e72009-02-26 23:50:07 +000076 return getFunctionInfo(cast<FunctionNoProtoType>(FTy));
Daniel Dunbar0dbe2272008-09-08 21:33:45 +000077}
78
Daniel Dunbar541b63b2009-02-02 23:23:47 +000079const CGFunctionInfo &CodeGenTypes::getFunctionInfo(const ObjCMethodDecl *MD) {
80 llvm::SmallVector<QualType, 16> ArgTys;
81 ArgTys.push_back(MD->getSelfDecl()->getType());
82 ArgTys.push_back(Context.getObjCSelType());
83 // FIXME: Kill copy?
Chris Lattner20732162009-02-20 06:23:21 +000084 for (ObjCMethodDecl::param_iterator i = MD->param_begin(),
Daniel Dunbar0dbe2272008-09-08 21:33:45 +000085 e = MD->param_end(); i != e; ++i)
Daniel Dunbar541b63b2009-02-02 23:23:47 +000086 ArgTys.push_back((*i)->getType());
87 return getFunctionInfo(MD->getResultType(), ArgTys);
Daniel Dunbar0dbe2272008-09-08 21:33:45 +000088}
89
Daniel Dunbar541b63b2009-02-02 23:23:47 +000090const CGFunctionInfo &CodeGenTypes::getFunctionInfo(QualType ResTy,
91 const CallArgList &Args) {
92 // FIXME: Kill copy.
93 llvm::SmallVector<QualType, 16> ArgTys;
Daniel Dunbar725ad312009-01-31 02:19:00 +000094 for (CallArgList::const_iterator i = Args.begin(), e = Args.end();
95 i != e; ++i)
Daniel Dunbar541b63b2009-02-02 23:23:47 +000096 ArgTys.push_back(i->second);
97 return getFunctionInfo(ResTy, ArgTys);
Daniel Dunbar725ad312009-01-31 02:19:00 +000098}
99
Daniel Dunbar541b63b2009-02-02 23:23:47 +0000100const CGFunctionInfo &CodeGenTypes::getFunctionInfo(QualType ResTy,
101 const FunctionArgList &Args) {
102 // FIXME: Kill copy.
103 llvm::SmallVector<QualType, 16> ArgTys;
Daniel Dunbarbb36d332009-02-02 21:43:58 +0000104 for (FunctionArgList::const_iterator i = Args.begin(), e = Args.end();
105 i != e; ++i)
Daniel Dunbar541b63b2009-02-02 23:23:47 +0000106 ArgTys.push_back(i->second);
107 return getFunctionInfo(ResTy, ArgTys);
108}
109
110const CGFunctionInfo &CodeGenTypes::getFunctionInfo(QualType ResTy,
111 const llvm::SmallVector<QualType, 16> &ArgTys) {
Daniel Dunbar40a6be62009-02-03 00:07:12 +0000112 // Lookup or create unique function info.
113 llvm::FoldingSetNodeID ID;
114 CGFunctionInfo::Profile(ID, ResTy, ArgTys.begin(), ArgTys.end());
115
116 void *InsertPos = 0;
117 CGFunctionInfo *FI = FunctionInfos.FindNodeOrInsertPos(ID, InsertPos);
118 if (FI)
119 return *FI;
120
Daniel Dunbar88c2fa92009-02-03 05:31:23 +0000121 // Construct the function info.
Daniel Dunbar40a6be62009-02-03 00:07:12 +0000122 FI = new CGFunctionInfo(ResTy, ArgTys);
Daniel Dunbar35e67d42009-02-05 00:00:23 +0000123 FunctionInfos.InsertNode(FI, InsertPos);
Daniel Dunbar88c2fa92009-02-03 05:31:23 +0000124
125 // Compute ABI information.
Daniel Dunbar6bad2652009-02-03 06:51:18 +0000126 getABIInfo().computeInfo(*FI, getContext());
Daniel Dunbar88c2fa92009-02-03 05:31:23 +0000127
Daniel Dunbar40a6be62009-02-03 00:07:12 +0000128 return *FI;
Daniel Dunbar541b63b2009-02-02 23:23:47 +0000129}
130
131/***/
132
Daniel Dunbar6b1da0e2008-10-13 17:02:26 +0000133ABIInfo::~ABIInfo() {}
134
Daniel Dunbar6f7279b2009-02-04 23:24:38 +0000135void ABIArgInfo::dump() const {
136 fprintf(stderr, "(ABIArgInfo Kind=");
137 switch (TheKind) {
138 case Direct:
139 fprintf(stderr, "Direct");
140 break;
Daniel Dunbar6f7279b2009-02-04 23:24:38 +0000141 case Ignore:
142 fprintf(stderr, "Ignore");
143 break;
144 case Coerce:
145 fprintf(stderr, "Coerce Type=");
146 getCoerceToType()->print(llvm::errs());
Daniel Dunbar6f7279b2009-02-04 23:24:38 +0000147 break;
Daniel Dunbar11e383a2009-02-05 08:00:50 +0000148 case Indirect:
149 fprintf(stderr, "Indirect Align=%d", getIndirectAlign());
Daniel Dunbar6f7279b2009-02-04 23:24:38 +0000150 break;
151 case Expand:
152 fprintf(stderr, "Expand");
153 break;
154 }
155 fprintf(stderr, ")\n");
156}
157
158/***/
159
Daniel Dunbar5bde6f42009-03-31 19:01:39 +0000160/// isEmptyRecord - Return true iff a structure has no non-empty
Daniel Dunbar834af452008-09-17 21:22:33 +0000161/// members. Note that a structure with a flexible array member is not
162/// considered empty.
Douglas Gregor6ab35242009-04-09 21:40:53 +0000163static bool isEmptyRecord(ASTContext &Context, QualType T) {
Daniel Dunbar5bde6f42009-03-31 19:01:39 +0000164 const RecordType *RT = T->getAsRecordType();
Daniel Dunbar834af452008-09-17 21:22:33 +0000165 if (!RT)
166 return 0;
167 const RecordDecl *RD = RT->getDecl();
168 if (RD->hasFlexibleArrayMember())
169 return false;
Douglas Gregor6ab35242009-04-09 21:40:53 +0000170 for (RecordDecl::field_iterator i = RD->field_begin(Context),
171 e = RD->field_end(Context); i != e; ++i) {
Daniel Dunbar834af452008-09-17 21:22:33 +0000172 const FieldDecl *FD = *i;
Douglas Gregor6ab35242009-04-09 21:40:53 +0000173 if (!isEmptyRecord(Context, FD->getType()))
Daniel Dunbar834af452008-09-17 21:22:33 +0000174 return false;
175 }
176 return true;
177}
178
179/// isSingleElementStruct - Determine if a structure is a "single
180/// element struct", i.e. it has exactly one non-empty field or
181/// exactly one field which is itself a single element
182/// struct. Structures with flexible array members are never
183/// considered single element structs.
184///
185/// \return The field declaration for the single non-empty field, if
186/// it exists.
Daniel Dunbardfc6b802009-04-01 07:08:38 +0000187static const Type *isSingleElementStruct(QualType T, ASTContext &Context) {
Daniel Dunbar834af452008-09-17 21:22:33 +0000188 const RecordType *RT = T->getAsStructureType();
189 if (!RT)
190 return 0;
191
192 const RecordDecl *RD = RT->getDecl();
193 if (RD->hasFlexibleArrayMember())
194 return 0;
195
Daniel Dunbardfc6b802009-04-01 07:08:38 +0000196 const Type *Found = 0;
Douglas Gregor6ab35242009-04-09 21:40:53 +0000197 for (RecordDecl::field_iterator i = RD->field_begin(Context),
198 e = RD->field_end(Context); i != e; ++i) {
Daniel Dunbar834af452008-09-17 21:22:33 +0000199 const FieldDecl *FD = *i;
200 QualType FT = FD->getType();
201
Daniel Dunbardfc6b802009-04-01 07:08:38 +0000202 // Treat single element arrays as the element
203 if (const ConstantArrayType *AT = Context.getAsConstantArrayType(FT))
204 if (AT->getSize().getZExtValue() == 1)
205 FT = AT->getElementType();
206
Douglas Gregor6ab35242009-04-09 21:40:53 +0000207 if (isEmptyRecord(Context, FT)) {
Daniel Dunbar834af452008-09-17 21:22:33 +0000208 // Ignore
209 } else if (Found) {
210 return 0;
211 } else if (!CodeGenFunction::hasAggregateLLVMType(FT)) {
Daniel Dunbardfc6b802009-04-01 07:08:38 +0000212 Found = FT.getTypePtr();
Daniel Dunbar834af452008-09-17 21:22:33 +0000213 } else {
Daniel Dunbardfc6b802009-04-01 07:08:38 +0000214 Found = isSingleElementStruct(FT, Context);
Daniel Dunbar834af452008-09-17 21:22:33 +0000215 if (!Found)
216 return 0;
217 }
218 }
219
220 return Found;
221}
222
223static bool is32Or64BitBasicType(QualType Ty, ASTContext &Context) {
224 if (!Ty->getAsBuiltinType() && !Ty->isPointerType())
225 return false;
226
227 uint64_t Size = Context.getTypeSize(Ty);
228 return Size == 32 || Size == 64;
229}
230
231static bool areAllFields32Or64BitBasicType(const RecordDecl *RD,
232 ASTContext &Context) {
Douglas Gregor6ab35242009-04-09 21:40:53 +0000233 for (RecordDecl::field_iterator i = RD->field_begin(Context),
234 e = RD->field_end(Context); i != e; ++i) {
Daniel Dunbar834af452008-09-17 21:22:33 +0000235 const FieldDecl *FD = *i;
236
237 if (!is32Or64BitBasicType(FD->getType(), Context))
238 return false;
239
Daniel Dunbare06a75f2009-03-11 22:05:26 +0000240 // FIXME: Reject bitfields wholesale; there are two problems, we
241 // don't know how to expand them yet, and the predicate for
242 // telling if a bitfield still counts as "basic" is more
243 // complicated than what we were doing previously.
244 if (FD->isBitField())
245 return false;
Daniel Dunbar834af452008-09-17 21:22:33 +0000246 }
Daniel Dunbare06a75f2009-03-11 22:05:26 +0000247
Daniel Dunbar834af452008-09-17 21:22:33 +0000248 return true;
249}
250
Daniel Dunbar6b1da0e2008-10-13 17:02:26 +0000251namespace {
252/// DefaultABIInfo - The default implementation for ABI specific
253/// details. This implementation provides information which results in
Daniel Dunbar6bad2652009-02-03 06:51:18 +0000254/// self-consistent and sensible LLVM IR generation, but does not
255/// conform to any particular ABI.
Daniel Dunbar6b1da0e2008-10-13 17:02:26 +0000256class DefaultABIInfo : public ABIInfo {
Daniel Dunbar6bad2652009-02-03 06:51:18 +0000257 ABIArgInfo classifyReturnType(QualType RetTy,
258 ASTContext &Context) const;
259
260 ABIArgInfo classifyArgumentType(QualType RetTy,
261 ASTContext &Context) const;
Daniel Dunbar6b1da0e2008-10-13 17:02:26 +0000262
Daniel Dunbar6bad2652009-02-03 06:51:18 +0000263 virtual void computeInfo(CGFunctionInfo &FI, ASTContext &Context) const {
264 FI.getReturnInfo() = classifyReturnType(FI.getReturnType(), Context);
265 for (CGFunctionInfo::arg_iterator it = FI.arg_begin(), ie = FI.arg_end();
266 it != ie; ++it)
267 it->info = classifyArgumentType(it->type, Context);
268 }
Daniel Dunbarb4094ea2009-02-10 20:44:09 +0000269
270 virtual llvm::Value *EmitVAArg(llvm::Value *VAListAddr, QualType Ty,
271 CodeGenFunction &CGF) const;
Daniel Dunbar6b1da0e2008-10-13 17:02:26 +0000272};
273
274/// X86_32ABIInfo - The X86-32 ABI information.
275class X86_32ABIInfo : public ABIInfo {
Douglas Gregor6ab35242009-04-09 21:40:53 +0000276 ASTContext &Context;
Eli Friedman9fd58e82009-03-23 23:26:24 +0000277 bool IsDarwin;
278
Daniel Dunbardfc6b802009-04-01 07:08:38 +0000279 static bool isRegisterSize(unsigned Size) {
280 return (Size == 8 || Size == 16 || Size == 32 || Size == 64);
281 }
282
Daniel Dunbarcf6bde32009-04-01 07:45:00 +0000283 static bool shouldReturnTypeInRegister(QualType Ty, ASTContext &Context);
284
Daniel Dunbar6b1da0e2008-10-13 17:02:26 +0000285public:
Daniel Dunbar6bad2652009-02-03 06:51:18 +0000286 ABIArgInfo classifyReturnType(QualType RetTy,
287 ASTContext &Context) const;
Daniel Dunbar6b1da0e2008-10-13 17:02:26 +0000288
Daniel Dunbar6bad2652009-02-03 06:51:18 +0000289 ABIArgInfo classifyArgumentType(QualType RetTy,
290 ASTContext &Context) const;
291
292 virtual void computeInfo(CGFunctionInfo &FI, ASTContext &Context) const {
293 FI.getReturnInfo() = classifyReturnType(FI.getReturnType(), Context);
294 for (CGFunctionInfo::arg_iterator it = FI.arg_begin(), ie = FI.arg_end();
295 it != ie; ++it)
296 it->info = classifyArgumentType(it->type, Context);
297 }
Daniel Dunbarb4094ea2009-02-10 20:44:09 +0000298
299 virtual llvm::Value *EmitVAArg(llvm::Value *VAListAddr, QualType Ty,
300 CodeGenFunction &CGF) const;
Eli Friedman9fd58e82009-03-23 23:26:24 +0000301
Douglas Gregor6ab35242009-04-09 21:40:53 +0000302 X86_32ABIInfo(ASTContext &Context, bool d)
303 : ABIInfo(), Context(Context), IsDarwin(d) {}
Daniel Dunbar6b1da0e2008-10-13 17:02:26 +0000304};
305}
306
Daniel Dunbarcf6bde32009-04-01 07:45:00 +0000307
308/// shouldReturnTypeInRegister - Determine if the given type should be
309/// passed in a register (for the Darwin ABI).
310bool X86_32ABIInfo::shouldReturnTypeInRegister(QualType Ty,
311 ASTContext &Context) {
312 uint64_t Size = Context.getTypeSize(Ty);
313
314 // Type must be register sized.
315 if (!isRegisterSize(Size))
316 return false;
317
318 if (Ty->isVectorType()) {
319 // 64- and 128- bit vectors inside structures are not returned in
320 // registers.
321 if (Size == 64 || Size == 128)
322 return false;
323
324 return true;
325 }
326
327 // If this is a builtin, pointer, or complex type, it is ok.
328 if (Ty->getAsBuiltinType() || Ty->isPointerType() || Ty->isAnyComplexType())
329 return true;
330
331 // Arrays are treated like records.
332 if (const ConstantArrayType *AT = Context.getAsConstantArrayType(Ty))
333 return shouldReturnTypeInRegister(AT->getElementType(), Context);
334
335 // Otherwise, it must be a record type.
336 const RecordType *RT = Ty->getAsRecordType();
337 if (!RT) return false;
338
339 // Structure types are passed in register if all fields would be
340 // passed in a register.
Douglas Gregor6ab35242009-04-09 21:40:53 +0000341 for (RecordDecl::field_iterator i = RT->getDecl()->field_begin(Context),
342 e = RT->getDecl()->field_end(Context); i != e; ++i) {
Daniel Dunbarcf6bde32009-04-01 07:45:00 +0000343 const FieldDecl *FD = *i;
344
345 // FIXME: Reject bitfields wholesale for now; this is incorrect.
346 if (FD->isBitField())
347 return false;
348
349 // Empty structures are ignored.
Douglas Gregor6ab35242009-04-09 21:40:53 +0000350 if (isEmptyRecord(Context, FD->getType()))
Daniel Dunbarcf6bde32009-04-01 07:45:00 +0000351 continue;
352
353 // Check fields recursively.
354 if (!shouldReturnTypeInRegister(FD->getType(), Context))
355 return false;
356 }
357
358 return true;
359}
360
Daniel Dunbar6b1da0e2008-10-13 17:02:26 +0000361ABIArgInfo X86_32ABIInfo::classifyReturnType(QualType RetTy,
362 ASTContext &Context) const {
Daniel Dunbar0bcc5212009-02-03 06:30:17 +0000363 if (RetTy->isVoidType()) {
364 return ABIArgInfo::getIgnore();
Daniel Dunbar36043162009-04-01 06:13:08 +0000365 } else if (const VectorType *VT = RetTy->getAsVectorType()) {
366 // On Darwin, some vectors are returned in registers.
367 if (IsDarwin) {
368 uint64_t Size = Context.getTypeSize(RetTy);
369
370 // 128-bit vectors are a special case; they are returned in
371 // registers and we need to make sure to pick a type the LLVM
372 // backend will like.
373 if (Size == 128)
374 return ABIArgInfo::getCoerce(llvm::VectorType::get(llvm::Type::Int64Ty,
375 2));
376
377 // Always return in register if it fits in a general purpose
378 // register, or if it is 64 bits and has a single element.
379 if ((Size == 8 || Size == 16 || Size == 32) ||
380 (Size == 64 && VT->getNumElements() == 1))
381 return ABIArgInfo::getCoerce(llvm::IntegerType::get(Size));
382
383 return ABIArgInfo::getIndirect(0);
384 }
385
386 return ABIArgInfo::getDirect();
Daniel Dunbar0bcc5212009-02-03 06:30:17 +0000387 } else if (CodeGenFunction::hasAggregateLLVMType(RetTy)) {
Eli Friedman9fd58e82009-03-23 23:26:24 +0000388 // Outside of Darwin, structs and unions are always indirect.
389 if (!IsDarwin && !RetTy->isAnyComplexType())
390 return ABIArgInfo::getIndirect(0);
Daniel Dunbar834af452008-09-17 21:22:33 +0000391 // Classify "single element" structs as their element type.
Daniel Dunbardfc6b802009-04-01 07:08:38 +0000392 if (const Type *SeltTy = isSingleElementStruct(RetTy, Context)) {
Daniel Dunbar834af452008-09-17 21:22:33 +0000393 if (const BuiltinType *BT = SeltTy->getAsBuiltinType()) {
394 // FIXME: This is gross, it would be nice if we could just
395 // pass back SeltTy and have clients deal with it. Is it worth
396 // supporting coerce to both LLVM and clang Types?
397 if (BT->isIntegerType()) {
398 uint64_t Size = Context.getTypeSize(SeltTy);
399 return ABIArgInfo::getCoerce(llvm::IntegerType::get((unsigned) Size));
400 } else if (BT->getKind() == BuiltinType::Float) {
401 return ABIArgInfo::getCoerce(llvm::Type::FloatTy);
402 } else if (BT->getKind() == BuiltinType::Double) {
403 return ABIArgInfo::getCoerce(llvm::Type::DoubleTy);
404 }
405 } else if (SeltTy->isPointerType()) {
406 // FIXME: It would be really nice if this could come out as
407 // the proper pointer type.
408 llvm::Type *PtrTy =
409 llvm::PointerType::getUnqual(llvm::Type::Int8Ty);
410 return ABIArgInfo::getCoerce(PtrTy);
Daniel Dunbardfc6b802009-04-01 07:08:38 +0000411 } else if (SeltTy->isVectorType()) {
412 // 64- and 128-bit vectors are never returned in a
413 // register when inside a structure.
414 uint64_t Size = Context.getTypeSize(RetTy);
415 if (Size == 64 || Size == 128)
416 return ABIArgInfo::getIndirect(0);
417
418 return classifyReturnType(QualType(SeltTy, 0), Context);
Daniel Dunbar834af452008-09-17 21:22:33 +0000419 }
420 }
421
Daniel Dunbar639ffe42008-09-10 07:04:09 +0000422 uint64_t Size = Context.getTypeSize(RetTy);
Daniel Dunbarcf6bde32009-04-01 07:45:00 +0000423 if (isRegisterSize(Size)) {
424 // Always return in register for unions for now.
425 // FIXME: This is wrong, but better than treating as a
426 // structure.
427 if (RetTy->isUnionType())
428 return ABIArgInfo::getCoerce(llvm::IntegerType::get(Size));
429
430 // Small structures which are register sized are generally returned
431 // in a register.
432 if (X86_32ABIInfo::shouldReturnTypeInRegister(RetTy, Context))
433 return ABIArgInfo::getCoerce(llvm::IntegerType::get(Size));
434 }
Daniel Dunbardfc6b802009-04-01 07:08:38 +0000435
436 return ABIArgInfo::getIndirect(0);
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +0000437 } else {
Daniel Dunbar0bcc5212009-02-03 06:30:17 +0000438 return ABIArgInfo::getDirect();
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +0000439 }
440}
441
Daniel Dunbar6b1da0e2008-10-13 17:02:26 +0000442ABIArgInfo X86_32ABIInfo::classifyArgumentType(QualType Ty,
Daniel Dunbarb4094ea2009-02-10 20:44:09 +0000443 ASTContext &Context) const {
Daniel Dunbar11e383a2009-02-05 08:00:50 +0000444 // FIXME: Set alignment on indirect arguments.
Daniel Dunbarf0357382008-09-17 20:11:04 +0000445 if (CodeGenFunction::hasAggregateLLVMType(Ty)) {
Daniel Dunbar11e383a2009-02-05 08:00:50 +0000446 // Structures with flexible arrays are always indirect.
Daniel Dunbar834af452008-09-17 21:22:33 +0000447 if (const RecordType *RT = Ty->getAsStructureType())
448 if (RT->getDecl()->hasFlexibleArrayMember())
Daniel Dunbar11e383a2009-02-05 08:00:50 +0000449 return ABIArgInfo::getIndirect(0);
Daniel Dunbar834af452008-09-17 21:22:33 +0000450
Daniel Dunbar3170c932009-02-05 01:50:07 +0000451 // Ignore empty structs.
Daniel Dunbar834af452008-09-17 21:22:33 +0000452 uint64_t Size = Context.getTypeSize(Ty);
453 if (Ty->isStructureType() && Size == 0)
Daniel Dunbar3170c932009-02-05 01:50:07 +0000454 return ABIArgInfo::getIgnore();
Daniel Dunbar834af452008-09-17 21:22:33 +0000455
456 // Expand structs with size <= 128-bits which consist only of
457 // basic types (int, long long, float, double, xxx*). This is
458 // non-recursive and does not ignore empty fields.
459 if (const RecordType *RT = Ty->getAsStructureType()) {
460 if (Context.getTypeSize(Ty) <= 4*32 &&
461 areAllFields32Or64BitBasicType(RT->getDecl(), Context))
462 return ABIArgInfo::getExpand();
463 }
464
Daniel Dunbar11e383a2009-02-05 08:00:50 +0000465 return ABIArgInfo::getIndirect(0);
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000466 } else {
Daniel Dunbar0bcc5212009-02-03 06:30:17 +0000467 return ABIArgInfo::getDirect();
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000468 }
469}
470
Daniel Dunbarb4094ea2009-02-10 20:44:09 +0000471llvm::Value *X86_32ABIInfo::EmitVAArg(llvm::Value *VAListAddr, QualType Ty,
472 CodeGenFunction &CGF) const {
473 const llvm::Type *BP = llvm::PointerType::getUnqual(llvm::Type::Int8Ty);
474 const llvm::Type *BPP = llvm::PointerType::getUnqual(BP);
475
476 CGBuilderTy &Builder = CGF.Builder;
477 llvm::Value *VAListAddrAsBPP = Builder.CreateBitCast(VAListAddr, BPP,
478 "ap");
479 llvm::Value *Addr = Builder.CreateLoad(VAListAddrAsBPP, "ap.cur");
480 llvm::Type *PTy =
481 llvm::PointerType::getUnqual(CGF.ConvertType(Ty));
482 llvm::Value *AddrTyped = Builder.CreateBitCast(Addr, PTy);
483
Daniel Dunbar570f0cf2009-02-18 22:28:45 +0000484 uint64_t Offset =
485 llvm::RoundUpToAlignment(CGF.getContext().getTypeSize(Ty) / 8, 4);
Daniel Dunbarb4094ea2009-02-10 20:44:09 +0000486 llvm::Value *NextAddr =
487 Builder.CreateGEP(Addr,
Daniel Dunbar570f0cf2009-02-18 22:28:45 +0000488 llvm::ConstantInt::get(llvm::Type::Int32Ty, Offset),
Daniel Dunbarb4094ea2009-02-10 20:44:09 +0000489 "ap.next");
490 Builder.CreateStore(NextAddr, VAListAddrAsBPP);
491
492 return AddrTyped;
493}
494
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000495namespace {
Daniel Dunbarc4503572009-01-31 00:06:58 +0000496/// X86_64ABIInfo - The X86_64 ABI information.
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000497class X86_64ABIInfo : public ABIInfo {
498 enum Class {
499 Integer = 0,
500 SSE,
501 SSEUp,
502 X87,
503 X87Up,
504 ComplexX87,
505 NoClass,
506 Memory
507 };
508
Daniel Dunbar8562ae72009-01-30 08:09:32 +0000509 /// merge - Implement the X86_64 ABI merging algorithm.
510 ///
Daniel Dunbarc4503572009-01-31 00:06:58 +0000511 /// Merge an accumulating classification \arg Accum with a field
512 /// classification \arg Field.
513 ///
514 /// \param Accum - The accumulating classification. This should
515 /// always be either NoClass or the result of a previous merge
516 /// call. In addition, this should never be Memory (the caller
517 /// should just return Memory for the aggregate).
518 Class merge(Class Accum, Class Field) const;
Daniel Dunbar8562ae72009-01-30 08:09:32 +0000519
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000520 /// classify - Determine the x86_64 register classes in which the
521 /// given type T should be passed.
522 ///
Daniel Dunbarc4503572009-01-31 00:06:58 +0000523 /// \param Lo - The classification for the parts of the type
524 /// residing in the low word of the containing object.
525 ///
526 /// \param Hi - The classification for the parts of the type
527 /// residing in the high word of the containing object.
528 ///
529 /// \param OffsetBase - The bit offset of this type in the
Daniel Dunbarcdf920e2009-01-30 22:40:15 +0000530 /// containing object. Some parameters are classified different
531 /// depending on whether they straddle an eightbyte boundary.
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000532 ///
533 /// If a word is unused its result will be NoClass; if a type should
534 /// be passed in Memory then at least the classification of \arg Lo
535 /// will be Memory.
536 ///
537 /// The \arg Lo class will be NoClass iff the argument is ignored.
538 ///
539 /// If the \arg Lo class is ComplexX87, then the \arg Hi class will
Daniel Dunbar6e53e9b2009-02-17 07:55:55 +0000540 /// also be ComplexX87.
Daniel Dunbare620ecd2009-01-30 00:47:38 +0000541 void classify(QualType T, ASTContext &Context, uint64_t OffsetBase,
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000542 Class &Lo, Class &Hi) const;
Daniel Dunbarc4503572009-01-31 00:06:58 +0000543
Daniel Dunbar644f4c32009-02-14 02:09:24 +0000544 /// getCoerceResult - Given a source type \arg Ty and an LLVM type
545 /// to coerce to, chose the best way to pass Ty in the same place
546 /// that \arg CoerceTo would be passed, but while keeping the
547 /// emitted code as simple as possible.
548 ///
549 /// FIXME: Note, this should be cleaned up to just take an
550 /// enumeration of all the ways we might want to pass things,
551 /// instead of constructing an LLVM type. This makes this code more
552 /// explicit, and it makes it clearer that we are also doing this
553 /// for correctness in the case of passing scalar types.
554 ABIArgInfo getCoerceResult(QualType Ty,
555 const llvm::Type *CoerceTo,
556 ASTContext &Context) const;
557
Daniel Dunbar6bad2652009-02-03 06:51:18 +0000558 ABIArgInfo classifyReturnType(QualType RetTy,
Daniel Dunbar59e5a0e2009-02-03 20:00:13 +0000559 ASTContext &Context) const;
560
561 ABIArgInfo classifyArgumentType(QualType Ty,
562 ASTContext &Context,
Daniel Dunbar3b4e9cd2009-02-10 17:06:09 +0000563 unsigned &neededInt,
564 unsigned &neededSSE) const;
Daniel Dunbar59e5a0e2009-02-03 20:00:13 +0000565
566public:
567 virtual void computeInfo(CGFunctionInfo &FI, ASTContext &Context) const;
Daniel Dunbarb4094ea2009-02-10 20:44:09 +0000568
569 virtual llvm::Value *EmitVAArg(llvm::Value *VAListAddr, QualType Ty,
570 CodeGenFunction &CGF) const;
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000571};
572}
573
Daniel Dunbarc4503572009-01-31 00:06:58 +0000574X86_64ABIInfo::Class X86_64ABIInfo::merge(Class Accum,
575 Class Field) const {
Daniel Dunbar8562ae72009-01-30 08:09:32 +0000576 // AMD64-ABI 3.2.3p2: Rule 4. Each field of an object is
577 // classified recursively so that always two fields are
578 // considered. The resulting class is calculated according to
579 // the classes of the fields in the eightbyte:
580 //
581 // (a) If both classes are equal, this is the resulting class.
582 //
583 // (b) If one of the classes is NO_CLASS, the resulting class is
584 // the other class.
585 //
586 // (c) If one of the classes is MEMORY, the result is the MEMORY
587 // class.
588 //
589 // (d) If one of the classes is INTEGER, the result is the
590 // INTEGER.
591 //
592 // (e) If one of the classes is X87, X87UP, COMPLEX_X87 class,
593 // MEMORY is used as class.
594 //
595 // (f) Otherwise class SSE is used.
Daniel Dunbar100f4022009-03-06 17:50:25 +0000596
597 // Accum should never be memory (we should have returned) or
598 // ComplexX87 (because this cannot be passed in a structure).
599 assert((Accum != Memory && Accum != ComplexX87) &&
Daniel Dunbarc4503572009-01-31 00:06:58 +0000600 "Invalid accumulated classification during merge.");
601 if (Accum == Field || Field == NoClass)
602 return Accum;
603 else if (Field == Memory)
604 return Memory;
605 else if (Accum == NoClass)
606 return Field;
607 else if (Accum == Integer || Field == Integer)
608 return Integer;
609 else if (Field == X87 || Field == X87Up || Field == ComplexX87)
610 return Memory;
Daniel Dunbar8562ae72009-01-30 08:09:32 +0000611 else
Daniel Dunbarc4503572009-01-31 00:06:58 +0000612 return SSE;
Daniel Dunbar8562ae72009-01-30 08:09:32 +0000613}
614
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000615void X86_64ABIInfo::classify(QualType Ty,
616 ASTContext &Context,
Daniel Dunbare620ecd2009-01-30 00:47:38 +0000617 uint64_t OffsetBase,
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000618 Class &Lo, Class &Hi) const {
Daniel Dunbar9a82b522009-02-02 18:06:39 +0000619 // FIXME: This code can be simplified by introducing a simple value
620 // class for Class pairs with appropriate constructor methods for
621 // the various situations.
622
Daniel Dunbare28099b2009-02-22 04:48:22 +0000623 // FIXME: Some of the split computations are wrong; unaligned
624 // vectors shouldn't be passed in registers for example, so there is
625 // no chance they can straddle an eightbyte. Verify & simplify.
626
Daniel Dunbarc4503572009-01-31 00:06:58 +0000627 Lo = Hi = NoClass;
628
629 Class &Current = OffsetBase < 64 ? Lo : Hi;
630 Current = Memory;
631
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000632 if (const BuiltinType *BT = Ty->getAsBuiltinType()) {
633 BuiltinType::Kind k = BT->getKind();
634
Daniel Dunbar11434922009-01-26 21:26:08 +0000635 if (k == BuiltinType::Void) {
Daniel Dunbarc4503572009-01-31 00:06:58 +0000636 Current = NoClass;
Daniel Dunbar11434922009-01-26 21:26:08 +0000637 } else if (k >= BuiltinType::Bool && k <= BuiltinType::LongLong) {
Daniel Dunbarc4503572009-01-31 00:06:58 +0000638 Current = Integer;
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000639 } else if (k == BuiltinType::Float || k == BuiltinType::Double) {
Daniel Dunbarc4503572009-01-31 00:06:58 +0000640 Current = SSE;
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000641 } else if (k == BuiltinType::LongDouble) {
642 Lo = X87;
643 Hi = X87Up;
644 }
Daniel Dunbar7a6605d2009-01-27 02:01:34 +0000645 // FIXME: _Decimal32 and _Decimal64 are SSE.
646 // FIXME: _float128 and _Decimal128 are (SSE, SSEUp).
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000647 // FIXME: __int128 is (Integer, Integer).
Anders Carlsson708762b2009-02-26 17:31:15 +0000648 } else if (const EnumType *ET = Ty->getAsEnumType()) {
649 // Classify the underlying integer type.
650 classify(ET->getDecl()->getIntegerType(), Context, OffsetBase, Lo, Hi);
Daniel Dunbar89588912009-02-26 20:52:22 +0000651 } else if (Ty->hasPointerRepresentation()) {
Daniel Dunbarc4503572009-01-31 00:06:58 +0000652 Current = Integer;
Daniel Dunbar7a6605d2009-01-27 02:01:34 +0000653 } else if (const VectorType *VT = Ty->getAsVectorType()) {
Daniel Dunbare620ecd2009-01-30 00:47:38 +0000654 uint64_t Size = Context.getTypeSize(VT);
Daniel Dunbare28099b2009-02-22 04:48:22 +0000655 if (Size == 32) {
656 // gcc passes all <4 x char>, <2 x short>, <1 x int>, <1 x
657 // float> as integer.
658 Current = Integer;
659
660 // If this type crosses an eightbyte boundary, it should be
661 // split.
662 uint64_t EB_Real = (OffsetBase) / 64;
663 uint64_t EB_Imag = (OffsetBase + Size - 1) / 64;
664 if (EB_Real != EB_Imag)
665 Hi = Lo;
666 } else if (Size == 64) {
Daniel Dunbar0af99292009-02-22 04:16:10 +0000667 // gcc passes <1 x double> in memory. :(
668 if (VT->getElementType()->isSpecificBuiltinType(BuiltinType::Double))
Daniel Dunbard4cd1b02009-01-30 19:38:39 +0000669 return;
Daniel Dunbar0af99292009-02-22 04:16:10 +0000670
671 // gcc passes <1 x long long> as INTEGER.
672 if (VT->getElementType()->isSpecificBuiltinType(BuiltinType::LongLong))
673 Current = Integer;
674 else
675 Current = SSE;
Daniel Dunbare33edf12009-01-30 18:40:10 +0000676
677 // If this type crosses an eightbyte boundary, it should be
678 // split.
Daniel Dunbarcdf920e2009-01-30 22:40:15 +0000679 if (OffsetBase && OffsetBase != 64)
Daniel Dunbare33edf12009-01-30 18:40:10 +0000680 Hi = Lo;
Daniel Dunbar7a6605d2009-01-27 02:01:34 +0000681 } else if (Size == 128) {
682 Lo = SSE;
683 Hi = SSEUp;
684 }
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000685 } else if (const ComplexType *CT = Ty->getAsComplexType()) {
Daniel Dunbar3327f6e2009-02-14 02:45:45 +0000686 QualType ET = Context.getCanonicalType(CT->getElementType());
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000687
Daniel Dunbare33edf12009-01-30 18:40:10 +0000688 uint64_t Size = Context.getTypeSize(Ty);
Daniel Dunbar0af99292009-02-22 04:16:10 +0000689 if (ET->isIntegralType()) {
Daniel Dunbareac48dc2009-01-29 07:22:20 +0000690 if (Size <= 64)
Daniel Dunbarc4503572009-01-31 00:06:58 +0000691 Current = Integer;
Daniel Dunbareac48dc2009-01-29 07:22:20 +0000692 else if (Size <= 128)
693 Lo = Hi = Integer;
694 } else if (ET == Context.FloatTy)
Daniel Dunbarc4503572009-01-31 00:06:58 +0000695 Current = SSE;
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000696 else if (ET == Context.DoubleTy)
697 Lo = Hi = SSE;
698 else if (ET == Context.LongDoubleTy)
Daniel Dunbarc4503572009-01-31 00:06:58 +0000699 Current = ComplexX87;
Daniel Dunbarf04d69b2009-01-29 09:42:07 +0000700
701 // If this complex type crosses an eightbyte boundary then it
702 // should be split.
Daniel Dunbarcdf920e2009-01-30 22:40:15 +0000703 uint64_t EB_Real = (OffsetBase) / 64;
704 uint64_t EB_Imag = (OffsetBase + Context.getTypeSize(ET)) / 64;
Daniel Dunbarf04d69b2009-01-29 09:42:07 +0000705 if (Hi == NoClass && EB_Real != EB_Imag)
706 Hi = Lo;
Daniel Dunbar8562ae72009-01-30 08:09:32 +0000707 } else if (const ConstantArrayType *AT = Context.getAsConstantArrayType(Ty)) {
708 // Arrays are treated like structures.
709
710 uint64_t Size = Context.getTypeSize(Ty);
711
712 // AMD64-ABI 3.2.3p2: Rule 1. If the size of an object is larger
713 // than two eightbytes, ..., it has class MEMORY.
714 if (Size > 128)
715 return;
716
717 // AMD64-ABI 3.2.3p2: Rule 1. If ..., or it contains unaligned
718 // fields, it has class MEMORY.
719 //
720 // Only need to check alignment of array base.
Daniel Dunbarc4503572009-01-31 00:06:58 +0000721 if (OffsetBase % Context.getTypeAlign(AT->getElementType()))
Daniel Dunbar8562ae72009-01-30 08:09:32 +0000722 return;
Daniel Dunbar8562ae72009-01-30 08:09:32 +0000723
724 // Otherwise implement simplified merge. We could be smarter about
725 // this, but it isn't worth it and would be harder to verify.
Daniel Dunbarc4503572009-01-31 00:06:58 +0000726 Current = NoClass;
Daniel Dunbar8562ae72009-01-30 08:09:32 +0000727 uint64_t EltSize = Context.getTypeSize(AT->getElementType());
728 uint64_t ArraySize = AT->getSize().getZExtValue();
729 for (uint64_t i=0, Offset=OffsetBase; i<ArraySize; ++i, Offset += EltSize) {
730 Class FieldLo, FieldHi;
731 classify(AT->getElementType(), Context, Offset, FieldLo, FieldHi);
Daniel Dunbarc4503572009-01-31 00:06:58 +0000732 Lo = merge(Lo, FieldLo);
733 Hi = merge(Hi, FieldHi);
734 if (Lo == Memory || Hi == Memory)
735 break;
Daniel Dunbar8562ae72009-01-30 08:09:32 +0000736 }
Daniel Dunbarc4503572009-01-31 00:06:58 +0000737
738 // Do post merger cleanup (see below). Only case we worry about is Memory.
739 if (Hi == Memory)
740 Lo = Memory;
741 assert((Hi != SSEUp || Lo == SSE) && "Invalid SSEUp array classification.");
Daniel Dunbar99037e52009-01-29 08:13:58 +0000742 } else if (const RecordType *RT = Ty->getAsRecordType()) {
Daniel Dunbare620ecd2009-01-30 00:47:38 +0000743 uint64_t Size = Context.getTypeSize(Ty);
Daniel Dunbar99037e52009-01-29 08:13:58 +0000744
745 // AMD64-ABI 3.2.3p2: Rule 1. If the size of an object is larger
746 // than two eightbytes, ..., it has class MEMORY.
747 if (Size > 128)
748 return;
749
750 const RecordDecl *RD = RT->getDecl();
751
752 // Assume variable sized types are passed in memory.
753 if (RD->hasFlexibleArrayMember())
754 return;
755
756 const ASTRecordLayout &Layout = Context.getASTRecordLayout(RD);
757
758 // Reset Lo class, this will be recomputed.
Daniel Dunbarc4503572009-01-31 00:06:58 +0000759 Current = NoClass;
Daniel Dunbar99037e52009-01-29 08:13:58 +0000760 unsigned idx = 0;
Douglas Gregor6ab35242009-04-09 21:40:53 +0000761 for (RecordDecl::field_iterator i = RD->field_begin(Context),
762 e = RD->field_end(Context); i != e; ++i, ++idx) {
Daniel Dunbar8562ae72009-01-30 08:09:32 +0000763 uint64_t Offset = OffsetBase + Layout.getFieldOffset(idx);
Daniel Dunbardd81d442009-02-17 02:45:44 +0000764 bool BitField = i->isBitField();
Daniel Dunbar99037e52009-01-29 08:13:58 +0000765
Daniel Dunbar8562ae72009-01-30 08:09:32 +0000766 // AMD64-ABI 3.2.3p2: Rule 1. If ..., or it contains unaligned
767 // fields, it has class MEMORY.
Daniel Dunbardd81d442009-02-17 02:45:44 +0000768 //
769 // Note, skip this test for bitfields, see below.
770 if (!BitField && Offset % Context.getTypeAlign(i->getType())) {
Daniel Dunbar99037e52009-01-29 08:13:58 +0000771 Lo = Memory;
772 return;
773 }
774
Daniel Dunbar99037e52009-01-29 08:13:58 +0000775 // Classify this field.
Daniel Dunbarc4503572009-01-31 00:06:58 +0000776 //
777 // AMD64-ABI 3.2.3p2: Rule 3. If the size of the aggregate
778 // exceeds a single eightbyte, each is classified
779 // separately. Each eightbyte gets initialized to class
780 // NO_CLASS.
Daniel Dunbar99037e52009-01-29 08:13:58 +0000781 Class FieldLo, FieldHi;
Daniel Dunbardd81d442009-02-17 02:45:44 +0000782
783 // Bitfields require special handling, they do not force the
784 // structure to be passed in memory even if unaligned, and
785 // therefore they can straddle an eightbyte.
786 if (BitField) {
787 uint64_t Offset = OffsetBase + Layout.getFieldOffset(idx);
788 uint64_t Size =
789 i->getBitWidth()->getIntegerConstantExprValue(Context).getZExtValue();
790
791 uint64_t EB_Lo = Offset / 64;
792 uint64_t EB_Hi = (Offset + Size - 1) / 64;
793 FieldLo = FieldHi = NoClass;
794 if (EB_Lo) {
795 assert(EB_Hi == EB_Lo && "Invalid classification, type > 16 bytes.");
796 FieldLo = NoClass;
797 FieldHi = Integer;
798 } else {
799 FieldLo = Integer;
800 FieldHi = EB_Hi ? Integer : NoClass;
801 }
802 } else
803 classify(i->getType(), Context, Offset, FieldLo, FieldHi);
Daniel Dunbarc4503572009-01-31 00:06:58 +0000804 Lo = merge(Lo, FieldLo);
805 Hi = merge(Hi, FieldHi);
806 if (Lo == Memory || Hi == Memory)
807 break;
Daniel Dunbar99037e52009-01-29 08:13:58 +0000808 }
809
810 // AMD64-ABI 3.2.3p2: Rule 5. Then a post merger cleanup is done:
811 //
812 // (a) If one of the classes is MEMORY, the whole argument is
813 // passed in memory.
814 //
815 // (b) If SSEUP is not preceeded by SSE, it is converted to SSE.
816
817 // The first of these conditions is guaranteed by how we implement
Daniel Dunbarc4503572009-01-31 00:06:58 +0000818 // the merge (just bail).
819 //
820 // The second condition occurs in the case of unions; for example
821 // union { _Complex double; unsigned; }.
822 if (Hi == Memory)
823 Lo = Memory;
Daniel Dunbar99037e52009-01-29 08:13:58 +0000824 if (Hi == SSEUp && Lo != SSE)
Daniel Dunbarc4503572009-01-31 00:06:58 +0000825 Hi = SSE;
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000826 }
827}
828
Daniel Dunbar644f4c32009-02-14 02:09:24 +0000829ABIArgInfo X86_64ABIInfo::getCoerceResult(QualType Ty,
830 const llvm::Type *CoerceTo,
831 ASTContext &Context) const {
832 if (CoerceTo == llvm::Type::Int64Ty) {
833 // Integer and pointer types will end up in a general purpose
834 // register.
Daniel Dunbar0af99292009-02-22 04:16:10 +0000835 if (Ty->isIntegralType() || Ty->isPointerType())
Daniel Dunbar644f4c32009-02-14 02:09:24 +0000836 return ABIArgInfo::getDirect();
Daniel Dunbar0af99292009-02-22 04:16:10 +0000837
Daniel Dunbar644f4c32009-02-14 02:09:24 +0000838 } else if (CoerceTo == llvm::Type::DoubleTy) {
Daniel Dunbar3327f6e2009-02-14 02:45:45 +0000839 // FIXME: It would probably be better to make CGFunctionInfo only
840 // map using canonical types than to canonize here.
841 QualType CTy = Context.getCanonicalType(Ty);
842
Daniel Dunbar644f4c32009-02-14 02:09:24 +0000843 // Float and double end up in a single SSE reg.
Daniel Dunbar3327f6e2009-02-14 02:45:45 +0000844 if (CTy == Context.FloatTy || CTy == Context.DoubleTy)
Daniel Dunbar644f4c32009-02-14 02:09:24 +0000845 return ABIArgInfo::getDirect();
Daniel Dunbar0af99292009-02-22 04:16:10 +0000846
Daniel Dunbar644f4c32009-02-14 02:09:24 +0000847 }
848
849 return ABIArgInfo::getCoerce(CoerceTo);
850}
Daniel Dunbarc4503572009-01-31 00:06:58 +0000851
Daniel Dunbard4edfe42009-01-15 18:18:40 +0000852ABIArgInfo X86_64ABIInfo::classifyReturnType(QualType RetTy,
853 ASTContext &Context) const {
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000854 // AMD64-ABI 3.2.3p4: Rule 1. Classify the return type with the
855 // classification algorithm.
856 X86_64ABIInfo::Class Lo, Hi;
Daniel Dunbarf04d69b2009-01-29 09:42:07 +0000857 classify(RetTy, Context, 0, Lo, Hi);
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000858
Daniel Dunbarc4503572009-01-31 00:06:58 +0000859 // Check some invariants.
860 assert((Hi != Memory || Lo == Memory) && "Invalid memory classification.");
861 assert((Lo != NoClass || Hi == NoClass) && "Invalid null classification.");
862 assert((Hi != SSEUp || Lo == SSE) && "Invalid SSEUp classification.");
863
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000864 const llvm::Type *ResType = 0;
865 switch (Lo) {
866 case NoClass:
Daniel Dunbar11434922009-01-26 21:26:08 +0000867 return ABIArgInfo::getIgnore();
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000868
869 case SSEUp:
870 case X87Up:
871 assert(0 && "Invalid classification for lo word.");
872
Daniel Dunbarc4503572009-01-31 00:06:58 +0000873 // AMD64-ABI 3.2.3p4: Rule 2. Types of class memory are returned via
Daniel Dunbar11e383a2009-02-05 08:00:50 +0000874 // hidden argument.
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000875 case Memory:
Daniel Dunbar11e383a2009-02-05 08:00:50 +0000876 return ABIArgInfo::getIndirect(0);
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000877
878 // AMD64-ABI 3.2.3p4: Rule 3. If the class is INTEGER, the next
879 // available register of the sequence %rax, %rdx is used.
880 case Integer:
881 ResType = llvm::Type::Int64Ty; break;
882
883 // AMD64-ABI 3.2.3p4: Rule 4. If the class is SSE, the next
884 // available SSE register of the sequence %xmm0, %xmm1 is used.
885 case SSE:
886 ResType = llvm::Type::DoubleTy; break;
887
888 // AMD64-ABI 3.2.3p4: Rule 6. If the class is X87, the value is
889 // returned on the X87 stack in %st0 as 80-bit x87 number.
890 case X87:
891 ResType = llvm::Type::X86_FP80Ty; break;
892
Daniel Dunbarc4503572009-01-31 00:06:58 +0000893 // AMD64-ABI 3.2.3p4: Rule 8. If the class is COMPLEX_X87, the real
894 // part of the value is returned in %st0 and the imaginary part in
895 // %st1.
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000896 case ComplexX87:
Daniel Dunbar6e53e9b2009-02-17 07:55:55 +0000897 assert(Hi == ComplexX87 && "Unexpected ComplexX87 classification.");
Daniel Dunbar3e030b42009-02-18 03:44:19 +0000898 ResType = llvm::StructType::get(llvm::Type::X86_FP80Ty,
899 llvm::Type::X86_FP80Ty,
900 NULL);
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000901 break;
902 }
903
904 switch (Hi) {
Daniel Dunbar6e53e9b2009-02-17 07:55:55 +0000905 // Memory was handled previously and X87 should
906 // never occur as a hi class.
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000907 case Memory:
908 case X87:
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000909 assert(0 && "Invalid classification for hi word.");
910
Daniel Dunbar6e53e9b2009-02-17 07:55:55 +0000911 case ComplexX87: // Previously handled.
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000912 case NoClass: break;
Daniel Dunbar6e53e9b2009-02-17 07:55:55 +0000913
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000914 case Integer:
Daniel Dunbarb0e14f22009-01-29 07:36:07 +0000915 ResType = llvm::StructType::get(ResType, llvm::Type::Int64Ty, NULL);
916 break;
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000917 case SSE:
Daniel Dunbarb0e14f22009-01-29 07:36:07 +0000918 ResType = llvm::StructType::get(ResType, llvm::Type::DoubleTy, NULL);
919 break;
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000920
921 // AMD64-ABI 3.2.3p4: Rule 5. If the class is SSEUP, the eightbyte
922 // is passed in the upper half of the last used SSE register.
923 //
924 // SSEUP should always be preceeded by SSE, just widen.
925 case SSEUp:
926 assert(Lo == SSE && "Unexpected SSEUp classification.");
927 ResType = llvm::VectorType::get(llvm::Type::DoubleTy, 2);
928 break;
929
930 // AMD64-ABI 3.2.3p4: Rule 7. If the class is X87UP, the value is
Daniel Dunbarb0e14f22009-01-29 07:36:07 +0000931 // returned together with the previous X87 value in %st0.
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000932 case X87Up:
Daniel Dunbar100f4022009-03-06 17:50:25 +0000933 // If X87Up is preceeded by X87, we don't need to do
934 // anything. However, in some cases with unions it may not be
935 // preceeded by X87. In such situations we follow gcc and pass the
936 // extra bits in an SSE reg.
937 if (Lo != X87)
938 ResType = llvm::StructType::get(ResType, llvm::Type::DoubleTy, NULL);
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000939 break;
940 }
941
Daniel Dunbar644f4c32009-02-14 02:09:24 +0000942 return getCoerceResult(RetTy, ResType, Context);
Daniel Dunbard4edfe42009-01-15 18:18:40 +0000943}
944
Daniel Dunbar59e5a0e2009-02-03 20:00:13 +0000945ABIArgInfo X86_64ABIInfo::classifyArgumentType(QualType Ty, ASTContext &Context,
Daniel Dunbar3b4e9cd2009-02-10 17:06:09 +0000946 unsigned &neededInt,
947 unsigned &neededSSE) const {
Daniel Dunbar59e5a0e2009-02-03 20:00:13 +0000948 X86_64ABIInfo::Class Lo, Hi;
949 classify(Ty, Context, 0, Lo, Hi);
950
951 // Check some invariants.
952 // FIXME: Enforce these by construction.
953 assert((Hi != Memory || Lo == Memory) && "Invalid memory classification.");
954 assert((Lo != NoClass || Hi == NoClass) && "Invalid null classification.");
955 assert((Hi != SSEUp || Lo == SSE) && "Invalid SSEUp classification.");
956
Daniel Dunbar3b4e9cd2009-02-10 17:06:09 +0000957 neededInt = 0;
958 neededSSE = 0;
Daniel Dunbar59e5a0e2009-02-03 20:00:13 +0000959 const llvm::Type *ResType = 0;
960 switch (Lo) {
961 case NoClass:
962 return ABIArgInfo::getIgnore();
963
964 // AMD64-ABI 3.2.3p3: Rule 1. If the class is MEMORY, pass the argument
965 // on the stack.
966 case Memory:
967
968 // AMD64-ABI 3.2.3p3: Rule 5. If the class is X87, X87UP or
969 // COMPLEX_X87, it is passed in memory.
970 case X87:
971 case ComplexX87:
Daniel Dunbar245f5532009-02-22 08:17:51 +0000972 return ABIArgInfo::getIndirect(0);
Daniel Dunbar59e5a0e2009-02-03 20:00:13 +0000973
974 case SSEUp:
975 case X87Up:
976 assert(0 && "Invalid classification for lo word.");
977
978 // AMD64-ABI 3.2.3p3: Rule 2. If the class is INTEGER, the next
979 // available register of the sequence %rdi, %rsi, %rdx, %rcx, %r8
980 // and %r9 is used.
981 case Integer:
982 ++neededInt;
983 ResType = llvm::Type::Int64Ty;
984 break;
985
986 // AMD64-ABI 3.2.3p3: Rule 3. If the class is SSE, the next
987 // available SSE register is used, the registers are taken in the
988 // order from %xmm0 to %xmm7.
989 case SSE:
990 ++neededSSE;
991 ResType = llvm::Type::DoubleTy;
992 break;
Daniel Dunbar0bcc5212009-02-03 06:30:17 +0000993 }
Daniel Dunbar59e5a0e2009-02-03 20:00:13 +0000994
995 switch (Hi) {
996 // Memory was handled previously, ComplexX87 and X87 should
997 // never occur as hi classes, and X87Up must be preceed by X87,
998 // which is passed in memory.
999 case Memory:
1000 case X87:
Daniel Dunbar59e5a0e2009-02-03 20:00:13 +00001001 case ComplexX87:
1002 assert(0 && "Invalid classification for hi word.");
Daniel Dunbar100f4022009-03-06 17:50:25 +00001003 break;
Daniel Dunbar59e5a0e2009-02-03 20:00:13 +00001004
1005 case NoClass: break;
1006 case Integer:
1007 ResType = llvm::StructType::get(ResType, llvm::Type::Int64Ty, NULL);
1008 ++neededInt;
1009 break;
Daniel Dunbar100f4022009-03-06 17:50:25 +00001010
1011 // X87Up generally doesn't occur here (long double is passed in
1012 // memory), except in situations involving unions.
1013 case X87Up:
1014 case SSE:
Daniel Dunbar59e5a0e2009-02-03 20:00:13 +00001015 ResType = llvm::StructType::get(ResType, llvm::Type::DoubleTy, NULL);
1016 ++neededSSE;
1017 break;
1018
1019 // AMD64-ABI 3.2.3p3: Rule 4. If the class is SSEUP, the
1020 // eightbyte is passed in the upper half of the last used SSE
1021 // register.
1022 case SSEUp:
1023 assert(Lo == SSE && "Unexpected SSEUp classification.");
1024 ResType = llvm::VectorType::get(llvm::Type::DoubleTy, 2);
1025 break;
1026 }
1027
Daniel Dunbar644f4c32009-02-14 02:09:24 +00001028 return getCoerceResult(Ty, ResType, Context);
Daniel Dunbar59e5a0e2009-02-03 20:00:13 +00001029}
1030
1031void X86_64ABIInfo::computeInfo(CGFunctionInfo &FI, ASTContext &Context) const {
1032 FI.getReturnInfo() = classifyReturnType(FI.getReturnType(), Context);
1033
1034 // Keep track of the number of assigned registers.
1035 unsigned freeIntRegs = 6, freeSSERegs = 8;
1036
1037 // AMD64-ABI 3.2.3p3: Once arguments are classified, the registers
1038 // get assigned (in left-to-right order) for passing as follows...
1039 for (CGFunctionInfo::arg_iterator it = FI.arg_begin(), ie = FI.arg_end();
Daniel Dunbar3b4e9cd2009-02-10 17:06:09 +00001040 it != ie; ++it) {
1041 unsigned neededInt, neededSSE;
1042 it->info = classifyArgumentType(it->type, Context, neededInt, neededSSE);
1043
1044 // AMD64-ABI 3.2.3p3: If there are no registers available for any
1045 // eightbyte of an argument, the whole argument is passed on the
1046 // stack. If registers have already been assigned for some
1047 // eightbytes of such an argument, the assignments get reverted.
1048 if (freeIntRegs >= neededInt && freeSSERegs >= neededSSE) {
1049 freeIntRegs -= neededInt;
1050 freeSSERegs -= neededSSE;
1051 } else {
Daniel Dunbar245f5532009-02-22 08:17:51 +00001052 it->info = ABIArgInfo::getIndirect(0);
Daniel Dunbar3b4e9cd2009-02-10 17:06:09 +00001053 }
1054 }
Daniel Dunbard4edfe42009-01-15 18:18:40 +00001055}
1056
Daniel Dunbarbe9eb092009-02-12 09:04:14 +00001057static llvm::Value *EmitVAArgFromMemory(llvm::Value *VAListAddr,
1058 QualType Ty,
1059 CodeGenFunction &CGF) {
1060 llvm::Value *overflow_arg_area_p =
1061 CGF.Builder.CreateStructGEP(VAListAddr, 2, "overflow_arg_area_p");
1062 llvm::Value *overflow_arg_area =
1063 CGF.Builder.CreateLoad(overflow_arg_area_p, "overflow_arg_area");
1064
1065 // AMD64-ABI 3.5.7p5: Step 7. Align l->overflow_arg_area upwards to a 16
1066 // byte boundary if alignment needed by type exceeds 8 byte boundary.
Daniel Dunbarc5bcee42009-02-16 23:38:56 +00001067 uint64_t Align = CGF.getContext().getTypeAlign(Ty) / 8;
Daniel Dunbarbe9eb092009-02-12 09:04:14 +00001068 if (Align > 8) {
Daniel Dunbarc5bcee42009-02-16 23:38:56 +00001069 // Note that we follow the ABI & gcc here, even though the type
1070 // could in theory have an alignment greater than 16. This case
1071 // shouldn't ever matter in practice.
Daniel Dunbarbe9eb092009-02-12 09:04:14 +00001072
Daniel Dunbarc5bcee42009-02-16 23:38:56 +00001073 // overflow_arg_area = (overflow_arg_area + 15) & ~15;
1074 llvm::Value *Offset = llvm::ConstantInt::get(llvm::Type::Int32Ty, 15);
1075 overflow_arg_area = CGF.Builder.CreateGEP(overflow_arg_area, Offset);
1076 llvm::Value *AsInt = CGF.Builder.CreatePtrToInt(overflow_arg_area,
1077 llvm::Type::Int64Ty);
1078 llvm::Value *Mask = llvm::ConstantInt::get(llvm::Type::Int64Ty, ~15LL);
1079 overflow_arg_area =
1080 CGF.Builder.CreateIntToPtr(CGF.Builder.CreateAnd(AsInt, Mask),
1081 overflow_arg_area->getType(),
1082 "overflow_arg_area.align");
Daniel Dunbarbe9eb092009-02-12 09:04:14 +00001083 }
1084
1085 // AMD64-ABI 3.5.7p5: Step 8. Fetch type from l->overflow_arg_area.
1086 const llvm::Type *LTy = CGF.ConvertTypeForMem(Ty);
1087 llvm::Value *Res =
1088 CGF.Builder.CreateBitCast(overflow_arg_area,
1089 llvm::PointerType::getUnqual(LTy));
1090
1091 // AMD64-ABI 3.5.7p5: Step 9. Set l->overflow_arg_area to:
1092 // l->overflow_arg_area + sizeof(type).
1093 // AMD64-ABI 3.5.7p5: Step 10. Align l->overflow_arg_area upwards to
1094 // an 8 byte boundary.
1095
1096 uint64_t SizeInBytes = (CGF.getContext().getTypeSize(Ty) + 7) / 8;
1097 llvm::Value *Offset = llvm::ConstantInt::get(llvm::Type::Int32Ty,
1098 (SizeInBytes + 7) & ~7);
1099 overflow_arg_area = CGF.Builder.CreateGEP(overflow_arg_area, Offset,
1100 "overflow_arg_area.next");
1101 CGF.Builder.CreateStore(overflow_arg_area, overflow_arg_area_p);
1102
1103 // AMD64-ABI 3.5.7p5: Step 11. Return the fetched type.
1104 return Res;
1105}
1106
Daniel Dunbarb4094ea2009-02-10 20:44:09 +00001107llvm::Value *X86_64ABIInfo::EmitVAArg(llvm::Value *VAListAddr, QualType Ty,
1108 CodeGenFunction &CGF) const {
Daniel Dunbarbe9eb092009-02-12 09:04:14 +00001109 // Assume that va_list type is correct; should be pointer to LLVM type:
1110 // struct {
1111 // i32 gp_offset;
1112 // i32 fp_offset;
1113 // i8* overflow_arg_area;
1114 // i8* reg_save_area;
1115 // };
1116 unsigned neededInt, neededSSE;
1117 ABIArgInfo AI = classifyArgumentType(Ty, CGF.getContext(),
1118 neededInt, neededSSE);
1119
1120 // AMD64-ABI 3.5.7p5: Step 1. Determine whether type may be passed
1121 // in the registers. If not go to step 7.
1122 if (!neededInt && !neededSSE)
1123 return EmitVAArgFromMemory(VAListAddr, Ty, CGF);
1124
1125 // AMD64-ABI 3.5.7p5: Step 2. Compute num_gp to hold the number of
1126 // general purpose registers needed to pass type and num_fp to hold
1127 // the number of floating point registers needed.
1128
1129 // AMD64-ABI 3.5.7p5: Step 3. Verify whether arguments fit into
1130 // registers. In the case: l->gp_offset > 48 - num_gp * 8 or
1131 // l->fp_offset > 304 - num_fp * 16 go to step 7.
1132 //
1133 // NOTE: 304 is a typo, there are (6 * 8 + 8 * 16) = 176 bytes of
1134 // register save space).
1135
1136 llvm::Value *InRegs = 0;
1137 llvm::Value *gp_offset_p = 0, *gp_offset = 0;
1138 llvm::Value *fp_offset_p = 0, *fp_offset = 0;
1139 if (neededInt) {
1140 gp_offset_p = CGF.Builder.CreateStructGEP(VAListAddr, 0, "gp_offset_p");
1141 gp_offset = CGF.Builder.CreateLoad(gp_offset_p, "gp_offset");
1142 InRegs =
1143 CGF.Builder.CreateICmpULE(gp_offset,
1144 llvm::ConstantInt::get(llvm::Type::Int32Ty,
1145 48 - neededInt * 8),
1146 "fits_in_gp");
1147 }
1148
1149 if (neededSSE) {
1150 fp_offset_p = CGF.Builder.CreateStructGEP(VAListAddr, 1, "fp_offset_p");
1151 fp_offset = CGF.Builder.CreateLoad(fp_offset_p, "fp_offset");
1152 llvm::Value *FitsInFP =
1153 CGF.Builder.CreateICmpULE(fp_offset,
1154 llvm::ConstantInt::get(llvm::Type::Int32Ty,
Daniel Dunbar90dafa12009-02-18 22:19:44 +00001155 176 - neededSSE * 16),
Daniel Dunbarbe9eb092009-02-12 09:04:14 +00001156 "fits_in_fp");
Daniel Dunbarf2313462009-02-18 22:05:01 +00001157 InRegs = InRegs ? CGF.Builder.CreateAnd(InRegs, FitsInFP) : FitsInFP;
Daniel Dunbarbe9eb092009-02-12 09:04:14 +00001158 }
1159
1160 llvm::BasicBlock *InRegBlock = CGF.createBasicBlock("vaarg.in_reg");
1161 llvm::BasicBlock *InMemBlock = CGF.createBasicBlock("vaarg.in_mem");
1162 llvm::BasicBlock *ContBlock = CGF.createBasicBlock("vaarg.end");
1163 CGF.Builder.CreateCondBr(InRegs, InRegBlock, InMemBlock);
1164
1165 // Emit code to load the value if it was passed in registers.
1166
1167 CGF.EmitBlock(InRegBlock);
1168
1169 // AMD64-ABI 3.5.7p5: Step 4. Fetch type from l->reg_save_area with
1170 // an offset of l->gp_offset and/or l->fp_offset. This may require
1171 // copying to a temporary location in case the parameter is passed
1172 // in different register classes or requires an alignment greater
1173 // than 8 for general purpose registers and 16 for XMM registers.
Daniel Dunbar3e030b42009-02-18 03:44:19 +00001174 //
1175 // FIXME: This really results in shameful code when we end up
1176 // needing to collect arguments from different places; often what
1177 // should result in a simple assembling of a structure from
1178 // scattered addresses has many more loads than necessary. Can we
1179 // clean this up?
Daniel Dunbarbe9eb092009-02-12 09:04:14 +00001180 const llvm::Type *LTy = CGF.ConvertTypeForMem(Ty);
1181 llvm::Value *RegAddr =
1182 CGF.Builder.CreateLoad(CGF.Builder.CreateStructGEP(VAListAddr, 3),
1183 "reg_save_area");
1184 if (neededInt && neededSSE) {
Daniel Dunbar55e5d892009-02-13 17:46:31 +00001185 // FIXME: Cleanup.
1186 assert(AI.isCoerce() && "Unexpected ABI info for mixed regs");
1187 const llvm::StructType *ST = cast<llvm::StructType>(AI.getCoerceToType());
1188 llvm::Value *Tmp = CGF.CreateTempAlloca(ST);
1189 assert(ST->getNumElements() == 2 && "Unexpected ABI info for mixed regs");
1190 const llvm::Type *TyLo = ST->getElementType(0);
1191 const llvm::Type *TyHi = ST->getElementType(1);
1192 assert((TyLo->isFloatingPoint() ^ TyHi->isFloatingPoint()) &&
1193 "Unexpected ABI info for mixed regs");
1194 const llvm::Type *PTyLo = llvm::PointerType::getUnqual(TyLo);
1195 const llvm::Type *PTyHi = llvm::PointerType::getUnqual(TyHi);
1196 llvm::Value *GPAddr = CGF.Builder.CreateGEP(RegAddr, gp_offset);
1197 llvm::Value *FPAddr = CGF.Builder.CreateGEP(RegAddr, fp_offset);
1198 llvm::Value *RegLoAddr = TyLo->isFloatingPoint() ? FPAddr : GPAddr;
1199 llvm::Value *RegHiAddr = TyLo->isFloatingPoint() ? GPAddr : FPAddr;
1200 llvm::Value *V =
1201 CGF.Builder.CreateLoad(CGF.Builder.CreateBitCast(RegLoAddr, PTyLo));
1202 CGF.Builder.CreateStore(V, CGF.Builder.CreateStructGEP(Tmp, 0));
1203 V = CGF.Builder.CreateLoad(CGF.Builder.CreateBitCast(RegHiAddr, PTyHi));
1204 CGF.Builder.CreateStore(V, CGF.Builder.CreateStructGEP(Tmp, 1));
1205
1206 RegAddr = CGF.Builder.CreateBitCast(Tmp, llvm::PointerType::getUnqual(LTy));
Daniel Dunbarbe9eb092009-02-12 09:04:14 +00001207 } else if (neededInt) {
1208 RegAddr = CGF.Builder.CreateGEP(RegAddr, gp_offset);
1209 RegAddr = CGF.Builder.CreateBitCast(RegAddr,
1210 llvm::PointerType::getUnqual(LTy));
1211 } else {
Daniel Dunbar3e030b42009-02-18 03:44:19 +00001212 if (neededSSE == 1) {
1213 RegAddr = CGF.Builder.CreateGEP(RegAddr, fp_offset);
1214 RegAddr = CGF.Builder.CreateBitCast(RegAddr,
1215 llvm::PointerType::getUnqual(LTy));
1216 } else {
1217 assert(neededSSE == 2 && "Invalid number of needed registers!");
1218 // SSE registers are spaced 16 bytes apart in the register save
1219 // area, we need to collect the two eightbytes together.
1220 llvm::Value *RegAddrLo = CGF.Builder.CreateGEP(RegAddr, fp_offset);
1221 llvm::Value *RegAddrHi =
1222 CGF.Builder.CreateGEP(RegAddrLo,
1223 llvm::ConstantInt::get(llvm::Type::Int32Ty, 16));
1224 const llvm::Type *DblPtrTy =
1225 llvm::PointerType::getUnqual(llvm::Type::DoubleTy);
1226 const llvm::StructType *ST = llvm::StructType::get(llvm::Type::DoubleTy,
1227 llvm::Type::DoubleTy,
1228 NULL);
1229 llvm::Value *V, *Tmp = CGF.CreateTempAlloca(ST);
1230 V = CGF.Builder.CreateLoad(CGF.Builder.CreateBitCast(RegAddrLo,
1231 DblPtrTy));
1232 CGF.Builder.CreateStore(V, CGF.Builder.CreateStructGEP(Tmp, 0));
1233 V = CGF.Builder.CreateLoad(CGF.Builder.CreateBitCast(RegAddrHi,
1234 DblPtrTy));
1235 CGF.Builder.CreateStore(V, CGF.Builder.CreateStructGEP(Tmp, 1));
1236 RegAddr = CGF.Builder.CreateBitCast(Tmp,
1237 llvm::PointerType::getUnqual(LTy));
1238 }
Daniel Dunbarbe9eb092009-02-12 09:04:14 +00001239 }
1240
1241 // AMD64-ABI 3.5.7p5: Step 5. Set:
1242 // l->gp_offset = l->gp_offset + num_gp * 8
1243 // l->fp_offset = l->fp_offset + num_fp * 16.
1244 if (neededInt) {
1245 llvm::Value *Offset = llvm::ConstantInt::get(llvm::Type::Int32Ty,
1246 neededInt * 8);
1247 CGF.Builder.CreateStore(CGF.Builder.CreateAdd(gp_offset, Offset),
1248 gp_offset_p);
1249 }
1250 if (neededSSE) {
1251 llvm::Value *Offset = llvm::ConstantInt::get(llvm::Type::Int32Ty,
1252 neededSSE * 16);
1253 CGF.Builder.CreateStore(CGF.Builder.CreateAdd(fp_offset, Offset),
1254 fp_offset_p);
1255 }
1256 CGF.EmitBranch(ContBlock);
1257
1258 // Emit code to load the value if it was passed in memory.
1259
1260 CGF.EmitBlock(InMemBlock);
1261 llvm::Value *MemAddr = EmitVAArgFromMemory(VAListAddr, Ty, CGF);
1262
1263 // Return the appropriate result.
1264
1265 CGF.EmitBlock(ContBlock);
1266 llvm::PHINode *ResAddr = CGF.Builder.CreatePHI(RegAddr->getType(),
1267 "vaarg.addr");
1268 ResAddr->reserveOperandSpace(2);
1269 ResAddr->addIncoming(RegAddr, InRegBlock);
1270 ResAddr->addIncoming(MemAddr, InMemBlock);
1271
1272 return ResAddr;
Daniel Dunbarb4094ea2009-02-10 20:44:09 +00001273}
1274
Sanjiv Gupta70aa5f92009-04-21 06:01:16 +00001275// ABI Info for PIC16
1276class PIC16ABIInfo : public ABIInfo {
1277 ABIArgInfo classifyReturnType(QualType RetTy,
1278 ASTContext &Context) const;
1279
1280 ABIArgInfo classifyArgumentType(QualType RetTy,
1281 ASTContext &Context) const;
1282
1283 virtual void computeInfo(CGFunctionInfo &FI, ASTContext &Context) const {
1284 FI.getReturnInfo() = classifyReturnType(FI.getReturnType(), Context);
1285 for (CGFunctionInfo::arg_iterator it = FI.arg_begin(), ie = FI.arg_end();
1286 it != ie; ++it)
1287 it->info = classifyArgumentType(it->type, Context);
1288 }
1289
1290 virtual llvm::Value *EmitVAArg(llvm::Value *VAListAddr, QualType Ty,
1291 CodeGenFunction &CGF) const;
1292
1293};
1294
1295ABIArgInfo PIC16ABIInfo::classifyReturnType(QualType RetTy,
1296 ASTContext &Context) const {
1297 if (RetTy->isVoidType()) {
1298 return ABIArgInfo::getIgnore();
1299 } else {
1300 return ABIArgInfo::getDirect();
1301 }
1302}
1303
1304ABIArgInfo PIC16ABIInfo::classifyArgumentType(QualType Ty,
1305 ASTContext &Context) const {
1306 return ABIArgInfo::getDirect();
1307}
1308
1309llvm::Value *PIC16ABIInfo::EmitVAArg(llvm::Value *VAListAddr, QualType Ty,
1310 CodeGenFunction &CGF) const {
1311 return 0;
1312}
1313
Eli Friedmana027ea92009-03-29 00:15:25 +00001314class ARMABIInfo : public ABIInfo {
1315 ABIArgInfo classifyReturnType(QualType RetTy,
1316 ASTContext &Context) const;
1317
1318 ABIArgInfo classifyArgumentType(QualType RetTy,
1319 ASTContext &Context) const;
1320
1321 virtual void computeInfo(CGFunctionInfo &FI, ASTContext &Context) const;
1322
1323 virtual llvm::Value *EmitVAArg(llvm::Value *VAListAddr, QualType Ty,
1324 CodeGenFunction &CGF) const;
1325};
1326
1327void ARMABIInfo::computeInfo(CGFunctionInfo &FI, ASTContext &Context) const {
1328 FI.getReturnInfo() = classifyReturnType(FI.getReturnType(), Context);
1329 for (CGFunctionInfo::arg_iterator it = FI.arg_begin(), ie = FI.arg_end();
1330 it != ie; ++it) {
1331 it->info = classifyArgumentType(it->type, Context);
1332 }
1333}
1334
1335ABIArgInfo ARMABIInfo::classifyArgumentType(QualType Ty,
1336 ASTContext &Context) const {
1337 if (!CodeGenFunction::hasAggregateLLVMType(Ty)) {
1338 return ABIArgInfo::getDirect();
1339 }
1340 // FIXME: This is kind of nasty... but there isn't much choice
1341 // because the ARM backend doesn't support byval.
1342 // FIXME: This doesn't handle alignment > 64 bits.
1343 const llvm::Type* ElemTy;
1344 unsigned SizeRegs;
1345 if (Context.getTypeAlign(Ty) > 32) {
1346 ElemTy = llvm::Type::Int64Ty;
1347 SizeRegs = (Context.getTypeSize(Ty) + 63) / 64;
1348 } else {
1349 ElemTy = llvm::Type::Int32Ty;
1350 SizeRegs = (Context.getTypeSize(Ty) + 31) / 32;
1351 }
1352 std::vector<const llvm::Type*> LLVMFields;
1353 LLVMFields.push_back(llvm::ArrayType::get(ElemTy, SizeRegs));
1354 const llvm::Type* STy = llvm::StructType::get(LLVMFields, true);
1355 return ABIArgInfo::getCoerce(STy);
1356}
1357
1358ABIArgInfo ARMABIInfo::classifyReturnType(QualType RetTy,
1359 ASTContext &Context) const {
1360 if (RetTy->isVoidType()) {
1361 return ABIArgInfo::getIgnore();
1362 } else if (CodeGenFunction::hasAggregateLLVMType(RetTy)) {
1363 // Aggregates <= 4 bytes are returned in r0; other aggregates
1364 // are returned indirectly.
1365 uint64_t Size = Context.getTypeSize(RetTy);
1366 if (Size <= 32)
1367 return ABIArgInfo::getCoerce(llvm::Type::Int32Ty);
1368 return ABIArgInfo::getIndirect(0);
1369 } else {
1370 return ABIArgInfo::getDirect();
1371 }
1372}
1373
1374llvm::Value *ARMABIInfo::EmitVAArg(llvm::Value *VAListAddr, QualType Ty,
1375 CodeGenFunction &CGF) const {
1376 // FIXME: Need to handle alignment
1377 const llvm::Type *BP = llvm::PointerType::getUnqual(llvm::Type::Int8Ty);
1378 const llvm::Type *BPP = llvm::PointerType::getUnqual(BP);
1379
1380 CGBuilderTy &Builder = CGF.Builder;
1381 llvm::Value *VAListAddrAsBPP = Builder.CreateBitCast(VAListAddr, BPP,
1382 "ap");
1383 llvm::Value *Addr = Builder.CreateLoad(VAListAddrAsBPP, "ap.cur");
1384 llvm::Type *PTy =
1385 llvm::PointerType::getUnqual(CGF.ConvertType(Ty));
1386 llvm::Value *AddrTyped = Builder.CreateBitCast(Addr, PTy);
1387
1388 uint64_t Offset =
1389 llvm::RoundUpToAlignment(CGF.getContext().getTypeSize(Ty) / 8, 4);
1390 llvm::Value *NextAddr =
1391 Builder.CreateGEP(Addr,
1392 llvm::ConstantInt::get(llvm::Type::Int32Ty, Offset),
1393 "ap.next");
1394 Builder.CreateStore(NextAddr, VAListAddrAsBPP);
1395
1396 return AddrTyped;
1397}
1398
Daniel Dunbar6b1da0e2008-10-13 17:02:26 +00001399ABIArgInfo DefaultABIInfo::classifyReturnType(QualType RetTy,
Daniel Dunbarb4094ea2009-02-10 20:44:09 +00001400 ASTContext &Context) const {
Daniel Dunbar0bcc5212009-02-03 06:30:17 +00001401 if (RetTy->isVoidType()) {
1402 return ABIArgInfo::getIgnore();
1403 } else if (CodeGenFunction::hasAggregateLLVMType(RetTy)) {
Daniel Dunbar11e383a2009-02-05 08:00:50 +00001404 return ABIArgInfo::getIndirect(0);
Daniel Dunbar0bcc5212009-02-03 06:30:17 +00001405 } else {
1406 return ABIArgInfo::getDirect();
1407 }
Daniel Dunbar6b1da0e2008-10-13 17:02:26 +00001408}
1409
1410ABIArgInfo DefaultABIInfo::classifyArgumentType(QualType Ty,
Daniel Dunbarb4094ea2009-02-10 20:44:09 +00001411 ASTContext &Context) const {
Daniel Dunbar0bcc5212009-02-03 06:30:17 +00001412 if (CodeGenFunction::hasAggregateLLVMType(Ty)) {
Daniel Dunbar11e383a2009-02-05 08:00:50 +00001413 return ABIArgInfo::getIndirect(0);
Daniel Dunbar0bcc5212009-02-03 06:30:17 +00001414 } else {
1415 return ABIArgInfo::getDirect();
1416 }
Daniel Dunbar6b1da0e2008-10-13 17:02:26 +00001417}
1418
Daniel Dunbarb4094ea2009-02-10 20:44:09 +00001419llvm::Value *DefaultABIInfo::EmitVAArg(llvm::Value *VAListAddr, QualType Ty,
1420 CodeGenFunction &CGF) const {
1421 return 0;
1422}
1423
Daniel Dunbar6b1da0e2008-10-13 17:02:26 +00001424const ABIInfo &CodeGenTypes::getABIInfo() const {
1425 if (TheABIInfo)
1426 return *TheABIInfo;
1427
1428 // For now we just cache this in the CodeGenTypes and don't bother
1429 // to free it.
1430 const char *TargetPrefix = getContext().Target.getTargetPrefix();
1431 if (strcmp(TargetPrefix, "x86") == 0) {
Eli Friedman9fd58e82009-03-23 23:26:24 +00001432 bool IsDarwin = strstr(getContext().Target.getTargetTriple(), "darwin");
Daniel Dunbard4edfe42009-01-15 18:18:40 +00001433 switch (getContext().Target.getPointerWidth(0)) {
1434 case 32:
Douglas Gregor6ab35242009-04-09 21:40:53 +00001435 return *(TheABIInfo = new X86_32ABIInfo(Context, IsDarwin));
Daniel Dunbard4edfe42009-01-15 18:18:40 +00001436 case 64:
Daniel Dunbar11a76ed2009-01-30 18:47:53 +00001437 return *(TheABIInfo = new X86_64ABIInfo());
Daniel Dunbard4edfe42009-01-15 18:18:40 +00001438 }
Eli Friedmana027ea92009-03-29 00:15:25 +00001439 } else if (strcmp(TargetPrefix, "arm") == 0) {
1440 // FIXME: Support for OABI?
1441 return *(TheABIInfo = new ARMABIInfo());
Sanjiv Gupta70aa5f92009-04-21 06:01:16 +00001442 } else if (strcmp(TargetPrefix, "pic16") == 0) {
1443 return *(TheABIInfo = new PIC16ABIInfo());
Daniel Dunbar6b1da0e2008-10-13 17:02:26 +00001444 }
1445
1446 return *(TheABIInfo = new DefaultABIInfo);
1447}
1448
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001449/***/
1450
Daniel Dunbar88c2fa92009-02-03 05:31:23 +00001451CGFunctionInfo::CGFunctionInfo(QualType ResTy,
1452 const llvm::SmallVector<QualType, 16> &ArgTys) {
1453 NumArgs = ArgTys.size();
1454 Args = new ArgInfo[1 + NumArgs];
1455 Args[0].type = ResTy;
1456 for (unsigned i = 0; i < NumArgs; ++i)
1457 Args[1 + i].type = ArgTys[i];
1458}
1459
1460/***/
1461
Daniel Dunbar56273772008-09-17 00:51:38 +00001462void CodeGenTypes::GetExpandedTypes(QualType Ty,
1463 std::vector<const llvm::Type*> &ArgTys) {
1464 const RecordType *RT = Ty->getAsStructureType();
1465 assert(RT && "Can only expand structure types.");
1466 const RecordDecl *RD = RT->getDecl();
1467 assert(!RD->hasFlexibleArrayMember() &&
1468 "Cannot expand structure with flexible array.");
1469
Douglas Gregor6ab35242009-04-09 21:40:53 +00001470 for (RecordDecl::field_iterator i = RD->field_begin(Context),
1471 e = RD->field_end(Context); i != e; ++i) {
Daniel Dunbar56273772008-09-17 00:51:38 +00001472 const FieldDecl *FD = *i;
1473 assert(!FD->isBitField() &&
1474 "Cannot expand structure with bit-field members.");
1475
1476 QualType FT = FD->getType();
1477 if (CodeGenFunction::hasAggregateLLVMType(FT)) {
1478 GetExpandedTypes(FT, ArgTys);
1479 } else {
1480 ArgTys.push_back(ConvertType(FT));
1481 }
1482 }
1483}
1484
1485llvm::Function::arg_iterator
1486CodeGenFunction::ExpandTypeFromArgs(QualType Ty, LValue LV,
1487 llvm::Function::arg_iterator AI) {
1488 const RecordType *RT = Ty->getAsStructureType();
1489 assert(RT && "Can only expand structure types.");
1490
1491 RecordDecl *RD = RT->getDecl();
1492 assert(LV.isSimple() &&
1493 "Unexpected non-simple lvalue during struct expansion.");
1494 llvm::Value *Addr = LV.getAddress();
Douglas Gregor6ab35242009-04-09 21:40:53 +00001495 for (RecordDecl::field_iterator i = RD->field_begin(getContext()),
1496 e = RD->field_end(getContext()); i != e; ++i) {
Daniel Dunbar56273772008-09-17 00:51:38 +00001497 FieldDecl *FD = *i;
1498 QualType FT = FD->getType();
1499
1500 // FIXME: What are the right qualifiers here?
1501 LValue LV = EmitLValueForField(Addr, FD, false, 0);
1502 if (CodeGenFunction::hasAggregateLLVMType(FT)) {
1503 AI = ExpandTypeFromArgs(FT, LV, AI);
1504 } else {
1505 EmitStoreThroughLValue(RValue::get(AI), LV, FT);
1506 ++AI;
1507 }
1508 }
1509
1510 return AI;
1511}
1512
1513void
1514CodeGenFunction::ExpandTypeToArgs(QualType Ty, RValue RV,
1515 llvm::SmallVector<llvm::Value*, 16> &Args) {
1516 const RecordType *RT = Ty->getAsStructureType();
1517 assert(RT && "Can only expand structure types.");
1518
1519 RecordDecl *RD = RT->getDecl();
1520 assert(RV.isAggregate() && "Unexpected rvalue during struct expansion");
1521 llvm::Value *Addr = RV.getAggregateAddr();
Douglas Gregor6ab35242009-04-09 21:40:53 +00001522 for (RecordDecl::field_iterator i = RD->field_begin(getContext()),
1523 e = RD->field_end(getContext()); i != e; ++i) {
Daniel Dunbar56273772008-09-17 00:51:38 +00001524 FieldDecl *FD = *i;
1525 QualType FT = FD->getType();
1526
1527 // FIXME: What are the right qualifiers here?
1528 LValue LV = EmitLValueForField(Addr, FD, false, 0);
1529 if (CodeGenFunction::hasAggregateLLVMType(FT)) {
1530 ExpandTypeToArgs(FT, RValue::getAggregate(LV.getAddress()), Args);
1531 } else {
1532 RValue RV = EmitLoadOfLValue(LV, FT);
1533 assert(RV.isScalar() &&
1534 "Unexpected non-scalar rvalue during struct expansion.");
1535 Args.push_back(RV.getScalarVal());
1536 }
1537 }
1538}
1539
Daniel Dunbar275e10d2009-02-02 19:06:38 +00001540/// CreateCoercedLoad - Create a load from \arg SrcPtr interpreted as
1541/// a pointer to an object of type \arg Ty.
1542///
1543/// This safely handles the case when the src type is smaller than the
1544/// destination type; in this situation the values of bits which not
1545/// present in the src are undefined.
1546static llvm::Value *CreateCoercedLoad(llvm::Value *SrcPtr,
1547 const llvm::Type *Ty,
1548 CodeGenFunction &CGF) {
1549 const llvm::Type *SrcTy =
1550 cast<llvm::PointerType>(SrcPtr->getType())->getElementType();
1551 uint64_t SrcSize = CGF.CGM.getTargetData().getTypePaddedSize(SrcTy);
1552 uint64_t DstSize = CGF.CGM.getTargetData().getTypePaddedSize(Ty);
1553
Daniel Dunbarb225be42009-02-03 05:59:18 +00001554 // If load is legal, just bitcast the src pointer.
Daniel Dunbar275e10d2009-02-02 19:06:38 +00001555 if (SrcSize == DstSize) {
1556 llvm::Value *Casted =
1557 CGF.Builder.CreateBitCast(SrcPtr, llvm::PointerType::getUnqual(Ty));
Daniel Dunbar386621f2009-02-07 02:46:03 +00001558 llvm::LoadInst *Load = CGF.Builder.CreateLoad(Casted);
1559 // FIXME: Use better alignment / avoid requiring aligned load.
1560 Load->setAlignment(1);
1561 return Load;
Daniel Dunbar275e10d2009-02-02 19:06:38 +00001562 } else {
1563 assert(SrcSize < DstSize && "Coercion is losing source bits!");
1564
1565 // Otherwise do coercion through memory. This is stupid, but
1566 // simple.
1567 llvm::Value *Tmp = CGF.CreateTempAlloca(Ty);
1568 llvm::Value *Casted =
1569 CGF.Builder.CreateBitCast(Tmp, llvm::PointerType::getUnqual(SrcTy));
Daniel Dunbar386621f2009-02-07 02:46:03 +00001570 llvm::StoreInst *Store =
1571 CGF.Builder.CreateStore(CGF.Builder.CreateLoad(SrcPtr), Casted);
1572 // FIXME: Use better alignment / avoid requiring aligned store.
1573 Store->setAlignment(1);
Daniel Dunbar275e10d2009-02-02 19:06:38 +00001574 return CGF.Builder.CreateLoad(Tmp);
1575 }
1576}
1577
1578/// CreateCoercedStore - Create a store to \arg DstPtr from \arg Src,
1579/// where the source and destination may have different types.
1580///
1581/// This safely handles the case when the src type is larger than the
1582/// destination type; the upper bits of the src will be lost.
1583static void CreateCoercedStore(llvm::Value *Src,
1584 llvm::Value *DstPtr,
1585 CodeGenFunction &CGF) {
1586 const llvm::Type *SrcTy = Src->getType();
1587 const llvm::Type *DstTy =
1588 cast<llvm::PointerType>(DstPtr->getType())->getElementType();
1589
1590 uint64_t SrcSize = CGF.CGM.getTargetData().getTypePaddedSize(SrcTy);
1591 uint64_t DstSize = CGF.CGM.getTargetData().getTypePaddedSize(DstTy);
1592
Daniel Dunbar88c2fa92009-02-03 05:31:23 +00001593 // If store is legal, just bitcast the src pointer.
Daniel Dunbar275e10d2009-02-02 19:06:38 +00001594 if (SrcSize == DstSize) {
1595 llvm::Value *Casted =
1596 CGF.Builder.CreateBitCast(DstPtr, llvm::PointerType::getUnqual(SrcTy));
Daniel Dunbar386621f2009-02-07 02:46:03 +00001597 // FIXME: Use better alignment / avoid requiring aligned store.
1598 CGF.Builder.CreateStore(Src, Casted)->setAlignment(1);
Daniel Dunbar275e10d2009-02-02 19:06:38 +00001599 } else {
1600 assert(SrcSize > DstSize && "Coercion is missing bits!");
1601
1602 // Otherwise do coercion through memory. This is stupid, but
1603 // simple.
1604 llvm::Value *Tmp = CGF.CreateTempAlloca(SrcTy);
1605 CGF.Builder.CreateStore(Src, Tmp);
1606 llvm::Value *Casted =
1607 CGF.Builder.CreateBitCast(Tmp, llvm::PointerType::getUnqual(DstTy));
Daniel Dunbar386621f2009-02-07 02:46:03 +00001608 llvm::LoadInst *Load = CGF.Builder.CreateLoad(Casted);
1609 // FIXME: Use better alignment / avoid requiring aligned load.
1610 Load->setAlignment(1);
1611 CGF.Builder.CreateStore(Load, DstPtr);
Daniel Dunbar275e10d2009-02-02 19:06:38 +00001612 }
1613}
1614
Daniel Dunbar56273772008-09-17 00:51:38 +00001615/***/
1616
Daniel Dunbar88b53962009-02-02 22:03:45 +00001617bool CodeGenModule::ReturnTypeUsesSret(const CGFunctionInfo &FI) {
Daniel Dunbar11e383a2009-02-05 08:00:50 +00001618 return FI.getReturnInfo().isIndirect();
Daniel Dunbarbb36d332009-02-02 21:43:58 +00001619}
1620
Daniel Dunbar45c25ba2008-09-10 04:01:49 +00001621const llvm::FunctionType *
Daniel Dunbarbb36d332009-02-02 21:43:58 +00001622CodeGenTypes::GetFunctionType(const CGFunctionInfo &FI, bool IsVariadic) {
Daniel Dunbar45c25ba2008-09-10 04:01:49 +00001623 std::vector<const llvm::Type*> ArgTys;
1624
1625 const llvm::Type *ResultType = 0;
1626
Daniel Dunbara0a99e02009-02-02 23:43:58 +00001627 QualType RetTy = FI.getReturnType();
Daniel Dunbarb225be42009-02-03 05:59:18 +00001628 const ABIArgInfo &RetAI = FI.getReturnInfo();
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001629 switch (RetAI.getKind()) {
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001630 case ABIArgInfo::Expand:
1631 assert(0 && "Invalid ABI kind for return argument");
1632
Daniel Dunbar46327aa2009-02-03 06:17:37 +00001633 case ABIArgInfo::Direct:
1634 ResultType = ConvertType(RetTy);
1635 break;
1636
Daniel Dunbar11e383a2009-02-05 08:00:50 +00001637 case ABIArgInfo::Indirect: {
1638 assert(!RetAI.getIndirectAlign() && "Align unused on indirect return.");
Daniel Dunbar45c25ba2008-09-10 04:01:49 +00001639 ResultType = llvm::Type::VoidTy;
Daniel Dunbar62d5c1b2008-09-10 07:00:50 +00001640 const llvm::Type *STy = ConvertType(RetTy);
Daniel Dunbar45c25ba2008-09-10 04:01:49 +00001641 ArgTys.push_back(llvm::PointerType::get(STy, RetTy.getAddressSpace()));
1642 break;
1643 }
1644
Daniel Dunbar11434922009-01-26 21:26:08 +00001645 case ABIArgInfo::Ignore:
1646 ResultType = llvm::Type::VoidTy;
1647 break;
1648
Daniel Dunbar45c25ba2008-09-10 04:01:49 +00001649 case ABIArgInfo::Coerce:
Daniel Dunbar639ffe42008-09-10 07:04:09 +00001650 ResultType = RetAI.getCoerceToType();
Daniel Dunbar45c25ba2008-09-10 04:01:49 +00001651 break;
1652 }
1653
Daniel Dunbar88c2fa92009-02-03 05:31:23 +00001654 for (CGFunctionInfo::const_arg_iterator it = FI.arg_begin(),
1655 ie = FI.arg_end(); it != ie; ++it) {
1656 const ABIArgInfo &AI = it->info;
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001657
1658 switch (AI.getKind()) {
Daniel Dunbar11434922009-01-26 21:26:08 +00001659 case ABIArgInfo::Ignore:
1660 break;
1661
Daniel Dunbar56273772008-09-17 00:51:38 +00001662 case ABIArgInfo::Coerce:
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +00001663 ArgTys.push_back(AI.getCoerceToType());
1664 break;
1665
Daniel Dunbaradc8bdd2009-02-10 01:51:39 +00001666 case ABIArgInfo::Indirect: {
Daniel Dunbar11e383a2009-02-05 08:00:50 +00001667 // indirect arguments are always on the stack, which is addr space #0.
Daniel Dunbaradc8bdd2009-02-10 01:51:39 +00001668 const llvm::Type *LTy = ConvertTypeForMem(it->type);
1669 ArgTys.push_back(llvm::PointerType::getUnqual(LTy));
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001670 break;
Daniel Dunbaradc8bdd2009-02-10 01:51:39 +00001671 }
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001672
Daniel Dunbar46327aa2009-02-03 06:17:37 +00001673 case ABIArgInfo::Direct:
Daniel Dunbar1f745982009-02-05 09:16:39 +00001674 ArgTys.push_back(ConvertType(it->type));
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001675 break;
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001676
1677 case ABIArgInfo::Expand:
Daniel Dunbar88c2fa92009-02-03 05:31:23 +00001678 GetExpandedTypes(it->type, ArgTys);
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001679 break;
1680 }
Daniel Dunbar45c25ba2008-09-10 04:01:49 +00001681 }
1682
Daniel Dunbarbb36d332009-02-02 21:43:58 +00001683 return llvm::FunctionType::get(ResultType, ArgTys, IsVariadic);
Daniel Dunbar3913f182008-09-09 23:48:28 +00001684}
1685
Daniel Dunbara0a99e02009-02-02 23:43:58 +00001686void CodeGenModule::ConstructAttributeList(const CGFunctionInfo &FI,
Daniel Dunbar88b53962009-02-02 22:03:45 +00001687 const Decl *TargetDecl,
Devang Patel761d7f72008-09-25 21:02:23 +00001688 AttributeListType &PAL) {
Daniel Dunbar5323a4b2008-09-10 00:32:18 +00001689 unsigned FuncAttrs = 0;
Devang Patela2c69122008-09-26 22:53:57 +00001690 unsigned RetAttrs = 0;
Daniel Dunbar5323a4b2008-09-10 00:32:18 +00001691
Anton Korobeynikov1102f422009-04-04 00:49:24 +00001692 // FIXME: handle sseregparm someday...
Daniel Dunbar5323a4b2008-09-10 00:32:18 +00001693 if (TargetDecl) {
Daniel Dunbarb11fa0d2009-04-13 21:08:27 +00001694 if (TargetDecl->hasAttr<NoThrowAttr>())
Devang Patel761d7f72008-09-25 21:02:23 +00001695 FuncAttrs |= llvm::Attribute::NoUnwind;
Daniel Dunbarb11fa0d2009-04-13 21:08:27 +00001696 if (TargetDecl->hasAttr<NoReturnAttr>())
Devang Patel761d7f72008-09-25 21:02:23 +00001697 FuncAttrs |= llvm::Attribute::NoReturn;
Daniel Dunbarb11fa0d2009-04-13 21:08:27 +00001698 if (TargetDecl->hasAttr<ConstAttr>())
Anders Carlsson232eb7d2008-10-05 23:32:53 +00001699 FuncAttrs |= llvm::Attribute::ReadNone;
Daniel Dunbarb11fa0d2009-04-13 21:08:27 +00001700 else if (TargetDecl->hasAttr<PureAttr>())
Daniel Dunbar64c2e072009-04-10 22:14:52 +00001701 FuncAttrs |= llvm::Attribute::ReadOnly;
Daniel Dunbar5323a4b2008-09-10 00:32:18 +00001702 }
1703
Daniel Dunbara0a99e02009-02-02 23:43:58 +00001704 QualType RetTy = FI.getReturnType();
Daniel Dunbar5323a4b2008-09-10 00:32:18 +00001705 unsigned Index = 1;
Daniel Dunbarb225be42009-02-03 05:59:18 +00001706 const ABIArgInfo &RetAI = FI.getReturnInfo();
Daniel Dunbar45c25ba2008-09-10 04:01:49 +00001707 switch (RetAI.getKind()) {
Daniel Dunbar46327aa2009-02-03 06:17:37 +00001708 case ABIArgInfo::Direct:
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001709 if (RetTy->isPromotableIntegerType()) {
1710 if (RetTy->isSignedIntegerType()) {
Devang Patela2c69122008-09-26 22:53:57 +00001711 RetAttrs |= llvm::Attribute::SExt;
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001712 } else if (RetTy->isUnsignedIntegerType()) {
Devang Patela2c69122008-09-26 22:53:57 +00001713 RetAttrs |= llvm::Attribute::ZExt;
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001714 }
1715 }
1716 break;
1717
Daniel Dunbar11e383a2009-02-05 08:00:50 +00001718 case ABIArgInfo::Indirect:
Devang Patel761d7f72008-09-25 21:02:23 +00001719 PAL.push_back(llvm::AttributeWithIndex::get(Index,
Daniel Dunbar725ad312009-01-31 02:19:00 +00001720 llvm::Attribute::StructRet |
1721 llvm::Attribute::NoAlias));
Daniel Dunbar5323a4b2008-09-10 00:32:18 +00001722 ++Index;
Daniel Dunbar0ac86f02009-03-18 19:51:01 +00001723 // sret disables readnone and readonly
1724 FuncAttrs &= ~(llvm::Attribute::ReadOnly |
1725 llvm::Attribute::ReadNone);
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001726 break;
1727
Daniel Dunbar11434922009-01-26 21:26:08 +00001728 case ABIArgInfo::Ignore:
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001729 case ABIArgInfo::Coerce:
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001730 break;
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001731
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001732 case ABIArgInfo::Expand:
1733 assert(0 && "Invalid ABI kind for return argument");
Daniel Dunbar5323a4b2008-09-10 00:32:18 +00001734 }
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001735
Devang Patela2c69122008-09-26 22:53:57 +00001736 if (RetAttrs)
1737 PAL.push_back(llvm::AttributeWithIndex::get(0, RetAttrs));
Anton Korobeynikov1102f422009-04-04 00:49:24 +00001738
1739 // FIXME: we need to honour command line settings also...
1740 // FIXME: RegParm should be reduced in case of nested functions and/or global
1741 // register variable.
1742 signed RegParm = 0;
1743 if (TargetDecl)
1744 if (const RegparmAttr *RegParmAttr = TargetDecl->getAttr<RegparmAttr>())
1745 RegParm = RegParmAttr->getNumParams();
1746
1747 unsigned PointerWidth = getContext().Target.getPointerWidth(0);
Daniel Dunbar88c2fa92009-02-03 05:31:23 +00001748 for (CGFunctionInfo::const_arg_iterator it = FI.arg_begin(),
1749 ie = FI.arg_end(); it != ie; ++it) {
1750 QualType ParamType = it->type;
1751 const ABIArgInfo &AI = it->info;
Devang Patel761d7f72008-09-25 21:02:23 +00001752 unsigned Attributes = 0;
Anton Korobeynikov1102f422009-04-04 00:49:24 +00001753
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001754 switch (AI.getKind()) {
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +00001755 case ABIArgInfo::Coerce:
1756 break;
1757
Daniel Dunbar11e383a2009-02-05 08:00:50 +00001758 case ABIArgInfo::Indirect:
Devang Patel761d7f72008-09-25 21:02:23 +00001759 Attributes |= llvm::Attribute::ByVal;
Anton Korobeynikov1102f422009-04-04 00:49:24 +00001760 Attributes |=
Daniel Dunbar11e383a2009-02-05 08:00:50 +00001761 llvm::Attribute::constructAlignmentFromInt(AI.getIndirectAlign());
Daniel Dunbar0ac86f02009-03-18 19:51:01 +00001762 // byval disables readnone and readonly.
1763 FuncAttrs &= ~(llvm::Attribute::ReadOnly |
1764 llvm::Attribute::ReadNone);
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001765 break;
1766
Daniel Dunbar46327aa2009-02-03 06:17:37 +00001767 case ABIArgInfo::Direct:
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001768 if (ParamType->isPromotableIntegerType()) {
1769 if (ParamType->isSignedIntegerType()) {
Devang Patel761d7f72008-09-25 21:02:23 +00001770 Attributes |= llvm::Attribute::SExt;
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001771 } else if (ParamType->isUnsignedIntegerType()) {
Devang Patel761d7f72008-09-25 21:02:23 +00001772 Attributes |= llvm::Attribute::ZExt;
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001773 }
Daniel Dunbar5323a4b2008-09-10 00:32:18 +00001774 }
Anton Korobeynikov1102f422009-04-04 00:49:24 +00001775 if (RegParm > 0 &&
1776 (ParamType->isIntegerType() || ParamType->isPointerType())) {
1777 RegParm -=
1778 (Context.getTypeSize(ParamType) + PointerWidth - 1) / PointerWidth;
1779 if (RegParm >= 0)
1780 Attributes |= llvm::Attribute::InReg;
1781 }
1782 // FIXME: handle sseregparm someday...
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001783 break;
Anton Korobeynikov1102f422009-04-04 00:49:24 +00001784
Daniel Dunbar11434922009-01-26 21:26:08 +00001785 case ABIArgInfo::Ignore:
1786 // Skip increment, no matching LLVM parameter.
1787 continue;
1788
Daniel Dunbar56273772008-09-17 00:51:38 +00001789 case ABIArgInfo::Expand: {
1790 std::vector<const llvm::Type*> Tys;
1791 // FIXME: This is rather inefficient. Do we ever actually need
1792 // to do anything here? The result should be just reconstructed
1793 // on the other side, so extension should be a non-issue.
1794 getTypes().GetExpandedTypes(ParamType, Tys);
1795 Index += Tys.size();
1796 continue;
1797 }
Daniel Dunbar5323a4b2008-09-10 00:32:18 +00001798 }
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001799
Devang Patel761d7f72008-09-25 21:02:23 +00001800 if (Attributes)
1801 PAL.push_back(llvm::AttributeWithIndex::get(Index, Attributes));
Daniel Dunbar56273772008-09-17 00:51:38 +00001802 ++Index;
Daniel Dunbar5323a4b2008-09-10 00:32:18 +00001803 }
Devang Patela2c69122008-09-26 22:53:57 +00001804 if (FuncAttrs)
1805 PAL.push_back(llvm::AttributeWithIndex::get(~0, FuncAttrs));
Daniel Dunbar5323a4b2008-09-10 00:32:18 +00001806}
1807
Daniel Dunbar88b53962009-02-02 22:03:45 +00001808void CodeGenFunction::EmitFunctionProlog(const CGFunctionInfo &FI,
1809 llvm::Function *Fn,
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001810 const FunctionArgList &Args) {
Daniel Dunbar5251afa2009-02-03 06:02:10 +00001811 // FIXME: We no longer need the types from FunctionArgList; lift up
1812 // and simplify.
1813
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001814 // Emit allocs for param decls. Give the LLVM Argument nodes names.
1815 llvm::Function::arg_iterator AI = Fn->arg_begin();
1816
1817 // Name the struct return argument.
Daniel Dunbar88b53962009-02-02 22:03:45 +00001818 if (CGM.ReturnTypeUsesSret(FI)) {
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001819 AI->setName("agg.result");
1820 ++AI;
1821 }
Daniel Dunbarb225be42009-02-03 05:59:18 +00001822
Daniel Dunbar4b5f0a42009-02-04 21:17:21 +00001823 assert(FI.arg_size() == Args.size() &&
1824 "Mismatch between function signature & arguments.");
Daniel Dunbarb225be42009-02-03 05:59:18 +00001825 CGFunctionInfo::const_arg_iterator info_it = FI.arg_begin();
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001826 for (FunctionArgList::const_iterator i = Args.begin(), e = Args.end();
Daniel Dunbarb225be42009-02-03 05:59:18 +00001827 i != e; ++i, ++info_it) {
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001828 const VarDecl *Arg = i->first;
Daniel Dunbarb225be42009-02-03 05:59:18 +00001829 QualType Ty = info_it->type;
1830 const ABIArgInfo &ArgI = info_it->info;
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001831
1832 switch (ArgI.getKind()) {
Daniel Dunbar1f745982009-02-05 09:16:39 +00001833 case ABIArgInfo::Indirect: {
1834 llvm::Value* V = AI;
1835 if (hasAggregateLLVMType(Ty)) {
1836 // Do nothing, aggregates and complex variables are accessed by
1837 // reference.
1838 } else {
1839 // Load scalar value from indirect argument.
Daniel Dunbaradc8bdd2009-02-10 01:51:39 +00001840 V = EmitLoadOfScalar(V, false, Ty);
Daniel Dunbar1f745982009-02-05 09:16:39 +00001841 if (!getContext().typesAreCompatible(Ty, Arg->getType())) {
1842 // This must be a promotion, for something like
1843 // "void a(x) short x; {..."
1844 V = EmitScalarConversion(V, Ty, Arg->getType());
1845 }
1846 }
1847 EmitParmDecl(*Arg, V);
1848 break;
1849 }
1850
Daniel Dunbar46327aa2009-02-03 06:17:37 +00001851 case ABIArgInfo::Direct: {
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001852 assert(AI != Fn->arg_end() && "Argument mismatch!");
1853 llvm::Value* V = AI;
Daniel Dunbar2fbf2f52009-02-05 11:13:54 +00001854 if (hasAggregateLLVMType(Ty)) {
1855 // Create a temporary alloca to hold the argument; the rest of
1856 // codegen expects to access aggregates & complex values by
1857 // reference.
Daniel Dunbaradc8bdd2009-02-10 01:51:39 +00001858 V = CreateTempAlloca(ConvertTypeForMem(Ty));
Daniel Dunbar2fbf2f52009-02-05 11:13:54 +00001859 Builder.CreateStore(AI, V);
1860 } else {
1861 if (!getContext().typesAreCompatible(Ty, Arg->getType())) {
1862 // This must be a promotion, for something like
1863 // "void a(x) short x; {..."
1864 V = EmitScalarConversion(V, Ty, Arg->getType());
1865 }
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001866 }
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001867 EmitParmDecl(*Arg, V);
1868 break;
1869 }
Daniel Dunbar56273772008-09-17 00:51:38 +00001870
1871 case ABIArgInfo::Expand: {
Daniel Dunbarb225be42009-02-03 05:59:18 +00001872 // If this structure was expanded into multiple arguments then
Daniel Dunbar56273772008-09-17 00:51:38 +00001873 // we need to create a temporary and reconstruct it from the
1874 // arguments.
Chris Lattner39f34e92008-11-24 04:00:27 +00001875 std::string Name = Arg->getNameAsString();
Daniel Dunbaradc8bdd2009-02-10 01:51:39 +00001876 llvm::Value *Temp = CreateTempAlloca(ConvertTypeForMem(Ty),
Daniel Dunbar56273772008-09-17 00:51:38 +00001877 (Name + ".addr").c_str());
1878 // FIXME: What are the right qualifiers here?
1879 llvm::Function::arg_iterator End =
1880 ExpandTypeFromArgs(Ty, LValue::MakeAddr(Temp,0), AI);
1881 EmitParmDecl(*Arg, Temp);
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001882
Daniel Dunbar56273772008-09-17 00:51:38 +00001883 // Name the arguments used in expansion and increment AI.
1884 unsigned Index = 0;
1885 for (; AI != End; ++AI, ++Index)
1886 AI->setName(Name + "." + llvm::utostr(Index));
1887 continue;
1888 }
Daniel Dunbar11434922009-01-26 21:26:08 +00001889
1890 case ABIArgInfo::Ignore:
Daniel Dunbar8b979d92009-02-10 00:06:49 +00001891 // Initialize the local variable appropriately.
1892 if (hasAggregateLLVMType(Ty)) {
Daniel Dunbaradc8bdd2009-02-10 01:51:39 +00001893 EmitParmDecl(*Arg, CreateTempAlloca(ConvertTypeForMem(Ty)));
Daniel Dunbar8b979d92009-02-10 00:06:49 +00001894 } else {
1895 EmitParmDecl(*Arg, llvm::UndefValue::get(ConvertType(Arg->getType())));
1896 }
1897
Daniel Dunbar59e5a0e2009-02-03 20:00:13 +00001898 // Skip increment, no matching LLVM parameter.
1899 continue;
Daniel Dunbar11434922009-01-26 21:26:08 +00001900
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +00001901 case ABIArgInfo::Coerce: {
1902 assert(AI != Fn->arg_end() && "Argument mismatch!");
1903 // FIXME: This is very wasteful; EmitParmDecl is just going to
1904 // drop the result in a new alloca anyway, so we could just
1905 // store into that directly if we broke the abstraction down
1906 // more.
Daniel Dunbaradc8bdd2009-02-10 01:51:39 +00001907 llvm::Value *V = CreateTempAlloca(ConvertTypeForMem(Ty), "coerce");
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +00001908 CreateCoercedStore(AI, V, *this);
1909 // Match to what EmitParmDecl is expecting for this type.
Daniel Dunbar8b29a382009-02-04 07:22:24 +00001910 if (!CodeGenFunction::hasAggregateLLVMType(Ty)) {
Daniel Dunbaradc8bdd2009-02-10 01:51:39 +00001911 V = EmitLoadOfScalar(V, false, Ty);
Daniel Dunbar8b29a382009-02-04 07:22:24 +00001912 if (!getContext().typesAreCompatible(Ty, Arg->getType())) {
1913 // This must be a promotion, for something like
1914 // "void a(x) short x; {..."
1915 V = EmitScalarConversion(V, Ty, Arg->getType());
1916 }
1917 }
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +00001918 EmitParmDecl(*Arg, V);
1919 break;
1920 }
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001921 }
Daniel Dunbar56273772008-09-17 00:51:38 +00001922
1923 ++AI;
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001924 }
1925 assert(AI == Fn->arg_end() && "Argument mismatch!");
1926}
1927
Daniel Dunbar88b53962009-02-02 22:03:45 +00001928void CodeGenFunction::EmitFunctionEpilog(const CGFunctionInfo &FI,
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001929 llvm::Value *ReturnValue) {
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001930 llvm::Value *RV = 0;
1931
1932 // Functions with no result always return void.
1933 if (ReturnValue) {
Daniel Dunbar88b53962009-02-02 22:03:45 +00001934 QualType RetTy = FI.getReturnType();
Daniel Dunbarb225be42009-02-03 05:59:18 +00001935 const ABIArgInfo &RetAI = FI.getReturnInfo();
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001936
1937 switch (RetAI.getKind()) {
Daniel Dunbar11e383a2009-02-05 08:00:50 +00001938 case ABIArgInfo::Indirect:
Daniel Dunbar3aea8ca2008-12-18 04:52:14 +00001939 if (RetTy->isAnyComplexType()) {
Daniel Dunbar3aea8ca2008-12-18 04:52:14 +00001940 ComplexPairTy RT = LoadComplexFromAddr(ReturnValue, false);
1941 StoreComplexToAddr(RT, CurFn->arg_begin(), false);
1942 } else if (CodeGenFunction::hasAggregateLLVMType(RetTy)) {
1943 EmitAggregateCopy(CurFn->arg_begin(), ReturnValue, RetTy);
1944 } else {
Daniel Dunbaradc8bdd2009-02-10 01:51:39 +00001945 EmitStoreOfScalar(Builder.CreateLoad(ReturnValue), CurFn->arg_begin(),
1946 false);
Daniel Dunbar3aea8ca2008-12-18 04:52:14 +00001947 }
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001948 break;
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001949
Daniel Dunbar46327aa2009-02-03 06:17:37 +00001950 case ABIArgInfo::Direct:
Daniel Dunbar2fbf2f52009-02-05 11:13:54 +00001951 // The internal return value temp always will have
1952 // pointer-to-return-type type.
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001953 RV = Builder.CreateLoad(ReturnValue);
1954 break;
1955
Daniel Dunbar11434922009-01-26 21:26:08 +00001956 case ABIArgInfo::Ignore:
1957 break;
1958
Daniel Dunbaradc8bdd2009-02-10 01:51:39 +00001959 case ABIArgInfo::Coerce:
Daniel Dunbar54d1ccb2009-01-27 01:36:03 +00001960 RV = CreateCoercedLoad(ReturnValue, RetAI.getCoerceToType(), *this);
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001961 break;
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001962
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001963 case ABIArgInfo::Expand:
1964 assert(0 && "Invalid ABI kind for return argument");
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001965 }
1966 }
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001967
1968 if (RV) {
1969 Builder.CreateRet(RV);
1970 } else {
1971 Builder.CreateRetVoid();
1972 }
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001973}
1974
Anders Carlsson0139bb92009-04-08 20:47:54 +00001975RValue CodeGenFunction::EmitCallArg(const Expr *E, QualType ArgType) {
1976 return EmitAnyExprToTemp(E);
1977}
1978
Daniel Dunbar88b53962009-02-02 22:03:45 +00001979RValue CodeGenFunction::EmitCall(const CGFunctionInfo &CallInfo,
1980 llvm::Value *Callee,
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00001981 const CallArgList &CallArgs,
1982 const Decl *TargetDecl) {
Daniel Dunbar5251afa2009-02-03 06:02:10 +00001983 // FIXME: We no longer need the types from CallArgs; lift up and
1984 // simplify.
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001985 llvm::SmallVector<llvm::Value*, 16> Args;
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001986
1987 // Handle struct-return functions by passing a pointer to the
1988 // location that we would like to return into.
Daniel Dunbarbb36d332009-02-02 21:43:58 +00001989 QualType RetTy = CallInfo.getReturnType();
Daniel Dunbarb225be42009-02-03 05:59:18 +00001990 const ABIArgInfo &RetAI = CallInfo.getReturnInfo();
Daniel Dunbar2969a022009-02-05 09:24:53 +00001991 if (CGM.ReturnTypeUsesSret(CallInfo)) {
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001992 // Create a temporary alloca to hold the result of the call. :(
Daniel Dunbaradc8bdd2009-02-10 01:51:39 +00001993 Args.push_back(CreateTempAlloca(ConvertTypeForMem(RetTy)));
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001994 }
1995
Daniel Dunbar4b5f0a42009-02-04 21:17:21 +00001996 assert(CallInfo.arg_size() == CallArgs.size() &&
1997 "Mismatch between function signature & arguments.");
Daniel Dunbarb225be42009-02-03 05:59:18 +00001998 CGFunctionInfo::const_arg_iterator info_it = CallInfo.arg_begin();
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001999 for (CallArgList::const_iterator I = CallArgs.begin(), E = CallArgs.end();
Daniel Dunbarb225be42009-02-03 05:59:18 +00002000 I != E; ++I, ++info_it) {
2001 const ABIArgInfo &ArgInfo = info_it->info;
Daniel Dunbar17b708d2008-09-09 23:27:19 +00002002 RValue RV = I->first;
Daniel Dunbar56273772008-09-17 00:51:38 +00002003
2004 switch (ArgInfo.getKind()) {
Daniel Dunbar11e383a2009-02-05 08:00:50 +00002005 case ABIArgInfo::Indirect:
Daniel Dunbar1f745982009-02-05 09:16:39 +00002006 if (RV.isScalar() || RV.isComplex()) {
2007 // Make a temporary alloca to pass the argument.
Daniel Dunbaradc8bdd2009-02-10 01:51:39 +00002008 Args.push_back(CreateTempAlloca(ConvertTypeForMem(I->second)));
Daniel Dunbar1f745982009-02-05 09:16:39 +00002009 if (RV.isScalar())
Daniel Dunbaradc8bdd2009-02-10 01:51:39 +00002010 EmitStoreOfScalar(RV.getScalarVal(), Args.back(), false);
Daniel Dunbar1f745982009-02-05 09:16:39 +00002011 else
2012 StoreComplexToAddr(RV.getComplexVal(), Args.back(), false);
2013 } else {
2014 Args.push_back(RV.getAggregateAddr());
2015 }
2016 break;
2017
Daniel Dunbar46327aa2009-02-03 06:17:37 +00002018 case ABIArgInfo::Direct:
Daniel Dunbar56273772008-09-17 00:51:38 +00002019 if (RV.isScalar()) {
2020 Args.push_back(RV.getScalarVal());
2021 } else if (RV.isComplex()) {
Daniel Dunbar2fbf2f52009-02-05 11:13:54 +00002022 llvm::Value *Tmp = llvm::UndefValue::get(ConvertType(I->second));
2023 Tmp = Builder.CreateInsertValue(Tmp, RV.getComplexVal().first, 0);
2024 Tmp = Builder.CreateInsertValue(Tmp, RV.getComplexVal().second, 1);
2025 Args.push_back(Tmp);
Daniel Dunbar56273772008-09-17 00:51:38 +00002026 } else {
Daniel Dunbar2fbf2f52009-02-05 11:13:54 +00002027 Args.push_back(Builder.CreateLoad(RV.getAggregateAddr()));
Daniel Dunbar56273772008-09-17 00:51:38 +00002028 }
2029 break;
2030
Daniel Dunbar11434922009-01-26 21:26:08 +00002031 case ABIArgInfo::Ignore:
2032 break;
2033
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +00002034 case ABIArgInfo::Coerce: {
2035 // FIXME: Avoid the conversion through memory if possible.
2036 llvm::Value *SrcPtr;
2037 if (RV.isScalar()) {
Daniel Dunbar5a1be6e2009-02-03 23:04:57 +00002038 SrcPtr = CreateTempAlloca(ConvertTypeForMem(I->second), "coerce");
Daniel Dunbaradc8bdd2009-02-10 01:51:39 +00002039 EmitStoreOfScalar(RV.getScalarVal(), SrcPtr, false);
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +00002040 } else if (RV.isComplex()) {
Daniel Dunbaradc8bdd2009-02-10 01:51:39 +00002041 SrcPtr = CreateTempAlloca(ConvertTypeForMem(I->second), "coerce");
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +00002042 StoreComplexToAddr(RV.getComplexVal(), SrcPtr, false);
2043 } else
2044 SrcPtr = RV.getAggregateAddr();
2045 Args.push_back(CreateCoercedLoad(SrcPtr, ArgInfo.getCoerceToType(),
2046 *this));
2047 break;
2048 }
2049
Daniel Dunbar56273772008-09-17 00:51:38 +00002050 case ABIArgInfo::Expand:
2051 ExpandTypeToArgs(I->second, RV, Args);
2052 break;
Daniel Dunbar17b708d2008-09-09 23:27:19 +00002053 }
2054 }
Daniel Dunbar17b708d2008-09-09 23:27:19 +00002055
Daniel Dunbar9834ffb2009-02-23 17:26:39 +00002056 llvm::BasicBlock *InvokeDest = getInvokeDest();
Devang Patel761d7f72008-09-25 21:02:23 +00002057 CodeGen::AttributeListType AttributeList;
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00002058 CGM.ConstructAttributeList(CallInfo, TargetDecl, AttributeList);
Daniel Dunbar9834ffb2009-02-23 17:26:39 +00002059 llvm::AttrListPtr Attrs = llvm::AttrListPtr::get(AttributeList.begin(),
2060 AttributeList.end());
Daniel Dunbar725ad312009-01-31 02:19:00 +00002061
Daniel Dunbard14151d2009-03-02 04:32:35 +00002062 llvm::CallSite CS;
2063 if (!InvokeDest || (Attrs.getFnAttributes() & llvm::Attribute::NoUnwind)) {
2064 CS = Builder.CreateCall(Callee, &Args[0], &Args[0]+Args.size());
Daniel Dunbar9834ffb2009-02-23 17:26:39 +00002065 } else {
2066 llvm::BasicBlock *Cont = createBasicBlock("invoke.cont");
Daniel Dunbard14151d2009-03-02 04:32:35 +00002067 CS = Builder.CreateInvoke(Callee, Cont, InvokeDest,
2068 &Args[0], &Args[0]+Args.size());
Daniel Dunbar9834ffb2009-02-23 17:26:39 +00002069 EmitBlock(Cont);
Daniel Dunbarf4fe0f02009-02-20 18:54:31 +00002070 }
2071
Daniel Dunbard14151d2009-03-02 04:32:35 +00002072 CS.setAttributes(Attrs);
2073 if (const llvm::Function *F = dyn_cast<llvm::Function>(Callee))
2074 CS.setCallingConv(F->getCallingConv());
2075
2076 // If the call doesn't return, finish the basic block and clear the
2077 // insertion point; this allows the rest of IRgen to discard
2078 // unreachable code.
2079 if (CS.doesNotReturn()) {
2080 Builder.CreateUnreachable();
2081 Builder.ClearInsertionPoint();
2082
2083 // FIXME: For now, emit a dummy basic block because expr
2084 // emitters in generally are not ready to handle emitting
2085 // expressions at unreachable points.
2086 EnsureInsertPoint();
2087
2088 // Return a reasonable RValue.
2089 return GetUndefRValue(RetTy);
2090 }
2091
2092 llvm::Instruction *CI = CS.getInstruction();
Chris Lattner34030842009-03-22 00:32:22 +00002093 if (Builder.isNamePreserving() && CI->getType() != llvm::Type::VoidTy)
Daniel Dunbar17b708d2008-09-09 23:27:19 +00002094 CI->setName("call");
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00002095
2096 switch (RetAI.getKind()) {
Daniel Dunbar11e383a2009-02-05 08:00:50 +00002097 case ABIArgInfo::Indirect:
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00002098 if (RetTy->isAnyComplexType())
Daniel Dunbar56273772008-09-17 00:51:38 +00002099 return RValue::getComplex(LoadComplexFromAddr(Args[0], false));
Chris Lattner34030842009-03-22 00:32:22 +00002100 if (CodeGenFunction::hasAggregateLLVMType(RetTy))
Daniel Dunbar56273772008-09-17 00:51:38 +00002101 return RValue::getAggregate(Args[0]);
Chris Lattner34030842009-03-22 00:32:22 +00002102 return RValue::get(EmitLoadOfScalar(Args[0], false, RetTy));
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00002103
Daniel Dunbar46327aa2009-02-03 06:17:37 +00002104 case ABIArgInfo::Direct:
Daniel Dunbar2fbf2f52009-02-05 11:13:54 +00002105 if (RetTy->isAnyComplexType()) {
2106 llvm::Value *Real = Builder.CreateExtractValue(CI, 0);
2107 llvm::Value *Imag = Builder.CreateExtractValue(CI, 1);
2108 return RValue::getComplex(std::make_pair(Real, Imag));
Chris Lattner34030842009-03-22 00:32:22 +00002109 }
2110 if (CodeGenFunction::hasAggregateLLVMType(RetTy)) {
Daniel Dunbaradc8bdd2009-02-10 01:51:39 +00002111 llvm::Value *V = CreateTempAlloca(ConvertTypeForMem(RetTy), "agg.tmp");
Daniel Dunbar2fbf2f52009-02-05 11:13:54 +00002112 Builder.CreateStore(CI, V);
2113 return RValue::getAggregate(V);
Chris Lattner34030842009-03-22 00:32:22 +00002114 }
2115 return RValue::get(CI);
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00002116
Daniel Dunbar11434922009-01-26 21:26:08 +00002117 case ABIArgInfo::Ignore:
Daniel Dunbar0bcc5212009-02-03 06:30:17 +00002118 // If we are ignoring an argument that had a result, make sure to
2119 // construct the appropriate return value for our caller.
Daniel Dunbar13e81732009-02-05 07:09:07 +00002120 return GetUndefRValue(RetTy);
Daniel Dunbar11434922009-01-26 21:26:08 +00002121
Daniel Dunbar639ffe42008-09-10 07:04:09 +00002122 case ABIArgInfo::Coerce: {
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +00002123 // FIXME: Avoid the conversion through memory if possible.
Daniel Dunbaradc8bdd2009-02-10 01:51:39 +00002124 llvm::Value *V = CreateTempAlloca(ConvertTypeForMem(RetTy), "coerce");
Daniel Dunbar54d1ccb2009-01-27 01:36:03 +00002125 CreateCoercedStore(CI, V, *this);
Anders Carlssonad3d6912008-11-25 22:21:48 +00002126 if (RetTy->isAnyComplexType())
2127 return RValue::getComplex(LoadComplexFromAddr(V, false));
Chris Lattner34030842009-03-22 00:32:22 +00002128 if (CodeGenFunction::hasAggregateLLVMType(RetTy))
Anders Carlssonad3d6912008-11-25 22:21:48 +00002129 return RValue::getAggregate(V);
Chris Lattner34030842009-03-22 00:32:22 +00002130 return RValue::get(EmitLoadOfScalar(V, false, RetTy));
Daniel Dunbar639ffe42008-09-10 07:04:09 +00002131 }
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00002132
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00002133 case ABIArgInfo::Expand:
2134 assert(0 && "Invalid ABI kind for return argument");
Daniel Dunbar17b708d2008-09-09 23:27:19 +00002135 }
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00002136
2137 assert(0 && "Unhandled ABIArgInfo::Kind");
2138 return RValue::get(0);
Daniel Dunbar17b708d2008-09-09 23:27:19 +00002139}
Daniel Dunbarb4094ea2009-02-10 20:44:09 +00002140
2141/* VarArg handling */
2142
2143llvm::Value *CodeGenFunction::EmitVAArg(llvm::Value *VAListAddr, QualType Ty) {
2144 return CGM.getTypes().getABIInfo().EmitVAArg(VAListAddr, Ty, *this);
2145}