blob: a35ef0c9318a894cf962e0b4566fbd7dd880f889 [file] [log] [blame]
Chris Lattner566b6ce2007-08-24 02:22:53 +00001//===--- CGExprAgg.cpp - Emit LLVM Code from Aggregate Expressions --------===//
Chris Lattneraf6f5282007-08-10 20:13:28 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-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 Lattneraf6f5282007-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"
Fariborz Jahanian082b02e2009-07-08 01:18:33 +000015#include "CGObjCRuntime.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000016#include "CodeGenModule.h"
Daniel Dunbarde7fb842008-08-11 05:00:27 +000017#include "clang/AST/ASTContext.h"
Anders Carlssonb14095a2009-04-17 00:06:03 +000018#include "clang/AST/DeclCXX.h"
Sebastian Redl32cf1f22012-02-17 08:42:25 +000019#include "clang/AST/DeclTemplate.h"
Daniel Dunbarde7fb842008-08-11 05:00:27 +000020#include "clang/AST/StmtVisitor.h"
Chandler Carruth3b844ba2013-01-02 11:45:17 +000021#include "llvm/IR/Constants.h"
22#include "llvm/IR/Function.h"
23#include "llvm/IR/GlobalVariable.h"
24#include "llvm/IR/Intrinsics.h"
Chris Lattneraf6f5282007-08-10 20:13:28 +000025using namespace clang;
26using namespace CodeGen;
Chris Lattner883f6a72007-08-11 00:04:45 +000027
Chris Lattner9c033562007-08-21 04:25:47 +000028//===----------------------------------------------------------------------===//
29// Aggregate Expression Emitter
30//===----------------------------------------------------------------------===//
31
32namespace {
Benjamin Kramer85b45212009-11-28 19:45:26 +000033class AggExprEmitter : public StmtVisitor<AggExprEmitter> {
Chris Lattner9c033562007-08-21 04:25:47 +000034 CodeGenFunction &CGF;
Daniel Dunbar45d196b2008-11-01 01:53:16 +000035 CGBuilderTy &Builder;
John McCall558d2ab2010-09-15 10:14:12 +000036 AggValueSlot Dest;
John McCallef072fd2010-05-22 01:48:05 +000037
John McCall410ffb22011-08-25 23:04:34 +000038 /// We want to use 'dest' as the return slot except under two
39 /// conditions:
40 /// - The destination slot requires garbage collection, so we
41 /// need to use the GC API.
42 /// - The destination slot is potentially aliased.
43 bool shouldUseDestForReturnSlot() const {
44 return !(Dest.requiresGCollection() || Dest.isPotentiallyAliased());
45 }
46
John McCallef072fd2010-05-22 01:48:05 +000047 ReturnValueSlot getReturnValueSlot() const {
John McCall410ffb22011-08-25 23:04:34 +000048 if (!shouldUseDestForReturnSlot())
49 return ReturnValueSlot();
John McCallfa037bd2010-05-22 22:13:32 +000050
John McCall558d2ab2010-09-15 10:14:12 +000051 return ReturnValueSlot(Dest.getAddr(), Dest.isVolatile());
52 }
53
54 AggValueSlot EnsureSlot(QualType T) {
55 if (!Dest.isIgnored()) return Dest;
56 return CGF.CreateAggTemp(T, "agg.tmp.ensured");
John McCallef072fd2010-05-22 01:48:05 +000057 }
John McCalle0c11682012-07-02 23:58:38 +000058 void EnsureDest(QualType T) {
59 if (!Dest.isIgnored()) return;
60 Dest = CGF.CreateAggTemp(T, "agg.tmp.ensured");
61 }
John McCallfa037bd2010-05-22 22:13:32 +000062
Chris Lattner9c033562007-08-21 04:25:47 +000063public:
John McCalle0c11682012-07-02 23:58:38 +000064 AggExprEmitter(CodeGenFunction &cgf, AggValueSlot Dest)
65 : CGF(cgf), Builder(CGF.Builder), Dest(Dest) {
Chris Lattner9c033562007-08-21 04:25:47 +000066 }
67
Chris Lattneree755f92007-08-21 04:59:27 +000068 //===--------------------------------------------------------------------===//
69 // Utilities
70 //===--------------------------------------------------------------------===//
71
Chris Lattner9c033562007-08-21 04:25:47 +000072 /// EmitAggLoadOfLValue - Given an expression with aggregate type that
73 /// represents a value lvalue, this method emits the address of the lvalue,
74 /// then loads the result into DestPtr.
75 void EmitAggLoadOfLValue(const Expr *E);
Eli Friedman922696f2008-05-19 17:51:16 +000076
Mike Stump4ac20dd2009-05-23 20:28:01 +000077 /// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
John McCalle0c11682012-07-02 23:58:38 +000078 void EmitFinalDestCopy(QualType type, const LValue &src);
79 void EmitFinalDestCopy(QualType type, RValue src,
80 CharUnits srcAlignment = CharUnits::Zero());
81 void EmitCopy(QualType type, const AggValueSlot &dest,
82 const AggValueSlot &src);
Mike Stump4ac20dd2009-05-23 20:28:01 +000083
John McCall410ffb22011-08-25 23:04:34 +000084 void EmitMoveFromReturnSlot(const Expr *E, RValue Src);
John McCallfa037bd2010-05-22 22:13:32 +000085
Sebastian Redlaf130fd2012-02-19 12:28:02 +000086 void EmitStdInitializerList(llvm::Value *DestPtr, InitListExpr *InitList);
Sebastian Redl32cf1f22012-02-17 08:42:25 +000087 void EmitArrayInit(llvm::Value *DestPtr, llvm::ArrayType *AType,
88 QualType elementType, InitListExpr *E);
89
John McCall7c2349b2011-08-25 20:40:09 +000090 AggValueSlot::NeedsGCBarriers_t needsGC(QualType T) {
David Blaikie4e4d0842012-03-11 07:00:24 +000091 if (CGF.getLangOpts().getGC() && TypeRequiresGCollection(T))
John McCall7c2349b2011-08-25 20:40:09 +000092 return AggValueSlot::NeedsGCBarriers;
93 return AggValueSlot::DoesNotNeedGCBarriers;
94 }
95
John McCallfa037bd2010-05-22 22:13:32 +000096 bool TypeRequiresGCollection(QualType T);
97
Chris Lattneree755f92007-08-21 04:59:27 +000098 //===--------------------------------------------------------------------===//
99 // Visitor Methods
100 //===--------------------------------------------------------------------===//
Mike Stump1eb44332009-09-09 15:08:12 +0000101
Chris Lattner9c033562007-08-21 04:25:47 +0000102 void VisitStmt(Stmt *S) {
Daniel Dunbar488e9932008-08-16 00:56:44 +0000103 CGF.ErrorUnsupported(S, "aggregate expression");
Chris Lattner9c033562007-08-21 04:25:47 +0000104 }
105 void VisitParenExpr(ParenExpr *PE) { Visit(PE->getSubExpr()); }
Peter Collingbournef111d932011-04-15 00:35:48 +0000106 void VisitGenericSelectionExpr(GenericSelectionExpr *GE) {
107 Visit(GE->getResultExpr());
108 }
Eli Friedman12444a22009-01-27 09:03:41 +0000109 void VisitUnaryExtension(UnaryOperator *E) { Visit(E->getSubExpr()); }
John McCall91a57552011-07-15 05:09:51 +0000110 void VisitSubstNonTypeTemplateParmExpr(SubstNonTypeTemplateParmExpr *E) {
111 return Visit(E->getReplacement());
112 }
Chris Lattner9c033562007-08-21 04:25:47 +0000113
114 // l-values.
John McCallf4b88a42012-03-10 09:33:50 +0000115 void VisitDeclRefExpr(DeclRefExpr *E) {
John McCalldd2ecee2012-03-10 03:05:10 +0000116 // For aggregates, we should always be able to emit the variable
117 // as an l-value unless it's a reference. This is due to the fact
118 // that we can't actually ever see a normal l2r conversion on an
119 // aggregate in C++, and in C there's no language standard
120 // actively preventing us from listing variables in the captures
121 // list of a block.
John McCallf4b88a42012-03-10 09:33:50 +0000122 if (E->getDecl()->getType()->isReferenceType()) {
John McCalldd2ecee2012-03-10 03:05:10 +0000123 if (CodeGenFunction::ConstantEmission result
John McCallf4b88a42012-03-10 09:33:50 +0000124 = CGF.tryEmitAsConstant(E)) {
John McCalle0c11682012-07-02 23:58:38 +0000125 EmitFinalDestCopy(E->getType(), result.getReferenceLValue(CGF, E));
John McCalldd2ecee2012-03-10 03:05:10 +0000126 return;
127 }
128 }
129
John McCallf4b88a42012-03-10 09:33:50 +0000130 EmitAggLoadOfLValue(E);
John McCalldd2ecee2012-03-10 03:05:10 +0000131 }
132
Seo Sanghyeon9b73b392007-12-14 02:04:12 +0000133 void VisitMemberExpr(MemberExpr *ME) { EmitAggLoadOfLValue(ME); }
134 void VisitUnaryDeref(UnaryOperator *E) { EmitAggLoadOfLValue(E); }
Daniel Dunbar5be028f2010-01-04 18:47:06 +0000135 void VisitStringLiteral(StringLiteral *E) { EmitAggLoadOfLValue(E); }
Douglas Gregor751ec9b2011-06-17 04:59:12 +0000136 void VisitCompoundLiteralExpr(CompoundLiteralExpr *E);
Seo Sanghyeon9b73b392007-12-14 02:04:12 +0000137 void VisitArraySubscriptExpr(ArraySubscriptExpr *E) {
138 EmitAggLoadOfLValue(E);
139 }
Chris Lattnerf0a990c2009-04-21 23:00:09 +0000140 void VisitPredefinedExpr(const PredefinedExpr *E) {
Mike Stump1eb44332009-09-09 15:08:12 +0000141 EmitAggLoadOfLValue(E);
Chris Lattnerf0a990c2009-04-21 23:00:09 +0000142 }
Mike Stump1eb44332009-09-09 15:08:12 +0000143
Chris Lattner9c033562007-08-21 04:25:47 +0000144 // Operators.
Anders Carlsson4d8673b2009-08-07 23:22:37 +0000145 void VisitCastExpr(CastExpr *E);
Anders Carlsson148fe672007-10-31 22:04:46 +0000146 void VisitCallExpr(const CallExpr *E);
Chris Lattnerb2d963f2007-08-31 22:54:14 +0000147 void VisitStmtExpr(const StmtExpr *E);
Chris Lattner9c033562007-08-21 04:25:47 +0000148 void VisitBinaryOperator(const BinaryOperator *BO);
Fariborz Jahanian8bfd31f2009-10-22 22:57:31 +0000149 void VisitPointerToDataMemberBinaryOperator(const BinaryOperator *BO);
Chris Lattner03d6fb92007-08-21 04:43:17 +0000150 void VisitBinAssign(const BinaryOperator *E);
Eli Friedman07fa52a2008-05-20 07:56:31 +0000151 void VisitBinComma(const BinaryOperator *E);
Chris Lattner9c033562007-08-21 04:25:47 +0000152
Chris Lattner8fdf3282008-06-24 17:04:18 +0000153 void VisitObjCMessageExpr(ObjCMessageExpr *E);
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000154 void VisitObjCIvarRefExpr(ObjCIvarRefExpr *E) {
155 EmitAggLoadOfLValue(E);
156 }
Mike Stump1eb44332009-09-09 15:08:12 +0000157
John McCall56ca35d2011-02-17 10:25:35 +0000158 void VisitAbstractConditionalOperator(const AbstractConditionalOperator *CO);
Anders Carlssona294ca82009-07-08 18:33:14 +0000159 void VisitChooseExpr(const ChooseExpr *CE);
Devang Patel636c3d02007-10-26 17:44:44 +0000160 void VisitInitListExpr(InitListExpr *E);
Anders Carlsson30311fa2009-12-16 06:57:54 +0000161 void VisitImplicitValueInitExpr(ImplicitValueInitExpr *E);
Chris Lattner04421082008-04-08 04:40:51 +0000162 void VisitCXXDefaultArgExpr(CXXDefaultArgExpr *DAE) {
163 Visit(DAE->getExpr());
164 }
Anders Carlssonb58d0172009-05-30 23:23:33 +0000165 void VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E);
Anders Carlsson31ccf372009-05-03 17:47:16 +0000166 void VisitCXXConstructExpr(const CXXConstructExpr *E);
Eli Friedman4c5d8af2012-02-09 03:32:31 +0000167 void VisitLambdaExpr(LambdaExpr *E);
John McCall4765fa02010-12-06 08:20:24 +0000168 void VisitExprWithCleanups(ExprWithCleanups *E);
Douglas Gregored8abf12010-07-08 06:14:04 +0000169 void VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *E);
Mike Stump2710c412009-11-18 00:40:12 +0000170 void VisitCXXTypeidExpr(CXXTypeidExpr *E) { EmitAggLoadOfLValue(E); }
Douglas Gregor03e80032011-06-21 17:03:29 +0000171 void VisitMaterializeTemporaryExpr(MaterializeTemporaryExpr *E);
John McCalle996ffd2011-02-16 08:02:54 +0000172 void VisitOpaqueValueExpr(OpaqueValueExpr *E);
173
John McCall4b9c2d22011-11-06 09:01:30 +0000174 void VisitPseudoObjectExpr(PseudoObjectExpr *E) {
175 if (E->isGLValue()) {
176 LValue LV = CGF.EmitPseudoObjectLValue(E);
John McCalle0c11682012-07-02 23:58:38 +0000177 return EmitFinalDestCopy(E->getType(), LV);
John McCall4b9c2d22011-11-06 09:01:30 +0000178 }
179
180 CGF.EmitPseudoObjectRValue(E, EnsureSlot(E->getType()));
181 }
182
Eli Friedmanb1851242008-05-27 15:51:49 +0000183 void VisitVAArgExpr(VAArgExpr *E);
Chris Lattnerf81557c2008-04-04 18:42:16 +0000184
Chad Rosier649b4a12012-03-29 17:37:10 +0000185 void EmitInitializationToLValue(Expr *E, LValue Address);
John McCalla07398e2011-06-16 04:16:24 +0000186 void EmitNullInitializationToLValue(LValue Address);
Chris Lattner9c033562007-08-21 04:25:47 +0000187 // case Expr::ChooseExprClass:
Mike Stump39406b12009-12-09 19:24:08 +0000188 void VisitCXXThrowExpr(const CXXThrowExpr *E) { CGF.EmitCXXThrowExpr(E); }
Eli Friedman276b0612011-10-11 02:20:01 +0000189 void VisitAtomicExpr(AtomicExpr *E) {
190 CGF.EmitAtomicExpr(E, EnsureSlot(E->getType()).getAddr());
191 }
Chris Lattner9c033562007-08-21 04:25:47 +0000192};
193} // end anonymous namespace.
194
Chris Lattneree755f92007-08-21 04:59:27 +0000195//===----------------------------------------------------------------------===//
196// Utilities
197//===----------------------------------------------------------------------===//
Chris Lattner9c033562007-08-21 04:25:47 +0000198
Chris Lattner883f6a72007-08-11 00:04:45 +0000199/// EmitAggLoadOfLValue - Given an expression with aggregate type that
200/// represents a value lvalue, this method emits the address of the lvalue,
201/// then loads the result into DestPtr.
Chris Lattner9c033562007-08-21 04:25:47 +0000202void AggExprEmitter::EmitAggLoadOfLValue(const Expr *E) {
203 LValue LV = CGF.EmitLValue(E);
John McCalle0c11682012-07-02 23:58:38 +0000204 EmitFinalDestCopy(E->getType(), LV);
Mike Stump4ac20dd2009-05-23 20:28:01 +0000205}
206
John McCallfa037bd2010-05-22 22:13:32 +0000207/// \brief True if the given aggregate type requires special GC API calls.
208bool AggExprEmitter::TypeRequiresGCollection(QualType T) {
209 // Only record types have members that might require garbage collection.
210 const RecordType *RecordTy = T->getAs<RecordType>();
211 if (!RecordTy) return false;
212
213 // Don't mess with non-trivial C++ types.
214 RecordDecl *Record = RecordTy->getDecl();
215 if (isa<CXXRecordDecl>(Record) &&
Richard Smith426391c2012-11-16 00:53:38 +0000216 (cast<CXXRecordDecl>(Record)->hasNonTrivialCopyConstructor() ||
John McCallfa037bd2010-05-22 22:13:32 +0000217 !cast<CXXRecordDecl>(Record)->hasTrivialDestructor()))
218 return false;
219
220 // Check whether the type has an object member.
221 return Record->hasObjectMember();
222}
223
John McCall410ffb22011-08-25 23:04:34 +0000224/// \brief Perform the final move to DestPtr if for some reason
225/// getReturnValueSlot() didn't use it directly.
John McCallfa037bd2010-05-22 22:13:32 +0000226///
227/// The idea is that you do something like this:
228/// RValue Result = EmitSomething(..., getReturnValueSlot());
John McCall410ffb22011-08-25 23:04:34 +0000229/// EmitMoveFromReturnSlot(E, Result);
230///
231/// If nothing interferes, this will cause the result to be emitted
232/// directly into the return value slot. Otherwise, a final move
233/// will be performed.
John McCalle0c11682012-07-02 23:58:38 +0000234void AggExprEmitter::EmitMoveFromReturnSlot(const Expr *E, RValue src) {
John McCall410ffb22011-08-25 23:04:34 +0000235 if (shouldUseDestForReturnSlot()) {
236 // Logically, Dest.getAddr() should equal Src.getAggregateAddr().
237 // The possibility of undef rvalues complicates that a lot,
238 // though, so we can't really assert.
239 return;
Fariborz Jahanian55bcace2010-06-15 22:44:06 +0000240 }
John McCall410ffb22011-08-25 23:04:34 +0000241
John McCalle0c11682012-07-02 23:58:38 +0000242 // Otherwise, copy from there to the destination.
243 assert(Dest.getAddr() != src.getAggregateAddr());
244 std::pair<CharUnits, CharUnits> typeInfo =
Chad Rosier26397ed2012-04-17 01:14:29 +0000245 CGF.getContext().getTypeInfoInChars(E->getType());
John McCalle0c11682012-07-02 23:58:38 +0000246 EmitFinalDestCopy(E->getType(), src, typeInfo.second);
John McCallfa037bd2010-05-22 22:13:32 +0000247}
248
Mike Stump4ac20dd2009-05-23 20:28:01 +0000249/// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
John McCalle0c11682012-07-02 23:58:38 +0000250void AggExprEmitter::EmitFinalDestCopy(QualType type, RValue src,
251 CharUnits srcAlign) {
252 assert(src.isAggregate() && "value must be aggregate value!");
253 LValue srcLV = CGF.MakeAddrLValue(src.getAggregateAddr(), type, srcAlign);
254 EmitFinalDestCopy(type, srcLV);
255}
Mike Stump4ac20dd2009-05-23 20:28:01 +0000256
John McCalle0c11682012-07-02 23:58:38 +0000257/// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
258void AggExprEmitter::EmitFinalDestCopy(QualType type, const LValue &src) {
John McCall558d2ab2010-09-15 10:14:12 +0000259 // If Dest is ignored, then we're evaluating an aggregate expression
John McCalle0c11682012-07-02 23:58:38 +0000260 // in a context that doesn't care about the result. Note that loads
261 // from volatile l-values force the existence of a non-ignored
262 // destination.
263 if (Dest.isIgnored())
264 return;
Fariborz Jahanian8a970052010-10-22 22:05:03 +0000265
John McCalle0c11682012-07-02 23:58:38 +0000266 AggValueSlot srcAgg =
267 AggValueSlot::forLValue(src, AggValueSlot::IsDestructed,
268 needsGC(type), AggValueSlot::IsAliased);
269 EmitCopy(type, Dest, srcAgg);
270}
Chris Lattner883f6a72007-08-11 00:04:45 +0000271
John McCalle0c11682012-07-02 23:58:38 +0000272/// Perform a copy from the source into the destination.
273///
274/// \param type - the type of the aggregate being copied; qualifiers are
275/// ignored
276void AggExprEmitter::EmitCopy(QualType type, const AggValueSlot &dest,
277 const AggValueSlot &src) {
278 if (dest.requiresGCollection()) {
279 CharUnits sz = CGF.getContext().getTypeSizeInChars(type);
280 llvm::Value *size = llvm::ConstantInt::get(CGF.SizeTy, sz.getQuantity());
Fariborz Jahanian08c32132009-08-31 19:33:16 +0000281 CGF.CGM.getObjCRuntime().EmitGCMemmoveCollectable(CGF,
John McCalle0c11682012-07-02 23:58:38 +0000282 dest.getAddr(),
283 src.getAddr(),
284 size);
Fariborz Jahanian08c32132009-08-31 19:33:16 +0000285 return;
286 }
John McCalle0c11682012-07-02 23:58:38 +0000287
Mike Stump4ac20dd2009-05-23 20:28:01 +0000288 // If the result of the assignment is used, copy the LHS there also.
John McCalle0c11682012-07-02 23:58:38 +0000289 // It's volatile if either side is. Use the minimum alignment of
290 // the two sides.
291 CGF.EmitAggregateCopy(dest.getAddr(), src.getAddr(), type,
292 dest.isVolatile() || src.isVolatile(),
293 std::min(dest.getAlignment(), src.getAlignment()));
Chris Lattner883f6a72007-08-11 00:04:45 +0000294}
295
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000296static QualType GetStdInitializerListElementType(QualType T) {
297 // Just assume that this is really std::initializer_list.
298 ClassTemplateSpecializationDecl *specialization =
299 cast<ClassTemplateSpecializationDecl>(T->castAs<RecordType>()->getDecl());
300 return specialization->getTemplateArgs()[0].getAsType();
301}
302
303/// \brief Prepare cleanup for the temporary array.
304static void EmitStdInitializerListCleanup(CodeGenFunction &CGF,
305 QualType arrayType,
306 llvm::Value *addr,
307 const InitListExpr *initList) {
308 QualType::DestructionKind dtorKind = arrayType.isDestructedType();
309 if (!dtorKind)
310 return; // Type doesn't need destroying.
311 if (dtorKind != QualType::DK_cxx_destructor) {
312 CGF.ErrorUnsupported(initList, "ObjC ARC type in initializer_list");
313 return;
314 }
315
316 CodeGenFunction::Destroyer *destroyer = CGF.getDestroyer(dtorKind);
317 CGF.pushDestroy(NormalAndEHCleanup, addr, arrayType, destroyer,
318 /*EHCleanup=*/true);
319}
320
321/// \brief Emit the initializer for a std::initializer_list initialized with a
322/// real initializer list.
Sebastian Redlaf130fd2012-02-19 12:28:02 +0000323void AggExprEmitter::EmitStdInitializerList(llvm::Value *destPtr,
324 InitListExpr *initList) {
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000325 // We emit an array containing the elements, then have the init list point
326 // at the array.
327 ASTContext &ctx = CGF.getContext();
328 unsigned numInits = initList->getNumInits();
329 QualType element = GetStdInitializerListElementType(initList->getType());
330 llvm::APInt size(ctx.getTypeSize(ctx.getSizeType()), numInits);
331 QualType array = ctx.getConstantArrayType(element, size, ArrayType::Normal,0);
332 llvm::Type *LTy = CGF.ConvertTypeForMem(array);
333 llvm::AllocaInst *alloc = CGF.CreateTempAlloca(LTy);
334 alloc->setAlignment(ctx.getTypeAlignInChars(array).getQuantity());
335 alloc->setName(".initlist.");
336
337 EmitArrayInit(alloc, cast<llvm::ArrayType>(LTy), element, initList);
338
339 // FIXME: The diagnostics are somewhat out of place here.
340 RecordDecl *record = initList->getType()->castAs<RecordType>()->getDecl();
341 RecordDecl::field_iterator field = record->field_begin();
342 if (field == record->field_end()) {
343 CGF.ErrorUnsupported(initList, "weird std::initializer_list");
Sebastian Redlbabcf9d2012-02-25 20:51:13 +0000344 return;
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000345 }
346
347 QualType elementPtr = ctx.getPointerType(element.withConst());
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000348
349 // Start pointer.
350 if (!ctx.hasSameType(field->getType(), elementPtr)) {
351 CGF.ErrorUnsupported(initList, "weird std::initializer_list");
Sebastian Redlbabcf9d2012-02-25 20:51:13 +0000352 return;
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000353 }
Eli Friedman377ecc72012-04-16 03:54:45 +0000354 LValue DestLV = CGF.MakeNaturalAlignAddrLValue(destPtr, initList->getType());
David Blaikie581deb32012-06-06 20:45:41 +0000355 LValue start = CGF.EmitLValueForFieldInitialization(DestLV, *field);
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000356 llvm::Value *arrayStart = Builder.CreateStructGEP(alloc, 0, "arraystart");
357 CGF.EmitStoreThroughLValue(RValue::get(arrayStart), start);
358 ++field;
359
360 if (field == record->field_end()) {
361 CGF.ErrorUnsupported(initList, "weird std::initializer_list");
Sebastian Redlbabcf9d2012-02-25 20:51:13 +0000362 return;
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000363 }
David Blaikie581deb32012-06-06 20:45:41 +0000364 LValue endOrLength = CGF.EmitLValueForFieldInitialization(DestLV, *field);
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000365 if (ctx.hasSameType(field->getType(), elementPtr)) {
366 // End pointer.
367 llvm::Value *arrayEnd = Builder.CreateStructGEP(alloc,numInits, "arrayend");
368 CGF.EmitStoreThroughLValue(RValue::get(arrayEnd), endOrLength);
369 } else if(ctx.hasSameType(field->getType(), ctx.getSizeType())) {
370 // Length.
371 CGF.EmitStoreThroughLValue(RValue::get(Builder.getInt(size)), endOrLength);
372 } else {
373 CGF.ErrorUnsupported(initList, "weird std::initializer_list");
Sebastian Redlbabcf9d2012-02-25 20:51:13 +0000374 return;
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000375 }
376
377 if (!Dest.isExternallyDestructed())
378 EmitStdInitializerListCleanup(CGF, array, alloc, initList);
379}
380
381/// \brief Emit initialization of an array from an initializer list.
382void AggExprEmitter::EmitArrayInit(llvm::Value *DestPtr, llvm::ArrayType *AType,
383 QualType elementType, InitListExpr *E) {
384 uint64_t NumInitElements = E->getNumInits();
385
386 uint64_t NumArrayElements = AType->getNumElements();
387 assert(NumInitElements <= NumArrayElements);
388
389 // DestPtr is an array*. Construct an elementType* by drilling
390 // down a level.
391 llvm::Value *zero = llvm::ConstantInt::get(CGF.SizeTy, 0);
392 llvm::Value *indices[] = { zero, zero };
393 llvm::Value *begin =
394 Builder.CreateInBoundsGEP(DestPtr, indices, "arrayinit.begin");
395
396 // Exception safety requires us to destroy all the
397 // already-constructed members if an initializer throws.
398 // For that, we'll need an EH cleanup.
399 QualType::DestructionKind dtorKind = elementType.isDestructedType();
400 llvm::AllocaInst *endOfInit = 0;
401 EHScopeStack::stable_iterator cleanup;
402 llvm::Instruction *cleanupDominator = 0;
403 if (CGF.needsEHCleanup(dtorKind)) {
404 // In principle we could tell the cleanup where we are more
405 // directly, but the control flow can get so varied here that it
406 // would actually be quite complex. Therefore we go through an
407 // alloca.
408 endOfInit = CGF.CreateTempAlloca(begin->getType(),
409 "arrayinit.endOfInit");
410 cleanupDominator = Builder.CreateStore(begin, endOfInit);
411 CGF.pushIrregularPartialArrayCleanup(begin, endOfInit, elementType,
412 CGF.getDestroyer(dtorKind));
413 cleanup = CGF.EHStack.stable_begin();
414
415 // Otherwise, remember that we didn't need a cleanup.
416 } else {
417 dtorKind = QualType::DK_none;
418 }
419
420 llvm::Value *one = llvm::ConstantInt::get(CGF.SizeTy, 1);
421
422 // The 'current element to initialize'. The invariants on this
423 // variable are complicated. Essentially, after each iteration of
424 // the loop, it points to the last initialized element, except
425 // that it points to the beginning of the array before any
426 // elements have been initialized.
427 llvm::Value *element = begin;
428
429 // Emit the explicit initializers.
430 for (uint64_t i = 0; i != NumInitElements; ++i) {
431 // Advance to the next element.
432 if (i > 0) {
433 element = Builder.CreateInBoundsGEP(element, one, "arrayinit.element");
434
435 // Tell the cleanup that it needs to destroy up to this
436 // element. TODO: some of these stores can be trivially
437 // observed to be unnecessary.
438 if (endOfInit) Builder.CreateStore(element, endOfInit);
439 }
440
Sebastian Redlaf130fd2012-02-19 12:28:02 +0000441 // If these are nested std::initializer_list inits, do them directly,
442 // because they are conceptually the same "location".
443 InitListExpr *initList = dyn_cast<InitListExpr>(E->getInit(i));
444 if (initList && initList->initializesStdInitializerList()) {
445 EmitStdInitializerList(element, initList);
446 } else {
447 LValue elementLV = CGF.MakeAddrLValue(element, elementType);
Chad Rosier649b4a12012-03-29 17:37:10 +0000448 EmitInitializationToLValue(E->getInit(i), elementLV);
Sebastian Redlaf130fd2012-02-19 12:28:02 +0000449 }
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000450 }
451
452 // Check whether there's a non-trivial array-fill expression.
453 // Note that this will be a CXXConstructExpr even if the element
454 // type is an array (or array of array, etc.) of class type.
455 Expr *filler = E->getArrayFiller();
456 bool hasTrivialFiller = true;
457 if (CXXConstructExpr *cons = dyn_cast_or_null<CXXConstructExpr>(filler)) {
458 assert(cons->getConstructor()->isDefaultConstructor());
459 hasTrivialFiller = cons->getConstructor()->isTrivial();
460 }
461
462 // Any remaining elements need to be zero-initialized, possibly
463 // using the filler expression. We can skip this if the we're
464 // emitting to zeroed memory.
465 if (NumInitElements != NumArrayElements &&
466 !(Dest.isZeroed() && hasTrivialFiller &&
467 CGF.getTypes().isZeroInitializable(elementType))) {
468
469 // Use an actual loop. This is basically
470 // do { *array++ = filler; } while (array != end);
471
472 // Advance to the start of the rest of the array.
473 if (NumInitElements) {
474 element = Builder.CreateInBoundsGEP(element, one, "arrayinit.start");
475 if (endOfInit) Builder.CreateStore(element, endOfInit);
476 }
477
478 // Compute the end of the array.
479 llvm::Value *end = Builder.CreateInBoundsGEP(begin,
480 llvm::ConstantInt::get(CGF.SizeTy, NumArrayElements),
481 "arrayinit.end");
482
483 llvm::BasicBlock *entryBB = Builder.GetInsertBlock();
484 llvm::BasicBlock *bodyBB = CGF.createBasicBlock("arrayinit.body");
485
486 // Jump into the body.
487 CGF.EmitBlock(bodyBB);
488 llvm::PHINode *currentElement =
489 Builder.CreatePHI(element->getType(), 2, "arrayinit.cur");
490 currentElement->addIncoming(element, entryBB);
491
492 // Emit the actual filler expression.
493 LValue elementLV = CGF.MakeAddrLValue(currentElement, elementType);
494 if (filler)
Chad Rosier649b4a12012-03-29 17:37:10 +0000495 EmitInitializationToLValue(filler, elementLV);
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000496 else
497 EmitNullInitializationToLValue(elementLV);
498
499 // Move on to the next element.
500 llvm::Value *nextElement =
501 Builder.CreateInBoundsGEP(currentElement, one, "arrayinit.next");
502
503 // Tell the EH cleanup that we finished with the last element.
504 if (endOfInit) Builder.CreateStore(nextElement, endOfInit);
505
506 // Leave the loop if we're done.
507 llvm::Value *done = Builder.CreateICmpEQ(nextElement, end,
508 "arrayinit.done");
509 llvm::BasicBlock *endBB = CGF.createBasicBlock("arrayinit.end");
510 Builder.CreateCondBr(done, endBB, bodyBB);
511 currentElement->addIncoming(nextElement, Builder.GetInsertBlock());
512
513 CGF.EmitBlock(endBB);
514 }
515
516 // Leave the partial-array cleanup if we entered one.
517 if (dtorKind) CGF.DeactivateCleanupBlock(cleanup, cleanupDominator);
518}
519
Chris Lattneree755f92007-08-21 04:59:27 +0000520//===----------------------------------------------------------------------===//
521// Visitor Methods
522//===----------------------------------------------------------------------===//
523
Douglas Gregor03e80032011-06-21 17:03:29 +0000524void AggExprEmitter::VisitMaterializeTemporaryExpr(MaterializeTemporaryExpr *E){
525 Visit(E->GetTemporaryExpr());
526}
527
John McCalle996ffd2011-02-16 08:02:54 +0000528void AggExprEmitter::VisitOpaqueValueExpr(OpaqueValueExpr *e) {
John McCalle0c11682012-07-02 23:58:38 +0000529 EmitFinalDestCopy(e->getType(), CGF.getOpaqueLValueMapping(e));
John McCalle996ffd2011-02-16 08:02:54 +0000530}
531
Douglas Gregor751ec9b2011-06-17 04:59:12 +0000532void
533AggExprEmitter::VisitCompoundLiteralExpr(CompoundLiteralExpr *E) {
Douglas Gregor673e98b2011-06-17 16:37:20 +0000534 if (E->getType().isPODType(CGF.getContext())) {
535 // For a POD type, just emit a load of the lvalue + a copy, because our
536 // compound literal might alias the destination.
537 // FIXME: This is a band-aid; the real problem appears to be in our handling
538 // of assignments, where we store directly into the LHS without checking
539 // whether anything in the RHS aliases.
540 EmitAggLoadOfLValue(E);
541 return;
542 }
543
Douglas Gregor751ec9b2011-06-17 04:59:12 +0000544 AggValueSlot Slot = EnsureSlot(E->getType());
545 CGF.EmitAggExpr(E->getInitializer(), Slot);
546}
547
548
Anders Carlsson4d8673b2009-08-07 23:22:37 +0000549void AggExprEmitter::VisitCastExpr(CastExpr *E) {
Anders Carlsson30168422009-09-29 01:23:39 +0000550 switch (E->getCastKind()) {
Anders Carlsson575b3742011-04-11 02:03:26 +0000551 case CK_Dynamic: {
Richard Smith2c9f87c2012-08-24 00:54:33 +0000552 // FIXME: Can this actually happen? We have no test coverage for it.
Douglas Gregor69cfeb12010-05-14 21:31:02 +0000553 assert(isa<CXXDynamicCastExpr>(E) && "CK_Dynamic without a dynamic_cast?");
Richard Smith2c9f87c2012-08-24 00:54:33 +0000554 LValue LV = CGF.EmitCheckedLValue(E->getSubExpr(),
Richard Smith7ac9ef12012-09-08 02:08:36 +0000555 CodeGenFunction::TCK_Load);
Douglas Gregor69cfeb12010-05-14 21:31:02 +0000556 // FIXME: Do we also need to handle property references here?
557 if (LV.isSimple())
558 CGF.EmitDynamicCast(LV.getAddress(), cast<CXXDynamicCastExpr>(E));
559 else
560 CGF.CGM.ErrorUnsupported(E, "non-simple lvalue dynamic_cast");
561
John McCall558d2ab2010-09-15 10:14:12 +0000562 if (!Dest.isIgnored())
563 CGF.CGM.ErrorUnsupported(E, "lvalue dynamic_cast with a destination");
Douglas Gregor69cfeb12010-05-14 21:31:02 +0000564 break;
565 }
566
John McCall2de56d12010-08-25 11:45:40 +0000567 case CK_ToUnion: {
John McCall65912712011-04-12 22:02:02 +0000568 if (Dest.isIgnored()) break;
569
Anders Carlsson4d8673b2009-08-07 23:22:37 +0000570 // GCC union extension
Daniel Dunbar79c39282010-08-21 03:15:20 +0000571 QualType Ty = E->getSubExpr()->getType();
572 QualType PtrTy = CGF.getContext().getPointerType(Ty);
John McCall558d2ab2010-09-15 10:14:12 +0000573 llvm::Value *CastPtr = Builder.CreateBitCast(Dest.getAddr(),
Eli Friedman34ebf4d2009-06-03 20:45:06 +0000574 CGF.ConvertType(PtrTy));
John McCalla07398e2011-06-16 04:16:24 +0000575 EmitInitializationToLValue(E->getSubExpr(),
Chad Rosier649b4a12012-03-29 17:37:10 +0000576 CGF.MakeAddrLValue(CastPtr, Ty));
Anders Carlsson30168422009-09-29 01:23:39 +0000577 break;
Nuno Lopes7e916272009-01-15 20:14:33 +0000578 }
Mike Stump1eb44332009-09-09 15:08:12 +0000579
John McCall2de56d12010-08-25 11:45:40 +0000580 case CK_DerivedToBase:
581 case CK_BaseToDerived:
582 case CK_UncheckedDerivedToBase: {
David Blaikieb219cfc2011-09-23 05:06:16 +0000583 llvm_unreachable("cannot perform hierarchy conversion in EmitAggExpr: "
Douglas Gregor2d6b0e92010-05-22 05:17:18 +0000584 "should have been unpacked before we got here");
Douglas Gregor2d6b0e92010-05-22 05:17:18 +0000585 }
586
John McCalle0c11682012-07-02 23:58:38 +0000587 case CK_LValueToRValue:
588 // If we're loading from a volatile type, force the destination
589 // into existence.
590 if (E->getSubExpr()->getType().isVolatileQualified()) {
591 EnsureDest(E->getType());
592 return Visit(E->getSubExpr());
593 }
594 // fallthrough
595
John McCall2de56d12010-08-25 11:45:40 +0000596 case CK_NoOp:
David Chisnall7a7ee302012-01-16 17:27:18 +0000597 case CK_AtomicToNonAtomic:
598 case CK_NonAtomicToAtomic:
John McCall2de56d12010-08-25 11:45:40 +0000599 case CK_UserDefinedConversion:
600 case CK_ConstructorConversion:
Anders Carlsson30168422009-09-29 01:23:39 +0000601 assert(CGF.getContext().hasSameUnqualifiedType(E->getSubExpr()->getType(),
602 E->getType()) &&
603 "Implicit cast types must be compatible");
604 Visit(E->getSubExpr());
605 break;
John McCall0ae287a2010-12-01 04:43:34 +0000606
John McCall2de56d12010-08-25 11:45:40 +0000607 case CK_LValueBitCast:
John McCall0ae287a2010-12-01 04:43:34 +0000608 llvm_unreachable("should not be emitting lvalue bitcast as rvalue");
John McCall1de4d4e2011-04-07 08:22:57 +0000609
John McCall0ae287a2010-12-01 04:43:34 +0000610 case CK_Dependent:
611 case CK_BitCast:
612 case CK_ArrayToPointerDecay:
613 case CK_FunctionToPointerDecay:
614 case CK_NullToPointer:
615 case CK_NullToMemberPointer:
616 case CK_BaseToDerivedMemberPointer:
617 case CK_DerivedToBaseMemberPointer:
618 case CK_MemberPointerToBoolean:
John McCall4d4e5c12012-02-15 01:22:51 +0000619 case CK_ReinterpretMemberPointer:
John McCall0ae287a2010-12-01 04:43:34 +0000620 case CK_IntegralToPointer:
621 case CK_PointerToIntegral:
622 case CK_PointerToBoolean:
623 case CK_ToVoid:
624 case CK_VectorSplat:
625 case CK_IntegralCast:
626 case CK_IntegralToBoolean:
627 case CK_IntegralToFloating:
628 case CK_FloatingToIntegral:
629 case CK_FloatingToBoolean:
630 case CK_FloatingCast:
John McCall1d9b3b22011-09-09 05:25:32 +0000631 case CK_CPointerToObjCPointerCast:
632 case CK_BlockPointerToObjCPointerCast:
John McCall0ae287a2010-12-01 04:43:34 +0000633 case CK_AnyPointerToBlockPointerCast:
634 case CK_ObjCObjectLValueCast:
635 case CK_FloatingRealToComplex:
636 case CK_FloatingComplexToReal:
637 case CK_FloatingComplexToBoolean:
638 case CK_FloatingComplexCast:
639 case CK_FloatingComplexToIntegralComplex:
640 case CK_IntegralRealToComplex:
641 case CK_IntegralComplexToReal:
642 case CK_IntegralComplexToBoolean:
643 case CK_IntegralComplexCast:
644 case CK_IntegralComplexToFloatingComplex:
John McCall33e56f32011-09-10 06:18:15 +0000645 case CK_ARCProduceObject:
646 case CK_ARCConsumeObject:
647 case CK_ARCReclaimReturnedObject:
648 case CK_ARCExtendBlockObject:
Douglas Gregorac1303e2012-02-22 05:02:47 +0000649 case CK_CopyAndAutoreleaseBlockObject:
Eli Friedmana6c66ce2012-08-31 00:14:07 +0000650 case CK_BuiltinFnToFnPtr:
Guy Benyeie6b9d802013-01-20 12:31:11 +0000651 case CK_ZeroToOCLEvent:
John McCall0ae287a2010-12-01 04:43:34 +0000652 llvm_unreachable("cast kind invalid for aggregate types");
Anders Carlsson30168422009-09-29 01:23:39 +0000653 }
Anders Carlssone4707ff2008-01-14 06:28:57 +0000654}
655
Chris Lattner96196622008-07-26 22:37:01 +0000656void AggExprEmitter::VisitCallExpr(const CallExpr *E) {
Anders Carlssone70e8f72009-05-27 16:45:02 +0000657 if (E->getCallReturnType()->isReferenceType()) {
658 EmitAggLoadOfLValue(E);
659 return;
660 }
Mike Stump1eb44332009-09-09 15:08:12 +0000661
John McCallfa037bd2010-05-22 22:13:32 +0000662 RValue RV = CGF.EmitCallExpr(E, getReturnValueSlot());
John McCall410ffb22011-08-25 23:04:34 +0000663 EmitMoveFromReturnSlot(E, RV);
Anders Carlsson148fe672007-10-31 22:04:46 +0000664}
Chris Lattner96196622008-07-26 22:37:01 +0000665
666void AggExprEmitter::VisitObjCMessageExpr(ObjCMessageExpr *E) {
John McCallfa037bd2010-05-22 22:13:32 +0000667 RValue RV = CGF.EmitObjCMessageExpr(E, getReturnValueSlot());
John McCall410ffb22011-08-25 23:04:34 +0000668 EmitMoveFromReturnSlot(E, RV);
Chris Lattner8fdf3282008-06-24 17:04:18 +0000669}
Anders Carlsson148fe672007-10-31 22:04:46 +0000670
Chris Lattner96196622008-07-26 22:37:01 +0000671void AggExprEmitter::VisitBinComma(const BinaryOperator *E) {
John McCall2a416372010-12-05 02:00:02 +0000672 CGF.EmitIgnoredExpr(E->getLHS());
John McCall558d2ab2010-09-15 10:14:12 +0000673 Visit(E->getRHS());
Eli Friedman07fa52a2008-05-20 07:56:31 +0000674}
675
Chris Lattnerb2d963f2007-08-31 22:54:14 +0000676void AggExprEmitter::VisitStmtExpr(const StmtExpr *E) {
John McCall150b4622011-01-26 04:00:11 +0000677 CodeGenFunction::StmtExprEvaluation eval(CGF);
John McCall558d2ab2010-09-15 10:14:12 +0000678 CGF.EmitCompoundStmt(*E->getSubStmt(), true, Dest);
Chris Lattnerb2d963f2007-08-31 22:54:14 +0000679}
680
Chris Lattner9c033562007-08-21 04:25:47 +0000681void AggExprEmitter::VisitBinaryOperator(const BinaryOperator *E) {
John McCall2de56d12010-08-25 11:45:40 +0000682 if (E->getOpcode() == BO_PtrMemD || E->getOpcode() == BO_PtrMemI)
Fariborz Jahanian8bfd31f2009-10-22 22:57:31 +0000683 VisitPointerToDataMemberBinaryOperator(E);
684 else
685 CGF.ErrorUnsupported(E, "aggregate binary expression");
686}
687
688void AggExprEmitter::VisitPointerToDataMemberBinaryOperator(
689 const BinaryOperator *E) {
690 LValue LV = CGF.EmitPointerToDataMemberBinaryExpr(E);
John McCalle0c11682012-07-02 23:58:38 +0000691 EmitFinalDestCopy(E->getType(), LV);
692}
693
694/// Is the value of the given expression possibly a reference to or
695/// into a __block variable?
696static bool isBlockVarRef(const Expr *E) {
697 // Make sure we look through parens.
698 E = E->IgnoreParens();
699
700 // Check for a direct reference to a __block variable.
701 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) {
702 const VarDecl *var = dyn_cast<VarDecl>(DRE->getDecl());
703 return (var && var->hasAttr<BlocksAttr>());
704 }
705
706 // More complicated stuff.
707
708 // Binary operators.
709 if (const BinaryOperator *op = dyn_cast<BinaryOperator>(E)) {
710 // For an assignment or pointer-to-member operation, just care
711 // about the LHS.
712 if (op->isAssignmentOp() || op->isPtrMemOp())
713 return isBlockVarRef(op->getLHS());
714
715 // For a comma, just care about the RHS.
716 if (op->getOpcode() == BO_Comma)
717 return isBlockVarRef(op->getRHS());
718
719 // FIXME: pointer arithmetic?
720 return false;
721
722 // Check both sides of a conditional operator.
723 } else if (const AbstractConditionalOperator *op
724 = dyn_cast<AbstractConditionalOperator>(E)) {
725 return isBlockVarRef(op->getTrueExpr())
726 || isBlockVarRef(op->getFalseExpr());
727
728 // OVEs are required to support BinaryConditionalOperators.
729 } else if (const OpaqueValueExpr *op
730 = dyn_cast<OpaqueValueExpr>(E)) {
731 if (const Expr *src = op->getSourceExpr())
732 return isBlockVarRef(src);
733
734 // Casts are necessary to get things like (*(int*)&var) = foo().
735 // We don't really care about the kind of cast here, except
736 // we don't want to look through l2r casts, because it's okay
737 // to get the *value* in a __block variable.
738 } else if (const CastExpr *cast = dyn_cast<CastExpr>(E)) {
739 if (cast->getCastKind() == CK_LValueToRValue)
740 return false;
741 return isBlockVarRef(cast->getSubExpr());
742
743 // Handle unary operators. Again, just aggressively look through
744 // it, ignoring the operation.
745 } else if (const UnaryOperator *uop = dyn_cast<UnaryOperator>(E)) {
746 return isBlockVarRef(uop->getSubExpr());
747
748 // Look into the base of a field access.
749 } else if (const MemberExpr *mem = dyn_cast<MemberExpr>(E)) {
750 return isBlockVarRef(mem->getBase());
751
752 // Look into the base of a subscript.
753 } else if (const ArraySubscriptExpr *sub = dyn_cast<ArraySubscriptExpr>(E)) {
754 return isBlockVarRef(sub->getBase());
755 }
756
757 return false;
Chris Lattneree755f92007-08-21 04:59:27 +0000758}
759
Chris Lattner03d6fb92007-08-21 04:43:17 +0000760void AggExprEmitter::VisitBinAssign(const BinaryOperator *E) {
Eli Friedmanff6e2b72008-02-11 01:09:17 +0000761 // For an assignment to work, the value on the right has
762 // to be compatible with the value on the left.
Eli Friedman2dce5f82009-05-28 23:04:00 +0000763 assert(CGF.getContext().hasSameUnqualifiedType(E->getLHS()->getType(),
764 E->getRHS()->getType())
Eli Friedmanff6e2b72008-02-11 01:09:17 +0000765 && "Invalid assignment");
John McCallcd940a12010-12-06 06:10:02 +0000766
John McCalle0c11682012-07-02 23:58:38 +0000767 // If the LHS might be a __block variable, and the RHS can
768 // potentially cause a block copy, we need to evaluate the RHS first
769 // so that the assignment goes the right place.
770 // This is pretty semantically fragile.
771 if (isBlockVarRef(E->getLHS()) &&
772 E->getRHS()->HasSideEffects(CGF.getContext())) {
773 // Ensure that we have a destination, and evaluate the RHS into that.
774 EnsureDest(E->getRHS()->getType());
775 Visit(E->getRHS());
776
777 // Now emit the LHS and copy into it.
Richard Smith4def70d2012-10-09 19:52:38 +0000778 LValue LHS = CGF.EmitCheckedLValue(E->getLHS(), CodeGenFunction::TCK_Store);
John McCalle0c11682012-07-02 23:58:38 +0000779
780 EmitCopy(E->getLHS()->getType(),
781 AggValueSlot::forLValue(LHS, AggValueSlot::IsDestructed,
782 needsGC(E->getLHS()->getType()),
783 AggValueSlot::IsAliased),
784 Dest);
785 return;
786 }
Chad Rosier649b4a12012-03-29 17:37:10 +0000787
Chris Lattner9c033562007-08-21 04:25:47 +0000788 LValue LHS = CGF.EmitLValue(E->getLHS());
Chris Lattner883f6a72007-08-11 00:04:45 +0000789
John McCalldb458062011-11-07 03:59:57 +0000790 // Codegen the RHS so that it stores directly into the LHS.
791 AggValueSlot LHSSlot =
792 AggValueSlot::forLValue(LHS, AggValueSlot::IsDestructed,
793 needsGC(E->getLHS()->getType()),
Chad Rosier649b4a12012-03-29 17:37:10 +0000794 AggValueSlot::IsAliased);
John McCalle0c11682012-07-02 23:58:38 +0000795 CGF.EmitAggExpr(E->getRHS(), LHSSlot);
796
797 // Copy into the destination if the assignment isn't ignored.
798 EmitFinalDestCopy(E->getType(), LHS);
Chris Lattner883f6a72007-08-11 00:04:45 +0000799}
800
John McCall56ca35d2011-02-17 10:25:35 +0000801void AggExprEmitter::
802VisitAbstractConditionalOperator(const AbstractConditionalOperator *E) {
Daniel Dunbar9615ecb2008-11-13 01:38:36 +0000803 llvm::BasicBlock *LHSBlock = CGF.createBasicBlock("cond.true");
804 llvm::BasicBlock *RHSBlock = CGF.createBasicBlock("cond.false");
805 llvm::BasicBlock *ContBlock = CGF.createBasicBlock("cond.end");
Mike Stump1eb44332009-09-09 15:08:12 +0000806
John McCall56ca35d2011-02-17 10:25:35 +0000807 // Bind the common expression if necessary.
Eli Friedmand97927d2012-01-06 20:42:20 +0000808 CodeGenFunction::OpaqueValueMapping binding(CGF, E);
John McCall56ca35d2011-02-17 10:25:35 +0000809
John McCall150b4622011-01-26 04:00:11 +0000810 CodeGenFunction::ConditionalEvaluation eval(CGF);
Eli Friedman8e274bd2009-12-25 06:17:05 +0000811 CGF.EmitBranchOnBoolExpr(E->getCond(), LHSBlock, RHSBlock);
Mike Stump1eb44332009-09-09 15:08:12 +0000812
John McCall74fb0ed2010-11-17 00:07:33 +0000813 // Save whether the destination's lifetime is externally managed.
John McCallfd71fb82011-08-26 08:02:37 +0000814 bool isExternallyDestructed = Dest.isExternallyDestructed();
Chris Lattner883f6a72007-08-11 00:04:45 +0000815
John McCall150b4622011-01-26 04:00:11 +0000816 eval.begin(CGF);
817 CGF.EmitBlock(LHSBlock);
John McCall56ca35d2011-02-17 10:25:35 +0000818 Visit(E->getTrueExpr());
John McCall150b4622011-01-26 04:00:11 +0000819 eval.end(CGF);
Mike Stump1eb44332009-09-09 15:08:12 +0000820
John McCall150b4622011-01-26 04:00:11 +0000821 assert(CGF.HaveInsertPoint() && "expression evaluation ended with no IP!");
822 CGF.Builder.CreateBr(ContBlock);
Mike Stump1eb44332009-09-09 15:08:12 +0000823
John McCall74fb0ed2010-11-17 00:07:33 +0000824 // If the result of an agg expression is unused, then the emission
825 // of the LHS might need to create a destination slot. That's fine
826 // with us, and we can safely emit the RHS into the same slot, but
John McCallfd71fb82011-08-26 08:02:37 +0000827 // we shouldn't claim that it's already being destructed.
828 Dest.setExternallyDestructed(isExternallyDestructed);
John McCall74fb0ed2010-11-17 00:07:33 +0000829
John McCall150b4622011-01-26 04:00:11 +0000830 eval.begin(CGF);
831 CGF.EmitBlock(RHSBlock);
John McCall56ca35d2011-02-17 10:25:35 +0000832 Visit(E->getFalseExpr());
John McCall150b4622011-01-26 04:00:11 +0000833 eval.end(CGF);
Mike Stump1eb44332009-09-09 15:08:12 +0000834
Chris Lattner9c033562007-08-21 04:25:47 +0000835 CGF.EmitBlock(ContBlock);
Chris Lattner883f6a72007-08-11 00:04:45 +0000836}
Chris Lattneree755f92007-08-21 04:59:27 +0000837
Anders Carlssona294ca82009-07-08 18:33:14 +0000838void AggExprEmitter::VisitChooseExpr(const ChooseExpr *CE) {
839 Visit(CE->getChosenSubExpr(CGF.getContext()));
840}
841
Eli Friedmanb1851242008-05-27 15:51:49 +0000842void AggExprEmitter::VisitVAArgExpr(VAArgExpr *VE) {
Daniel Dunbar07855702009-02-11 22:25:55 +0000843 llvm::Value *ArgValue = CGF.EmitVAListRef(VE->getSubExpr());
Anders Carlssonddf7cac2008-11-04 05:30:00 +0000844 llvm::Value *ArgPtr = CGF.EmitVAArg(ArgValue, VE->getType());
845
Sebastian Redl0262f022009-01-09 21:09:38 +0000846 if (!ArgPtr) {
Anders Carlssonddf7cac2008-11-04 05:30:00 +0000847 CGF.ErrorUnsupported(VE, "aggregate va_arg expression");
Sebastian Redl0262f022009-01-09 21:09:38 +0000848 return;
849 }
850
John McCalle0c11682012-07-02 23:58:38 +0000851 EmitFinalDestCopy(VE->getType(), CGF.MakeAddrLValue(ArgPtr, VE->getType()));
Eli Friedmanb1851242008-05-27 15:51:49 +0000852}
853
Anders Carlssonb58d0172009-05-30 23:23:33 +0000854void AggExprEmitter::VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E) {
John McCall558d2ab2010-09-15 10:14:12 +0000855 // Ensure that we have a slot, but if we already do, remember
John McCallfd71fb82011-08-26 08:02:37 +0000856 // whether it was externally destructed.
857 bool wasExternallyDestructed = Dest.isExternallyDestructed();
John McCalle0c11682012-07-02 23:58:38 +0000858 EnsureDest(E->getType());
John McCallfd71fb82011-08-26 08:02:37 +0000859
860 // We're going to push a destructor if there isn't already one.
861 Dest.setExternallyDestructed();
Mike Stump1eb44332009-09-09 15:08:12 +0000862
John McCall558d2ab2010-09-15 10:14:12 +0000863 Visit(E->getSubExpr());
Anders Carlssonb58d0172009-05-30 23:23:33 +0000864
John McCallfd71fb82011-08-26 08:02:37 +0000865 // Push that destructor we promised.
866 if (!wasExternallyDestructed)
Peter Collingbourne86811602011-11-27 22:09:22 +0000867 CGF.EmitCXXTemporary(E->getTemporary(), E->getType(), Dest.getAddr());
Anders Carlssonb58d0172009-05-30 23:23:33 +0000868}
869
Anders Carlssonb14095a2009-04-17 00:06:03 +0000870void
Anders Carlsson31ccf372009-05-03 17:47:16 +0000871AggExprEmitter::VisitCXXConstructExpr(const CXXConstructExpr *E) {
John McCall558d2ab2010-09-15 10:14:12 +0000872 AggValueSlot Slot = EnsureSlot(E->getType());
873 CGF.EmitCXXConstructExpr(E, Slot);
Anders Carlsson7f6ad152009-05-19 04:48:36 +0000874}
875
Eli Friedman4c5d8af2012-02-09 03:32:31 +0000876void
877AggExprEmitter::VisitLambdaExpr(LambdaExpr *E) {
878 AggValueSlot Slot = EnsureSlot(E->getType());
879 CGF.EmitLambdaExpr(E, Slot);
880}
881
John McCall4765fa02010-12-06 08:20:24 +0000882void AggExprEmitter::VisitExprWithCleanups(ExprWithCleanups *E) {
John McCall1a343eb2011-11-10 08:15:53 +0000883 CGF.enterFullExpression(E);
884 CodeGenFunction::RunCleanupsScope cleanups(CGF);
885 Visit(E->getSubExpr());
Anders Carlssonb14095a2009-04-17 00:06:03 +0000886}
887
Douglas Gregored8abf12010-07-08 06:14:04 +0000888void AggExprEmitter::VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *E) {
John McCall558d2ab2010-09-15 10:14:12 +0000889 QualType T = E->getType();
890 AggValueSlot Slot = EnsureSlot(T);
John McCalla07398e2011-06-16 04:16:24 +0000891 EmitNullInitializationToLValue(CGF.MakeAddrLValue(Slot.getAddr(), T));
Anders Carlsson30311fa2009-12-16 06:57:54 +0000892}
893
894void AggExprEmitter::VisitImplicitValueInitExpr(ImplicitValueInitExpr *E) {
John McCall558d2ab2010-09-15 10:14:12 +0000895 QualType T = E->getType();
896 AggValueSlot Slot = EnsureSlot(T);
John McCalla07398e2011-06-16 04:16:24 +0000897 EmitNullInitializationToLValue(CGF.MakeAddrLValue(Slot.getAddr(), T));
Nuno Lopes329763b2009-10-18 15:18:11 +0000898}
899
Chris Lattner1b726772010-12-02 07:07:26 +0000900/// isSimpleZero - If emitting this value will obviously just cause a store of
901/// zero to memory, return true. This can return false if uncertain, so it just
902/// handles simple cases.
903static bool isSimpleZero(const Expr *E, CodeGenFunction &CGF) {
Peter Collingbournef111d932011-04-15 00:35:48 +0000904 E = E->IgnoreParens();
905
Chris Lattner1b726772010-12-02 07:07:26 +0000906 // 0
907 if (const IntegerLiteral *IL = dyn_cast<IntegerLiteral>(E))
908 return IL->getValue() == 0;
909 // +0.0
910 if (const FloatingLiteral *FL = dyn_cast<FloatingLiteral>(E))
911 return FL->getValue().isPosZero();
912 // int()
913 if ((isa<ImplicitValueInitExpr>(E) || isa<CXXScalarValueInitExpr>(E)) &&
914 CGF.getTypes().isZeroInitializable(E->getType()))
915 return true;
916 // (int*)0 - Null pointer expressions.
917 if (const CastExpr *ICE = dyn_cast<CastExpr>(E))
918 return ICE->getCastKind() == CK_NullToPointer;
919 // '\0'
920 if (const CharacterLiteral *CL = dyn_cast<CharacterLiteral>(E))
921 return CL->getValue() == 0;
922
923 // Otherwise, hard case: conservatively return false.
924 return false;
925}
926
927
Anders Carlsson78e83f82010-02-03 17:33:16 +0000928void
Chad Rosier649b4a12012-03-29 17:37:10 +0000929AggExprEmitter::EmitInitializationToLValue(Expr* E, LValue LV) {
John McCalla07398e2011-06-16 04:16:24 +0000930 QualType type = LV.getType();
Mike Stump7f79f9b2009-05-29 15:46:01 +0000931 // FIXME: Ignore result?
Chris Lattnerf81557c2008-04-04 18:42:16 +0000932 // FIXME: Are initializers affected by volatile?
Chris Lattner1b726772010-12-02 07:07:26 +0000933 if (Dest.isZeroed() && isSimpleZero(E, CGF)) {
934 // Storing "i32 0" to a zero'd memory location is a noop.
Richard Smith0dbe2fb2012-12-21 03:17:28 +0000935 } else if (isa<ImplicitValueInitExpr>(E) || isa<CXXScalarValueInitExpr>(E)) {
John McCalla07398e2011-06-16 04:16:24 +0000936 EmitNullInitializationToLValue(LV);
937 } else if (type->isReferenceType()) {
Anders Carlsson32f36ba2010-06-26 16:35:32 +0000938 RValue RV = CGF.EmitReferenceBindingToExpr(E, /*InitializedDecl=*/0);
John McCall545d9962011-06-25 02:11:03 +0000939 CGF.EmitStoreThroughLValue(RV, LV);
John McCalla07398e2011-06-16 04:16:24 +0000940 } else if (type->isAnyComplexType()) {
Douglas Gregor3498bdb2009-01-29 17:44:32 +0000941 CGF.EmitComplexExprIntoAddr(E, LV.getAddress(), false);
John McCalla07398e2011-06-16 04:16:24 +0000942 } else if (CGF.hasAggregateLLVMType(type)) {
John McCall7c2349b2011-08-25 20:40:09 +0000943 CGF.EmitAggExpr(E, AggValueSlot::forLValue(LV,
944 AggValueSlot::IsDestructed,
945 AggValueSlot::DoesNotNeedGCBarriers,
John McCall410ffb22011-08-25 23:04:34 +0000946 AggValueSlot::IsNotAliased,
John McCalla07398e2011-06-16 04:16:24 +0000947 Dest.isZeroed()));
John McCallf85e1932011-06-15 23:02:42 +0000948 } else if (LV.isSimple()) {
John McCalla07398e2011-06-16 04:16:24 +0000949 CGF.EmitScalarInit(E, /*D=*/0, LV, /*Captured=*/false);
Eli Friedmanc8ba9612008-05-12 15:06:05 +0000950 } else {
John McCall545d9962011-06-25 02:11:03 +0000951 CGF.EmitStoreThroughLValue(RValue::get(CGF.EmitScalarExpr(E)), LV);
Chris Lattnerf81557c2008-04-04 18:42:16 +0000952 }
Chris Lattnerf81557c2008-04-04 18:42:16 +0000953}
954
John McCalla07398e2011-06-16 04:16:24 +0000955void AggExprEmitter::EmitNullInitializationToLValue(LValue lv) {
956 QualType type = lv.getType();
957
Chris Lattner1b726772010-12-02 07:07:26 +0000958 // If the destination slot is already zeroed out before the aggregate is
959 // copied into it, we don't have to emit any zeros here.
John McCalla07398e2011-06-16 04:16:24 +0000960 if (Dest.isZeroed() && CGF.getTypes().isZeroInitializable(type))
Chris Lattner1b726772010-12-02 07:07:26 +0000961 return;
962
John McCalla07398e2011-06-16 04:16:24 +0000963 if (!CGF.hasAggregateLLVMType(type)) {
Richard Smith0dbe2fb2012-12-21 03:17:28 +0000964 // For non-aggregates, we can store the appropriate null constant.
965 llvm::Value *null = CGF.CGM.EmitNullConstant(type);
Eli Friedmanb1e3f322012-02-22 05:38:59 +0000966 // Note that the following is not equivalent to
967 // EmitStoreThroughBitfieldLValue for ARC types.
Eli Friedman5a13d4d2012-02-24 23:53:49 +0000968 if (lv.isBitField()) {
Eli Friedmanb1e3f322012-02-22 05:38:59 +0000969 CGF.EmitStoreThroughBitfieldLValue(RValue::get(null), lv);
Eli Friedman5a13d4d2012-02-24 23:53:49 +0000970 } else {
971 assert(lv.isSimple());
972 CGF.EmitStoreOfScalar(null, lv, /* isInitialization */ true);
973 }
Lauro Ramos Venancio145cd892008-02-19 19:27:31 +0000974 } else {
Chris Lattnerf81557c2008-04-04 18:42:16 +0000975 // There's a potential optimization opportunity in combining
976 // memsets; that would be easy for arrays, but relatively
977 // difficult for structures with the current code.
John McCalla07398e2011-06-16 04:16:24 +0000978 CGF.EmitNullInitialization(lv.getAddress(), lv.getType());
Chris Lattnerf81557c2008-04-04 18:42:16 +0000979 }
980}
981
Chris Lattnerf81557c2008-04-04 18:42:16 +0000982void AggExprEmitter::VisitInitListExpr(InitListExpr *E) {
Eli Friedmana385b3c2008-12-02 01:17:45 +0000983#if 0
Eli Friedman13a5be12009-12-04 01:30:56 +0000984 // FIXME: Assess perf here? Figure out what cases are worth optimizing here
985 // (Length of globals? Chunks of zeroed-out space?).
Eli Friedmana385b3c2008-12-02 01:17:45 +0000986 //
Mike Stumpf5408fe2009-05-16 07:57:57 +0000987 // If we can, prefer a copy from a global; this is a lot less code for long
988 // globals, and it's easier for the current optimizers to analyze.
Eli Friedman13a5be12009-12-04 01:30:56 +0000989 if (llvm::Constant* C = CGF.CGM.EmitConstantExpr(E, E->getType(), &CGF)) {
Eli Friedman994ffef2008-11-30 02:11:09 +0000990 llvm::GlobalVariable* GV =
Eli Friedman13a5be12009-12-04 01:30:56 +0000991 new llvm::GlobalVariable(CGF.CGM.getModule(), C->getType(), true,
992 llvm::GlobalValue::InternalLinkage, C, "");
John McCalle0c11682012-07-02 23:58:38 +0000993 EmitFinalDestCopy(E->getType(), CGF.MakeAddrLValue(GV, E->getType()));
Eli Friedman994ffef2008-11-30 02:11:09 +0000994 return;
995 }
Eli Friedmana385b3c2008-12-02 01:17:45 +0000996#endif
Chris Lattnerd0db03a2010-09-06 00:11:41 +0000997 if (E->hadArrayRangeDesignator())
Douglas Gregora9c87802009-01-29 19:42:23 +0000998 CGF.ErrorUnsupported(E, "GNU array range designator extension");
Douglas Gregora9c87802009-01-29 19:42:23 +0000999
Sebastian Redl32cf1f22012-02-17 08:42:25 +00001000 if (E->initializesStdInitializerList()) {
Sebastian Redlaf130fd2012-02-19 12:28:02 +00001001 EmitStdInitializerList(Dest.getAddr(), E);
Sebastian Redl32cf1f22012-02-17 08:42:25 +00001002 return;
1003 }
1004
Eli Friedman377ecc72012-04-16 03:54:45 +00001005 AggValueSlot Dest = EnsureSlot(E->getType());
1006 LValue DestLV = CGF.MakeAddrLValue(Dest.getAddr(), E->getType(),
1007 Dest.getAlignment());
John McCall558d2ab2010-09-15 10:14:12 +00001008
Chris Lattnerf81557c2008-04-04 18:42:16 +00001009 // Handle initialization of an array.
1010 if (E->getType()->isArrayType()) {
Richard Smithfe587202012-04-15 02:50:59 +00001011 if (E->isStringLiteralInit())
1012 return Visit(E->getInit(0));
Eli Friedman922696f2008-05-19 17:51:16 +00001013
Eli Friedman5c89c392012-02-23 02:25:10 +00001014 QualType elementType =
1015 CGF.getContext().getAsArrayType(E->getType())->getElementType();
Argyrios Kyrtzidis3b4d4902011-04-28 18:53:58 +00001016
Sebastian Redl32cf1f22012-02-17 08:42:25 +00001017 llvm::PointerType *APType =
Eli Friedman377ecc72012-04-16 03:54:45 +00001018 cast<llvm::PointerType>(Dest.getAddr()->getType());
Sebastian Redl32cf1f22012-02-17 08:42:25 +00001019 llvm::ArrayType *AType =
1020 cast<llvm::ArrayType>(APType->getElementType());
Chris Lattner1b726772010-12-02 07:07:26 +00001021
Eli Friedman377ecc72012-04-16 03:54:45 +00001022 EmitArrayInit(Dest.getAddr(), AType, elementType, E);
Chris Lattnerf81557c2008-04-04 18:42:16 +00001023 return;
1024 }
Mike Stump1eb44332009-09-09 15:08:12 +00001025
Chris Lattnerf81557c2008-04-04 18:42:16 +00001026 assert(E->getType()->isRecordType() && "Only support structs/unions here!");
Mike Stump1eb44332009-09-09 15:08:12 +00001027
Chris Lattnerf81557c2008-04-04 18:42:16 +00001028 // Do struct initialization; this code just sets each individual member
1029 // to the approprate value. This makes bitfield support automatic;
1030 // the disadvantage is that the generated code is more difficult for
1031 // the optimizer, especially with bitfields.
1032 unsigned NumInitElements = E->getNumInits();
John McCall2b30dcf2011-07-11 19:35:02 +00001033 RecordDecl *record = E->getType()->castAs<RecordType>()->getDecl();
Chris Lattnerbd7de382010-09-06 00:13:11 +00001034
John McCall2b30dcf2011-07-11 19:35:02 +00001035 if (record->isUnion()) {
Douglas Gregor0bb76892009-01-29 16:53:55 +00001036 // Only initialize one field of a union. The field itself is
1037 // specified by the initializer list.
1038 if (!E->getInitializedFieldInUnion()) {
1039 // Empty union; we have nothing to do.
Mike Stump1eb44332009-09-09 15:08:12 +00001040
Douglas Gregor0bb76892009-01-29 16:53:55 +00001041#ifndef NDEBUG
1042 // Make sure that it's really an empty and not a failure of
1043 // semantic analysis.
John McCall2b30dcf2011-07-11 19:35:02 +00001044 for (RecordDecl::field_iterator Field = record->field_begin(),
1045 FieldEnd = record->field_end();
Douglas Gregor0bb76892009-01-29 16:53:55 +00001046 Field != FieldEnd; ++Field)
1047 assert(Field->isUnnamedBitfield() && "Only unnamed bitfields allowed");
1048#endif
1049 return;
1050 }
1051
1052 // FIXME: volatility
1053 FieldDecl *Field = E->getInitializedFieldInUnion();
Douglas Gregor0bb76892009-01-29 16:53:55 +00001054
Eli Friedman377ecc72012-04-16 03:54:45 +00001055 LValue FieldLoc = CGF.EmitLValueForFieldInitialization(DestLV, Field);
Douglas Gregor0bb76892009-01-29 16:53:55 +00001056 if (NumInitElements) {
1057 // Store the initializer into the field
Chad Rosier649b4a12012-03-29 17:37:10 +00001058 EmitInitializationToLValue(E->getInit(0), FieldLoc);
Douglas Gregor0bb76892009-01-29 16:53:55 +00001059 } else {
Chris Lattner1b726772010-12-02 07:07:26 +00001060 // Default-initialize to null.
John McCalla07398e2011-06-16 04:16:24 +00001061 EmitNullInitializationToLValue(FieldLoc);
Douglas Gregor0bb76892009-01-29 16:53:55 +00001062 }
1063
1064 return;
1065 }
Mike Stump1eb44332009-09-09 15:08:12 +00001066
John McCall2b30dcf2011-07-11 19:35:02 +00001067 // We'll need to enter cleanup scopes in case any of the member
1068 // initializers throw an exception.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001069 SmallVector<EHScopeStack::stable_iterator, 16> cleanups;
John McCall6f103ba2011-11-10 10:43:54 +00001070 llvm::Instruction *cleanupDominator = 0;
John McCall2b30dcf2011-07-11 19:35:02 +00001071
Chris Lattnerf81557c2008-04-04 18:42:16 +00001072 // Here we iterate over the fields; this makes it simpler to both
1073 // default-initialize fields and skip over unnamed fields.
John McCall2b30dcf2011-07-11 19:35:02 +00001074 unsigned curInitIndex = 0;
1075 for (RecordDecl::field_iterator field = record->field_begin(),
1076 fieldEnd = record->field_end();
1077 field != fieldEnd; ++field) {
1078 // We're done once we hit the flexible array member.
1079 if (field->getType()->isIncompleteArrayType())
Douglas Gregor44b43212008-12-11 16:49:14 +00001080 break;
1081
John McCall2b30dcf2011-07-11 19:35:02 +00001082 // Always skip anonymous bitfields.
1083 if (field->isUnnamedBitfield())
Chris Lattnerf81557c2008-04-04 18:42:16 +00001084 continue;
Douglas Gregor34e79462009-01-28 23:36:17 +00001085
John McCall2b30dcf2011-07-11 19:35:02 +00001086 // We're done if we reach the end of the explicit initializers, we
1087 // have a zeroed object, and the rest of the fields are
1088 // zero-initializable.
1089 if (curInitIndex == NumInitElements && Dest.isZeroed() &&
Chris Lattner1b726772010-12-02 07:07:26 +00001090 CGF.getTypes().isZeroInitializable(E->getType()))
1091 break;
1092
Eli Friedman377ecc72012-04-16 03:54:45 +00001093
David Blaikie581deb32012-06-06 20:45:41 +00001094 LValue LV = CGF.EmitLValueForFieldInitialization(DestLV, *field);
Fariborz Jahanian14674ff2009-05-27 19:54:11 +00001095 // We never generate write-barries for initialized fields.
John McCall2b30dcf2011-07-11 19:35:02 +00001096 LV.setNonGC(true);
Chris Lattner1b726772010-12-02 07:07:26 +00001097
John McCall2b30dcf2011-07-11 19:35:02 +00001098 if (curInitIndex < NumInitElements) {
Chris Lattnerb35baae2010-03-08 21:08:07 +00001099 // Store the initializer into the field.
Chad Rosier649b4a12012-03-29 17:37:10 +00001100 EmitInitializationToLValue(E->getInit(curInitIndex++), LV);
Chris Lattnerf81557c2008-04-04 18:42:16 +00001101 } else {
1102 // We're out of initalizers; default-initialize to null
John McCall2b30dcf2011-07-11 19:35:02 +00001103 EmitNullInitializationToLValue(LV);
1104 }
1105
1106 // Push a destructor if necessary.
1107 // FIXME: if we have an array of structures, all explicitly
1108 // initialized, we can end up pushing a linear number of cleanups.
1109 bool pushedCleanup = false;
1110 if (QualType::DestructionKind dtorKind
1111 = field->getType().isDestructedType()) {
1112 assert(LV.isSimple());
1113 if (CGF.needsEHCleanup(dtorKind)) {
John McCall6f103ba2011-11-10 10:43:54 +00001114 if (!cleanupDominator)
1115 cleanupDominator = CGF.Builder.CreateUnreachable(); // placeholder
1116
John McCall2b30dcf2011-07-11 19:35:02 +00001117 CGF.pushDestroy(EHCleanup, LV.getAddress(), field->getType(),
1118 CGF.getDestroyer(dtorKind), false);
1119 cleanups.push_back(CGF.EHStack.stable_begin());
1120 pushedCleanup = true;
1121 }
Chris Lattnerf81557c2008-04-04 18:42:16 +00001122 }
Chris Lattner1b726772010-12-02 07:07:26 +00001123
1124 // If the GEP didn't get used because of a dead zero init or something
1125 // else, clean it up for -O0 builds and general tidiness.
John McCall2b30dcf2011-07-11 19:35:02 +00001126 if (!pushedCleanup && LV.isSimple())
Chris Lattner1b726772010-12-02 07:07:26 +00001127 if (llvm::GetElementPtrInst *GEP =
John McCall2b30dcf2011-07-11 19:35:02 +00001128 dyn_cast<llvm::GetElementPtrInst>(LV.getAddress()))
Chris Lattner1b726772010-12-02 07:07:26 +00001129 if (GEP->use_empty())
1130 GEP->eraseFromParent();
Lauro Ramos Venancio145cd892008-02-19 19:27:31 +00001131 }
John McCall2b30dcf2011-07-11 19:35:02 +00001132
1133 // Deactivate all the partial cleanups in reverse order, which
1134 // generally means popping them.
1135 for (unsigned i = cleanups.size(); i != 0; --i)
John McCall6f103ba2011-11-10 10:43:54 +00001136 CGF.DeactivateCleanupBlock(cleanups[i-1], cleanupDominator);
1137
1138 // Destroy the placeholder if we made one.
1139 if (cleanupDominator)
1140 cleanupDominator->eraseFromParent();
Devang Patel636c3d02007-10-26 17:44:44 +00001141}
1142
Chris Lattneree755f92007-08-21 04:59:27 +00001143//===----------------------------------------------------------------------===//
1144// Entry Points into this File
1145//===----------------------------------------------------------------------===//
1146
Chris Lattner1b726772010-12-02 07:07:26 +00001147/// GetNumNonZeroBytesInInit - Get an approximate count of the number of
1148/// non-zero bytes that will be stored when outputting the initializer for the
1149/// specified initializer expression.
Ken Dyck02c45332011-04-24 17:17:56 +00001150static CharUnits GetNumNonZeroBytesInInit(const Expr *E, CodeGenFunction &CGF) {
Peter Collingbournef111d932011-04-15 00:35:48 +00001151 E = E->IgnoreParens();
Chris Lattner1b726772010-12-02 07:07:26 +00001152
1153 // 0 and 0.0 won't require any non-zero stores!
Ken Dyck02c45332011-04-24 17:17:56 +00001154 if (isSimpleZero(E, CGF)) return CharUnits::Zero();
Chris Lattner1b726772010-12-02 07:07:26 +00001155
1156 // If this is an initlist expr, sum up the size of sizes of the (present)
1157 // elements. If this is something weird, assume the whole thing is non-zero.
1158 const InitListExpr *ILE = dyn_cast<InitListExpr>(E);
1159 if (ILE == 0 || !CGF.getTypes().isZeroInitializable(ILE->getType()))
Ken Dyck02c45332011-04-24 17:17:56 +00001160 return CGF.getContext().getTypeSizeInChars(E->getType());
Chris Lattner1b726772010-12-02 07:07:26 +00001161
Chris Lattnerd1d56df2010-12-02 18:29:00 +00001162 // InitListExprs for structs have to be handled carefully. If there are
1163 // reference members, we need to consider the size of the reference, not the
1164 // referencee. InitListExprs for unions and arrays can't have references.
Chris Lattner8c00ad12010-12-02 22:52:04 +00001165 if (const RecordType *RT = E->getType()->getAs<RecordType>()) {
1166 if (!RT->isUnionType()) {
1167 RecordDecl *SD = E->getType()->getAs<RecordType>()->getDecl();
Ken Dyck02c45332011-04-24 17:17:56 +00001168 CharUnits NumNonZeroBytes = CharUnits::Zero();
Chris Lattner8c00ad12010-12-02 22:52:04 +00001169
1170 unsigned ILEElement = 0;
1171 for (RecordDecl::field_iterator Field = SD->field_begin(),
1172 FieldEnd = SD->field_end(); Field != FieldEnd; ++Field) {
1173 // We're done once we hit the flexible array member or run out of
1174 // InitListExpr elements.
1175 if (Field->getType()->isIncompleteArrayType() ||
1176 ILEElement == ILE->getNumInits())
1177 break;
1178 if (Field->isUnnamedBitfield())
1179 continue;
Chris Lattnerd1d56df2010-12-02 18:29:00 +00001180
Chris Lattner8c00ad12010-12-02 22:52:04 +00001181 const Expr *E = ILE->getInit(ILEElement++);
1182
1183 // Reference values are always non-null and have the width of a pointer.
1184 if (Field->getType()->isReferenceType())
Ken Dyck02c45332011-04-24 17:17:56 +00001185 NumNonZeroBytes += CGF.getContext().toCharUnitsFromBits(
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001186 CGF.getContext().getTargetInfo().getPointerWidth(0));
Chris Lattner8c00ad12010-12-02 22:52:04 +00001187 else
1188 NumNonZeroBytes += GetNumNonZeroBytesInInit(E, CGF);
1189 }
Chris Lattnerd1d56df2010-12-02 18:29:00 +00001190
Chris Lattner8c00ad12010-12-02 22:52:04 +00001191 return NumNonZeroBytes;
Chris Lattnerd1d56df2010-12-02 18:29:00 +00001192 }
Chris Lattnerd1d56df2010-12-02 18:29:00 +00001193 }
1194
1195
Ken Dyck02c45332011-04-24 17:17:56 +00001196 CharUnits NumNonZeroBytes = CharUnits::Zero();
Chris Lattner1b726772010-12-02 07:07:26 +00001197 for (unsigned i = 0, e = ILE->getNumInits(); i != e; ++i)
1198 NumNonZeroBytes += GetNumNonZeroBytesInInit(ILE->getInit(i), CGF);
1199 return NumNonZeroBytes;
1200}
1201
1202/// CheckAggExprForMemSetUse - If the initializer is large and has a lot of
1203/// zeros in it, emit a memset and avoid storing the individual zeros.
1204///
1205static void CheckAggExprForMemSetUse(AggValueSlot &Slot, const Expr *E,
1206 CodeGenFunction &CGF) {
1207 // If the slot is already known to be zeroed, nothing to do. Don't mess with
1208 // volatile stores.
1209 if (Slot.isZeroed() || Slot.isVolatile() || Slot.getAddr() == 0) return;
Argyrios Kyrtzidis657baf12011-04-28 22:57:55 +00001210
1211 // C++ objects with a user-declared constructor don't need zero'ing.
Richard Smith7edf9e32012-11-01 22:30:59 +00001212 if (CGF.getLangOpts().CPlusPlus)
Argyrios Kyrtzidis657baf12011-04-28 22:57:55 +00001213 if (const RecordType *RT = CGF.getContext()
1214 .getBaseElementType(E->getType())->getAs<RecordType>()) {
1215 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
1216 if (RD->hasUserDeclaredConstructor())
1217 return;
1218 }
1219
Chris Lattner1b726772010-12-02 07:07:26 +00001220 // If the type is 16-bytes or smaller, prefer individual stores over memset.
Ken Dyck5ff1a352011-04-24 17:25:32 +00001221 std::pair<CharUnits, CharUnits> TypeInfo =
1222 CGF.getContext().getTypeInfoInChars(E->getType());
1223 if (TypeInfo.first <= CharUnits::fromQuantity(16))
Chris Lattner1b726772010-12-02 07:07:26 +00001224 return;
1225
1226 // Check to see if over 3/4 of the initializer are known to be zero. If so,
1227 // we prefer to emit memset + individual stores for the rest.
Ken Dyck5ff1a352011-04-24 17:25:32 +00001228 CharUnits NumNonZeroBytes = GetNumNonZeroBytesInInit(E, CGF);
1229 if (NumNonZeroBytes*4 > TypeInfo.first)
Chris Lattner1b726772010-12-02 07:07:26 +00001230 return;
1231
1232 // Okay, it seems like a good idea to use an initial memset, emit the call.
Ken Dyck5ff1a352011-04-24 17:25:32 +00001233 llvm::Constant *SizeVal = CGF.Builder.getInt64(TypeInfo.first.getQuantity());
1234 CharUnits Align = TypeInfo.second;
Chris Lattner1b726772010-12-02 07:07:26 +00001235
1236 llvm::Value *Loc = Slot.getAddr();
Chris Lattner1b726772010-12-02 07:07:26 +00001237
Chris Lattner8b418682012-02-07 00:39:47 +00001238 Loc = CGF.Builder.CreateBitCast(Loc, CGF.Int8PtrTy);
Ken Dyck5ff1a352011-04-24 17:25:32 +00001239 CGF.Builder.CreateMemSet(Loc, CGF.Builder.getInt8(0), SizeVal,
1240 Align.getQuantity(), false);
Chris Lattner1b726772010-12-02 07:07:26 +00001241
1242 // Tell the AggExprEmitter that the slot is known zero.
1243 Slot.setZeroed();
1244}
1245
1246
1247
1248
Mike Stumpe1129a92009-05-26 18:57:45 +00001249/// EmitAggExpr - Emit the computation of the specified expression of aggregate
1250/// type. The result is computed into DestPtr. Note that if DestPtr is null,
1251/// the value of the aggregate expression is not needed. If VolatileDest is
1252/// true, DestPtr cannot be 0.
John McCalle0c11682012-07-02 23:58:38 +00001253void CodeGenFunction::EmitAggExpr(const Expr *E, AggValueSlot Slot) {
Chris Lattneree755f92007-08-21 04:59:27 +00001254 assert(E && hasAggregateLLVMType(E->getType()) &&
1255 "Invalid aggregate expression to emit");
Chris Lattner1b726772010-12-02 07:07:26 +00001256 assert((Slot.getAddr() != 0 || Slot.isIgnored()) &&
1257 "slot has bits but no address");
Mike Stump1eb44332009-09-09 15:08:12 +00001258
Chris Lattner1b726772010-12-02 07:07:26 +00001259 // Optimize the slot if possible.
1260 CheckAggExprForMemSetUse(Slot, E, *this);
1261
John McCalle0c11682012-07-02 23:58:38 +00001262 AggExprEmitter(*this, Slot).Visit(const_cast<Expr*>(E));
Chris Lattneree755f92007-08-21 04:59:27 +00001263}
Daniel Dunbar7482d122008-09-09 20:49:46 +00001264
Daniel Dunbar18aba0d2010-02-05 19:38:31 +00001265LValue CodeGenFunction::EmitAggExprToLValue(const Expr *E) {
1266 assert(hasAggregateLLVMType(E->getType()) && "Invalid argument!");
Daniel Dunbar195337d2010-02-09 02:48:28 +00001267 llvm::Value *Temp = CreateMemTemp(E->getType());
Daniel Dunbar79c39282010-08-21 03:15:20 +00001268 LValue LV = MakeAddrLValue(Temp, E->getType());
John McCall7c2349b2011-08-25 20:40:09 +00001269 EmitAggExpr(E, AggValueSlot::forLValue(LV, AggValueSlot::IsNotDestructed,
John McCall44184392011-08-26 07:31:35 +00001270 AggValueSlot::DoesNotNeedGCBarriers,
Chad Rosier649b4a12012-03-29 17:37:10 +00001271 AggValueSlot::IsNotAliased));
Daniel Dunbar79c39282010-08-21 03:15:20 +00001272 return LV;
Daniel Dunbar18aba0d2010-02-05 19:38:31 +00001273}
1274
Chad Rosier649b4a12012-03-29 17:37:10 +00001275void CodeGenFunction::EmitAggregateCopy(llvm::Value *DestPtr,
1276 llvm::Value *SrcPtr, QualType Ty,
John McCalle0c11682012-07-02 23:58:38 +00001277 bool isVolatile,
Benjamin Kramer6cacae82012-09-30 12:43:37 +00001278 CharUnits alignment,
1279 bool isAssignment) {
Chad Rosier649b4a12012-03-29 17:37:10 +00001280 assert(!Ty->isAnyComplexType() && "Shouldn't happen for complex");
Mike Stump1eb44332009-09-09 15:08:12 +00001281
Richard Smith7edf9e32012-11-01 22:30:59 +00001282 if (getLangOpts().CPlusPlus) {
Chad Rosier649b4a12012-03-29 17:37:10 +00001283 if (const RecordType *RT = Ty->getAs<RecordType>()) {
1284 CXXRecordDecl *Record = cast<CXXRecordDecl>(RT->getDecl());
1285 assert((Record->hasTrivialCopyConstructor() ||
1286 Record->hasTrivialCopyAssignment() ||
1287 Record->hasTrivialMoveConstructor() ||
1288 Record->hasTrivialMoveAssignment()) &&
Richard Smith426391c2012-11-16 00:53:38 +00001289 "Trying to aggregate-copy a type without a trivial copy/move "
Douglas Gregore9979482010-05-20 15:39:01 +00001290 "constructor or assignment operator");
Chad Rosier649b4a12012-03-29 17:37:10 +00001291 // Ignore empty classes in C++.
1292 if (Record->isEmpty())
Anders Carlsson0d7c5832010-05-03 01:20:20 +00001293 return;
1294 }
1295 }
1296
Chris Lattner83c96292009-02-28 18:31:01 +00001297 // Aggregate assignment turns into llvm.memcpy. This is almost valid per
Chris Lattnerca4fc2c2009-02-28 18:18:58 +00001298 // C99 6.5.16.1p3, which states "If the value being stored in an object is
1299 // read from another object that overlaps in anyway the storage of the first
1300 // object, then the overlap shall be exact and the two objects shall have
1301 // qualified or unqualified versions of a compatible type."
1302 //
Chris Lattner83c96292009-02-28 18:31:01 +00001303 // memcpy is not defined if the source and destination pointers are exactly
Chris Lattnerca4fc2c2009-02-28 18:18:58 +00001304 // equal, but other compilers do this optimization, and almost every memcpy
1305 // implementation handles this case safely. If there is a libc that does not
1306 // safely handle this, we can add a target hook.
Chad Rosier649b4a12012-03-29 17:37:10 +00001307
Benjamin Kramer6cacae82012-09-30 12:43:37 +00001308 // Get data size and alignment info for this aggregate. If this is an
1309 // assignment don't copy the tail padding. Otherwise copying it is fine.
1310 std::pair<CharUnits, CharUnits> TypeInfo;
1311 if (isAssignment)
1312 TypeInfo = getContext().getTypeInfoDataSizeInChars(Ty);
1313 else
1314 TypeInfo = getContext().getTypeInfoInChars(Ty);
Chad Rosier649b4a12012-03-29 17:37:10 +00001315
John McCalle0c11682012-07-02 23:58:38 +00001316 if (alignment.isZero())
1317 alignment = TypeInfo.second;
Chad Rosier649b4a12012-03-29 17:37:10 +00001318
1319 // FIXME: Handle variable sized types.
1320
1321 // FIXME: If we have a volatile struct, the optimizer can remove what might
1322 // appear to be `extra' memory ops:
1323 //
1324 // volatile struct { int i; } a, b;
1325 //
1326 // int main() {
1327 // a = b;
1328 // a = b;
1329 // }
1330 //
1331 // we need to use a different call here. We use isVolatile to indicate when
1332 // either the source or the destination is volatile.
1333
1334 llvm::PointerType *DPT = cast<llvm::PointerType>(DestPtr->getType());
1335 llvm::Type *DBP =
1336 llvm::Type::getInt8PtrTy(getLLVMContext(), DPT->getAddressSpace());
1337 DestPtr = Builder.CreateBitCast(DestPtr, DBP);
1338
1339 llvm::PointerType *SPT = cast<llvm::PointerType>(SrcPtr->getType());
1340 llvm::Type *SBP =
1341 llvm::Type::getInt8PtrTy(getLLVMContext(), SPT->getAddressSpace());
1342 SrcPtr = Builder.CreateBitCast(SrcPtr, SBP);
1343
1344 // Don't do any of the memmove_collectable tests if GC isn't set.
1345 if (CGM.getLangOpts().getGC() == LangOptions::NonGC) {
1346 // fall through
1347 } else if (const RecordType *RecordTy = Ty->getAs<RecordType>()) {
1348 RecordDecl *Record = RecordTy->getDecl();
1349 if (Record->hasObjectMember()) {
1350 CharUnits size = TypeInfo.first;
1351 llvm::Type *SizeTy = ConvertType(getContext().getSizeType());
1352 llvm::Value *SizeVal = llvm::ConstantInt::get(SizeTy, size.getQuantity());
1353 CGM.getObjCRuntime().EmitGCMemmoveCollectable(*this, DestPtr, SrcPtr,
1354 SizeVal);
1355 return;
1356 }
1357 } else if (Ty->isArrayType()) {
1358 QualType BaseType = getContext().getBaseElementType(Ty);
1359 if (const RecordType *RecordTy = BaseType->getAs<RecordType>()) {
1360 if (RecordTy->getDecl()->hasObjectMember()) {
1361 CharUnits size = TypeInfo.first;
1362 llvm::Type *SizeTy = ConvertType(getContext().getSizeType());
1363 llvm::Value *SizeVal =
1364 llvm::ConstantInt::get(SizeTy, size.getQuantity());
1365 CGM.getObjCRuntime().EmitGCMemmoveCollectable(*this, DestPtr, SrcPtr,
1366 SizeVal);
1367 return;
1368 }
1369 }
1370 }
Dan Gohmanb22c7dc2012-09-28 21:58:29 +00001371
1372 // Determine the metadata to describe the position of any padding in this
1373 // memcpy, as well as the TBAA tags for the members of the struct, in case
1374 // the optimizer wishes to expand it in to scalar memory operations.
1375 llvm::MDNode *TBAAStructTag = CGM.getTBAAStructInfo(Ty);
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00001376
Chad Rosier649b4a12012-03-29 17:37:10 +00001377 Builder.CreateMemCpy(DestPtr, SrcPtr,
1378 llvm::ConstantInt::get(IntPtrTy,
1379 TypeInfo.first.getQuantity()),
Dan Gohmanb22c7dc2012-09-28 21:58:29 +00001380 alignment.getQuantity(), isVolatile,
1381 /*TBAATag=*/0, TBAAStructTag);
Daniel Dunbar7482d122008-09-09 20:49:46 +00001382}
Sebastian Redl32cf1f22012-02-17 08:42:25 +00001383
Sebastian Redl972edf02012-02-19 16:03:09 +00001384void CodeGenFunction::MaybeEmitStdInitializerListCleanup(llvm::Value *loc,
1385 const Expr *init) {
Sebastian Redl32cf1f22012-02-17 08:42:25 +00001386 const ExprWithCleanups *cleanups = dyn_cast<ExprWithCleanups>(init);
Sebastian Redl972edf02012-02-19 16:03:09 +00001387 if (cleanups)
1388 init = cleanups->getSubExpr();
Sebastian Redl32cf1f22012-02-17 08:42:25 +00001389
1390 if (isa<InitListExpr>(init) &&
1391 cast<InitListExpr>(init)->initializesStdInitializerList()) {
1392 // We initialized this std::initializer_list with an initializer list.
1393 // A backing array was created. Push a cleanup for it.
Sebastian Redl972edf02012-02-19 16:03:09 +00001394 EmitStdInitializerListCleanup(loc, cast<InitListExpr>(init));
Sebastian Redl32cf1f22012-02-17 08:42:25 +00001395 }
1396}
1397
Sebastian Redlaf130fd2012-02-19 12:28:02 +00001398static void EmitRecursiveStdInitializerListCleanup(CodeGenFunction &CGF,
1399 llvm::Value *arrayStart,
1400 const InitListExpr *init) {
1401 // Check if there are any recursive cleanups to do, i.e. if we have
1402 // std::initializer_list<std::initializer_list<obj>> list = {{obj()}};
1403 // then we need to destroy the inner array as well.
1404 for (unsigned i = 0, e = init->getNumInits(); i != e; ++i) {
1405 const InitListExpr *subInit = dyn_cast<InitListExpr>(init->getInit(i));
1406 if (!subInit || !subInit->initializesStdInitializerList())
1407 continue;
1408
1409 // This one needs to be destroyed. Get the address of the std::init_list.
1410 llvm::Value *offset = llvm::ConstantInt::get(CGF.SizeTy, i);
1411 llvm::Value *loc = CGF.Builder.CreateInBoundsGEP(arrayStart, offset,
1412 "std.initlist");
1413 CGF.EmitStdInitializerListCleanup(loc, subInit);
1414 }
1415}
1416
1417void CodeGenFunction::EmitStdInitializerListCleanup(llvm::Value *loc,
Sebastian Redl32cf1f22012-02-17 08:42:25 +00001418 const InitListExpr *init) {
1419 ASTContext &ctx = getContext();
1420 QualType element = GetStdInitializerListElementType(init->getType());
1421 unsigned numInits = init->getNumInits();
1422 llvm::APInt size(ctx.getTypeSize(ctx.getSizeType()), numInits);
1423 QualType array =ctx.getConstantArrayType(element, size, ArrayType::Normal, 0);
1424 QualType arrayPtr = ctx.getPointerType(array);
1425 llvm::Type *arrayPtrType = ConvertType(arrayPtr);
1426
1427 // lvalue is the location of a std::initializer_list, which as its first
1428 // element has a pointer to the array we want to destroy.
Sebastian Redlaf130fd2012-02-19 12:28:02 +00001429 llvm::Value *startPointer = Builder.CreateStructGEP(loc, 0, "startPointer");
1430 llvm::Value *startAddress = Builder.CreateLoad(startPointer, "startAddress");
Sebastian Redl32cf1f22012-02-17 08:42:25 +00001431
Sebastian Redlaf130fd2012-02-19 12:28:02 +00001432 ::EmitRecursiveStdInitializerListCleanup(*this, startAddress, init);
1433
1434 llvm::Value *arrayAddress =
1435 Builder.CreateBitCast(startAddress, arrayPtrType, "arrayAddress");
Sebastian Redl32cf1f22012-02-17 08:42:25 +00001436 ::EmitStdInitializerListCleanup(*this, array, arrayAddress, init);
1437}