blob: 975f572c0df32617ea56628705ff0c5a979fef08 [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"
Chris Lattner883f6a72007-08-11 00:04:45 +000015#include "CodeGenModule.h"
Fariborz Jahanian082b02e2009-07-08 01:18:33 +000016#include "CGObjCRuntime.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"
Chris Lattner883f6a72007-08-11 00:04:45 +000021#include "llvm/Constants.h"
22#include "llvm/Function.h"
Devang Patel636c3d02007-10-26 17:44:44 +000023#include "llvm/GlobalVariable.h"
Chris Lattnerf81557c2008-04-04 18:42:16 +000024#include "llvm/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;
Mike Stump49d1cd52009-05-26 22:03:21 +000037 bool IgnoreResult;
John McCallef072fd2010-05-22 01:48:05 +000038
John McCall410ffb22011-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 McCallef072fd2010-05-22 01:48:05 +000048 ReturnValueSlot getReturnValueSlot() const {
John McCall410ffb22011-08-25 23:04:34 +000049 if (!shouldUseDestForReturnSlot())
50 return ReturnValueSlot();
John McCallfa037bd2010-05-22 22:13:32 +000051
John McCall558d2ab2010-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 McCallef072fd2010-05-22 01:48:05 +000058 }
John McCallfa037bd2010-05-22 22:13:32 +000059
Chris Lattner9c033562007-08-21 04:25:47 +000060public:
John McCall558d2ab2010-09-15 10:14:12 +000061 AggExprEmitter(CodeGenFunction &cgf, AggValueSlot Dest,
Fariborz Jahanian474e2fe2010-09-16 00:20:07 +000062 bool ignore)
John McCall558d2ab2010-09-15 10:14:12 +000063 : CGF(cgf), Builder(CGF.Builder), Dest(Dest),
Fariborz Jahanian474e2fe2010-09-16 00:20:07 +000064 IgnoreResult(ignore) {
Chris Lattner9c033562007-08-21 04:25:47 +000065 }
66
Chris Lattneree755f92007-08-21 04:59:27 +000067 //===--------------------------------------------------------------------===//
68 // Utilities
69 //===--------------------------------------------------------------------===//
70
Chris Lattner9c033562007-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 Friedman922696f2008-05-19 17:51:16 +000075
Mike Stump4ac20dd2009-05-23 20:28:01 +000076 /// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
Mike Stump49d1cd52009-05-26 22:03:21 +000077 void EmitFinalDestCopy(const Expr *E, LValue Src, bool Ignore = false);
Eli Friedmanbd7d8282011-12-05 22:23:28 +000078 void EmitFinalDestCopy(const Expr *E, RValue Src, bool Ignore = false,
79 unsigned Alignment = 0);
Mike Stump4ac20dd2009-05-23 20:28:01 +000080
John McCall410ffb22011-08-25 23:04:34 +000081 void EmitMoveFromReturnSlot(const Expr *E, RValue Src);
John McCallfa037bd2010-05-22 22:13:32 +000082
Sebastian Redlaf130fd2012-02-19 12:28:02 +000083 void EmitStdInitializerList(llvm::Value *DestPtr, InitListExpr *InitList);
Sebastian Redl32cf1f22012-02-17 08:42:25 +000084 void EmitArrayInit(llvm::Value *DestPtr, llvm::ArrayType *AType,
85 QualType elementType, InitListExpr *E);
86
John McCall7c2349b2011-08-25 20:40:09 +000087 AggValueSlot::NeedsGCBarriers_t needsGC(QualType T) {
David Blaikie4e4d0842012-03-11 07:00:24 +000088 if (CGF.getLangOpts().getGC() && TypeRequiresGCollection(T))
John McCall7c2349b2011-08-25 20:40:09 +000089 return AggValueSlot::NeedsGCBarriers;
90 return AggValueSlot::DoesNotNeedGCBarriers;
91 }
92
John McCallfa037bd2010-05-22 22:13:32 +000093 bool TypeRequiresGCollection(QualType T);
94
Chris Lattneree755f92007-08-21 04:59:27 +000095 //===--------------------------------------------------------------------===//
96 // Visitor Methods
97 //===--------------------------------------------------------------------===//
Mike Stump1eb44332009-09-09 15:08:12 +000098
Chris Lattner9c033562007-08-21 04:25:47 +000099 void VisitStmt(Stmt *S) {
Daniel Dunbar488e9932008-08-16 00:56:44 +0000100 CGF.ErrorUnsupported(S, "aggregate expression");
Chris Lattner9c033562007-08-21 04:25:47 +0000101 }
102 void VisitParenExpr(ParenExpr *PE) { Visit(PE->getSubExpr()); }
Peter Collingbournef111d932011-04-15 00:35:48 +0000103 void VisitGenericSelectionExpr(GenericSelectionExpr *GE) {
104 Visit(GE->getResultExpr());
105 }
Eli Friedman12444a22009-01-27 09:03:41 +0000106 void VisitUnaryExtension(UnaryOperator *E) { Visit(E->getSubExpr()); }
John McCall91a57552011-07-15 05:09:51 +0000107 void VisitSubstNonTypeTemplateParmExpr(SubstNonTypeTemplateParmExpr *E) {
108 return Visit(E->getReplacement());
109 }
Chris Lattner9c033562007-08-21 04:25:47 +0000110
111 // l-values.
John McCallf4b88a42012-03-10 09:33:50 +0000112 void VisitDeclRefExpr(DeclRefExpr *E) {
John McCalldd2ecee2012-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 McCallf4b88a42012-03-10 09:33:50 +0000119 if (E->getDecl()->getType()->isReferenceType()) {
John McCalldd2ecee2012-03-10 03:05:10 +0000120 if (CodeGenFunction::ConstantEmission result
John McCallf4b88a42012-03-10 09:33:50 +0000121 = CGF.tryEmitAsConstant(E)) {
122 EmitFinalDestCopy(E, result.getReferenceLValue(CGF, E));
John McCalldd2ecee2012-03-10 03:05:10 +0000123 return;
124 }
125 }
126
John McCallf4b88a42012-03-10 09:33:50 +0000127 EmitAggLoadOfLValue(E);
John McCalldd2ecee2012-03-10 03:05:10 +0000128 }
129
Seo Sanghyeon9b73b392007-12-14 02:04:12 +0000130 void VisitMemberExpr(MemberExpr *ME) { EmitAggLoadOfLValue(ME); }
131 void VisitUnaryDeref(UnaryOperator *E) { EmitAggLoadOfLValue(E); }
Daniel Dunbar5be028f2010-01-04 18:47:06 +0000132 void VisitStringLiteral(StringLiteral *E) { EmitAggLoadOfLValue(E); }
Douglas Gregor751ec9b2011-06-17 04:59:12 +0000133 void VisitCompoundLiteralExpr(CompoundLiteralExpr *E);
Seo Sanghyeon9b73b392007-12-14 02:04:12 +0000134 void VisitArraySubscriptExpr(ArraySubscriptExpr *E) {
135 EmitAggLoadOfLValue(E);
136 }
Chris Lattnerf0a990c2009-04-21 23:00:09 +0000137 void VisitPredefinedExpr(const PredefinedExpr *E) {
Mike Stump1eb44332009-09-09 15:08:12 +0000138 EmitAggLoadOfLValue(E);
Chris Lattnerf0a990c2009-04-21 23:00:09 +0000139 }
Mike Stump1eb44332009-09-09 15:08:12 +0000140
Chris Lattner9c033562007-08-21 04:25:47 +0000141 // Operators.
Anders Carlsson4d8673b2009-08-07 23:22:37 +0000142 void VisitCastExpr(CastExpr *E);
Anders Carlsson148fe672007-10-31 22:04:46 +0000143 void VisitCallExpr(const CallExpr *E);
Chris Lattnerb2d963f2007-08-31 22:54:14 +0000144 void VisitStmtExpr(const StmtExpr *E);
Chris Lattner9c033562007-08-21 04:25:47 +0000145 void VisitBinaryOperator(const BinaryOperator *BO);
Fariborz Jahanian8bfd31f2009-10-22 22:57:31 +0000146 void VisitPointerToDataMemberBinaryOperator(const BinaryOperator *BO);
Chris Lattner03d6fb92007-08-21 04:43:17 +0000147 void VisitBinAssign(const BinaryOperator *E);
Eli Friedman07fa52a2008-05-20 07:56:31 +0000148 void VisitBinComma(const BinaryOperator *E);
Chris Lattner9c033562007-08-21 04:25:47 +0000149
Chris Lattner8fdf3282008-06-24 17:04:18 +0000150 void VisitObjCMessageExpr(ObjCMessageExpr *E);
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000151 void VisitObjCIvarRefExpr(ObjCIvarRefExpr *E) {
152 EmitAggLoadOfLValue(E);
153 }
Mike Stump1eb44332009-09-09 15:08:12 +0000154
John McCall56ca35d2011-02-17 10:25:35 +0000155 void VisitAbstractConditionalOperator(const AbstractConditionalOperator *CO);
Anders Carlssona294ca82009-07-08 18:33:14 +0000156 void VisitChooseExpr(const ChooseExpr *CE);
Devang Patel636c3d02007-10-26 17:44:44 +0000157 void VisitInitListExpr(InitListExpr *E);
Anders Carlsson30311fa2009-12-16 06:57:54 +0000158 void VisitImplicitValueInitExpr(ImplicitValueInitExpr *E);
Chris Lattner04421082008-04-08 04:40:51 +0000159 void VisitCXXDefaultArgExpr(CXXDefaultArgExpr *DAE) {
160 Visit(DAE->getExpr());
161 }
Anders Carlssonb58d0172009-05-30 23:23:33 +0000162 void VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E);
Anders Carlsson31ccf372009-05-03 17:47:16 +0000163 void VisitCXXConstructExpr(const CXXConstructExpr *E);
Eli Friedman4c5d8af2012-02-09 03:32:31 +0000164 void VisitLambdaExpr(LambdaExpr *E);
John McCall4765fa02010-12-06 08:20:24 +0000165 void VisitExprWithCleanups(ExprWithCleanups *E);
Douglas Gregored8abf12010-07-08 06:14:04 +0000166 void VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *E);
Mike Stump2710c412009-11-18 00:40:12 +0000167 void VisitCXXTypeidExpr(CXXTypeidExpr *E) { EmitAggLoadOfLValue(E); }
Douglas Gregor03e80032011-06-21 17:03:29 +0000168 void VisitMaterializeTemporaryExpr(MaterializeTemporaryExpr *E);
John McCalle996ffd2011-02-16 08:02:54 +0000169 void VisitOpaqueValueExpr(OpaqueValueExpr *E);
170
John McCall4b9c2d22011-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 Friedmanb1851242008-05-27 15:51:49 +0000180 void VisitVAArgExpr(VAArgExpr *E);
Chris Lattnerf81557c2008-04-04 18:42:16 +0000181
Chad Rosier649b4a12012-03-29 17:37:10 +0000182 void EmitInitializationToLValue(Expr *E, LValue Address);
John McCalla07398e2011-06-16 04:16:24 +0000183 void EmitNullInitializationToLValue(LValue Address);
Chris Lattner9c033562007-08-21 04:25:47 +0000184 // case Expr::ChooseExprClass:
Mike Stump39406b12009-12-09 19:24:08 +0000185 void VisitCXXThrowExpr(const CXXThrowExpr *E) { CGF.EmitCXXThrowExpr(E); }
Eli Friedman276b0612011-10-11 02:20:01 +0000186 void VisitAtomicExpr(AtomicExpr *E) {
187 CGF.EmitAtomicExpr(E, EnsureSlot(E->getType()).getAddr());
188 }
Chris Lattner9c033562007-08-21 04:25:47 +0000189};
190} // end anonymous namespace.
191
Chris Lattneree755f92007-08-21 04:59:27 +0000192//===----------------------------------------------------------------------===//
193// Utilities
194//===----------------------------------------------------------------------===//
Chris Lattner9c033562007-08-21 04:25:47 +0000195
Chris Lattner883f6a72007-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 Lattner9c033562007-08-21 04:25:47 +0000199void AggExprEmitter::EmitAggLoadOfLValue(const Expr *E) {
200 LValue LV = CGF.EmitLValue(E);
Mike Stump4ac20dd2009-05-23 20:28:01 +0000201 EmitFinalDestCopy(E, LV);
202}
203
John McCallfa037bd2010-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 McCall410ffb22011-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 McCallfa037bd2010-05-22 22:13:32 +0000223///
224/// The idea is that you do something like this:
225/// RValue Result = EmitSomething(..., getReturnValueSlot());
John McCall410ffb22011-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 Jahanian55bcace2010-06-15 22:44:06 +0000237 }
John McCall410ffb22011-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 McCallfa037bd2010-05-22 22:13:32 +0000242}
243
Mike Stump4ac20dd2009-05-23 20:28:01 +0000244/// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
Eli Friedmanbd7d8282011-12-05 22:23:28 +0000245void AggExprEmitter::EmitFinalDestCopy(const Expr *E, RValue Src, bool Ignore,
246 unsigned Alignment) {
Mike Stump4ac20dd2009-05-23 20:28:01 +0000247 assert(Src.isAggregate() && "value must be aggregate value!");
248
John McCall558d2ab2010-09-15 10:14:12 +0000249 // If Dest is ignored, then we're evaluating an aggregate expression
John McCalla8f28da2010-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 McCall558d2ab2010-09-15 10:14:12 +0000255 if (Dest.isIgnored()) {
John McCalla8f28da2010-08-25 02:50:31 +0000256 if (!Src.isVolatileQualified() ||
David Blaikie4e4d0842012-03-11 07:00:24 +0000257 CGF.CGM.getLangOpts().CPlusPlus ||
John McCalla8f28da2010-08-25 02:50:31 +0000258 (IgnoreResult && Ignore))
Mike Stump9ccb1032009-05-23 22:01:27 +0000259 return;
Fariborz Jahanian8a970052010-10-22 22:05:03 +0000260
Mike Stump49d1cd52009-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 McCall558d2ab2010-09-15 10:14:12 +0000263 Dest = CGF.CreateAggTemp(E->getType(), "agg.tmp");
Mike Stump9ccb1032009-05-23 22:01:27 +0000264 }
Chris Lattner883f6a72007-08-11 00:04:45 +0000265
John McCalld1a5f132010-09-16 03:13:23 +0000266 if (Dest.requiresGCollection()) {
Ken Dyck479b61c2011-04-24 17:08:00 +0000267 CharUnits size = CGF.getContext().getTypeSizeInChars(E->getType());
Chris Lattner2acc6e32011-07-18 04:24:23 +0000268 llvm::Type *SizeTy = CGF.ConvertType(CGF.getContext().getSizeType());
Ken Dyck479b61c2011-04-24 17:08:00 +0000269 llvm::Value *SizeVal = llvm::ConstantInt::get(SizeTy, size.getQuantity());
Fariborz Jahanian08c32132009-08-31 19:33:16 +0000270 CGF.CGM.getObjCRuntime().EmitGCMemmoveCollectable(CGF,
John McCall558d2ab2010-09-15 10:14:12 +0000271 Dest.getAddr(),
272 Src.getAggregateAddr(),
273 SizeVal);
Fariborz Jahanian08c32132009-08-31 19:33:16 +0000274 return;
275 }
Mike Stump4ac20dd2009-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 McCall558d2ab2010-09-15 10:14:12 +0000280 CGF.EmitAggregateCopy(Dest.getAddr(), Src.getAggregateAddr(), E->getType(),
Eli Friedmanbd7d8282011-12-05 22:23:28 +0000281 Dest.isVolatile()|Src.isVolatileQualified(),
Chad Rosier649b4a12012-03-29 17:37:10 +0000282 Alignment);
Mike Stump4ac20dd2009-05-23 20:28:01 +0000283}
284
285/// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
Mike Stump49d1cd52009-05-26 22:03:21 +0000286void AggExprEmitter::EmitFinalDestCopy(const Expr *E, LValue Src, bool Ignore) {
Mike Stump4ac20dd2009-05-23 20:28:01 +0000287 assert(Src.isSimple() && "Can't have aggregate bitfield, vector, etc");
288
Eli Friedmanbd7d8282011-12-05 22:23:28 +0000289 CharUnits Alignment = std::min(Src.getAlignment(), Dest.getAlignment());
290 EmitFinalDestCopy(E, Src.asAggregateRValue(), Ignore, Alignment.getQuantity());
Chris Lattner883f6a72007-08-11 00:04:45 +0000291}
292
Sebastian Redl32cf1f22012-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 Redlaf130fd2012-02-19 12:28:02 +0000320void AggExprEmitter::EmitStdInitializerList(llvm::Value *destPtr,
321 InitListExpr *initList) {
Sebastian Redl32cf1f22012-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 Redlbabcf9d2012-02-25 20:51:13 +0000341 return;
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000342 }
343
344 QualType elementPtr = ctx.getPointerType(element.withConst());
Sebastian Redl32cf1f22012-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 Redlbabcf9d2012-02-25 20:51:13 +0000349 return;
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000350 }
351 LValue start = CGF.EmitLValueForFieldInitialization(destPtr, *field, 0);
352 llvm::Value *arrayStart = Builder.CreateStructGEP(alloc, 0, "arraystart");
353 CGF.EmitStoreThroughLValue(RValue::get(arrayStart), start);
354 ++field;
355
356 if (field == record->field_end()) {
357 CGF.ErrorUnsupported(initList, "weird std::initializer_list");
Sebastian Redlbabcf9d2012-02-25 20:51:13 +0000358 return;
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000359 }
360 LValue endOrLength = CGF.EmitLValueForFieldInitialization(destPtr, *field, 0);
361 if (ctx.hasSameType(field->getType(), elementPtr)) {
362 // End pointer.
363 llvm::Value *arrayEnd = Builder.CreateStructGEP(alloc,numInits, "arrayend");
364 CGF.EmitStoreThroughLValue(RValue::get(arrayEnd), endOrLength);
365 } else if(ctx.hasSameType(field->getType(), ctx.getSizeType())) {
366 // Length.
367 CGF.EmitStoreThroughLValue(RValue::get(Builder.getInt(size)), endOrLength);
368 } else {
369 CGF.ErrorUnsupported(initList, "weird std::initializer_list");
Sebastian Redlbabcf9d2012-02-25 20:51:13 +0000370 return;
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000371 }
372
373 if (!Dest.isExternallyDestructed())
374 EmitStdInitializerListCleanup(CGF, array, alloc, initList);
375}
376
377/// \brief Emit initialization of an array from an initializer list.
378void AggExprEmitter::EmitArrayInit(llvm::Value *DestPtr, llvm::ArrayType *AType,
379 QualType elementType, InitListExpr *E) {
380 uint64_t NumInitElements = E->getNumInits();
381
382 uint64_t NumArrayElements = AType->getNumElements();
383 assert(NumInitElements <= NumArrayElements);
384
385 // DestPtr is an array*. Construct an elementType* by drilling
386 // down a level.
387 llvm::Value *zero = llvm::ConstantInt::get(CGF.SizeTy, 0);
388 llvm::Value *indices[] = { zero, zero };
389 llvm::Value *begin =
390 Builder.CreateInBoundsGEP(DestPtr, indices, "arrayinit.begin");
391
392 // Exception safety requires us to destroy all the
393 // already-constructed members if an initializer throws.
394 // For that, we'll need an EH cleanup.
395 QualType::DestructionKind dtorKind = elementType.isDestructedType();
396 llvm::AllocaInst *endOfInit = 0;
397 EHScopeStack::stable_iterator cleanup;
398 llvm::Instruction *cleanupDominator = 0;
399 if (CGF.needsEHCleanup(dtorKind)) {
400 // In principle we could tell the cleanup where we are more
401 // directly, but the control flow can get so varied here that it
402 // would actually be quite complex. Therefore we go through an
403 // alloca.
404 endOfInit = CGF.CreateTempAlloca(begin->getType(),
405 "arrayinit.endOfInit");
406 cleanupDominator = Builder.CreateStore(begin, endOfInit);
407 CGF.pushIrregularPartialArrayCleanup(begin, endOfInit, elementType,
408 CGF.getDestroyer(dtorKind));
409 cleanup = CGF.EHStack.stable_begin();
410
411 // Otherwise, remember that we didn't need a cleanup.
412 } else {
413 dtorKind = QualType::DK_none;
414 }
415
416 llvm::Value *one = llvm::ConstantInt::get(CGF.SizeTy, 1);
417
418 // The 'current element to initialize'. The invariants on this
419 // variable are complicated. Essentially, after each iteration of
420 // the loop, it points to the last initialized element, except
421 // that it points to the beginning of the array before any
422 // elements have been initialized.
423 llvm::Value *element = begin;
424
425 // Emit the explicit initializers.
426 for (uint64_t i = 0; i != NumInitElements; ++i) {
427 // Advance to the next element.
428 if (i > 0) {
429 element = Builder.CreateInBoundsGEP(element, one, "arrayinit.element");
430
431 // Tell the cleanup that it needs to destroy up to this
432 // element. TODO: some of these stores can be trivially
433 // observed to be unnecessary.
434 if (endOfInit) Builder.CreateStore(element, endOfInit);
435 }
436
Sebastian Redlaf130fd2012-02-19 12:28:02 +0000437 // If these are nested std::initializer_list inits, do them directly,
438 // because they are conceptually the same "location".
439 InitListExpr *initList = dyn_cast<InitListExpr>(E->getInit(i));
440 if (initList && initList->initializesStdInitializerList()) {
441 EmitStdInitializerList(element, initList);
442 } else {
443 LValue elementLV = CGF.MakeAddrLValue(element, elementType);
Chad Rosier649b4a12012-03-29 17:37:10 +0000444 EmitInitializationToLValue(E->getInit(i), elementLV);
Sebastian Redlaf130fd2012-02-19 12:28:02 +0000445 }
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000446 }
447
448 // Check whether there's a non-trivial array-fill expression.
449 // Note that this will be a CXXConstructExpr even if the element
450 // type is an array (or array of array, etc.) of class type.
451 Expr *filler = E->getArrayFiller();
452 bool hasTrivialFiller = true;
453 if (CXXConstructExpr *cons = dyn_cast_or_null<CXXConstructExpr>(filler)) {
454 assert(cons->getConstructor()->isDefaultConstructor());
455 hasTrivialFiller = cons->getConstructor()->isTrivial();
456 }
457
458 // Any remaining elements need to be zero-initialized, possibly
459 // using the filler expression. We can skip this if the we're
460 // emitting to zeroed memory.
461 if (NumInitElements != NumArrayElements &&
462 !(Dest.isZeroed() && hasTrivialFiller &&
463 CGF.getTypes().isZeroInitializable(elementType))) {
464
465 // Use an actual loop. This is basically
466 // do { *array++ = filler; } while (array != end);
467
468 // Advance to the start of the rest of the array.
469 if (NumInitElements) {
470 element = Builder.CreateInBoundsGEP(element, one, "arrayinit.start");
471 if (endOfInit) Builder.CreateStore(element, endOfInit);
472 }
473
474 // Compute the end of the array.
475 llvm::Value *end = Builder.CreateInBoundsGEP(begin,
476 llvm::ConstantInt::get(CGF.SizeTy, NumArrayElements),
477 "arrayinit.end");
478
479 llvm::BasicBlock *entryBB = Builder.GetInsertBlock();
480 llvm::BasicBlock *bodyBB = CGF.createBasicBlock("arrayinit.body");
481
482 // Jump into the body.
483 CGF.EmitBlock(bodyBB);
484 llvm::PHINode *currentElement =
485 Builder.CreatePHI(element->getType(), 2, "arrayinit.cur");
486 currentElement->addIncoming(element, entryBB);
487
488 // Emit the actual filler expression.
489 LValue elementLV = CGF.MakeAddrLValue(currentElement, elementType);
490 if (filler)
Chad Rosier649b4a12012-03-29 17:37:10 +0000491 EmitInitializationToLValue(filler, elementLV);
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000492 else
493 EmitNullInitializationToLValue(elementLV);
494
495 // Move on to the next element.
496 llvm::Value *nextElement =
497 Builder.CreateInBoundsGEP(currentElement, one, "arrayinit.next");
498
499 // Tell the EH cleanup that we finished with the last element.
500 if (endOfInit) Builder.CreateStore(nextElement, endOfInit);
501
502 // Leave the loop if we're done.
503 llvm::Value *done = Builder.CreateICmpEQ(nextElement, end,
504 "arrayinit.done");
505 llvm::BasicBlock *endBB = CGF.createBasicBlock("arrayinit.end");
506 Builder.CreateCondBr(done, endBB, bodyBB);
507 currentElement->addIncoming(nextElement, Builder.GetInsertBlock());
508
509 CGF.EmitBlock(endBB);
510 }
511
512 // Leave the partial-array cleanup if we entered one.
513 if (dtorKind) CGF.DeactivateCleanupBlock(cleanup, cleanupDominator);
514}
515
Chris Lattneree755f92007-08-21 04:59:27 +0000516//===----------------------------------------------------------------------===//
517// Visitor Methods
518//===----------------------------------------------------------------------===//
519
Douglas Gregor03e80032011-06-21 17:03:29 +0000520void AggExprEmitter::VisitMaterializeTemporaryExpr(MaterializeTemporaryExpr *E){
521 Visit(E->GetTemporaryExpr());
522}
523
John McCalle996ffd2011-02-16 08:02:54 +0000524void AggExprEmitter::VisitOpaqueValueExpr(OpaqueValueExpr *e) {
John McCall56ca35d2011-02-17 10:25:35 +0000525 EmitFinalDestCopy(e, CGF.getOpaqueLValueMapping(e));
John McCalle996ffd2011-02-16 08:02:54 +0000526}
527
Douglas Gregor751ec9b2011-06-17 04:59:12 +0000528void
529AggExprEmitter::VisitCompoundLiteralExpr(CompoundLiteralExpr *E) {
Douglas Gregor673e98b2011-06-17 16:37:20 +0000530 if (E->getType().isPODType(CGF.getContext())) {
531 // For a POD type, just emit a load of the lvalue + a copy, because our
532 // compound literal might alias the destination.
533 // FIXME: This is a band-aid; the real problem appears to be in our handling
534 // of assignments, where we store directly into the LHS without checking
535 // whether anything in the RHS aliases.
536 EmitAggLoadOfLValue(E);
537 return;
538 }
539
Douglas Gregor751ec9b2011-06-17 04:59:12 +0000540 AggValueSlot Slot = EnsureSlot(E->getType());
541 CGF.EmitAggExpr(E->getInitializer(), Slot);
542}
543
544
Anders Carlsson4d8673b2009-08-07 23:22:37 +0000545void AggExprEmitter::VisitCastExpr(CastExpr *E) {
Anders Carlsson30168422009-09-29 01:23:39 +0000546 switch (E->getCastKind()) {
Anders Carlsson575b3742011-04-11 02:03:26 +0000547 case CK_Dynamic: {
Douglas Gregor69cfeb12010-05-14 21:31:02 +0000548 assert(isa<CXXDynamicCastExpr>(E) && "CK_Dynamic without a dynamic_cast?");
549 LValue LV = CGF.EmitCheckedLValue(E->getSubExpr());
550 // FIXME: Do we also need to handle property references here?
551 if (LV.isSimple())
552 CGF.EmitDynamicCast(LV.getAddress(), cast<CXXDynamicCastExpr>(E));
553 else
554 CGF.CGM.ErrorUnsupported(E, "non-simple lvalue dynamic_cast");
555
John McCall558d2ab2010-09-15 10:14:12 +0000556 if (!Dest.isIgnored())
557 CGF.CGM.ErrorUnsupported(E, "lvalue dynamic_cast with a destination");
Douglas Gregor69cfeb12010-05-14 21:31:02 +0000558 break;
559 }
560
John McCall2de56d12010-08-25 11:45:40 +0000561 case CK_ToUnion: {
John McCall65912712011-04-12 22:02:02 +0000562 if (Dest.isIgnored()) break;
563
Anders Carlsson4d8673b2009-08-07 23:22:37 +0000564 // GCC union extension
Daniel Dunbar79c39282010-08-21 03:15:20 +0000565 QualType Ty = E->getSubExpr()->getType();
566 QualType PtrTy = CGF.getContext().getPointerType(Ty);
John McCall558d2ab2010-09-15 10:14:12 +0000567 llvm::Value *CastPtr = Builder.CreateBitCast(Dest.getAddr(),
Eli Friedman34ebf4d2009-06-03 20:45:06 +0000568 CGF.ConvertType(PtrTy));
John McCalla07398e2011-06-16 04:16:24 +0000569 EmitInitializationToLValue(E->getSubExpr(),
Chad Rosier649b4a12012-03-29 17:37:10 +0000570 CGF.MakeAddrLValue(CastPtr, Ty));
Anders Carlsson30168422009-09-29 01:23:39 +0000571 break;
Nuno Lopes7e916272009-01-15 20:14:33 +0000572 }
Mike Stump1eb44332009-09-09 15:08:12 +0000573
John McCall2de56d12010-08-25 11:45:40 +0000574 case CK_DerivedToBase:
575 case CK_BaseToDerived:
576 case CK_UncheckedDerivedToBase: {
David Blaikieb219cfc2011-09-23 05:06:16 +0000577 llvm_unreachable("cannot perform hierarchy conversion in EmitAggExpr: "
Douglas Gregor2d6b0e92010-05-22 05:17:18 +0000578 "should have been unpacked before we got here");
Douglas Gregor2d6b0e92010-05-22 05:17:18 +0000579 }
580
John McCallf6a16482010-12-04 03:47:34 +0000581 case CK_LValueToRValue: // hope for downstream optimization
John McCall2de56d12010-08-25 11:45:40 +0000582 case CK_NoOp:
David Chisnall7a7ee302012-01-16 17:27:18 +0000583 case CK_AtomicToNonAtomic:
584 case CK_NonAtomicToAtomic:
John McCall2de56d12010-08-25 11:45:40 +0000585 case CK_UserDefinedConversion:
586 case CK_ConstructorConversion:
Anders Carlsson30168422009-09-29 01:23:39 +0000587 assert(CGF.getContext().hasSameUnqualifiedType(E->getSubExpr()->getType(),
588 E->getType()) &&
589 "Implicit cast types must be compatible");
590 Visit(E->getSubExpr());
591 break;
John McCall0ae287a2010-12-01 04:43:34 +0000592
John McCall2de56d12010-08-25 11:45:40 +0000593 case CK_LValueBitCast:
John McCall0ae287a2010-12-01 04:43:34 +0000594 llvm_unreachable("should not be emitting lvalue bitcast as rvalue");
John McCall1de4d4e2011-04-07 08:22:57 +0000595
John McCall0ae287a2010-12-01 04:43:34 +0000596 case CK_Dependent:
597 case CK_BitCast:
598 case CK_ArrayToPointerDecay:
599 case CK_FunctionToPointerDecay:
600 case CK_NullToPointer:
601 case CK_NullToMemberPointer:
602 case CK_BaseToDerivedMemberPointer:
603 case CK_DerivedToBaseMemberPointer:
604 case CK_MemberPointerToBoolean:
John McCall4d4e5c12012-02-15 01:22:51 +0000605 case CK_ReinterpretMemberPointer:
John McCall0ae287a2010-12-01 04:43:34 +0000606 case CK_IntegralToPointer:
607 case CK_PointerToIntegral:
608 case CK_PointerToBoolean:
609 case CK_ToVoid:
610 case CK_VectorSplat:
611 case CK_IntegralCast:
612 case CK_IntegralToBoolean:
613 case CK_IntegralToFloating:
614 case CK_FloatingToIntegral:
615 case CK_FloatingToBoolean:
616 case CK_FloatingCast:
John McCall1d9b3b22011-09-09 05:25:32 +0000617 case CK_CPointerToObjCPointerCast:
618 case CK_BlockPointerToObjCPointerCast:
John McCall0ae287a2010-12-01 04:43:34 +0000619 case CK_AnyPointerToBlockPointerCast:
620 case CK_ObjCObjectLValueCast:
621 case CK_FloatingRealToComplex:
622 case CK_FloatingComplexToReal:
623 case CK_FloatingComplexToBoolean:
624 case CK_FloatingComplexCast:
625 case CK_FloatingComplexToIntegralComplex:
626 case CK_IntegralRealToComplex:
627 case CK_IntegralComplexToReal:
628 case CK_IntegralComplexToBoolean:
629 case CK_IntegralComplexCast:
630 case CK_IntegralComplexToFloatingComplex:
John McCall33e56f32011-09-10 06:18:15 +0000631 case CK_ARCProduceObject:
632 case CK_ARCConsumeObject:
633 case CK_ARCReclaimReturnedObject:
634 case CK_ARCExtendBlockObject:
Douglas Gregorac1303e2012-02-22 05:02:47 +0000635 case CK_CopyAndAutoreleaseBlockObject:
John McCall0ae287a2010-12-01 04:43:34 +0000636 llvm_unreachable("cast kind invalid for aggregate types");
Anders Carlsson30168422009-09-29 01:23:39 +0000637 }
Anders Carlssone4707ff2008-01-14 06:28:57 +0000638}
639
Chris Lattner96196622008-07-26 22:37:01 +0000640void AggExprEmitter::VisitCallExpr(const CallExpr *E) {
Anders Carlssone70e8f72009-05-27 16:45:02 +0000641 if (E->getCallReturnType()->isReferenceType()) {
642 EmitAggLoadOfLValue(E);
643 return;
644 }
Mike Stump1eb44332009-09-09 15:08:12 +0000645
John McCallfa037bd2010-05-22 22:13:32 +0000646 RValue RV = CGF.EmitCallExpr(E, getReturnValueSlot());
John McCall410ffb22011-08-25 23:04:34 +0000647 EmitMoveFromReturnSlot(E, RV);
Anders Carlsson148fe672007-10-31 22:04:46 +0000648}
Chris Lattner96196622008-07-26 22:37:01 +0000649
650void AggExprEmitter::VisitObjCMessageExpr(ObjCMessageExpr *E) {
John McCallfa037bd2010-05-22 22:13:32 +0000651 RValue RV = CGF.EmitObjCMessageExpr(E, getReturnValueSlot());
John McCall410ffb22011-08-25 23:04:34 +0000652 EmitMoveFromReturnSlot(E, RV);
Chris Lattner8fdf3282008-06-24 17:04:18 +0000653}
Anders Carlsson148fe672007-10-31 22:04:46 +0000654
Chris Lattner96196622008-07-26 22:37:01 +0000655void AggExprEmitter::VisitBinComma(const BinaryOperator *E) {
John McCall2a416372010-12-05 02:00:02 +0000656 CGF.EmitIgnoredExpr(E->getLHS());
John McCall558d2ab2010-09-15 10:14:12 +0000657 Visit(E->getRHS());
Eli Friedman07fa52a2008-05-20 07:56:31 +0000658}
659
Chris Lattnerb2d963f2007-08-31 22:54:14 +0000660void AggExprEmitter::VisitStmtExpr(const StmtExpr *E) {
John McCall150b4622011-01-26 04:00:11 +0000661 CodeGenFunction::StmtExprEvaluation eval(CGF);
John McCall558d2ab2010-09-15 10:14:12 +0000662 CGF.EmitCompoundStmt(*E->getSubStmt(), true, Dest);
Chris Lattnerb2d963f2007-08-31 22:54:14 +0000663}
664
Chris Lattner9c033562007-08-21 04:25:47 +0000665void AggExprEmitter::VisitBinaryOperator(const BinaryOperator *E) {
John McCall2de56d12010-08-25 11:45:40 +0000666 if (E->getOpcode() == BO_PtrMemD || E->getOpcode() == BO_PtrMemI)
Fariborz Jahanian8bfd31f2009-10-22 22:57:31 +0000667 VisitPointerToDataMemberBinaryOperator(E);
668 else
669 CGF.ErrorUnsupported(E, "aggregate binary expression");
670}
671
672void AggExprEmitter::VisitPointerToDataMemberBinaryOperator(
673 const BinaryOperator *E) {
674 LValue LV = CGF.EmitPointerToDataMemberBinaryExpr(E);
675 EmitFinalDestCopy(E, LV);
Chris Lattneree755f92007-08-21 04:59:27 +0000676}
677
Chris Lattner03d6fb92007-08-21 04:43:17 +0000678void AggExprEmitter::VisitBinAssign(const BinaryOperator *E) {
Eli Friedmanff6e2b72008-02-11 01:09:17 +0000679 // For an assignment to work, the value on the right has
680 // to be compatible with the value on the left.
Eli Friedman2dce5f82009-05-28 23:04:00 +0000681 assert(CGF.getContext().hasSameUnqualifiedType(E->getLHS()->getType(),
682 E->getRHS()->getType())
Eli Friedmanff6e2b72008-02-11 01:09:17 +0000683 && "Invalid assignment");
John McCallcd940a12010-12-06 06:10:02 +0000684
Chad Rosier649b4a12012-03-29 17:37:10 +0000685 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E->getLHS()))
Fariborz Jahanian73a6f8e2011-04-29 22:11:28 +0000686 if (const VarDecl *VD = dyn_cast<VarDecl>(DRE->getDecl()))
Fariborz Jahanian2c7168c2011-04-29 21:53:21 +0000687 if (VD->hasAttr<BlocksAttr>() &&
688 E->getRHS()->HasSideEffects(CGF.getContext())) {
689 // When __block variable on LHS, the RHS must be evaluated first
690 // as it may change the 'forwarding' field via call to Block_copy.
691 LValue RHS = CGF.EmitLValue(E->getRHS());
692 LValue LHS = CGF.EmitLValue(E->getLHS());
John McCall7c2349b2011-08-25 20:40:09 +0000693 Dest = AggValueSlot::forLValue(LHS, AggValueSlot::IsDestructed,
John McCall44184392011-08-26 07:31:35 +0000694 needsGC(E->getLHS()->getType()),
Chad Rosier649b4a12012-03-29 17:37:10 +0000695 AggValueSlot::IsAliased);
Fariborz Jahanian2c7168c2011-04-29 21:53:21 +0000696 EmitFinalDestCopy(E, RHS, true);
697 return;
698 }
Chad Rosier649b4a12012-03-29 17:37:10 +0000699
Chris Lattner9c033562007-08-21 04:25:47 +0000700 LValue LHS = CGF.EmitLValue(E->getLHS());
Chris Lattner883f6a72007-08-11 00:04:45 +0000701
John McCalldb458062011-11-07 03:59:57 +0000702 // Codegen the RHS so that it stores directly into the LHS.
703 AggValueSlot LHSSlot =
704 AggValueSlot::forLValue(LHS, AggValueSlot::IsDestructed,
705 needsGC(E->getLHS()->getType()),
Chad Rosier649b4a12012-03-29 17:37:10 +0000706 AggValueSlot::IsAliased);
John McCalldb458062011-11-07 03:59:57 +0000707 CGF.EmitAggExpr(E->getRHS(), LHSSlot, false);
708 EmitFinalDestCopy(E, LHS, true);
Chris Lattner883f6a72007-08-11 00:04:45 +0000709}
710
John McCall56ca35d2011-02-17 10:25:35 +0000711void AggExprEmitter::
712VisitAbstractConditionalOperator(const AbstractConditionalOperator *E) {
Daniel Dunbar9615ecb2008-11-13 01:38:36 +0000713 llvm::BasicBlock *LHSBlock = CGF.createBasicBlock("cond.true");
714 llvm::BasicBlock *RHSBlock = CGF.createBasicBlock("cond.false");
715 llvm::BasicBlock *ContBlock = CGF.createBasicBlock("cond.end");
Mike Stump1eb44332009-09-09 15:08:12 +0000716
John McCall56ca35d2011-02-17 10:25:35 +0000717 // Bind the common expression if necessary.
Eli Friedmand97927d2012-01-06 20:42:20 +0000718 CodeGenFunction::OpaqueValueMapping binding(CGF, E);
John McCall56ca35d2011-02-17 10:25:35 +0000719
John McCall150b4622011-01-26 04:00:11 +0000720 CodeGenFunction::ConditionalEvaluation eval(CGF);
Eli Friedman8e274bd2009-12-25 06:17:05 +0000721 CGF.EmitBranchOnBoolExpr(E->getCond(), LHSBlock, RHSBlock);
Mike Stump1eb44332009-09-09 15:08:12 +0000722
John McCall74fb0ed2010-11-17 00:07:33 +0000723 // Save whether the destination's lifetime is externally managed.
John McCallfd71fb82011-08-26 08:02:37 +0000724 bool isExternallyDestructed = Dest.isExternallyDestructed();
Chris Lattner883f6a72007-08-11 00:04:45 +0000725
John McCall150b4622011-01-26 04:00:11 +0000726 eval.begin(CGF);
727 CGF.EmitBlock(LHSBlock);
John McCall56ca35d2011-02-17 10:25:35 +0000728 Visit(E->getTrueExpr());
John McCall150b4622011-01-26 04:00:11 +0000729 eval.end(CGF);
Mike Stump1eb44332009-09-09 15:08:12 +0000730
John McCall150b4622011-01-26 04:00:11 +0000731 assert(CGF.HaveInsertPoint() && "expression evaluation ended with no IP!");
732 CGF.Builder.CreateBr(ContBlock);
Mike Stump1eb44332009-09-09 15:08:12 +0000733
John McCall74fb0ed2010-11-17 00:07:33 +0000734 // If the result of an agg expression is unused, then the emission
735 // of the LHS might need to create a destination slot. That's fine
736 // with us, and we can safely emit the RHS into the same slot, but
John McCallfd71fb82011-08-26 08:02:37 +0000737 // we shouldn't claim that it's already being destructed.
738 Dest.setExternallyDestructed(isExternallyDestructed);
John McCall74fb0ed2010-11-17 00:07:33 +0000739
John McCall150b4622011-01-26 04:00:11 +0000740 eval.begin(CGF);
741 CGF.EmitBlock(RHSBlock);
John McCall56ca35d2011-02-17 10:25:35 +0000742 Visit(E->getFalseExpr());
John McCall150b4622011-01-26 04:00:11 +0000743 eval.end(CGF);
Mike Stump1eb44332009-09-09 15:08:12 +0000744
Chris Lattner9c033562007-08-21 04:25:47 +0000745 CGF.EmitBlock(ContBlock);
Chris Lattner883f6a72007-08-11 00:04:45 +0000746}
Chris Lattneree755f92007-08-21 04:59:27 +0000747
Anders Carlssona294ca82009-07-08 18:33:14 +0000748void AggExprEmitter::VisitChooseExpr(const ChooseExpr *CE) {
749 Visit(CE->getChosenSubExpr(CGF.getContext()));
750}
751
Eli Friedmanb1851242008-05-27 15:51:49 +0000752void AggExprEmitter::VisitVAArgExpr(VAArgExpr *VE) {
Daniel Dunbar07855702009-02-11 22:25:55 +0000753 llvm::Value *ArgValue = CGF.EmitVAListRef(VE->getSubExpr());
Anders Carlssonddf7cac2008-11-04 05:30:00 +0000754 llvm::Value *ArgPtr = CGF.EmitVAArg(ArgValue, VE->getType());
755
Sebastian Redl0262f022009-01-09 21:09:38 +0000756 if (!ArgPtr) {
Anders Carlssonddf7cac2008-11-04 05:30:00 +0000757 CGF.ErrorUnsupported(VE, "aggregate va_arg expression");
Sebastian Redl0262f022009-01-09 21:09:38 +0000758 return;
759 }
760
Daniel Dunbar79c39282010-08-21 03:15:20 +0000761 EmitFinalDestCopy(VE, CGF.MakeAddrLValue(ArgPtr, VE->getType()));
Eli Friedmanb1851242008-05-27 15:51:49 +0000762}
763
Anders Carlssonb58d0172009-05-30 23:23:33 +0000764void AggExprEmitter::VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E) {
John McCall558d2ab2010-09-15 10:14:12 +0000765 // Ensure that we have a slot, but if we already do, remember
John McCallfd71fb82011-08-26 08:02:37 +0000766 // whether it was externally destructed.
767 bool wasExternallyDestructed = Dest.isExternallyDestructed();
John McCall558d2ab2010-09-15 10:14:12 +0000768 Dest = EnsureSlot(E->getType());
John McCallfd71fb82011-08-26 08:02:37 +0000769
770 // We're going to push a destructor if there isn't already one.
771 Dest.setExternallyDestructed();
Mike Stump1eb44332009-09-09 15:08:12 +0000772
John McCall558d2ab2010-09-15 10:14:12 +0000773 Visit(E->getSubExpr());
Anders Carlssonb58d0172009-05-30 23:23:33 +0000774
John McCallfd71fb82011-08-26 08:02:37 +0000775 // Push that destructor we promised.
776 if (!wasExternallyDestructed)
Peter Collingbourne86811602011-11-27 22:09:22 +0000777 CGF.EmitCXXTemporary(E->getTemporary(), E->getType(), Dest.getAddr());
Anders Carlssonb58d0172009-05-30 23:23:33 +0000778}
779
Anders Carlssonb14095a2009-04-17 00:06:03 +0000780void
Anders Carlsson31ccf372009-05-03 17:47:16 +0000781AggExprEmitter::VisitCXXConstructExpr(const CXXConstructExpr *E) {
John McCall558d2ab2010-09-15 10:14:12 +0000782 AggValueSlot Slot = EnsureSlot(E->getType());
783 CGF.EmitCXXConstructExpr(E, Slot);
Anders Carlsson7f6ad152009-05-19 04:48:36 +0000784}
785
Eli Friedman4c5d8af2012-02-09 03:32:31 +0000786void
787AggExprEmitter::VisitLambdaExpr(LambdaExpr *E) {
788 AggValueSlot Slot = EnsureSlot(E->getType());
789 CGF.EmitLambdaExpr(E, Slot);
790}
791
John McCall4765fa02010-12-06 08:20:24 +0000792void AggExprEmitter::VisitExprWithCleanups(ExprWithCleanups *E) {
John McCall1a343eb2011-11-10 08:15:53 +0000793 CGF.enterFullExpression(E);
794 CodeGenFunction::RunCleanupsScope cleanups(CGF);
795 Visit(E->getSubExpr());
Anders Carlssonb14095a2009-04-17 00:06:03 +0000796}
797
Douglas Gregored8abf12010-07-08 06:14:04 +0000798void AggExprEmitter::VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *E) {
John McCall558d2ab2010-09-15 10:14:12 +0000799 QualType T = E->getType();
800 AggValueSlot Slot = EnsureSlot(T);
John McCalla07398e2011-06-16 04:16:24 +0000801 EmitNullInitializationToLValue(CGF.MakeAddrLValue(Slot.getAddr(), T));
Anders Carlsson30311fa2009-12-16 06:57:54 +0000802}
803
804void AggExprEmitter::VisitImplicitValueInitExpr(ImplicitValueInitExpr *E) {
John McCall558d2ab2010-09-15 10:14:12 +0000805 QualType T = E->getType();
806 AggValueSlot Slot = EnsureSlot(T);
John McCalla07398e2011-06-16 04:16:24 +0000807 EmitNullInitializationToLValue(CGF.MakeAddrLValue(Slot.getAddr(), T));
Nuno Lopes329763b2009-10-18 15:18:11 +0000808}
809
Chris Lattner1b726772010-12-02 07:07:26 +0000810/// isSimpleZero - If emitting this value will obviously just cause a store of
811/// zero to memory, return true. This can return false if uncertain, so it just
812/// handles simple cases.
813static bool isSimpleZero(const Expr *E, CodeGenFunction &CGF) {
Peter Collingbournef111d932011-04-15 00:35:48 +0000814 E = E->IgnoreParens();
815
Chris Lattner1b726772010-12-02 07:07:26 +0000816 // 0
817 if (const IntegerLiteral *IL = dyn_cast<IntegerLiteral>(E))
818 return IL->getValue() == 0;
819 // +0.0
820 if (const FloatingLiteral *FL = dyn_cast<FloatingLiteral>(E))
821 return FL->getValue().isPosZero();
822 // int()
823 if ((isa<ImplicitValueInitExpr>(E) || isa<CXXScalarValueInitExpr>(E)) &&
824 CGF.getTypes().isZeroInitializable(E->getType()))
825 return true;
826 // (int*)0 - Null pointer expressions.
827 if (const CastExpr *ICE = dyn_cast<CastExpr>(E))
828 return ICE->getCastKind() == CK_NullToPointer;
829 // '\0'
830 if (const CharacterLiteral *CL = dyn_cast<CharacterLiteral>(E))
831 return CL->getValue() == 0;
832
833 // Otherwise, hard case: conservatively return false.
834 return false;
835}
836
837
Anders Carlsson78e83f82010-02-03 17:33:16 +0000838void
Chad Rosier649b4a12012-03-29 17:37:10 +0000839AggExprEmitter::EmitInitializationToLValue(Expr* E, LValue LV) {
John McCalla07398e2011-06-16 04:16:24 +0000840 QualType type = LV.getType();
Mike Stump7f79f9b2009-05-29 15:46:01 +0000841 // FIXME: Ignore result?
Chris Lattnerf81557c2008-04-04 18:42:16 +0000842 // FIXME: Are initializers affected by volatile?
Chris Lattner1b726772010-12-02 07:07:26 +0000843 if (Dest.isZeroed() && isSimpleZero(E, CGF)) {
844 // Storing "i32 0" to a zero'd memory location is a noop.
845 } else if (isa<ImplicitValueInitExpr>(E)) {
John McCalla07398e2011-06-16 04:16:24 +0000846 EmitNullInitializationToLValue(LV);
847 } else if (type->isReferenceType()) {
Anders Carlsson32f36ba2010-06-26 16:35:32 +0000848 RValue RV = CGF.EmitReferenceBindingToExpr(E, /*InitializedDecl=*/0);
John McCall545d9962011-06-25 02:11:03 +0000849 CGF.EmitStoreThroughLValue(RV, LV);
John McCalla07398e2011-06-16 04:16:24 +0000850 } else if (type->isAnyComplexType()) {
Douglas Gregor3498bdb2009-01-29 17:44:32 +0000851 CGF.EmitComplexExprIntoAddr(E, LV.getAddress(), false);
John McCalla07398e2011-06-16 04:16:24 +0000852 } else if (CGF.hasAggregateLLVMType(type)) {
John McCall7c2349b2011-08-25 20:40:09 +0000853 CGF.EmitAggExpr(E, AggValueSlot::forLValue(LV,
854 AggValueSlot::IsDestructed,
855 AggValueSlot::DoesNotNeedGCBarriers,
John McCall410ffb22011-08-25 23:04:34 +0000856 AggValueSlot::IsNotAliased,
John McCalla07398e2011-06-16 04:16:24 +0000857 Dest.isZeroed()));
John McCallf85e1932011-06-15 23:02:42 +0000858 } else if (LV.isSimple()) {
John McCalla07398e2011-06-16 04:16:24 +0000859 CGF.EmitScalarInit(E, /*D=*/0, LV, /*Captured=*/false);
Eli Friedmanc8ba9612008-05-12 15:06:05 +0000860 } else {
John McCall545d9962011-06-25 02:11:03 +0000861 CGF.EmitStoreThroughLValue(RValue::get(CGF.EmitScalarExpr(E)), LV);
Chris Lattnerf81557c2008-04-04 18:42:16 +0000862 }
Chris Lattnerf81557c2008-04-04 18:42:16 +0000863}
864
John McCalla07398e2011-06-16 04:16:24 +0000865void AggExprEmitter::EmitNullInitializationToLValue(LValue lv) {
866 QualType type = lv.getType();
867
Chris Lattner1b726772010-12-02 07:07:26 +0000868 // If the destination slot is already zeroed out before the aggregate is
869 // copied into it, we don't have to emit any zeros here.
John McCalla07398e2011-06-16 04:16:24 +0000870 if (Dest.isZeroed() && CGF.getTypes().isZeroInitializable(type))
Chris Lattner1b726772010-12-02 07:07:26 +0000871 return;
872
John McCalla07398e2011-06-16 04:16:24 +0000873 if (!CGF.hasAggregateLLVMType(type)) {
Eli Friedmanb1e3f322012-02-22 05:38:59 +0000874 // For non-aggregates, we can store zero.
John McCalla07398e2011-06-16 04:16:24 +0000875 llvm::Value *null = llvm::Constant::getNullValue(CGF.ConvertType(type));
Eli Friedmanb1e3f322012-02-22 05:38:59 +0000876 // Note that the following is not equivalent to
877 // EmitStoreThroughBitfieldLValue for ARC types.
Eli Friedman5a13d4d2012-02-24 23:53:49 +0000878 if (lv.isBitField()) {
Eli Friedmanb1e3f322012-02-22 05:38:59 +0000879 CGF.EmitStoreThroughBitfieldLValue(RValue::get(null), lv);
Eli Friedman5a13d4d2012-02-24 23:53:49 +0000880 } else {
881 assert(lv.isSimple());
882 CGF.EmitStoreOfScalar(null, lv, /* isInitialization */ true);
883 }
Lauro Ramos Venancio145cd892008-02-19 19:27:31 +0000884 } else {
Chris Lattnerf81557c2008-04-04 18:42:16 +0000885 // There's a potential optimization opportunity in combining
886 // memsets; that would be easy for arrays, but relatively
887 // difficult for structures with the current code.
John McCalla07398e2011-06-16 04:16:24 +0000888 CGF.EmitNullInitialization(lv.getAddress(), lv.getType());
Chris Lattnerf81557c2008-04-04 18:42:16 +0000889 }
890}
891
Chris Lattnerf81557c2008-04-04 18:42:16 +0000892void AggExprEmitter::VisitInitListExpr(InitListExpr *E) {
Eli Friedmana385b3c2008-12-02 01:17:45 +0000893#if 0
Eli Friedman13a5be12009-12-04 01:30:56 +0000894 // FIXME: Assess perf here? Figure out what cases are worth optimizing here
895 // (Length of globals? Chunks of zeroed-out space?).
Eli Friedmana385b3c2008-12-02 01:17:45 +0000896 //
Mike Stumpf5408fe2009-05-16 07:57:57 +0000897 // If we can, prefer a copy from a global; this is a lot less code for long
898 // globals, and it's easier for the current optimizers to analyze.
Eli Friedman13a5be12009-12-04 01:30:56 +0000899 if (llvm::Constant* C = CGF.CGM.EmitConstantExpr(E, E->getType(), &CGF)) {
Eli Friedman994ffef2008-11-30 02:11:09 +0000900 llvm::GlobalVariable* GV =
Eli Friedman13a5be12009-12-04 01:30:56 +0000901 new llvm::GlobalVariable(CGF.CGM.getModule(), C->getType(), true,
902 llvm::GlobalValue::InternalLinkage, C, "");
Daniel Dunbar79c39282010-08-21 03:15:20 +0000903 EmitFinalDestCopy(E, CGF.MakeAddrLValue(GV, E->getType()));
Eli Friedman994ffef2008-11-30 02:11:09 +0000904 return;
905 }
Eli Friedmana385b3c2008-12-02 01:17:45 +0000906#endif
Chris Lattnerd0db03a2010-09-06 00:11:41 +0000907 if (E->hadArrayRangeDesignator())
Douglas Gregora9c87802009-01-29 19:42:23 +0000908 CGF.ErrorUnsupported(E, "GNU array range designator extension");
Douglas Gregora9c87802009-01-29 19:42:23 +0000909
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000910 if (E->initializesStdInitializerList()) {
Sebastian Redlaf130fd2012-02-19 12:28:02 +0000911 EmitStdInitializerList(Dest.getAddr(), E);
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000912 return;
913 }
914
Eli Friedmanc60ccf52012-02-29 00:00:28 +0000915 llvm::Value *DestPtr = EnsureSlot(E->getType()).getAddr();
John McCall558d2ab2010-09-15 10:14:12 +0000916
Chris Lattnerf81557c2008-04-04 18:42:16 +0000917 // Handle initialization of an array.
918 if (E->getType()->isArrayType()) {
Richard Smithfe587202012-04-15 02:50:59 +0000919 if (E->isStringLiteralInit())
920 return Visit(E->getInit(0));
Eli Friedman922696f2008-05-19 17:51:16 +0000921
Eli Friedman5c89c392012-02-23 02:25:10 +0000922 QualType elementType =
923 CGF.getContext().getAsArrayType(E->getType())->getElementType();
Argyrios Kyrtzidis3b4d4902011-04-28 18:53:58 +0000924
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000925 llvm::PointerType *APType =
926 cast<llvm::PointerType>(DestPtr->getType());
927 llvm::ArrayType *AType =
928 cast<llvm::ArrayType>(APType->getElementType());
Chris Lattner1b726772010-12-02 07:07:26 +0000929
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000930 EmitArrayInit(DestPtr, AType, elementType, E);
Chris Lattnerf81557c2008-04-04 18:42:16 +0000931 return;
932 }
Mike Stump1eb44332009-09-09 15:08:12 +0000933
Chris Lattnerf81557c2008-04-04 18:42:16 +0000934 assert(E->getType()->isRecordType() && "Only support structs/unions here!");
Mike Stump1eb44332009-09-09 15:08:12 +0000935
Chris Lattnerf81557c2008-04-04 18:42:16 +0000936 // Do struct initialization; this code just sets each individual member
937 // to the approprate value. This makes bitfield support automatic;
938 // the disadvantage is that the generated code is more difficult for
939 // the optimizer, especially with bitfields.
940 unsigned NumInitElements = E->getNumInits();
John McCall2b30dcf2011-07-11 19:35:02 +0000941 RecordDecl *record = E->getType()->castAs<RecordType>()->getDecl();
Chris Lattnerbd7de382010-09-06 00:13:11 +0000942
John McCall2b30dcf2011-07-11 19:35:02 +0000943 if (record->isUnion()) {
Douglas Gregor0bb76892009-01-29 16:53:55 +0000944 // Only initialize one field of a union. The field itself is
945 // specified by the initializer list.
946 if (!E->getInitializedFieldInUnion()) {
947 // Empty union; we have nothing to do.
Mike Stump1eb44332009-09-09 15:08:12 +0000948
Douglas Gregor0bb76892009-01-29 16:53:55 +0000949#ifndef NDEBUG
950 // Make sure that it's really an empty and not a failure of
951 // semantic analysis.
John McCall2b30dcf2011-07-11 19:35:02 +0000952 for (RecordDecl::field_iterator Field = record->field_begin(),
953 FieldEnd = record->field_end();
Douglas Gregor0bb76892009-01-29 16:53:55 +0000954 Field != FieldEnd; ++Field)
955 assert(Field->isUnnamedBitfield() && "Only unnamed bitfields allowed");
956#endif
957 return;
958 }
959
960 // FIXME: volatility
961 FieldDecl *Field = E->getInitializedFieldInUnion();
Douglas Gregor0bb76892009-01-29 16:53:55 +0000962
Chris Lattner1b726772010-12-02 07:07:26 +0000963 LValue FieldLoc = CGF.EmitLValueForFieldInitialization(DestPtr, Field, 0);
Douglas Gregor0bb76892009-01-29 16:53:55 +0000964 if (NumInitElements) {
965 // Store the initializer into the field
Chad Rosier649b4a12012-03-29 17:37:10 +0000966 EmitInitializationToLValue(E->getInit(0), FieldLoc);
Douglas Gregor0bb76892009-01-29 16:53:55 +0000967 } else {
Chris Lattner1b726772010-12-02 07:07:26 +0000968 // Default-initialize to null.
John McCalla07398e2011-06-16 04:16:24 +0000969 EmitNullInitializationToLValue(FieldLoc);
Douglas Gregor0bb76892009-01-29 16:53:55 +0000970 }
971
972 return;
973 }
Mike Stump1eb44332009-09-09 15:08:12 +0000974
John McCall2b30dcf2011-07-11 19:35:02 +0000975 // We'll need to enter cleanup scopes in case any of the member
976 // initializers throw an exception.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000977 SmallVector<EHScopeStack::stable_iterator, 16> cleanups;
John McCall6f103ba2011-11-10 10:43:54 +0000978 llvm::Instruction *cleanupDominator = 0;
John McCall2b30dcf2011-07-11 19:35:02 +0000979
Chris Lattnerf81557c2008-04-04 18:42:16 +0000980 // Here we iterate over the fields; this makes it simpler to both
981 // default-initialize fields and skip over unnamed fields.
John McCall2b30dcf2011-07-11 19:35:02 +0000982 unsigned curInitIndex = 0;
983 for (RecordDecl::field_iterator field = record->field_begin(),
984 fieldEnd = record->field_end();
985 field != fieldEnd; ++field) {
986 // We're done once we hit the flexible array member.
987 if (field->getType()->isIncompleteArrayType())
Douglas Gregor44b43212008-12-11 16:49:14 +0000988 break;
989
John McCall2b30dcf2011-07-11 19:35:02 +0000990 // Always skip anonymous bitfields.
991 if (field->isUnnamedBitfield())
Chris Lattnerf81557c2008-04-04 18:42:16 +0000992 continue;
Douglas Gregor34e79462009-01-28 23:36:17 +0000993
John McCall2b30dcf2011-07-11 19:35:02 +0000994 // We're done if we reach the end of the explicit initializers, we
995 // have a zeroed object, and the rest of the fields are
996 // zero-initializable.
997 if (curInitIndex == NumInitElements && Dest.isZeroed() &&
Chris Lattner1b726772010-12-02 07:07:26 +0000998 CGF.getTypes().isZeroInitializable(E->getType()))
999 break;
1000
Eli Friedman1e692ac2008-06-13 23:01:12 +00001001 // FIXME: volatility
John McCall2b30dcf2011-07-11 19:35:02 +00001002 LValue LV = CGF.EmitLValueForFieldInitialization(DestPtr, *field, 0);
Fariborz Jahanian14674ff2009-05-27 19:54:11 +00001003 // We never generate write-barries for initialized fields.
John McCall2b30dcf2011-07-11 19:35:02 +00001004 LV.setNonGC(true);
Chris Lattner1b726772010-12-02 07:07:26 +00001005
John McCall2b30dcf2011-07-11 19:35:02 +00001006 if (curInitIndex < NumInitElements) {
Chris Lattnerb35baae2010-03-08 21:08:07 +00001007 // Store the initializer into the field.
Chad Rosier649b4a12012-03-29 17:37:10 +00001008 EmitInitializationToLValue(E->getInit(curInitIndex++), LV);
Chris Lattnerf81557c2008-04-04 18:42:16 +00001009 } else {
1010 // We're out of initalizers; default-initialize to null
John McCall2b30dcf2011-07-11 19:35:02 +00001011 EmitNullInitializationToLValue(LV);
1012 }
1013
1014 // Push a destructor if necessary.
1015 // FIXME: if we have an array of structures, all explicitly
1016 // initialized, we can end up pushing a linear number of cleanups.
1017 bool pushedCleanup = false;
1018 if (QualType::DestructionKind dtorKind
1019 = field->getType().isDestructedType()) {
1020 assert(LV.isSimple());
1021 if (CGF.needsEHCleanup(dtorKind)) {
John McCall6f103ba2011-11-10 10:43:54 +00001022 if (!cleanupDominator)
1023 cleanupDominator = CGF.Builder.CreateUnreachable(); // placeholder
1024
John McCall2b30dcf2011-07-11 19:35:02 +00001025 CGF.pushDestroy(EHCleanup, LV.getAddress(), field->getType(),
1026 CGF.getDestroyer(dtorKind), false);
1027 cleanups.push_back(CGF.EHStack.stable_begin());
1028 pushedCleanup = true;
1029 }
Chris Lattnerf81557c2008-04-04 18:42:16 +00001030 }
Chris Lattner1b726772010-12-02 07:07:26 +00001031
1032 // If the GEP didn't get used because of a dead zero init or something
1033 // else, clean it up for -O0 builds and general tidiness.
John McCall2b30dcf2011-07-11 19:35:02 +00001034 if (!pushedCleanup && LV.isSimple())
Chris Lattner1b726772010-12-02 07:07:26 +00001035 if (llvm::GetElementPtrInst *GEP =
John McCall2b30dcf2011-07-11 19:35:02 +00001036 dyn_cast<llvm::GetElementPtrInst>(LV.getAddress()))
Chris Lattner1b726772010-12-02 07:07:26 +00001037 if (GEP->use_empty())
1038 GEP->eraseFromParent();
Lauro Ramos Venancio145cd892008-02-19 19:27:31 +00001039 }
John McCall2b30dcf2011-07-11 19:35:02 +00001040
1041 // Deactivate all the partial cleanups in reverse order, which
1042 // generally means popping them.
1043 for (unsigned i = cleanups.size(); i != 0; --i)
John McCall6f103ba2011-11-10 10:43:54 +00001044 CGF.DeactivateCleanupBlock(cleanups[i-1], cleanupDominator);
1045
1046 // Destroy the placeholder if we made one.
1047 if (cleanupDominator)
1048 cleanupDominator->eraseFromParent();
Devang Patel636c3d02007-10-26 17:44:44 +00001049}
1050
Chris Lattneree755f92007-08-21 04:59:27 +00001051//===----------------------------------------------------------------------===//
1052// Entry Points into this File
1053//===----------------------------------------------------------------------===//
1054
Chris Lattner1b726772010-12-02 07:07:26 +00001055/// GetNumNonZeroBytesInInit - Get an approximate count of the number of
1056/// non-zero bytes that will be stored when outputting the initializer for the
1057/// specified initializer expression.
Ken Dyck02c45332011-04-24 17:17:56 +00001058static CharUnits GetNumNonZeroBytesInInit(const Expr *E, CodeGenFunction &CGF) {
Peter Collingbournef111d932011-04-15 00:35:48 +00001059 E = E->IgnoreParens();
Chris Lattner1b726772010-12-02 07:07:26 +00001060
1061 // 0 and 0.0 won't require any non-zero stores!
Ken Dyck02c45332011-04-24 17:17:56 +00001062 if (isSimpleZero(E, CGF)) return CharUnits::Zero();
Chris Lattner1b726772010-12-02 07:07:26 +00001063
1064 // If this is an initlist expr, sum up the size of sizes of the (present)
1065 // elements. If this is something weird, assume the whole thing is non-zero.
1066 const InitListExpr *ILE = dyn_cast<InitListExpr>(E);
1067 if (ILE == 0 || !CGF.getTypes().isZeroInitializable(ILE->getType()))
Ken Dyck02c45332011-04-24 17:17:56 +00001068 return CGF.getContext().getTypeSizeInChars(E->getType());
Chris Lattner1b726772010-12-02 07:07:26 +00001069
Chris Lattnerd1d56df2010-12-02 18:29:00 +00001070 // InitListExprs for structs have to be handled carefully. If there are
1071 // reference members, we need to consider the size of the reference, not the
1072 // referencee. InitListExprs for unions and arrays can't have references.
Chris Lattner8c00ad12010-12-02 22:52:04 +00001073 if (const RecordType *RT = E->getType()->getAs<RecordType>()) {
1074 if (!RT->isUnionType()) {
1075 RecordDecl *SD = E->getType()->getAs<RecordType>()->getDecl();
Ken Dyck02c45332011-04-24 17:17:56 +00001076 CharUnits NumNonZeroBytes = CharUnits::Zero();
Chris Lattner8c00ad12010-12-02 22:52:04 +00001077
1078 unsigned ILEElement = 0;
1079 for (RecordDecl::field_iterator Field = SD->field_begin(),
1080 FieldEnd = SD->field_end(); Field != FieldEnd; ++Field) {
1081 // We're done once we hit the flexible array member or run out of
1082 // InitListExpr elements.
1083 if (Field->getType()->isIncompleteArrayType() ||
1084 ILEElement == ILE->getNumInits())
1085 break;
1086 if (Field->isUnnamedBitfield())
1087 continue;
Chris Lattnerd1d56df2010-12-02 18:29:00 +00001088
Chris Lattner8c00ad12010-12-02 22:52:04 +00001089 const Expr *E = ILE->getInit(ILEElement++);
1090
1091 // Reference values are always non-null and have the width of a pointer.
1092 if (Field->getType()->isReferenceType())
Ken Dyck02c45332011-04-24 17:17:56 +00001093 NumNonZeroBytes += CGF.getContext().toCharUnitsFromBits(
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001094 CGF.getContext().getTargetInfo().getPointerWidth(0));
Chris Lattner8c00ad12010-12-02 22:52:04 +00001095 else
1096 NumNonZeroBytes += GetNumNonZeroBytesInInit(E, CGF);
1097 }
Chris Lattnerd1d56df2010-12-02 18:29:00 +00001098
Chris Lattner8c00ad12010-12-02 22:52:04 +00001099 return NumNonZeroBytes;
Chris Lattnerd1d56df2010-12-02 18:29:00 +00001100 }
Chris Lattnerd1d56df2010-12-02 18:29:00 +00001101 }
1102
1103
Ken Dyck02c45332011-04-24 17:17:56 +00001104 CharUnits NumNonZeroBytes = CharUnits::Zero();
Chris Lattner1b726772010-12-02 07:07:26 +00001105 for (unsigned i = 0, e = ILE->getNumInits(); i != e; ++i)
1106 NumNonZeroBytes += GetNumNonZeroBytesInInit(ILE->getInit(i), CGF);
1107 return NumNonZeroBytes;
1108}
1109
1110/// CheckAggExprForMemSetUse - If the initializer is large and has a lot of
1111/// zeros in it, emit a memset and avoid storing the individual zeros.
1112///
1113static void CheckAggExprForMemSetUse(AggValueSlot &Slot, const Expr *E,
1114 CodeGenFunction &CGF) {
1115 // If the slot is already known to be zeroed, nothing to do. Don't mess with
1116 // volatile stores.
1117 if (Slot.isZeroed() || Slot.isVolatile() || Slot.getAddr() == 0) return;
Argyrios Kyrtzidis657baf12011-04-28 22:57:55 +00001118
1119 // C++ objects with a user-declared constructor don't need zero'ing.
David Blaikie4e4d0842012-03-11 07:00:24 +00001120 if (CGF.getContext().getLangOpts().CPlusPlus)
Argyrios Kyrtzidis657baf12011-04-28 22:57:55 +00001121 if (const RecordType *RT = CGF.getContext()
1122 .getBaseElementType(E->getType())->getAs<RecordType>()) {
1123 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
1124 if (RD->hasUserDeclaredConstructor())
1125 return;
1126 }
1127
Chris Lattner1b726772010-12-02 07:07:26 +00001128 // If the type is 16-bytes or smaller, prefer individual stores over memset.
Ken Dyck5ff1a352011-04-24 17:25:32 +00001129 std::pair<CharUnits, CharUnits> TypeInfo =
1130 CGF.getContext().getTypeInfoInChars(E->getType());
1131 if (TypeInfo.first <= CharUnits::fromQuantity(16))
Chris Lattner1b726772010-12-02 07:07:26 +00001132 return;
1133
1134 // Check to see if over 3/4 of the initializer are known to be zero. If so,
1135 // we prefer to emit memset + individual stores for the rest.
Ken Dyck5ff1a352011-04-24 17:25:32 +00001136 CharUnits NumNonZeroBytes = GetNumNonZeroBytesInInit(E, CGF);
1137 if (NumNonZeroBytes*4 > TypeInfo.first)
Chris Lattner1b726772010-12-02 07:07:26 +00001138 return;
1139
1140 // Okay, it seems like a good idea to use an initial memset, emit the call.
Ken Dyck5ff1a352011-04-24 17:25:32 +00001141 llvm::Constant *SizeVal = CGF.Builder.getInt64(TypeInfo.first.getQuantity());
1142 CharUnits Align = TypeInfo.second;
Chris Lattner1b726772010-12-02 07:07:26 +00001143
1144 llvm::Value *Loc = Slot.getAddr();
Chris Lattner1b726772010-12-02 07:07:26 +00001145
Chris Lattner8b418682012-02-07 00:39:47 +00001146 Loc = CGF.Builder.CreateBitCast(Loc, CGF.Int8PtrTy);
Ken Dyck5ff1a352011-04-24 17:25:32 +00001147 CGF.Builder.CreateMemSet(Loc, CGF.Builder.getInt8(0), SizeVal,
1148 Align.getQuantity(), false);
Chris Lattner1b726772010-12-02 07:07:26 +00001149
1150 // Tell the AggExprEmitter that the slot is known zero.
1151 Slot.setZeroed();
1152}
1153
1154
1155
1156
Mike Stumpe1129a92009-05-26 18:57:45 +00001157/// EmitAggExpr - Emit the computation of the specified expression of aggregate
1158/// type. The result is computed into DestPtr. Note that if DestPtr is null,
1159/// the value of the aggregate expression is not needed. If VolatileDest is
1160/// true, DestPtr cannot be 0.
John McCall558d2ab2010-09-15 10:14:12 +00001161///
1162/// \param IsInitializer - true if this evaluation is initializing an
1163/// object whose lifetime is already being managed.
John McCall558d2ab2010-09-15 10:14:12 +00001164void CodeGenFunction::EmitAggExpr(const Expr *E, AggValueSlot Slot,
Fariborz Jahanian474e2fe2010-09-16 00:20:07 +00001165 bool IgnoreResult) {
Chris Lattneree755f92007-08-21 04:59:27 +00001166 assert(E && hasAggregateLLVMType(E->getType()) &&
1167 "Invalid aggregate expression to emit");
Chris Lattner1b726772010-12-02 07:07:26 +00001168 assert((Slot.getAddr() != 0 || Slot.isIgnored()) &&
1169 "slot has bits but no address");
Mike Stump1eb44332009-09-09 15:08:12 +00001170
Chris Lattner1b726772010-12-02 07:07:26 +00001171 // Optimize the slot if possible.
1172 CheckAggExprForMemSetUse(Slot, E, *this);
1173
1174 AggExprEmitter(*this, Slot, IgnoreResult).Visit(const_cast<Expr*>(E));
Chris Lattneree755f92007-08-21 04:59:27 +00001175}
Daniel Dunbar7482d122008-09-09 20:49:46 +00001176
Daniel Dunbar18aba0d2010-02-05 19:38:31 +00001177LValue CodeGenFunction::EmitAggExprToLValue(const Expr *E) {
1178 assert(hasAggregateLLVMType(E->getType()) && "Invalid argument!");
Daniel Dunbar195337d2010-02-09 02:48:28 +00001179 llvm::Value *Temp = CreateMemTemp(E->getType());
Daniel Dunbar79c39282010-08-21 03:15:20 +00001180 LValue LV = MakeAddrLValue(Temp, E->getType());
John McCall7c2349b2011-08-25 20:40:09 +00001181 EmitAggExpr(E, AggValueSlot::forLValue(LV, AggValueSlot::IsNotDestructed,
John McCall44184392011-08-26 07:31:35 +00001182 AggValueSlot::DoesNotNeedGCBarriers,
Chad Rosier649b4a12012-03-29 17:37:10 +00001183 AggValueSlot::IsNotAliased));
Daniel Dunbar79c39282010-08-21 03:15:20 +00001184 return LV;
Daniel Dunbar18aba0d2010-02-05 19:38:31 +00001185}
1186
Chad Rosier649b4a12012-03-29 17:37:10 +00001187void CodeGenFunction::EmitAggregateCopy(llvm::Value *DestPtr,
1188 llvm::Value *SrcPtr, QualType Ty,
1189 bool isVolatile, unsigned Alignment) {
1190 assert(!Ty->isAnyComplexType() && "Shouldn't happen for complex");
Mike Stump1eb44332009-09-09 15:08:12 +00001191
David Blaikie4e4d0842012-03-11 07:00:24 +00001192 if (getContext().getLangOpts().CPlusPlus) {
Chad Rosier649b4a12012-03-29 17:37:10 +00001193 if (const RecordType *RT = Ty->getAs<RecordType>()) {
1194 CXXRecordDecl *Record = cast<CXXRecordDecl>(RT->getDecl());
1195 assert((Record->hasTrivialCopyConstructor() ||
1196 Record->hasTrivialCopyAssignment() ||
1197 Record->hasTrivialMoveConstructor() ||
1198 Record->hasTrivialMoveAssignment()) &&
Douglas Gregore9979482010-05-20 15:39:01 +00001199 "Trying to aggregate-copy a type without a trivial copy "
1200 "constructor or assignment operator");
Chad Rosier649b4a12012-03-29 17:37:10 +00001201 // Ignore empty classes in C++.
1202 if (Record->isEmpty())
Anders Carlsson0d7c5832010-05-03 01:20:20 +00001203 return;
1204 }
1205 }
1206
Chris Lattner83c96292009-02-28 18:31:01 +00001207 // Aggregate assignment turns into llvm.memcpy. This is almost valid per
Chris Lattnerca4fc2c2009-02-28 18:18:58 +00001208 // C99 6.5.16.1p3, which states "If the value being stored in an object is
1209 // read from another object that overlaps in anyway the storage of the first
1210 // object, then the overlap shall be exact and the two objects shall have
1211 // qualified or unqualified versions of a compatible type."
1212 //
Chris Lattner83c96292009-02-28 18:31:01 +00001213 // memcpy is not defined if the source and destination pointers are exactly
Chris Lattnerca4fc2c2009-02-28 18:18:58 +00001214 // equal, but other compilers do this optimization, and almost every memcpy
1215 // implementation handles this case safely. If there is a libc that does not
1216 // safely handle this, we can add a target hook.
Chad Rosier649b4a12012-03-29 17:37:10 +00001217
1218 // Get size and alignment info for this aggregate.
1219 std::pair<CharUnits, CharUnits> TypeInfo =
1220 getContext().getTypeInfoInChars(Ty);
1221
1222 if (!Alignment)
1223 Alignment = TypeInfo.second.getQuantity();
1224
1225 // FIXME: Handle variable sized types.
1226
1227 // FIXME: If we have a volatile struct, the optimizer can remove what might
1228 // appear to be `extra' memory ops:
1229 //
1230 // volatile struct { int i; } a, b;
1231 //
1232 // int main() {
1233 // a = b;
1234 // a = b;
1235 // }
1236 //
1237 // we need to use a different call here. We use isVolatile to indicate when
1238 // either the source or the destination is volatile.
1239
1240 llvm::PointerType *DPT = cast<llvm::PointerType>(DestPtr->getType());
1241 llvm::Type *DBP =
1242 llvm::Type::getInt8PtrTy(getLLVMContext(), DPT->getAddressSpace());
1243 DestPtr = Builder.CreateBitCast(DestPtr, DBP);
1244
1245 llvm::PointerType *SPT = cast<llvm::PointerType>(SrcPtr->getType());
1246 llvm::Type *SBP =
1247 llvm::Type::getInt8PtrTy(getLLVMContext(), SPT->getAddressSpace());
1248 SrcPtr = Builder.CreateBitCast(SrcPtr, SBP);
1249
1250 // Don't do any of the memmove_collectable tests if GC isn't set.
1251 if (CGM.getLangOpts().getGC() == LangOptions::NonGC) {
1252 // fall through
1253 } else if (const RecordType *RecordTy = Ty->getAs<RecordType>()) {
1254 RecordDecl *Record = RecordTy->getDecl();
1255 if (Record->hasObjectMember()) {
1256 CharUnits size = TypeInfo.first;
1257 llvm::Type *SizeTy = ConvertType(getContext().getSizeType());
1258 llvm::Value *SizeVal = llvm::ConstantInt::get(SizeTy, size.getQuantity());
1259 CGM.getObjCRuntime().EmitGCMemmoveCollectable(*this, DestPtr, SrcPtr,
1260 SizeVal);
1261 return;
1262 }
1263 } else if (Ty->isArrayType()) {
1264 QualType BaseType = getContext().getBaseElementType(Ty);
1265 if (const RecordType *RecordTy = BaseType->getAs<RecordType>()) {
1266 if (RecordTy->getDecl()->hasObjectMember()) {
1267 CharUnits size = TypeInfo.first;
1268 llvm::Type *SizeTy = ConvertType(getContext().getSizeType());
1269 llvm::Value *SizeVal =
1270 llvm::ConstantInt::get(SizeTy, size.getQuantity());
1271 CGM.getObjCRuntime().EmitGCMemmoveCollectable(*this, DestPtr, SrcPtr,
1272 SizeVal);
1273 return;
1274 }
1275 }
1276 }
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00001277
Chad Rosier649b4a12012-03-29 17:37:10 +00001278 Builder.CreateMemCpy(DestPtr, SrcPtr,
1279 llvm::ConstantInt::get(IntPtrTy,
1280 TypeInfo.first.getQuantity()),
1281 Alignment, isVolatile);
Daniel Dunbar7482d122008-09-09 20:49:46 +00001282}
Sebastian Redl32cf1f22012-02-17 08:42:25 +00001283
Sebastian Redl972edf02012-02-19 16:03:09 +00001284void CodeGenFunction::MaybeEmitStdInitializerListCleanup(llvm::Value *loc,
1285 const Expr *init) {
Sebastian Redl32cf1f22012-02-17 08:42:25 +00001286 const ExprWithCleanups *cleanups = dyn_cast<ExprWithCleanups>(init);
Sebastian Redl972edf02012-02-19 16:03:09 +00001287 if (cleanups)
1288 init = cleanups->getSubExpr();
Sebastian Redl32cf1f22012-02-17 08:42:25 +00001289
1290 if (isa<InitListExpr>(init) &&
1291 cast<InitListExpr>(init)->initializesStdInitializerList()) {
1292 // We initialized this std::initializer_list with an initializer list.
1293 // A backing array was created. Push a cleanup for it.
Sebastian Redl972edf02012-02-19 16:03:09 +00001294 EmitStdInitializerListCleanup(loc, cast<InitListExpr>(init));
Sebastian Redl32cf1f22012-02-17 08:42:25 +00001295 }
1296}
1297
Sebastian Redlaf130fd2012-02-19 12:28:02 +00001298static void EmitRecursiveStdInitializerListCleanup(CodeGenFunction &CGF,
1299 llvm::Value *arrayStart,
1300 const InitListExpr *init) {
1301 // Check if there are any recursive cleanups to do, i.e. if we have
1302 // std::initializer_list<std::initializer_list<obj>> list = {{obj()}};
1303 // then we need to destroy the inner array as well.
1304 for (unsigned i = 0, e = init->getNumInits(); i != e; ++i) {
1305 const InitListExpr *subInit = dyn_cast<InitListExpr>(init->getInit(i));
1306 if (!subInit || !subInit->initializesStdInitializerList())
1307 continue;
1308
1309 // This one needs to be destroyed. Get the address of the std::init_list.
1310 llvm::Value *offset = llvm::ConstantInt::get(CGF.SizeTy, i);
1311 llvm::Value *loc = CGF.Builder.CreateInBoundsGEP(arrayStart, offset,
1312 "std.initlist");
1313 CGF.EmitStdInitializerListCleanup(loc, subInit);
1314 }
1315}
1316
1317void CodeGenFunction::EmitStdInitializerListCleanup(llvm::Value *loc,
Sebastian Redl32cf1f22012-02-17 08:42:25 +00001318 const InitListExpr *init) {
1319 ASTContext &ctx = getContext();
1320 QualType element = GetStdInitializerListElementType(init->getType());
1321 unsigned numInits = init->getNumInits();
1322 llvm::APInt size(ctx.getTypeSize(ctx.getSizeType()), numInits);
1323 QualType array =ctx.getConstantArrayType(element, size, ArrayType::Normal, 0);
1324 QualType arrayPtr = ctx.getPointerType(array);
1325 llvm::Type *arrayPtrType = ConvertType(arrayPtr);
1326
1327 // lvalue is the location of a std::initializer_list, which as its first
1328 // element has a pointer to the array we want to destroy.
Sebastian Redlaf130fd2012-02-19 12:28:02 +00001329 llvm::Value *startPointer = Builder.CreateStructGEP(loc, 0, "startPointer");
1330 llvm::Value *startAddress = Builder.CreateLoad(startPointer, "startAddress");
Sebastian Redl32cf1f22012-02-17 08:42:25 +00001331
Sebastian Redlaf130fd2012-02-19 12:28:02 +00001332 ::EmitRecursiveStdInitializerListCleanup(*this, startAddress, init);
1333
1334 llvm::Value *arrayAddress =
1335 Builder.CreateBitCast(startAddress, arrayPtrType, "arrayAddress");
Sebastian Redl32cf1f22012-02-17 08:42:25 +00001336 ::EmitStdInitializerListCleanup(*this, array, arrayAddress, init);
1337}