blob: e3f824fc7428cddfb78d905b7011a32f3d1922e5 [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.
Daniel Dunbar5bde6f42009-03-31 19:01:39 +0000163static bool isEmptyRecord(QualType T) {
164 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 Gregorf8d49f62009-01-09 17:18:27 +0000170 for (RecordDecl::field_iterator i = RD->field_begin(),
Daniel Dunbar834af452008-09-17 21:22:33 +0000171 e = RD->field_end(); i != e; ++i) {
172 const FieldDecl *FD = *i;
Daniel Dunbar5bde6f42009-03-31 19:01:39 +0000173 if (!isEmptyRecord(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 Gregorf8d49f62009-01-09 17:18:27 +0000197 for (RecordDecl::field_iterator i = RD->field_begin(),
Daniel Dunbar834af452008-09-17 21:22:33 +0000198 e = RD->field_end(); i != e; ++i) {
199 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
Daniel Dunbar5bde6f42009-03-31 19:01:39 +0000207 if (isEmptyRecord(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 Gregorf8d49f62009-01-09 17:18:27 +0000233 for (RecordDecl::field_iterator i = RD->field_begin(),
Daniel Dunbar834af452008-09-17 21:22:33 +0000234 e = RD->field_end(); i != e; ++i) {
235 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 {
Eli Friedman9fd58e82009-03-23 23:26:24 +0000276 bool IsDarwin;
277
Daniel Dunbardfc6b802009-04-01 07:08:38 +0000278 static bool isRegisterSize(unsigned Size) {
279 return (Size == 8 || Size == 16 || Size == 32 || Size == 64);
280 }
281
Daniel Dunbarcf6bde32009-04-01 07:45:00 +0000282 static bool shouldReturnTypeInRegister(QualType Ty, ASTContext &Context);
283
Daniel Dunbar6b1da0e2008-10-13 17:02:26 +0000284public:
Daniel Dunbar6bad2652009-02-03 06:51:18 +0000285 ABIArgInfo classifyReturnType(QualType RetTy,
286 ASTContext &Context) const;
Daniel Dunbar6b1da0e2008-10-13 17:02:26 +0000287
Daniel Dunbar6bad2652009-02-03 06:51:18 +0000288 ABIArgInfo classifyArgumentType(QualType RetTy,
289 ASTContext &Context) const;
290
291 virtual void computeInfo(CGFunctionInfo &FI, ASTContext &Context) const {
292 FI.getReturnInfo() = classifyReturnType(FI.getReturnType(), Context);
293 for (CGFunctionInfo::arg_iterator it = FI.arg_begin(), ie = FI.arg_end();
294 it != ie; ++it)
295 it->info = classifyArgumentType(it->type, Context);
296 }
Daniel Dunbarb4094ea2009-02-10 20:44:09 +0000297
298 virtual llvm::Value *EmitVAArg(llvm::Value *VAListAddr, QualType Ty,
299 CodeGenFunction &CGF) const;
Eli Friedman9fd58e82009-03-23 23:26:24 +0000300
301 X86_32ABIInfo(bool d) : ABIInfo(), IsDarwin(d) {}
Daniel Dunbar6b1da0e2008-10-13 17:02:26 +0000302};
303}
304
Daniel Dunbarcf6bde32009-04-01 07:45:00 +0000305
306/// shouldReturnTypeInRegister - Determine if the given type should be
307/// passed in a register (for the Darwin ABI).
308bool X86_32ABIInfo::shouldReturnTypeInRegister(QualType Ty,
309 ASTContext &Context) {
310 uint64_t Size = Context.getTypeSize(Ty);
311
312 // Type must be register sized.
313 if (!isRegisterSize(Size))
314 return false;
315
316 if (Ty->isVectorType()) {
317 // 64- and 128- bit vectors inside structures are not returned in
318 // registers.
319 if (Size == 64 || Size == 128)
320 return false;
321
322 return true;
323 }
324
325 // If this is a builtin, pointer, or complex type, it is ok.
326 if (Ty->getAsBuiltinType() || Ty->isPointerType() || Ty->isAnyComplexType())
327 return true;
328
329 // Arrays are treated like records.
330 if (const ConstantArrayType *AT = Context.getAsConstantArrayType(Ty))
331 return shouldReturnTypeInRegister(AT->getElementType(), Context);
332
333 // Otherwise, it must be a record type.
334 const RecordType *RT = Ty->getAsRecordType();
335 if (!RT) return false;
336
337 // Structure types are passed in register if all fields would be
338 // passed in a register.
339 for (RecordDecl::field_iterator i = RT->getDecl()->field_begin(),
340 e = RT->getDecl()->field_end(); i != e; ++i) {
341 const FieldDecl *FD = *i;
342
343 // FIXME: Reject bitfields wholesale for now; this is incorrect.
344 if (FD->isBitField())
345 return false;
346
347 // Empty structures are ignored.
348 if (isEmptyRecord(FD->getType()))
349 continue;
350
351 // Check fields recursively.
352 if (!shouldReturnTypeInRegister(FD->getType(), Context))
353 return false;
354 }
355
356 return true;
357}
358
Daniel Dunbar6b1da0e2008-10-13 17:02:26 +0000359ABIArgInfo X86_32ABIInfo::classifyReturnType(QualType RetTy,
360 ASTContext &Context) const {
Daniel Dunbar0bcc5212009-02-03 06:30:17 +0000361 if (RetTy->isVoidType()) {
362 return ABIArgInfo::getIgnore();
Daniel Dunbar36043162009-04-01 06:13:08 +0000363 } else if (const VectorType *VT = RetTy->getAsVectorType()) {
364 // On Darwin, some vectors are returned in registers.
365 if (IsDarwin) {
366 uint64_t Size = Context.getTypeSize(RetTy);
367
368 // 128-bit vectors are a special case; they are returned in
369 // registers and we need to make sure to pick a type the LLVM
370 // backend will like.
371 if (Size == 128)
372 return ABIArgInfo::getCoerce(llvm::VectorType::get(llvm::Type::Int64Ty,
373 2));
374
375 // Always return in register if it fits in a general purpose
376 // register, or if it is 64 bits and has a single element.
377 if ((Size == 8 || Size == 16 || Size == 32) ||
378 (Size == 64 && VT->getNumElements() == 1))
379 return ABIArgInfo::getCoerce(llvm::IntegerType::get(Size));
380
381 return ABIArgInfo::getIndirect(0);
382 }
383
384 return ABIArgInfo::getDirect();
Daniel Dunbar0bcc5212009-02-03 06:30:17 +0000385 } else if (CodeGenFunction::hasAggregateLLVMType(RetTy)) {
Eli Friedman9fd58e82009-03-23 23:26:24 +0000386 // Outside of Darwin, structs and unions are always indirect.
387 if (!IsDarwin && !RetTy->isAnyComplexType())
388 return ABIArgInfo::getIndirect(0);
Daniel Dunbar834af452008-09-17 21:22:33 +0000389 // Classify "single element" structs as their element type.
Daniel Dunbardfc6b802009-04-01 07:08:38 +0000390 if (const Type *SeltTy = isSingleElementStruct(RetTy, Context)) {
Daniel Dunbar834af452008-09-17 21:22:33 +0000391 if (const BuiltinType *BT = SeltTy->getAsBuiltinType()) {
392 // FIXME: This is gross, it would be nice if we could just
393 // pass back SeltTy and have clients deal with it. Is it worth
394 // supporting coerce to both LLVM and clang Types?
395 if (BT->isIntegerType()) {
396 uint64_t Size = Context.getTypeSize(SeltTy);
397 return ABIArgInfo::getCoerce(llvm::IntegerType::get((unsigned) Size));
398 } else if (BT->getKind() == BuiltinType::Float) {
399 return ABIArgInfo::getCoerce(llvm::Type::FloatTy);
400 } else if (BT->getKind() == BuiltinType::Double) {
401 return ABIArgInfo::getCoerce(llvm::Type::DoubleTy);
402 }
403 } else if (SeltTy->isPointerType()) {
404 // FIXME: It would be really nice if this could come out as
405 // the proper pointer type.
406 llvm::Type *PtrTy =
407 llvm::PointerType::getUnqual(llvm::Type::Int8Ty);
408 return ABIArgInfo::getCoerce(PtrTy);
Daniel Dunbardfc6b802009-04-01 07:08:38 +0000409 } else if (SeltTy->isVectorType()) {
410 // 64- and 128-bit vectors are never returned in a
411 // register when inside a structure.
412 uint64_t Size = Context.getTypeSize(RetTy);
413 if (Size == 64 || Size == 128)
414 return ABIArgInfo::getIndirect(0);
415
416 return classifyReturnType(QualType(SeltTy, 0), Context);
Daniel Dunbar834af452008-09-17 21:22:33 +0000417 }
418 }
419
Daniel Dunbar639ffe42008-09-10 07:04:09 +0000420 uint64_t Size = Context.getTypeSize(RetTy);
Daniel Dunbarcf6bde32009-04-01 07:45:00 +0000421 if (isRegisterSize(Size)) {
422 // Always return in register for unions for now.
423 // FIXME: This is wrong, but better than treating as a
424 // structure.
425 if (RetTy->isUnionType())
426 return ABIArgInfo::getCoerce(llvm::IntegerType::get(Size));
427
428 // Small structures which are register sized are generally returned
429 // in a register.
430 if (X86_32ABIInfo::shouldReturnTypeInRegister(RetTy, Context))
431 return ABIArgInfo::getCoerce(llvm::IntegerType::get(Size));
432 }
Daniel Dunbardfc6b802009-04-01 07:08:38 +0000433
434 return ABIArgInfo::getIndirect(0);
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +0000435 } else {
Daniel Dunbar0bcc5212009-02-03 06:30:17 +0000436 return ABIArgInfo::getDirect();
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +0000437 }
438}
439
Daniel Dunbar6b1da0e2008-10-13 17:02:26 +0000440ABIArgInfo X86_32ABIInfo::classifyArgumentType(QualType Ty,
Daniel Dunbarb4094ea2009-02-10 20:44:09 +0000441 ASTContext &Context) const {
Daniel Dunbar11e383a2009-02-05 08:00:50 +0000442 // FIXME: Set alignment on indirect arguments.
Daniel Dunbarf0357382008-09-17 20:11:04 +0000443 if (CodeGenFunction::hasAggregateLLVMType(Ty)) {
Daniel Dunbar11e383a2009-02-05 08:00:50 +0000444 // Structures with flexible arrays are always indirect.
Daniel Dunbar834af452008-09-17 21:22:33 +0000445 if (const RecordType *RT = Ty->getAsStructureType())
446 if (RT->getDecl()->hasFlexibleArrayMember())
Daniel Dunbar11e383a2009-02-05 08:00:50 +0000447 return ABIArgInfo::getIndirect(0);
Daniel Dunbar834af452008-09-17 21:22:33 +0000448
Daniel Dunbar3170c932009-02-05 01:50:07 +0000449 // Ignore empty structs.
Daniel Dunbar834af452008-09-17 21:22:33 +0000450 uint64_t Size = Context.getTypeSize(Ty);
451 if (Ty->isStructureType() && Size == 0)
Daniel Dunbar3170c932009-02-05 01:50:07 +0000452 return ABIArgInfo::getIgnore();
Daniel Dunbar834af452008-09-17 21:22:33 +0000453
454 // Expand structs with size <= 128-bits which consist only of
455 // basic types (int, long long, float, double, xxx*). This is
456 // non-recursive and does not ignore empty fields.
457 if (const RecordType *RT = Ty->getAsStructureType()) {
458 if (Context.getTypeSize(Ty) <= 4*32 &&
459 areAllFields32Or64BitBasicType(RT->getDecl(), Context))
460 return ABIArgInfo::getExpand();
461 }
462
Daniel Dunbar11e383a2009-02-05 08:00:50 +0000463 return ABIArgInfo::getIndirect(0);
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000464 } else {
Daniel Dunbar0bcc5212009-02-03 06:30:17 +0000465 return ABIArgInfo::getDirect();
Daniel Dunbar8951dbd2008-09-11 01:48:57 +0000466 }
467}
468
Daniel Dunbarb4094ea2009-02-10 20:44:09 +0000469llvm::Value *X86_32ABIInfo::EmitVAArg(llvm::Value *VAListAddr, QualType Ty,
470 CodeGenFunction &CGF) const {
471 const llvm::Type *BP = llvm::PointerType::getUnqual(llvm::Type::Int8Ty);
472 const llvm::Type *BPP = llvm::PointerType::getUnqual(BP);
473
474 CGBuilderTy &Builder = CGF.Builder;
475 llvm::Value *VAListAddrAsBPP = Builder.CreateBitCast(VAListAddr, BPP,
476 "ap");
477 llvm::Value *Addr = Builder.CreateLoad(VAListAddrAsBPP, "ap.cur");
478 llvm::Type *PTy =
479 llvm::PointerType::getUnqual(CGF.ConvertType(Ty));
480 llvm::Value *AddrTyped = Builder.CreateBitCast(Addr, PTy);
481
Daniel Dunbar570f0cf2009-02-18 22:28:45 +0000482 uint64_t Offset =
483 llvm::RoundUpToAlignment(CGF.getContext().getTypeSize(Ty) / 8, 4);
Daniel Dunbarb4094ea2009-02-10 20:44:09 +0000484 llvm::Value *NextAddr =
485 Builder.CreateGEP(Addr,
Daniel Dunbar570f0cf2009-02-18 22:28:45 +0000486 llvm::ConstantInt::get(llvm::Type::Int32Ty, Offset),
Daniel Dunbarb4094ea2009-02-10 20:44:09 +0000487 "ap.next");
488 Builder.CreateStore(NextAddr, VAListAddrAsBPP);
489
490 return AddrTyped;
491}
492
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000493namespace {
Daniel Dunbarc4503572009-01-31 00:06:58 +0000494/// X86_64ABIInfo - The X86_64 ABI information.
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000495class X86_64ABIInfo : public ABIInfo {
496 enum Class {
497 Integer = 0,
498 SSE,
499 SSEUp,
500 X87,
501 X87Up,
502 ComplexX87,
503 NoClass,
504 Memory
505 };
506
Daniel Dunbar8562ae72009-01-30 08:09:32 +0000507 /// merge - Implement the X86_64 ABI merging algorithm.
508 ///
Daniel Dunbarc4503572009-01-31 00:06:58 +0000509 /// Merge an accumulating classification \arg Accum with a field
510 /// classification \arg Field.
511 ///
512 /// \param Accum - The accumulating classification. This should
513 /// always be either NoClass or the result of a previous merge
514 /// call. In addition, this should never be Memory (the caller
515 /// should just return Memory for the aggregate).
516 Class merge(Class Accum, Class Field) const;
Daniel Dunbar8562ae72009-01-30 08:09:32 +0000517
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000518 /// classify - Determine the x86_64 register classes in which the
519 /// given type T should be passed.
520 ///
Daniel Dunbarc4503572009-01-31 00:06:58 +0000521 /// \param Lo - The classification for the parts of the type
522 /// residing in the low word of the containing object.
523 ///
524 /// \param Hi - The classification for the parts of the type
525 /// residing in the high word of the containing object.
526 ///
527 /// \param OffsetBase - The bit offset of this type in the
Daniel Dunbarcdf920e2009-01-30 22:40:15 +0000528 /// containing object. Some parameters are classified different
529 /// depending on whether they straddle an eightbyte boundary.
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000530 ///
531 /// If a word is unused its result will be NoClass; if a type should
532 /// be passed in Memory then at least the classification of \arg Lo
533 /// will be Memory.
534 ///
535 /// The \arg Lo class will be NoClass iff the argument is ignored.
536 ///
537 /// If the \arg Lo class is ComplexX87, then the \arg Hi class will
Daniel Dunbar6e53e9b2009-02-17 07:55:55 +0000538 /// also be ComplexX87.
Daniel Dunbare620ecd2009-01-30 00:47:38 +0000539 void classify(QualType T, ASTContext &Context, uint64_t OffsetBase,
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000540 Class &Lo, Class &Hi) const;
Daniel Dunbarc4503572009-01-31 00:06:58 +0000541
Daniel Dunbar644f4c32009-02-14 02:09:24 +0000542 /// getCoerceResult - Given a source type \arg Ty and an LLVM type
543 /// to coerce to, chose the best way to pass Ty in the same place
544 /// that \arg CoerceTo would be passed, but while keeping the
545 /// emitted code as simple as possible.
546 ///
547 /// FIXME: Note, this should be cleaned up to just take an
548 /// enumeration of all the ways we might want to pass things,
549 /// instead of constructing an LLVM type. This makes this code more
550 /// explicit, and it makes it clearer that we are also doing this
551 /// for correctness in the case of passing scalar types.
552 ABIArgInfo getCoerceResult(QualType Ty,
553 const llvm::Type *CoerceTo,
554 ASTContext &Context) const;
555
Daniel Dunbar6bad2652009-02-03 06:51:18 +0000556 ABIArgInfo classifyReturnType(QualType RetTy,
Daniel Dunbar59e5a0e2009-02-03 20:00:13 +0000557 ASTContext &Context) const;
558
559 ABIArgInfo classifyArgumentType(QualType Ty,
560 ASTContext &Context,
Daniel Dunbar3b4e9cd2009-02-10 17:06:09 +0000561 unsigned &neededInt,
562 unsigned &neededSSE) const;
Daniel Dunbar59e5a0e2009-02-03 20:00:13 +0000563
564public:
565 virtual void computeInfo(CGFunctionInfo &FI, ASTContext &Context) const;
Daniel Dunbarb4094ea2009-02-10 20:44:09 +0000566
567 virtual llvm::Value *EmitVAArg(llvm::Value *VAListAddr, QualType Ty,
568 CodeGenFunction &CGF) const;
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000569};
570}
571
Daniel Dunbarc4503572009-01-31 00:06:58 +0000572X86_64ABIInfo::Class X86_64ABIInfo::merge(Class Accum,
573 Class Field) const {
Daniel Dunbar8562ae72009-01-30 08:09:32 +0000574 // AMD64-ABI 3.2.3p2: Rule 4. Each field of an object is
575 // classified recursively so that always two fields are
576 // considered. The resulting class is calculated according to
577 // the classes of the fields in the eightbyte:
578 //
579 // (a) If both classes are equal, this is the resulting class.
580 //
581 // (b) If one of the classes is NO_CLASS, the resulting class is
582 // the other class.
583 //
584 // (c) If one of the classes is MEMORY, the result is the MEMORY
585 // class.
586 //
587 // (d) If one of the classes is INTEGER, the result is the
588 // INTEGER.
589 //
590 // (e) If one of the classes is X87, X87UP, COMPLEX_X87 class,
591 // MEMORY is used as class.
592 //
593 // (f) Otherwise class SSE is used.
Daniel Dunbar100f4022009-03-06 17:50:25 +0000594
595 // Accum should never be memory (we should have returned) or
596 // ComplexX87 (because this cannot be passed in a structure).
597 assert((Accum != Memory && Accum != ComplexX87) &&
Daniel Dunbarc4503572009-01-31 00:06:58 +0000598 "Invalid accumulated classification during merge.");
599 if (Accum == Field || Field == NoClass)
600 return Accum;
601 else if (Field == Memory)
602 return Memory;
603 else if (Accum == NoClass)
604 return Field;
605 else if (Accum == Integer || Field == Integer)
606 return Integer;
607 else if (Field == X87 || Field == X87Up || Field == ComplexX87)
608 return Memory;
Daniel Dunbar8562ae72009-01-30 08:09:32 +0000609 else
Daniel Dunbarc4503572009-01-31 00:06:58 +0000610 return SSE;
Daniel Dunbar8562ae72009-01-30 08:09:32 +0000611}
612
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000613void X86_64ABIInfo::classify(QualType Ty,
614 ASTContext &Context,
Daniel Dunbare620ecd2009-01-30 00:47:38 +0000615 uint64_t OffsetBase,
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000616 Class &Lo, Class &Hi) const {
Daniel Dunbar9a82b522009-02-02 18:06:39 +0000617 // FIXME: This code can be simplified by introducing a simple value
618 // class for Class pairs with appropriate constructor methods for
619 // the various situations.
620
Daniel Dunbare28099b2009-02-22 04:48:22 +0000621 // FIXME: Some of the split computations are wrong; unaligned
622 // vectors shouldn't be passed in registers for example, so there is
623 // no chance they can straddle an eightbyte. Verify & simplify.
624
Daniel Dunbarc4503572009-01-31 00:06:58 +0000625 Lo = Hi = NoClass;
626
627 Class &Current = OffsetBase < 64 ? Lo : Hi;
628 Current = Memory;
629
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000630 if (const BuiltinType *BT = Ty->getAsBuiltinType()) {
631 BuiltinType::Kind k = BT->getKind();
632
Daniel Dunbar11434922009-01-26 21:26:08 +0000633 if (k == BuiltinType::Void) {
Daniel Dunbarc4503572009-01-31 00:06:58 +0000634 Current = NoClass;
Daniel Dunbar11434922009-01-26 21:26:08 +0000635 } else if (k >= BuiltinType::Bool && k <= BuiltinType::LongLong) {
Daniel Dunbarc4503572009-01-31 00:06:58 +0000636 Current = Integer;
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000637 } else if (k == BuiltinType::Float || k == BuiltinType::Double) {
Daniel Dunbarc4503572009-01-31 00:06:58 +0000638 Current = SSE;
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000639 } else if (k == BuiltinType::LongDouble) {
640 Lo = X87;
641 Hi = X87Up;
642 }
Daniel Dunbar7a6605d2009-01-27 02:01:34 +0000643 // FIXME: _Decimal32 and _Decimal64 are SSE.
644 // FIXME: _float128 and _Decimal128 are (SSE, SSEUp).
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000645 // FIXME: __int128 is (Integer, Integer).
Anders Carlsson708762b2009-02-26 17:31:15 +0000646 } else if (const EnumType *ET = Ty->getAsEnumType()) {
647 // Classify the underlying integer type.
648 classify(ET->getDecl()->getIntegerType(), Context, OffsetBase, Lo, Hi);
Daniel Dunbar89588912009-02-26 20:52:22 +0000649 } else if (Ty->hasPointerRepresentation()) {
Daniel Dunbarc4503572009-01-31 00:06:58 +0000650 Current = Integer;
Daniel Dunbar7a6605d2009-01-27 02:01:34 +0000651 } else if (const VectorType *VT = Ty->getAsVectorType()) {
Daniel Dunbare620ecd2009-01-30 00:47:38 +0000652 uint64_t Size = Context.getTypeSize(VT);
Daniel Dunbare28099b2009-02-22 04:48:22 +0000653 if (Size == 32) {
654 // gcc passes all <4 x char>, <2 x short>, <1 x int>, <1 x
655 // float> as integer.
656 Current = Integer;
657
658 // If this type crosses an eightbyte boundary, it should be
659 // split.
660 uint64_t EB_Real = (OffsetBase) / 64;
661 uint64_t EB_Imag = (OffsetBase + Size - 1) / 64;
662 if (EB_Real != EB_Imag)
663 Hi = Lo;
664 } else if (Size == 64) {
Daniel Dunbar0af99292009-02-22 04:16:10 +0000665 // gcc passes <1 x double> in memory. :(
666 if (VT->getElementType()->isSpecificBuiltinType(BuiltinType::Double))
Daniel Dunbard4cd1b02009-01-30 19:38:39 +0000667 return;
Daniel Dunbar0af99292009-02-22 04:16:10 +0000668
669 // gcc passes <1 x long long> as INTEGER.
670 if (VT->getElementType()->isSpecificBuiltinType(BuiltinType::LongLong))
671 Current = Integer;
672 else
673 Current = SSE;
Daniel Dunbare33edf12009-01-30 18:40:10 +0000674
675 // If this type crosses an eightbyte boundary, it should be
676 // split.
Daniel Dunbarcdf920e2009-01-30 22:40:15 +0000677 if (OffsetBase && OffsetBase != 64)
Daniel Dunbare33edf12009-01-30 18:40:10 +0000678 Hi = Lo;
Daniel Dunbar7a6605d2009-01-27 02:01:34 +0000679 } else if (Size == 128) {
680 Lo = SSE;
681 Hi = SSEUp;
682 }
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000683 } else if (const ComplexType *CT = Ty->getAsComplexType()) {
Daniel Dunbar3327f6e2009-02-14 02:45:45 +0000684 QualType ET = Context.getCanonicalType(CT->getElementType());
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000685
Daniel Dunbare33edf12009-01-30 18:40:10 +0000686 uint64_t Size = Context.getTypeSize(Ty);
Daniel Dunbar0af99292009-02-22 04:16:10 +0000687 if (ET->isIntegralType()) {
Daniel Dunbareac48dc2009-01-29 07:22:20 +0000688 if (Size <= 64)
Daniel Dunbarc4503572009-01-31 00:06:58 +0000689 Current = Integer;
Daniel Dunbareac48dc2009-01-29 07:22:20 +0000690 else if (Size <= 128)
691 Lo = Hi = Integer;
692 } else if (ET == Context.FloatTy)
Daniel Dunbarc4503572009-01-31 00:06:58 +0000693 Current = SSE;
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000694 else if (ET == Context.DoubleTy)
695 Lo = Hi = SSE;
696 else if (ET == Context.LongDoubleTy)
Daniel Dunbarc4503572009-01-31 00:06:58 +0000697 Current = ComplexX87;
Daniel Dunbarf04d69b2009-01-29 09:42:07 +0000698
699 // If this complex type crosses an eightbyte boundary then it
700 // should be split.
Daniel Dunbarcdf920e2009-01-30 22:40:15 +0000701 uint64_t EB_Real = (OffsetBase) / 64;
702 uint64_t EB_Imag = (OffsetBase + Context.getTypeSize(ET)) / 64;
Daniel Dunbarf04d69b2009-01-29 09:42:07 +0000703 if (Hi == NoClass && EB_Real != EB_Imag)
704 Hi = Lo;
Daniel Dunbar8562ae72009-01-30 08:09:32 +0000705 } else if (const ConstantArrayType *AT = Context.getAsConstantArrayType(Ty)) {
706 // Arrays are treated like structures.
707
708 uint64_t Size = Context.getTypeSize(Ty);
709
710 // AMD64-ABI 3.2.3p2: Rule 1. If the size of an object is larger
711 // than two eightbytes, ..., it has class MEMORY.
712 if (Size > 128)
713 return;
714
715 // AMD64-ABI 3.2.3p2: Rule 1. If ..., or it contains unaligned
716 // fields, it has class MEMORY.
717 //
718 // Only need to check alignment of array base.
Daniel Dunbarc4503572009-01-31 00:06:58 +0000719 if (OffsetBase % Context.getTypeAlign(AT->getElementType()))
Daniel Dunbar8562ae72009-01-30 08:09:32 +0000720 return;
Daniel Dunbar8562ae72009-01-30 08:09:32 +0000721
722 // Otherwise implement simplified merge. We could be smarter about
723 // this, but it isn't worth it and would be harder to verify.
Daniel Dunbarc4503572009-01-31 00:06:58 +0000724 Current = NoClass;
Daniel Dunbar8562ae72009-01-30 08:09:32 +0000725 uint64_t EltSize = Context.getTypeSize(AT->getElementType());
726 uint64_t ArraySize = AT->getSize().getZExtValue();
727 for (uint64_t i=0, Offset=OffsetBase; i<ArraySize; ++i, Offset += EltSize) {
728 Class FieldLo, FieldHi;
729 classify(AT->getElementType(), Context, Offset, FieldLo, FieldHi);
Daniel Dunbarc4503572009-01-31 00:06:58 +0000730 Lo = merge(Lo, FieldLo);
731 Hi = merge(Hi, FieldHi);
732 if (Lo == Memory || Hi == Memory)
733 break;
Daniel Dunbar8562ae72009-01-30 08:09:32 +0000734 }
Daniel Dunbarc4503572009-01-31 00:06:58 +0000735
736 // Do post merger cleanup (see below). Only case we worry about is Memory.
737 if (Hi == Memory)
738 Lo = Memory;
739 assert((Hi != SSEUp || Lo == SSE) && "Invalid SSEUp array classification.");
Daniel Dunbar99037e52009-01-29 08:13:58 +0000740 } else if (const RecordType *RT = Ty->getAsRecordType()) {
Daniel Dunbare620ecd2009-01-30 00:47:38 +0000741 uint64_t Size = Context.getTypeSize(Ty);
Daniel Dunbar99037e52009-01-29 08:13:58 +0000742
743 // AMD64-ABI 3.2.3p2: Rule 1. If the size of an object is larger
744 // than two eightbytes, ..., it has class MEMORY.
745 if (Size > 128)
746 return;
747
748 const RecordDecl *RD = RT->getDecl();
749
750 // Assume variable sized types are passed in memory.
751 if (RD->hasFlexibleArrayMember())
752 return;
753
754 const ASTRecordLayout &Layout = Context.getASTRecordLayout(RD);
755
756 // Reset Lo class, this will be recomputed.
Daniel Dunbarc4503572009-01-31 00:06:58 +0000757 Current = NoClass;
Daniel Dunbar99037e52009-01-29 08:13:58 +0000758 unsigned idx = 0;
759 for (RecordDecl::field_iterator i = RD->field_begin(),
760 e = RD->field_end(); i != e; ++i, ++idx) {
Daniel Dunbar8562ae72009-01-30 08:09:32 +0000761 uint64_t Offset = OffsetBase + Layout.getFieldOffset(idx);
Daniel Dunbardd81d442009-02-17 02:45:44 +0000762 bool BitField = i->isBitField();
Daniel Dunbar99037e52009-01-29 08:13:58 +0000763
Daniel Dunbar8562ae72009-01-30 08:09:32 +0000764 // AMD64-ABI 3.2.3p2: Rule 1. If ..., or it contains unaligned
765 // fields, it has class MEMORY.
Daniel Dunbardd81d442009-02-17 02:45:44 +0000766 //
767 // Note, skip this test for bitfields, see below.
768 if (!BitField && Offset % Context.getTypeAlign(i->getType())) {
Daniel Dunbar99037e52009-01-29 08:13:58 +0000769 Lo = Memory;
770 return;
771 }
772
Daniel Dunbar99037e52009-01-29 08:13:58 +0000773 // Classify this field.
Daniel Dunbarc4503572009-01-31 00:06:58 +0000774 //
775 // AMD64-ABI 3.2.3p2: Rule 3. If the size of the aggregate
776 // exceeds a single eightbyte, each is classified
777 // separately. Each eightbyte gets initialized to class
778 // NO_CLASS.
Daniel Dunbar99037e52009-01-29 08:13:58 +0000779 Class FieldLo, FieldHi;
Daniel Dunbardd81d442009-02-17 02:45:44 +0000780
781 // Bitfields require special handling, they do not force the
782 // structure to be passed in memory even if unaligned, and
783 // therefore they can straddle an eightbyte.
784 if (BitField) {
785 uint64_t Offset = OffsetBase + Layout.getFieldOffset(idx);
786 uint64_t Size =
787 i->getBitWidth()->getIntegerConstantExprValue(Context).getZExtValue();
788
789 uint64_t EB_Lo = Offset / 64;
790 uint64_t EB_Hi = (Offset + Size - 1) / 64;
791 FieldLo = FieldHi = NoClass;
792 if (EB_Lo) {
793 assert(EB_Hi == EB_Lo && "Invalid classification, type > 16 bytes.");
794 FieldLo = NoClass;
795 FieldHi = Integer;
796 } else {
797 FieldLo = Integer;
798 FieldHi = EB_Hi ? Integer : NoClass;
799 }
800 } else
801 classify(i->getType(), Context, Offset, FieldLo, FieldHi);
Daniel Dunbarc4503572009-01-31 00:06:58 +0000802 Lo = merge(Lo, FieldLo);
803 Hi = merge(Hi, FieldHi);
804 if (Lo == Memory || Hi == Memory)
805 break;
Daniel Dunbar99037e52009-01-29 08:13:58 +0000806 }
807
808 // AMD64-ABI 3.2.3p2: Rule 5. Then a post merger cleanup is done:
809 //
810 // (a) If one of the classes is MEMORY, the whole argument is
811 // passed in memory.
812 //
813 // (b) If SSEUP is not preceeded by SSE, it is converted to SSE.
814
815 // The first of these conditions is guaranteed by how we implement
Daniel Dunbarc4503572009-01-31 00:06:58 +0000816 // the merge (just bail).
817 //
818 // The second condition occurs in the case of unions; for example
819 // union { _Complex double; unsigned; }.
820 if (Hi == Memory)
821 Lo = Memory;
Daniel Dunbar99037e52009-01-29 08:13:58 +0000822 if (Hi == SSEUp && Lo != SSE)
Daniel Dunbarc4503572009-01-31 00:06:58 +0000823 Hi = SSE;
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000824 }
825}
826
Daniel Dunbar644f4c32009-02-14 02:09:24 +0000827ABIArgInfo X86_64ABIInfo::getCoerceResult(QualType Ty,
828 const llvm::Type *CoerceTo,
829 ASTContext &Context) const {
830 if (CoerceTo == llvm::Type::Int64Ty) {
831 // Integer and pointer types will end up in a general purpose
832 // register.
Daniel Dunbar0af99292009-02-22 04:16:10 +0000833 if (Ty->isIntegralType() || Ty->isPointerType())
Daniel Dunbar644f4c32009-02-14 02:09:24 +0000834 return ABIArgInfo::getDirect();
Daniel Dunbar0af99292009-02-22 04:16:10 +0000835
Daniel Dunbar644f4c32009-02-14 02:09:24 +0000836 } else if (CoerceTo == llvm::Type::DoubleTy) {
Daniel Dunbar3327f6e2009-02-14 02:45:45 +0000837 // FIXME: It would probably be better to make CGFunctionInfo only
838 // map using canonical types than to canonize here.
839 QualType CTy = Context.getCanonicalType(Ty);
840
Daniel Dunbar644f4c32009-02-14 02:09:24 +0000841 // Float and double end up in a single SSE reg.
Daniel Dunbar3327f6e2009-02-14 02:45:45 +0000842 if (CTy == Context.FloatTy || CTy == Context.DoubleTy)
Daniel Dunbar644f4c32009-02-14 02:09:24 +0000843 return ABIArgInfo::getDirect();
Daniel Dunbar0af99292009-02-22 04:16:10 +0000844
Daniel Dunbar644f4c32009-02-14 02:09:24 +0000845 }
846
847 return ABIArgInfo::getCoerce(CoerceTo);
848}
Daniel Dunbarc4503572009-01-31 00:06:58 +0000849
Daniel Dunbard4edfe42009-01-15 18:18:40 +0000850ABIArgInfo X86_64ABIInfo::classifyReturnType(QualType RetTy,
851 ASTContext &Context) const {
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000852 // AMD64-ABI 3.2.3p4: Rule 1. Classify the return type with the
853 // classification algorithm.
854 X86_64ABIInfo::Class Lo, Hi;
Daniel Dunbarf04d69b2009-01-29 09:42:07 +0000855 classify(RetTy, Context, 0, Lo, Hi);
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000856
Daniel Dunbarc4503572009-01-31 00:06:58 +0000857 // Check some invariants.
858 assert((Hi != Memory || Lo == Memory) && "Invalid memory classification.");
859 assert((Lo != NoClass || Hi == NoClass) && "Invalid null classification.");
860 assert((Hi != SSEUp || Lo == SSE) && "Invalid SSEUp classification.");
861
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000862 const llvm::Type *ResType = 0;
863 switch (Lo) {
864 case NoClass:
Daniel Dunbar11434922009-01-26 21:26:08 +0000865 return ABIArgInfo::getIgnore();
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000866
867 case SSEUp:
868 case X87Up:
869 assert(0 && "Invalid classification for lo word.");
870
Daniel Dunbarc4503572009-01-31 00:06:58 +0000871 // AMD64-ABI 3.2.3p4: Rule 2. Types of class memory are returned via
Daniel Dunbar11e383a2009-02-05 08:00:50 +0000872 // hidden argument.
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000873 case Memory:
Daniel Dunbar11e383a2009-02-05 08:00:50 +0000874 return ABIArgInfo::getIndirect(0);
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000875
876 // AMD64-ABI 3.2.3p4: Rule 3. If the class is INTEGER, the next
877 // available register of the sequence %rax, %rdx is used.
878 case Integer:
879 ResType = llvm::Type::Int64Ty; break;
880
881 // AMD64-ABI 3.2.3p4: Rule 4. If the class is SSE, the next
882 // available SSE register of the sequence %xmm0, %xmm1 is used.
883 case SSE:
884 ResType = llvm::Type::DoubleTy; break;
885
886 // AMD64-ABI 3.2.3p4: Rule 6. If the class is X87, the value is
887 // returned on the X87 stack in %st0 as 80-bit x87 number.
888 case X87:
889 ResType = llvm::Type::X86_FP80Ty; break;
890
Daniel Dunbarc4503572009-01-31 00:06:58 +0000891 // AMD64-ABI 3.2.3p4: Rule 8. If the class is COMPLEX_X87, the real
892 // part of the value is returned in %st0 and the imaginary part in
893 // %st1.
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000894 case ComplexX87:
Daniel Dunbar6e53e9b2009-02-17 07:55:55 +0000895 assert(Hi == ComplexX87 && "Unexpected ComplexX87 classification.");
Daniel Dunbar3e030b42009-02-18 03:44:19 +0000896 ResType = llvm::StructType::get(llvm::Type::X86_FP80Ty,
897 llvm::Type::X86_FP80Ty,
898 NULL);
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000899 break;
900 }
901
902 switch (Hi) {
Daniel Dunbar6e53e9b2009-02-17 07:55:55 +0000903 // Memory was handled previously and X87 should
904 // never occur as a hi class.
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000905 case Memory:
906 case X87:
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000907 assert(0 && "Invalid classification for hi word.");
908
Daniel Dunbar6e53e9b2009-02-17 07:55:55 +0000909 case ComplexX87: // Previously handled.
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000910 case NoClass: break;
Daniel Dunbar6e53e9b2009-02-17 07:55:55 +0000911
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000912 case Integer:
Daniel Dunbarb0e14f22009-01-29 07:36:07 +0000913 ResType = llvm::StructType::get(ResType, llvm::Type::Int64Ty, NULL);
914 break;
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000915 case SSE:
Daniel Dunbarb0e14f22009-01-29 07:36:07 +0000916 ResType = llvm::StructType::get(ResType, llvm::Type::DoubleTy, NULL);
917 break;
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000918
919 // AMD64-ABI 3.2.3p4: Rule 5. If the class is SSEUP, the eightbyte
920 // is passed in the upper half of the last used SSE register.
921 //
922 // SSEUP should always be preceeded by SSE, just widen.
923 case SSEUp:
924 assert(Lo == SSE && "Unexpected SSEUp classification.");
925 ResType = llvm::VectorType::get(llvm::Type::DoubleTy, 2);
926 break;
927
928 // AMD64-ABI 3.2.3p4: Rule 7. If the class is X87UP, the value is
Daniel Dunbarb0e14f22009-01-29 07:36:07 +0000929 // returned together with the previous X87 value in %st0.
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000930 case X87Up:
Daniel Dunbar100f4022009-03-06 17:50:25 +0000931 // If X87Up is preceeded by X87, we don't need to do
932 // anything. However, in some cases with unions it may not be
933 // preceeded by X87. In such situations we follow gcc and pass the
934 // extra bits in an SSE reg.
935 if (Lo != X87)
936 ResType = llvm::StructType::get(ResType, llvm::Type::DoubleTy, NULL);
Daniel Dunbar6f3e7fa2009-01-24 08:32:22 +0000937 break;
938 }
939
Daniel Dunbar644f4c32009-02-14 02:09:24 +0000940 return getCoerceResult(RetTy, ResType, Context);
Daniel Dunbard4edfe42009-01-15 18:18:40 +0000941}
942
Daniel Dunbar59e5a0e2009-02-03 20:00:13 +0000943ABIArgInfo X86_64ABIInfo::classifyArgumentType(QualType Ty, ASTContext &Context,
Daniel Dunbar3b4e9cd2009-02-10 17:06:09 +0000944 unsigned &neededInt,
945 unsigned &neededSSE) const {
Daniel Dunbar59e5a0e2009-02-03 20:00:13 +0000946 X86_64ABIInfo::Class Lo, Hi;
947 classify(Ty, Context, 0, Lo, Hi);
948
949 // Check some invariants.
950 // FIXME: Enforce these by construction.
951 assert((Hi != Memory || Lo == Memory) && "Invalid memory classification.");
952 assert((Lo != NoClass || Hi == NoClass) && "Invalid null classification.");
953 assert((Hi != SSEUp || Lo == SSE) && "Invalid SSEUp classification.");
954
Daniel Dunbar3b4e9cd2009-02-10 17:06:09 +0000955 neededInt = 0;
956 neededSSE = 0;
Daniel Dunbar59e5a0e2009-02-03 20:00:13 +0000957 const llvm::Type *ResType = 0;
958 switch (Lo) {
959 case NoClass:
960 return ABIArgInfo::getIgnore();
961
962 // AMD64-ABI 3.2.3p3: Rule 1. If the class is MEMORY, pass the argument
963 // on the stack.
964 case Memory:
965
966 // AMD64-ABI 3.2.3p3: Rule 5. If the class is X87, X87UP or
967 // COMPLEX_X87, it is passed in memory.
968 case X87:
969 case ComplexX87:
Daniel Dunbar245f5532009-02-22 08:17:51 +0000970 return ABIArgInfo::getIndirect(0);
Daniel Dunbar59e5a0e2009-02-03 20:00:13 +0000971
972 case SSEUp:
973 case X87Up:
974 assert(0 && "Invalid classification for lo word.");
975
976 // AMD64-ABI 3.2.3p3: Rule 2. If the class is INTEGER, the next
977 // available register of the sequence %rdi, %rsi, %rdx, %rcx, %r8
978 // and %r9 is used.
979 case Integer:
980 ++neededInt;
981 ResType = llvm::Type::Int64Ty;
982 break;
983
984 // AMD64-ABI 3.2.3p3: Rule 3. If the class is SSE, the next
985 // available SSE register is used, the registers are taken in the
986 // order from %xmm0 to %xmm7.
987 case SSE:
988 ++neededSSE;
989 ResType = llvm::Type::DoubleTy;
990 break;
Daniel Dunbar0bcc5212009-02-03 06:30:17 +0000991 }
Daniel Dunbar59e5a0e2009-02-03 20:00:13 +0000992
993 switch (Hi) {
994 // Memory was handled previously, ComplexX87 and X87 should
995 // never occur as hi classes, and X87Up must be preceed by X87,
996 // which is passed in memory.
997 case Memory:
998 case X87:
Daniel Dunbar59e5a0e2009-02-03 20:00:13 +0000999 case ComplexX87:
1000 assert(0 && "Invalid classification for hi word.");
Daniel Dunbar100f4022009-03-06 17:50:25 +00001001 break;
Daniel Dunbar59e5a0e2009-02-03 20:00:13 +00001002
1003 case NoClass: break;
1004 case Integer:
1005 ResType = llvm::StructType::get(ResType, llvm::Type::Int64Ty, NULL);
1006 ++neededInt;
1007 break;
Daniel Dunbar100f4022009-03-06 17:50:25 +00001008
1009 // X87Up generally doesn't occur here (long double is passed in
1010 // memory), except in situations involving unions.
1011 case X87Up:
1012 case SSE:
Daniel Dunbar59e5a0e2009-02-03 20:00:13 +00001013 ResType = llvm::StructType::get(ResType, llvm::Type::DoubleTy, NULL);
1014 ++neededSSE;
1015 break;
1016
1017 // AMD64-ABI 3.2.3p3: Rule 4. If the class is SSEUP, the
1018 // eightbyte is passed in the upper half of the last used SSE
1019 // register.
1020 case SSEUp:
1021 assert(Lo == SSE && "Unexpected SSEUp classification.");
1022 ResType = llvm::VectorType::get(llvm::Type::DoubleTy, 2);
1023 break;
1024 }
1025
Daniel Dunbar644f4c32009-02-14 02:09:24 +00001026 return getCoerceResult(Ty, ResType, Context);
Daniel Dunbar59e5a0e2009-02-03 20:00:13 +00001027}
1028
1029void X86_64ABIInfo::computeInfo(CGFunctionInfo &FI, ASTContext &Context) const {
1030 FI.getReturnInfo() = classifyReturnType(FI.getReturnType(), Context);
1031
1032 // Keep track of the number of assigned registers.
1033 unsigned freeIntRegs = 6, freeSSERegs = 8;
1034
1035 // AMD64-ABI 3.2.3p3: Once arguments are classified, the registers
1036 // get assigned (in left-to-right order) for passing as follows...
1037 for (CGFunctionInfo::arg_iterator it = FI.arg_begin(), ie = FI.arg_end();
Daniel Dunbar3b4e9cd2009-02-10 17:06:09 +00001038 it != ie; ++it) {
1039 unsigned neededInt, neededSSE;
1040 it->info = classifyArgumentType(it->type, Context, neededInt, neededSSE);
1041
1042 // AMD64-ABI 3.2.3p3: If there are no registers available for any
1043 // eightbyte of an argument, the whole argument is passed on the
1044 // stack. If registers have already been assigned for some
1045 // eightbytes of such an argument, the assignments get reverted.
1046 if (freeIntRegs >= neededInt && freeSSERegs >= neededSSE) {
1047 freeIntRegs -= neededInt;
1048 freeSSERegs -= neededSSE;
1049 } else {
Daniel Dunbar245f5532009-02-22 08:17:51 +00001050 it->info = ABIArgInfo::getIndirect(0);
Daniel Dunbar3b4e9cd2009-02-10 17:06:09 +00001051 }
1052 }
Daniel Dunbard4edfe42009-01-15 18:18:40 +00001053}
1054
Daniel Dunbarbe9eb092009-02-12 09:04:14 +00001055static llvm::Value *EmitVAArgFromMemory(llvm::Value *VAListAddr,
1056 QualType Ty,
1057 CodeGenFunction &CGF) {
1058 llvm::Value *overflow_arg_area_p =
1059 CGF.Builder.CreateStructGEP(VAListAddr, 2, "overflow_arg_area_p");
1060 llvm::Value *overflow_arg_area =
1061 CGF.Builder.CreateLoad(overflow_arg_area_p, "overflow_arg_area");
1062
1063 // AMD64-ABI 3.5.7p5: Step 7. Align l->overflow_arg_area upwards to a 16
1064 // byte boundary if alignment needed by type exceeds 8 byte boundary.
Daniel Dunbarc5bcee42009-02-16 23:38:56 +00001065 uint64_t Align = CGF.getContext().getTypeAlign(Ty) / 8;
Daniel Dunbarbe9eb092009-02-12 09:04:14 +00001066 if (Align > 8) {
Daniel Dunbarc5bcee42009-02-16 23:38:56 +00001067 // Note that we follow the ABI & gcc here, even though the type
1068 // could in theory have an alignment greater than 16. This case
1069 // shouldn't ever matter in practice.
Daniel Dunbarbe9eb092009-02-12 09:04:14 +00001070
Daniel Dunbarc5bcee42009-02-16 23:38:56 +00001071 // overflow_arg_area = (overflow_arg_area + 15) & ~15;
1072 llvm::Value *Offset = llvm::ConstantInt::get(llvm::Type::Int32Ty, 15);
1073 overflow_arg_area = CGF.Builder.CreateGEP(overflow_arg_area, Offset);
1074 llvm::Value *AsInt = CGF.Builder.CreatePtrToInt(overflow_arg_area,
1075 llvm::Type::Int64Ty);
1076 llvm::Value *Mask = llvm::ConstantInt::get(llvm::Type::Int64Ty, ~15LL);
1077 overflow_arg_area =
1078 CGF.Builder.CreateIntToPtr(CGF.Builder.CreateAnd(AsInt, Mask),
1079 overflow_arg_area->getType(),
1080 "overflow_arg_area.align");
Daniel Dunbarbe9eb092009-02-12 09:04:14 +00001081 }
1082
1083 // AMD64-ABI 3.5.7p5: Step 8. Fetch type from l->overflow_arg_area.
1084 const llvm::Type *LTy = CGF.ConvertTypeForMem(Ty);
1085 llvm::Value *Res =
1086 CGF.Builder.CreateBitCast(overflow_arg_area,
1087 llvm::PointerType::getUnqual(LTy));
1088
1089 // AMD64-ABI 3.5.7p5: Step 9. Set l->overflow_arg_area to:
1090 // l->overflow_arg_area + sizeof(type).
1091 // AMD64-ABI 3.5.7p5: Step 10. Align l->overflow_arg_area upwards to
1092 // an 8 byte boundary.
1093
1094 uint64_t SizeInBytes = (CGF.getContext().getTypeSize(Ty) + 7) / 8;
1095 llvm::Value *Offset = llvm::ConstantInt::get(llvm::Type::Int32Ty,
1096 (SizeInBytes + 7) & ~7);
1097 overflow_arg_area = CGF.Builder.CreateGEP(overflow_arg_area, Offset,
1098 "overflow_arg_area.next");
1099 CGF.Builder.CreateStore(overflow_arg_area, overflow_arg_area_p);
1100
1101 // AMD64-ABI 3.5.7p5: Step 11. Return the fetched type.
1102 return Res;
1103}
1104
Daniel Dunbarb4094ea2009-02-10 20:44:09 +00001105llvm::Value *X86_64ABIInfo::EmitVAArg(llvm::Value *VAListAddr, QualType Ty,
1106 CodeGenFunction &CGF) const {
Daniel Dunbarbe9eb092009-02-12 09:04:14 +00001107 // Assume that va_list type is correct; should be pointer to LLVM type:
1108 // struct {
1109 // i32 gp_offset;
1110 // i32 fp_offset;
1111 // i8* overflow_arg_area;
1112 // i8* reg_save_area;
1113 // };
1114 unsigned neededInt, neededSSE;
1115 ABIArgInfo AI = classifyArgumentType(Ty, CGF.getContext(),
1116 neededInt, neededSSE);
1117
1118 // AMD64-ABI 3.5.7p5: Step 1. Determine whether type may be passed
1119 // in the registers. If not go to step 7.
1120 if (!neededInt && !neededSSE)
1121 return EmitVAArgFromMemory(VAListAddr, Ty, CGF);
1122
1123 // AMD64-ABI 3.5.7p5: Step 2. Compute num_gp to hold the number of
1124 // general purpose registers needed to pass type and num_fp to hold
1125 // the number of floating point registers needed.
1126
1127 // AMD64-ABI 3.5.7p5: Step 3. Verify whether arguments fit into
1128 // registers. In the case: l->gp_offset > 48 - num_gp * 8 or
1129 // l->fp_offset > 304 - num_fp * 16 go to step 7.
1130 //
1131 // NOTE: 304 is a typo, there are (6 * 8 + 8 * 16) = 176 bytes of
1132 // register save space).
1133
1134 llvm::Value *InRegs = 0;
1135 llvm::Value *gp_offset_p = 0, *gp_offset = 0;
1136 llvm::Value *fp_offset_p = 0, *fp_offset = 0;
1137 if (neededInt) {
1138 gp_offset_p = CGF.Builder.CreateStructGEP(VAListAddr, 0, "gp_offset_p");
1139 gp_offset = CGF.Builder.CreateLoad(gp_offset_p, "gp_offset");
1140 InRegs =
1141 CGF.Builder.CreateICmpULE(gp_offset,
1142 llvm::ConstantInt::get(llvm::Type::Int32Ty,
1143 48 - neededInt * 8),
1144 "fits_in_gp");
1145 }
1146
1147 if (neededSSE) {
1148 fp_offset_p = CGF.Builder.CreateStructGEP(VAListAddr, 1, "fp_offset_p");
1149 fp_offset = CGF.Builder.CreateLoad(fp_offset_p, "fp_offset");
1150 llvm::Value *FitsInFP =
1151 CGF.Builder.CreateICmpULE(fp_offset,
1152 llvm::ConstantInt::get(llvm::Type::Int32Ty,
Daniel Dunbar90dafa12009-02-18 22:19:44 +00001153 176 - neededSSE * 16),
Daniel Dunbarbe9eb092009-02-12 09:04:14 +00001154 "fits_in_fp");
Daniel Dunbarf2313462009-02-18 22:05:01 +00001155 InRegs = InRegs ? CGF.Builder.CreateAnd(InRegs, FitsInFP) : FitsInFP;
Daniel Dunbarbe9eb092009-02-12 09:04:14 +00001156 }
1157
1158 llvm::BasicBlock *InRegBlock = CGF.createBasicBlock("vaarg.in_reg");
1159 llvm::BasicBlock *InMemBlock = CGF.createBasicBlock("vaarg.in_mem");
1160 llvm::BasicBlock *ContBlock = CGF.createBasicBlock("vaarg.end");
1161 CGF.Builder.CreateCondBr(InRegs, InRegBlock, InMemBlock);
1162
1163 // Emit code to load the value if it was passed in registers.
1164
1165 CGF.EmitBlock(InRegBlock);
1166
1167 // AMD64-ABI 3.5.7p5: Step 4. Fetch type from l->reg_save_area with
1168 // an offset of l->gp_offset and/or l->fp_offset. This may require
1169 // copying to a temporary location in case the parameter is passed
1170 // in different register classes or requires an alignment greater
1171 // than 8 for general purpose registers and 16 for XMM registers.
Daniel Dunbar3e030b42009-02-18 03:44:19 +00001172 //
1173 // FIXME: This really results in shameful code when we end up
1174 // needing to collect arguments from different places; often what
1175 // should result in a simple assembling of a structure from
1176 // scattered addresses has many more loads than necessary. Can we
1177 // clean this up?
Daniel Dunbarbe9eb092009-02-12 09:04:14 +00001178 const llvm::Type *LTy = CGF.ConvertTypeForMem(Ty);
1179 llvm::Value *RegAddr =
1180 CGF.Builder.CreateLoad(CGF.Builder.CreateStructGEP(VAListAddr, 3),
1181 "reg_save_area");
1182 if (neededInt && neededSSE) {
Daniel Dunbar55e5d892009-02-13 17:46:31 +00001183 // FIXME: Cleanup.
1184 assert(AI.isCoerce() && "Unexpected ABI info for mixed regs");
1185 const llvm::StructType *ST = cast<llvm::StructType>(AI.getCoerceToType());
1186 llvm::Value *Tmp = CGF.CreateTempAlloca(ST);
1187 assert(ST->getNumElements() == 2 && "Unexpected ABI info for mixed regs");
1188 const llvm::Type *TyLo = ST->getElementType(0);
1189 const llvm::Type *TyHi = ST->getElementType(1);
1190 assert((TyLo->isFloatingPoint() ^ TyHi->isFloatingPoint()) &&
1191 "Unexpected ABI info for mixed regs");
1192 const llvm::Type *PTyLo = llvm::PointerType::getUnqual(TyLo);
1193 const llvm::Type *PTyHi = llvm::PointerType::getUnqual(TyHi);
1194 llvm::Value *GPAddr = CGF.Builder.CreateGEP(RegAddr, gp_offset);
1195 llvm::Value *FPAddr = CGF.Builder.CreateGEP(RegAddr, fp_offset);
1196 llvm::Value *RegLoAddr = TyLo->isFloatingPoint() ? FPAddr : GPAddr;
1197 llvm::Value *RegHiAddr = TyLo->isFloatingPoint() ? GPAddr : FPAddr;
1198 llvm::Value *V =
1199 CGF.Builder.CreateLoad(CGF.Builder.CreateBitCast(RegLoAddr, PTyLo));
1200 CGF.Builder.CreateStore(V, CGF.Builder.CreateStructGEP(Tmp, 0));
1201 V = CGF.Builder.CreateLoad(CGF.Builder.CreateBitCast(RegHiAddr, PTyHi));
1202 CGF.Builder.CreateStore(V, CGF.Builder.CreateStructGEP(Tmp, 1));
1203
1204 RegAddr = CGF.Builder.CreateBitCast(Tmp, llvm::PointerType::getUnqual(LTy));
Daniel Dunbarbe9eb092009-02-12 09:04:14 +00001205 } else if (neededInt) {
1206 RegAddr = CGF.Builder.CreateGEP(RegAddr, gp_offset);
1207 RegAddr = CGF.Builder.CreateBitCast(RegAddr,
1208 llvm::PointerType::getUnqual(LTy));
1209 } else {
Daniel Dunbar3e030b42009-02-18 03:44:19 +00001210 if (neededSSE == 1) {
1211 RegAddr = CGF.Builder.CreateGEP(RegAddr, fp_offset);
1212 RegAddr = CGF.Builder.CreateBitCast(RegAddr,
1213 llvm::PointerType::getUnqual(LTy));
1214 } else {
1215 assert(neededSSE == 2 && "Invalid number of needed registers!");
1216 // SSE registers are spaced 16 bytes apart in the register save
1217 // area, we need to collect the two eightbytes together.
1218 llvm::Value *RegAddrLo = CGF.Builder.CreateGEP(RegAddr, fp_offset);
1219 llvm::Value *RegAddrHi =
1220 CGF.Builder.CreateGEP(RegAddrLo,
1221 llvm::ConstantInt::get(llvm::Type::Int32Ty, 16));
1222 const llvm::Type *DblPtrTy =
1223 llvm::PointerType::getUnqual(llvm::Type::DoubleTy);
1224 const llvm::StructType *ST = llvm::StructType::get(llvm::Type::DoubleTy,
1225 llvm::Type::DoubleTy,
1226 NULL);
1227 llvm::Value *V, *Tmp = CGF.CreateTempAlloca(ST);
1228 V = CGF.Builder.CreateLoad(CGF.Builder.CreateBitCast(RegAddrLo,
1229 DblPtrTy));
1230 CGF.Builder.CreateStore(V, CGF.Builder.CreateStructGEP(Tmp, 0));
1231 V = CGF.Builder.CreateLoad(CGF.Builder.CreateBitCast(RegAddrHi,
1232 DblPtrTy));
1233 CGF.Builder.CreateStore(V, CGF.Builder.CreateStructGEP(Tmp, 1));
1234 RegAddr = CGF.Builder.CreateBitCast(Tmp,
1235 llvm::PointerType::getUnqual(LTy));
1236 }
Daniel Dunbarbe9eb092009-02-12 09:04:14 +00001237 }
1238
1239 // AMD64-ABI 3.5.7p5: Step 5. Set:
1240 // l->gp_offset = l->gp_offset + num_gp * 8
1241 // l->fp_offset = l->fp_offset + num_fp * 16.
1242 if (neededInt) {
1243 llvm::Value *Offset = llvm::ConstantInt::get(llvm::Type::Int32Ty,
1244 neededInt * 8);
1245 CGF.Builder.CreateStore(CGF.Builder.CreateAdd(gp_offset, Offset),
1246 gp_offset_p);
1247 }
1248 if (neededSSE) {
1249 llvm::Value *Offset = llvm::ConstantInt::get(llvm::Type::Int32Ty,
1250 neededSSE * 16);
1251 CGF.Builder.CreateStore(CGF.Builder.CreateAdd(fp_offset, Offset),
1252 fp_offset_p);
1253 }
1254 CGF.EmitBranch(ContBlock);
1255
1256 // Emit code to load the value if it was passed in memory.
1257
1258 CGF.EmitBlock(InMemBlock);
1259 llvm::Value *MemAddr = EmitVAArgFromMemory(VAListAddr, Ty, CGF);
1260
1261 // Return the appropriate result.
1262
1263 CGF.EmitBlock(ContBlock);
1264 llvm::PHINode *ResAddr = CGF.Builder.CreatePHI(RegAddr->getType(),
1265 "vaarg.addr");
1266 ResAddr->reserveOperandSpace(2);
1267 ResAddr->addIncoming(RegAddr, InRegBlock);
1268 ResAddr->addIncoming(MemAddr, InMemBlock);
1269
1270 return ResAddr;
Daniel Dunbarb4094ea2009-02-10 20:44:09 +00001271}
1272
Eli Friedmana027ea92009-03-29 00:15:25 +00001273class ARMABIInfo : public ABIInfo {
1274 ABIArgInfo classifyReturnType(QualType RetTy,
1275 ASTContext &Context) const;
1276
1277 ABIArgInfo classifyArgumentType(QualType RetTy,
1278 ASTContext &Context) const;
1279
1280 virtual void computeInfo(CGFunctionInfo &FI, ASTContext &Context) const;
1281
1282 virtual llvm::Value *EmitVAArg(llvm::Value *VAListAddr, QualType Ty,
1283 CodeGenFunction &CGF) const;
1284};
1285
1286void ARMABIInfo::computeInfo(CGFunctionInfo &FI, ASTContext &Context) const {
1287 FI.getReturnInfo() = classifyReturnType(FI.getReturnType(), Context);
1288 for (CGFunctionInfo::arg_iterator it = FI.arg_begin(), ie = FI.arg_end();
1289 it != ie; ++it) {
1290 it->info = classifyArgumentType(it->type, Context);
1291 }
1292}
1293
1294ABIArgInfo ARMABIInfo::classifyArgumentType(QualType Ty,
1295 ASTContext &Context) const {
1296 if (!CodeGenFunction::hasAggregateLLVMType(Ty)) {
1297 return ABIArgInfo::getDirect();
1298 }
1299 // FIXME: This is kind of nasty... but there isn't much choice
1300 // because the ARM backend doesn't support byval.
1301 // FIXME: This doesn't handle alignment > 64 bits.
1302 const llvm::Type* ElemTy;
1303 unsigned SizeRegs;
1304 if (Context.getTypeAlign(Ty) > 32) {
1305 ElemTy = llvm::Type::Int64Ty;
1306 SizeRegs = (Context.getTypeSize(Ty) + 63) / 64;
1307 } else {
1308 ElemTy = llvm::Type::Int32Ty;
1309 SizeRegs = (Context.getTypeSize(Ty) + 31) / 32;
1310 }
1311 std::vector<const llvm::Type*> LLVMFields;
1312 LLVMFields.push_back(llvm::ArrayType::get(ElemTy, SizeRegs));
1313 const llvm::Type* STy = llvm::StructType::get(LLVMFields, true);
1314 return ABIArgInfo::getCoerce(STy);
1315}
1316
1317ABIArgInfo ARMABIInfo::classifyReturnType(QualType RetTy,
1318 ASTContext &Context) const {
1319 if (RetTy->isVoidType()) {
1320 return ABIArgInfo::getIgnore();
1321 } else if (CodeGenFunction::hasAggregateLLVMType(RetTy)) {
1322 // Aggregates <= 4 bytes are returned in r0; other aggregates
1323 // are returned indirectly.
1324 uint64_t Size = Context.getTypeSize(RetTy);
1325 if (Size <= 32)
1326 return ABIArgInfo::getCoerce(llvm::Type::Int32Ty);
1327 return ABIArgInfo::getIndirect(0);
1328 } else {
1329 return ABIArgInfo::getDirect();
1330 }
1331}
1332
1333llvm::Value *ARMABIInfo::EmitVAArg(llvm::Value *VAListAddr, QualType Ty,
1334 CodeGenFunction &CGF) const {
1335 // FIXME: Need to handle alignment
1336 const llvm::Type *BP = llvm::PointerType::getUnqual(llvm::Type::Int8Ty);
1337 const llvm::Type *BPP = llvm::PointerType::getUnqual(BP);
1338
1339 CGBuilderTy &Builder = CGF.Builder;
1340 llvm::Value *VAListAddrAsBPP = Builder.CreateBitCast(VAListAddr, BPP,
1341 "ap");
1342 llvm::Value *Addr = Builder.CreateLoad(VAListAddrAsBPP, "ap.cur");
1343 llvm::Type *PTy =
1344 llvm::PointerType::getUnqual(CGF.ConvertType(Ty));
1345 llvm::Value *AddrTyped = Builder.CreateBitCast(Addr, PTy);
1346
1347 uint64_t Offset =
1348 llvm::RoundUpToAlignment(CGF.getContext().getTypeSize(Ty) / 8, 4);
1349 llvm::Value *NextAddr =
1350 Builder.CreateGEP(Addr,
1351 llvm::ConstantInt::get(llvm::Type::Int32Ty, Offset),
1352 "ap.next");
1353 Builder.CreateStore(NextAddr, VAListAddrAsBPP);
1354
1355 return AddrTyped;
1356}
1357
Daniel Dunbar6b1da0e2008-10-13 17:02:26 +00001358ABIArgInfo DefaultABIInfo::classifyReturnType(QualType RetTy,
Daniel Dunbarb4094ea2009-02-10 20:44:09 +00001359 ASTContext &Context) const {
Daniel Dunbar0bcc5212009-02-03 06:30:17 +00001360 if (RetTy->isVoidType()) {
1361 return ABIArgInfo::getIgnore();
1362 } else if (CodeGenFunction::hasAggregateLLVMType(RetTy)) {
Daniel Dunbar11e383a2009-02-05 08:00:50 +00001363 return ABIArgInfo::getIndirect(0);
Daniel Dunbar0bcc5212009-02-03 06:30:17 +00001364 } else {
1365 return ABIArgInfo::getDirect();
1366 }
Daniel Dunbar6b1da0e2008-10-13 17:02:26 +00001367}
1368
1369ABIArgInfo DefaultABIInfo::classifyArgumentType(QualType Ty,
Daniel Dunbarb4094ea2009-02-10 20:44:09 +00001370 ASTContext &Context) const {
Daniel Dunbar0bcc5212009-02-03 06:30:17 +00001371 if (CodeGenFunction::hasAggregateLLVMType(Ty)) {
Daniel Dunbar11e383a2009-02-05 08:00:50 +00001372 return ABIArgInfo::getIndirect(0);
Daniel Dunbar0bcc5212009-02-03 06:30:17 +00001373 } else {
1374 return ABIArgInfo::getDirect();
1375 }
Daniel Dunbar6b1da0e2008-10-13 17:02:26 +00001376}
1377
Daniel Dunbarb4094ea2009-02-10 20:44:09 +00001378llvm::Value *DefaultABIInfo::EmitVAArg(llvm::Value *VAListAddr, QualType Ty,
1379 CodeGenFunction &CGF) const {
1380 return 0;
1381}
1382
Daniel Dunbar6b1da0e2008-10-13 17:02:26 +00001383const ABIInfo &CodeGenTypes::getABIInfo() const {
1384 if (TheABIInfo)
1385 return *TheABIInfo;
1386
1387 // For now we just cache this in the CodeGenTypes and don't bother
1388 // to free it.
1389 const char *TargetPrefix = getContext().Target.getTargetPrefix();
1390 if (strcmp(TargetPrefix, "x86") == 0) {
Eli Friedman9fd58e82009-03-23 23:26:24 +00001391 bool IsDarwin = strstr(getContext().Target.getTargetTriple(), "darwin");
Daniel Dunbard4edfe42009-01-15 18:18:40 +00001392 switch (getContext().Target.getPointerWidth(0)) {
1393 case 32:
Eli Friedman9fd58e82009-03-23 23:26:24 +00001394 return *(TheABIInfo = new X86_32ABIInfo(IsDarwin));
Daniel Dunbard4edfe42009-01-15 18:18:40 +00001395 case 64:
Daniel Dunbar11a76ed2009-01-30 18:47:53 +00001396 return *(TheABIInfo = new X86_64ABIInfo());
Daniel Dunbard4edfe42009-01-15 18:18:40 +00001397 }
Eli Friedmana027ea92009-03-29 00:15:25 +00001398 } else if (strcmp(TargetPrefix, "arm") == 0) {
1399 // FIXME: Support for OABI?
1400 return *(TheABIInfo = new ARMABIInfo());
Daniel Dunbar6b1da0e2008-10-13 17:02:26 +00001401 }
1402
1403 return *(TheABIInfo = new DefaultABIInfo);
1404}
1405
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001406/***/
1407
Daniel Dunbar88c2fa92009-02-03 05:31:23 +00001408CGFunctionInfo::CGFunctionInfo(QualType ResTy,
1409 const llvm::SmallVector<QualType, 16> &ArgTys) {
1410 NumArgs = ArgTys.size();
1411 Args = new ArgInfo[1 + NumArgs];
1412 Args[0].type = ResTy;
1413 for (unsigned i = 0; i < NumArgs; ++i)
1414 Args[1 + i].type = ArgTys[i];
1415}
1416
1417/***/
1418
Daniel Dunbar56273772008-09-17 00:51:38 +00001419void CodeGenTypes::GetExpandedTypes(QualType Ty,
1420 std::vector<const llvm::Type*> &ArgTys) {
1421 const RecordType *RT = Ty->getAsStructureType();
1422 assert(RT && "Can only expand structure types.");
1423 const RecordDecl *RD = RT->getDecl();
1424 assert(!RD->hasFlexibleArrayMember() &&
1425 "Cannot expand structure with flexible array.");
1426
Douglas Gregorf8d49f62009-01-09 17:18:27 +00001427 for (RecordDecl::field_iterator i = RD->field_begin(),
Daniel Dunbar56273772008-09-17 00:51:38 +00001428 e = RD->field_end(); i != e; ++i) {
1429 const FieldDecl *FD = *i;
1430 assert(!FD->isBitField() &&
1431 "Cannot expand structure with bit-field members.");
1432
1433 QualType FT = FD->getType();
1434 if (CodeGenFunction::hasAggregateLLVMType(FT)) {
1435 GetExpandedTypes(FT, ArgTys);
1436 } else {
1437 ArgTys.push_back(ConvertType(FT));
1438 }
1439 }
1440}
1441
1442llvm::Function::arg_iterator
1443CodeGenFunction::ExpandTypeFromArgs(QualType Ty, LValue LV,
1444 llvm::Function::arg_iterator AI) {
1445 const RecordType *RT = Ty->getAsStructureType();
1446 assert(RT && "Can only expand structure types.");
1447
1448 RecordDecl *RD = RT->getDecl();
1449 assert(LV.isSimple() &&
1450 "Unexpected non-simple lvalue during struct expansion.");
1451 llvm::Value *Addr = LV.getAddress();
1452 for (RecordDecl::field_iterator i = RD->field_begin(),
1453 e = RD->field_end(); i != e; ++i) {
1454 FieldDecl *FD = *i;
1455 QualType FT = FD->getType();
1456
1457 // FIXME: What are the right qualifiers here?
1458 LValue LV = EmitLValueForField(Addr, FD, false, 0);
1459 if (CodeGenFunction::hasAggregateLLVMType(FT)) {
1460 AI = ExpandTypeFromArgs(FT, LV, AI);
1461 } else {
1462 EmitStoreThroughLValue(RValue::get(AI), LV, FT);
1463 ++AI;
1464 }
1465 }
1466
1467 return AI;
1468}
1469
1470void
1471CodeGenFunction::ExpandTypeToArgs(QualType Ty, RValue RV,
1472 llvm::SmallVector<llvm::Value*, 16> &Args) {
1473 const RecordType *RT = Ty->getAsStructureType();
1474 assert(RT && "Can only expand structure types.");
1475
1476 RecordDecl *RD = RT->getDecl();
1477 assert(RV.isAggregate() && "Unexpected rvalue during struct expansion");
1478 llvm::Value *Addr = RV.getAggregateAddr();
1479 for (RecordDecl::field_iterator i = RD->field_begin(),
1480 e = RD->field_end(); i != e; ++i) {
1481 FieldDecl *FD = *i;
1482 QualType FT = FD->getType();
1483
1484 // FIXME: What are the right qualifiers here?
1485 LValue LV = EmitLValueForField(Addr, FD, false, 0);
1486 if (CodeGenFunction::hasAggregateLLVMType(FT)) {
1487 ExpandTypeToArgs(FT, RValue::getAggregate(LV.getAddress()), Args);
1488 } else {
1489 RValue RV = EmitLoadOfLValue(LV, FT);
1490 assert(RV.isScalar() &&
1491 "Unexpected non-scalar rvalue during struct expansion.");
1492 Args.push_back(RV.getScalarVal());
1493 }
1494 }
1495}
1496
Daniel Dunbar275e10d2009-02-02 19:06:38 +00001497/// CreateCoercedLoad - Create a load from \arg SrcPtr interpreted as
1498/// a pointer to an object of type \arg Ty.
1499///
1500/// This safely handles the case when the src type is smaller than the
1501/// destination type; in this situation the values of bits which not
1502/// present in the src are undefined.
1503static llvm::Value *CreateCoercedLoad(llvm::Value *SrcPtr,
1504 const llvm::Type *Ty,
1505 CodeGenFunction &CGF) {
1506 const llvm::Type *SrcTy =
1507 cast<llvm::PointerType>(SrcPtr->getType())->getElementType();
1508 uint64_t SrcSize = CGF.CGM.getTargetData().getTypePaddedSize(SrcTy);
1509 uint64_t DstSize = CGF.CGM.getTargetData().getTypePaddedSize(Ty);
1510
Daniel Dunbarb225be42009-02-03 05:59:18 +00001511 // If load is legal, just bitcast the src pointer.
Daniel Dunbar275e10d2009-02-02 19:06:38 +00001512 if (SrcSize == DstSize) {
1513 llvm::Value *Casted =
1514 CGF.Builder.CreateBitCast(SrcPtr, llvm::PointerType::getUnqual(Ty));
Daniel Dunbar386621f2009-02-07 02:46:03 +00001515 llvm::LoadInst *Load = CGF.Builder.CreateLoad(Casted);
1516 // FIXME: Use better alignment / avoid requiring aligned load.
1517 Load->setAlignment(1);
1518 return Load;
Daniel Dunbar275e10d2009-02-02 19:06:38 +00001519 } else {
1520 assert(SrcSize < DstSize && "Coercion is losing source bits!");
1521
1522 // Otherwise do coercion through memory. This is stupid, but
1523 // simple.
1524 llvm::Value *Tmp = CGF.CreateTempAlloca(Ty);
1525 llvm::Value *Casted =
1526 CGF.Builder.CreateBitCast(Tmp, llvm::PointerType::getUnqual(SrcTy));
Daniel Dunbar386621f2009-02-07 02:46:03 +00001527 llvm::StoreInst *Store =
1528 CGF.Builder.CreateStore(CGF.Builder.CreateLoad(SrcPtr), Casted);
1529 // FIXME: Use better alignment / avoid requiring aligned store.
1530 Store->setAlignment(1);
Daniel Dunbar275e10d2009-02-02 19:06:38 +00001531 return CGF.Builder.CreateLoad(Tmp);
1532 }
1533}
1534
1535/// CreateCoercedStore - Create a store to \arg DstPtr from \arg Src,
1536/// where the source and destination may have different types.
1537///
1538/// This safely handles the case when the src type is larger than the
1539/// destination type; the upper bits of the src will be lost.
1540static void CreateCoercedStore(llvm::Value *Src,
1541 llvm::Value *DstPtr,
1542 CodeGenFunction &CGF) {
1543 const llvm::Type *SrcTy = Src->getType();
1544 const llvm::Type *DstTy =
1545 cast<llvm::PointerType>(DstPtr->getType())->getElementType();
1546
1547 uint64_t SrcSize = CGF.CGM.getTargetData().getTypePaddedSize(SrcTy);
1548 uint64_t DstSize = CGF.CGM.getTargetData().getTypePaddedSize(DstTy);
1549
Daniel Dunbar88c2fa92009-02-03 05:31:23 +00001550 // If store is legal, just bitcast the src pointer.
Daniel Dunbar275e10d2009-02-02 19:06:38 +00001551 if (SrcSize == DstSize) {
1552 llvm::Value *Casted =
1553 CGF.Builder.CreateBitCast(DstPtr, llvm::PointerType::getUnqual(SrcTy));
Daniel Dunbar386621f2009-02-07 02:46:03 +00001554 // FIXME: Use better alignment / avoid requiring aligned store.
1555 CGF.Builder.CreateStore(Src, Casted)->setAlignment(1);
Daniel Dunbar275e10d2009-02-02 19:06:38 +00001556 } else {
1557 assert(SrcSize > DstSize && "Coercion is missing bits!");
1558
1559 // Otherwise do coercion through memory. This is stupid, but
1560 // simple.
1561 llvm::Value *Tmp = CGF.CreateTempAlloca(SrcTy);
1562 CGF.Builder.CreateStore(Src, Tmp);
1563 llvm::Value *Casted =
1564 CGF.Builder.CreateBitCast(Tmp, llvm::PointerType::getUnqual(DstTy));
Daniel Dunbar386621f2009-02-07 02:46:03 +00001565 llvm::LoadInst *Load = CGF.Builder.CreateLoad(Casted);
1566 // FIXME: Use better alignment / avoid requiring aligned load.
1567 Load->setAlignment(1);
1568 CGF.Builder.CreateStore(Load, DstPtr);
Daniel Dunbar275e10d2009-02-02 19:06:38 +00001569 }
1570}
1571
Daniel Dunbar56273772008-09-17 00:51:38 +00001572/***/
1573
Daniel Dunbar88b53962009-02-02 22:03:45 +00001574bool CodeGenModule::ReturnTypeUsesSret(const CGFunctionInfo &FI) {
Daniel Dunbar11e383a2009-02-05 08:00:50 +00001575 return FI.getReturnInfo().isIndirect();
Daniel Dunbarbb36d332009-02-02 21:43:58 +00001576}
1577
Daniel Dunbar45c25ba2008-09-10 04:01:49 +00001578const llvm::FunctionType *
Daniel Dunbarbb36d332009-02-02 21:43:58 +00001579CodeGenTypes::GetFunctionType(const CGFunctionInfo &FI, bool IsVariadic) {
Daniel Dunbar45c25ba2008-09-10 04:01:49 +00001580 std::vector<const llvm::Type*> ArgTys;
1581
1582 const llvm::Type *ResultType = 0;
1583
Daniel Dunbara0a99e02009-02-02 23:43:58 +00001584 QualType RetTy = FI.getReturnType();
Daniel Dunbarb225be42009-02-03 05:59:18 +00001585 const ABIArgInfo &RetAI = FI.getReturnInfo();
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001586 switch (RetAI.getKind()) {
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001587 case ABIArgInfo::Expand:
1588 assert(0 && "Invalid ABI kind for return argument");
1589
Daniel Dunbar46327aa2009-02-03 06:17:37 +00001590 case ABIArgInfo::Direct:
1591 ResultType = ConvertType(RetTy);
1592 break;
1593
Daniel Dunbar11e383a2009-02-05 08:00:50 +00001594 case ABIArgInfo::Indirect: {
1595 assert(!RetAI.getIndirectAlign() && "Align unused on indirect return.");
Daniel Dunbar45c25ba2008-09-10 04:01:49 +00001596 ResultType = llvm::Type::VoidTy;
Daniel Dunbar62d5c1b2008-09-10 07:00:50 +00001597 const llvm::Type *STy = ConvertType(RetTy);
Daniel Dunbar45c25ba2008-09-10 04:01:49 +00001598 ArgTys.push_back(llvm::PointerType::get(STy, RetTy.getAddressSpace()));
1599 break;
1600 }
1601
Daniel Dunbar11434922009-01-26 21:26:08 +00001602 case ABIArgInfo::Ignore:
1603 ResultType = llvm::Type::VoidTy;
1604 break;
1605
Daniel Dunbar45c25ba2008-09-10 04:01:49 +00001606 case ABIArgInfo::Coerce:
Daniel Dunbar639ffe42008-09-10 07:04:09 +00001607 ResultType = RetAI.getCoerceToType();
Daniel Dunbar45c25ba2008-09-10 04:01:49 +00001608 break;
1609 }
1610
Daniel Dunbar88c2fa92009-02-03 05:31:23 +00001611 for (CGFunctionInfo::const_arg_iterator it = FI.arg_begin(),
1612 ie = FI.arg_end(); it != ie; ++it) {
1613 const ABIArgInfo &AI = it->info;
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001614
1615 switch (AI.getKind()) {
Daniel Dunbar11434922009-01-26 21:26:08 +00001616 case ABIArgInfo::Ignore:
1617 break;
1618
Daniel Dunbar56273772008-09-17 00:51:38 +00001619 case ABIArgInfo::Coerce:
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +00001620 ArgTys.push_back(AI.getCoerceToType());
1621 break;
1622
Daniel Dunbaradc8bdd2009-02-10 01:51:39 +00001623 case ABIArgInfo::Indirect: {
Daniel Dunbar11e383a2009-02-05 08:00:50 +00001624 // indirect arguments are always on the stack, which is addr space #0.
Daniel Dunbaradc8bdd2009-02-10 01:51:39 +00001625 const llvm::Type *LTy = ConvertTypeForMem(it->type);
1626 ArgTys.push_back(llvm::PointerType::getUnqual(LTy));
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001627 break;
Daniel Dunbaradc8bdd2009-02-10 01:51:39 +00001628 }
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001629
Daniel Dunbar46327aa2009-02-03 06:17:37 +00001630 case ABIArgInfo::Direct:
Daniel Dunbar1f745982009-02-05 09:16:39 +00001631 ArgTys.push_back(ConvertType(it->type));
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001632 break;
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001633
1634 case ABIArgInfo::Expand:
Daniel Dunbar88c2fa92009-02-03 05:31:23 +00001635 GetExpandedTypes(it->type, ArgTys);
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001636 break;
1637 }
Daniel Dunbar45c25ba2008-09-10 04:01:49 +00001638 }
1639
Daniel Dunbarbb36d332009-02-02 21:43:58 +00001640 return llvm::FunctionType::get(ResultType, ArgTys, IsVariadic);
Daniel Dunbar3913f182008-09-09 23:48:28 +00001641}
1642
Daniel Dunbara0a99e02009-02-02 23:43:58 +00001643void CodeGenModule::ConstructAttributeList(const CGFunctionInfo &FI,
Daniel Dunbar88b53962009-02-02 22:03:45 +00001644 const Decl *TargetDecl,
Devang Patel761d7f72008-09-25 21:02:23 +00001645 AttributeListType &PAL) {
Daniel Dunbar5323a4b2008-09-10 00:32:18 +00001646 unsigned FuncAttrs = 0;
Devang Patela2c69122008-09-26 22:53:57 +00001647 unsigned RetAttrs = 0;
Daniel Dunbar5323a4b2008-09-10 00:32:18 +00001648
Anton Korobeynikov1102f422009-04-04 00:49:24 +00001649 // FIXME: handle sseregparm someday...
Daniel Dunbar5323a4b2008-09-10 00:32:18 +00001650 if (TargetDecl) {
1651 if (TargetDecl->getAttr<NoThrowAttr>())
Devang Patel761d7f72008-09-25 21:02:23 +00001652 FuncAttrs |= llvm::Attribute::NoUnwind;
Daniel Dunbar5323a4b2008-09-10 00:32:18 +00001653 if (TargetDecl->getAttr<NoReturnAttr>())
Devang Patel761d7f72008-09-25 21:02:23 +00001654 FuncAttrs |= llvm::Attribute::NoReturn;
Anders Carlsson232eb7d2008-10-05 23:32:53 +00001655 if (TargetDecl->getAttr<PureAttr>())
1656 FuncAttrs |= llvm::Attribute::ReadOnly;
1657 if (TargetDecl->getAttr<ConstAttr>())
1658 FuncAttrs |= llvm::Attribute::ReadNone;
Daniel Dunbar5323a4b2008-09-10 00:32:18 +00001659 }
1660
Daniel Dunbara0a99e02009-02-02 23:43:58 +00001661 QualType RetTy = FI.getReturnType();
Daniel Dunbar5323a4b2008-09-10 00:32:18 +00001662 unsigned Index = 1;
Daniel Dunbarb225be42009-02-03 05:59:18 +00001663 const ABIArgInfo &RetAI = FI.getReturnInfo();
Daniel Dunbar45c25ba2008-09-10 04:01:49 +00001664 switch (RetAI.getKind()) {
Daniel Dunbar46327aa2009-02-03 06:17:37 +00001665 case ABIArgInfo::Direct:
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001666 if (RetTy->isPromotableIntegerType()) {
1667 if (RetTy->isSignedIntegerType()) {
Devang Patela2c69122008-09-26 22:53:57 +00001668 RetAttrs |= llvm::Attribute::SExt;
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001669 } else if (RetTy->isUnsignedIntegerType()) {
Devang Patela2c69122008-09-26 22:53:57 +00001670 RetAttrs |= llvm::Attribute::ZExt;
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001671 }
1672 }
1673 break;
1674
Daniel Dunbar11e383a2009-02-05 08:00:50 +00001675 case ABIArgInfo::Indirect:
Devang Patel761d7f72008-09-25 21:02:23 +00001676 PAL.push_back(llvm::AttributeWithIndex::get(Index,
Daniel Dunbar725ad312009-01-31 02:19:00 +00001677 llvm::Attribute::StructRet |
1678 llvm::Attribute::NoAlias));
Daniel Dunbar5323a4b2008-09-10 00:32:18 +00001679 ++Index;
Daniel Dunbar0ac86f02009-03-18 19:51:01 +00001680 // sret disables readnone and readonly
1681 FuncAttrs &= ~(llvm::Attribute::ReadOnly |
1682 llvm::Attribute::ReadNone);
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001683 break;
1684
Daniel Dunbar11434922009-01-26 21:26:08 +00001685 case ABIArgInfo::Ignore:
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001686 case ABIArgInfo::Coerce:
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001687 break;
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001688
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001689 case ABIArgInfo::Expand:
1690 assert(0 && "Invalid ABI kind for return argument");
Daniel Dunbar5323a4b2008-09-10 00:32:18 +00001691 }
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001692
Devang Patela2c69122008-09-26 22:53:57 +00001693 if (RetAttrs)
1694 PAL.push_back(llvm::AttributeWithIndex::get(0, RetAttrs));
Anton Korobeynikov1102f422009-04-04 00:49:24 +00001695
1696 // FIXME: we need to honour command line settings also...
1697 // FIXME: RegParm should be reduced in case of nested functions and/or global
1698 // register variable.
1699 signed RegParm = 0;
1700 if (TargetDecl)
1701 if (const RegparmAttr *RegParmAttr = TargetDecl->getAttr<RegparmAttr>())
1702 RegParm = RegParmAttr->getNumParams();
1703
1704 unsigned PointerWidth = getContext().Target.getPointerWidth(0);
Daniel Dunbar88c2fa92009-02-03 05:31:23 +00001705 for (CGFunctionInfo::const_arg_iterator it = FI.arg_begin(),
1706 ie = FI.arg_end(); it != ie; ++it) {
1707 QualType ParamType = it->type;
1708 const ABIArgInfo &AI = it->info;
Devang Patel761d7f72008-09-25 21:02:23 +00001709 unsigned Attributes = 0;
Anton Korobeynikov1102f422009-04-04 00:49:24 +00001710
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001711 switch (AI.getKind()) {
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +00001712 case ABIArgInfo::Coerce:
1713 break;
1714
Daniel Dunbar11e383a2009-02-05 08:00:50 +00001715 case ABIArgInfo::Indirect:
Devang Patel761d7f72008-09-25 21:02:23 +00001716 Attributes |= llvm::Attribute::ByVal;
Anton Korobeynikov1102f422009-04-04 00:49:24 +00001717 Attributes |=
Daniel Dunbar11e383a2009-02-05 08:00:50 +00001718 llvm::Attribute::constructAlignmentFromInt(AI.getIndirectAlign());
Daniel Dunbar0ac86f02009-03-18 19:51:01 +00001719 // byval disables readnone and readonly.
1720 FuncAttrs &= ~(llvm::Attribute::ReadOnly |
1721 llvm::Attribute::ReadNone);
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001722 break;
1723
Daniel Dunbar46327aa2009-02-03 06:17:37 +00001724 case ABIArgInfo::Direct:
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001725 if (ParamType->isPromotableIntegerType()) {
1726 if (ParamType->isSignedIntegerType()) {
Devang Patel761d7f72008-09-25 21:02:23 +00001727 Attributes |= llvm::Attribute::SExt;
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001728 } else if (ParamType->isUnsignedIntegerType()) {
Devang Patel761d7f72008-09-25 21:02:23 +00001729 Attributes |= llvm::Attribute::ZExt;
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001730 }
Daniel Dunbar5323a4b2008-09-10 00:32:18 +00001731 }
Anton Korobeynikov1102f422009-04-04 00:49:24 +00001732 if (RegParm > 0 &&
1733 (ParamType->isIntegerType() || ParamType->isPointerType())) {
1734 RegParm -=
1735 (Context.getTypeSize(ParamType) + PointerWidth - 1) / PointerWidth;
1736 if (RegParm >= 0)
1737 Attributes |= llvm::Attribute::InReg;
1738 }
1739 // FIXME: handle sseregparm someday...
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001740 break;
Anton Korobeynikov1102f422009-04-04 00:49:24 +00001741
Daniel Dunbar11434922009-01-26 21:26:08 +00001742 case ABIArgInfo::Ignore:
1743 // Skip increment, no matching LLVM parameter.
1744 continue;
1745
Daniel Dunbar56273772008-09-17 00:51:38 +00001746 case ABIArgInfo::Expand: {
1747 std::vector<const llvm::Type*> Tys;
1748 // FIXME: This is rather inefficient. Do we ever actually need
1749 // to do anything here? The result should be just reconstructed
1750 // on the other side, so extension should be a non-issue.
1751 getTypes().GetExpandedTypes(ParamType, Tys);
1752 Index += Tys.size();
1753 continue;
1754 }
Daniel Dunbar5323a4b2008-09-10 00:32:18 +00001755 }
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001756
Devang Patel761d7f72008-09-25 21:02:23 +00001757 if (Attributes)
1758 PAL.push_back(llvm::AttributeWithIndex::get(Index, Attributes));
Daniel Dunbar56273772008-09-17 00:51:38 +00001759 ++Index;
Daniel Dunbar5323a4b2008-09-10 00:32:18 +00001760 }
Devang Patela2c69122008-09-26 22:53:57 +00001761 if (FuncAttrs)
1762 PAL.push_back(llvm::AttributeWithIndex::get(~0, FuncAttrs));
Daniel Dunbar5323a4b2008-09-10 00:32:18 +00001763}
1764
Daniel Dunbar88b53962009-02-02 22:03:45 +00001765void CodeGenFunction::EmitFunctionProlog(const CGFunctionInfo &FI,
1766 llvm::Function *Fn,
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001767 const FunctionArgList &Args) {
Daniel Dunbar5251afa2009-02-03 06:02:10 +00001768 // FIXME: We no longer need the types from FunctionArgList; lift up
1769 // and simplify.
1770
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001771 // Emit allocs for param decls. Give the LLVM Argument nodes names.
1772 llvm::Function::arg_iterator AI = Fn->arg_begin();
1773
1774 // Name the struct return argument.
Daniel Dunbar88b53962009-02-02 22:03:45 +00001775 if (CGM.ReturnTypeUsesSret(FI)) {
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001776 AI->setName("agg.result");
1777 ++AI;
1778 }
Daniel Dunbarb225be42009-02-03 05:59:18 +00001779
Daniel Dunbar4b5f0a42009-02-04 21:17:21 +00001780 assert(FI.arg_size() == Args.size() &&
1781 "Mismatch between function signature & arguments.");
Daniel Dunbarb225be42009-02-03 05:59:18 +00001782 CGFunctionInfo::const_arg_iterator info_it = FI.arg_begin();
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001783 for (FunctionArgList::const_iterator i = Args.begin(), e = Args.end();
Daniel Dunbarb225be42009-02-03 05:59:18 +00001784 i != e; ++i, ++info_it) {
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001785 const VarDecl *Arg = i->first;
Daniel Dunbarb225be42009-02-03 05:59:18 +00001786 QualType Ty = info_it->type;
1787 const ABIArgInfo &ArgI = info_it->info;
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001788
1789 switch (ArgI.getKind()) {
Daniel Dunbar1f745982009-02-05 09:16:39 +00001790 case ABIArgInfo::Indirect: {
1791 llvm::Value* V = AI;
1792 if (hasAggregateLLVMType(Ty)) {
1793 // Do nothing, aggregates and complex variables are accessed by
1794 // reference.
1795 } else {
1796 // Load scalar value from indirect argument.
Daniel Dunbaradc8bdd2009-02-10 01:51:39 +00001797 V = EmitLoadOfScalar(V, false, Ty);
Daniel Dunbar1f745982009-02-05 09:16:39 +00001798 if (!getContext().typesAreCompatible(Ty, Arg->getType())) {
1799 // This must be a promotion, for something like
1800 // "void a(x) short x; {..."
1801 V = EmitScalarConversion(V, Ty, Arg->getType());
1802 }
1803 }
1804 EmitParmDecl(*Arg, V);
1805 break;
1806 }
1807
Daniel Dunbar46327aa2009-02-03 06:17:37 +00001808 case ABIArgInfo::Direct: {
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001809 assert(AI != Fn->arg_end() && "Argument mismatch!");
1810 llvm::Value* V = AI;
Daniel Dunbar2fbf2f52009-02-05 11:13:54 +00001811 if (hasAggregateLLVMType(Ty)) {
1812 // Create a temporary alloca to hold the argument; the rest of
1813 // codegen expects to access aggregates & complex values by
1814 // reference.
Daniel Dunbaradc8bdd2009-02-10 01:51:39 +00001815 V = CreateTempAlloca(ConvertTypeForMem(Ty));
Daniel Dunbar2fbf2f52009-02-05 11:13:54 +00001816 Builder.CreateStore(AI, V);
1817 } else {
1818 if (!getContext().typesAreCompatible(Ty, Arg->getType())) {
1819 // This must be a promotion, for something like
1820 // "void a(x) short x; {..."
1821 V = EmitScalarConversion(V, Ty, Arg->getType());
1822 }
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001823 }
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001824 EmitParmDecl(*Arg, V);
1825 break;
1826 }
Daniel Dunbar56273772008-09-17 00:51:38 +00001827
1828 case ABIArgInfo::Expand: {
Daniel Dunbarb225be42009-02-03 05:59:18 +00001829 // If this structure was expanded into multiple arguments then
Daniel Dunbar56273772008-09-17 00:51:38 +00001830 // we need to create a temporary and reconstruct it from the
1831 // arguments.
Chris Lattner39f34e92008-11-24 04:00:27 +00001832 std::string Name = Arg->getNameAsString();
Daniel Dunbaradc8bdd2009-02-10 01:51:39 +00001833 llvm::Value *Temp = CreateTempAlloca(ConvertTypeForMem(Ty),
Daniel Dunbar56273772008-09-17 00:51:38 +00001834 (Name + ".addr").c_str());
1835 // FIXME: What are the right qualifiers here?
1836 llvm::Function::arg_iterator End =
1837 ExpandTypeFromArgs(Ty, LValue::MakeAddr(Temp,0), AI);
1838 EmitParmDecl(*Arg, Temp);
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001839
Daniel Dunbar56273772008-09-17 00:51:38 +00001840 // Name the arguments used in expansion and increment AI.
1841 unsigned Index = 0;
1842 for (; AI != End; ++AI, ++Index)
1843 AI->setName(Name + "." + llvm::utostr(Index));
1844 continue;
1845 }
Daniel Dunbar11434922009-01-26 21:26:08 +00001846
1847 case ABIArgInfo::Ignore:
Daniel Dunbar8b979d92009-02-10 00:06:49 +00001848 // Initialize the local variable appropriately.
1849 if (hasAggregateLLVMType(Ty)) {
Daniel Dunbaradc8bdd2009-02-10 01:51:39 +00001850 EmitParmDecl(*Arg, CreateTempAlloca(ConvertTypeForMem(Ty)));
Daniel Dunbar8b979d92009-02-10 00:06:49 +00001851 } else {
1852 EmitParmDecl(*Arg, llvm::UndefValue::get(ConvertType(Arg->getType())));
1853 }
1854
Daniel Dunbar59e5a0e2009-02-03 20:00:13 +00001855 // Skip increment, no matching LLVM parameter.
1856 continue;
Daniel Dunbar11434922009-01-26 21:26:08 +00001857
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +00001858 case ABIArgInfo::Coerce: {
1859 assert(AI != Fn->arg_end() && "Argument mismatch!");
1860 // FIXME: This is very wasteful; EmitParmDecl is just going to
1861 // drop the result in a new alloca anyway, so we could just
1862 // store into that directly if we broke the abstraction down
1863 // more.
Daniel Dunbaradc8bdd2009-02-10 01:51:39 +00001864 llvm::Value *V = CreateTempAlloca(ConvertTypeForMem(Ty), "coerce");
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +00001865 CreateCoercedStore(AI, V, *this);
1866 // Match to what EmitParmDecl is expecting for this type.
Daniel Dunbar8b29a382009-02-04 07:22:24 +00001867 if (!CodeGenFunction::hasAggregateLLVMType(Ty)) {
Daniel Dunbaradc8bdd2009-02-10 01:51:39 +00001868 V = EmitLoadOfScalar(V, false, Ty);
Daniel Dunbar8b29a382009-02-04 07:22:24 +00001869 if (!getContext().typesAreCompatible(Ty, Arg->getType())) {
1870 // This must be a promotion, for something like
1871 // "void a(x) short x; {..."
1872 V = EmitScalarConversion(V, Ty, Arg->getType());
1873 }
1874 }
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +00001875 EmitParmDecl(*Arg, V);
1876 break;
1877 }
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001878 }
Daniel Dunbar56273772008-09-17 00:51:38 +00001879
1880 ++AI;
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001881 }
1882 assert(AI == Fn->arg_end() && "Argument mismatch!");
1883}
1884
Daniel Dunbar88b53962009-02-02 22:03:45 +00001885void CodeGenFunction::EmitFunctionEpilog(const CGFunctionInfo &FI,
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001886 llvm::Value *ReturnValue) {
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001887 llvm::Value *RV = 0;
1888
1889 // Functions with no result always return void.
1890 if (ReturnValue) {
Daniel Dunbar88b53962009-02-02 22:03:45 +00001891 QualType RetTy = FI.getReturnType();
Daniel Dunbarb225be42009-02-03 05:59:18 +00001892 const ABIArgInfo &RetAI = FI.getReturnInfo();
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001893
1894 switch (RetAI.getKind()) {
Daniel Dunbar11e383a2009-02-05 08:00:50 +00001895 case ABIArgInfo::Indirect:
Daniel Dunbar3aea8ca2008-12-18 04:52:14 +00001896 if (RetTy->isAnyComplexType()) {
Daniel Dunbar3aea8ca2008-12-18 04:52:14 +00001897 ComplexPairTy RT = LoadComplexFromAddr(ReturnValue, false);
1898 StoreComplexToAddr(RT, CurFn->arg_begin(), false);
1899 } else if (CodeGenFunction::hasAggregateLLVMType(RetTy)) {
1900 EmitAggregateCopy(CurFn->arg_begin(), ReturnValue, RetTy);
1901 } else {
Daniel Dunbaradc8bdd2009-02-10 01:51:39 +00001902 EmitStoreOfScalar(Builder.CreateLoad(ReturnValue), CurFn->arg_begin(),
1903 false);
Daniel Dunbar3aea8ca2008-12-18 04:52:14 +00001904 }
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001905 break;
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001906
Daniel Dunbar46327aa2009-02-03 06:17:37 +00001907 case ABIArgInfo::Direct:
Daniel Dunbar2fbf2f52009-02-05 11:13:54 +00001908 // The internal return value temp always will have
1909 // pointer-to-return-type type.
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001910 RV = Builder.CreateLoad(ReturnValue);
1911 break;
1912
Daniel Dunbar11434922009-01-26 21:26:08 +00001913 case ABIArgInfo::Ignore:
1914 break;
1915
Daniel Dunbaradc8bdd2009-02-10 01:51:39 +00001916 case ABIArgInfo::Coerce:
Daniel Dunbar54d1ccb2009-01-27 01:36:03 +00001917 RV = CreateCoercedLoad(ReturnValue, RetAI.getCoerceToType(), *this);
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001918 break;
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001919
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00001920 case ABIArgInfo::Expand:
1921 assert(0 && "Invalid ABI kind for return argument");
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001922 }
1923 }
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00001924
1925 if (RV) {
1926 Builder.CreateRet(RV);
1927 } else {
1928 Builder.CreateRetVoid();
1929 }
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001930}
1931
Daniel Dunbar88b53962009-02-02 22:03:45 +00001932RValue CodeGenFunction::EmitCall(const CGFunctionInfo &CallInfo,
1933 llvm::Value *Callee,
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00001934 const CallArgList &CallArgs,
1935 const Decl *TargetDecl) {
Daniel Dunbar5251afa2009-02-03 06:02:10 +00001936 // FIXME: We no longer need the types from CallArgs; lift up and
1937 // simplify.
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001938 llvm::SmallVector<llvm::Value*, 16> Args;
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001939
1940 // Handle struct-return functions by passing a pointer to the
1941 // location that we would like to return into.
Daniel Dunbarbb36d332009-02-02 21:43:58 +00001942 QualType RetTy = CallInfo.getReturnType();
Daniel Dunbarb225be42009-02-03 05:59:18 +00001943 const ABIArgInfo &RetAI = CallInfo.getReturnInfo();
Daniel Dunbar2969a022009-02-05 09:24:53 +00001944 if (CGM.ReturnTypeUsesSret(CallInfo)) {
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001945 // Create a temporary alloca to hold the result of the call. :(
Daniel Dunbaradc8bdd2009-02-10 01:51:39 +00001946 Args.push_back(CreateTempAlloca(ConvertTypeForMem(RetTy)));
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001947 }
1948
Daniel Dunbar4b5f0a42009-02-04 21:17:21 +00001949 assert(CallInfo.arg_size() == CallArgs.size() &&
1950 "Mismatch between function signature & arguments.");
Daniel Dunbarb225be42009-02-03 05:59:18 +00001951 CGFunctionInfo::const_arg_iterator info_it = CallInfo.arg_begin();
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001952 for (CallArgList::const_iterator I = CallArgs.begin(), E = CallArgs.end();
Daniel Dunbarb225be42009-02-03 05:59:18 +00001953 I != E; ++I, ++info_it) {
1954 const ABIArgInfo &ArgInfo = info_it->info;
Daniel Dunbar17b708d2008-09-09 23:27:19 +00001955 RValue RV = I->first;
Daniel Dunbar56273772008-09-17 00:51:38 +00001956
1957 switch (ArgInfo.getKind()) {
Daniel Dunbar11e383a2009-02-05 08:00:50 +00001958 case ABIArgInfo::Indirect:
Daniel Dunbar1f745982009-02-05 09:16:39 +00001959 if (RV.isScalar() || RV.isComplex()) {
1960 // Make a temporary alloca to pass the argument.
Daniel Dunbaradc8bdd2009-02-10 01:51:39 +00001961 Args.push_back(CreateTempAlloca(ConvertTypeForMem(I->second)));
Daniel Dunbar1f745982009-02-05 09:16:39 +00001962 if (RV.isScalar())
Daniel Dunbaradc8bdd2009-02-10 01:51:39 +00001963 EmitStoreOfScalar(RV.getScalarVal(), Args.back(), false);
Daniel Dunbar1f745982009-02-05 09:16:39 +00001964 else
1965 StoreComplexToAddr(RV.getComplexVal(), Args.back(), false);
1966 } else {
1967 Args.push_back(RV.getAggregateAddr());
1968 }
1969 break;
1970
Daniel Dunbar46327aa2009-02-03 06:17:37 +00001971 case ABIArgInfo::Direct:
Daniel Dunbar56273772008-09-17 00:51:38 +00001972 if (RV.isScalar()) {
1973 Args.push_back(RV.getScalarVal());
1974 } else if (RV.isComplex()) {
Daniel Dunbar2fbf2f52009-02-05 11:13:54 +00001975 llvm::Value *Tmp = llvm::UndefValue::get(ConvertType(I->second));
1976 Tmp = Builder.CreateInsertValue(Tmp, RV.getComplexVal().first, 0);
1977 Tmp = Builder.CreateInsertValue(Tmp, RV.getComplexVal().second, 1);
1978 Args.push_back(Tmp);
Daniel Dunbar56273772008-09-17 00:51:38 +00001979 } else {
Daniel Dunbar2fbf2f52009-02-05 11:13:54 +00001980 Args.push_back(Builder.CreateLoad(RV.getAggregateAddr()));
Daniel Dunbar56273772008-09-17 00:51:38 +00001981 }
1982 break;
1983
Daniel Dunbar11434922009-01-26 21:26:08 +00001984 case ABIArgInfo::Ignore:
1985 break;
1986
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +00001987 case ABIArgInfo::Coerce: {
1988 // FIXME: Avoid the conversion through memory if possible.
1989 llvm::Value *SrcPtr;
1990 if (RV.isScalar()) {
Daniel Dunbar5a1be6e2009-02-03 23:04:57 +00001991 SrcPtr = CreateTempAlloca(ConvertTypeForMem(I->second), "coerce");
Daniel Dunbaradc8bdd2009-02-10 01:51:39 +00001992 EmitStoreOfScalar(RV.getScalarVal(), SrcPtr, false);
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +00001993 } else if (RV.isComplex()) {
Daniel Dunbaradc8bdd2009-02-10 01:51:39 +00001994 SrcPtr = CreateTempAlloca(ConvertTypeForMem(I->second), "coerce");
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +00001995 StoreComplexToAddr(RV.getComplexVal(), SrcPtr, false);
1996 } else
1997 SrcPtr = RV.getAggregateAddr();
1998 Args.push_back(CreateCoercedLoad(SrcPtr, ArgInfo.getCoerceToType(),
1999 *this));
2000 break;
2001 }
2002
Daniel Dunbar56273772008-09-17 00:51:38 +00002003 case ABIArgInfo::Expand:
2004 ExpandTypeToArgs(I->second, RV, Args);
2005 break;
Daniel Dunbar17b708d2008-09-09 23:27:19 +00002006 }
2007 }
Daniel Dunbar17b708d2008-09-09 23:27:19 +00002008
Daniel Dunbar9834ffb2009-02-23 17:26:39 +00002009 llvm::BasicBlock *InvokeDest = getInvokeDest();
Devang Patel761d7f72008-09-25 21:02:23 +00002010 CodeGen::AttributeListType AttributeList;
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00002011 CGM.ConstructAttributeList(CallInfo, TargetDecl, AttributeList);
Daniel Dunbar9834ffb2009-02-23 17:26:39 +00002012 llvm::AttrListPtr Attrs = llvm::AttrListPtr::get(AttributeList.begin(),
2013 AttributeList.end());
Daniel Dunbar725ad312009-01-31 02:19:00 +00002014
Daniel Dunbard14151d2009-03-02 04:32:35 +00002015 llvm::CallSite CS;
2016 if (!InvokeDest || (Attrs.getFnAttributes() & llvm::Attribute::NoUnwind)) {
2017 CS = Builder.CreateCall(Callee, &Args[0], &Args[0]+Args.size());
Daniel Dunbar9834ffb2009-02-23 17:26:39 +00002018 } else {
2019 llvm::BasicBlock *Cont = createBasicBlock("invoke.cont");
Daniel Dunbard14151d2009-03-02 04:32:35 +00002020 CS = Builder.CreateInvoke(Callee, Cont, InvokeDest,
2021 &Args[0], &Args[0]+Args.size());
Daniel Dunbar9834ffb2009-02-23 17:26:39 +00002022 EmitBlock(Cont);
Daniel Dunbarf4fe0f02009-02-20 18:54:31 +00002023 }
2024
Daniel Dunbard14151d2009-03-02 04:32:35 +00002025 CS.setAttributes(Attrs);
2026 if (const llvm::Function *F = dyn_cast<llvm::Function>(Callee))
2027 CS.setCallingConv(F->getCallingConv());
2028
2029 // If the call doesn't return, finish the basic block and clear the
2030 // insertion point; this allows the rest of IRgen to discard
2031 // unreachable code.
2032 if (CS.doesNotReturn()) {
2033 Builder.CreateUnreachable();
2034 Builder.ClearInsertionPoint();
2035
2036 // FIXME: For now, emit a dummy basic block because expr
2037 // emitters in generally are not ready to handle emitting
2038 // expressions at unreachable points.
2039 EnsureInsertPoint();
2040
2041 // Return a reasonable RValue.
2042 return GetUndefRValue(RetTy);
2043 }
2044
2045 llvm::Instruction *CI = CS.getInstruction();
Chris Lattner34030842009-03-22 00:32:22 +00002046 if (Builder.isNamePreserving() && CI->getType() != llvm::Type::VoidTy)
Daniel Dunbar17b708d2008-09-09 23:27:19 +00002047 CI->setName("call");
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00002048
2049 switch (RetAI.getKind()) {
Daniel Dunbar11e383a2009-02-05 08:00:50 +00002050 case ABIArgInfo::Indirect:
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00002051 if (RetTy->isAnyComplexType())
Daniel Dunbar56273772008-09-17 00:51:38 +00002052 return RValue::getComplex(LoadComplexFromAddr(Args[0], false));
Chris Lattner34030842009-03-22 00:32:22 +00002053 if (CodeGenFunction::hasAggregateLLVMType(RetTy))
Daniel Dunbar56273772008-09-17 00:51:38 +00002054 return RValue::getAggregate(Args[0]);
Chris Lattner34030842009-03-22 00:32:22 +00002055 return RValue::get(EmitLoadOfScalar(Args[0], false, RetTy));
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00002056
Daniel Dunbar46327aa2009-02-03 06:17:37 +00002057 case ABIArgInfo::Direct:
Daniel Dunbar2fbf2f52009-02-05 11:13:54 +00002058 if (RetTy->isAnyComplexType()) {
2059 llvm::Value *Real = Builder.CreateExtractValue(CI, 0);
2060 llvm::Value *Imag = Builder.CreateExtractValue(CI, 1);
2061 return RValue::getComplex(std::make_pair(Real, Imag));
Chris Lattner34030842009-03-22 00:32:22 +00002062 }
2063 if (CodeGenFunction::hasAggregateLLVMType(RetTy)) {
Daniel Dunbaradc8bdd2009-02-10 01:51:39 +00002064 llvm::Value *V = CreateTempAlloca(ConvertTypeForMem(RetTy), "agg.tmp");
Daniel Dunbar2fbf2f52009-02-05 11:13:54 +00002065 Builder.CreateStore(CI, V);
2066 return RValue::getAggregate(V);
Chris Lattner34030842009-03-22 00:32:22 +00002067 }
2068 return RValue::get(CI);
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00002069
Daniel Dunbar11434922009-01-26 21:26:08 +00002070 case ABIArgInfo::Ignore:
Daniel Dunbar0bcc5212009-02-03 06:30:17 +00002071 // If we are ignoring an argument that had a result, make sure to
2072 // construct the appropriate return value for our caller.
Daniel Dunbar13e81732009-02-05 07:09:07 +00002073 return GetUndefRValue(RetTy);
Daniel Dunbar11434922009-01-26 21:26:08 +00002074
Daniel Dunbar639ffe42008-09-10 07:04:09 +00002075 case ABIArgInfo::Coerce: {
Daniel Dunbar89c9d8e2009-02-03 19:12:28 +00002076 // FIXME: Avoid the conversion through memory if possible.
Daniel Dunbaradc8bdd2009-02-10 01:51:39 +00002077 llvm::Value *V = CreateTempAlloca(ConvertTypeForMem(RetTy), "coerce");
Daniel Dunbar54d1ccb2009-01-27 01:36:03 +00002078 CreateCoercedStore(CI, V, *this);
Anders Carlssonad3d6912008-11-25 22:21:48 +00002079 if (RetTy->isAnyComplexType())
2080 return RValue::getComplex(LoadComplexFromAddr(V, false));
Chris Lattner34030842009-03-22 00:32:22 +00002081 if (CodeGenFunction::hasAggregateLLVMType(RetTy))
Anders Carlssonad3d6912008-11-25 22:21:48 +00002082 return RValue::getAggregate(V);
Chris Lattner34030842009-03-22 00:32:22 +00002083 return RValue::get(EmitLoadOfScalar(V, false, RetTy));
Daniel Dunbar639ffe42008-09-10 07:04:09 +00002084 }
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00002085
Daniel Dunbar8951dbd2008-09-11 01:48:57 +00002086 case ABIArgInfo::Expand:
2087 assert(0 && "Invalid ABI kind for return argument");
Daniel Dunbar17b708d2008-09-09 23:27:19 +00002088 }
Daniel Dunbar2c8e0f32008-09-10 02:41:04 +00002089
2090 assert(0 && "Unhandled ABIArgInfo::Kind");
2091 return RValue::get(0);
Daniel Dunbar17b708d2008-09-09 23:27:19 +00002092}
Daniel Dunbarb4094ea2009-02-10 20:44:09 +00002093
2094/* VarArg handling */
2095
2096llvm::Value *CodeGenFunction::EmitVAArg(llvm::Value *VAListAddr, QualType Ty) {
2097 return CGM.getTypes().getABIInfo().EmitVAArg(VAListAddr, Ty, *this);
2098}