blob: 1cd08b7e874e9596a7791e0d489017669ad0084b [file] [log] [blame]
Chris Lattner11e0de52007-08-24 02:22:53 +00001//===--- CGExprAgg.cpp - Emit LLVM Code from Aggregate Expressions --------===//
Chris Lattnerd79671f2007-08-10 20:13:28 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner5b12ab82007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattnerd79671f2007-08-10 20:13:28 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This contains code to emit Aggregate Expr nodes as LLVM code.
11//
12//===----------------------------------------------------------------------===//
13
14#include "CodeGenFunction.h"
Chris Lattner6278e6a2007-08-11 00:04:45 +000015#include "CodeGenModule.h"
Fariborz Jahanian5f21d2f2009-07-08 01:18:33 +000016#include "CGObjCRuntime.h"
Daniel Dunbarad319a72008-08-11 05:00:27 +000017#include "clang/AST/ASTContext.h"
Anders Carlssonb7f8f592009-04-17 00:06:03 +000018#include "clang/AST/DeclCXX.h"
Sebastian Redlc83ed822012-02-17 08:42:25 +000019#include "clang/AST/DeclTemplate.h"
Daniel Dunbarad319a72008-08-11 05:00:27 +000020#include "clang/AST/StmtVisitor.h"
Chris Lattner6278e6a2007-08-11 00:04:45 +000021#include "llvm/Constants.h"
22#include "llvm/Function.h"
Devang Patel87174172007-10-26 17:44:44 +000023#include "llvm/GlobalVariable.h"
Chris Lattner579a05d2008-04-04 18:42:16 +000024#include "llvm/Intrinsics.h"
Chris Lattnerd79671f2007-08-10 20:13:28 +000025using namespace clang;
26using namespace CodeGen;
Chris Lattner6278e6a2007-08-11 00:04:45 +000027
Chris Lattner4758b402007-08-21 04:25:47 +000028//===----------------------------------------------------------------------===//
29// Aggregate Expression Emitter
30//===----------------------------------------------------------------------===//
31
32namespace {
Benjamin Kramer337e3a52009-11-28 19:45:26 +000033class AggExprEmitter : public StmtVisitor<AggExprEmitter> {
Chris Lattner4758b402007-08-21 04:25:47 +000034 CodeGenFunction &CGF;
Daniel Dunbarcb463852008-11-01 01:53:16 +000035 CGBuilderTy &Builder;
John McCall7a626f62010-09-15 10:14:12 +000036 AggValueSlot Dest;
Mike Stumpec3cbfe2009-05-26 22:03:21 +000037 bool IgnoreResult;
John McCall78a15112010-05-22 01:48:05 +000038
John McCalla5efa732011-08-25 23:04:34 +000039 /// We want to use 'dest' as the return slot except under two
40 /// conditions:
41 /// - The destination slot requires garbage collection, so we
42 /// need to use the GC API.
43 /// - The destination slot is potentially aliased.
44 bool shouldUseDestForReturnSlot() const {
45 return !(Dest.requiresGCollection() || Dest.isPotentiallyAliased());
46 }
47
John McCall78a15112010-05-22 01:48:05 +000048 ReturnValueSlot getReturnValueSlot() const {
John McCalla5efa732011-08-25 23:04:34 +000049 if (!shouldUseDestForReturnSlot())
50 return ReturnValueSlot();
John McCallcc04e9f2010-05-22 22:13:32 +000051
John McCall7a626f62010-09-15 10:14:12 +000052 return ReturnValueSlot(Dest.getAddr(), Dest.isVolatile());
53 }
54
55 AggValueSlot EnsureSlot(QualType T) {
56 if (!Dest.isIgnored()) return Dest;
57 return CGF.CreateAggTemp(T, "agg.tmp.ensured");
John McCall78a15112010-05-22 01:48:05 +000058 }
John McCallcc04e9f2010-05-22 22:13:32 +000059
Chris Lattner4758b402007-08-21 04:25:47 +000060public:
John McCall7a626f62010-09-15 10:14:12 +000061 AggExprEmitter(CodeGenFunction &cgf, AggValueSlot Dest,
Fariborz Jahanianb60e70f2010-09-16 00:20:07 +000062 bool ignore)
John McCall7a626f62010-09-15 10:14:12 +000063 : CGF(cgf), Builder(CGF.Builder), Dest(Dest),
Fariborz Jahanianb60e70f2010-09-16 00:20:07 +000064 IgnoreResult(ignore) {
Chris Lattner4758b402007-08-21 04:25:47 +000065 }
66
Chris Lattner835635d2007-08-21 04:59:27 +000067 //===--------------------------------------------------------------------===//
68 // Utilities
69 //===--------------------------------------------------------------------===//
70
Chris Lattner4758b402007-08-21 04:25:47 +000071 /// EmitAggLoadOfLValue - Given an expression with aggregate type that
72 /// represents a value lvalue, this method emits the address of the lvalue,
73 /// then loads the result into DestPtr.
74 void EmitAggLoadOfLValue(const Expr *E);
Eli Friedmanf23b6fa2008-05-19 17:51:16 +000075
Mike Stumpca9fc092009-05-23 20:28:01 +000076 /// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
Mike Stumpec3cbfe2009-05-26 22:03:21 +000077 void EmitFinalDestCopy(const Expr *E, LValue Src, bool Ignore = false);
Eli Friedman6d694a32011-12-05 22:23:28 +000078 void EmitFinalDestCopy(const Expr *E, RValue Src, bool Ignore = false,
79 unsigned Alignment = 0);
Mike Stumpca9fc092009-05-23 20:28:01 +000080
John McCalla5efa732011-08-25 23:04:34 +000081 void EmitMoveFromReturnSlot(const Expr *E, RValue Src);
John McCallcc04e9f2010-05-22 22:13:32 +000082
Sebastian Redlc83ed822012-02-17 08:42:25 +000083 void EmitStdInitializerList(InitListExpr *InitList);
84 void EmitArrayInit(llvm::Value *DestPtr, llvm::ArrayType *AType,
85 QualType elementType, InitListExpr *E);
86
John McCall8d6fc952011-08-25 20:40:09 +000087 AggValueSlot::NeedsGCBarriers_t needsGC(QualType T) {
Douglas Gregor79a91412011-09-13 17:21:33 +000088 if (CGF.getLangOptions().getGC() && TypeRequiresGCollection(T))
John McCall8d6fc952011-08-25 20:40:09 +000089 return AggValueSlot::NeedsGCBarriers;
90 return AggValueSlot::DoesNotNeedGCBarriers;
91 }
92
John McCallcc04e9f2010-05-22 22:13:32 +000093 bool TypeRequiresGCollection(QualType T);
94
Chris Lattner835635d2007-08-21 04:59:27 +000095 //===--------------------------------------------------------------------===//
96 // Visitor Methods
97 //===--------------------------------------------------------------------===//
Mike Stump11289f42009-09-09 15:08:12 +000098
Chris Lattner4758b402007-08-21 04:25:47 +000099 void VisitStmt(Stmt *S) {
Daniel Dunbara7c8cf62008-08-16 00:56:44 +0000100 CGF.ErrorUnsupported(S, "aggregate expression");
Chris Lattner4758b402007-08-21 04:25:47 +0000101 }
102 void VisitParenExpr(ParenExpr *PE) { Visit(PE->getSubExpr()); }
Peter Collingbourne91147592011-04-15 00:35:48 +0000103 void VisitGenericSelectionExpr(GenericSelectionExpr *GE) {
104 Visit(GE->getResultExpr());
105 }
Eli Friedman3f66b842009-01-27 09:03:41 +0000106 void VisitUnaryExtension(UnaryOperator *E) { Visit(E->getSubExpr()); }
John McCall7c454bb2011-07-15 05:09:51 +0000107 void VisitSubstNonTypeTemplateParmExpr(SubstNonTypeTemplateParmExpr *E) {
108 return Visit(E->getReplacement());
109 }
Chris Lattner4758b402007-08-21 04:25:47 +0000110
111 // l-values.
Seo Sanghyeond4d8c3c2007-12-14 02:04:12 +0000112 void VisitDeclRefExpr(DeclRefExpr *DRE) { EmitAggLoadOfLValue(DRE); }
113 void VisitMemberExpr(MemberExpr *ME) { EmitAggLoadOfLValue(ME); }
114 void VisitUnaryDeref(UnaryOperator *E) { EmitAggLoadOfLValue(E); }
Daniel Dunbard443c0a2010-01-04 18:47:06 +0000115 void VisitStringLiteral(StringLiteral *E) { EmitAggLoadOfLValue(E); }
Douglas Gregor9b71f0c2011-06-17 04:59:12 +0000116 void VisitCompoundLiteralExpr(CompoundLiteralExpr *E);
Seo Sanghyeond4d8c3c2007-12-14 02:04:12 +0000117 void VisitArraySubscriptExpr(ArraySubscriptExpr *E) {
118 EmitAggLoadOfLValue(E);
119 }
Chris Lattner2f343dd2009-04-21 23:00:09 +0000120 void VisitBlockDeclRefExpr(const BlockDeclRefExpr *E) {
Mike Stump11289f42009-09-09 15:08:12 +0000121 EmitAggLoadOfLValue(E);
Chris Lattner2f343dd2009-04-21 23:00:09 +0000122 }
123 void VisitPredefinedExpr(const PredefinedExpr *E) {
Mike Stump11289f42009-09-09 15:08:12 +0000124 EmitAggLoadOfLValue(E);
Chris Lattner2f343dd2009-04-21 23:00:09 +0000125 }
Mike Stump11289f42009-09-09 15:08:12 +0000126
Chris Lattner4758b402007-08-21 04:25:47 +0000127 // Operators.
Anders Carlssonec143772009-08-07 23:22:37 +0000128 void VisitCastExpr(CastExpr *E);
Anders Carlsson0370eb22007-10-31 22:04:46 +0000129 void VisitCallExpr(const CallExpr *E);
Chris Lattner49e3bfa2007-08-31 22:54:14 +0000130 void VisitStmtExpr(const StmtExpr *E);
Chris Lattner4758b402007-08-21 04:25:47 +0000131 void VisitBinaryOperator(const BinaryOperator *BO);
Fariborz Jahanianffba6622009-10-22 22:57:31 +0000132 void VisitPointerToDataMemberBinaryOperator(const BinaryOperator *BO);
Chris Lattnercd9fb242007-08-21 04:43:17 +0000133 void VisitBinAssign(const BinaryOperator *E);
Eli Friedman4b0e2a32008-05-20 07:56:31 +0000134 void VisitBinComma(const BinaryOperator *E);
Chris Lattner4758b402007-08-21 04:25:47 +0000135
Chris Lattnerb1d329d2008-06-24 17:04:18 +0000136 void VisitObjCMessageExpr(ObjCMessageExpr *E);
Daniel Dunbarc8317a42008-08-23 10:51:21 +0000137 void VisitObjCIvarRefExpr(ObjCIvarRefExpr *E) {
138 EmitAggLoadOfLValue(E);
139 }
Mike Stump11289f42009-09-09 15:08:12 +0000140
John McCallc07a0c72011-02-17 10:25:35 +0000141 void VisitAbstractConditionalOperator(const AbstractConditionalOperator *CO);
Anders Carlsson5b2095c2009-07-08 18:33:14 +0000142 void VisitChooseExpr(const ChooseExpr *CE);
Devang Patel87174172007-10-26 17:44:44 +0000143 void VisitInitListExpr(InitListExpr *E);
Anders Carlsson18ada982009-12-16 06:57:54 +0000144 void VisitImplicitValueInitExpr(ImplicitValueInitExpr *E);
Chris Lattneraa9c7ae2008-04-08 04:40:51 +0000145 void VisitCXXDefaultArgExpr(CXXDefaultArgExpr *DAE) {
146 Visit(DAE->getExpr());
147 }
Anders Carlsson3be22e22009-05-30 23:23:33 +0000148 void VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E);
Anders Carlsson1619a5042009-05-03 17:47:16 +0000149 void VisitCXXConstructExpr(const CXXConstructExpr *E);
Eli Friedmanc370a7e2012-02-09 03:32:31 +0000150 void VisitLambdaExpr(LambdaExpr *E);
John McCall5d413782010-12-06 08:20:24 +0000151 void VisitExprWithCleanups(ExprWithCleanups *E);
Douglas Gregor747eb782010-07-08 06:14:04 +0000152 void VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *E);
Mike Stump5bbbb132009-11-18 00:40:12 +0000153 void VisitCXXTypeidExpr(CXXTypeidExpr *E) { EmitAggLoadOfLValue(E); }
Douglas Gregorfe314812011-06-21 17:03:29 +0000154 void VisitMaterializeTemporaryExpr(MaterializeTemporaryExpr *E);
John McCall1bf58462011-02-16 08:02:54 +0000155 void VisitOpaqueValueExpr(OpaqueValueExpr *E);
156
John McCallfe96e0b2011-11-06 09:01:30 +0000157 void VisitPseudoObjectExpr(PseudoObjectExpr *E) {
158 if (E->isGLValue()) {
159 LValue LV = CGF.EmitPseudoObjectLValue(E);
160 return EmitFinalDestCopy(E, LV);
161 }
162
163 CGF.EmitPseudoObjectRValue(E, EnsureSlot(E->getType()));
164 }
165
Eli Friedman21911e82008-05-27 15:51:49 +0000166 void VisitVAArgExpr(VAArgExpr *E);
Chris Lattner579a05d2008-04-04 18:42:16 +0000167
John McCall1553b192011-06-16 04:16:24 +0000168 void EmitInitializationToLValue(Expr *E, LValue Address);
169 void EmitNullInitializationToLValue(LValue Address);
Chris Lattner4758b402007-08-21 04:25:47 +0000170 // case Expr::ChooseExprClass:
Mike Stumpf16b8c32009-12-09 19:24:08 +0000171 void VisitCXXThrowExpr(const CXXThrowExpr *E) { CGF.EmitCXXThrowExpr(E); }
Eli Friedmandf14b3a2011-10-11 02:20:01 +0000172 void VisitAtomicExpr(AtomicExpr *E) {
173 CGF.EmitAtomicExpr(E, EnsureSlot(E->getType()).getAddr());
174 }
Chris Lattner4758b402007-08-21 04:25:47 +0000175};
176} // end anonymous namespace.
177
Chris Lattner835635d2007-08-21 04:59:27 +0000178//===----------------------------------------------------------------------===//
179// Utilities
180//===----------------------------------------------------------------------===//
Chris Lattner4758b402007-08-21 04:25:47 +0000181
Chris Lattner6278e6a2007-08-11 00:04:45 +0000182/// EmitAggLoadOfLValue - Given an expression with aggregate type that
183/// represents a value lvalue, this method emits the address of the lvalue,
184/// then loads the result into DestPtr.
Chris Lattner4758b402007-08-21 04:25:47 +0000185void AggExprEmitter::EmitAggLoadOfLValue(const Expr *E) {
186 LValue LV = CGF.EmitLValue(E);
Mike Stumpca9fc092009-05-23 20:28:01 +0000187 EmitFinalDestCopy(E, LV);
188}
189
John McCallcc04e9f2010-05-22 22:13:32 +0000190/// \brief True if the given aggregate type requires special GC API calls.
191bool AggExprEmitter::TypeRequiresGCollection(QualType T) {
192 // Only record types have members that might require garbage collection.
193 const RecordType *RecordTy = T->getAs<RecordType>();
194 if (!RecordTy) return false;
195
196 // Don't mess with non-trivial C++ types.
197 RecordDecl *Record = RecordTy->getDecl();
198 if (isa<CXXRecordDecl>(Record) &&
199 (!cast<CXXRecordDecl>(Record)->hasTrivialCopyConstructor() ||
200 !cast<CXXRecordDecl>(Record)->hasTrivialDestructor()))
201 return false;
202
203 // Check whether the type has an object member.
204 return Record->hasObjectMember();
205}
206
John McCalla5efa732011-08-25 23:04:34 +0000207/// \brief Perform the final move to DestPtr if for some reason
208/// getReturnValueSlot() didn't use it directly.
John McCallcc04e9f2010-05-22 22:13:32 +0000209///
210/// The idea is that you do something like this:
211/// RValue Result = EmitSomething(..., getReturnValueSlot());
John McCalla5efa732011-08-25 23:04:34 +0000212/// EmitMoveFromReturnSlot(E, Result);
213///
214/// If nothing interferes, this will cause the result to be emitted
215/// directly into the return value slot. Otherwise, a final move
216/// will be performed.
217void AggExprEmitter::EmitMoveFromReturnSlot(const Expr *E, RValue Src) {
218 if (shouldUseDestForReturnSlot()) {
219 // Logically, Dest.getAddr() should equal Src.getAggregateAddr().
220 // The possibility of undef rvalues complicates that a lot,
221 // though, so we can't really assert.
222 return;
Fariborz Jahanian021510e2010-06-15 22:44:06 +0000223 }
John McCalla5efa732011-08-25 23:04:34 +0000224
225 // Otherwise, do a final copy,
226 assert(Dest.getAddr() != Src.getAggregateAddr());
227 EmitFinalDestCopy(E, Src, /*Ignore*/ true);
John McCallcc04e9f2010-05-22 22:13:32 +0000228}
229
Mike Stumpca9fc092009-05-23 20:28:01 +0000230/// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
Eli Friedman6d694a32011-12-05 22:23:28 +0000231void AggExprEmitter::EmitFinalDestCopy(const Expr *E, RValue Src, bool Ignore,
232 unsigned Alignment) {
Mike Stumpca9fc092009-05-23 20:28:01 +0000233 assert(Src.isAggregate() && "value must be aggregate value!");
234
John McCall7a626f62010-09-15 10:14:12 +0000235 // If Dest is ignored, then we're evaluating an aggregate expression
John McCall8d752432010-08-25 02:50:31 +0000236 // in a context (like an expression statement) that doesn't care
237 // about the result. C says that an lvalue-to-rvalue conversion is
238 // performed in these cases; C++ says that it is not. In either
239 // case, we don't actually need to do anything unless the value is
240 // volatile.
John McCall7a626f62010-09-15 10:14:12 +0000241 if (Dest.isIgnored()) {
John McCall8d752432010-08-25 02:50:31 +0000242 if (!Src.isVolatileQualified() ||
243 CGF.CGM.getLangOptions().CPlusPlus ||
244 (IgnoreResult && Ignore))
Mike Stump332ec2c2009-05-23 22:01:27 +0000245 return;
Fariborz Jahanianc1236232010-10-22 22:05:03 +0000246
Mike Stumpec3cbfe2009-05-26 22:03:21 +0000247 // If the source is volatile, we must read from it; to do that, we need
248 // some place to put it.
John McCall7a626f62010-09-15 10:14:12 +0000249 Dest = CGF.CreateAggTemp(E->getType(), "agg.tmp");
Mike Stump332ec2c2009-05-23 22:01:27 +0000250 }
Chris Lattner6278e6a2007-08-11 00:04:45 +0000251
John McCall58649dc2010-09-16 03:13:23 +0000252 if (Dest.requiresGCollection()) {
Ken Dyck3b4bd9a2011-04-24 17:08:00 +0000253 CharUnits size = CGF.getContext().getTypeSizeInChars(E->getType());
Chris Lattner2192fe52011-07-18 04:24:23 +0000254 llvm::Type *SizeTy = CGF.ConvertType(CGF.getContext().getSizeType());
Ken Dyck3b4bd9a2011-04-24 17:08:00 +0000255 llvm::Value *SizeVal = llvm::ConstantInt::get(SizeTy, size.getQuantity());
Fariborz Jahanian879d7262009-08-31 19:33:16 +0000256 CGF.CGM.getObjCRuntime().EmitGCMemmoveCollectable(CGF,
John McCall7a626f62010-09-15 10:14:12 +0000257 Dest.getAddr(),
258 Src.getAggregateAddr(),
259 SizeVal);
Fariborz Jahanian879d7262009-08-31 19:33:16 +0000260 return;
261 }
Mike Stumpca9fc092009-05-23 20:28:01 +0000262 // If the result of the assignment is used, copy the LHS there also.
263 // FIXME: Pass VolatileDest as well. I think we also need to merge volatile
264 // from the source as well, as we can't eliminate it if either operand
265 // is volatile, unless copy has volatile for both source and destination..
John McCall7a626f62010-09-15 10:14:12 +0000266 CGF.EmitAggregateCopy(Dest.getAddr(), Src.getAggregateAddr(), E->getType(),
Eli Friedman6d694a32011-12-05 22:23:28 +0000267 Dest.isVolatile()|Src.isVolatileQualified(),
268 Alignment);
Mike Stumpca9fc092009-05-23 20:28:01 +0000269}
270
271/// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
Mike Stumpec3cbfe2009-05-26 22:03:21 +0000272void AggExprEmitter::EmitFinalDestCopy(const Expr *E, LValue Src, bool Ignore) {
Mike Stumpca9fc092009-05-23 20:28:01 +0000273 assert(Src.isSimple() && "Can't have aggregate bitfield, vector, etc");
274
Eli Friedman6d694a32011-12-05 22:23:28 +0000275 CharUnits Alignment = std::min(Src.getAlignment(), Dest.getAlignment());
276 EmitFinalDestCopy(E, Src.asAggregateRValue(), Ignore, Alignment.getQuantity());
Chris Lattner6278e6a2007-08-11 00:04:45 +0000277}
278
Sebastian Redlc83ed822012-02-17 08:42:25 +0000279static QualType GetStdInitializerListElementType(QualType T) {
280 // Just assume that this is really std::initializer_list.
281 ClassTemplateSpecializationDecl *specialization =
282 cast<ClassTemplateSpecializationDecl>(T->castAs<RecordType>()->getDecl());
283 return specialization->getTemplateArgs()[0].getAsType();
284}
285
286/// \brief Prepare cleanup for the temporary array.
287static void EmitStdInitializerListCleanup(CodeGenFunction &CGF,
288 QualType arrayType,
289 llvm::Value *addr,
290 const InitListExpr *initList) {
291 QualType::DestructionKind dtorKind = arrayType.isDestructedType();
292 if (!dtorKind)
293 return; // Type doesn't need destroying.
294 if (dtorKind != QualType::DK_cxx_destructor) {
295 CGF.ErrorUnsupported(initList, "ObjC ARC type in initializer_list");
296 return;
297 }
298
299 CodeGenFunction::Destroyer *destroyer = CGF.getDestroyer(dtorKind);
300 CGF.pushDestroy(NormalAndEHCleanup, addr, arrayType, destroyer,
301 /*EHCleanup=*/true);
302}
303
304/// \brief Emit the initializer for a std::initializer_list initialized with a
305/// real initializer list.
306void AggExprEmitter::EmitStdInitializerList(InitListExpr *initList) {
307 // We emit an array containing the elements, then have the init list point
308 // at the array.
309 ASTContext &ctx = CGF.getContext();
310 unsigned numInits = initList->getNumInits();
311 QualType element = GetStdInitializerListElementType(initList->getType());
312 llvm::APInt size(ctx.getTypeSize(ctx.getSizeType()), numInits);
313 QualType array = ctx.getConstantArrayType(element, size, ArrayType::Normal,0);
314 llvm::Type *LTy = CGF.ConvertTypeForMem(array);
315 llvm::AllocaInst *alloc = CGF.CreateTempAlloca(LTy);
316 alloc->setAlignment(ctx.getTypeAlignInChars(array).getQuantity());
317 alloc->setName(".initlist.");
318
319 EmitArrayInit(alloc, cast<llvm::ArrayType>(LTy), element, initList);
320
321 // FIXME: The diagnostics are somewhat out of place here.
322 RecordDecl *record = initList->getType()->castAs<RecordType>()->getDecl();
323 RecordDecl::field_iterator field = record->field_begin();
324 if (field == record->field_end()) {
325 CGF.ErrorUnsupported(initList, "weird std::initializer_list");
326 }
327
328 QualType elementPtr = ctx.getPointerType(element.withConst());
329 llvm::Value *destPtr = Dest.getAddr();
330
331 // Start pointer.
332 if (!ctx.hasSameType(field->getType(), elementPtr)) {
333 CGF.ErrorUnsupported(initList, "weird std::initializer_list");
334 }
335 LValue start = CGF.EmitLValueForFieldInitialization(destPtr, *field, 0);
336 llvm::Value *arrayStart = Builder.CreateStructGEP(alloc, 0, "arraystart");
337 CGF.EmitStoreThroughLValue(RValue::get(arrayStart), start);
338 ++field;
339
340 if (field == record->field_end()) {
341 CGF.ErrorUnsupported(initList, "weird std::initializer_list");
342 }
343 LValue endOrLength = CGF.EmitLValueForFieldInitialization(destPtr, *field, 0);
344 if (ctx.hasSameType(field->getType(), elementPtr)) {
345 // End pointer.
346 llvm::Value *arrayEnd = Builder.CreateStructGEP(alloc,numInits, "arrayend");
347 CGF.EmitStoreThroughLValue(RValue::get(arrayEnd), endOrLength);
348 } else if(ctx.hasSameType(field->getType(), ctx.getSizeType())) {
349 // Length.
350 CGF.EmitStoreThroughLValue(RValue::get(Builder.getInt(size)), endOrLength);
351 } else {
352 CGF.ErrorUnsupported(initList, "weird std::initializer_list");
353 }
354
355 if (!Dest.isExternallyDestructed())
356 EmitStdInitializerListCleanup(CGF, array, alloc, initList);
357}
358
359/// \brief Emit initialization of an array from an initializer list.
360void AggExprEmitter::EmitArrayInit(llvm::Value *DestPtr, llvm::ArrayType *AType,
361 QualType elementType, InitListExpr *E) {
362 uint64_t NumInitElements = E->getNumInits();
363
364 uint64_t NumArrayElements = AType->getNumElements();
365 assert(NumInitElements <= NumArrayElements);
366
367 // DestPtr is an array*. Construct an elementType* by drilling
368 // down a level.
369 llvm::Value *zero = llvm::ConstantInt::get(CGF.SizeTy, 0);
370 llvm::Value *indices[] = { zero, zero };
371 llvm::Value *begin =
372 Builder.CreateInBoundsGEP(DestPtr, indices, "arrayinit.begin");
373
374 // Exception safety requires us to destroy all the
375 // already-constructed members if an initializer throws.
376 // For that, we'll need an EH cleanup.
377 QualType::DestructionKind dtorKind = elementType.isDestructedType();
378 llvm::AllocaInst *endOfInit = 0;
379 EHScopeStack::stable_iterator cleanup;
380 llvm::Instruction *cleanupDominator = 0;
381 if (CGF.needsEHCleanup(dtorKind)) {
382 // In principle we could tell the cleanup where we are more
383 // directly, but the control flow can get so varied here that it
384 // would actually be quite complex. Therefore we go through an
385 // alloca.
386 endOfInit = CGF.CreateTempAlloca(begin->getType(),
387 "arrayinit.endOfInit");
388 cleanupDominator = Builder.CreateStore(begin, endOfInit);
389 CGF.pushIrregularPartialArrayCleanup(begin, endOfInit, elementType,
390 CGF.getDestroyer(dtorKind));
391 cleanup = CGF.EHStack.stable_begin();
392
393 // Otherwise, remember that we didn't need a cleanup.
394 } else {
395 dtorKind = QualType::DK_none;
396 }
397
398 llvm::Value *one = llvm::ConstantInt::get(CGF.SizeTy, 1);
399
400 // The 'current element to initialize'. The invariants on this
401 // variable are complicated. Essentially, after each iteration of
402 // the loop, it points to the last initialized element, except
403 // that it points to the beginning of the array before any
404 // elements have been initialized.
405 llvm::Value *element = begin;
406
407 // Emit the explicit initializers.
408 for (uint64_t i = 0; i != NumInitElements; ++i) {
409 // Advance to the next element.
410 if (i > 0) {
411 element = Builder.CreateInBoundsGEP(element, one, "arrayinit.element");
412
413 // Tell the cleanup that it needs to destroy up to this
414 // element. TODO: some of these stores can be trivially
415 // observed to be unnecessary.
416 if (endOfInit) Builder.CreateStore(element, endOfInit);
417 }
418
419 LValue elementLV = CGF.MakeAddrLValue(element, elementType);
420 EmitInitializationToLValue(E->getInit(i), elementLV);
421 }
422
423 // Check whether there's a non-trivial array-fill expression.
424 // Note that this will be a CXXConstructExpr even if the element
425 // type is an array (or array of array, etc.) of class type.
426 Expr *filler = E->getArrayFiller();
427 bool hasTrivialFiller = true;
428 if (CXXConstructExpr *cons = dyn_cast_or_null<CXXConstructExpr>(filler)) {
429 assert(cons->getConstructor()->isDefaultConstructor());
430 hasTrivialFiller = cons->getConstructor()->isTrivial();
431 }
432
433 // Any remaining elements need to be zero-initialized, possibly
434 // using the filler expression. We can skip this if the we're
435 // emitting to zeroed memory.
436 if (NumInitElements != NumArrayElements &&
437 !(Dest.isZeroed() && hasTrivialFiller &&
438 CGF.getTypes().isZeroInitializable(elementType))) {
439
440 // Use an actual loop. This is basically
441 // do { *array++ = filler; } while (array != end);
442
443 // Advance to the start of the rest of the array.
444 if (NumInitElements) {
445 element = Builder.CreateInBoundsGEP(element, one, "arrayinit.start");
446 if (endOfInit) Builder.CreateStore(element, endOfInit);
447 }
448
449 // Compute the end of the array.
450 llvm::Value *end = Builder.CreateInBoundsGEP(begin,
451 llvm::ConstantInt::get(CGF.SizeTy, NumArrayElements),
452 "arrayinit.end");
453
454 llvm::BasicBlock *entryBB = Builder.GetInsertBlock();
455 llvm::BasicBlock *bodyBB = CGF.createBasicBlock("arrayinit.body");
456
457 // Jump into the body.
458 CGF.EmitBlock(bodyBB);
459 llvm::PHINode *currentElement =
460 Builder.CreatePHI(element->getType(), 2, "arrayinit.cur");
461 currentElement->addIncoming(element, entryBB);
462
463 // Emit the actual filler expression.
464 LValue elementLV = CGF.MakeAddrLValue(currentElement, elementType);
465 if (filler)
466 EmitInitializationToLValue(filler, elementLV);
467 else
468 EmitNullInitializationToLValue(elementLV);
469
470 // Move on to the next element.
471 llvm::Value *nextElement =
472 Builder.CreateInBoundsGEP(currentElement, one, "arrayinit.next");
473
474 // Tell the EH cleanup that we finished with the last element.
475 if (endOfInit) Builder.CreateStore(nextElement, endOfInit);
476
477 // Leave the loop if we're done.
478 llvm::Value *done = Builder.CreateICmpEQ(nextElement, end,
479 "arrayinit.done");
480 llvm::BasicBlock *endBB = CGF.createBasicBlock("arrayinit.end");
481 Builder.CreateCondBr(done, endBB, bodyBB);
482 currentElement->addIncoming(nextElement, Builder.GetInsertBlock());
483
484 CGF.EmitBlock(endBB);
485 }
486
487 // Leave the partial-array cleanup if we entered one.
488 if (dtorKind) CGF.DeactivateCleanupBlock(cleanup, cleanupDominator);
489}
490
Chris Lattner835635d2007-08-21 04:59:27 +0000491//===----------------------------------------------------------------------===//
492// Visitor Methods
493//===----------------------------------------------------------------------===//
494
Douglas Gregorfe314812011-06-21 17:03:29 +0000495void AggExprEmitter::VisitMaterializeTemporaryExpr(MaterializeTemporaryExpr *E){
496 Visit(E->GetTemporaryExpr());
497}
498
John McCall1bf58462011-02-16 08:02:54 +0000499void AggExprEmitter::VisitOpaqueValueExpr(OpaqueValueExpr *e) {
John McCallc07a0c72011-02-17 10:25:35 +0000500 EmitFinalDestCopy(e, CGF.getOpaqueLValueMapping(e));
John McCall1bf58462011-02-16 08:02:54 +0000501}
502
Douglas Gregor9b71f0c2011-06-17 04:59:12 +0000503void
504AggExprEmitter::VisitCompoundLiteralExpr(CompoundLiteralExpr *E) {
Douglas Gregor6c9d31e2011-06-17 16:37:20 +0000505 if (E->getType().isPODType(CGF.getContext())) {
506 // For a POD type, just emit a load of the lvalue + a copy, because our
507 // compound literal might alias the destination.
508 // FIXME: This is a band-aid; the real problem appears to be in our handling
509 // of assignments, where we store directly into the LHS without checking
510 // whether anything in the RHS aliases.
511 EmitAggLoadOfLValue(E);
512 return;
513 }
514
Douglas Gregor9b71f0c2011-06-17 04:59:12 +0000515 AggValueSlot Slot = EnsureSlot(E->getType());
516 CGF.EmitAggExpr(E->getInitializer(), Slot);
517}
518
519
Anders Carlssonec143772009-08-07 23:22:37 +0000520void AggExprEmitter::VisitCastExpr(CastExpr *E) {
Anders Carlsson1fb7ae92009-09-29 01:23:39 +0000521 switch (E->getCastKind()) {
Anders Carlsson8a01a752011-04-11 02:03:26 +0000522 case CK_Dynamic: {
Douglas Gregor1c073f42010-05-14 21:31:02 +0000523 assert(isa<CXXDynamicCastExpr>(E) && "CK_Dynamic without a dynamic_cast?");
524 LValue LV = CGF.EmitCheckedLValue(E->getSubExpr());
525 // FIXME: Do we also need to handle property references here?
526 if (LV.isSimple())
527 CGF.EmitDynamicCast(LV.getAddress(), cast<CXXDynamicCastExpr>(E));
528 else
529 CGF.CGM.ErrorUnsupported(E, "non-simple lvalue dynamic_cast");
530
John McCall7a626f62010-09-15 10:14:12 +0000531 if (!Dest.isIgnored())
532 CGF.CGM.ErrorUnsupported(E, "lvalue dynamic_cast with a destination");
Douglas Gregor1c073f42010-05-14 21:31:02 +0000533 break;
534 }
535
John McCalle3027922010-08-25 11:45:40 +0000536 case CK_ToUnion: {
John McCall58989b72011-04-12 22:02:02 +0000537 if (Dest.isIgnored()) break;
538
Anders Carlssonec143772009-08-07 23:22:37 +0000539 // GCC union extension
Daniel Dunbar2e442a02010-08-21 03:15:20 +0000540 QualType Ty = E->getSubExpr()->getType();
541 QualType PtrTy = CGF.getContext().getPointerType(Ty);
John McCall7a626f62010-09-15 10:14:12 +0000542 llvm::Value *CastPtr = Builder.CreateBitCast(Dest.getAddr(),
Eli Friedmandd274842009-06-03 20:45:06 +0000543 CGF.ConvertType(PtrTy));
John McCall1553b192011-06-16 04:16:24 +0000544 EmitInitializationToLValue(E->getSubExpr(),
545 CGF.MakeAddrLValue(CastPtr, Ty));
Anders Carlsson1fb7ae92009-09-29 01:23:39 +0000546 break;
Nuno Lopes7ffcf932009-01-15 20:14:33 +0000547 }
Mike Stump11289f42009-09-09 15:08:12 +0000548
John McCalle3027922010-08-25 11:45:40 +0000549 case CK_DerivedToBase:
550 case CK_BaseToDerived:
551 case CK_UncheckedDerivedToBase: {
David Blaikie83d382b2011-09-23 05:06:16 +0000552 llvm_unreachable("cannot perform hierarchy conversion in EmitAggExpr: "
Douglas Gregoraae38d62010-05-22 05:17:18 +0000553 "should have been unpacked before we got here");
Douglas Gregoraae38d62010-05-22 05:17:18 +0000554 }
555
John McCall34376a62010-12-04 03:47:34 +0000556 case CK_LValueToRValue: // hope for downstream optimization
John McCalle3027922010-08-25 11:45:40 +0000557 case CK_NoOp:
David Chisnallfa35df62012-01-16 17:27:18 +0000558 case CK_AtomicToNonAtomic:
559 case CK_NonAtomicToAtomic:
John McCalle3027922010-08-25 11:45:40 +0000560 case CK_UserDefinedConversion:
561 case CK_ConstructorConversion:
Anders Carlsson1fb7ae92009-09-29 01:23:39 +0000562 assert(CGF.getContext().hasSameUnqualifiedType(E->getSubExpr()->getType(),
563 E->getType()) &&
564 "Implicit cast types must be compatible");
565 Visit(E->getSubExpr());
566 break;
John McCallf3735e02010-12-01 04:43:34 +0000567
John McCalle3027922010-08-25 11:45:40 +0000568 case CK_LValueBitCast:
John McCallf3735e02010-12-01 04:43:34 +0000569 llvm_unreachable("should not be emitting lvalue bitcast as rvalue");
John McCall31996342011-04-07 08:22:57 +0000570
John McCallf3735e02010-12-01 04:43:34 +0000571 case CK_Dependent:
572 case CK_BitCast:
573 case CK_ArrayToPointerDecay:
574 case CK_FunctionToPointerDecay:
575 case CK_NullToPointer:
576 case CK_NullToMemberPointer:
577 case CK_BaseToDerivedMemberPointer:
578 case CK_DerivedToBaseMemberPointer:
579 case CK_MemberPointerToBoolean:
John McCallc62bb392012-02-15 01:22:51 +0000580 case CK_ReinterpretMemberPointer:
John McCallf3735e02010-12-01 04:43:34 +0000581 case CK_IntegralToPointer:
582 case CK_PointerToIntegral:
583 case CK_PointerToBoolean:
584 case CK_ToVoid:
585 case CK_VectorSplat:
586 case CK_IntegralCast:
587 case CK_IntegralToBoolean:
588 case CK_IntegralToFloating:
589 case CK_FloatingToIntegral:
590 case CK_FloatingToBoolean:
591 case CK_FloatingCast:
John McCall9320b872011-09-09 05:25:32 +0000592 case CK_CPointerToObjCPointerCast:
593 case CK_BlockPointerToObjCPointerCast:
John McCallf3735e02010-12-01 04:43:34 +0000594 case CK_AnyPointerToBlockPointerCast:
595 case CK_ObjCObjectLValueCast:
596 case CK_FloatingRealToComplex:
597 case CK_FloatingComplexToReal:
598 case CK_FloatingComplexToBoolean:
599 case CK_FloatingComplexCast:
600 case CK_FloatingComplexToIntegralComplex:
601 case CK_IntegralRealToComplex:
602 case CK_IntegralComplexToReal:
603 case CK_IntegralComplexToBoolean:
604 case CK_IntegralComplexCast:
605 case CK_IntegralComplexToFloatingComplex:
John McCall2d637d22011-09-10 06:18:15 +0000606 case CK_ARCProduceObject:
607 case CK_ARCConsumeObject:
608 case CK_ARCReclaimReturnedObject:
609 case CK_ARCExtendBlockObject:
John McCallf3735e02010-12-01 04:43:34 +0000610 llvm_unreachable("cast kind invalid for aggregate types");
Anders Carlsson1fb7ae92009-09-29 01:23:39 +0000611 }
Anders Carlsson1ba25ca2008-01-14 06:28:57 +0000612}
613
Chris Lattner0f398c42008-07-26 22:37:01 +0000614void AggExprEmitter::VisitCallExpr(const CallExpr *E) {
Anders Carlssonddcbfe72009-05-27 16:45:02 +0000615 if (E->getCallReturnType()->isReferenceType()) {
616 EmitAggLoadOfLValue(E);
617 return;
618 }
Mike Stump11289f42009-09-09 15:08:12 +0000619
John McCallcc04e9f2010-05-22 22:13:32 +0000620 RValue RV = CGF.EmitCallExpr(E, getReturnValueSlot());
John McCalla5efa732011-08-25 23:04:34 +0000621 EmitMoveFromReturnSlot(E, RV);
Anders Carlsson0370eb22007-10-31 22:04:46 +0000622}
Chris Lattner0f398c42008-07-26 22:37:01 +0000623
624void AggExprEmitter::VisitObjCMessageExpr(ObjCMessageExpr *E) {
John McCallcc04e9f2010-05-22 22:13:32 +0000625 RValue RV = CGF.EmitObjCMessageExpr(E, getReturnValueSlot());
John McCalla5efa732011-08-25 23:04:34 +0000626 EmitMoveFromReturnSlot(E, RV);
Chris Lattnerb1d329d2008-06-24 17:04:18 +0000627}
Anders Carlsson0370eb22007-10-31 22:04:46 +0000628
Chris Lattner0f398c42008-07-26 22:37:01 +0000629void AggExprEmitter::VisitBinComma(const BinaryOperator *E) {
John McCalla2342eb2010-12-05 02:00:02 +0000630 CGF.EmitIgnoredExpr(E->getLHS());
John McCall7a626f62010-09-15 10:14:12 +0000631 Visit(E->getRHS());
Eli Friedman4b0e2a32008-05-20 07:56:31 +0000632}
633
Chris Lattner49e3bfa2007-08-31 22:54:14 +0000634void AggExprEmitter::VisitStmtExpr(const StmtExpr *E) {
John McCallce1de612011-01-26 04:00:11 +0000635 CodeGenFunction::StmtExprEvaluation eval(CGF);
John McCall7a626f62010-09-15 10:14:12 +0000636 CGF.EmitCompoundStmt(*E->getSubStmt(), true, Dest);
Chris Lattner49e3bfa2007-08-31 22:54:14 +0000637}
638
Chris Lattner4758b402007-08-21 04:25:47 +0000639void AggExprEmitter::VisitBinaryOperator(const BinaryOperator *E) {
John McCalle3027922010-08-25 11:45:40 +0000640 if (E->getOpcode() == BO_PtrMemD || E->getOpcode() == BO_PtrMemI)
Fariborz Jahanianffba6622009-10-22 22:57:31 +0000641 VisitPointerToDataMemberBinaryOperator(E);
642 else
643 CGF.ErrorUnsupported(E, "aggregate binary expression");
644}
645
646void AggExprEmitter::VisitPointerToDataMemberBinaryOperator(
647 const BinaryOperator *E) {
648 LValue LV = CGF.EmitPointerToDataMemberBinaryExpr(E);
649 EmitFinalDestCopy(E, LV);
Chris Lattner835635d2007-08-21 04:59:27 +0000650}
651
Chris Lattnercd9fb242007-08-21 04:43:17 +0000652void AggExprEmitter::VisitBinAssign(const BinaryOperator *E) {
Eli Friedmanf54c4e52008-02-11 01:09:17 +0000653 // For an assignment to work, the value on the right has
654 // to be compatible with the value on the left.
Eli Friedman2a695472009-05-28 23:04:00 +0000655 assert(CGF.getContext().hasSameUnqualifiedType(E->getLHS()->getType(),
656 E->getRHS()->getType())
Eli Friedmanf54c4e52008-02-11 01:09:17 +0000657 && "Invalid assignment");
John McCalld0a30012010-12-06 06:10:02 +0000658
Fariborz Jahanian99514b92011-04-29 21:53:21 +0000659 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E->getLHS()))
Fariborz Jahanian52a8cca2011-04-29 22:11:28 +0000660 if (const VarDecl *VD = dyn_cast<VarDecl>(DRE->getDecl()))
Fariborz Jahanian99514b92011-04-29 21:53:21 +0000661 if (VD->hasAttr<BlocksAttr>() &&
662 E->getRHS()->HasSideEffects(CGF.getContext())) {
663 // When __block variable on LHS, the RHS must be evaluated first
664 // as it may change the 'forwarding' field via call to Block_copy.
665 LValue RHS = CGF.EmitLValue(E->getRHS());
666 LValue LHS = CGF.EmitLValue(E->getLHS());
John McCall8d6fc952011-08-25 20:40:09 +0000667 Dest = AggValueSlot::forLValue(LHS, AggValueSlot::IsDestructed,
John McCall46759f42011-08-26 07:31:35 +0000668 needsGC(E->getLHS()->getType()),
669 AggValueSlot::IsAliased);
Fariborz Jahanian99514b92011-04-29 21:53:21 +0000670 EmitFinalDestCopy(E, RHS, true);
671 return;
672 }
Fariborz Jahanian99514b92011-04-29 21:53:21 +0000673
Chris Lattner4758b402007-08-21 04:25:47 +0000674 LValue LHS = CGF.EmitLValue(E->getLHS());
Chris Lattner6278e6a2007-08-11 00:04:45 +0000675
John McCallc109a252011-11-07 03:59:57 +0000676 // Codegen the RHS so that it stores directly into the LHS.
677 AggValueSlot LHSSlot =
678 AggValueSlot::forLValue(LHS, AggValueSlot::IsDestructed,
679 needsGC(E->getLHS()->getType()),
680 AggValueSlot::IsAliased);
681 CGF.EmitAggExpr(E->getRHS(), LHSSlot, false);
682 EmitFinalDestCopy(E, LHS, true);
Chris Lattner6278e6a2007-08-11 00:04:45 +0000683}
684
John McCallc07a0c72011-02-17 10:25:35 +0000685void AggExprEmitter::
686VisitAbstractConditionalOperator(const AbstractConditionalOperator *E) {
Daniel Dunbara612e792008-11-13 01:38:36 +0000687 llvm::BasicBlock *LHSBlock = CGF.createBasicBlock("cond.true");
688 llvm::BasicBlock *RHSBlock = CGF.createBasicBlock("cond.false");
689 llvm::BasicBlock *ContBlock = CGF.createBasicBlock("cond.end");
Mike Stump11289f42009-09-09 15:08:12 +0000690
John McCallc07a0c72011-02-17 10:25:35 +0000691 // Bind the common expression if necessary.
Eli Friedman48fd89a2012-01-06 20:42:20 +0000692 CodeGenFunction::OpaqueValueMapping binding(CGF, E);
John McCallc07a0c72011-02-17 10:25:35 +0000693
John McCallce1de612011-01-26 04:00:11 +0000694 CodeGenFunction::ConditionalEvaluation eval(CGF);
Eli Friedmanb8841af2009-12-25 06:17:05 +0000695 CGF.EmitBranchOnBoolExpr(E->getCond(), LHSBlock, RHSBlock);
Mike Stump11289f42009-09-09 15:08:12 +0000696
John McCall5b26f652010-11-17 00:07:33 +0000697 // Save whether the destination's lifetime is externally managed.
John McCallcac93852011-08-26 08:02:37 +0000698 bool isExternallyDestructed = Dest.isExternallyDestructed();
Chris Lattner6278e6a2007-08-11 00:04:45 +0000699
John McCallce1de612011-01-26 04:00:11 +0000700 eval.begin(CGF);
701 CGF.EmitBlock(LHSBlock);
John McCallc07a0c72011-02-17 10:25:35 +0000702 Visit(E->getTrueExpr());
John McCallce1de612011-01-26 04:00:11 +0000703 eval.end(CGF);
Mike Stump11289f42009-09-09 15:08:12 +0000704
John McCallce1de612011-01-26 04:00:11 +0000705 assert(CGF.HaveInsertPoint() && "expression evaluation ended with no IP!");
706 CGF.Builder.CreateBr(ContBlock);
Mike Stump11289f42009-09-09 15:08:12 +0000707
John McCall5b26f652010-11-17 00:07:33 +0000708 // If the result of an agg expression is unused, then the emission
709 // of the LHS might need to create a destination slot. That's fine
710 // with us, and we can safely emit the RHS into the same slot, but
John McCallcac93852011-08-26 08:02:37 +0000711 // we shouldn't claim that it's already being destructed.
712 Dest.setExternallyDestructed(isExternallyDestructed);
John McCall5b26f652010-11-17 00:07:33 +0000713
John McCallce1de612011-01-26 04:00:11 +0000714 eval.begin(CGF);
715 CGF.EmitBlock(RHSBlock);
John McCallc07a0c72011-02-17 10:25:35 +0000716 Visit(E->getFalseExpr());
John McCallce1de612011-01-26 04:00:11 +0000717 eval.end(CGF);
Mike Stump11289f42009-09-09 15:08:12 +0000718
Chris Lattner4758b402007-08-21 04:25:47 +0000719 CGF.EmitBlock(ContBlock);
Chris Lattner6278e6a2007-08-11 00:04:45 +0000720}
Chris Lattner835635d2007-08-21 04:59:27 +0000721
Anders Carlsson5b2095c2009-07-08 18:33:14 +0000722void AggExprEmitter::VisitChooseExpr(const ChooseExpr *CE) {
723 Visit(CE->getChosenSubExpr(CGF.getContext()));
724}
725
Eli Friedman21911e82008-05-27 15:51:49 +0000726void AggExprEmitter::VisitVAArgExpr(VAArgExpr *VE) {
Daniel Dunbare9fcadd22009-02-11 22:25:55 +0000727 llvm::Value *ArgValue = CGF.EmitVAListRef(VE->getSubExpr());
Anders Carlsson13abd7e2008-11-04 05:30:00 +0000728 llvm::Value *ArgPtr = CGF.EmitVAArg(ArgValue, VE->getType());
729
Sebastian Redl020cddc2009-01-09 21:09:38 +0000730 if (!ArgPtr) {
Anders Carlsson13abd7e2008-11-04 05:30:00 +0000731 CGF.ErrorUnsupported(VE, "aggregate va_arg expression");
Sebastian Redl020cddc2009-01-09 21:09:38 +0000732 return;
733 }
734
Daniel Dunbar2e442a02010-08-21 03:15:20 +0000735 EmitFinalDestCopy(VE, CGF.MakeAddrLValue(ArgPtr, VE->getType()));
Eli Friedman21911e82008-05-27 15:51:49 +0000736}
737
Anders Carlsson3be22e22009-05-30 23:23:33 +0000738void AggExprEmitter::VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E) {
John McCall7a626f62010-09-15 10:14:12 +0000739 // Ensure that we have a slot, but if we already do, remember
John McCallcac93852011-08-26 08:02:37 +0000740 // whether it was externally destructed.
741 bool wasExternallyDestructed = Dest.isExternallyDestructed();
John McCall7a626f62010-09-15 10:14:12 +0000742 Dest = EnsureSlot(E->getType());
John McCallcac93852011-08-26 08:02:37 +0000743
744 // We're going to push a destructor if there isn't already one.
745 Dest.setExternallyDestructed();
Mike Stump11289f42009-09-09 15:08:12 +0000746
John McCall7a626f62010-09-15 10:14:12 +0000747 Visit(E->getSubExpr());
Anders Carlsson3be22e22009-05-30 23:23:33 +0000748
John McCallcac93852011-08-26 08:02:37 +0000749 // Push that destructor we promised.
750 if (!wasExternallyDestructed)
Peter Collingbourne702b2842011-11-27 22:09:22 +0000751 CGF.EmitCXXTemporary(E->getTemporary(), E->getType(), Dest.getAddr());
Anders Carlsson3be22e22009-05-30 23:23:33 +0000752}
753
Anders Carlssonb7f8f592009-04-17 00:06:03 +0000754void
Anders Carlsson1619a5042009-05-03 17:47:16 +0000755AggExprEmitter::VisitCXXConstructExpr(const CXXConstructExpr *E) {
John McCall7a626f62010-09-15 10:14:12 +0000756 AggValueSlot Slot = EnsureSlot(E->getType());
757 CGF.EmitCXXConstructExpr(E, Slot);
Anders Carlssonc82b86d2009-05-19 04:48:36 +0000758}
759
Eli Friedmanc370a7e2012-02-09 03:32:31 +0000760void
761AggExprEmitter::VisitLambdaExpr(LambdaExpr *E) {
762 AggValueSlot Slot = EnsureSlot(E->getType());
763 CGF.EmitLambdaExpr(E, Slot);
764}
765
John McCall5d413782010-12-06 08:20:24 +0000766void AggExprEmitter::VisitExprWithCleanups(ExprWithCleanups *E) {
John McCall08ef4662011-11-10 08:15:53 +0000767 CGF.enterFullExpression(E);
768 CodeGenFunction::RunCleanupsScope cleanups(CGF);
769 Visit(E->getSubExpr());
Anders Carlssonb7f8f592009-04-17 00:06:03 +0000770}
771
Douglas Gregor747eb782010-07-08 06:14:04 +0000772void AggExprEmitter::VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *E) {
John McCall7a626f62010-09-15 10:14:12 +0000773 QualType T = E->getType();
774 AggValueSlot Slot = EnsureSlot(T);
John McCall1553b192011-06-16 04:16:24 +0000775 EmitNullInitializationToLValue(CGF.MakeAddrLValue(Slot.getAddr(), T));
Anders Carlsson18ada982009-12-16 06:57:54 +0000776}
777
778void AggExprEmitter::VisitImplicitValueInitExpr(ImplicitValueInitExpr *E) {
John McCall7a626f62010-09-15 10:14:12 +0000779 QualType T = E->getType();
780 AggValueSlot Slot = EnsureSlot(T);
John McCall1553b192011-06-16 04:16:24 +0000781 EmitNullInitializationToLValue(CGF.MakeAddrLValue(Slot.getAddr(), T));
Nuno Lopesff3507b2009-10-18 15:18:11 +0000782}
783
Chris Lattner27a36312010-12-02 07:07:26 +0000784/// isSimpleZero - If emitting this value will obviously just cause a store of
785/// zero to memory, return true. This can return false if uncertain, so it just
786/// handles simple cases.
787static bool isSimpleZero(const Expr *E, CodeGenFunction &CGF) {
Peter Collingbourne91147592011-04-15 00:35:48 +0000788 E = E->IgnoreParens();
789
Chris Lattner27a36312010-12-02 07:07:26 +0000790 // 0
791 if (const IntegerLiteral *IL = dyn_cast<IntegerLiteral>(E))
792 return IL->getValue() == 0;
793 // +0.0
794 if (const FloatingLiteral *FL = dyn_cast<FloatingLiteral>(E))
795 return FL->getValue().isPosZero();
796 // int()
797 if ((isa<ImplicitValueInitExpr>(E) || isa<CXXScalarValueInitExpr>(E)) &&
798 CGF.getTypes().isZeroInitializable(E->getType()))
799 return true;
800 // (int*)0 - Null pointer expressions.
801 if (const CastExpr *ICE = dyn_cast<CastExpr>(E))
802 return ICE->getCastKind() == CK_NullToPointer;
803 // '\0'
804 if (const CharacterLiteral *CL = dyn_cast<CharacterLiteral>(E))
805 return CL->getValue() == 0;
806
807 // Otherwise, hard case: conservatively return false.
808 return false;
809}
810
811
Anders Carlssonb2473502010-02-03 17:33:16 +0000812void
John McCall1553b192011-06-16 04:16:24 +0000813AggExprEmitter::EmitInitializationToLValue(Expr* E, LValue LV) {
814 QualType type = LV.getType();
Mike Stumpdf0fe272009-05-29 15:46:01 +0000815 // FIXME: Ignore result?
Chris Lattner579a05d2008-04-04 18:42:16 +0000816 // FIXME: Are initializers affected by volatile?
Chris Lattner27a36312010-12-02 07:07:26 +0000817 if (Dest.isZeroed() && isSimpleZero(E, CGF)) {
818 // Storing "i32 0" to a zero'd memory location is a noop.
819 } else if (isa<ImplicitValueInitExpr>(E)) {
John McCall1553b192011-06-16 04:16:24 +0000820 EmitNullInitializationToLValue(LV);
821 } else if (type->isReferenceType()) {
Anders Carlsson04775f82010-06-26 16:35:32 +0000822 RValue RV = CGF.EmitReferenceBindingToExpr(E, /*InitializedDecl=*/0);
John McCall55e1fbc2011-06-25 02:11:03 +0000823 CGF.EmitStoreThroughLValue(RV, LV);
John McCall1553b192011-06-16 04:16:24 +0000824 } else if (type->isAnyComplexType()) {
Douglas Gregor0202cb42009-01-29 17:44:32 +0000825 CGF.EmitComplexExprIntoAddr(E, LV.getAddress(), false);
John McCall1553b192011-06-16 04:16:24 +0000826 } else if (CGF.hasAggregateLLVMType(type)) {
John McCall8d6fc952011-08-25 20:40:09 +0000827 CGF.EmitAggExpr(E, AggValueSlot::forLValue(LV,
828 AggValueSlot::IsDestructed,
829 AggValueSlot::DoesNotNeedGCBarriers,
John McCalla5efa732011-08-25 23:04:34 +0000830 AggValueSlot::IsNotAliased,
John McCall1553b192011-06-16 04:16:24 +0000831 Dest.isZeroed()));
John McCall31168b02011-06-15 23:02:42 +0000832 } else if (LV.isSimple()) {
John McCall1553b192011-06-16 04:16:24 +0000833 CGF.EmitScalarInit(E, /*D=*/0, LV, /*Captured=*/false);
Eli Friedman6e313212008-05-12 15:06:05 +0000834 } else {
John McCall55e1fbc2011-06-25 02:11:03 +0000835 CGF.EmitStoreThroughLValue(RValue::get(CGF.EmitScalarExpr(E)), LV);
Chris Lattner579a05d2008-04-04 18:42:16 +0000836 }
Chris Lattner579a05d2008-04-04 18:42:16 +0000837}
838
John McCall1553b192011-06-16 04:16:24 +0000839void AggExprEmitter::EmitNullInitializationToLValue(LValue lv) {
840 QualType type = lv.getType();
841
Chris Lattner27a36312010-12-02 07:07:26 +0000842 // If the destination slot is already zeroed out before the aggregate is
843 // copied into it, we don't have to emit any zeros here.
John McCall1553b192011-06-16 04:16:24 +0000844 if (Dest.isZeroed() && CGF.getTypes().isZeroInitializable(type))
Chris Lattner27a36312010-12-02 07:07:26 +0000845 return;
846
John McCall1553b192011-06-16 04:16:24 +0000847 if (!CGF.hasAggregateLLVMType(type)) {
Chris Lattner579a05d2008-04-04 18:42:16 +0000848 // For non-aggregates, we can store zero
John McCall1553b192011-06-16 04:16:24 +0000849 llvm::Value *null = llvm::Constant::getNullValue(CGF.ConvertType(type));
John McCall55e1fbc2011-06-25 02:11:03 +0000850 CGF.EmitStoreThroughLValue(RValue::get(null), lv);
Lauro Ramos Venancioe2162c62008-02-19 19:27:31 +0000851 } else {
Chris Lattner579a05d2008-04-04 18:42:16 +0000852 // There's a potential optimization opportunity in combining
853 // memsets; that would be easy for arrays, but relatively
854 // difficult for structures with the current code.
John McCall1553b192011-06-16 04:16:24 +0000855 CGF.EmitNullInitialization(lv.getAddress(), lv.getType());
Chris Lattner579a05d2008-04-04 18:42:16 +0000856 }
857}
858
Chris Lattner579a05d2008-04-04 18:42:16 +0000859void AggExprEmitter::VisitInitListExpr(InitListExpr *E) {
Eli Friedmanf5d08c92008-12-02 01:17:45 +0000860#if 0
Eli Friedman6d11ec82009-12-04 01:30:56 +0000861 // FIXME: Assess perf here? Figure out what cases are worth optimizing here
862 // (Length of globals? Chunks of zeroed-out space?).
Eli Friedmanf5d08c92008-12-02 01:17:45 +0000863 //
Mike Stump18bb9282009-05-16 07:57:57 +0000864 // If we can, prefer a copy from a global; this is a lot less code for long
865 // globals, and it's easier for the current optimizers to analyze.
Eli Friedman6d11ec82009-12-04 01:30:56 +0000866 if (llvm::Constant* C = CGF.CGM.EmitConstantExpr(E, E->getType(), &CGF)) {
Eli Friedmanc59bb482008-11-30 02:11:09 +0000867 llvm::GlobalVariable* GV =
Eli Friedman6d11ec82009-12-04 01:30:56 +0000868 new llvm::GlobalVariable(CGF.CGM.getModule(), C->getType(), true,
869 llvm::GlobalValue::InternalLinkage, C, "");
Daniel Dunbar2e442a02010-08-21 03:15:20 +0000870 EmitFinalDestCopy(E, CGF.MakeAddrLValue(GV, E->getType()));
Eli Friedmanc59bb482008-11-30 02:11:09 +0000871 return;
872 }
Eli Friedmanf5d08c92008-12-02 01:17:45 +0000873#endif
Chris Lattnerf53c0962010-09-06 00:11:41 +0000874 if (E->hadArrayRangeDesignator())
Douglas Gregorbf7207a2009-01-29 19:42:23 +0000875 CGF.ErrorUnsupported(E, "GNU array range designator extension");
Douglas Gregorbf7207a2009-01-29 19:42:23 +0000876
Sebastian Redlc83ed822012-02-17 08:42:25 +0000877 if (E->initializesStdInitializerList()) {
878 EmitStdInitializerList(E);
879 return;
880 }
881
John McCall7a626f62010-09-15 10:14:12 +0000882 llvm::Value *DestPtr = Dest.getAddr();
883
Chris Lattner579a05d2008-04-04 18:42:16 +0000884 // Handle initialization of an array.
885 if (E->getType()->isArrayType()) {
Chris Lattner0f398c42008-07-26 22:37:01 +0000886 if (E->getNumInits() > 0) {
887 QualType T1 = E->getType();
888 QualType T2 = E->getInit(0)->getType();
Eli Friedman2a695472009-05-28 23:04:00 +0000889 if (CGF.getContext().hasSameUnqualifiedType(T1, T2)) {
Chris Lattner0f398c42008-07-26 22:37:01 +0000890 EmitAggLoadOfLValue(E->getInit(0));
891 return;
892 }
Eli Friedmanf23b6fa2008-05-19 17:51:16 +0000893 }
894
John McCall82fe67b2011-07-09 01:37:26 +0000895 QualType elementType = E->getType().getCanonicalType();
896 elementType = CGF.getContext().getQualifiedType(
897 cast<ArrayType>(elementType)->getElementType(),
898 elementType.getQualifiers() + Dest.getQualifiers());
Argyrios Kyrtzidise07425a52011-04-28 18:53:58 +0000899
Sebastian Redlc83ed822012-02-17 08:42:25 +0000900 llvm::PointerType *APType =
901 cast<llvm::PointerType>(DestPtr->getType());
902 llvm::ArrayType *AType =
903 cast<llvm::ArrayType>(APType->getElementType());
Chris Lattner27a36312010-12-02 07:07:26 +0000904
Sebastian Redlc83ed822012-02-17 08:42:25 +0000905 EmitArrayInit(DestPtr, AType, elementType, E);
Chris Lattner579a05d2008-04-04 18:42:16 +0000906 return;
907 }
Mike Stump11289f42009-09-09 15:08:12 +0000908
Chris Lattner579a05d2008-04-04 18:42:16 +0000909 assert(E->getType()->isRecordType() && "Only support structs/unions here!");
Mike Stump11289f42009-09-09 15:08:12 +0000910
Chris Lattner579a05d2008-04-04 18:42:16 +0000911 // Do struct initialization; this code just sets each individual member
912 // to the approprate value. This makes bitfield support automatic;
913 // the disadvantage is that the generated code is more difficult for
914 // the optimizer, especially with bitfields.
915 unsigned NumInitElements = E->getNumInits();
John McCall3b935d32011-07-11 19:35:02 +0000916 RecordDecl *record = E->getType()->castAs<RecordType>()->getDecl();
Chris Lattner52bcf962010-09-06 00:13:11 +0000917
John McCall3b935d32011-07-11 19:35:02 +0000918 if (record->isUnion()) {
Douglas Gregor51695702009-01-29 16:53:55 +0000919 // Only initialize one field of a union. The field itself is
920 // specified by the initializer list.
921 if (!E->getInitializedFieldInUnion()) {
922 // Empty union; we have nothing to do.
Mike Stump11289f42009-09-09 15:08:12 +0000923
Douglas Gregor51695702009-01-29 16:53:55 +0000924#ifndef NDEBUG
925 // Make sure that it's really an empty and not a failure of
926 // semantic analysis.
John McCall3b935d32011-07-11 19:35:02 +0000927 for (RecordDecl::field_iterator Field = record->field_begin(),
928 FieldEnd = record->field_end();
Douglas Gregor51695702009-01-29 16:53:55 +0000929 Field != FieldEnd; ++Field)
930 assert(Field->isUnnamedBitfield() && "Only unnamed bitfields allowed");
931#endif
932 return;
933 }
934
935 // FIXME: volatility
936 FieldDecl *Field = E->getInitializedFieldInUnion();
Douglas Gregor51695702009-01-29 16:53:55 +0000937
Chris Lattner27a36312010-12-02 07:07:26 +0000938 LValue FieldLoc = CGF.EmitLValueForFieldInitialization(DestPtr, Field, 0);
Douglas Gregor51695702009-01-29 16:53:55 +0000939 if (NumInitElements) {
940 // Store the initializer into the field
John McCall1553b192011-06-16 04:16:24 +0000941 EmitInitializationToLValue(E->getInit(0), FieldLoc);
Douglas Gregor51695702009-01-29 16:53:55 +0000942 } else {
Chris Lattner27a36312010-12-02 07:07:26 +0000943 // Default-initialize to null.
John McCall1553b192011-06-16 04:16:24 +0000944 EmitNullInitializationToLValue(FieldLoc);
Douglas Gregor51695702009-01-29 16:53:55 +0000945 }
946
947 return;
948 }
Mike Stump11289f42009-09-09 15:08:12 +0000949
John McCall3b935d32011-07-11 19:35:02 +0000950 // We'll need to enter cleanup scopes in case any of the member
951 // initializers throw an exception.
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000952 SmallVector<EHScopeStack::stable_iterator, 16> cleanups;
John McCallf4beacd2011-11-10 10:43:54 +0000953 llvm::Instruction *cleanupDominator = 0;
John McCall3b935d32011-07-11 19:35:02 +0000954
Chris Lattner579a05d2008-04-04 18:42:16 +0000955 // Here we iterate over the fields; this makes it simpler to both
956 // default-initialize fields and skip over unnamed fields.
John McCall3b935d32011-07-11 19:35:02 +0000957 unsigned curInitIndex = 0;
958 for (RecordDecl::field_iterator field = record->field_begin(),
959 fieldEnd = record->field_end();
960 field != fieldEnd; ++field) {
961 // We're done once we hit the flexible array member.
962 if (field->getType()->isIncompleteArrayType())
Douglas Gregor91f84212008-12-11 16:49:14 +0000963 break;
964
John McCall3b935d32011-07-11 19:35:02 +0000965 // Always skip anonymous bitfields.
966 if (field->isUnnamedBitfield())
Chris Lattner579a05d2008-04-04 18:42:16 +0000967 continue;
Douglas Gregor17bd0942009-01-28 23:36:17 +0000968
John McCall3b935d32011-07-11 19:35:02 +0000969 // We're done if we reach the end of the explicit initializers, we
970 // have a zeroed object, and the rest of the fields are
971 // zero-initializable.
972 if (curInitIndex == NumInitElements && Dest.isZeroed() &&
Chris Lattner27a36312010-12-02 07:07:26 +0000973 CGF.getTypes().isZeroInitializable(E->getType()))
974 break;
975
Eli Friedman327944b2008-06-13 23:01:12 +0000976 // FIXME: volatility
John McCall3b935d32011-07-11 19:35:02 +0000977 LValue LV = CGF.EmitLValueForFieldInitialization(DestPtr, *field, 0);
Fariborz Jahanian7c1baf42009-05-27 19:54:11 +0000978 // We never generate write-barries for initialized fields.
John McCall3b935d32011-07-11 19:35:02 +0000979 LV.setNonGC(true);
Chris Lattner27a36312010-12-02 07:07:26 +0000980
John McCall3b935d32011-07-11 19:35:02 +0000981 if (curInitIndex < NumInitElements) {
Chris Lattnere18aaf22010-03-08 21:08:07 +0000982 // Store the initializer into the field.
John McCall3b935d32011-07-11 19:35:02 +0000983 EmitInitializationToLValue(E->getInit(curInitIndex++), LV);
Chris Lattner579a05d2008-04-04 18:42:16 +0000984 } else {
985 // We're out of initalizers; default-initialize to null
John McCall3b935d32011-07-11 19:35:02 +0000986 EmitNullInitializationToLValue(LV);
987 }
988
989 // Push a destructor if necessary.
990 // FIXME: if we have an array of structures, all explicitly
991 // initialized, we can end up pushing a linear number of cleanups.
992 bool pushedCleanup = false;
993 if (QualType::DestructionKind dtorKind
994 = field->getType().isDestructedType()) {
995 assert(LV.isSimple());
996 if (CGF.needsEHCleanup(dtorKind)) {
John McCallf4beacd2011-11-10 10:43:54 +0000997 if (!cleanupDominator)
998 cleanupDominator = CGF.Builder.CreateUnreachable(); // placeholder
999
John McCall3b935d32011-07-11 19:35:02 +00001000 CGF.pushDestroy(EHCleanup, LV.getAddress(), field->getType(),
1001 CGF.getDestroyer(dtorKind), false);
1002 cleanups.push_back(CGF.EHStack.stable_begin());
1003 pushedCleanup = true;
1004 }
Chris Lattner579a05d2008-04-04 18:42:16 +00001005 }
Chris Lattner27a36312010-12-02 07:07:26 +00001006
1007 // If the GEP didn't get used because of a dead zero init or something
1008 // else, clean it up for -O0 builds and general tidiness.
John McCall3b935d32011-07-11 19:35:02 +00001009 if (!pushedCleanup && LV.isSimple())
Chris Lattner27a36312010-12-02 07:07:26 +00001010 if (llvm::GetElementPtrInst *GEP =
John McCall3b935d32011-07-11 19:35:02 +00001011 dyn_cast<llvm::GetElementPtrInst>(LV.getAddress()))
Chris Lattner27a36312010-12-02 07:07:26 +00001012 if (GEP->use_empty())
1013 GEP->eraseFromParent();
Lauro Ramos Venancioe2162c62008-02-19 19:27:31 +00001014 }
John McCall3b935d32011-07-11 19:35:02 +00001015
1016 // Deactivate all the partial cleanups in reverse order, which
1017 // generally means popping them.
1018 for (unsigned i = cleanups.size(); i != 0; --i)
John McCallf4beacd2011-11-10 10:43:54 +00001019 CGF.DeactivateCleanupBlock(cleanups[i-1], cleanupDominator);
1020
1021 // Destroy the placeholder if we made one.
1022 if (cleanupDominator)
1023 cleanupDominator->eraseFromParent();
Devang Patel87174172007-10-26 17:44:44 +00001024}
1025
Chris Lattner835635d2007-08-21 04:59:27 +00001026//===----------------------------------------------------------------------===//
1027// Entry Points into this File
1028//===----------------------------------------------------------------------===//
1029
Chris Lattner27a36312010-12-02 07:07:26 +00001030/// GetNumNonZeroBytesInInit - Get an approximate count of the number of
1031/// non-zero bytes that will be stored when outputting the initializer for the
1032/// specified initializer expression.
Ken Dyckdf94cb72011-04-24 17:17:56 +00001033static CharUnits GetNumNonZeroBytesInInit(const Expr *E, CodeGenFunction &CGF) {
Peter Collingbourne91147592011-04-15 00:35:48 +00001034 E = E->IgnoreParens();
Chris Lattner27a36312010-12-02 07:07:26 +00001035
1036 // 0 and 0.0 won't require any non-zero stores!
Ken Dyckdf94cb72011-04-24 17:17:56 +00001037 if (isSimpleZero(E, CGF)) return CharUnits::Zero();
Chris Lattner27a36312010-12-02 07:07:26 +00001038
1039 // If this is an initlist expr, sum up the size of sizes of the (present)
1040 // elements. If this is something weird, assume the whole thing is non-zero.
1041 const InitListExpr *ILE = dyn_cast<InitListExpr>(E);
1042 if (ILE == 0 || !CGF.getTypes().isZeroInitializable(ILE->getType()))
Ken Dyckdf94cb72011-04-24 17:17:56 +00001043 return CGF.getContext().getTypeSizeInChars(E->getType());
Chris Lattner27a36312010-12-02 07:07:26 +00001044
Chris Lattnerc5cc2fb2010-12-02 18:29:00 +00001045 // InitListExprs for structs have to be handled carefully. If there are
1046 // reference members, we need to consider the size of the reference, not the
1047 // referencee. InitListExprs for unions and arrays can't have references.
Chris Lattner5cd84752010-12-02 22:52:04 +00001048 if (const RecordType *RT = E->getType()->getAs<RecordType>()) {
1049 if (!RT->isUnionType()) {
1050 RecordDecl *SD = E->getType()->getAs<RecordType>()->getDecl();
Ken Dyckdf94cb72011-04-24 17:17:56 +00001051 CharUnits NumNonZeroBytes = CharUnits::Zero();
Chris Lattner5cd84752010-12-02 22:52:04 +00001052
1053 unsigned ILEElement = 0;
1054 for (RecordDecl::field_iterator Field = SD->field_begin(),
1055 FieldEnd = SD->field_end(); Field != FieldEnd; ++Field) {
1056 // We're done once we hit the flexible array member or run out of
1057 // InitListExpr elements.
1058 if (Field->getType()->isIncompleteArrayType() ||
1059 ILEElement == ILE->getNumInits())
1060 break;
1061 if (Field->isUnnamedBitfield())
1062 continue;
Chris Lattnerc5cc2fb2010-12-02 18:29:00 +00001063
Chris Lattner5cd84752010-12-02 22:52:04 +00001064 const Expr *E = ILE->getInit(ILEElement++);
1065
1066 // Reference values are always non-null and have the width of a pointer.
1067 if (Field->getType()->isReferenceType())
Ken Dyckdf94cb72011-04-24 17:17:56 +00001068 NumNonZeroBytes += CGF.getContext().toCharUnitsFromBits(
Douglas Gregore8bbc122011-09-02 00:18:52 +00001069 CGF.getContext().getTargetInfo().getPointerWidth(0));
Chris Lattner5cd84752010-12-02 22:52:04 +00001070 else
1071 NumNonZeroBytes += GetNumNonZeroBytesInInit(E, CGF);
1072 }
Chris Lattnerc5cc2fb2010-12-02 18:29:00 +00001073
Chris Lattner5cd84752010-12-02 22:52:04 +00001074 return NumNonZeroBytes;
Chris Lattnerc5cc2fb2010-12-02 18:29:00 +00001075 }
Chris Lattnerc5cc2fb2010-12-02 18:29:00 +00001076 }
1077
1078
Ken Dyckdf94cb72011-04-24 17:17:56 +00001079 CharUnits NumNonZeroBytes = CharUnits::Zero();
Chris Lattner27a36312010-12-02 07:07:26 +00001080 for (unsigned i = 0, e = ILE->getNumInits(); i != e; ++i)
1081 NumNonZeroBytes += GetNumNonZeroBytesInInit(ILE->getInit(i), CGF);
1082 return NumNonZeroBytes;
1083}
1084
1085/// CheckAggExprForMemSetUse - If the initializer is large and has a lot of
1086/// zeros in it, emit a memset and avoid storing the individual zeros.
1087///
1088static void CheckAggExprForMemSetUse(AggValueSlot &Slot, const Expr *E,
1089 CodeGenFunction &CGF) {
1090 // If the slot is already known to be zeroed, nothing to do. Don't mess with
1091 // volatile stores.
1092 if (Slot.isZeroed() || Slot.isVolatile() || Slot.getAddr() == 0) return;
Argyrios Kyrtzidis03535262011-04-28 22:57:55 +00001093
1094 // C++ objects with a user-declared constructor don't need zero'ing.
1095 if (CGF.getContext().getLangOptions().CPlusPlus)
1096 if (const RecordType *RT = CGF.getContext()
1097 .getBaseElementType(E->getType())->getAs<RecordType>()) {
1098 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
1099 if (RD->hasUserDeclaredConstructor())
1100 return;
1101 }
1102
Chris Lattner27a36312010-12-02 07:07:26 +00001103 // If the type is 16-bytes or smaller, prefer individual stores over memset.
Ken Dyck239a3352011-04-24 17:25:32 +00001104 std::pair<CharUnits, CharUnits> TypeInfo =
1105 CGF.getContext().getTypeInfoInChars(E->getType());
1106 if (TypeInfo.first <= CharUnits::fromQuantity(16))
Chris Lattner27a36312010-12-02 07:07:26 +00001107 return;
1108
1109 // Check to see if over 3/4 of the initializer are known to be zero. If so,
1110 // we prefer to emit memset + individual stores for the rest.
Ken Dyck239a3352011-04-24 17:25:32 +00001111 CharUnits NumNonZeroBytes = GetNumNonZeroBytesInInit(E, CGF);
1112 if (NumNonZeroBytes*4 > TypeInfo.first)
Chris Lattner27a36312010-12-02 07:07:26 +00001113 return;
1114
1115 // Okay, it seems like a good idea to use an initial memset, emit the call.
Ken Dyck239a3352011-04-24 17:25:32 +00001116 llvm::Constant *SizeVal = CGF.Builder.getInt64(TypeInfo.first.getQuantity());
1117 CharUnits Align = TypeInfo.second;
Chris Lattner27a36312010-12-02 07:07:26 +00001118
1119 llvm::Value *Loc = Slot.getAddr();
Chris Lattner27a36312010-12-02 07:07:26 +00001120
Chris Lattnerece04092012-02-07 00:39:47 +00001121 Loc = CGF.Builder.CreateBitCast(Loc, CGF.Int8PtrTy);
Ken Dyck239a3352011-04-24 17:25:32 +00001122 CGF.Builder.CreateMemSet(Loc, CGF.Builder.getInt8(0), SizeVal,
1123 Align.getQuantity(), false);
Chris Lattner27a36312010-12-02 07:07:26 +00001124
1125 // Tell the AggExprEmitter that the slot is known zero.
1126 Slot.setZeroed();
1127}
1128
1129
1130
1131
Mike Stump25306ca2009-05-26 18:57:45 +00001132/// EmitAggExpr - Emit the computation of the specified expression of aggregate
1133/// type. The result is computed into DestPtr. Note that if DestPtr is null,
1134/// the value of the aggregate expression is not needed. If VolatileDest is
1135/// true, DestPtr cannot be 0.
John McCall7a626f62010-09-15 10:14:12 +00001136///
1137/// \param IsInitializer - true if this evaluation is initializing an
1138/// object whose lifetime is already being managed.
John McCall7a626f62010-09-15 10:14:12 +00001139void CodeGenFunction::EmitAggExpr(const Expr *E, AggValueSlot Slot,
Fariborz Jahanianb60e70f2010-09-16 00:20:07 +00001140 bool IgnoreResult) {
Chris Lattner835635d2007-08-21 04:59:27 +00001141 assert(E && hasAggregateLLVMType(E->getType()) &&
1142 "Invalid aggregate expression to emit");
Chris Lattner27a36312010-12-02 07:07:26 +00001143 assert((Slot.getAddr() != 0 || Slot.isIgnored()) &&
1144 "slot has bits but no address");
Mike Stump11289f42009-09-09 15:08:12 +00001145
Chris Lattner27a36312010-12-02 07:07:26 +00001146 // Optimize the slot if possible.
1147 CheckAggExprForMemSetUse(Slot, E, *this);
1148
1149 AggExprEmitter(*this, Slot, IgnoreResult).Visit(const_cast<Expr*>(E));
Chris Lattner835635d2007-08-21 04:59:27 +00001150}
Daniel Dunbar0bc8e862008-09-09 20:49:46 +00001151
Daniel Dunbard0bc7b92010-02-05 19:38:31 +00001152LValue CodeGenFunction::EmitAggExprToLValue(const Expr *E) {
1153 assert(hasAggregateLLVMType(E->getType()) && "Invalid argument!");
Daniel Dunbara7566f12010-02-09 02:48:28 +00001154 llvm::Value *Temp = CreateMemTemp(E->getType());
Daniel Dunbar2e442a02010-08-21 03:15:20 +00001155 LValue LV = MakeAddrLValue(Temp, E->getType());
John McCall8d6fc952011-08-25 20:40:09 +00001156 EmitAggExpr(E, AggValueSlot::forLValue(LV, AggValueSlot::IsNotDestructed,
John McCall46759f42011-08-26 07:31:35 +00001157 AggValueSlot::DoesNotNeedGCBarriers,
1158 AggValueSlot::IsNotAliased));
Daniel Dunbar2e442a02010-08-21 03:15:20 +00001159 return LV;
Daniel Dunbard0bc7b92010-02-05 19:38:31 +00001160}
1161
Daniel Dunbar0bc8e862008-09-09 20:49:46 +00001162void CodeGenFunction::EmitAggregateCopy(llvm::Value *DestPtr,
Mike Stump5e9e61b2009-05-23 22:29:41 +00001163 llvm::Value *SrcPtr, QualType Ty,
Eli Friedman6d694a32011-12-05 22:23:28 +00001164 bool isVolatile, unsigned Alignment) {
Daniel Dunbar0bc8e862008-09-09 20:49:46 +00001165 assert(!Ty->isAnyComplexType() && "Shouldn't happen for complex");
Mike Stump11289f42009-09-09 15:08:12 +00001166
Anders Carlsson16e94af2010-05-03 01:20:20 +00001167 if (getContext().getLangOptions().CPlusPlus) {
1168 if (const RecordType *RT = Ty->getAs<RecordType>()) {
Douglas Gregorf22101a2010-05-20 15:39:01 +00001169 CXXRecordDecl *Record = cast<CXXRecordDecl>(RT->getDecl());
1170 assert((Record->hasTrivialCopyConstructor() ||
Douglas Gregor146b8e92011-09-06 16:26:56 +00001171 Record->hasTrivialCopyAssignment() ||
1172 Record->hasTrivialMoveConstructor() ||
1173 Record->hasTrivialMoveAssignment()) &&
Douglas Gregorf22101a2010-05-20 15:39:01 +00001174 "Trying to aggregate-copy a type without a trivial copy "
1175 "constructor or assignment operator");
Douglas Gregor265b8b82010-05-20 15:48:29 +00001176 // Ignore empty classes in C++.
Douglas Gregorf22101a2010-05-20 15:39:01 +00001177 if (Record->isEmpty())
Anders Carlsson16e94af2010-05-03 01:20:20 +00001178 return;
1179 }
1180 }
1181
Chris Lattnerca05dfe2009-02-28 18:31:01 +00001182 // Aggregate assignment turns into llvm.memcpy. This is almost valid per
Chris Lattner3ef668c2009-02-28 18:18:58 +00001183 // C99 6.5.16.1p3, which states "If the value being stored in an object is
1184 // read from another object that overlaps in anyway the storage of the first
1185 // object, then the overlap shall be exact and the two objects shall have
1186 // qualified or unqualified versions of a compatible type."
1187 //
Chris Lattnerca05dfe2009-02-28 18:31:01 +00001188 // memcpy is not defined if the source and destination pointers are exactly
Chris Lattner3ef668c2009-02-28 18:18:58 +00001189 // equal, but other compilers do this optimization, and almost every memcpy
1190 // implementation handles this case safely. If there is a libc that does not
1191 // safely handle this, we can add a target hook.
Mike Stump11289f42009-09-09 15:08:12 +00001192
Daniel Dunbar0bc8e862008-09-09 20:49:46 +00001193 // Get size and alignment info for this aggregate.
Ken Dyckbb2c2402011-04-24 17:37:26 +00001194 std::pair<CharUnits, CharUnits> TypeInfo =
1195 getContext().getTypeInfoInChars(Ty);
Mike Stump11289f42009-09-09 15:08:12 +00001196
Eli Friedman6d694a32011-12-05 22:23:28 +00001197 if (!Alignment)
1198 Alignment = TypeInfo.second.getQuantity();
1199
Daniel Dunbar0bc8e862008-09-09 20:49:46 +00001200 // FIXME: Handle variable sized types.
Mike Stump11289f42009-09-09 15:08:12 +00001201
Mike Stump86736572009-05-23 04:13:59 +00001202 // FIXME: If we have a volatile struct, the optimizer can remove what might
1203 // appear to be `extra' memory ops:
1204 //
1205 // volatile struct { int i; } a, b;
1206 //
1207 // int main() {
1208 // a = b;
1209 // a = b;
1210 // }
1211 //
Mon P Wangcc2ab0c2010-04-04 03:10:52 +00001212 // we need to use a different call here. We use isVolatile to indicate when
Mike Stumpec3cbfe2009-05-26 22:03:21 +00001213 // either the source or the destination is volatile.
Mon P Wangcc2ab0c2010-04-04 03:10:52 +00001214
Chris Lattner2192fe52011-07-18 04:24:23 +00001215 llvm::PointerType *DPT = cast<llvm::PointerType>(DestPtr->getType());
1216 llvm::Type *DBP =
John McCallad7c5c12011-02-08 08:22:06 +00001217 llvm::Type::getInt8PtrTy(getLLVMContext(), DPT->getAddressSpace());
Benjamin Kramer76399eb2011-09-27 21:06:10 +00001218 DestPtr = Builder.CreateBitCast(DestPtr, DBP);
Mon P Wangcc2ab0c2010-04-04 03:10:52 +00001219
Chris Lattner2192fe52011-07-18 04:24:23 +00001220 llvm::PointerType *SPT = cast<llvm::PointerType>(SrcPtr->getType());
1221 llvm::Type *SBP =
John McCallad7c5c12011-02-08 08:22:06 +00001222 llvm::Type::getInt8PtrTy(getLLVMContext(), SPT->getAddressSpace());
Benjamin Kramer76399eb2011-09-27 21:06:10 +00001223 SrcPtr = Builder.CreateBitCast(SrcPtr, SBP);
Mon P Wangcc2ab0c2010-04-04 03:10:52 +00001224
John McCall31168b02011-06-15 23:02:42 +00001225 // Don't do any of the memmove_collectable tests if GC isn't set.
Douglas Gregor79a91412011-09-13 17:21:33 +00001226 if (CGM.getLangOptions().getGC() == LangOptions::NonGC) {
John McCall31168b02011-06-15 23:02:42 +00001227 // fall through
1228 } else if (const RecordType *RecordTy = Ty->getAs<RecordType>()) {
Fariborz Jahanian021510e2010-06-15 22:44:06 +00001229 RecordDecl *Record = RecordTy->getDecl();
1230 if (Record->hasObjectMember()) {
Ken Dyckbb2c2402011-04-24 17:37:26 +00001231 CharUnits size = TypeInfo.first;
Chris Lattner2192fe52011-07-18 04:24:23 +00001232 llvm::Type *SizeTy = ConvertType(getContext().getSizeType());
Ken Dyckbb2c2402011-04-24 17:37:26 +00001233 llvm::Value *SizeVal = llvm::ConstantInt::get(SizeTy, size.getQuantity());
Fariborz Jahanian021510e2010-06-15 22:44:06 +00001234 CGM.getObjCRuntime().EmitGCMemmoveCollectable(*this, DestPtr, SrcPtr,
1235 SizeVal);
1236 return;
1237 }
John McCall31168b02011-06-15 23:02:42 +00001238 } else if (Ty->isArrayType()) {
Fariborz Jahanian021510e2010-06-15 22:44:06 +00001239 QualType BaseType = getContext().getBaseElementType(Ty);
1240 if (const RecordType *RecordTy = BaseType->getAs<RecordType>()) {
1241 if (RecordTy->getDecl()->hasObjectMember()) {
Ken Dyckbb2c2402011-04-24 17:37:26 +00001242 CharUnits size = TypeInfo.first;
Chris Lattner2192fe52011-07-18 04:24:23 +00001243 llvm::Type *SizeTy = ConvertType(getContext().getSizeType());
Ken Dyckbb2c2402011-04-24 17:37:26 +00001244 llvm::Value *SizeVal =
1245 llvm::ConstantInt::get(SizeTy, size.getQuantity());
Fariborz Jahanian021510e2010-06-15 22:44:06 +00001246 CGM.getObjCRuntime().EmitGCMemmoveCollectable(*this, DestPtr, SrcPtr,
1247 SizeVal);
1248 return;
1249 }
1250 }
1251 }
1252
Benjamin Krameracc6b4e2010-12-30 00:13:21 +00001253 Builder.CreateMemCpy(DestPtr, SrcPtr,
Ken Dyckbb2c2402011-04-24 17:37:26 +00001254 llvm::ConstantInt::get(IntPtrTy,
1255 TypeInfo.first.getQuantity()),
Eli Friedman6d694a32011-12-05 22:23:28 +00001256 Alignment, isVolatile);
Daniel Dunbar0bc8e862008-09-09 20:49:46 +00001257}
Sebastian Redlc83ed822012-02-17 08:42:25 +00001258
1259void CodeGenFunction::MaybeEmitStdInitializerListCleanup(LValue lvalue,
1260 const Expr *init) {
1261 const ExprWithCleanups *cleanups = dyn_cast<ExprWithCleanups>(init);
1262 if (!cleanups)
1263 return; // Nothing interesting here.
1264 init = cleanups->getSubExpr();
1265
1266 if (isa<InitListExpr>(init) &&
1267 cast<InitListExpr>(init)->initializesStdInitializerList()) {
1268 // We initialized this std::initializer_list with an initializer list.
1269 // A backing array was created. Push a cleanup for it.
1270 EmitStdInitializerListCleanup(lvalue, cast<InitListExpr>(init));
1271 }
1272}
1273
1274void CodeGenFunction::EmitStdInitializerListCleanup(LValue lvalue,
1275 const InitListExpr *init) {
1276 ASTContext &ctx = getContext();
1277 QualType element = GetStdInitializerListElementType(init->getType());
1278 unsigned numInits = init->getNumInits();
1279 llvm::APInt size(ctx.getTypeSize(ctx.getSizeType()), numInits);
1280 QualType array =ctx.getConstantArrayType(element, size, ArrayType::Normal, 0);
1281 QualType arrayPtr = ctx.getPointerType(array);
1282 llvm::Type *arrayPtrType = ConvertType(arrayPtr);
1283
1284 // lvalue is the location of a std::initializer_list, which as its first
1285 // element has a pointer to the array we want to destroy.
1286 llvm::Value *startPointer = Builder.CreateStructGEP(lvalue.getAddress(), 0,
1287 "startPointer");
1288 llvm::Value *arrayAddress =
1289 Builder.CreateBitCast(startPointer, arrayPtrType, "arrayAddress");
1290
1291 ::EmitStdInitializerListCleanup(*this, array, arrayAddress, init);
1292}