blob: 2103026a84f29a4b7ba4e45f43dc1676faabe8c5 [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 Redl8eb351d2012-02-19 12:28:02 +000083 void EmitStdInitializerList(llvm::Value *DestPtr, InitListExpr *InitList);
Sebastian Redlc83ed822012-02-17 08:42:25 +000084 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) {
David Blaikiebbafb8a2012-03-11 07:00:24 +000088 if (CGF.getLangOpts().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.
John McCall113bee02012-03-10 09:33:50 +0000112 void VisitDeclRefExpr(DeclRefExpr *E) {
John McCall71335052012-03-10 03:05:10 +0000113 // For aggregates, we should always be able to emit the variable
114 // as an l-value unless it's a reference. This is due to the fact
115 // that we can't actually ever see a normal l2r conversion on an
116 // aggregate in C++, and in C there's no language standard
117 // actively preventing us from listing variables in the captures
118 // list of a block.
John McCall113bee02012-03-10 09:33:50 +0000119 if (E->getDecl()->getType()->isReferenceType()) {
John McCall71335052012-03-10 03:05:10 +0000120 if (CodeGenFunction::ConstantEmission result
John McCall113bee02012-03-10 09:33:50 +0000121 = CGF.tryEmitAsConstant(E)) {
122 EmitFinalDestCopy(E, result.getReferenceLValue(CGF, E));
John McCall71335052012-03-10 03:05:10 +0000123 return;
124 }
125 }
126
John McCall113bee02012-03-10 09:33:50 +0000127 EmitAggLoadOfLValue(E);
John McCall71335052012-03-10 03:05:10 +0000128 }
129
Seo Sanghyeond4d8c3c2007-12-14 02:04:12 +0000130 void VisitMemberExpr(MemberExpr *ME) { EmitAggLoadOfLValue(ME); }
131 void VisitUnaryDeref(UnaryOperator *E) { EmitAggLoadOfLValue(E); }
Daniel Dunbard443c0a2010-01-04 18:47:06 +0000132 void VisitStringLiteral(StringLiteral *E) { EmitAggLoadOfLValue(E); }
Douglas Gregor9b71f0c2011-06-17 04:59:12 +0000133 void VisitCompoundLiteralExpr(CompoundLiteralExpr *E);
Seo Sanghyeond4d8c3c2007-12-14 02:04:12 +0000134 void VisitArraySubscriptExpr(ArraySubscriptExpr *E) {
135 EmitAggLoadOfLValue(E);
136 }
Chris Lattner2f343dd2009-04-21 23:00:09 +0000137 void VisitPredefinedExpr(const PredefinedExpr *E) {
Mike Stump11289f42009-09-09 15:08:12 +0000138 EmitAggLoadOfLValue(E);
Chris Lattner2f343dd2009-04-21 23:00:09 +0000139 }
Mike Stump11289f42009-09-09 15:08:12 +0000140
Chris Lattner4758b402007-08-21 04:25:47 +0000141 // Operators.
Anders Carlssonec143772009-08-07 23:22:37 +0000142 void VisitCastExpr(CastExpr *E);
Anders Carlsson0370eb22007-10-31 22:04:46 +0000143 void VisitCallExpr(const CallExpr *E);
Chris Lattner49e3bfa2007-08-31 22:54:14 +0000144 void VisitStmtExpr(const StmtExpr *E);
Chris Lattner4758b402007-08-21 04:25:47 +0000145 void VisitBinaryOperator(const BinaryOperator *BO);
Fariborz Jahanianffba6622009-10-22 22:57:31 +0000146 void VisitPointerToDataMemberBinaryOperator(const BinaryOperator *BO);
Chris Lattnercd9fb242007-08-21 04:43:17 +0000147 void VisitBinAssign(const BinaryOperator *E);
Eli Friedman4b0e2a32008-05-20 07:56:31 +0000148 void VisitBinComma(const BinaryOperator *E);
Chris Lattner4758b402007-08-21 04:25:47 +0000149
Chris Lattnerb1d329d2008-06-24 17:04:18 +0000150 void VisitObjCMessageExpr(ObjCMessageExpr *E);
Daniel Dunbarc8317a42008-08-23 10:51:21 +0000151 void VisitObjCIvarRefExpr(ObjCIvarRefExpr *E) {
152 EmitAggLoadOfLValue(E);
153 }
Mike Stump11289f42009-09-09 15:08:12 +0000154
John McCallc07a0c72011-02-17 10:25:35 +0000155 void VisitAbstractConditionalOperator(const AbstractConditionalOperator *CO);
Anders Carlsson5b2095c2009-07-08 18:33:14 +0000156 void VisitChooseExpr(const ChooseExpr *CE);
Devang Patel87174172007-10-26 17:44:44 +0000157 void VisitInitListExpr(InitListExpr *E);
Anders Carlsson18ada982009-12-16 06:57:54 +0000158 void VisitImplicitValueInitExpr(ImplicitValueInitExpr *E);
Chris Lattneraa9c7ae2008-04-08 04:40:51 +0000159 void VisitCXXDefaultArgExpr(CXXDefaultArgExpr *DAE) {
160 Visit(DAE->getExpr());
161 }
Anders Carlsson3be22e22009-05-30 23:23:33 +0000162 void VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E);
Anders Carlsson1619a5042009-05-03 17:47:16 +0000163 void VisitCXXConstructExpr(const CXXConstructExpr *E);
Eli Friedmanc370a7e2012-02-09 03:32:31 +0000164 void VisitLambdaExpr(LambdaExpr *E);
John McCall5d413782010-12-06 08:20:24 +0000165 void VisitExprWithCleanups(ExprWithCleanups *E);
Douglas Gregor747eb782010-07-08 06:14:04 +0000166 void VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *E);
Mike Stump5bbbb132009-11-18 00:40:12 +0000167 void VisitCXXTypeidExpr(CXXTypeidExpr *E) { EmitAggLoadOfLValue(E); }
Douglas Gregorfe314812011-06-21 17:03:29 +0000168 void VisitMaterializeTemporaryExpr(MaterializeTemporaryExpr *E);
John McCall1bf58462011-02-16 08:02:54 +0000169 void VisitOpaqueValueExpr(OpaqueValueExpr *E);
170
John McCallfe96e0b2011-11-06 09:01:30 +0000171 void VisitPseudoObjectExpr(PseudoObjectExpr *E) {
172 if (E->isGLValue()) {
173 LValue LV = CGF.EmitPseudoObjectLValue(E);
174 return EmitFinalDestCopy(E, LV);
175 }
176
177 CGF.EmitPseudoObjectRValue(E, EnsureSlot(E->getType()));
178 }
179
Eli Friedman21911e82008-05-27 15:51:49 +0000180 void VisitVAArgExpr(VAArgExpr *E);
Chris Lattner579a05d2008-04-04 18:42:16 +0000181
Chad Rosier615ed1a2012-03-29 17:37:10 +0000182 void EmitInitializationToLValue(Expr *E, LValue Address);
John McCall1553b192011-06-16 04:16:24 +0000183 void EmitNullInitializationToLValue(LValue Address);
Chris Lattner4758b402007-08-21 04:25:47 +0000184 // case Expr::ChooseExprClass:
Mike Stumpf16b8c32009-12-09 19:24:08 +0000185 void VisitCXXThrowExpr(const CXXThrowExpr *E) { CGF.EmitCXXThrowExpr(E); }
Eli Friedmandf14b3a2011-10-11 02:20:01 +0000186 void VisitAtomicExpr(AtomicExpr *E) {
187 CGF.EmitAtomicExpr(E, EnsureSlot(E->getType()).getAddr());
188 }
Chris Lattner4758b402007-08-21 04:25:47 +0000189};
190} // end anonymous namespace.
191
Chris Lattner835635d2007-08-21 04:59:27 +0000192//===----------------------------------------------------------------------===//
193// Utilities
194//===----------------------------------------------------------------------===//
Chris Lattner4758b402007-08-21 04:25:47 +0000195
Chris Lattner6278e6a2007-08-11 00:04:45 +0000196/// EmitAggLoadOfLValue - Given an expression with aggregate type that
197/// represents a value lvalue, this method emits the address of the lvalue,
198/// then loads the result into DestPtr.
Chris Lattner4758b402007-08-21 04:25:47 +0000199void AggExprEmitter::EmitAggLoadOfLValue(const Expr *E) {
200 LValue LV = CGF.EmitLValue(E);
Mike Stumpca9fc092009-05-23 20:28:01 +0000201 EmitFinalDestCopy(E, LV);
202}
203
John McCallcc04e9f2010-05-22 22:13:32 +0000204/// \brief True if the given aggregate type requires special GC API calls.
205bool AggExprEmitter::TypeRequiresGCollection(QualType T) {
206 // Only record types have members that might require garbage collection.
207 const RecordType *RecordTy = T->getAs<RecordType>();
208 if (!RecordTy) return false;
209
210 // Don't mess with non-trivial C++ types.
211 RecordDecl *Record = RecordTy->getDecl();
212 if (isa<CXXRecordDecl>(Record) &&
213 (!cast<CXXRecordDecl>(Record)->hasTrivialCopyConstructor() ||
214 !cast<CXXRecordDecl>(Record)->hasTrivialDestructor()))
215 return false;
216
217 // Check whether the type has an object member.
218 return Record->hasObjectMember();
219}
220
John McCalla5efa732011-08-25 23:04:34 +0000221/// \brief Perform the final move to DestPtr if for some reason
222/// getReturnValueSlot() didn't use it directly.
John McCallcc04e9f2010-05-22 22:13:32 +0000223///
224/// The idea is that you do something like this:
225/// RValue Result = EmitSomething(..., getReturnValueSlot());
John McCalla5efa732011-08-25 23:04:34 +0000226/// EmitMoveFromReturnSlot(E, Result);
227///
228/// If nothing interferes, this will cause the result to be emitted
229/// directly into the return value slot. Otherwise, a final move
230/// will be performed.
231void AggExprEmitter::EmitMoveFromReturnSlot(const Expr *E, RValue Src) {
232 if (shouldUseDestForReturnSlot()) {
233 // Logically, Dest.getAddr() should equal Src.getAggregateAddr().
234 // The possibility of undef rvalues complicates that a lot,
235 // though, so we can't really assert.
236 return;
Fariborz Jahanian021510e2010-06-15 22:44:06 +0000237 }
John McCalla5efa732011-08-25 23:04:34 +0000238
239 // Otherwise, do a final copy,
240 assert(Dest.getAddr() != Src.getAggregateAddr());
241 EmitFinalDestCopy(E, Src, /*Ignore*/ true);
John McCallcc04e9f2010-05-22 22:13:32 +0000242}
243
Mike Stumpca9fc092009-05-23 20:28:01 +0000244/// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
Eli Friedman6d694a32011-12-05 22:23:28 +0000245void AggExprEmitter::EmitFinalDestCopy(const Expr *E, RValue Src, bool Ignore,
246 unsigned Alignment) {
Mike Stumpca9fc092009-05-23 20:28:01 +0000247 assert(Src.isAggregate() && "value must be aggregate value!");
248
John McCall7a626f62010-09-15 10:14:12 +0000249 // If Dest is ignored, then we're evaluating an aggregate expression
John McCall8d752432010-08-25 02:50:31 +0000250 // in a context (like an expression statement) that doesn't care
251 // about the result. C says that an lvalue-to-rvalue conversion is
252 // performed in these cases; C++ says that it is not. In either
253 // case, we don't actually need to do anything unless the value is
254 // volatile.
John McCall7a626f62010-09-15 10:14:12 +0000255 if (Dest.isIgnored()) {
John McCall8d752432010-08-25 02:50:31 +0000256 if (!Src.isVolatileQualified() ||
David Blaikiebbafb8a2012-03-11 07:00:24 +0000257 CGF.CGM.getLangOpts().CPlusPlus ||
John McCall8d752432010-08-25 02:50:31 +0000258 (IgnoreResult && Ignore))
Mike Stump332ec2c2009-05-23 22:01:27 +0000259 return;
Fariborz Jahanianc1236232010-10-22 22:05:03 +0000260
Mike Stumpec3cbfe2009-05-26 22:03:21 +0000261 // If the source is volatile, we must read from it; to do that, we need
262 // some place to put it.
John McCall7a626f62010-09-15 10:14:12 +0000263 Dest = CGF.CreateAggTemp(E->getType(), "agg.tmp");
Mike Stump332ec2c2009-05-23 22:01:27 +0000264 }
Chris Lattner6278e6a2007-08-11 00:04:45 +0000265
John McCall58649dc2010-09-16 03:13:23 +0000266 if (Dest.requiresGCollection()) {
Ken Dyck3b4bd9a2011-04-24 17:08:00 +0000267 CharUnits size = CGF.getContext().getTypeSizeInChars(E->getType());
Chris Lattner2192fe52011-07-18 04:24:23 +0000268 llvm::Type *SizeTy = CGF.ConvertType(CGF.getContext().getSizeType());
Ken Dyck3b4bd9a2011-04-24 17:08:00 +0000269 llvm::Value *SizeVal = llvm::ConstantInt::get(SizeTy, size.getQuantity());
Fariborz Jahanian879d7262009-08-31 19:33:16 +0000270 CGF.CGM.getObjCRuntime().EmitGCMemmoveCollectable(CGF,
John McCall7a626f62010-09-15 10:14:12 +0000271 Dest.getAddr(),
272 Src.getAggregateAddr(),
273 SizeVal);
Fariborz Jahanian879d7262009-08-31 19:33:16 +0000274 return;
275 }
Mike Stumpca9fc092009-05-23 20:28:01 +0000276 // If the result of the assignment is used, copy the LHS there also.
277 // FIXME: Pass VolatileDest as well. I think we also need to merge volatile
278 // from the source as well, as we can't eliminate it if either operand
279 // is volatile, unless copy has volatile for both source and destination..
John McCall7a626f62010-09-15 10:14:12 +0000280 CGF.EmitAggregateCopy(Dest.getAddr(), Src.getAggregateAddr(), E->getType(),
Eli Friedman6d694a32011-12-05 22:23:28 +0000281 Dest.isVolatile()|Src.isVolatileQualified(),
Chad Rosier615ed1a2012-03-29 17:37:10 +0000282 Alignment);
Mike Stumpca9fc092009-05-23 20:28:01 +0000283}
284
285/// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
Mike Stumpec3cbfe2009-05-26 22:03:21 +0000286void AggExprEmitter::EmitFinalDestCopy(const Expr *E, LValue Src, bool Ignore) {
Mike Stumpca9fc092009-05-23 20:28:01 +0000287 assert(Src.isSimple() && "Can't have aggregate bitfield, vector, etc");
288
Eli Friedman6d694a32011-12-05 22:23:28 +0000289 CharUnits Alignment = std::min(Src.getAlignment(), Dest.getAlignment());
290 EmitFinalDestCopy(E, Src.asAggregateRValue(), Ignore, Alignment.getQuantity());
Chris Lattner6278e6a2007-08-11 00:04:45 +0000291}
292
Sebastian Redlc83ed822012-02-17 08:42:25 +0000293static QualType GetStdInitializerListElementType(QualType T) {
294 // Just assume that this is really std::initializer_list.
295 ClassTemplateSpecializationDecl *specialization =
296 cast<ClassTemplateSpecializationDecl>(T->castAs<RecordType>()->getDecl());
297 return specialization->getTemplateArgs()[0].getAsType();
298}
299
300/// \brief Prepare cleanup for the temporary array.
301static void EmitStdInitializerListCleanup(CodeGenFunction &CGF,
302 QualType arrayType,
303 llvm::Value *addr,
304 const InitListExpr *initList) {
305 QualType::DestructionKind dtorKind = arrayType.isDestructedType();
306 if (!dtorKind)
307 return; // Type doesn't need destroying.
308 if (dtorKind != QualType::DK_cxx_destructor) {
309 CGF.ErrorUnsupported(initList, "ObjC ARC type in initializer_list");
310 return;
311 }
312
313 CodeGenFunction::Destroyer *destroyer = CGF.getDestroyer(dtorKind);
314 CGF.pushDestroy(NormalAndEHCleanup, addr, arrayType, destroyer,
315 /*EHCleanup=*/true);
316}
317
318/// \brief Emit the initializer for a std::initializer_list initialized with a
319/// real initializer list.
Sebastian Redl8eb351d2012-02-19 12:28:02 +0000320void AggExprEmitter::EmitStdInitializerList(llvm::Value *destPtr,
321 InitListExpr *initList) {
Sebastian Redlc83ed822012-02-17 08:42:25 +0000322 // We emit an array containing the elements, then have the init list point
323 // at the array.
324 ASTContext &ctx = CGF.getContext();
325 unsigned numInits = initList->getNumInits();
326 QualType element = GetStdInitializerListElementType(initList->getType());
327 llvm::APInt size(ctx.getTypeSize(ctx.getSizeType()), numInits);
328 QualType array = ctx.getConstantArrayType(element, size, ArrayType::Normal,0);
329 llvm::Type *LTy = CGF.ConvertTypeForMem(array);
330 llvm::AllocaInst *alloc = CGF.CreateTempAlloca(LTy);
331 alloc->setAlignment(ctx.getTypeAlignInChars(array).getQuantity());
332 alloc->setName(".initlist.");
333
334 EmitArrayInit(alloc, cast<llvm::ArrayType>(LTy), element, initList);
335
336 // FIXME: The diagnostics are somewhat out of place here.
337 RecordDecl *record = initList->getType()->castAs<RecordType>()->getDecl();
338 RecordDecl::field_iterator field = record->field_begin();
339 if (field == record->field_end()) {
340 CGF.ErrorUnsupported(initList, "weird std::initializer_list");
Sebastian Redlf2e0a302012-02-25 20:51:13 +0000341 return;
Sebastian Redlc83ed822012-02-17 08:42:25 +0000342 }
343
344 QualType elementPtr = ctx.getPointerType(element.withConst());
Sebastian Redlc83ed822012-02-17 08:42:25 +0000345
346 // Start pointer.
347 if (!ctx.hasSameType(field->getType(), elementPtr)) {
348 CGF.ErrorUnsupported(initList, "weird std::initializer_list");
Sebastian Redlf2e0a302012-02-25 20:51:13 +0000349 return;
Sebastian Redlc83ed822012-02-17 08:42:25 +0000350 }
Eli Friedman7f1ff602012-04-16 03:54:45 +0000351 LValue DestLV = CGF.MakeNaturalAlignAddrLValue(destPtr, initList->getType());
352 LValue start = CGF.EmitLValueForFieldInitialization(DestLV, *field);
Sebastian Redlc83ed822012-02-17 08:42:25 +0000353 llvm::Value *arrayStart = Builder.CreateStructGEP(alloc, 0, "arraystart");
354 CGF.EmitStoreThroughLValue(RValue::get(arrayStart), start);
355 ++field;
356
357 if (field == record->field_end()) {
358 CGF.ErrorUnsupported(initList, "weird std::initializer_list");
Sebastian Redlf2e0a302012-02-25 20:51:13 +0000359 return;
Sebastian Redlc83ed822012-02-17 08:42:25 +0000360 }
Eli Friedman7f1ff602012-04-16 03:54:45 +0000361 LValue endOrLength = CGF.EmitLValueForFieldInitialization(DestLV, *field);
Sebastian Redlc83ed822012-02-17 08:42:25 +0000362 if (ctx.hasSameType(field->getType(), elementPtr)) {
363 // End pointer.
364 llvm::Value *arrayEnd = Builder.CreateStructGEP(alloc,numInits, "arrayend");
365 CGF.EmitStoreThroughLValue(RValue::get(arrayEnd), endOrLength);
366 } else if(ctx.hasSameType(field->getType(), ctx.getSizeType())) {
367 // Length.
368 CGF.EmitStoreThroughLValue(RValue::get(Builder.getInt(size)), endOrLength);
369 } else {
370 CGF.ErrorUnsupported(initList, "weird std::initializer_list");
Sebastian Redlf2e0a302012-02-25 20:51:13 +0000371 return;
Sebastian Redlc83ed822012-02-17 08:42:25 +0000372 }
373
374 if (!Dest.isExternallyDestructed())
375 EmitStdInitializerListCleanup(CGF, array, alloc, initList);
376}
377
378/// \brief Emit initialization of an array from an initializer list.
379void AggExprEmitter::EmitArrayInit(llvm::Value *DestPtr, llvm::ArrayType *AType,
380 QualType elementType, InitListExpr *E) {
381 uint64_t NumInitElements = E->getNumInits();
382
383 uint64_t NumArrayElements = AType->getNumElements();
384 assert(NumInitElements <= NumArrayElements);
385
386 // DestPtr is an array*. Construct an elementType* by drilling
387 // down a level.
388 llvm::Value *zero = llvm::ConstantInt::get(CGF.SizeTy, 0);
389 llvm::Value *indices[] = { zero, zero };
390 llvm::Value *begin =
391 Builder.CreateInBoundsGEP(DestPtr, indices, "arrayinit.begin");
392
393 // Exception safety requires us to destroy all the
394 // already-constructed members if an initializer throws.
395 // For that, we'll need an EH cleanup.
396 QualType::DestructionKind dtorKind = elementType.isDestructedType();
397 llvm::AllocaInst *endOfInit = 0;
398 EHScopeStack::stable_iterator cleanup;
399 llvm::Instruction *cleanupDominator = 0;
400 if (CGF.needsEHCleanup(dtorKind)) {
401 // In principle we could tell the cleanup where we are more
402 // directly, but the control flow can get so varied here that it
403 // would actually be quite complex. Therefore we go through an
404 // alloca.
405 endOfInit = CGF.CreateTempAlloca(begin->getType(),
406 "arrayinit.endOfInit");
407 cleanupDominator = Builder.CreateStore(begin, endOfInit);
408 CGF.pushIrregularPartialArrayCleanup(begin, endOfInit, elementType,
409 CGF.getDestroyer(dtorKind));
410 cleanup = CGF.EHStack.stable_begin();
411
412 // Otherwise, remember that we didn't need a cleanup.
413 } else {
414 dtorKind = QualType::DK_none;
415 }
416
417 llvm::Value *one = llvm::ConstantInt::get(CGF.SizeTy, 1);
418
419 // The 'current element to initialize'. The invariants on this
420 // variable are complicated. Essentially, after each iteration of
421 // the loop, it points to the last initialized element, except
422 // that it points to the beginning of the array before any
423 // elements have been initialized.
424 llvm::Value *element = begin;
425
426 // Emit the explicit initializers.
427 for (uint64_t i = 0; i != NumInitElements; ++i) {
428 // Advance to the next element.
429 if (i > 0) {
430 element = Builder.CreateInBoundsGEP(element, one, "arrayinit.element");
431
432 // Tell the cleanup that it needs to destroy up to this
433 // element. TODO: some of these stores can be trivially
434 // observed to be unnecessary.
435 if (endOfInit) Builder.CreateStore(element, endOfInit);
436 }
437
Sebastian Redl8eb351d2012-02-19 12:28:02 +0000438 // If these are nested std::initializer_list inits, do them directly,
439 // because they are conceptually the same "location".
440 InitListExpr *initList = dyn_cast<InitListExpr>(E->getInit(i));
441 if (initList && initList->initializesStdInitializerList()) {
442 EmitStdInitializerList(element, initList);
443 } else {
444 LValue elementLV = CGF.MakeAddrLValue(element, elementType);
Chad Rosier615ed1a2012-03-29 17:37:10 +0000445 EmitInitializationToLValue(E->getInit(i), elementLV);
Sebastian Redl8eb351d2012-02-19 12:28:02 +0000446 }
Sebastian Redlc83ed822012-02-17 08:42:25 +0000447 }
448
449 // Check whether there's a non-trivial array-fill expression.
450 // Note that this will be a CXXConstructExpr even if the element
451 // type is an array (or array of array, etc.) of class type.
452 Expr *filler = E->getArrayFiller();
453 bool hasTrivialFiller = true;
454 if (CXXConstructExpr *cons = dyn_cast_or_null<CXXConstructExpr>(filler)) {
455 assert(cons->getConstructor()->isDefaultConstructor());
456 hasTrivialFiller = cons->getConstructor()->isTrivial();
457 }
458
459 // Any remaining elements need to be zero-initialized, possibly
460 // using the filler expression. We can skip this if the we're
461 // emitting to zeroed memory.
462 if (NumInitElements != NumArrayElements &&
463 !(Dest.isZeroed() && hasTrivialFiller &&
464 CGF.getTypes().isZeroInitializable(elementType))) {
465
466 // Use an actual loop. This is basically
467 // do { *array++ = filler; } while (array != end);
468
469 // Advance to the start of the rest of the array.
470 if (NumInitElements) {
471 element = Builder.CreateInBoundsGEP(element, one, "arrayinit.start");
472 if (endOfInit) Builder.CreateStore(element, endOfInit);
473 }
474
475 // Compute the end of the array.
476 llvm::Value *end = Builder.CreateInBoundsGEP(begin,
477 llvm::ConstantInt::get(CGF.SizeTy, NumArrayElements),
478 "arrayinit.end");
479
480 llvm::BasicBlock *entryBB = Builder.GetInsertBlock();
481 llvm::BasicBlock *bodyBB = CGF.createBasicBlock("arrayinit.body");
482
483 // Jump into the body.
484 CGF.EmitBlock(bodyBB);
485 llvm::PHINode *currentElement =
486 Builder.CreatePHI(element->getType(), 2, "arrayinit.cur");
487 currentElement->addIncoming(element, entryBB);
488
489 // Emit the actual filler expression.
490 LValue elementLV = CGF.MakeAddrLValue(currentElement, elementType);
491 if (filler)
Chad Rosier615ed1a2012-03-29 17:37:10 +0000492 EmitInitializationToLValue(filler, elementLV);
Sebastian Redlc83ed822012-02-17 08:42:25 +0000493 else
494 EmitNullInitializationToLValue(elementLV);
495
496 // Move on to the next element.
497 llvm::Value *nextElement =
498 Builder.CreateInBoundsGEP(currentElement, one, "arrayinit.next");
499
500 // Tell the EH cleanup that we finished with the last element.
501 if (endOfInit) Builder.CreateStore(nextElement, endOfInit);
502
503 // Leave the loop if we're done.
504 llvm::Value *done = Builder.CreateICmpEQ(nextElement, end,
505 "arrayinit.done");
506 llvm::BasicBlock *endBB = CGF.createBasicBlock("arrayinit.end");
507 Builder.CreateCondBr(done, endBB, bodyBB);
508 currentElement->addIncoming(nextElement, Builder.GetInsertBlock());
509
510 CGF.EmitBlock(endBB);
511 }
512
513 // Leave the partial-array cleanup if we entered one.
514 if (dtorKind) CGF.DeactivateCleanupBlock(cleanup, cleanupDominator);
515}
516
Chris Lattner835635d2007-08-21 04:59:27 +0000517//===----------------------------------------------------------------------===//
518// Visitor Methods
519//===----------------------------------------------------------------------===//
520
Douglas Gregorfe314812011-06-21 17:03:29 +0000521void AggExprEmitter::VisitMaterializeTemporaryExpr(MaterializeTemporaryExpr *E){
522 Visit(E->GetTemporaryExpr());
523}
524
John McCall1bf58462011-02-16 08:02:54 +0000525void AggExprEmitter::VisitOpaqueValueExpr(OpaqueValueExpr *e) {
John McCallc07a0c72011-02-17 10:25:35 +0000526 EmitFinalDestCopy(e, CGF.getOpaqueLValueMapping(e));
John McCall1bf58462011-02-16 08:02:54 +0000527}
528
Douglas Gregor9b71f0c2011-06-17 04:59:12 +0000529void
530AggExprEmitter::VisitCompoundLiteralExpr(CompoundLiteralExpr *E) {
Douglas Gregor6c9d31e2011-06-17 16:37:20 +0000531 if (E->getType().isPODType(CGF.getContext())) {
532 // For a POD type, just emit a load of the lvalue + a copy, because our
533 // compound literal might alias the destination.
534 // FIXME: This is a band-aid; the real problem appears to be in our handling
535 // of assignments, where we store directly into the LHS without checking
536 // whether anything in the RHS aliases.
537 EmitAggLoadOfLValue(E);
538 return;
539 }
540
Douglas Gregor9b71f0c2011-06-17 04:59:12 +0000541 AggValueSlot Slot = EnsureSlot(E->getType());
542 CGF.EmitAggExpr(E->getInitializer(), Slot);
543}
544
545
Anders Carlssonec143772009-08-07 23:22:37 +0000546void AggExprEmitter::VisitCastExpr(CastExpr *E) {
Anders Carlsson1fb7ae92009-09-29 01:23:39 +0000547 switch (E->getCastKind()) {
Anders Carlsson8a01a752011-04-11 02:03:26 +0000548 case CK_Dynamic: {
Douglas Gregor1c073f42010-05-14 21:31:02 +0000549 assert(isa<CXXDynamicCastExpr>(E) && "CK_Dynamic without a dynamic_cast?");
550 LValue LV = CGF.EmitCheckedLValue(E->getSubExpr());
551 // FIXME: Do we also need to handle property references here?
552 if (LV.isSimple())
553 CGF.EmitDynamicCast(LV.getAddress(), cast<CXXDynamicCastExpr>(E));
554 else
555 CGF.CGM.ErrorUnsupported(E, "non-simple lvalue dynamic_cast");
556
John McCall7a626f62010-09-15 10:14:12 +0000557 if (!Dest.isIgnored())
558 CGF.CGM.ErrorUnsupported(E, "lvalue dynamic_cast with a destination");
Douglas Gregor1c073f42010-05-14 21:31:02 +0000559 break;
560 }
561
John McCalle3027922010-08-25 11:45:40 +0000562 case CK_ToUnion: {
John McCall58989b72011-04-12 22:02:02 +0000563 if (Dest.isIgnored()) break;
564
Anders Carlssonec143772009-08-07 23:22:37 +0000565 // GCC union extension
Daniel Dunbar2e442a02010-08-21 03:15:20 +0000566 QualType Ty = E->getSubExpr()->getType();
567 QualType PtrTy = CGF.getContext().getPointerType(Ty);
John McCall7a626f62010-09-15 10:14:12 +0000568 llvm::Value *CastPtr = Builder.CreateBitCast(Dest.getAddr(),
Eli Friedmandd274842009-06-03 20:45:06 +0000569 CGF.ConvertType(PtrTy));
John McCall1553b192011-06-16 04:16:24 +0000570 EmitInitializationToLValue(E->getSubExpr(),
Chad Rosier615ed1a2012-03-29 17:37:10 +0000571 CGF.MakeAddrLValue(CastPtr, Ty));
Anders Carlsson1fb7ae92009-09-29 01:23:39 +0000572 break;
Nuno Lopes7ffcf932009-01-15 20:14:33 +0000573 }
Mike Stump11289f42009-09-09 15:08:12 +0000574
John McCalle3027922010-08-25 11:45:40 +0000575 case CK_DerivedToBase:
576 case CK_BaseToDerived:
577 case CK_UncheckedDerivedToBase: {
David Blaikie83d382b2011-09-23 05:06:16 +0000578 llvm_unreachable("cannot perform hierarchy conversion in EmitAggExpr: "
Douglas Gregoraae38d62010-05-22 05:17:18 +0000579 "should have been unpacked before we got here");
Douglas Gregoraae38d62010-05-22 05:17:18 +0000580 }
581
John McCall34376a62010-12-04 03:47:34 +0000582 case CK_LValueToRValue: // hope for downstream optimization
John McCalle3027922010-08-25 11:45:40 +0000583 case CK_NoOp:
David Chisnallfa35df62012-01-16 17:27:18 +0000584 case CK_AtomicToNonAtomic:
585 case CK_NonAtomicToAtomic:
John McCalle3027922010-08-25 11:45:40 +0000586 case CK_UserDefinedConversion:
587 case CK_ConstructorConversion:
Anders Carlsson1fb7ae92009-09-29 01:23:39 +0000588 assert(CGF.getContext().hasSameUnqualifiedType(E->getSubExpr()->getType(),
589 E->getType()) &&
590 "Implicit cast types must be compatible");
591 Visit(E->getSubExpr());
592 break;
John McCallf3735e02010-12-01 04:43:34 +0000593
John McCalle3027922010-08-25 11:45:40 +0000594 case CK_LValueBitCast:
John McCallf3735e02010-12-01 04:43:34 +0000595 llvm_unreachable("should not be emitting lvalue bitcast as rvalue");
John McCall31996342011-04-07 08:22:57 +0000596
John McCallf3735e02010-12-01 04:43:34 +0000597 case CK_Dependent:
598 case CK_BitCast:
599 case CK_ArrayToPointerDecay:
600 case CK_FunctionToPointerDecay:
601 case CK_NullToPointer:
602 case CK_NullToMemberPointer:
603 case CK_BaseToDerivedMemberPointer:
604 case CK_DerivedToBaseMemberPointer:
605 case CK_MemberPointerToBoolean:
John McCallc62bb392012-02-15 01:22:51 +0000606 case CK_ReinterpretMemberPointer:
John McCallf3735e02010-12-01 04:43:34 +0000607 case CK_IntegralToPointer:
608 case CK_PointerToIntegral:
609 case CK_PointerToBoolean:
610 case CK_ToVoid:
611 case CK_VectorSplat:
612 case CK_IntegralCast:
613 case CK_IntegralToBoolean:
614 case CK_IntegralToFloating:
615 case CK_FloatingToIntegral:
616 case CK_FloatingToBoolean:
617 case CK_FloatingCast:
John McCall9320b872011-09-09 05:25:32 +0000618 case CK_CPointerToObjCPointerCast:
619 case CK_BlockPointerToObjCPointerCast:
John McCallf3735e02010-12-01 04:43:34 +0000620 case CK_AnyPointerToBlockPointerCast:
621 case CK_ObjCObjectLValueCast:
622 case CK_FloatingRealToComplex:
623 case CK_FloatingComplexToReal:
624 case CK_FloatingComplexToBoolean:
625 case CK_FloatingComplexCast:
626 case CK_FloatingComplexToIntegralComplex:
627 case CK_IntegralRealToComplex:
628 case CK_IntegralComplexToReal:
629 case CK_IntegralComplexToBoolean:
630 case CK_IntegralComplexCast:
631 case CK_IntegralComplexToFloatingComplex:
John McCall2d637d22011-09-10 06:18:15 +0000632 case CK_ARCProduceObject:
633 case CK_ARCConsumeObject:
634 case CK_ARCReclaimReturnedObject:
635 case CK_ARCExtendBlockObject:
Douglas Gregored90df32012-02-22 05:02:47 +0000636 case CK_CopyAndAutoreleaseBlockObject:
John McCallf3735e02010-12-01 04:43:34 +0000637 llvm_unreachable("cast kind invalid for aggregate types");
Anders Carlsson1fb7ae92009-09-29 01:23:39 +0000638 }
Anders Carlsson1ba25ca2008-01-14 06:28:57 +0000639}
640
Chris Lattner0f398c42008-07-26 22:37:01 +0000641void AggExprEmitter::VisitCallExpr(const CallExpr *E) {
Anders Carlssonddcbfe72009-05-27 16:45:02 +0000642 if (E->getCallReturnType()->isReferenceType()) {
643 EmitAggLoadOfLValue(E);
644 return;
645 }
Mike Stump11289f42009-09-09 15:08:12 +0000646
John McCallcc04e9f2010-05-22 22:13:32 +0000647 RValue RV = CGF.EmitCallExpr(E, getReturnValueSlot());
John McCalla5efa732011-08-25 23:04:34 +0000648 EmitMoveFromReturnSlot(E, RV);
Anders Carlsson0370eb22007-10-31 22:04:46 +0000649}
Chris Lattner0f398c42008-07-26 22:37:01 +0000650
651void AggExprEmitter::VisitObjCMessageExpr(ObjCMessageExpr *E) {
John McCallcc04e9f2010-05-22 22:13:32 +0000652 RValue RV = CGF.EmitObjCMessageExpr(E, getReturnValueSlot());
John McCalla5efa732011-08-25 23:04:34 +0000653 EmitMoveFromReturnSlot(E, RV);
Chris Lattnerb1d329d2008-06-24 17:04:18 +0000654}
Anders Carlsson0370eb22007-10-31 22:04:46 +0000655
Chris Lattner0f398c42008-07-26 22:37:01 +0000656void AggExprEmitter::VisitBinComma(const BinaryOperator *E) {
John McCalla2342eb2010-12-05 02:00:02 +0000657 CGF.EmitIgnoredExpr(E->getLHS());
John McCall7a626f62010-09-15 10:14:12 +0000658 Visit(E->getRHS());
Eli Friedman4b0e2a32008-05-20 07:56:31 +0000659}
660
Chris Lattner49e3bfa2007-08-31 22:54:14 +0000661void AggExprEmitter::VisitStmtExpr(const StmtExpr *E) {
John McCallce1de612011-01-26 04:00:11 +0000662 CodeGenFunction::StmtExprEvaluation eval(CGF);
John McCall7a626f62010-09-15 10:14:12 +0000663 CGF.EmitCompoundStmt(*E->getSubStmt(), true, Dest);
Chris Lattner49e3bfa2007-08-31 22:54:14 +0000664}
665
Chris Lattner4758b402007-08-21 04:25:47 +0000666void AggExprEmitter::VisitBinaryOperator(const BinaryOperator *E) {
John McCalle3027922010-08-25 11:45:40 +0000667 if (E->getOpcode() == BO_PtrMemD || E->getOpcode() == BO_PtrMemI)
Fariborz Jahanianffba6622009-10-22 22:57:31 +0000668 VisitPointerToDataMemberBinaryOperator(E);
669 else
670 CGF.ErrorUnsupported(E, "aggregate binary expression");
671}
672
673void AggExprEmitter::VisitPointerToDataMemberBinaryOperator(
674 const BinaryOperator *E) {
675 LValue LV = CGF.EmitPointerToDataMemberBinaryExpr(E);
676 EmitFinalDestCopy(E, LV);
Chris Lattner835635d2007-08-21 04:59:27 +0000677}
678
Chris Lattnercd9fb242007-08-21 04:43:17 +0000679void AggExprEmitter::VisitBinAssign(const BinaryOperator *E) {
Eli Friedmanf54c4e52008-02-11 01:09:17 +0000680 // For an assignment to work, the value on the right has
681 // to be compatible with the value on the left.
Eli Friedman2a695472009-05-28 23:04:00 +0000682 assert(CGF.getContext().hasSameUnqualifiedType(E->getLHS()->getType(),
683 E->getRHS()->getType())
Eli Friedmanf54c4e52008-02-11 01:09:17 +0000684 && "Invalid assignment");
John McCalld0a30012010-12-06 06:10:02 +0000685
Chad Rosier615ed1a2012-03-29 17:37:10 +0000686 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E->getLHS()))
Fariborz Jahanian52a8cca2011-04-29 22:11:28 +0000687 if (const VarDecl *VD = dyn_cast<VarDecl>(DRE->getDecl()))
Fariborz Jahanian99514b92011-04-29 21:53:21 +0000688 if (VD->hasAttr<BlocksAttr>() &&
689 E->getRHS()->HasSideEffects(CGF.getContext())) {
690 // When __block variable on LHS, the RHS must be evaluated first
691 // as it may change the 'forwarding' field via call to Block_copy.
692 LValue RHS = CGF.EmitLValue(E->getRHS());
693 LValue LHS = CGF.EmitLValue(E->getLHS());
John McCall8d6fc952011-08-25 20:40:09 +0000694 Dest = AggValueSlot::forLValue(LHS, AggValueSlot::IsDestructed,
John McCall46759f42011-08-26 07:31:35 +0000695 needsGC(E->getLHS()->getType()),
Chad Rosier615ed1a2012-03-29 17:37:10 +0000696 AggValueSlot::IsAliased);
Fariborz Jahanian99514b92011-04-29 21:53:21 +0000697 EmitFinalDestCopy(E, RHS, true);
698 return;
699 }
Chad Rosier615ed1a2012-03-29 17:37:10 +0000700
Chris Lattner4758b402007-08-21 04:25:47 +0000701 LValue LHS = CGF.EmitLValue(E->getLHS());
Chris Lattner6278e6a2007-08-11 00:04:45 +0000702
John McCallc109a252011-11-07 03:59:57 +0000703 // Codegen the RHS so that it stores directly into the LHS.
704 AggValueSlot LHSSlot =
705 AggValueSlot::forLValue(LHS, AggValueSlot::IsDestructed,
706 needsGC(E->getLHS()->getType()),
Chad Rosier615ed1a2012-03-29 17:37:10 +0000707 AggValueSlot::IsAliased);
John McCallc109a252011-11-07 03:59:57 +0000708 CGF.EmitAggExpr(E->getRHS(), LHSSlot, false);
709 EmitFinalDestCopy(E, LHS, true);
Chris Lattner6278e6a2007-08-11 00:04:45 +0000710}
711
John McCallc07a0c72011-02-17 10:25:35 +0000712void AggExprEmitter::
713VisitAbstractConditionalOperator(const AbstractConditionalOperator *E) {
Daniel Dunbara612e792008-11-13 01:38:36 +0000714 llvm::BasicBlock *LHSBlock = CGF.createBasicBlock("cond.true");
715 llvm::BasicBlock *RHSBlock = CGF.createBasicBlock("cond.false");
716 llvm::BasicBlock *ContBlock = CGF.createBasicBlock("cond.end");
Mike Stump11289f42009-09-09 15:08:12 +0000717
John McCallc07a0c72011-02-17 10:25:35 +0000718 // Bind the common expression if necessary.
Eli Friedman48fd89a2012-01-06 20:42:20 +0000719 CodeGenFunction::OpaqueValueMapping binding(CGF, E);
John McCallc07a0c72011-02-17 10:25:35 +0000720
John McCallce1de612011-01-26 04:00:11 +0000721 CodeGenFunction::ConditionalEvaluation eval(CGF);
Eli Friedmanb8841af2009-12-25 06:17:05 +0000722 CGF.EmitBranchOnBoolExpr(E->getCond(), LHSBlock, RHSBlock);
Mike Stump11289f42009-09-09 15:08:12 +0000723
John McCall5b26f652010-11-17 00:07:33 +0000724 // Save whether the destination's lifetime is externally managed.
John McCallcac93852011-08-26 08:02:37 +0000725 bool isExternallyDestructed = Dest.isExternallyDestructed();
Chris Lattner6278e6a2007-08-11 00:04:45 +0000726
John McCallce1de612011-01-26 04:00:11 +0000727 eval.begin(CGF);
728 CGF.EmitBlock(LHSBlock);
John McCallc07a0c72011-02-17 10:25:35 +0000729 Visit(E->getTrueExpr());
John McCallce1de612011-01-26 04:00:11 +0000730 eval.end(CGF);
Mike Stump11289f42009-09-09 15:08:12 +0000731
John McCallce1de612011-01-26 04:00:11 +0000732 assert(CGF.HaveInsertPoint() && "expression evaluation ended with no IP!");
733 CGF.Builder.CreateBr(ContBlock);
Mike Stump11289f42009-09-09 15:08:12 +0000734
John McCall5b26f652010-11-17 00:07:33 +0000735 // If the result of an agg expression is unused, then the emission
736 // of the LHS might need to create a destination slot. That's fine
737 // with us, and we can safely emit the RHS into the same slot, but
John McCallcac93852011-08-26 08:02:37 +0000738 // we shouldn't claim that it's already being destructed.
739 Dest.setExternallyDestructed(isExternallyDestructed);
John McCall5b26f652010-11-17 00:07:33 +0000740
John McCallce1de612011-01-26 04:00:11 +0000741 eval.begin(CGF);
742 CGF.EmitBlock(RHSBlock);
John McCallc07a0c72011-02-17 10:25:35 +0000743 Visit(E->getFalseExpr());
John McCallce1de612011-01-26 04:00:11 +0000744 eval.end(CGF);
Mike Stump11289f42009-09-09 15:08:12 +0000745
Chris Lattner4758b402007-08-21 04:25:47 +0000746 CGF.EmitBlock(ContBlock);
Chris Lattner6278e6a2007-08-11 00:04:45 +0000747}
Chris Lattner835635d2007-08-21 04:59:27 +0000748
Anders Carlsson5b2095c2009-07-08 18:33:14 +0000749void AggExprEmitter::VisitChooseExpr(const ChooseExpr *CE) {
750 Visit(CE->getChosenSubExpr(CGF.getContext()));
751}
752
Eli Friedman21911e82008-05-27 15:51:49 +0000753void AggExprEmitter::VisitVAArgExpr(VAArgExpr *VE) {
Daniel Dunbare9fcadd22009-02-11 22:25:55 +0000754 llvm::Value *ArgValue = CGF.EmitVAListRef(VE->getSubExpr());
Anders Carlsson13abd7e2008-11-04 05:30:00 +0000755 llvm::Value *ArgPtr = CGF.EmitVAArg(ArgValue, VE->getType());
756
Sebastian Redl020cddc2009-01-09 21:09:38 +0000757 if (!ArgPtr) {
Anders Carlsson13abd7e2008-11-04 05:30:00 +0000758 CGF.ErrorUnsupported(VE, "aggregate va_arg expression");
Sebastian Redl020cddc2009-01-09 21:09:38 +0000759 return;
760 }
761
Daniel Dunbar2e442a02010-08-21 03:15:20 +0000762 EmitFinalDestCopy(VE, CGF.MakeAddrLValue(ArgPtr, VE->getType()));
Eli Friedman21911e82008-05-27 15:51:49 +0000763}
764
Anders Carlsson3be22e22009-05-30 23:23:33 +0000765void AggExprEmitter::VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E) {
John McCall7a626f62010-09-15 10:14:12 +0000766 // Ensure that we have a slot, but if we already do, remember
John McCallcac93852011-08-26 08:02:37 +0000767 // whether it was externally destructed.
768 bool wasExternallyDestructed = Dest.isExternallyDestructed();
John McCall7a626f62010-09-15 10:14:12 +0000769 Dest = EnsureSlot(E->getType());
John McCallcac93852011-08-26 08:02:37 +0000770
771 // We're going to push a destructor if there isn't already one.
772 Dest.setExternallyDestructed();
Mike Stump11289f42009-09-09 15:08:12 +0000773
John McCall7a626f62010-09-15 10:14:12 +0000774 Visit(E->getSubExpr());
Anders Carlsson3be22e22009-05-30 23:23:33 +0000775
John McCallcac93852011-08-26 08:02:37 +0000776 // Push that destructor we promised.
777 if (!wasExternallyDestructed)
Peter Collingbourne702b2842011-11-27 22:09:22 +0000778 CGF.EmitCXXTemporary(E->getTemporary(), E->getType(), Dest.getAddr());
Anders Carlsson3be22e22009-05-30 23:23:33 +0000779}
780
Anders Carlssonb7f8f592009-04-17 00:06:03 +0000781void
Anders Carlsson1619a5042009-05-03 17:47:16 +0000782AggExprEmitter::VisitCXXConstructExpr(const CXXConstructExpr *E) {
John McCall7a626f62010-09-15 10:14:12 +0000783 AggValueSlot Slot = EnsureSlot(E->getType());
784 CGF.EmitCXXConstructExpr(E, Slot);
Anders Carlssonc82b86d2009-05-19 04:48:36 +0000785}
786
Eli Friedmanc370a7e2012-02-09 03:32:31 +0000787void
788AggExprEmitter::VisitLambdaExpr(LambdaExpr *E) {
789 AggValueSlot Slot = EnsureSlot(E->getType());
790 CGF.EmitLambdaExpr(E, Slot);
791}
792
John McCall5d413782010-12-06 08:20:24 +0000793void AggExprEmitter::VisitExprWithCleanups(ExprWithCleanups *E) {
John McCall08ef4662011-11-10 08:15:53 +0000794 CGF.enterFullExpression(E);
795 CodeGenFunction::RunCleanupsScope cleanups(CGF);
796 Visit(E->getSubExpr());
Anders Carlssonb7f8f592009-04-17 00:06:03 +0000797}
798
Douglas Gregor747eb782010-07-08 06:14:04 +0000799void AggExprEmitter::VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *E) {
John McCall7a626f62010-09-15 10:14:12 +0000800 QualType T = E->getType();
801 AggValueSlot Slot = EnsureSlot(T);
John McCall1553b192011-06-16 04:16:24 +0000802 EmitNullInitializationToLValue(CGF.MakeAddrLValue(Slot.getAddr(), T));
Anders Carlsson18ada982009-12-16 06:57:54 +0000803}
804
805void AggExprEmitter::VisitImplicitValueInitExpr(ImplicitValueInitExpr *E) {
John McCall7a626f62010-09-15 10:14:12 +0000806 QualType T = E->getType();
807 AggValueSlot Slot = EnsureSlot(T);
John McCall1553b192011-06-16 04:16:24 +0000808 EmitNullInitializationToLValue(CGF.MakeAddrLValue(Slot.getAddr(), T));
Nuno Lopesff3507b2009-10-18 15:18:11 +0000809}
810
Chris Lattner27a36312010-12-02 07:07:26 +0000811/// isSimpleZero - If emitting this value will obviously just cause a store of
812/// zero to memory, return true. This can return false if uncertain, so it just
813/// handles simple cases.
814static bool isSimpleZero(const Expr *E, CodeGenFunction &CGF) {
Peter Collingbourne91147592011-04-15 00:35:48 +0000815 E = E->IgnoreParens();
816
Chris Lattner27a36312010-12-02 07:07:26 +0000817 // 0
818 if (const IntegerLiteral *IL = dyn_cast<IntegerLiteral>(E))
819 return IL->getValue() == 0;
820 // +0.0
821 if (const FloatingLiteral *FL = dyn_cast<FloatingLiteral>(E))
822 return FL->getValue().isPosZero();
823 // int()
824 if ((isa<ImplicitValueInitExpr>(E) || isa<CXXScalarValueInitExpr>(E)) &&
825 CGF.getTypes().isZeroInitializable(E->getType()))
826 return true;
827 // (int*)0 - Null pointer expressions.
828 if (const CastExpr *ICE = dyn_cast<CastExpr>(E))
829 return ICE->getCastKind() == CK_NullToPointer;
830 // '\0'
831 if (const CharacterLiteral *CL = dyn_cast<CharacterLiteral>(E))
832 return CL->getValue() == 0;
833
834 // Otherwise, hard case: conservatively return false.
835 return false;
836}
837
838
Anders Carlssonb2473502010-02-03 17:33:16 +0000839void
Chad Rosier615ed1a2012-03-29 17:37:10 +0000840AggExprEmitter::EmitInitializationToLValue(Expr* E, LValue LV) {
John McCall1553b192011-06-16 04:16:24 +0000841 QualType type = LV.getType();
Mike Stumpdf0fe272009-05-29 15:46:01 +0000842 // FIXME: Ignore result?
Chris Lattner579a05d2008-04-04 18:42:16 +0000843 // FIXME: Are initializers affected by volatile?
Chris Lattner27a36312010-12-02 07:07:26 +0000844 if (Dest.isZeroed() && isSimpleZero(E, CGF)) {
845 // Storing "i32 0" to a zero'd memory location is a noop.
846 } else if (isa<ImplicitValueInitExpr>(E)) {
John McCall1553b192011-06-16 04:16:24 +0000847 EmitNullInitializationToLValue(LV);
848 } else if (type->isReferenceType()) {
Anders Carlsson04775f82010-06-26 16:35:32 +0000849 RValue RV = CGF.EmitReferenceBindingToExpr(E, /*InitializedDecl=*/0);
John McCall55e1fbc2011-06-25 02:11:03 +0000850 CGF.EmitStoreThroughLValue(RV, LV);
John McCall1553b192011-06-16 04:16:24 +0000851 } else if (type->isAnyComplexType()) {
Douglas Gregor0202cb42009-01-29 17:44:32 +0000852 CGF.EmitComplexExprIntoAddr(E, LV.getAddress(), false);
John McCall1553b192011-06-16 04:16:24 +0000853 } else if (CGF.hasAggregateLLVMType(type)) {
John McCall8d6fc952011-08-25 20:40:09 +0000854 CGF.EmitAggExpr(E, AggValueSlot::forLValue(LV,
855 AggValueSlot::IsDestructed,
856 AggValueSlot::DoesNotNeedGCBarriers,
John McCalla5efa732011-08-25 23:04:34 +0000857 AggValueSlot::IsNotAliased,
John McCall1553b192011-06-16 04:16:24 +0000858 Dest.isZeroed()));
John McCall31168b02011-06-15 23:02:42 +0000859 } else if (LV.isSimple()) {
John McCall1553b192011-06-16 04:16:24 +0000860 CGF.EmitScalarInit(E, /*D=*/0, LV, /*Captured=*/false);
Eli Friedman6e313212008-05-12 15:06:05 +0000861 } else {
John McCall55e1fbc2011-06-25 02:11:03 +0000862 CGF.EmitStoreThroughLValue(RValue::get(CGF.EmitScalarExpr(E)), LV);
Chris Lattner579a05d2008-04-04 18:42:16 +0000863 }
Chris Lattner579a05d2008-04-04 18:42:16 +0000864}
865
John McCall1553b192011-06-16 04:16:24 +0000866void AggExprEmitter::EmitNullInitializationToLValue(LValue lv) {
867 QualType type = lv.getType();
868
Chris Lattner27a36312010-12-02 07:07:26 +0000869 // If the destination slot is already zeroed out before the aggregate is
870 // copied into it, we don't have to emit any zeros here.
John McCall1553b192011-06-16 04:16:24 +0000871 if (Dest.isZeroed() && CGF.getTypes().isZeroInitializable(type))
Chris Lattner27a36312010-12-02 07:07:26 +0000872 return;
873
John McCall1553b192011-06-16 04:16:24 +0000874 if (!CGF.hasAggregateLLVMType(type)) {
Eli Friedman91d5bb12012-02-22 05:38:59 +0000875 // For non-aggregates, we can store zero.
John McCall1553b192011-06-16 04:16:24 +0000876 llvm::Value *null = llvm::Constant::getNullValue(CGF.ConvertType(type));
Eli Friedman91d5bb12012-02-22 05:38:59 +0000877 // Note that the following is not equivalent to
878 // EmitStoreThroughBitfieldLValue for ARC types.
Eli Friedmancb3785e2012-02-24 23:53:49 +0000879 if (lv.isBitField()) {
Eli Friedman91d5bb12012-02-22 05:38:59 +0000880 CGF.EmitStoreThroughBitfieldLValue(RValue::get(null), lv);
Eli Friedmancb3785e2012-02-24 23:53:49 +0000881 } else {
882 assert(lv.isSimple());
883 CGF.EmitStoreOfScalar(null, lv, /* isInitialization */ true);
884 }
Lauro Ramos Venancioe2162c62008-02-19 19:27:31 +0000885 } else {
Chris Lattner579a05d2008-04-04 18:42:16 +0000886 // There's a potential optimization opportunity in combining
887 // memsets; that would be easy for arrays, but relatively
888 // difficult for structures with the current code.
John McCall1553b192011-06-16 04:16:24 +0000889 CGF.EmitNullInitialization(lv.getAddress(), lv.getType());
Chris Lattner579a05d2008-04-04 18:42:16 +0000890 }
891}
892
Chris Lattner579a05d2008-04-04 18:42:16 +0000893void AggExprEmitter::VisitInitListExpr(InitListExpr *E) {
Eli Friedmanf5d08c92008-12-02 01:17:45 +0000894#if 0
Eli Friedman6d11ec82009-12-04 01:30:56 +0000895 // FIXME: Assess perf here? Figure out what cases are worth optimizing here
896 // (Length of globals? Chunks of zeroed-out space?).
Eli Friedmanf5d08c92008-12-02 01:17:45 +0000897 //
Mike Stump18bb9282009-05-16 07:57:57 +0000898 // If we can, prefer a copy from a global; this is a lot less code for long
899 // globals, and it's easier for the current optimizers to analyze.
Eli Friedman6d11ec82009-12-04 01:30:56 +0000900 if (llvm::Constant* C = CGF.CGM.EmitConstantExpr(E, E->getType(), &CGF)) {
Eli Friedmanc59bb482008-11-30 02:11:09 +0000901 llvm::GlobalVariable* GV =
Eli Friedman6d11ec82009-12-04 01:30:56 +0000902 new llvm::GlobalVariable(CGF.CGM.getModule(), C->getType(), true,
903 llvm::GlobalValue::InternalLinkage, C, "");
Daniel Dunbar2e442a02010-08-21 03:15:20 +0000904 EmitFinalDestCopy(E, CGF.MakeAddrLValue(GV, E->getType()));
Eli Friedmanc59bb482008-11-30 02:11:09 +0000905 return;
906 }
Eli Friedmanf5d08c92008-12-02 01:17:45 +0000907#endif
Chris Lattnerf53c0962010-09-06 00:11:41 +0000908 if (E->hadArrayRangeDesignator())
Douglas Gregorbf7207a2009-01-29 19:42:23 +0000909 CGF.ErrorUnsupported(E, "GNU array range designator extension");
Douglas Gregorbf7207a2009-01-29 19:42:23 +0000910
Sebastian Redlc83ed822012-02-17 08:42:25 +0000911 if (E->initializesStdInitializerList()) {
Sebastian Redl8eb351d2012-02-19 12:28:02 +0000912 EmitStdInitializerList(Dest.getAddr(), E);
Sebastian Redlc83ed822012-02-17 08:42:25 +0000913 return;
914 }
915
Eli Friedman7f1ff602012-04-16 03:54:45 +0000916 AggValueSlot Dest = EnsureSlot(E->getType());
917 LValue DestLV = CGF.MakeAddrLValue(Dest.getAddr(), E->getType(),
918 Dest.getAlignment());
John McCall7a626f62010-09-15 10:14:12 +0000919
Chris Lattner579a05d2008-04-04 18:42:16 +0000920 // Handle initialization of an array.
921 if (E->getType()->isArrayType()) {
Richard Smith9ec1e482012-04-15 02:50:59 +0000922 if (E->isStringLiteralInit())
923 return Visit(E->getInit(0));
Eli Friedmanf23b6fa2008-05-19 17:51:16 +0000924
Eli Friedman91f5ae52012-02-23 02:25:10 +0000925 QualType elementType =
926 CGF.getContext().getAsArrayType(E->getType())->getElementType();
Argyrios Kyrtzidise07425a52011-04-28 18:53:58 +0000927
Sebastian Redlc83ed822012-02-17 08:42:25 +0000928 llvm::PointerType *APType =
Eli Friedman7f1ff602012-04-16 03:54:45 +0000929 cast<llvm::PointerType>(Dest.getAddr()->getType());
Sebastian Redlc83ed822012-02-17 08:42:25 +0000930 llvm::ArrayType *AType =
931 cast<llvm::ArrayType>(APType->getElementType());
Chris Lattner27a36312010-12-02 07:07:26 +0000932
Eli Friedman7f1ff602012-04-16 03:54:45 +0000933 EmitArrayInit(Dest.getAddr(), AType, elementType, E);
Chris Lattner579a05d2008-04-04 18:42:16 +0000934 return;
935 }
Mike Stump11289f42009-09-09 15:08:12 +0000936
Chris Lattner579a05d2008-04-04 18:42:16 +0000937 assert(E->getType()->isRecordType() && "Only support structs/unions here!");
Mike Stump11289f42009-09-09 15:08:12 +0000938
Chris Lattner579a05d2008-04-04 18:42:16 +0000939 // Do struct initialization; this code just sets each individual member
940 // to the approprate value. This makes bitfield support automatic;
941 // the disadvantage is that the generated code is more difficult for
942 // the optimizer, especially with bitfields.
943 unsigned NumInitElements = E->getNumInits();
John McCall3b935d32011-07-11 19:35:02 +0000944 RecordDecl *record = E->getType()->castAs<RecordType>()->getDecl();
Chris Lattner52bcf962010-09-06 00:13:11 +0000945
John McCall3b935d32011-07-11 19:35:02 +0000946 if (record->isUnion()) {
Douglas Gregor51695702009-01-29 16:53:55 +0000947 // Only initialize one field of a union. The field itself is
948 // specified by the initializer list.
949 if (!E->getInitializedFieldInUnion()) {
950 // Empty union; we have nothing to do.
Mike Stump11289f42009-09-09 15:08:12 +0000951
Douglas Gregor51695702009-01-29 16:53:55 +0000952#ifndef NDEBUG
953 // Make sure that it's really an empty and not a failure of
954 // semantic analysis.
John McCall3b935d32011-07-11 19:35:02 +0000955 for (RecordDecl::field_iterator Field = record->field_begin(),
956 FieldEnd = record->field_end();
Douglas Gregor51695702009-01-29 16:53:55 +0000957 Field != FieldEnd; ++Field)
958 assert(Field->isUnnamedBitfield() && "Only unnamed bitfields allowed");
959#endif
960 return;
961 }
962
963 // FIXME: volatility
964 FieldDecl *Field = E->getInitializedFieldInUnion();
Douglas Gregor51695702009-01-29 16:53:55 +0000965
Eli Friedman7f1ff602012-04-16 03:54:45 +0000966 LValue FieldLoc = CGF.EmitLValueForFieldInitialization(DestLV, Field);
Douglas Gregor51695702009-01-29 16:53:55 +0000967 if (NumInitElements) {
968 // Store the initializer into the field
Chad Rosier615ed1a2012-03-29 17:37:10 +0000969 EmitInitializationToLValue(E->getInit(0), FieldLoc);
Douglas Gregor51695702009-01-29 16:53:55 +0000970 } else {
Chris Lattner27a36312010-12-02 07:07:26 +0000971 // Default-initialize to null.
John McCall1553b192011-06-16 04:16:24 +0000972 EmitNullInitializationToLValue(FieldLoc);
Douglas Gregor51695702009-01-29 16:53:55 +0000973 }
974
975 return;
976 }
Mike Stump11289f42009-09-09 15:08:12 +0000977
John McCall3b935d32011-07-11 19:35:02 +0000978 // We'll need to enter cleanup scopes in case any of the member
979 // initializers throw an exception.
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000980 SmallVector<EHScopeStack::stable_iterator, 16> cleanups;
John McCallf4beacd2011-11-10 10:43:54 +0000981 llvm::Instruction *cleanupDominator = 0;
John McCall3b935d32011-07-11 19:35:02 +0000982
Chris Lattner579a05d2008-04-04 18:42:16 +0000983 // Here we iterate over the fields; this makes it simpler to both
984 // default-initialize fields and skip over unnamed fields.
John McCall3b935d32011-07-11 19:35:02 +0000985 unsigned curInitIndex = 0;
986 for (RecordDecl::field_iterator field = record->field_begin(),
987 fieldEnd = record->field_end();
988 field != fieldEnd; ++field) {
989 // We're done once we hit the flexible array member.
990 if (field->getType()->isIncompleteArrayType())
Douglas Gregor91f84212008-12-11 16:49:14 +0000991 break;
992
John McCall3b935d32011-07-11 19:35:02 +0000993 // Always skip anonymous bitfields.
994 if (field->isUnnamedBitfield())
Chris Lattner579a05d2008-04-04 18:42:16 +0000995 continue;
Douglas Gregor17bd0942009-01-28 23:36:17 +0000996
John McCall3b935d32011-07-11 19:35:02 +0000997 // We're done if we reach the end of the explicit initializers, we
998 // have a zeroed object, and the rest of the fields are
999 // zero-initializable.
1000 if (curInitIndex == NumInitElements && Dest.isZeroed() &&
Chris Lattner27a36312010-12-02 07:07:26 +00001001 CGF.getTypes().isZeroInitializable(E->getType()))
1002 break;
1003
Eli Friedman7f1ff602012-04-16 03:54:45 +00001004
1005 LValue LV = CGF.EmitLValueForFieldInitialization(DestLV, *field);
Fariborz Jahanian7c1baf42009-05-27 19:54:11 +00001006 // We never generate write-barries for initialized fields.
John McCall3b935d32011-07-11 19:35:02 +00001007 LV.setNonGC(true);
Chris Lattner27a36312010-12-02 07:07:26 +00001008
John McCall3b935d32011-07-11 19:35:02 +00001009 if (curInitIndex < NumInitElements) {
Chris Lattnere18aaf22010-03-08 21:08:07 +00001010 // Store the initializer into the field.
Chad Rosier615ed1a2012-03-29 17:37:10 +00001011 EmitInitializationToLValue(E->getInit(curInitIndex++), LV);
Chris Lattner579a05d2008-04-04 18:42:16 +00001012 } else {
1013 // We're out of initalizers; default-initialize to null
John McCall3b935d32011-07-11 19:35:02 +00001014 EmitNullInitializationToLValue(LV);
1015 }
1016
1017 // Push a destructor if necessary.
1018 // FIXME: if we have an array of structures, all explicitly
1019 // initialized, we can end up pushing a linear number of cleanups.
1020 bool pushedCleanup = false;
1021 if (QualType::DestructionKind dtorKind
1022 = field->getType().isDestructedType()) {
1023 assert(LV.isSimple());
1024 if (CGF.needsEHCleanup(dtorKind)) {
John McCallf4beacd2011-11-10 10:43:54 +00001025 if (!cleanupDominator)
1026 cleanupDominator = CGF.Builder.CreateUnreachable(); // placeholder
1027
John McCall3b935d32011-07-11 19:35:02 +00001028 CGF.pushDestroy(EHCleanup, LV.getAddress(), field->getType(),
1029 CGF.getDestroyer(dtorKind), false);
1030 cleanups.push_back(CGF.EHStack.stable_begin());
1031 pushedCleanup = true;
1032 }
Chris Lattner579a05d2008-04-04 18:42:16 +00001033 }
Chris Lattner27a36312010-12-02 07:07:26 +00001034
1035 // If the GEP didn't get used because of a dead zero init or something
1036 // else, clean it up for -O0 builds and general tidiness.
John McCall3b935d32011-07-11 19:35:02 +00001037 if (!pushedCleanup && LV.isSimple())
Chris Lattner27a36312010-12-02 07:07:26 +00001038 if (llvm::GetElementPtrInst *GEP =
John McCall3b935d32011-07-11 19:35:02 +00001039 dyn_cast<llvm::GetElementPtrInst>(LV.getAddress()))
Chris Lattner27a36312010-12-02 07:07:26 +00001040 if (GEP->use_empty())
1041 GEP->eraseFromParent();
Lauro Ramos Venancioe2162c62008-02-19 19:27:31 +00001042 }
John McCall3b935d32011-07-11 19:35:02 +00001043
1044 // Deactivate all the partial cleanups in reverse order, which
1045 // generally means popping them.
1046 for (unsigned i = cleanups.size(); i != 0; --i)
John McCallf4beacd2011-11-10 10:43:54 +00001047 CGF.DeactivateCleanupBlock(cleanups[i-1], cleanupDominator);
1048
1049 // Destroy the placeholder if we made one.
1050 if (cleanupDominator)
1051 cleanupDominator->eraseFromParent();
Devang Patel87174172007-10-26 17:44:44 +00001052}
1053
Chris Lattner835635d2007-08-21 04:59:27 +00001054//===----------------------------------------------------------------------===//
1055// Entry Points into this File
1056//===----------------------------------------------------------------------===//
1057
Chris Lattner27a36312010-12-02 07:07:26 +00001058/// GetNumNonZeroBytesInInit - Get an approximate count of the number of
1059/// non-zero bytes that will be stored when outputting the initializer for the
1060/// specified initializer expression.
Ken Dyckdf94cb72011-04-24 17:17:56 +00001061static CharUnits GetNumNonZeroBytesInInit(const Expr *E, CodeGenFunction &CGF) {
Peter Collingbourne91147592011-04-15 00:35:48 +00001062 E = E->IgnoreParens();
Chris Lattner27a36312010-12-02 07:07:26 +00001063
1064 // 0 and 0.0 won't require any non-zero stores!
Ken Dyckdf94cb72011-04-24 17:17:56 +00001065 if (isSimpleZero(E, CGF)) return CharUnits::Zero();
Chris Lattner27a36312010-12-02 07:07:26 +00001066
1067 // If this is an initlist expr, sum up the size of sizes of the (present)
1068 // elements. If this is something weird, assume the whole thing is non-zero.
1069 const InitListExpr *ILE = dyn_cast<InitListExpr>(E);
1070 if (ILE == 0 || !CGF.getTypes().isZeroInitializable(ILE->getType()))
Ken Dyckdf94cb72011-04-24 17:17:56 +00001071 return CGF.getContext().getTypeSizeInChars(E->getType());
Chris Lattner27a36312010-12-02 07:07:26 +00001072
Chris Lattnerc5cc2fb2010-12-02 18:29:00 +00001073 // InitListExprs for structs have to be handled carefully. If there are
1074 // reference members, we need to consider the size of the reference, not the
1075 // referencee. InitListExprs for unions and arrays can't have references.
Chris Lattner5cd84752010-12-02 22:52:04 +00001076 if (const RecordType *RT = E->getType()->getAs<RecordType>()) {
1077 if (!RT->isUnionType()) {
1078 RecordDecl *SD = E->getType()->getAs<RecordType>()->getDecl();
Ken Dyckdf94cb72011-04-24 17:17:56 +00001079 CharUnits NumNonZeroBytes = CharUnits::Zero();
Chris Lattner5cd84752010-12-02 22:52:04 +00001080
1081 unsigned ILEElement = 0;
1082 for (RecordDecl::field_iterator Field = SD->field_begin(),
1083 FieldEnd = SD->field_end(); Field != FieldEnd; ++Field) {
1084 // We're done once we hit the flexible array member or run out of
1085 // InitListExpr elements.
1086 if (Field->getType()->isIncompleteArrayType() ||
1087 ILEElement == ILE->getNumInits())
1088 break;
1089 if (Field->isUnnamedBitfield())
1090 continue;
Chris Lattnerc5cc2fb2010-12-02 18:29:00 +00001091
Chris Lattner5cd84752010-12-02 22:52:04 +00001092 const Expr *E = ILE->getInit(ILEElement++);
1093
1094 // Reference values are always non-null and have the width of a pointer.
1095 if (Field->getType()->isReferenceType())
Ken Dyckdf94cb72011-04-24 17:17:56 +00001096 NumNonZeroBytes += CGF.getContext().toCharUnitsFromBits(
Douglas Gregore8bbc122011-09-02 00:18:52 +00001097 CGF.getContext().getTargetInfo().getPointerWidth(0));
Chris Lattner5cd84752010-12-02 22:52:04 +00001098 else
1099 NumNonZeroBytes += GetNumNonZeroBytesInInit(E, CGF);
1100 }
Chris Lattnerc5cc2fb2010-12-02 18:29:00 +00001101
Chris Lattner5cd84752010-12-02 22:52:04 +00001102 return NumNonZeroBytes;
Chris Lattnerc5cc2fb2010-12-02 18:29:00 +00001103 }
Chris Lattnerc5cc2fb2010-12-02 18:29:00 +00001104 }
1105
1106
Ken Dyckdf94cb72011-04-24 17:17:56 +00001107 CharUnits NumNonZeroBytes = CharUnits::Zero();
Chris Lattner27a36312010-12-02 07:07:26 +00001108 for (unsigned i = 0, e = ILE->getNumInits(); i != e; ++i)
1109 NumNonZeroBytes += GetNumNonZeroBytesInInit(ILE->getInit(i), CGF);
1110 return NumNonZeroBytes;
1111}
1112
1113/// CheckAggExprForMemSetUse - If the initializer is large and has a lot of
1114/// zeros in it, emit a memset and avoid storing the individual zeros.
1115///
1116static void CheckAggExprForMemSetUse(AggValueSlot &Slot, const Expr *E,
1117 CodeGenFunction &CGF) {
1118 // If the slot is already known to be zeroed, nothing to do. Don't mess with
1119 // volatile stores.
1120 if (Slot.isZeroed() || Slot.isVolatile() || Slot.getAddr() == 0) return;
Argyrios Kyrtzidis03535262011-04-28 22:57:55 +00001121
1122 // C++ objects with a user-declared constructor don't need zero'ing.
David Blaikiebbafb8a2012-03-11 07:00:24 +00001123 if (CGF.getContext().getLangOpts().CPlusPlus)
Argyrios Kyrtzidis03535262011-04-28 22:57:55 +00001124 if (const RecordType *RT = CGF.getContext()
1125 .getBaseElementType(E->getType())->getAs<RecordType>()) {
1126 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
1127 if (RD->hasUserDeclaredConstructor())
1128 return;
1129 }
1130
Chris Lattner27a36312010-12-02 07:07:26 +00001131 // If the type is 16-bytes or smaller, prefer individual stores over memset.
Ken Dyck239a3352011-04-24 17:25:32 +00001132 std::pair<CharUnits, CharUnits> TypeInfo =
1133 CGF.getContext().getTypeInfoInChars(E->getType());
1134 if (TypeInfo.first <= CharUnits::fromQuantity(16))
Chris Lattner27a36312010-12-02 07:07:26 +00001135 return;
1136
1137 // Check to see if over 3/4 of the initializer are known to be zero. If so,
1138 // we prefer to emit memset + individual stores for the rest.
Ken Dyck239a3352011-04-24 17:25:32 +00001139 CharUnits NumNonZeroBytes = GetNumNonZeroBytesInInit(E, CGF);
1140 if (NumNonZeroBytes*4 > TypeInfo.first)
Chris Lattner27a36312010-12-02 07:07:26 +00001141 return;
1142
1143 // Okay, it seems like a good idea to use an initial memset, emit the call.
Ken Dyck239a3352011-04-24 17:25:32 +00001144 llvm::Constant *SizeVal = CGF.Builder.getInt64(TypeInfo.first.getQuantity());
1145 CharUnits Align = TypeInfo.second;
Chris Lattner27a36312010-12-02 07:07:26 +00001146
1147 llvm::Value *Loc = Slot.getAddr();
Chris Lattner27a36312010-12-02 07:07:26 +00001148
Chris Lattnerece04092012-02-07 00:39:47 +00001149 Loc = CGF.Builder.CreateBitCast(Loc, CGF.Int8PtrTy);
Ken Dyck239a3352011-04-24 17:25:32 +00001150 CGF.Builder.CreateMemSet(Loc, CGF.Builder.getInt8(0), SizeVal,
1151 Align.getQuantity(), false);
Chris Lattner27a36312010-12-02 07:07:26 +00001152
1153 // Tell the AggExprEmitter that the slot is known zero.
1154 Slot.setZeroed();
1155}
1156
1157
1158
1159
Mike Stump25306ca2009-05-26 18:57:45 +00001160/// EmitAggExpr - Emit the computation of the specified expression of aggregate
1161/// type. The result is computed into DestPtr. Note that if DestPtr is null,
1162/// the value of the aggregate expression is not needed. If VolatileDest is
1163/// true, DestPtr cannot be 0.
John McCall7a626f62010-09-15 10:14:12 +00001164///
1165/// \param IsInitializer - true if this evaluation is initializing an
1166/// object whose lifetime is already being managed.
John McCall7a626f62010-09-15 10:14:12 +00001167void CodeGenFunction::EmitAggExpr(const Expr *E, AggValueSlot Slot,
Fariborz Jahanianb60e70f2010-09-16 00:20:07 +00001168 bool IgnoreResult) {
Chris Lattner835635d2007-08-21 04:59:27 +00001169 assert(E && hasAggregateLLVMType(E->getType()) &&
1170 "Invalid aggregate expression to emit");
Chris Lattner27a36312010-12-02 07:07:26 +00001171 assert((Slot.getAddr() != 0 || Slot.isIgnored()) &&
1172 "slot has bits but no address");
Mike Stump11289f42009-09-09 15:08:12 +00001173
Chris Lattner27a36312010-12-02 07:07:26 +00001174 // Optimize the slot if possible.
1175 CheckAggExprForMemSetUse(Slot, E, *this);
1176
1177 AggExprEmitter(*this, Slot, IgnoreResult).Visit(const_cast<Expr*>(E));
Chris Lattner835635d2007-08-21 04:59:27 +00001178}
Daniel Dunbar0bc8e862008-09-09 20:49:46 +00001179
Daniel Dunbard0bc7b92010-02-05 19:38:31 +00001180LValue CodeGenFunction::EmitAggExprToLValue(const Expr *E) {
1181 assert(hasAggregateLLVMType(E->getType()) && "Invalid argument!");
Daniel Dunbara7566f12010-02-09 02:48:28 +00001182 llvm::Value *Temp = CreateMemTemp(E->getType());
Daniel Dunbar2e442a02010-08-21 03:15:20 +00001183 LValue LV = MakeAddrLValue(Temp, E->getType());
John McCall8d6fc952011-08-25 20:40:09 +00001184 EmitAggExpr(E, AggValueSlot::forLValue(LV, AggValueSlot::IsNotDestructed,
John McCall46759f42011-08-26 07:31:35 +00001185 AggValueSlot::DoesNotNeedGCBarriers,
Chad Rosier615ed1a2012-03-29 17:37:10 +00001186 AggValueSlot::IsNotAliased));
Daniel Dunbar2e442a02010-08-21 03:15:20 +00001187 return LV;
Daniel Dunbard0bc7b92010-02-05 19:38:31 +00001188}
1189
Chad Rosier615ed1a2012-03-29 17:37:10 +00001190void CodeGenFunction::EmitAggregateCopy(llvm::Value *DestPtr,
1191 llvm::Value *SrcPtr, QualType Ty,
1192 bool isVolatile, unsigned Alignment) {
1193 assert(!Ty->isAnyComplexType() && "Shouldn't happen for complex");
Mike Stump11289f42009-09-09 15:08:12 +00001194
David Blaikiebbafb8a2012-03-11 07:00:24 +00001195 if (getContext().getLangOpts().CPlusPlus) {
Chad Rosier615ed1a2012-03-29 17:37:10 +00001196 if (const RecordType *RT = Ty->getAs<RecordType>()) {
1197 CXXRecordDecl *Record = cast<CXXRecordDecl>(RT->getDecl());
1198 assert((Record->hasTrivialCopyConstructor() ||
1199 Record->hasTrivialCopyAssignment() ||
1200 Record->hasTrivialMoveConstructor() ||
1201 Record->hasTrivialMoveAssignment()) &&
Douglas Gregorf22101a2010-05-20 15:39:01 +00001202 "Trying to aggregate-copy a type without a trivial copy "
1203 "constructor or assignment operator");
Chad Rosier615ed1a2012-03-29 17:37:10 +00001204 // Ignore empty classes in C++.
1205 if (Record->isEmpty())
Anders Carlsson16e94af2010-05-03 01:20:20 +00001206 return;
1207 }
1208 }
1209
Chris Lattnerca05dfe2009-02-28 18:31:01 +00001210 // Aggregate assignment turns into llvm.memcpy. This is almost valid per
Chris Lattner3ef668c2009-02-28 18:18:58 +00001211 // C99 6.5.16.1p3, which states "If the value being stored in an object is
1212 // read from another object that overlaps in anyway the storage of the first
1213 // object, then the overlap shall be exact and the two objects shall have
1214 // qualified or unqualified versions of a compatible type."
1215 //
Chris Lattnerca05dfe2009-02-28 18:31:01 +00001216 // memcpy is not defined if the source and destination pointers are exactly
Chris Lattner3ef668c2009-02-28 18:18:58 +00001217 // equal, but other compilers do this optimization, and almost every memcpy
1218 // implementation handles this case safely. If there is a libc that does not
1219 // safely handle this, we can add a target hook.
Chad Rosier615ed1a2012-03-29 17:37:10 +00001220
1221 // Get size and alignment info for this aggregate.
1222 std::pair<CharUnits, CharUnits> TypeInfo =
1223 getContext().getTypeInfoInChars(Ty);
1224
1225 if (!Alignment)
1226 Alignment = TypeInfo.second.getQuantity();
1227
1228 // FIXME: Handle variable sized types.
1229
1230 // FIXME: If we have a volatile struct, the optimizer can remove what might
1231 // appear to be `extra' memory ops:
1232 //
1233 // volatile struct { int i; } a, b;
1234 //
1235 // int main() {
1236 // a = b;
1237 // a = b;
1238 // }
1239 //
1240 // we need to use a different call here. We use isVolatile to indicate when
1241 // either the source or the destination is volatile.
1242
1243 llvm::PointerType *DPT = cast<llvm::PointerType>(DestPtr->getType());
1244 llvm::Type *DBP =
1245 llvm::Type::getInt8PtrTy(getLLVMContext(), DPT->getAddressSpace());
1246 DestPtr = Builder.CreateBitCast(DestPtr, DBP);
1247
1248 llvm::PointerType *SPT = cast<llvm::PointerType>(SrcPtr->getType());
1249 llvm::Type *SBP =
1250 llvm::Type::getInt8PtrTy(getLLVMContext(), SPT->getAddressSpace());
1251 SrcPtr = Builder.CreateBitCast(SrcPtr, SBP);
1252
1253 // Don't do any of the memmove_collectable tests if GC isn't set.
1254 if (CGM.getLangOpts().getGC() == LangOptions::NonGC) {
1255 // fall through
1256 } else if (const RecordType *RecordTy = Ty->getAs<RecordType>()) {
1257 RecordDecl *Record = RecordTy->getDecl();
1258 if (Record->hasObjectMember()) {
1259 CharUnits size = TypeInfo.first;
1260 llvm::Type *SizeTy = ConvertType(getContext().getSizeType());
1261 llvm::Value *SizeVal = llvm::ConstantInt::get(SizeTy, size.getQuantity());
1262 CGM.getObjCRuntime().EmitGCMemmoveCollectable(*this, DestPtr, SrcPtr,
1263 SizeVal);
1264 return;
1265 }
1266 } else if (Ty->isArrayType()) {
1267 QualType BaseType = getContext().getBaseElementType(Ty);
1268 if (const RecordType *RecordTy = BaseType->getAs<RecordType>()) {
1269 if (RecordTy->getDecl()->hasObjectMember()) {
1270 CharUnits size = TypeInfo.first;
1271 llvm::Type *SizeTy = ConvertType(getContext().getSizeType());
1272 llvm::Value *SizeVal =
1273 llvm::ConstantInt::get(SizeTy, size.getQuantity());
1274 CGM.getObjCRuntime().EmitGCMemmoveCollectable(*this, DestPtr, SrcPtr,
1275 SizeVal);
1276 return;
1277 }
1278 }
1279 }
Fariborz Jahanian021510e2010-06-15 22:44:06 +00001280
Chad Rosier615ed1a2012-03-29 17:37:10 +00001281 Builder.CreateMemCpy(DestPtr, SrcPtr,
1282 llvm::ConstantInt::get(IntPtrTy,
1283 TypeInfo.first.getQuantity()),
1284 Alignment, isVolatile);
Daniel Dunbar0bc8e862008-09-09 20:49:46 +00001285}
Sebastian Redlc83ed822012-02-17 08:42:25 +00001286
Sebastian Redld026dc42012-02-19 16:03:09 +00001287void CodeGenFunction::MaybeEmitStdInitializerListCleanup(llvm::Value *loc,
1288 const Expr *init) {
Sebastian Redlc83ed822012-02-17 08:42:25 +00001289 const ExprWithCleanups *cleanups = dyn_cast<ExprWithCleanups>(init);
Sebastian Redld026dc42012-02-19 16:03:09 +00001290 if (cleanups)
1291 init = cleanups->getSubExpr();
Sebastian Redlc83ed822012-02-17 08:42:25 +00001292
1293 if (isa<InitListExpr>(init) &&
1294 cast<InitListExpr>(init)->initializesStdInitializerList()) {
1295 // We initialized this std::initializer_list with an initializer list.
1296 // A backing array was created. Push a cleanup for it.
Sebastian Redld026dc42012-02-19 16:03:09 +00001297 EmitStdInitializerListCleanup(loc, cast<InitListExpr>(init));
Sebastian Redlc83ed822012-02-17 08:42:25 +00001298 }
1299}
1300
Sebastian Redl8eb351d2012-02-19 12:28:02 +00001301static void EmitRecursiveStdInitializerListCleanup(CodeGenFunction &CGF,
1302 llvm::Value *arrayStart,
1303 const InitListExpr *init) {
1304 // Check if there are any recursive cleanups to do, i.e. if we have
1305 // std::initializer_list<std::initializer_list<obj>> list = {{obj()}};
1306 // then we need to destroy the inner array as well.
1307 for (unsigned i = 0, e = init->getNumInits(); i != e; ++i) {
1308 const InitListExpr *subInit = dyn_cast<InitListExpr>(init->getInit(i));
1309 if (!subInit || !subInit->initializesStdInitializerList())
1310 continue;
1311
1312 // This one needs to be destroyed. Get the address of the std::init_list.
1313 llvm::Value *offset = llvm::ConstantInt::get(CGF.SizeTy, i);
1314 llvm::Value *loc = CGF.Builder.CreateInBoundsGEP(arrayStart, offset,
1315 "std.initlist");
1316 CGF.EmitStdInitializerListCleanup(loc, subInit);
1317 }
1318}
1319
1320void CodeGenFunction::EmitStdInitializerListCleanup(llvm::Value *loc,
Sebastian Redlc83ed822012-02-17 08:42:25 +00001321 const InitListExpr *init) {
1322 ASTContext &ctx = getContext();
1323 QualType element = GetStdInitializerListElementType(init->getType());
1324 unsigned numInits = init->getNumInits();
1325 llvm::APInt size(ctx.getTypeSize(ctx.getSizeType()), numInits);
1326 QualType array =ctx.getConstantArrayType(element, size, ArrayType::Normal, 0);
1327 QualType arrayPtr = ctx.getPointerType(array);
1328 llvm::Type *arrayPtrType = ConvertType(arrayPtr);
1329
1330 // lvalue is the location of a std::initializer_list, which as its first
1331 // element has a pointer to the array we want to destroy.
Sebastian Redl8eb351d2012-02-19 12:28:02 +00001332 llvm::Value *startPointer = Builder.CreateStructGEP(loc, 0, "startPointer");
1333 llvm::Value *startAddress = Builder.CreateLoad(startPointer, "startAddress");
Sebastian Redlc83ed822012-02-17 08:42:25 +00001334
Sebastian Redl8eb351d2012-02-19 12:28:02 +00001335 ::EmitRecursiveStdInitializerListCleanup(*this, startAddress, init);
1336
1337 llvm::Value *arrayAddress =
1338 Builder.CreateBitCast(startAddress, arrayPtrType, "arrayAddress");
Sebastian Redlc83ed822012-02-17 08:42:25 +00001339 ::EmitStdInitializerListCleanup(*this, array, arrayAddress, init);
1340}