blob: 6ea21ec47aa5a2240df9ddff3cfe9be9c5009da2 [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) {
Douglas Gregore289d812011-09-13 17:21:33 +000088 if (CGF.getLangOptions().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.
Seo Sanghyeon9b73b392007-12-14 02:04:12 +0000112 void VisitDeclRefExpr(DeclRefExpr *DRE) { EmitAggLoadOfLValue(DRE); }
113 void VisitMemberExpr(MemberExpr *ME) { EmitAggLoadOfLValue(ME); }
114 void VisitUnaryDeref(UnaryOperator *E) { EmitAggLoadOfLValue(E); }
Daniel Dunbar5be028f2010-01-04 18:47:06 +0000115 void VisitStringLiteral(StringLiteral *E) { EmitAggLoadOfLValue(E); }
Douglas Gregor751ec9b2011-06-17 04:59:12 +0000116 void VisitCompoundLiteralExpr(CompoundLiteralExpr *E);
Seo Sanghyeon9b73b392007-12-14 02:04:12 +0000117 void VisitArraySubscriptExpr(ArraySubscriptExpr *E) {
118 EmitAggLoadOfLValue(E);
119 }
Chris Lattnerf0a990c2009-04-21 23:00:09 +0000120 void VisitBlockDeclRefExpr(const BlockDeclRefExpr *E) {
Mike Stump1eb44332009-09-09 15:08:12 +0000121 EmitAggLoadOfLValue(E);
Chris Lattnerf0a990c2009-04-21 23:00:09 +0000122 }
123 void VisitPredefinedExpr(const PredefinedExpr *E) {
Mike Stump1eb44332009-09-09 15:08:12 +0000124 EmitAggLoadOfLValue(E);
Chris Lattnerf0a990c2009-04-21 23:00:09 +0000125 }
Mike Stump1eb44332009-09-09 15:08:12 +0000126
Chris Lattner9c033562007-08-21 04:25:47 +0000127 // Operators.
Anders Carlsson4d8673b2009-08-07 23:22:37 +0000128 void VisitCastExpr(CastExpr *E);
Anders Carlsson148fe672007-10-31 22:04:46 +0000129 void VisitCallExpr(const CallExpr *E);
Chris Lattnerb2d963f2007-08-31 22:54:14 +0000130 void VisitStmtExpr(const StmtExpr *E);
Chris Lattner9c033562007-08-21 04:25:47 +0000131 void VisitBinaryOperator(const BinaryOperator *BO);
Fariborz Jahanian8bfd31f2009-10-22 22:57:31 +0000132 void VisitPointerToDataMemberBinaryOperator(const BinaryOperator *BO);
Chris Lattner03d6fb92007-08-21 04:43:17 +0000133 void VisitBinAssign(const BinaryOperator *E);
Eli Friedman07fa52a2008-05-20 07:56:31 +0000134 void VisitBinComma(const BinaryOperator *E);
Chris Lattner9c033562007-08-21 04:25:47 +0000135
Chris Lattner8fdf3282008-06-24 17:04:18 +0000136 void VisitObjCMessageExpr(ObjCMessageExpr *E);
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000137 void VisitObjCIvarRefExpr(ObjCIvarRefExpr *E) {
138 EmitAggLoadOfLValue(E);
139 }
Mike Stump1eb44332009-09-09 15:08:12 +0000140
John McCall56ca35d2011-02-17 10:25:35 +0000141 void VisitAbstractConditionalOperator(const AbstractConditionalOperator *CO);
Anders Carlssona294ca82009-07-08 18:33:14 +0000142 void VisitChooseExpr(const ChooseExpr *CE);
Devang Patel636c3d02007-10-26 17:44:44 +0000143 void VisitInitListExpr(InitListExpr *E);
Anders Carlsson30311fa2009-12-16 06:57:54 +0000144 void VisitImplicitValueInitExpr(ImplicitValueInitExpr *E);
Chris Lattner04421082008-04-08 04:40:51 +0000145 void VisitCXXDefaultArgExpr(CXXDefaultArgExpr *DAE) {
146 Visit(DAE->getExpr());
147 }
Anders Carlssonb58d0172009-05-30 23:23:33 +0000148 void VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E);
Anders Carlsson31ccf372009-05-03 17:47:16 +0000149 void VisitCXXConstructExpr(const CXXConstructExpr *E);
Eli Friedman4c5d8af2012-02-09 03:32:31 +0000150 void VisitLambdaExpr(LambdaExpr *E);
John McCall4765fa02010-12-06 08:20:24 +0000151 void VisitExprWithCleanups(ExprWithCleanups *E);
Douglas Gregored8abf12010-07-08 06:14:04 +0000152 void VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *E);
Mike Stump2710c412009-11-18 00:40:12 +0000153 void VisitCXXTypeidExpr(CXXTypeidExpr *E) { EmitAggLoadOfLValue(E); }
Douglas Gregor03e80032011-06-21 17:03:29 +0000154 void VisitMaterializeTemporaryExpr(MaterializeTemporaryExpr *E);
John McCalle996ffd2011-02-16 08:02:54 +0000155 void VisitOpaqueValueExpr(OpaqueValueExpr *E);
156
John McCall4b9c2d22011-11-06 09:01:30 +0000157 void VisitPseudoObjectExpr(PseudoObjectExpr *E) {
158 if (E->isGLValue()) {
159 LValue LV = CGF.EmitPseudoObjectLValue(E);
160 return EmitFinalDestCopy(E, LV);
161 }
162
163 CGF.EmitPseudoObjectRValue(E, EnsureSlot(E->getType()));
164 }
165
Eli Friedmanb1851242008-05-27 15:51:49 +0000166 void VisitVAArgExpr(VAArgExpr *E);
Chris Lattnerf81557c2008-04-04 18:42:16 +0000167
John McCalla07398e2011-06-16 04:16:24 +0000168 void EmitInitializationToLValue(Expr *E, LValue Address);
169 void EmitNullInitializationToLValue(LValue Address);
Chris Lattner9c033562007-08-21 04:25:47 +0000170 // case Expr::ChooseExprClass:
Mike Stump39406b12009-12-09 19:24:08 +0000171 void VisitCXXThrowExpr(const CXXThrowExpr *E) { CGF.EmitCXXThrowExpr(E); }
Eli Friedman276b0612011-10-11 02:20:01 +0000172 void VisitAtomicExpr(AtomicExpr *E) {
173 CGF.EmitAtomicExpr(E, EnsureSlot(E->getType()).getAddr());
174 }
Chris Lattner9c033562007-08-21 04:25:47 +0000175};
176} // end anonymous namespace.
177
Chris Lattneree755f92007-08-21 04:59:27 +0000178//===----------------------------------------------------------------------===//
179// Utilities
180//===----------------------------------------------------------------------===//
Chris Lattner9c033562007-08-21 04:25:47 +0000181
Chris Lattner883f6a72007-08-11 00:04:45 +0000182/// EmitAggLoadOfLValue - Given an expression with aggregate type that
183/// represents a value lvalue, this method emits the address of the lvalue,
184/// then loads the result into DestPtr.
Chris Lattner9c033562007-08-21 04:25:47 +0000185void AggExprEmitter::EmitAggLoadOfLValue(const Expr *E) {
186 LValue LV = CGF.EmitLValue(E);
Mike Stump4ac20dd2009-05-23 20:28:01 +0000187 EmitFinalDestCopy(E, LV);
188}
189
John McCallfa037bd2010-05-22 22:13:32 +0000190/// \brief True if the given aggregate type requires special GC API calls.
191bool AggExprEmitter::TypeRequiresGCollection(QualType T) {
192 // Only record types have members that might require garbage collection.
193 const RecordType *RecordTy = T->getAs<RecordType>();
194 if (!RecordTy) return false;
195
196 // Don't mess with non-trivial C++ types.
197 RecordDecl *Record = RecordTy->getDecl();
198 if (isa<CXXRecordDecl>(Record) &&
199 (!cast<CXXRecordDecl>(Record)->hasTrivialCopyConstructor() ||
200 !cast<CXXRecordDecl>(Record)->hasTrivialDestructor()))
201 return false;
202
203 // Check whether the type has an object member.
204 return Record->hasObjectMember();
205}
206
John McCall410ffb22011-08-25 23:04:34 +0000207/// \brief Perform the final move to DestPtr if for some reason
208/// getReturnValueSlot() didn't use it directly.
John McCallfa037bd2010-05-22 22:13:32 +0000209///
210/// The idea is that you do something like this:
211/// RValue Result = EmitSomething(..., getReturnValueSlot());
John McCall410ffb22011-08-25 23:04:34 +0000212/// EmitMoveFromReturnSlot(E, Result);
213///
214/// If nothing interferes, this will cause the result to be emitted
215/// directly into the return value slot. Otherwise, a final move
216/// will be performed.
217void AggExprEmitter::EmitMoveFromReturnSlot(const Expr *E, RValue Src) {
218 if (shouldUseDestForReturnSlot()) {
219 // Logically, Dest.getAddr() should equal Src.getAggregateAddr().
220 // The possibility of undef rvalues complicates that a lot,
221 // though, so we can't really assert.
222 return;
Fariborz Jahanian55bcace2010-06-15 22:44:06 +0000223 }
John McCall410ffb22011-08-25 23:04:34 +0000224
225 // Otherwise, do a final copy,
226 assert(Dest.getAddr() != Src.getAggregateAddr());
227 EmitFinalDestCopy(E, Src, /*Ignore*/ true);
John McCallfa037bd2010-05-22 22:13:32 +0000228}
229
Mike Stump4ac20dd2009-05-23 20:28:01 +0000230/// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
Eli Friedmanbd7d8282011-12-05 22:23:28 +0000231void AggExprEmitter::EmitFinalDestCopy(const Expr *E, RValue Src, bool Ignore,
232 unsigned Alignment) {
Mike Stump4ac20dd2009-05-23 20:28:01 +0000233 assert(Src.isAggregate() && "value must be aggregate value!");
234
John McCall558d2ab2010-09-15 10:14:12 +0000235 // If Dest is ignored, then we're evaluating an aggregate expression
John McCalla8f28da2010-08-25 02:50:31 +0000236 // in a context (like an expression statement) that doesn't care
237 // about the result. C says that an lvalue-to-rvalue conversion is
238 // performed in these cases; C++ says that it is not. In either
239 // case, we don't actually need to do anything unless the value is
240 // volatile.
John McCall558d2ab2010-09-15 10:14:12 +0000241 if (Dest.isIgnored()) {
John McCalla8f28da2010-08-25 02:50:31 +0000242 if (!Src.isVolatileQualified() ||
243 CGF.CGM.getLangOptions().CPlusPlus ||
244 (IgnoreResult && Ignore))
Mike Stump9ccb1032009-05-23 22:01:27 +0000245 return;
Fariborz Jahanian8a970052010-10-22 22:05:03 +0000246
Mike Stump49d1cd52009-05-26 22:03:21 +0000247 // If the source is volatile, we must read from it; to do that, we need
248 // some place to put it.
John McCall558d2ab2010-09-15 10:14:12 +0000249 Dest = CGF.CreateAggTemp(E->getType(), "agg.tmp");
Mike Stump9ccb1032009-05-23 22:01:27 +0000250 }
Chris Lattner883f6a72007-08-11 00:04:45 +0000251
John McCalld1a5f132010-09-16 03:13:23 +0000252 if (Dest.requiresGCollection()) {
Ken Dyck479b61c2011-04-24 17:08:00 +0000253 CharUnits size = CGF.getContext().getTypeSizeInChars(E->getType());
Chris Lattner2acc6e32011-07-18 04:24:23 +0000254 llvm::Type *SizeTy = CGF.ConvertType(CGF.getContext().getSizeType());
Ken Dyck479b61c2011-04-24 17:08:00 +0000255 llvm::Value *SizeVal = llvm::ConstantInt::get(SizeTy, size.getQuantity());
Fariborz Jahanian08c32132009-08-31 19:33:16 +0000256 CGF.CGM.getObjCRuntime().EmitGCMemmoveCollectable(CGF,
John McCall558d2ab2010-09-15 10:14:12 +0000257 Dest.getAddr(),
258 Src.getAggregateAddr(),
259 SizeVal);
Fariborz Jahanian08c32132009-08-31 19:33:16 +0000260 return;
261 }
Mike Stump4ac20dd2009-05-23 20:28:01 +0000262 // If the result of the assignment is used, copy the LHS there also.
263 // FIXME: Pass VolatileDest as well. I think we also need to merge volatile
264 // from the source as well, as we can't eliminate it if either operand
265 // is volatile, unless copy has volatile for both source and destination..
John McCall558d2ab2010-09-15 10:14:12 +0000266 CGF.EmitAggregateCopy(Dest.getAddr(), Src.getAggregateAddr(), E->getType(),
Eli Friedmanbd7d8282011-12-05 22:23:28 +0000267 Dest.isVolatile()|Src.isVolatileQualified(),
268 Alignment);
Mike Stump4ac20dd2009-05-23 20:28:01 +0000269}
270
271/// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
Mike Stump49d1cd52009-05-26 22:03:21 +0000272void AggExprEmitter::EmitFinalDestCopy(const Expr *E, LValue Src, bool Ignore) {
Mike Stump4ac20dd2009-05-23 20:28:01 +0000273 assert(Src.isSimple() && "Can't have aggregate bitfield, vector, etc");
274
Eli Friedmanbd7d8282011-12-05 22:23:28 +0000275 CharUnits Alignment = std::min(Src.getAlignment(), Dest.getAlignment());
276 EmitFinalDestCopy(E, Src.asAggregateRValue(), Ignore, Alignment.getQuantity());
Chris Lattner883f6a72007-08-11 00:04:45 +0000277}
278
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000279static QualType GetStdInitializerListElementType(QualType T) {
280 // Just assume that this is really std::initializer_list.
281 ClassTemplateSpecializationDecl *specialization =
282 cast<ClassTemplateSpecializationDecl>(T->castAs<RecordType>()->getDecl());
283 return specialization->getTemplateArgs()[0].getAsType();
284}
285
286/// \brief Prepare cleanup for the temporary array.
287static void EmitStdInitializerListCleanup(CodeGenFunction &CGF,
288 QualType arrayType,
289 llvm::Value *addr,
290 const InitListExpr *initList) {
291 QualType::DestructionKind dtorKind = arrayType.isDestructedType();
292 if (!dtorKind)
293 return; // Type doesn't need destroying.
294 if (dtorKind != QualType::DK_cxx_destructor) {
295 CGF.ErrorUnsupported(initList, "ObjC ARC type in initializer_list");
296 return;
297 }
298
299 CodeGenFunction::Destroyer *destroyer = CGF.getDestroyer(dtorKind);
300 CGF.pushDestroy(NormalAndEHCleanup, addr, arrayType, destroyer,
301 /*EHCleanup=*/true);
302}
303
304/// \brief Emit the initializer for a std::initializer_list initialized with a
305/// real initializer list.
Sebastian Redlaf130fd2012-02-19 12:28:02 +0000306void AggExprEmitter::EmitStdInitializerList(llvm::Value *destPtr,
307 InitListExpr *initList) {
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000308 // We emit an array containing the elements, then have the init list point
309 // at the array.
310 ASTContext &ctx = CGF.getContext();
311 unsigned numInits = initList->getNumInits();
312 QualType element = GetStdInitializerListElementType(initList->getType());
313 llvm::APInt size(ctx.getTypeSize(ctx.getSizeType()), numInits);
314 QualType array = ctx.getConstantArrayType(element, size, ArrayType::Normal,0);
315 llvm::Type *LTy = CGF.ConvertTypeForMem(array);
316 llvm::AllocaInst *alloc = CGF.CreateTempAlloca(LTy);
317 alloc->setAlignment(ctx.getTypeAlignInChars(array).getQuantity());
318 alloc->setName(".initlist.");
319
320 EmitArrayInit(alloc, cast<llvm::ArrayType>(LTy), element, initList);
321
322 // FIXME: The diagnostics are somewhat out of place here.
323 RecordDecl *record = initList->getType()->castAs<RecordType>()->getDecl();
324 RecordDecl::field_iterator field = record->field_begin();
325 if (field == record->field_end()) {
326 CGF.ErrorUnsupported(initList, "weird std::initializer_list");
327 }
328
329 QualType elementPtr = ctx.getPointerType(element.withConst());
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000330
331 // Start pointer.
332 if (!ctx.hasSameType(field->getType(), elementPtr)) {
333 CGF.ErrorUnsupported(initList, "weird std::initializer_list");
334 }
335 LValue start = CGF.EmitLValueForFieldInitialization(destPtr, *field, 0);
336 llvm::Value *arrayStart = Builder.CreateStructGEP(alloc, 0, "arraystart");
337 CGF.EmitStoreThroughLValue(RValue::get(arrayStart), start);
338 ++field;
339
340 if (field == record->field_end()) {
341 CGF.ErrorUnsupported(initList, "weird std::initializer_list");
342 }
343 LValue endOrLength = CGF.EmitLValueForFieldInitialization(destPtr, *field, 0);
344 if (ctx.hasSameType(field->getType(), elementPtr)) {
345 // End pointer.
346 llvm::Value *arrayEnd = Builder.CreateStructGEP(alloc,numInits, "arrayend");
347 CGF.EmitStoreThroughLValue(RValue::get(arrayEnd), endOrLength);
348 } else if(ctx.hasSameType(field->getType(), ctx.getSizeType())) {
349 // Length.
350 CGF.EmitStoreThroughLValue(RValue::get(Builder.getInt(size)), endOrLength);
351 } else {
352 CGF.ErrorUnsupported(initList, "weird std::initializer_list");
353 }
354
355 if (!Dest.isExternallyDestructed())
356 EmitStdInitializerListCleanup(CGF, array, alloc, initList);
357}
358
359/// \brief Emit initialization of an array from an initializer list.
360void AggExprEmitter::EmitArrayInit(llvm::Value *DestPtr, llvm::ArrayType *AType,
361 QualType elementType, InitListExpr *E) {
362 uint64_t NumInitElements = E->getNumInits();
363
364 uint64_t NumArrayElements = AType->getNumElements();
365 assert(NumInitElements <= NumArrayElements);
366
367 // DestPtr is an array*. Construct an elementType* by drilling
368 // down a level.
369 llvm::Value *zero = llvm::ConstantInt::get(CGF.SizeTy, 0);
370 llvm::Value *indices[] = { zero, zero };
371 llvm::Value *begin =
372 Builder.CreateInBoundsGEP(DestPtr, indices, "arrayinit.begin");
373
374 // Exception safety requires us to destroy all the
375 // already-constructed members if an initializer throws.
376 // For that, we'll need an EH cleanup.
377 QualType::DestructionKind dtorKind = elementType.isDestructedType();
378 llvm::AllocaInst *endOfInit = 0;
379 EHScopeStack::stable_iterator cleanup;
380 llvm::Instruction *cleanupDominator = 0;
381 if (CGF.needsEHCleanup(dtorKind)) {
382 // In principle we could tell the cleanup where we are more
383 // directly, but the control flow can get so varied here that it
384 // would actually be quite complex. Therefore we go through an
385 // alloca.
386 endOfInit = CGF.CreateTempAlloca(begin->getType(),
387 "arrayinit.endOfInit");
388 cleanupDominator = Builder.CreateStore(begin, endOfInit);
389 CGF.pushIrregularPartialArrayCleanup(begin, endOfInit, elementType,
390 CGF.getDestroyer(dtorKind));
391 cleanup = CGF.EHStack.stable_begin();
392
393 // Otherwise, remember that we didn't need a cleanup.
394 } else {
395 dtorKind = QualType::DK_none;
396 }
397
398 llvm::Value *one = llvm::ConstantInt::get(CGF.SizeTy, 1);
399
400 // The 'current element to initialize'. The invariants on this
401 // variable are complicated. Essentially, after each iteration of
402 // the loop, it points to the last initialized element, except
403 // that it points to the beginning of the array before any
404 // elements have been initialized.
405 llvm::Value *element = begin;
406
407 // Emit the explicit initializers.
408 for (uint64_t i = 0; i != NumInitElements; ++i) {
409 // Advance to the next element.
410 if (i > 0) {
411 element = Builder.CreateInBoundsGEP(element, one, "arrayinit.element");
412
413 // Tell the cleanup that it needs to destroy up to this
414 // element. TODO: some of these stores can be trivially
415 // observed to be unnecessary.
416 if (endOfInit) Builder.CreateStore(element, endOfInit);
417 }
418
Sebastian Redlaf130fd2012-02-19 12:28:02 +0000419 // If these are nested std::initializer_list inits, do them directly,
420 // because they are conceptually the same "location".
421 InitListExpr *initList = dyn_cast<InitListExpr>(E->getInit(i));
422 if (initList && initList->initializesStdInitializerList()) {
423 EmitStdInitializerList(element, initList);
424 } else {
425 LValue elementLV = CGF.MakeAddrLValue(element, elementType);
426 EmitInitializationToLValue(E->getInit(i), elementLV);
427 }
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000428 }
429
430 // Check whether there's a non-trivial array-fill expression.
431 // Note that this will be a CXXConstructExpr even if the element
432 // type is an array (or array of array, etc.) of class type.
433 Expr *filler = E->getArrayFiller();
434 bool hasTrivialFiller = true;
435 if (CXXConstructExpr *cons = dyn_cast_or_null<CXXConstructExpr>(filler)) {
436 assert(cons->getConstructor()->isDefaultConstructor());
437 hasTrivialFiller = cons->getConstructor()->isTrivial();
438 }
439
440 // Any remaining elements need to be zero-initialized, possibly
441 // using the filler expression. We can skip this if the we're
442 // emitting to zeroed memory.
443 if (NumInitElements != NumArrayElements &&
444 !(Dest.isZeroed() && hasTrivialFiller &&
445 CGF.getTypes().isZeroInitializable(elementType))) {
446
447 // Use an actual loop. This is basically
448 // do { *array++ = filler; } while (array != end);
449
450 // Advance to the start of the rest of the array.
451 if (NumInitElements) {
452 element = Builder.CreateInBoundsGEP(element, one, "arrayinit.start");
453 if (endOfInit) Builder.CreateStore(element, endOfInit);
454 }
455
456 // Compute the end of the array.
457 llvm::Value *end = Builder.CreateInBoundsGEP(begin,
458 llvm::ConstantInt::get(CGF.SizeTy, NumArrayElements),
459 "arrayinit.end");
460
461 llvm::BasicBlock *entryBB = Builder.GetInsertBlock();
462 llvm::BasicBlock *bodyBB = CGF.createBasicBlock("arrayinit.body");
463
464 // Jump into the body.
465 CGF.EmitBlock(bodyBB);
466 llvm::PHINode *currentElement =
467 Builder.CreatePHI(element->getType(), 2, "arrayinit.cur");
468 currentElement->addIncoming(element, entryBB);
469
470 // Emit the actual filler expression.
471 LValue elementLV = CGF.MakeAddrLValue(currentElement, elementType);
472 if (filler)
473 EmitInitializationToLValue(filler, elementLV);
474 else
475 EmitNullInitializationToLValue(elementLV);
476
477 // Move on to the next element.
478 llvm::Value *nextElement =
479 Builder.CreateInBoundsGEP(currentElement, one, "arrayinit.next");
480
481 // Tell the EH cleanup that we finished with the last element.
482 if (endOfInit) Builder.CreateStore(nextElement, endOfInit);
483
484 // Leave the loop if we're done.
485 llvm::Value *done = Builder.CreateICmpEQ(nextElement, end,
486 "arrayinit.done");
487 llvm::BasicBlock *endBB = CGF.createBasicBlock("arrayinit.end");
488 Builder.CreateCondBr(done, endBB, bodyBB);
489 currentElement->addIncoming(nextElement, Builder.GetInsertBlock());
490
491 CGF.EmitBlock(endBB);
492 }
493
494 // Leave the partial-array cleanup if we entered one.
495 if (dtorKind) CGF.DeactivateCleanupBlock(cleanup, cleanupDominator);
496}
497
Chris Lattneree755f92007-08-21 04:59:27 +0000498//===----------------------------------------------------------------------===//
499// Visitor Methods
500//===----------------------------------------------------------------------===//
501
Douglas Gregor03e80032011-06-21 17:03:29 +0000502void AggExprEmitter::VisitMaterializeTemporaryExpr(MaterializeTemporaryExpr *E){
503 Visit(E->GetTemporaryExpr());
504}
505
John McCalle996ffd2011-02-16 08:02:54 +0000506void AggExprEmitter::VisitOpaqueValueExpr(OpaqueValueExpr *e) {
John McCall56ca35d2011-02-17 10:25:35 +0000507 EmitFinalDestCopy(e, CGF.getOpaqueLValueMapping(e));
John McCalle996ffd2011-02-16 08:02:54 +0000508}
509
Douglas Gregor751ec9b2011-06-17 04:59:12 +0000510void
511AggExprEmitter::VisitCompoundLiteralExpr(CompoundLiteralExpr *E) {
Douglas Gregor673e98b2011-06-17 16:37:20 +0000512 if (E->getType().isPODType(CGF.getContext())) {
513 // For a POD type, just emit a load of the lvalue + a copy, because our
514 // compound literal might alias the destination.
515 // FIXME: This is a band-aid; the real problem appears to be in our handling
516 // of assignments, where we store directly into the LHS without checking
517 // whether anything in the RHS aliases.
518 EmitAggLoadOfLValue(E);
519 return;
520 }
521
Douglas Gregor751ec9b2011-06-17 04:59:12 +0000522 AggValueSlot Slot = EnsureSlot(E->getType());
523 CGF.EmitAggExpr(E->getInitializer(), Slot);
524}
525
526
Anders Carlsson4d8673b2009-08-07 23:22:37 +0000527void AggExprEmitter::VisitCastExpr(CastExpr *E) {
Anders Carlsson30168422009-09-29 01:23:39 +0000528 switch (E->getCastKind()) {
Anders Carlsson575b3742011-04-11 02:03:26 +0000529 case CK_Dynamic: {
Douglas Gregor69cfeb12010-05-14 21:31:02 +0000530 assert(isa<CXXDynamicCastExpr>(E) && "CK_Dynamic without a dynamic_cast?");
531 LValue LV = CGF.EmitCheckedLValue(E->getSubExpr());
532 // FIXME: Do we also need to handle property references here?
533 if (LV.isSimple())
534 CGF.EmitDynamicCast(LV.getAddress(), cast<CXXDynamicCastExpr>(E));
535 else
536 CGF.CGM.ErrorUnsupported(E, "non-simple lvalue dynamic_cast");
537
John McCall558d2ab2010-09-15 10:14:12 +0000538 if (!Dest.isIgnored())
539 CGF.CGM.ErrorUnsupported(E, "lvalue dynamic_cast with a destination");
Douglas Gregor69cfeb12010-05-14 21:31:02 +0000540 break;
541 }
542
John McCall2de56d12010-08-25 11:45:40 +0000543 case CK_ToUnion: {
John McCall65912712011-04-12 22:02:02 +0000544 if (Dest.isIgnored()) break;
545
Anders Carlsson4d8673b2009-08-07 23:22:37 +0000546 // GCC union extension
Daniel Dunbar79c39282010-08-21 03:15:20 +0000547 QualType Ty = E->getSubExpr()->getType();
548 QualType PtrTy = CGF.getContext().getPointerType(Ty);
John McCall558d2ab2010-09-15 10:14:12 +0000549 llvm::Value *CastPtr = Builder.CreateBitCast(Dest.getAddr(),
Eli Friedman34ebf4d2009-06-03 20:45:06 +0000550 CGF.ConvertType(PtrTy));
John McCalla07398e2011-06-16 04:16:24 +0000551 EmitInitializationToLValue(E->getSubExpr(),
552 CGF.MakeAddrLValue(CastPtr, Ty));
Anders Carlsson30168422009-09-29 01:23:39 +0000553 break;
Nuno Lopes7e916272009-01-15 20:14:33 +0000554 }
Mike Stump1eb44332009-09-09 15:08:12 +0000555
John McCall2de56d12010-08-25 11:45:40 +0000556 case CK_DerivedToBase:
557 case CK_BaseToDerived:
558 case CK_UncheckedDerivedToBase: {
David Blaikieb219cfc2011-09-23 05:06:16 +0000559 llvm_unreachable("cannot perform hierarchy conversion in EmitAggExpr: "
Douglas Gregor2d6b0e92010-05-22 05:17:18 +0000560 "should have been unpacked before we got here");
Douglas Gregor2d6b0e92010-05-22 05:17:18 +0000561 }
562
John McCallf6a16482010-12-04 03:47:34 +0000563 case CK_LValueToRValue: // hope for downstream optimization
John McCall2de56d12010-08-25 11:45:40 +0000564 case CK_NoOp:
David Chisnall7a7ee302012-01-16 17:27:18 +0000565 case CK_AtomicToNonAtomic:
566 case CK_NonAtomicToAtomic:
John McCall2de56d12010-08-25 11:45:40 +0000567 case CK_UserDefinedConversion:
568 case CK_ConstructorConversion:
Anders Carlsson30168422009-09-29 01:23:39 +0000569 assert(CGF.getContext().hasSameUnqualifiedType(E->getSubExpr()->getType(),
570 E->getType()) &&
571 "Implicit cast types must be compatible");
572 Visit(E->getSubExpr());
573 break;
John McCall0ae287a2010-12-01 04:43:34 +0000574
John McCall2de56d12010-08-25 11:45:40 +0000575 case CK_LValueBitCast:
John McCall0ae287a2010-12-01 04:43:34 +0000576 llvm_unreachable("should not be emitting lvalue bitcast as rvalue");
John McCall1de4d4e2011-04-07 08:22:57 +0000577
John McCall0ae287a2010-12-01 04:43:34 +0000578 case CK_Dependent:
579 case CK_BitCast:
580 case CK_ArrayToPointerDecay:
581 case CK_FunctionToPointerDecay:
582 case CK_NullToPointer:
583 case CK_NullToMemberPointer:
584 case CK_BaseToDerivedMemberPointer:
585 case CK_DerivedToBaseMemberPointer:
586 case CK_MemberPointerToBoolean:
John McCall4d4e5c12012-02-15 01:22:51 +0000587 case CK_ReinterpretMemberPointer:
John McCall0ae287a2010-12-01 04:43:34 +0000588 case CK_IntegralToPointer:
589 case CK_PointerToIntegral:
590 case CK_PointerToBoolean:
591 case CK_ToVoid:
592 case CK_VectorSplat:
593 case CK_IntegralCast:
594 case CK_IntegralToBoolean:
595 case CK_IntegralToFloating:
596 case CK_FloatingToIntegral:
597 case CK_FloatingToBoolean:
598 case CK_FloatingCast:
John McCall1d9b3b22011-09-09 05:25:32 +0000599 case CK_CPointerToObjCPointerCast:
600 case CK_BlockPointerToObjCPointerCast:
John McCall0ae287a2010-12-01 04:43:34 +0000601 case CK_AnyPointerToBlockPointerCast:
602 case CK_ObjCObjectLValueCast:
603 case CK_FloatingRealToComplex:
604 case CK_FloatingComplexToReal:
605 case CK_FloatingComplexToBoolean:
606 case CK_FloatingComplexCast:
607 case CK_FloatingComplexToIntegralComplex:
608 case CK_IntegralRealToComplex:
609 case CK_IntegralComplexToReal:
610 case CK_IntegralComplexToBoolean:
611 case CK_IntegralComplexCast:
612 case CK_IntegralComplexToFloatingComplex:
John McCall33e56f32011-09-10 06:18:15 +0000613 case CK_ARCProduceObject:
614 case CK_ARCConsumeObject:
615 case CK_ARCReclaimReturnedObject:
616 case CK_ARCExtendBlockObject:
Douglas Gregorac1303e2012-02-22 05:02:47 +0000617 case CK_CopyAndAutoreleaseBlockObject:
John McCall0ae287a2010-12-01 04:43:34 +0000618 llvm_unreachable("cast kind invalid for aggregate types");
Anders Carlsson30168422009-09-29 01:23:39 +0000619 }
Anders Carlssone4707ff2008-01-14 06:28:57 +0000620}
621
Chris Lattner96196622008-07-26 22:37:01 +0000622void AggExprEmitter::VisitCallExpr(const CallExpr *E) {
Anders Carlssone70e8f72009-05-27 16:45:02 +0000623 if (E->getCallReturnType()->isReferenceType()) {
624 EmitAggLoadOfLValue(E);
625 return;
626 }
Mike Stump1eb44332009-09-09 15:08:12 +0000627
John McCallfa037bd2010-05-22 22:13:32 +0000628 RValue RV = CGF.EmitCallExpr(E, getReturnValueSlot());
John McCall410ffb22011-08-25 23:04:34 +0000629 EmitMoveFromReturnSlot(E, RV);
Anders Carlsson148fe672007-10-31 22:04:46 +0000630}
Chris Lattner96196622008-07-26 22:37:01 +0000631
632void AggExprEmitter::VisitObjCMessageExpr(ObjCMessageExpr *E) {
John McCallfa037bd2010-05-22 22:13:32 +0000633 RValue RV = CGF.EmitObjCMessageExpr(E, getReturnValueSlot());
John McCall410ffb22011-08-25 23:04:34 +0000634 EmitMoveFromReturnSlot(E, RV);
Chris Lattner8fdf3282008-06-24 17:04:18 +0000635}
Anders Carlsson148fe672007-10-31 22:04:46 +0000636
Chris Lattner96196622008-07-26 22:37:01 +0000637void AggExprEmitter::VisitBinComma(const BinaryOperator *E) {
John McCall2a416372010-12-05 02:00:02 +0000638 CGF.EmitIgnoredExpr(E->getLHS());
John McCall558d2ab2010-09-15 10:14:12 +0000639 Visit(E->getRHS());
Eli Friedman07fa52a2008-05-20 07:56:31 +0000640}
641
Chris Lattnerb2d963f2007-08-31 22:54:14 +0000642void AggExprEmitter::VisitStmtExpr(const StmtExpr *E) {
John McCall150b4622011-01-26 04:00:11 +0000643 CodeGenFunction::StmtExprEvaluation eval(CGF);
John McCall558d2ab2010-09-15 10:14:12 +0000644 CGF.EmitCompoundStmt(*E->getSubStmt(), true, Dest);
Chris Lattnerb2d963f2007-08-31 22:54:14 +0000645}
646
Chris Lattner9c033562007-08-21 04:25:47 +0000647void AggExprEmitter::VisitBinaryOperator(const BinaryOperator *E) {
John McCall2de56d12010-08-25 11:45:40 +0000648 if (E->getOpcode() == BO_PtrMemD || E->getOpcode() == BO_PtrMemI)
Fariborz Jahanian8bfd31f2009-10-22 22:57:31 +0000649 VisitPointerToDataMemberBinaryOperator(E);
650 else
651 CGF.ErrorUnsupported(E, "aggregate binary expression");
652}
653
654void AggExprEmitter::VisitPointerToDataMemberBinaryOperator(
655 const BinaryOperator *E) {
656 LValue LV = CGF.EmitPointerToDataMemberBinaryExpr(E);
657 EmitFinalDestCopy(E, LV);
Chris Lattneree755f92007-08-21 04:59:27 +0000658}
659
Chris Lattner03d6fb92007-08-21 04:43:17 +0000660void AggExprEmitter::VisitBinAssign(const BinaryOperator *E) {
Eli Friedmanff6e2b72008-02-11 01:09:17 +0000661 // For an assignment to work, the value on the right has
662 // to be compatible with the value on the left.
Eli Friedman2dce5f82009-05-28 23:04:00 +0000663 assert(CGF.getContext().hasSameUnqualifiedType(E->getLHS()->getType(),
664 E->getRHS()->getType())
Eli Friedmanff6e2b72008-02-11 01:09:17 +0000665 && "Invalid assignment");
John McCallcd940a12010-12-06 06:10:02 +0000666
Fariborz Jahanian2c7168c2011-04-29 21:53:21 +0000667 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E->getLHS()))
Fariborz Jahanian73a6f8e2011-04-29 22:11:28 +0000668 if (const VarDecl *VD = dyn_cast<VarDecl>(DRE->getDecl()))
Fariborz Jahanian2c7168c2011-04-29 21:53:21 +0000669 if (VD->hasAttr<BlocksAttr>() &&
670 E->getRHS()->HasSideEffects(CGF.getContext())) {
671 // When __block variable on LHS, the RHS must be evaluated first
672 // as it may change the 'forwarding' field via call to Block_copy.
673 LValue RHS = CGF.EmitLValue(E->getRHS());
674 LValue LHS = CGF.EmitLValue(E->getLHS());
John McCall7c2349b2011-08-25 20:40:09 +0000675 Dest = AggValueSlot::forLValue(LHS, AggValueSlot::IsDestructed,
John McCall44184392011-08-26 07:31:35 +0000676 needsGC(E->getLHS()->getType()),
677 AggValueSlot::IsAliased);
Fariborz Jahanian2c7168c2011-04-29 21:53:21 +0000678 EmitFinalDestCopy(E, RHS, true);
679 return;
680 }
Fariborz Jahanian2c7168c2011-04-29 21:53:21 +0000681
Chris Lattner9c033562007-08-21 04:25:47 +0000682 LValue LHS = CGF.EmitLValue(E->getLHS());
Chris Lattner883f6a72007-08-11 00:04:45 +0000683
John McCalldb458062011-11-07 03:59:57 +0000684 // Codegen the RHS so that it stores directly into the LHS.
685 AggValueSlot LHSSlot =
686 AggValueSlot::forLValue(LHS, AggValueSlot::IsDestructed,
687 needsGC(E->getLHS()->getType()),
688 AggValueSlot::IsAliased);
689 CGF.EmitAggExpr(E->getRHS(), LHSSlot, false);
690 EmitFinalDestCopy(E, LHS, true);
Chris Lattner883f6a72007-08-11 00:04:45 +0000691}
692
John McCall56ca35d2011-02-17 10:25:35 +0000693void AggExprEmitter::
694VisitAbstractConditionalOperator(const AbstractConditionalOperator *E) {
Daniel Dunbar9615ecb2008-11-13 01:38:36 +0000695 llvm::BasicBlock *LHSBlock = CGF.createBasicBlock("cond.true");
696 llvm::BasicBlock *RHSBlock = CGF.createBasicBlock("cond.false");
697 llvm::BasicBlock *ContBlock = CGF.createBasicBlock("cond.end");
Mike Stump1eb44332009-09-09 15:08:12 +0000698
John McCall56ca35d2011-02-17 10:25:35 +0000699 // Bind the common expression if necessary.
Eli Friedmand97927d2012-01-06 20:42:20 +0000700 CodeGenFunction::OpaqueValueMapping binding(CGF, E);
John McCall56ca35d2011-02-17 10:25:35 +0000701
John McCall150b4622011-01-26 04:00:11 +0000702 CodeGenFunction::ConditionalEvaluation eval(CGF);
Eli Friedman8e274bd2009-12-25 06:17:05 +0000703 CGF.EmitBranchOnBoolExpr(E->getCond(), LHSBlock, RHSBlock);
Mike Stump1eb44332009-09-09 15:08:12 +0000704
John McCall74fb0ed2010-11-17 00:07:33 +0000705 // Save whether the destination's lifetime is externally managed.
John McCallfd71fb82011-08-26 08:02:37 +0000706 bool isExternallyDestructed = Dest.isExternallyDestructed();
Chris Lattner883f6a72007-08-11 00:04:45 +0000707
John McCall150b4622011-01-26 04:00:11 +0000708 eval.begin(CGF);
709 CGF.EmitBlock(LHSBlock);
John McCall56ca35d2011-02-17 10:25:35 +0000710 Visit(E->getTrueExpr());
John McCall150b4622011-01-26 04:00:11 +0000711 eval.end(CGF);
Mike Stump1eb44332009-09-09 15:08:12 +0000712
John McCall150b4622011-01-26 04:00:11 +0000713 assert(CGF.HaveInsertPoint() && "expression evaluation ended with no IP!");
714 CGF.Builder.CreateBr(ContBlock);
Mike Stump1eb44332009-09-09 15:08:12 +0000715
John McCall74fb0ed2010-11-17 00:07:33 +0000716 // If the result of an agg expression is unused, then the emission
717 // of the LHS might need to create a destination slot. That's fine
718 // with us, and we can safely emit the RHS into the same slot, but
John McCallfd71fb82011-08-26 08:02:37 +0000719 // we shouldn't claim that it's already being destructed.
720 Dest.setExternallyDestructed(isExternallyDestructed);
John McCall74fb0ed2010-11-17 00:07:33 +0000721
John McCall150b4622011-01-26 04:00:11 +0000722 eval.begin(CGF);
723 CGF.EmitBlock(RHSBlock);
John McCall56ca35d2011-02-17 10:25:35 +0000724 Visit(E->getFalseExpr());
John McCall150b4622011-01-26 04:00:11 +0000725 eval.end(CGF);
Mike Stump1eb44332009-09-09 15:08:12 +0000726
Chris Lattner9c033562007-08-21 04:25:47 +0000727 CGF.EmitBlock(ContBlock);
Chris Lattner883f6a72007-08-11 00:04:45 +0000728}
Chris Lattneree755f92007-08-21 04:59:27 +0000729
Anders Carlssona294ca82009-07-08 18:33:14 +0000730void AggExprEmitter::VisitChooseExpr(const ChooseExpr *CE) {
731 Visit(CE->getChosenSubExpr(CGF.getContext()));
732}
733
Eli Friedmanb1851242008-05-27 15:51:49 +0000734void AggExprEmitter::VisitVAArgExpr(VAArgExpr *VE) {
Daniel Dunbar07855702009-02-11 22:25:55 +0000735 llvm::Value *ArgValue = CGF.EmitVAListRef(VE->getSubExpr());
Anders Carlssonddf7cac2008-11-04 05:30:00 +0000736 llvm::Value *ArgPtr = CGF.EmitVAArg(ArgValue, VE->getType());
737
Sebastian Redl0262f022009-01-09 21:09:38 +0000738 if (!ArgPtr) {
Anders Carlssonddf7cac2008-11-04 05:30:00 +0000739 CGF.ErrorUnsupported(VE, "aggregate va_arg expression");
Sebastian Redl0262f022009-01-09 21:09:38 +0000740 return;
741 }
742
Daniel Dunbar79c39282010-08-21 03:15:20 +0000743 EmitFinalDestCopy(VE, CGF.MakeAddrLValue(ArgPtr, VE->getType()));
Eli Friedmanb1851242008-05-27 15:51:49 +0000744}
745
Anders Carlssonb58d0172009-05-30 23:23:33 +0000746void AggExprEmitter::VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E) {
John McCall558d2ab2010-09-15 10:14:12 +0000747 // Ensure that we have a slot, but if we already do, remember
John McCallfd71fb82011-08-26 08:02:37 +0000748 // whether it was externally destructed.
749 bool wasExternallyDestructed = Dest.isExternallyDestructed();
John McCall558d2ab2010-09-15 10:14:12 +0000750 Dest = EnsureSlot(E->getType());
John McCallfd71fb82011-08-26 08:02:37 +0000751
752 // We're going to push a destructor if there isn't already one.
753 Dest.setExternallyDestructed();
Mike Stump1eb44332009-09-09 15:08:12 +0000754
John McCall558d2ab2010-09-15 10:14:12 +0000755 Visit(E->getSubExpr());
Anders Carlssonb58d0172009-05-30 23:23:33 +0000756
John McCallfd71fb82011-08-26 08:02:37 +0000757 // Push that destructor we promised.
758 if (!wasExternallyDestructed)
Peter Collingbourne86811602011-11-27 22:09:22 +0000759 CGF.EmitCXXTemporary(E->getTemporary(), E->getType(), Dest.getAddr());
Anders Carlssonb58d0172009-05-30 23:23:33 +0000760}
761
Anders Carlssonb14095a2009-04-17 00:06:03 +0000762void
Anders Carlsson31ccf372009-05-03 17:47:16 +0000763AggExprEmitter::VisitCXXConstructExpr(const CXXConstructExpr *E) {
John McCall558d2ab2010-09-15 10:14:12 +0000764 AggValueSlot Slot = EnsureSlot(E->getType());
765 CGF.EmitCXXConstructExpr(E, Slot);
Anders Carlsson7f6ad152009-05-19 04:48:36 +0000766}
767
Eli Friedman4c5d8af2012-02-09 03:32:31 +0000768void
769AggExprEmitter::VisitLambdaExpr(LambdaExpr *E) {
770 AggValueSlot Slot = EnsureSlot(E->getType());
771 CGF.EmitLambdaExpr(E, Slot);
772}
773
John McCall4765fa02010-12-06 08:20:24 +0000774void AggExprEmitter::VisitExprWithCleanups(ExprWithCleanups *E) {
John McCall1a343eb2011-11-10 08:15:53 +0000775 CGF.enterFullExpression(E);
776 CodeGenFunction::RunCleanupsScope cleanups(CGF);
777 Visit(E->getSubExpr());
Anders Carlssonb14095a2009-04-17 00:06:03 +0000778}
779
Douglas Gregored8abf12010-07-08 06:14:04 +0000780void AggExprEmitter::VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *E) {
John McCall558d2ab2010-09-15 10:14:12 +0000781 QualType T = E->getType();
782 AggValueSlot Slot = EnsureSlot(T);
John McCalla07398e2011-06-16 04:16:24 +0000783 EmitNullInitializationToLValue(CGF.MakeAddrLValue(Slot.getAddr(), T));
Anders Carlsson30311fa2009-12-16 06:57:54 +0000784}
785
786void AggExprEmitter::VisitImplicitValueInitExpr(ImplicitValueInitExpr *E) {
John McCall558d2ab2010-09-15 10:14:12 +0000787 QualType T = E->getType();
788 AggValueSlot Slot = EnsureSlot(T);
John McCalla07398e2011-06-16 04:16:24 +0000789 EmitNullInitializationToLValue(CGF.MakeAddrLValue(Slot.getAddr(), T));
Nuno Lopes329763b2009-10-18 15:18:11 +0000790}
791
Chris Lattner1b726772010-12-02 07:07:26 +0000792/// isSimpleZero - If emitting this value will obviously just cause a store of
793/// zero to memory, return true. This can return false if uncertain, so it just
794/// handles simple cases.
795static bool isSimpleZero(const Expr *E, CodeGenFunction &CGF) {
Peter Collingbournef111d932011-04-15 00:35:48 +0000796 E = E->IgnoreParens();
797
Chris Lattner1b726772010-12-02 07:07:26 +0000798 // 0
799 if (const IntegerLiteral *IL = dyn_cast<IntegerLiteral>(E))
800 return IL->getValue() == 0;
801 // +0.0
802 if (const FloatingLiteral *FL = dyn_cast<FloatingLiteral>(E))
803 return FL->getValue().isPosZero();
804 // int()
805 if ((isa<ImplicitValueInitExpr>(E) || isa<CXXScalarValueInitExpr>(E)) &&
806 CGF.getTypes().isZeroInitializable(E->getType()))
807 return true;
808 // (int*)0 - Null pointer expressions.
809 if (const CastExpr *ICE = dyn_cast<CastExpr>(E))
810 return ICE->getCastKind() == CK_NullToPointer;
811 // '\0'
812 if (const CharacterLiteral *CL = dyn_cast<CharacterLiteral>(E))
813 return CL->getValue() == 0;
814
815 // Otherwise, hard case: conservatively return false.
816 return false;
817}
818
819
Anders Carlsson78e83f82010-02-03 17:33:16 +0000820void
John McCalla07398e2011-06-16 04:16:24 +0000821AggExprEmitter::EmitInitializationToLValue(Expr* E, LValue LV) {
822 QualType type = LV.getType();
Mike Stump7f79f9b2009-05-29 15:46:01 +0000823 // FIXME: Ignore result?
Chris Lattnerf81557c2008-04-04 18:42:16 +0000824 // FIXME: Are initializers affected by volatile?
Chris Lattner1b726772010-12-02 07:07:26 +0000825 if (Dest.isZeroed() && isSimpleZero(E, CGF)) {
826 // Storing "i32 0" to a zero'd memory location is a noop.
827 } else if (isa<ImplicitValueInitExpr>(E)) {
John McCalla07398e2011-06-16 04:16:24 +0000828 EmitNullInitializationToLValue(LV);
829 } else if (type->isReferenceType()) {
Anders Carlsson32f36ba2010-06-26 16:35:32 +0000830 RValue RV = CGF.EmitReferenceBindingToExpr(E, /*InitializedDecl=*/0);
John McCall545d9962011-06-25 02:11:03 +0000831 CGF.EmitStoreThroughLValue(RV, LV);
John McCalla07398e2011-06-16 04:16:24 +0000832 } else if (type->isAnyComplexType()) {
Douglas Gregor3498bdb2009-01-29 17:44:32 +0000833 CGF.EmitComplexExprIntoAddr(E, LV.getAddress(), false);
John McCalla07398e2011-06-16 04:16:24 +0000834 } else if (CGF.hasAggregateLLVMType(type)) {
John McCall7c2349b2011-08-25 20:40:09 +0000835 CGF.EmitAggExpr(E, AggValueSlot::forLValue(LV,
836 AggValueSlot::IsDestructed,
837 AggValueSlot::DoesNotNeedGCBarriers,
John McCall410ffb22011-08-25 23:04:34 +0000838 AggValueSlot::IsNotAliased,
John McCalla07398e2011-06-16 04:16:24 +0000839 Dest.isZeroed()));
John McCallf85e1932011-06-15 23:02:42 +0000840 } else if (LV.isSimple()) {
John McCalla07398e2011-06-16 04:16:24 +0000841 CGF.EmitScalarInit(E, /*D=*/0, LV, /*Captured=*/false);
Eli Friedmanc8ba9612008-05-12 15:06:05 +0000842 } else {
John McCall545d9962011-06-25 02:11:03 +0000843 CGF.EmitStoreThroughLValue(RValue::get(CGF.EmitScalarExpr(E)), LV);
Chris Lattnerf81557c2008-04-04 18:42:16 +0000844 }
Chris Lattnerf81557c2008-04-04 18:42:16 +0000845}
846
John McCalla07398e2011-06-16 04:16:24 +0000847void AggExprEmitter::EmitNullInitializationToLValue(LValue lv) {
848 QualType type = lv.getType();
849
Chris Lattner1b726772010-12-02 07:07:26 +0000850 // If the destination slot is already zeroed out before the aggregate is
851 // copied into it, we don't have to emit any zeros here.
John McCalla07398e2011-06-16 04:16:24 +0000852 if (Dest.isZeroed() && CGF.getTypes().isZeroInitializable(type))
Chris Lattner1b726772010-12-02 07:07:26 +0000853 return;
854
John McCalla07398e2011-06-16 04:16:24 +0000855 if (!CGF.hasAggregateLLVMType(type)) {
Eli Friedmanb1e3f322012-02-22 05:38:59 +0000856 // For non-aggregates, we can store zero.
John McCalla07398e2011-06-16 04:16:24 +0000857 llvm::Value *null = llvm::Constant::getNullValue(CGF.ConvertType(type));
Eli Friedmanb1e3f322012-02-22 05:38:59 +0000858 // Note that the following is not equivalent to
859 // EmitStoreThroughBitfieldLValue for ARC types.
860 if (lv.isBitField())
861 CGF.EmitStoreThroughBitfieldLValue(RValue::get(null), lv);
862 assert(lv.isSimple());
863 CGF.EmitStoreOfScalar(null, lv, /* isInitialization */ true);
Lauro Ramos Venancio145cd892008-02-19 19:27:31 +0000864 } else {
Chris Lattnerf81557c2008-04-04 18:42:16 +0000865 // There's a potential optimization opportunity in combining
866 // memsets; that would be easy for arrays, but relatively
867 // difficult for structures with the current code.
John McCalla07398e2011-06-16 04:16:24 +0000868 CGF.EmitNullInitialization(lv.getAddress(), lv.getType());
Chris Lattnerf81557c2008-04-04 18:42:16 +0000869 }
870}
871
Chris Lattnerf81557c2008-04-04 18:42:16 +0000872void AggExprEmitter::VisitInitListExpr(InitListExpr *E) {
Eli Friedmana385b3c2008-12-02 01:17:45 +0000873#if 0
Eli Friedman13a5be12009-12-04 01:30:56 +0000874 // FIXME: Assess perf here? Figure out what cases are worth optimizing here
875 // (Length of globals? Chunks of zeroed-out space?).
Eli Friedmana385b3c2008-12-02 01:17:45 +0000876 //
Mike Stumpf5408fe2009-05-16 07:57:57 +0000877 // If we can, prefer a copy from a global; this is a lot less code for long
878 // globals, and it's easier for the current optimizers to analyze.
Eli Friedman13a5be12009-12-04 01:30:56 +0000879 if (llvm::Constant* C = CGF.CGM.EmitConstantExpr(E, E->getType(), &CGF)) {
Eli Friedman994ffef2008-11-30 02:11:09 +0000880 llvm::GlobalVariable* GV =
Eli Friedman13a5be12009-12-04 01:30:56 +0000881 new llvm::GlobalVariable(CGF.CGM.getModule(), C->getType(), true,
882 llvm::GlobalValue::InternalLinkage, C, "");
Daniel Dunbar79c39282010-08-21 03:15:20 +0000883 EmitFinalDestCopy(E, CGF.MakeAddrLValue(GV, E->getType()));
Eli Friedman994ffef2008-11-30 02:11:09 +0000884 return;
885 }
Eli Friedmana385b3c2008-12-02 01:17:45 +0000886#endif
Chris Lattnerd0db03a2010-09-06 00:11:41 +0000887 if (E->hadArrayRangeDesignator())
Douglas Gregora9c87802009-01-29 19:42:23 +0000888 CGF.ErrorUnsupported(E, "GNU array range designator extension");
Douglas Gregora9c87802009-01-29 19:42:23 +0000889
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000890 if (E->initializesStdInitializerList()) {
Sebastian Redlaf130fd2012-02-19 12:28:02 +0000891 EmitStdInitializerList(Dest.getAddr(), E);
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000892 return;
893 }
894
John McCall558d2ab2010-09-15 10:14:12 +0000895 llvm::Value *DestPtr = Dest.getAddr();
896
Chris Lattnerf81557c2008-04-04 18:42:16 +0000897 // Handle initialization of an array.
898 if (E->getType()->isArrayType()) {
Chris Lattner96196622008-07-26 22:37:01 +0000899 if (E->getNumInits() > 0) {
900 QualType T1 = E->getType();
901 QualType T2 = E->getInit(0)->getType();
Eli Friedman2dce5f82009-05-28 23:04:00 +0000902 if (CGF.getContext().hasSameUnqualifiedType(T1, T2)) {
Chris Lattner96196622008-07-26 22:37:01 +0000903 EmitAggLoadOfLValue(E->getInit(0));
904 return;
905 }
Eli Friedman922696f2008-05-19 17:51:16 +0000906 }
907
Eli Friedman5c89c392012-02-23 02:25:10 +0000908 QualType elementType =
909 CGF.getContext().getAsArrayType(E->getType())->getElementType();
Argyrios Kyrtzidis3b4d4902011-04-28 18:53:58 +0000910
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000911 llvm::PointerType *APType =
912 cast<llvm::PointerType>(DestPtr->getType());
913 llvm::ArrayType *AType =
914 cast<llvm::ArrayType>(APType->getElementType());
Chris Lattner1b726772010-12-02 07:07:26 +0000915
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000916 EmitArrayInit(DestPtr, AType, elementType, E);
Chris Lattnerf81557c2008-04-04 18:42:16 +0000917 return;
918 }
Mike Stump1eb44332009-09-09 15:08:12 +0000919
Chris Lattnerf81557c2008-04-04 18:42:16 +0000920 assert(E->getType()->isRecordType() && "Only support structs/unions here!");
Mike Stump1eb44332009-09-09 15:08:12 +0000921
Chris Lattnerf81557c2008-04-04 18:42:16 +0000922 // Do struct initialization; this code just sets each individual member
923 // to the approprate value. This makes bitfield support automatic;
924 // the disadvantage is that the generated code is more difficult for
925 // the optimizer, especially with bitfields.
926 unsigned NumInitElements = E->getNumInits();
John McCall2b30dcf2011-07-11 19:35:02 +0000927 RecordDecl *record = E->getType()->castAs<RecordType>()->getDecl();
Chris Lattnerbd7de382010-09-06 00:13:11 +0000928
John McCall2b30dcf2011-07-11 19:35:02 +0000929 if (record->isUnion()) {
Douglas Gregor0bb76892009-01-29 16:53:55 +0000930 // Only initialize one field of a union. The field itself is
931 // specified by the initializer list.
932 if (!E->getInitializedFieldInUnion()) {
933 // Empty union; we have nothing to do.
Mike Stump1eb44332009-09-09 15:08:12 +0000934
Douglas Gregor0bb76892009-01-29 16:53:55 +0000935#ifndef NDEBUG
936 // Make sure that it's really an empty and not a failure of
937 // semantic analysis.
John McCall2b30dcf2011-07-11 19:35:02 +0000938 for (RecordDecl::field_iterator Field = record->field_begin(),
939 FieldEnd = record->field_end();
Douglas Gregor0bb76892009-01-29 16:53:55 +0000940 Field != FieldEnd; ++Field)
941 assert(Field->isUnnamedBitfield() && "Only unnamed bitfields allowed");
942#endif
943 return;
944 }
945
946 // FIXME: volatility
947 FieldDecl *Field = E->getInitializedFieldInUnion();
Douglas Gregor0bb76892009-01-29 16:53:55 +0000948
Chris Lattner1b726772010-12-02 07:07:26 +0000949 LValue FieldLoc = CGF.EmitLValueForFieldInitialization(DestPtr, Field, 0);
Douglas Gregor0bb76892009-01-29 16:53:55 +0000950 if (NumInitElements) {
951 // Store the initializer into the field
John McCalla07398e2011-06-16 04:16:24 +0000952 EmitInitializationToLValue(E->getInit(0), FieldLoc);
Douglas Gregor0bb76892009-01-29 16:53:55 +0000953 } else {
Chris Lattner1b726772010-12-02 07:07:26 +0000954 // Default-initialize to null.
John McCalla07398e2011-06-16 04:16:24 +0000955 EmitNullInitializationToLValue(FieldLoc);
Douglas Gregor0bb76892009-01-29 16:53:55 +0000956 }
957
958 return;
959 }
Mike Stump1eb44332009-09-09 15:08:12 +0000960
John McCall2b30dcf2011-07-11 19:35:02 +0000961 // We'll need to enter cleanup scopes in case any of the member
962 // initializers throw an exception.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000963 SmallVector<EHScopeStack::stable_iterator, 16> cleanups;
John McCall6f103ba2011-11-10 10:43:54 +0000964 llvm::Instruction *cleanupDominator = 0;
John McCall2b30dcf2011-07-11 19:35:02 +0000965
Chris Lattnerf81557c2008-04-04 18:42:16 +0000966 // Here we iterate over the fields; this makes it simpler to both
967 // default-initialize fields and skip over unnamed fields.
John McCall2b30dcf2011-07-11 19:35:02 +0000968 unsigned curInitIndex = 0;
969 for (RecordDecl::field_iterator field = record->field_begin(),
970 fieldEnd = record->field_end();
971 field != fieldEnd; ++field) {
972 // We're done once we hit the flexible array member.
973 if (field->getType()->isIncompleteArrayType())
Douglas Gregor44b43212008-12-11 16:49:14 +0000974 break;
975
John McCall2b30dcf2011-07-11 19:35:02 +0000976 // Always skip anonymous bitfields.
977 if (field->isUnnamedBitfield())
Chris Lattnerf81557c2008-04-04 18:42:16 +0000978 continue;
Douglas Gregor34e79462009-01-28 23:36:17 +0000979
John McCall2b30dcf2011-07-11 19:35:02 +0000980 // We're done if we reach the end of the explicit initializers, we
981 // have a zeroed object, and the rest of the fields are
982 // zero-initializable.
983 if (curInitIndex == NumInitElements && Dest.isZeroed() &&
Chris Lattner1b726772010-12-02 07:07:26 +0000984 CGF.getTypes().isZeroInitializable(E->getType()))
985 break;
986
Eli Friedman1e692ac2008-06-13 23:01:12 +0000987 // FIXME: volatility
John McCall2b30dcf2011-07-11 19:35:02 +0000988 LValue LV = CGF.EmitLValueForFieldInitialization(DestPtr, *field, 0);
Fariborz Jahanian14674ff2009-05-27 19:54:11 +0000989 // We never generate write-barries for initialized fields.
John McCall2b30dcf2011-07-11 19:35:02 +0000990 LV.setNonGC(true);
Chris Lattner1b726772010-12-02 07:07:26 +0000991
John McCall2b30dcf2011-07-11 19:35:02 +0000992 if (curInitIndex < NumInitElements) {
Chris Lattnerb35baae2010-03-08 21:08:07 +0000993 // Store the initializer into the field.
John McCall2b30dcf2011-07-11 19:35:02 +0000994 EmitInitializationToLValue(E->getInit(curInitIndex++), LV);
Chris Lattnerf81557c2008-04-04 18:42:16 +0000995 } else {
996 // We're out of initalizers; default-initialize to null
John McCall2b30dcf2011-07-11 19:35:02 +0000997 EmitNullInitializationToLValue(LV);
998 }
999
1000 // Push a destructor if necessary.
1001 // FIXME: if we have an array of structures, all explicitly
1002 // initialized, we can end up pushing a linear number of cleanups.
1003 bool pushedCleanup = false;
1004 if (QualType::DestructionKind dtorKind
1005 = field->getType().isDestructedType()) {
1006 assert(LV.isSimple());
1007 if (CGF.needsEHCleanup(dtorKind)) {
John McCall6f103ba2011-11-10 10:43:54 +00001008 if (!cleanupDominator)
1009 cleanupDominator = CGF.Builder.CreateUnreachable(); // placeholder
1010
John McCall2b30dcf2011-07-11 19:35:02 +00001011 CGF.pushDestroy(EHCleanup, LV.getAddress(), field->getType(),
1012 CGF.getDestroyer(dtorKind), false);
1013 cleanups.push_back(CGF.EHStack.stable_begin());
1014 pushedCleanup = true;
1015 }
Chris Lattnerf81557c2008-04-04 18:42:16 +00001016 }
Chris Lattner1b726772010-12-02 07:07:26 +00001017
1018 // If the GEP didn't get used because of a dead zero init or something
1019 // else, clean it up for -O0 builds and general tidiness.
John McCall2b30dcf2011-07-11 19:35:02 +00001020 if (!pushedCleanup && LV.isSimple())
Chris Lattner1b726772010-12-02 07:07:26 +00001021 if (llvm::GetElementPtrInst *GEP =
John McCall2b30dcf2011-07-11 19:35:02 +00001022 dyn_cast<llvm::GetElementPtrInst>(LV.getAddress()))
Chris Lattner1b726772010-12-02 07:07:26 +00001023 if (GEP->use_empty())
1024 GEP->eraseFromParent();
Lauro Ramos Venancio145cd892008-02-19 19:27:31 +00001025 }
John McCall2b30dcf2011-07-11 19:35:02 +00001026
1027 // Deactivate all the partial cleanups in reverse order, which
1028 // generally means popping them.
1029 for (unsigned i = cleanups.size(); i != 0; --i)
John McCall6f103ba2011-11-10 10:43:54 +00001030 CGF.DeactivateCleanupBlock(cleanups[i-1], cleanupDominator);
1031
1032 // Destroy the placeholder if we made one.
1033 if (cleanupDominator)
1034 cleanupDominator->eraseFromParent();
Devang Patel636c3d02007-10-26 17:44:44 +00001035}
1036
Chris Lattneree755f92007-08-21 04:59:27 +00001037//===----------------------------------------------------------------------===//
1038// Entry Points into this File
1039//===----------------------------------------------------------------------===//
1040
Chris Lattner1b726772010-12-02 07:07:26 +00001041/// GetNumNonZeroBytesInInit - Get an approximate count of the number of
1042/// non-zero bytes that will be stored when outputting the initializer for the
1043/// specified initializer expression.
Ken Dyck02c45332011-04-24 17:17:56 +00001044static CharUnits GetNumNonZeroBytesInInit(const Expr *E, CodeGenFunction &CGF) {
Peter Collingbournef111d932011-04-15 00:35:48 +00001045 E = E->IgnoreParens();
Chris Lattner1b726772010-12-02 07:07:26 +00001046
1047 // 0 and 0.0 won't require any non-zero stores!
Ken Dyck02c45332011-04-24 17:17:56 +00001048 if (isSimpleZero(E, CGF)) return CharUnits::Zero();
Chris Lattner1b726772010-12-02 07:07:26 +00001049
1050 // If this is an initlist expr, sum up the size of sizes of the (present)
1051 // elements. If this is something weird, assume the whole thing is non-zero.
1052 const InitListExpr *ILE = dyn_cast<InitListExpr>(E);
1053 if (ILE == 0 || !CGF.getTypes().isZeroInitializable(ILE->getType()))
Ken Dyck02c45332011-04-24 17:17:56 +00001054 return CGF.getContext().getTypeSizeInChars(E->getType());
Chris Lattner1b726772010-12-02 07:07:26 +00001055
Chris Lattnerd1d56df2010-12-02 18:29:00 +00001056 // InitListExprs for structs have to be handled carefully. If there are
1057 // reference members, we need to consider the size of the reference, not the
1058 // referencee. InitListExprs for unions and arrays can't have references.
Chris Lattner8c00ad12010-12-02 22:52:04 +00001059 if (const RecordType *RT = E->getType()->getAs<RecordType>()) {
1060 if (!RT->isUnionType()) {
1061 RecordDecl *SD = E->getType()->getAs<RecordType>()->getDecl();
Ken Dyck02c45332011-04-24 17:17:56 +00001062 CharUnits NumNonZeroBytes = CharUnits::Zero();
Chris Lattner8c00ad12010-12-02 22:52:04 +00001063
1064 unsigned ILEElement = 0;
1065 for (RecordDecl::field_iterator Field = SD->field_begin(),
1066 FieldEnd = SD->field_end(); Field != FieldEnd; ++Field) {
1067 // We're done once we hit the flexible array member or run out of
1068 // InitListExpr elements.
1069 if (Field->getType()->isIncompleteArrayType() ||
1070 ILEElement == ILE->getNumInits())
1071 break;
1072 if (Field->isUnnamedBitfield())
1073 continue;
Chris Lattnerd1d56df2010-12-02 18:29:00 +00001074
Chris Lattner8c00ad12010-12-02 22:52:04 +00001075 const Expr *E = ILE->getInit(ILEElement++);
1076
1077 // Reference values are always non-null and have the width of a pointer.
1078 if (Field->getType()->isReferenceType())
Ken Dyck02c45332011-04-24 17:17:56 +00001079 NumNonZeroBytes += CGF.getContext().toCharUnitsFromBits(
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001080 CGF.getContext().getTargetInfo().getPointerWidth(0));
Chris Lattner8c00ad12010-12-02 22:52:04 +00001081 else
1082 NumNonZeroBytes += GetNumNonZeroBytesInInit(E, CGF);
1083 }
Chris Lattnerd1d56df2010-12-02 18:29:00 +00001084
Chris Lattner8c00ad12010-12-02 22:52:04 +00001085 return NumNonZeroBytes;
Chris Lattnerd1d56df2010-12-02 18:29:00 +00001086 }
Chris Lattnerd1d56df2010-12-02 18:29:00 +00001087 }
1088
1089
Ken Dyck02c45332011-04-24 17:17:56 +00001090 CharUnits NumNonZeroBytes = CharUnits::Zero();
Chris Lattner1b726772010-12-02 07:07:26 +00001091 for (unsigned i = 0, e = ILE->getNumInits(); i != e; ++i)
1092 NumNonZeroBytes += GetNumNonZeroBytesInInit(ILE->getInit(i), CGF);
1093 return NumNonZeroBytes;
1094}
1095
1096/// CheckAggExprForMemSetUse - If the initializer is large and has a lot of
1097/// zeros in it, emit a memset and avoid storing the individual zeros.
1098///
1099static void CheckAggExprForMemSetUse(AggValueSlot &Slot, const Expr *E,
1100 CodeGenFunction &CGF) {
1101 // If the slot is already known to be zeroed, nothing to do. Don't mess with
1102 // volatile stores.
1103 if (Slot.isZeroed() || Slot.isVolatile() || Slot.getAddr() == 0) return;
Argyrios Kyrtzidis657baf12011-04-28 22:57:55 +00001104
1105 // C++ objects with a user-declared constructor don't need zero'ing.
1106 if (CGF.getContext().getLangOptions().CPlusPlus)
1107 if (const RecordType *RT = CGF.getContext()
1108 .getBaseElementType(E->getType())->getAs<RecordType>()) {
1109 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
1110 if (RD->hasUserDeclaredConstructor())
1111 return;
1112 }
1113
Chris Lattner1b726772010-12-02 07:07:26 +00001114 // If the type is 16-bytes or smaller, prefer individual stores over memset.
Ken Dyck5ff1a352011-04-24 17:25:32 +00001115 std::pair<CharUnits, CharUnits> TypeInfo =
1116 CGF.getContext().getTypeInfoInChars(E->getType());
1117 if (TypeInfo.first <= CharUnits::fromQuantity(16))
Chris Lattner1b726772010-12-02 07:07:26 +00001118 return;
1119
1120 // Check to see if over 3/4 of the initializer are known to be zero. If so,
1121 // we prefer to emit memset + individual stores for the rest.
Ken Dyck5ff1a352011-04-24 17:25:32 +00001122 CharUnits NumNonZeroBytes = GetNumNonZeroBytesInInit(E, CGF);
1123 if (NumNonZeroBytes*4 > TypeInfo.first)
Chris Lattner1b726772010-12-02 07:07:26 +00001124 return;
1125
1126 // Okay, it seems like a good idea to use an initial memset, emit the call.
Ken Dyck5ff1a352011-04-24 17:25:32 +00001127 llvm::Constant *SizeVal = CGF.Builder.getInt64(TypeInfo.first.getQuantity());
1128 CharUnits Align = TypeInfo.second;
Chris Lattner1b726772010-12-02 07:07:26 +00001129
1130 llvm::Value *Loc = Slot.getAddr();
Chris Lattner1b726772010-12-02 07:07:26 +00001131
Chris Lattner8b418682012-02-07 00:39:47 +00001132 Loc = CGF.Builder.CreateBitCast(Loc, CGF.Int8PtrTy);
Ken Dyck5ff1a352011-04-24 17:25:32 +00001133 CGF.Builder.CreateMemSet(Loc, CGF.Builder.getInt8(0), SizeVal,
1134 Align.getQuantity(), false);
Chris Lattner1b726772010-12-02 07:07:26 +00001135
1136 // Tell the AggExprEmitter that the slot is known zero.
1137 Slot.setZeroed();
1138}
1139
1140
1141
1142
Mike Stumpe1129a92009-05-26 18:57:45 +00001143/// EmitAggExpr - Emit the computation of the specified expression of aggregate
1144/// type. The result is computed into DestPtr. Note that if DestPtr is null,
1145/// the value of the aggregate expression is not needed. If VolatileDest is
1146/// true, DestPtr cannot be 0.
John McCall558d2ab2010-09-15 10:14:12 +00001147///
1148/// \param IsInitializer - true if this evaluation is initializing an
1149/// object whose lifetime is already being managed.
John McCall558d2ab2010-09-15 10:14:12 +00001150void CodeGenFunction::EmitAggExpr(const Expr *E, AggValueSlot Slot,
Fariborz Jahanian474e2fe2010-09-16 00:20:07 +00001151 bool IgnoreResult) {
Chris Lattneree755f92007-08-21 04:59:27 +00001152 assert(E && hasAggregateLLVMType(E->getType()) &&
1153 "Invalid aggregate expression to emit");
Chris Lattner1b726772010-12-02 07:07:26 +00001154 assert((Slot.getAddr() != 0 || Slot.isIgnored()) &&
1155 "slot has bits but no address");
Mike Stump1eb44332009-09-09 15:08:12 +00001156
Chris Lattner1b726772010-12-02 07:07:26 +00001157 // Optimize the slot if possible.
1158 CheckAggExprForMemSetUse(Slot, E, *this);
1159
1160 AggExprEmitter(*this, Slot, IgnoreResult).Visit(const_cast<Expr*>(E));
Chris Lattneree755f92007-08-21 04:59:27 +00001161}
Daniel Dunbar7482d122008-09-09 20:49:46 +00001162
Daniel Dunbar18aba0d2010-02-05 19:38:31 +00001163LValue CodeGenFunction::EmitAggExprToLValue(const Expr *E) {
1164 assert(hasAggregateLLVMType(E->getType()) && "Invalid argument!");
Daniel Dunbar195337d2010-02-09 02:48:28 +00001165 llvm::Value *Temp = CreateMemTemp(E->getType());
Daniel Dunbar79c39282010-08-21 03:15:20 +00001166 LValue LV = MakeAddrLValue(Temp, E->getType());
John McCall7c2349b2011-08-25 20:40:09 +00001167 EmitAggExpr(E, AggValueSlot::forLValue(LV, AggValueSlot::IsNotDestructed,
John McCall44184392011-08-26 07:31:35 +00001168 AggValueSlot::DoesNotNeedGCBarriers,
1169 AggValueSlot::IsNotAliased));
Daniel Dunbar79c39282010-08-21 03:15:20 +00001170 return LV;
Daniel Dunbar18aba0d2010-02-05 19:38:31 +00001171}
1172
Daniel Dunbar7482d122008-09-09 20:49:46 +00001173void CodeGenFunction::EmitAggregateCopy(llvm::Value *DestPtr,
Mike Stump27fe2e62009-05-23 22:29:41 +00001174 llvm::Value *SrcPtr, QualType Ty,
Eli Friedmanbd7d8282011-12-05 22:23:28 +00001175 bool isVolatile, unsigned Alignment) {
Daniel Dunbar7482d122008-09-09 20:49:46 +00001176 assert(!Ty->isAnyComplexType() && "Shouldn't happen for complex");
Mike Stump1eb44332009-09-09 15:08:12 +00001177
Anders Carlsson0d7c5832010-05-03 01:20:20 +00001178 if (getContext().getLangOptions().CPlusPlus) {
1179 if (const RecordType *RT = Ty->getAs<RecordType>()) {
Douglas Gregore9979482010-05-20 15:39:01 +00001180 CXXRecordDecl *Record = cast<CXXRecordDecl>(RT->getDecl());
1181 assert((Record->hasTrivialCopyConstructor() ||
Douglas Gregorb2b56582011-09-06 16:26:56 +00001182 Record->hasTrivialCopyAssignment() ||
1183 Record->hasTrivialMoveConstructor() ||
1184 Record->hasTrivialMoveAssignment()) &&
Douglas Gregore9979482010-05-20 15:39:01 +00001185 "Trying to aggregate-copy a type without a trivial copy "
1186 "constructor or assignment operator");
Douglas Gregor419aa962010-05-20 15:48:29 +00001187 // Ignore empty classes in C++.
Douglas Gregore9979482010-05-20 15:39:01 +00001188 if (Record->isEmpty())
Anders Carlsson0d7c5832010-05-03 01:20:20 +00001189 return;
1190 }
1191 }
1192
Chris Lattner83c96292009-02-28 18:31:01 +00001193 // Aggregate assignment turns into llvm.memcpy. This is almost valid per
Chris Lattnerca4fc2c2009-02-28 18:18:58 +00001194 // C99 6.5.16.1p3, which states "If the value being stored in an object is
1195 // read from another object that overlaps in anyway the storage of the first
1196 // object, then the overlap shall be exact and the two objects shall have
1197 // qualified or unqualified versions of a compatible type."
1198 //
Chris Lattner83c96292009-02-28 18:31:01 +00001199 // memcpy is not defined if the source and destination pointers are exactly
Chris Lattnerca4fc2c2009-02-28 18:18:58 +00001200 // equal, but other compilers do this optimization, and almost every memcpy
1201 // implementation handles this case safely. If there is a libc that does not
1202 // safely handle this, we can add a target hook.
Mike Stump1eb44332009-09-09 15:08:12 +00001203
Daniel Dunbar7482d122008-09-09 20:49:46 +00001204 // Get size and alignment info for this aggregate.
Ken Dyck1a8c15a2011-04-24 17:37:26 +00001205 std::pair<CharUnits, CharUnits> TypeInfo =
1206 getContext().getTypeInfoInChars(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +00001207
Eli Friedmanbd7d8282011-12-05 22:23:28 +00001208 if (!Alignment)
1209 Alignment = TypeInfo.second.getQuantity();
1210
Daniel Dunbar7482d122008-09-09 20:49:46 +00001211 // FIXME: Handle variable sized types.
Mike Stump1eb44332009-09-09 15:08:12 +00001212
Mike Stumpfde64202009-05-23 04:13:59 +00001213 // FIXME: If we have a volatile struct, the optimizer can remove what might
1214 // appear to be `extra' memory ops:
1215 //
1216 // volatile struct { int i; } a, b;
1217 //
1218 // int main() {
1219 // a = b;
1220 // a = b;
1221 // }
1222 //
Mon P Wang3ecd7852010-04-04 03:10:52 +00001223 // we need to use a different call here. We use isVolatile to indicate when
Mike Stump49d1cd52009-05-26 22:03:21 +00001224 // either the source or the destination is volatile.
Mon P Wang3ecd7852010-04-04 03:10:52 +00001225
Chris Lattner2acc6e32011-07-18 04:24:23 +00001226 llvm::PointerType *DPT = cast<llvm::PointerType>(DestPtr->getType());
1227 llvm::Type *DBP =
John McCalld16c2cf2011-02-08 08:22:06 +00001228 llvm::Type::getInt8PtrTy(getLLVMContext(), DPT->getAddressSpace());
Benjamin Kramer578faa82011-09-27 21:06:10 +00001229 DestPtr = Builder.CreateBitCast(DestPtr, DBP);
Mon P Wang3ecd7852010-04-04 03:10:52 +00001230
Chris Lattner2acc6e32011-07-18 04:24:23 +00001231 llvm::PointerType *SPT = cast<llvm::PointerType>(SrcPtr->getType());
1232 llvm::Type *SBP =
John McCalld16c2cf2011-02-08 08:22:06 +00001233 llvm::Type::getInt8PtrTy(getLLVMContext(), SPT->getAddressSpace());
Benjamin Kramer578faa82011-09-27 21:06:10 +00001234 SrcPtr = Builder.CreateBitCast(SrcPtr, SBP);
Mon P Wang3ecd7852010-04-04 03:10:52 +00001235
John McCallf85e1932011-06-15 23:02:42 +00001236 // Don't do any of the memmove_collectable tests if GC isn't set.
Douglas Gregore289d812011-09-13 17:21:33 +00001237 if (CGM.getLangOptions().getGC() == LangOptions::NonGC) {
John McCallf85e1932011-06-15 23:02:42 +00001238 // fall through
1239 } else if (const RecordType *RecordTy = Ty->getAs<RecordType>()) {
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00001240 RecordDecl *Record = RecordTy->getDecl();
1241 if (Record->hasObjectMember()) {
Ken Dyck1a8c15a2011-04-24 17:37:26 +00001242 CharUnits size = TypeInfo.first;
Chris Lattner2acc6e32011-07-18 04:24:23 +00001243 llvm::Type *SizeTy = ConvertType(getContext().getSizeType());
Ken Dyck1a8c15a2011-04-24 17:37:26 +00001244 llvm::Value *SizeVal = llvm::ConstantInt::get(SizeTy, size.getQuantity());
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00001245 CGM.getObjCRuntime().EmitGCMemmoveCollectable(*this, DestPtr, SrcPtr,
1246 SizeVal);
1247 return;
1248 }
John McCallf85e1932011-06-15 23:02:42 +00001249 } else if (Ty->isArrayType()) {
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00001250 QualType BaseType = getContext().getBaseElementType(Ty);
1251 if (const RecordType *RecordTy = BaseType->getAs<RecordType>()) {
1252 if (RecordTy->getDecl()->hasObjectMember()) {
Ken Dyck1a8c15a2011-04-24 17:37:26 +00001253 CharUnits size = TypeInfo.first;
Chris Lattner2acc6e32011-07-18 04:24:23 +00001254 llvm::Type *SizeTy = ConvertType(getContext().getSizeType());
Ken Dyck1a8c15a2011-04-24 17:37:26 +00001255 llvm::Value *SizeVal =
1256 llvm::ConstantInt::get(SizeTy, size.getQuantity());
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00001257 CGM.getObjCRuntime().EmitGCMemmoveCollectable(*this, DestPtr, SrcPtr,
1258 SizeVal);
1259 return;
1260 }
1261 }
1262 }
1263
Benjamin Kramer9f0c7cc2010-12-30 00:13:21 +00001264 Builder.CreateMemCpy(DestPtr, SrcPtr,
Ken Dyck1a8c15a2011-04-24 17:37:26 +00001265 llvm::ConstantInt::get(IntPtrTy,
1266 TypeInfo.first.getQuantity()),
Eli Friedmanbd7d8282011-12-05 22:23:28 +00001267 Alignment, isVolatile);
Daniel Dunbar7482d122008-09-09 20:49:46 +00001268}
Sebastian Redl32cf1f22012-02-17 08:42:25 +00001269
Sebastian Redl972edf02012-02-19 16:03:09 +00001270void CodeGenFunction::MaybeEmitStdInitializerListCleanup(llvm::Value *loc,
1271 const Expr *init) {
Sebastian Redl32cf1f22012-02-17 08:42:25 +00001272 const ExprWithCleanups *cleanups = dyn_cast<ExprWithCleanups>(init);
Sebastian Redl972edf02012-02-19 16:03:09 +00001273 if (cleanups)
1274 init = cleanups->getSubExpr();
Sebastian Redl32cf1f22012-02-17 08:42:25 +00001275
1276 if (isa<InitListExpr>(init) &&
1277 cast<InitListExpr>(init)->initializesStdInitializerList()) {
1278 // We initialized this std::initializer_list with an initializer list.
1279 // A backing array was created. Push a cleanup for it.
Sebastian Redl972edf02012-02-19 16:03:09 +00001280 EmitStdInitializerListCleanup(loc, cast<InitListExpr>(init));
Sebastian Redl32cf1f22012-02-17 08:42:25 +00001281 }
1282}
1283
Sebastian Redlaf130fd2012-02-19 12:28:02 +00001284static void EmitRecursiveStdInitializerListCleanup(CodeGenFunction &CGF,
1285 llvm::Value *arrayStart,
1286 const InitListExpr *init) {
1287 // Check if there are any recursive cleanups to do, i.e. if we have
1288 // std::initializer_list<std::initializer_list<obj>> list = {{obj()}};
1289 // then we need to destroy the inner array as well.
1290 for (unsigned i = 0, e = init->getNumInits(); i != e; ++i) {
1291 const InitListExpr *subInit = dyn_cast<InitListExpr>(init->getInit(i));
1292 if (!subInit || !subInit->initializesStdInitializerList())
1293 continue;
1294
1295 // This one needs to be destroyed. Get the address of the std::init_list.
1296 llvm::Value *offset = llvm::ConstantInt::get(CGF.SizeTy, i);
1297 llvm::Value *loc = CGF.Builder.CreateInBoundsGEP(arrayStart, offset,
1298 "std.initlist");
1299 CGF.EmitStdInitializerListCleanup(loc, subInit);
1300 }
1301}
1302
1303void CodeGenFunction::EmitStdInitializerListCleanup(llvm::Value *loc,
Sebastian Redl32cf1f22012-02-17 08:42:25 +00001304 const InitListExpr *init) {
1305 ASTContext &ctx = getContext();
1306 QualType element = GetStdInitializerListElementType(init->getType());
1307 unsigned numInits = init->getNumInits();
1308 llvm::APInt size(ctx.getTypeSize(ctx.getSizeType()), numInits);
1309 QualType array =ctx.getConstantArrayType(element, size, ArrayType::Normal, 0);
1310 QualType arrayPtr = ctx.getPointerType(array);
1311 llvm::Type *arrayPtrType = ConvertType(arrayPtr);
1312
1313 // lvalue is the location of a std::initializer_list, which as its first
1314 // element has a pointer to the array we want to destroy.
Sebastian Redlaf130fd2012-02-19 12:28:02 +00001315 llvm::Value *startPointer = Builder.CreateStructGEP(loc, 0, "startPointer");
1316 llvm::Value *startAddress = Builder.CreateLoad(startPointer, "startAddress");
Sebastian Redl32cf1f22012-02-17 08:42:25 +00001317
Sebastian Redlaf130fd2012-02-19 12:28:02 +00001318 ::EmitRecursiveStdInitializerListCleanup(*this, startAddress, init);
1319
1320 llvm::Value *arrayAddress =
1321 Builder.CreateBitCast(startAddress, arrayPtrType, "arrayAddress");
Sebastian Redl32cf1f22012-02-17 08:42:25 +00001322 ::EmitStdInitializerListCleanup(*this, array, arrayAddress, init);
1323}