blob: fbcdcc0d3d7512a3776e1062c1e59ad5575a0f2d [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"
Daniel Dunbarde7fb842008-08-11 05:00:27 +000019#include "clang/AST/StmtVisitor.h"
Chris Lattner883f6a72007-08-11 00:04:45 +000020#include "llvm/Constants.h"
21#include "llvm/Function.h"
Devang Patel636c3d02007-10-26 17:44:44 +000022#include "llvm/GlobalVariable.h"
Chris Lattnerf81557c2008-04-04 18:42:16 +000023#include "llvm/Intrinsics.h"
Chris Lattneraf6f5282007-08-10 20:13:28 +000024using namespace clang;
25using namespace CodeGen;
Chris Lattner883f6a72007-08-11 00:04:45 +000026
Chris Lattner9c033562007-08-21 04:25:47 +000027//===----------------------------------------------------------------------===//
28// Aggregate Expression Emitter
29//===----------------------------------------------------------------------===//
30
31namespace {
Benjamin Kramer85b45212009-11-28 19:45:26 +000032class AggExprEmitter : public StmtVisitor<AggExprEmitter> {
Chris Lattner9c033562007-08-21 04:25:47 +000033 CodeGenFunction &CGF;
Daniel Dunbar45d196b2008-11-01 01:53:16 +000034 CGBuilderTy &Builder;
John McCall558d2ab2010-09-15 10:14:12 +000035 AggValueSlot Dest;
Mike Stump49d1cd52009-05-26 22:03:21 +000036 bool IgnoreResult;
John McCallef072fd2010-05-22 01:48:05 +000037
John McCall410ffb22011-08-25 23:04:34 +000038 /// We want to use 'dest' as the return slot except under two
39 /// conditions:
40 /// - The destination slot requires garbage collection, so we
41 /// need to use the GC API.
42 /// - The destination slot is potentially aliased.
43 bool shouldUseDestForReturnSlot() const {
44 return !(Dest.requiresGCollection() || Dest.isPotentiallyAliased());
45 }
46
John McCallef072fd2010-05-22 01:48:05 +000047 ReturnValueSlot getReturnValueSlot() const {
John McCall410ffb22011-08-25 23:04:34 +000048 if (!shouldUseDestForReturnSlot())
49 return ReturnValueSlot();
John McCallfa037bd2010-05-22 22:13:32 +000050
John McCall558d2ab2010-09-15 10:14:12 +000051 return ReturnValueSlot(Dest.getAddr(), Dest.isVolatile());
52 }
53
54 AggValueSlot EnsureSlot(QualType T) {
55 if (!Dest.isIgnored()) return Dest;
56 return CGF.CreateAggTemp(T, "agg.tmp.ensured");
John McCallef072fd2010-05-22 01:48:05 +000057 }
John McCallfa037bd2010-05-22 22:13:32 +000058
Chris Lattner9c033562007-08-21 04:25:47 +000059public:
John McCall558d2ab2010-09-15 10:14:12 +000060 AggExprEmitter(CodeGenFunction &cgf, AggValueSlot Dest,
Fariborz Jahanian474e2fe2010-09-16 00:20:07 +000061 bool ignore)
John McCall558d2ab2010-09-15 10:14:12 +000062 : CGF(cgf), Builder(CGF.Builder), Dest(Dest),
Fariborz Jahanian474e2fe2010-09-16 00:20:07 +000063 IgnoreResult(ignore) {
Chris Lattner9c033562007-08-21 04:25:47 +000064 }
65
Chris Lattneree755f92007-08-21 04:59:27 +000066 //===--------------------------------------------------------------------===//
67 // Utilities
68 //===--------------------------------------------------------------------===//
69
Chris Lattner9c033562007-08-21 04:25:47 +000070 /// EmitAggLoadOfLValue - Given an expression with aggregate type that
71 /// represents a value lvalue, this method emits the address of the lvalue,
72 /// then loads the result into DestPtr.
73 void EmitAggLoadOfLValue(const Expr *E);
Eli Friedman922696f2008-05-19 17:51:16 +000074
Mike Stump4ac20dd2009-05-23 20:28:01 +000075 /// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
Mike Stump49d1cd52009-05-26 22:03:21 +000076 void EmitFinalDestCopy(const Expr *E, LValue Src, bool Ignore = false);
Eli Friedmanbd7d8282011-12-05 22:23:28 +000077 void EmitFinalDestCopy(const Expr *E, RValue Src, bool Ignore = false,
78 unsigned Alignment = 0);
Mike Stump4ac20dd2009-05-23 20:28:01 +000079
John McCall410ffb22011-08-25 23:04:34 +000080 void EmitMoveFromReturnSlot(const Expr *E, RValue Src);
John McCallfa037bd2010-05-22 22:13:32 +000081
John McCall7c2349b2011-08-25 20:40:09 +000082 AggValueSlot::NeedsGCBarriers_t needsGC(QualType T) {
Douglas Gregore289d812011-09-13 17:21:33 +000083 if (CGF.getLangOptions().getGC() && TypeRequiresGCollection(T))
John McCall7c2349b2011-08-25 20:40:09 +000084 return AggValueSlot::NeedsGCBarriers;
85 return AggValueSlot::DoesNotNeedGCBarriers;
86 }
87
John McCallfa037bd2010-05-22 22:13:32 +000088 bool TypeRequiresGCollection(QualType T);
89
Chris Lattneree755f92007-08-21 04:59:27 +000090 //===--------------------------------------------------------------------===//
91 // Visitor Methods
92 //===--------------------------------------------------------------------===//
Mike Stump1eb44332009-09-09 15:08:12 +000093
Chris Lattner9c033562007-08-21 04:25:47 +000094 void VisitStmt(Stmt *S) {
Daniel Dunbar488e9932008-08-16 00:56:44 +000095 CGF.ErrorUnsupported(S, "aggregate expression");
Chris Lattner9c033562007-08-21 04:25:47 +000096 }
97 void VisitParenExpr(ParenExpr *PE) { Visit(PE->getSubExpr()); }
Peter Collingbournef111d932011-04-15 00:35:48 +000098 void VisitGenericSelectionExpr(GenericSelectionExpr *GE) {
99 Visit(GE->getResultExpr());
100 }
Eli Friedman12444a22009-01-27 09:03:41 +0000101 void VisitUnaryExtension(UnaryOperator *E) { Visit(E->getSubExpr()); }
John McCall91a57552011-07-15 05:09:51 +0000102 void VisitSubstNonTypeTemplateParmExpr(SubstNonTypeTemplateParmExpr *E) {
103 return Visit(E->getReplacement());
104 }
Chris Lattner9c033562007-08-21 04:25:47 +0000105
106 // l-values.
Seo Sanghyeon9b73b392007-12-14 02:04:12 +0000107 void VisitDeclRefExpr(DeclRefExpr *DRE) { EmitAggLoadOfLValue(DRE); }
108 void VisitMemberExpr(MemberExpr *ME) { EmitAggLoadOfLValue(ME); }
109 void VisitUnaryDeref(UnaryOperator *E) { EmitAggLoadOfLValue(E); }
Daniel Dunbar5be028f2010-01-04 18:47:06 +0000110 void VisitStringLiteral(StringLiteral *E) { EmitAggLoadOfLValue(E); }
Douglas Gregor751ec9b2011-06-17 04:59:12 +0000111 void VisitCompoundLiteralExpr(CompoundLiteralExpr *E);
Seo Sanghyeon9b73b392007-12-14 02:04:12 +0000112 void VisitArraySubscriptExpr(ArraySubscriptExpr *E) {
113 EmitAggLoadOfLValue(E);
114 }
Chris Lattnerf0a990c2009-04-21 23:00:09 +0000115 void VisitBlockDeclRefExpr(const BlockDeclRefExpr *E) {
Mike Stump1eb44332009-09-09 15:08:12 +0000116 EmitAggLoadOfLValue(E);
Chris Lattnerf0a990c2009-04-21 23:00:09 +0000117 }
118 void VisitPredefinedExpr(const PredefinedExpr *E) {
Mike Stump1eb44332009-09-09 15:08:12 +0000119 EmitAggLoadOfLValue(E);
Chris Lattnerf0a990c2009-04-21 23:00:09 +0000120 }
Mike Stump1eb44332009-09-09 15:08:12 +0000121
Chris Lattner9c033562007-08-21 04:25:47 +0000122 // Operators.
Anders Carlsson4d8673b2009-08-07 23:22:37 +0000123 void VisitCastExpr(CastExpr *E);
Anders Carlsson148fe672007-10-31 22:04:46 +0000124 void VisitCallExpr(const CallExpr *E);
Chris Lattnerb2d963f2007-08-31 22:54:14 +0000125 void VisitStmtExpr(const StmtExpr *E);
Chris Lattner9c033562007-08-21 04:25:47 +0000126 void VisitBinaryOperator(const BinaryOperator *BO);
Fariborz Jahanian8bfd31f2009-10-22 22:57:31 +0000127 void VisitPointerToDataMemberBinaryOperator(const BinaryOperator *BO);
Chris Lattner03d6fb92007-08-21 04:43:17 +0000128 void VisitBinAssign(const BinaryOperator *E);
Eli Friedman07fa52a2008-05-20 07:56:31 +0000129 void VisitBinComma(const BinaryOperator *E);
Chris Lattner9c033562007-08-21 04:25:47 +0000130
Chris Lattner8fdf3282008-06-24 17:04:18 +0000131 void VisitObjCMessageExpr(ObjCMessageExpr *E);
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000132 void VisitObjCIvarRefExpr(ObjCIvarRefExpr *E) {
133 EmitAggLoadOfLValue(E);
134 }
Mike Stump1eb44332009-09-09 15:08:12 +0000135
John McCall56ca35d2011-02-17 10:25:35 +0000136 void VisitAbstractConditionalOperator(const AbstractConditionalOperator *CO);
Anders Carlssona294ca82009-07-08 18:33:14 +0000137 void VisitChooseExpr(const ChooseExpr *CE);
Devang Patel636c3d02007-10-26 17:44:44 +0000138 void VisitInitListExpr(InitListExpr *E);
Anders Carlsson30311fa2009-12-16 06:57:54 +0000139 void VisitImplicitValueInitExpr(ImplicitValueInitExpr *E);
Chris Lattner04421082008-04-08 04:40:51 +0000140 void VisitCXXDefaultArgExpr(CXXDefaultArgExpr *DAE) {
141 Visit(DAE->getExpr());
142 }
Anders Carlssonb58d0172009-05-30 23:23:33 +0000143 void VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E);
Anders Carlsson31ccf372009-05-03 17:47:16 +0000144 void VisitCXXConstructExpr(const CXXConstructExpr *E);
John McCall4765fa02010-12-06 08:20:24 +0000145 void VisitExprWithCleanups(ExprWithCleanups *E);
Douglas Gregored8abf12010-07-08 06:14:04 +0000146 void VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *E);
Mike Stump2710c412009-11-18 00:40:12 +0000147 void VisitCXXTypeidExpr(CXXTypeidExpr *E) { EmitAggLoadOfLValue(E); }
Douglas Gregor03e80032011-06-21 17:03:29 +0000148 void VisitMaterializeTemporaryExpr(MaterializeTemporaryExpr *E);
John McCalle996ffd2011-02-16 08:02:54 +0000149 void VisitOpaqueValueExpr(OpaqueValueExpr *E);
150
John McCall4b9c2d22011-11-06 09:01:30 +0000151 void VisitPseudoObjectExpr(PseudoObjectExpr *E) {
152 if (E->isGLValue()) {
153 LValue LV = CGF.EmitPseudoObjectLValue(E);
154 return EmitFinalDestCopy(E, LV);
155 }
156
157 CGF.EmitPseudoObjectRValue(E, EnsureSlot(E->getType()));
158 }
159
Eli Friedmanb1851242008-05-27 15:51:49 +0000160 void VisitVAArgExpr(VAArgExpr *E);
Chris Lattnerf81557c2008-04-04 18:42:16 +0000161
John McCalla07398e2011-06-16 04:16:24 +0000162 void EmitInitializationToLValue(Expr *E, LValue Address);
163 void EmitNullInitializationToLValue(LValue Address);
Chris Lattner9c033562007-08-21 04:25:47 +0000164 // case Expr::ChooseExprClass:
Mike Stump39406b12009-12-09 19:24:08 +0000165 void VisitCXXThrowExpr(const CXXThrowExpr *E) { CGF.EmitCXXThrowExpr(E); }
Eli Friedman276b0612011-10-11 02:20:01 +0000166 void VisitAtomicExpr(AtomicExpr *E) {
167 CGF.EmitAtomicExpr(E, EnsureSlot(E->getType()).getAddr());
168 }
Chris Lattner9c033562007-08-21 04:25:47 +0000169};
170} // end anonymous namespace.
171
Chris Lattneree755f92007-08-21 04:59:27 +0000172//===----------------------------------------------------------------------===//
173// Utilities
174//===----------------------------------------------------------------------===//
Chris Lattner9c033562007-08-21 04:25:47 +0000175
Chris Lattner883f6a72007-08-11 00:04:45 +0000176/// EmitAggLoadOfLValue - Given an expression with aggregate type that
177/// represents a value lvalue, this method emits the address of the lvalue,
178/// then loads the result into DestPtr.
Chris Lattner9c033562007-08-21 04:25:47 +0000179void AggExprEmitter::EmitAggLoadOfLValue(const Expr *E) {
180 LValue LV = CGF.EmitLValue(E);
Mike Stump4ac20dd2009-05-23 20:28:01 +0000181 EmitFinalDestCopy(E, LV);
182}
183
John McCallfa037bd2010-05-22 22:13:32 +0000184/// \brief True if the given aggregate type requires special GC API calls.
185bool AggExprEmitter::TypeRequiresGCollection(QualType T) {
186 // Only record types have members that might require garbage collection.
187 const RecordType *RecordTy = T->getAs<RecordType>();
188 if (!RecordTy) return false;
189
190 // Don't mess with non-trivial C++ types.
191 RecordDecl *Record = RecordTy->getDecl();
192 if (isa<CXXRecordDecl>(Record) &&
193 (!cast<CXXRecordDecl>(Record)->hasTrivialCopyConstructor() ||
194 !cast<CXXRecordDecl>(Record)->hasTrivialDestructor()))
195 return false;
196
197 // Check whether the type has an object member.
198 return Record->hasObjectMember();
199}
200
John McCall410ffb22011-08-25 23:04:34 +0000201/// \brief Perform the final move to DestPtr if for some reason
202/// getReturnValueSlot() didn't use it directly.
John McCallfa037bd2010-05-22 22:13:32 +0000203///
204/// The idea is that you do something like this:
205/// RValue Result = EmitSomething(..., getReturnValueSlot());
John McCall410ffb22011-08-25 23:04:34 +0000206/// EmitMoveFromReturnSlot(E, Result);
207///
208/// If nothing interferes, this will cause the result to be emitted
209/// directly into the return value slot. Otherwise, a final move
210/// will be performed.
211void AggExprEmitter::EmitMoveFromReturnSlot(const Expr *E, RValue Src) {
212 if (shouldUseDestForReturnSlot()) {
213 // Logically, Dest.getAddr() should equal Src.getAggregateAddr().
214 // The possibility of undef rvalues complicates that a lot,
215 // though, so we can't really assert.
216 return;
Fariborz Jahanian55bcace2010-06-15 22:44:06 +0000217 }
John McCall410ffb22011-08-25 23:04:34 +0000218
219 // Otherwise, do a final copy,
220 assert(Dest.getAddr() != Src.getAggregateAddr());
221 EmitFinalDestCopy(E, Src, /*Ignore*/ true);
John McCallfa037bd2010-05-22 22:13:32 +0000222}
223
Mike Stump4ac20dd2009-05-23 20:28:01 +0000224/// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
Eli Friedmanbd7d8282011-12-05 22:23:28 +0000225void AggExprEmitter::EmitFinalDestCopy(const Expr *E, RValue Src, bool Ignore,
226 unsigned Alignment) {
Mike Stump4ac20dd2009-05-23 20:28:01 +0000227 assert(Src.isAggregate() && "value must be aggregate value!");
228
John McCall558d2ab2010-09-15 10:14:12 +0000229 // If Dest is ignored, then we're evaluating an aggregate expression
John McCalla8f28da2010-08-25 02:50:31 +0000230 // in a context (like an expression statement) that doesn't care
231 // about the result. C says that an lvalue-to-rvalue conversion is
232 // performed in these cases; C++ says that it is not. In either
233 // case, we don't actually need to do anything unless the value is
234 // volatile.
John McCall558d2ab2010-09-15 10:14:12 +0000235 if (Dest.isIgnored()) {
John McCalla8f28da2010-08-25 02:50:31 +0000236 if (!Src.isVolatileQualified() ||
237 CGF.CGM.getLangOptions().CPlusPlus ||
238 (IgnoreResult && Ignore))
Mike Stump9ccb1032009-05-23 22:01:27 +0000239 return;
Fariborz Jahanian8a970052010-10-22 22:05:03 +0000240
Mike Stump49d1cd52009-05-26 22:03:21 +0000241 // If the source is volatile, we must read from it; to do that, we need
242 // some place to put it.
John McCall558d2ab2010-09-15 10:14:12 +0000243 Dest = CGF.CreateAggTemp(E->getType(), "agg.tmp");
Mike Stump9ccb1032009-05-23 22:01:27 +0000244 }
Chris Lattner883f6a72007-08-11 00:04:45 +0000245
John McCalld1a5f132010-09-16 03:13:23 +0000246 if (Dest.requiresGCollection()) {
Ken Dyck479b61c2011-04-24 17:08:00 +0000247 CharUnits size = CGF.getContext().getTypeSizeInChars(E->getType());
Chris Lattner2acc6e32011-07-18 04:24:23 +0000248 llvm::Type *SizeTy = CGF.ConvertType(CGF.getContext().getSizeType());
Ken Dyck479b61c2011-04-24 17:08:00 +0000249 llvm::Value *SizeVal = llvm::ConstantInt::get(SizeTy, size.getQuantity());
Fariborz Jahanian08c32132009-08-31 19:33:16 +0000250 CGF.CGM.getObjCRuntime().EmitGCMemmoveCollectable(CGF,
John McCall558d2ab2010-09-15 10:14:12 +0000251 Dest.getAddr(),
252 Src.getAggregateAddr(),
253 SizeVal);
Fariborz Jahanian08c32132009-08-31 19:33:16 +0000254 return;
255 }
Mike Stump4ac20dd2009-05-23 20:28:01 +0000256 // If the result of the assignment is used, copy the LHS there also.
257 // FIXME: Pass VolatileDest as well. I think we also need to merge volatile
258 // from the source as well, as we can't eliminate it if either operand
259 // is volatile, unless copy has volatile for both source and destination..
John McCall558d2ab2010-09-15 10:14:12 +0000260 CGF.EmitAggregateCopy(Dest.getAddr(), Src.getAggregateAddr(), E->getType(),
Eli Friedmanbd7d8282011-12-05 22:23:28 +0000261 Dest.isVolatile()|Src.isVolatileQualified(),
262 Alignment);
Mike Stump4ac20dd2009-05-23 20:28:01 +0000263}
264
265/// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
Mike Stump49d1cd52009-05-26 22:03:21 +0000266void AggExprEmitter::EmitFinalDestCopy(const Expr *E, LValue Src, bool Ignore) {
Mike Stump4ac20dd2009-05-23 20:28:01 +0000267 assert(Src.isSimple() && "Can't have aggregate bitfield, vector, etc");
268
Eli Friedmanbd7d8282011-12-05 22:23:28 +0000269 CharUnits Alignment = std::min(Src.getAlignment(), Dest.getAlignment());
270 EmitFinalDestCopy(E, Src.asAggregateRValue(), Ignore, Alignment.getQuantity());
Chris Lattner883f6a72007-08-11 00:04:45 +0000271}
272
Chris Lattneree755f92007-08-21 04:59:27 +0000273//===----------------------------------------------------------------------===//
274// Visitor Methods
275//===----------------------------------------------------------------------===//
276
Douglas Gregor03e80032011-06-21 17:03:29 +0000277void AggExprEmitter::VisitMaterializeTemporaryExpr(MaterializeTemporaryExpr *E){
278 Visit(E->GetTemporaryExpr());
279}
280
John McCalle996ffd2011-02-16 08:02:54 +0000281void AggExprEmitter::VisitOpaqueValueExpr(OpaqueValueExpr *e) {
John McCall56ca35d2011-02-17 10:25:35 +0000282 EmitFinalDestCopy(e, CGF.getOpaqueLValueMapping(e));
John McCalle996ffd2011-02-16 08:02:54 +0000283}
284
Douglas Gregor751ec9b2011-06-17 04:59:12 +0000285void
286AggExprEmitter::VisitCompoundLiteralExpr(CompoundLiteralExpr *E) {
Douglas Gregor673e98b2011-06-17 16:37:20 +0000287 if (E->getType().isPODType(CGF.getContext())) {
288 // For a POD type, just emit a load of the lvalue + a copy, because our
289 // compound literal might alias the destination.
290 // FIXME: This is a band-aid; the real problem appears to be in our handling
291 // of assignments, where we store directly into the LHS without checking
292 // whether anything in the RHS aliases.
293 EmitAggLoadOfLValue(E);
294 return;
295 }
296
Douglas Gregor751ec9b2011-06-17 04:59:12 +0000297 AggValueSlot Slot = EnsureSlot(E->getType());
298 CGF.EmitAggExpr(E->getInitializer(), Slot);
299}
300
301
Anders Carlsson4d8673b2009-08-07 23:22:37 +0000302void AggExprEmitter::VisitCastExpr(CastExpr *E) {
Anders Carlsson30168422009-09-29 01:23:39 +0000303 switch (E->getCastKind()) {
Anders Carlsson575b3742011-04-11 02:03:26 +0000304 case CK_Dynamic: {
Douglas Gregor69cfeb12010-05-14 21:31:02 +0000305 assert(isa<CXXDynamicCastExpr>(E) && "CK_Dynamic without a dynamic_cast?");
306 LValue LV = CGF.EmitCheckedLValue(E->getSubExpr());
307 // FIXME: Do we also need to handle property references here?
308 if (LV.isSimple())
309 CGF.EmitDynamicCast(LV.getAddress(), cast<CXXDynamicCastExpr>(E));
310 else
311 CGF.CGM.ErrorUnsupported(E, "non-simple lvalue dynamic_cast");
312
John McCall558d2ab2010-09-15 10:14:12 +0000313 if (!Dest.isIgnored())
314 CGF.CGM.ErrorUnsupported(E, "lvalue dynamic_cast with a destination");
Douglas Gregor69cfeb12010-05-14 21:31:02 +0000315 break;
316 }
317
John McCall2de56d12010-08-25 11:45:40 +0000318 case CK_ToUnion: {
John McCall65912712011-04-12 22:02:02 +0000319 if (Dest.isIgnored()) break;
320
Anders Carlsson4d8673b2009-08-07 23:22:37 +0000321 // GCC union extension
Daniel Dunbar79c39282010-08-21 03:15:20 +0000322 QualType Ty = E->getSubExpr()->getType();
323 QualType PtrTy = CGF.getContext().getPointerType(Ty);
John McCall558d2ab2010-09-15 10:14:12 +0000324 llvm::Value *CastPtr = Builder.CreateBitCast(Dest.getAddr(),
Eli Friedman34ebf4d2009-06-03 20:45:06 +0000325 CGF.ConvertType(PtrTy));
John McCalla07398e2011-06-16 04:16:24 +0000326 EmitInitializationToLValue(E->getSubExpr(),
327 CGF.MakeAddrLValue(CastPtr, Ty));
Anders Carlsson30168422009-09-29 01:23:39 +0000328 break;
Nuno Lopes7e916272009-01-15 20:14:33 +0000329 }
Mike Stump1eb44332009-09-09 15:08:12 +0000330
John McCall2de56d12010-08-25 11:45:40 +0000331 case CK_DerivedToBase:
332 case CK_BaseToDerived:
333 case CK_UncheckedDerivedToBase: {
David Blaikieb219cfc2011-09-23 05:06:16 +0000334 llvm_unreachable("cannot perform hierarchy conversion in EmitAggExpr: "
Douglas Gregor2d6b0e92010-05-22 05:17:18 +0000335 "should have been unpacked before we got here");
Douglas Gregor2d6b0e92010-05-22 05:17:18 +0000336 }
337
John McCallf6a16482010-12-04 03:47:34 +0000338 case CK_LValueToRValue: // hope for downstream optimization
John McCall2de56d12010-08-25 11:45:40 +0000339 case CK_NoOp:
David Chisnall7a7ee302012-01-16 17:27:18 +0000340 case CK_AtomicToNonAtomic:
341 case CK_NonAtomicToAtomic:
John McCall2de56d12010-08-25 11:45:40 +0000342 case CK_UserDefinedConversion:
343 case CK_ConstructorConversion:
Anders Carlsson30168422009-09-29 01:23:39 +0000344 assert(CGF.getContext().hasSameUnqualifiedType(E->getSubExpr()->getType(),
345 E->getType()) &&
346 "Implicit cast types must be compatible");
347 Visit(E->getSubExpr());
348 break;
John McCall0ae287a2010-12-01 04:43:34 +0000349
John McCall2de56d12010-08-25 11:45:40 +0000350 case CK_LValueBitCast:
John McCall0ae287a2010-12-01 04:43:34 +0000351 llvm_unreachable("should not be emitting lvalue bitcast as rvalue");
Douglas Gregore39a3892010-07-13 23:17:26 +0000352 break;
John McCall1de4d4e2011-04-07 08:22:57 +0000353
John McCall0ae287a2010-12-01 04:43:34 +0000354 case CK_Dependent:
355 case CK_BitCast:
356 case CK_ArrayToPointerDecay:
357 case CK_FunctionToPointerDecay:
358 case CK_NullToPointer:
359 case CK_NullToMemberPointer:
360 case CK_BaseToDerivedMemberPointer:
361 case CK_DerivedToBaseMemberPointer:
362 case CK_MemberPointerToBoolean:
363 case CK_IntegralToPointer:
364 case CK_PointerToIntegral:
365 case CK_PointerToBoolean:
366 case CK_ToVoid:
367 case CK_VectorSplat:
368 case CK_IntegralCast:
369 case CK_IntegralToBoolean:
370 case CK_IntegralToFloating:
371 case CK_FloatingToIntegral:
372 case CK_FloatingToBoolean:
373 case CK_FloatingCast:
John McCall1d9b3b22011-09-09 05:25:32 +0000374 case CK_CPointerToObjCPointerCast:
375 case CK_BlockPointerToObjCPointerCast:
John McCall0ae287a2010-12-01 04:43:34 +0000376 case CK_AnyPointerToBlockPointerCast:
377 case CK_ObjCObjectLValueCast:
378 case CK_FloatingRealToComplex:
379 case CK_FloatingComplexToReal:
380 case CK_FloatingComplexToBoolean:
381 case CK_FloatingComplexCast:
382 case CK_FloatingComplexToIntegralComplex:
383 case CK_IntegralRealToComplex:
384 case CK_IntegralComplexToReal:
385 case CK_IntegralComplexToBoolean:
386 case CK_IntegralComplexCast:
387 case CK_IntegralComplexToFloatingComplex:
John McCall33e56f32011-09-10 06:18:15 +0000388 case CK_ARCProduceObject:
389 case CK_ARCConsumeObject:
390 case CK_ARCReclaimReturnedObject:
391 case CK_ARCExtendBlockObject:
John McCall0ae287a2010-12-01 04:43:34 +0000392 llvm_unreachable("cast kind invalid for aggregate types");
Anders Carlsson30168422009-09-29 01:23:39 +0000393 }
Anders Carlssone4707ff2008-01-14 06:28:57 +0000394}
395
Chris Lattner96196622008-07-26 22:37:01 +0000396void AggExprEmitter::VisitCallExpr(const CallExpr *E) {
Anders Carlssone70e8f72009-05-27 16:45:02 +0000397 if (E->getCallReturnType()->isReferenceType()) {
398 EmitAggLoadOfLValue(E);
399 return;
400 }
Mike Stump1eb44332009-09-09 15:08:12 +0000401
John McCallfa037bd2010-05-22 22:13:32 +0000402 RValue RV = CGF.EmitCallExpr(E, getReturnValueSlot());
John McCall410ffb22011-08-25 23:04:34 +0000403 EmitMoveFromReturnSlot(E, RV);
Anders Carlsson148fe672007-10-31 22:04:46 +0000404}
Chris Lattner96196622008-07-26 22:37:01 +0000405
406void AggExprEmitter::VisitObjCMessageExpr(ObjCMessageExpr *E) {
John McCallfa037bd2010-05-22 22:13:32 +0000407 RValue RV = CGF.EmitObjCMessageExpr(E, getReturnValueSlot());
John McCall410ffb22011-08-25 23:04:34 +0000408 EmitMoveFromReturnSlot(E, RV);
Chris Lattner8fdf3282008-06-24 17:04:18 +0000409}
Anders Carlsson148fe672007-10-31 22:04:46 +0000410
Chris Lattner96196622008-07-26 22:37:01 +0000411void AggExprEmitter::VisitBinComma(const BinaryOperator *E) {
John McCall2a416372010-12-05 02:00:02 +0000412 CGF.EmitIgnoredExpr(E->getLHS());
John McCall558d2ab2010-09-15 10:14:12 +0000413 Visit(E->getRHS());
Eli Friedman07fa52a2008-05-20 07:56:31 +0000414}
415
Chris Lattnerb2d963f2007-08-31 22:54:14 +0000416void AggExprEmitter::VisitStmtExpr(const StmtExpr *E) {
John McCall150b4622011-01-26 04:00:11 +0000417 CodeGenFunction::StmtExprEvaluation eval(CGF);
John McCall558d2ab2010-09-15 10:14:12 +0000418 CGF.EmitCompoundStmt(*E->getSubStmt(), true, Dest);
Chris Lattnerb2d963f2007-08-31 22:54:14 +0000419}
420
Chris Lattner9c033562007-08-21 04:25:47 +0000421void AggExprEmitter::VisitBinaryOperator(const BinaryOperator *E) {
John McCall2de56d12010-08-25 11:45:40 +0000422 if (E->getOpcode() == BO_PtrMemD || E->getOpcode() == BO_PtrMemI)
Fariborz Jahanian8bfd31f2009-10-22 22:57:31 +0000423 VisitPointerToDataMemberBinaryOperator(E);
424 else
425 CGF.ErrorUnsupported(E, "aggregate binary expression");
426}
427
428void AggExprEmitter::VisitPointerToDataMemberBinaryOperator(
429 const BinaryOperator *E) {
430 LValue LV = CGF.EmitPointerToDataMemberBinaryExpr(E);
431 EmitFinalDestCopy(E, LV);
Chris Lattneree755f92007-08-21 04:59:27 +0000432}
433
Chris Lattner03d6fb92007-08-21 04:43:17 +0000434void AggExprEmitter::VisitBinAssign(const BinaryOperator *E) {
Eli Friedmanff6e2b72008-02-11 01:09:17 +0000435 // For an assignment to work, the value on the right has
436 // to be compatible with the value on the left.
Eli Friedman2dce5f82009-05-28 23:04:00 +0000437 assert(CGF.getContext().hasSameUnqualifiedType(E->getLHS()->getType(),
438 E->getRHS()->getType())
Eli Friedmanff6e2b72008-02-11 01:09:17 +0000439 && "Invalid assignment");
John McCallcd940a12010-12-06 06:10:02 +0000440
Fariborz Jahanian2c7168c2011-04-29 21:53:21 +0000441 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E->getLHS()))
Fariborz Jahanian73a6f8e2011-04-29 22:11:28 +0000442 if (const VarDecl *VD = dyn_cast<VarDecl>(DRE->getDecl()))
Fariborz Jahanian2c7168c2011-04-29 21:53:21 +0000443 if (VD->hasAttr<BlocksAttr>() &&
444 E->getRHS()->HasSideEffects(CGF.getContext())) {
445 // When __block variable on LHS, the RHS must be evaluated first
446 // as it may change the 'forwarding' field via call to Block_copy.
447 LValue RHS = CGF.EmitLValue(E->getRHS());
448 LValue LHS = CGF.EmitLValue(E->getLHS());
John McCall7c2349b2011-08-25 20:40:09 +0000449 Dest = AggValueSlot::forLValue(LHS, AggValueSlot::IsDestructed,
John McCall44184392011-08-26 07:31:35 +0000450 needsGC(E->getLHS()->getType()),
451 AggValueSlot::IsAliased);
Fariborz Jahanian2c7168c2011-04-29 21:53:21 +0000452 EmitFinalDestCopy(E, RHS, true);
453 return;
454 }
Fariborz Jahanian2c7168c2011-04-29 21:53:21 +0000455
Chris Lattner9c033562007-08-21 04:25:47 +0000456 LValue LHS = CGF.EmitLValue(E->getLHS());
Chris Lattner883f6a72007-08-11 00:04:45 +0000457
John McCalldb458062011-11-07 03:59:57 +0000458 // Codegen the RHS so that it stores directly into the LHS.
459 AggValueSlot LHSSlot =
460 AggValueSlot::forLValue(LHS, AggValueSlot::IsDestructed,
461 needsGC(E->getLHS()->getType()),
462 AggValueSlot::IsAliased);
463 CGF.EmitAggExpr(E->getRHS(), LHSSlot, false);
464 EmitFinalDestCopy(E, LHS, true);
Chris Lattner883f6a72007-08-11 00:04:45 +0000465}
466
John McCall56ca35d2011-02-17 10:25:35 +0000467void AggExprEmitter::
468VisitAbstractConditionalOperator(const AbstractConditionalOperator *E) {
Daniel Dunbar9615ecb2008-11-13 01:38:36 +0000469 llvm::BasicBlock *LHSBlock = CGF.createBasicBlock("cond.true");
470 llvm::BasicBlock *RHSBlock = CGF.createBasicBlock("cond.false");
471 llvm::BasicBlock *ContBlock = CGF.createBasicBlock("cond.end");
Mike Stump1eb44332009-09-09 15:08:12 +0000472
John McCall56ca35d2011-02-17 10:25:35 +0000473 // Bind the common expression if necessary.
Eli Friedmand97927d2012-01-06 20:42:20 +0000474 CodeGenFunction::OpaqueValueMapping binding(CGF, E);
John McCall56ca35d2011-02-17 10:25:35 +0000475
John McCall150b4622011-01-26 04:00:11 +0000476 CodeGenFunction::ConditionalEvaluation eval(CGF);
Eli Friedman8e274bd2009-12-25 06:17:05 +0000477 CGF.EmitBranchOnBoolExpr(E->getCond(), LHSBlock, RHSBlock);
Mike Stump1eb44332009-09-09 15:08:12 +0000478
John McCall74fb0ed2010-11-17 00:07:33 +0000479 // Save whether the destination's lifetime is externally managed.
John McCallfd71fb82011-08-26 08:02:37 +0000480 bool isExternallyDestructed = Dest.isExternallyDestructed();
Chris Lattner883f6a72007-08-11 00:04:45 +0000481
John McCall150b4622011-01-26 04:00:11 +0000482 eval.begin(CGF);
483 CGF.EmitBlock(LHSBlock);
John McCall56ca35d2011-02-17 10:25:35 +0000484 Visit(E->getTrueExpr());
John McCall150b4622011-01-26 04:00:11 +0000485 eval.end(CGF);
Mike Stump1eb44332009-09-09 15:08:12 +0000486
John McCall150b4622011-01-26 04:00:11 +0000487 assert(CGF.HaveInsertPoint() && "expression evaluation ended with no IP!");
488 CGF.Builder.CreateBr(ContBlock);
Mike Stump1eb44332009-09-09 15:08:12 +0000489
John McCall74fb0ed2010-11-17 00:07:33 +0000490 // If the result of an agg expression is unused, then the emission
491 // of the LHS might need to create a destination slot. That's fine
492 // with us, and we can safely emit the RHS into the same slot, but
John McCallfd71fb82011-08-26 08:02:37 +0000493 // we shouldn't claim that it's already being destructed.
494 Dest.setExternallyDestructed(isExternallyDestructed);
John McCall74fb0ed2010-11-17 00:07:33 +0000495
John McCall150b4622011-01-26 04:00:11 +0000496 eval.begin(CGF);
497 CGF.EmitBlock(RHSBlock);
John McCall56ca35d2011-02-17 10:25:35 +0000498 Visit(E->getFalseExpr());
John McCall150b4622011-01-26 04:00:11 +0000499 eval.end(CGF);
Mike Stump1eb44332009-09-09 15:08:12 +0000500
Chris Lattner9c033562007-08-21 04:25:47 +0000501 CGF.EmitBlock(ContBlock);
Chris Lattner883f6a72007-08-11 00:04:45 +0000502}
Chris Lattneree755f92007-08-21 04:59:27 +0000503
Anders Carlssona294ca82009-07-08 18:33:14 +0000504void AggExprEmitter::VisitChooseExpr(const ChooseExpr *CE) {
505 Visit(CE->getChosenSubExpr(CGF.getContext()));
506}
507
Eli Friedmanb1851242008-05-27 15:51:49 +0000508void AggExprEmitter::VisitVAArgExpr(VAArgExpr *VE) {
Daniel Dunbar07855702009-02-11 22:25:55 +0000509 llvm::Value *ArgValue = CGF.EmitVAListRef(VE->getSubExpr());
Anders Carlssonddf7cac2008-11-04 05:30:00 +0000510 llvm::Value *ArgPtr = CGF.EmitVAArg(ArgValue, VE->getType());
511
Sebastian Redl0262f022009-01-09 21:09:38 +0000512 if (!ArgPtr) {
Anders Carlssonddf7cac2008-11-04 05:30:00 +0000513 CGF.ErrorUnsupported(VE, "aggregate va_arg expression");
Sebastian Redl0262f022009-01-09 21:09:38 +0000514 return;
515 }
516
Daniel Dunbar79c39282010-08-21 03:15:20 +0000517 EmitFinalDestCopy(VE, CGF.MakeAddrLValue(ArgPtr, VE->getType()));
Eli Friedmanb1851242008-05-27 15:51:49 +0000518}
519
Anders Carlssonb58d0172009-05-30 23:23:33 +0000520void AggExprEmitter::VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E) {
John McCall558d2ab2010-09-15 10:14:12 +0000521 // Ensure that we have a slot, but if we already do, remember
John McCallfd71fb82011-08-26 08:02:37 +0000522 // whether it was externally destructed.
523 bool wasExternallyDestructed = Dest.isExternallyDestructed();
John McCall558d2ab2010-09-15 10:14:12 +0000524 Dest = EnsureSlot(E->getType());
John McCallfd71fb82011-08-26 08:02:37 +0000525
526 // We're going to push a destructor if there isn't already one.
527 Dest.setExternallyDestructed();
Mike Stump1eb44332009-09-09 15:08:12 +0000528
John McCall558d2ab2010-09-15 10:14:12 +0000529 Visit(E->getSubExpr());
Anders Carlssonb58d0172009-05-30 23:23:33 +0000530
John McCallfd71fb82011-08-26 08:02:37 +0000531 // Push that destructor we promised.
532 if (!wasExternallyDestructed)
Peter Collingbourne86811602011-11-27 22:09:22 +0000533 CGF.EmitCXXTemporary(E->getTemporary(), E->getType(), Dest.getAddr());
Anders Carlssonb58d0172009-05-30 23:23:33 +0000534}
535
Anders Carlssonb14095a2009-04-17 00:06:03 +0000536void
Anders Carlsson31ccf372009-05-03 17:47:16 +0000537AggExprEmitter::VisitCXXConstructExpr(const CXXConstructExpr *E) {
John McCall558d2ab2010-09-15 10:14:12 +0000538 AggValueSlot Slot = EnsureSlot(E->getType());
539 CGF.EmitCXXConstructExpr(E, Slot);
Anders Carlsson7f6ad152009-05-19 04:48:36 +0000540}
541
John McCall4765fa02010-12-06 08:20:24 +0000542void AggExprEmitter::VisitExprWithCleanups(ExprWithCleanups *E) {
John McCall1a343eb2011-11-10 08:15:53 +0000543 CGF.enterFullExpression(E);
544 CodeGenFunction::RunCleanupsScope cleanups(CGF);
545 Visit(E->getSubExpr());
Anders Carlssonb14095a2009-04-17 00:06:03 +0000546}
547
Douglas Gregored8abf12010-07-08 06:14:04 +0000548void AggExprEmitter::VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *E) {
John McCall558d2ab2010-09-15 10:14:12 +0000549 QualType T = E->getType();
550 AggValueSlot Slot = EnsureSlot(T);
John McCalla07398e2011-06-16 04:16:24 +0000551 EmitNullInitializationToLValue(CGF.MakeAddrLValue(Slot.getAddr(), T));
Anders Carlsson30311fa2009-12-16 06:57:54 +0000552}
553
554void AggExprEmitter::VisitImplicitValueInitExpr(ImplicitValueInitExpr *E) {
John McCall558d2ab2010-09-15 10:14:12 +0000555 QualType T = E->getType();
556 AggValueSlot Slot = EnsureSlot(T);
John McCalla07398e2011-06-16 04:16:24 +0000557 EmitNullInitializationToLValue(CGF.MakeAddrLValue(Slot.getAddr(), T));
Nuno Lopes329763b2009-10-18 15:18:11 +0000558}
559
Chris Lattner1b726772010-12-02 07:07:26 +0000560/// isSimpleZero - If emitting this value will obviously just cause a store of
561/// zero to memory, return true. This can return false if uncertain, so it just
562/// handles simple cases.
563static bool isSimpleZero(const Expr *E, CodeGenFunction &CGF) {
Peter Collingbournef111d932011-04-15 00:35:48 +0000564 E = E->IgnoreParens();
565
Chris Lattner1b726772010-12-02 07:07:26 +0000566 // 0
567 if (const IntegerLiteral *IL = dyn_cast<IntegerLiteral>(E))
568 return IL->getValue() == 0;
569 // +0.0
570 if (const FloatingLiteral *FL = dyn_cast<FloatingLiteral>(E))
571 return FL->getValue().isPosZero();
572 // int()
573 if ((isa<ImplicitValueInitExpr>(E) || isa<CXXScalarValueInitExpr>(E)) &&
574 CGF.getTypes().isZeroInitializable(E->getType()))
575 return true;
576 // (int*)0 - Null pointer expressions.
577 if (const CastExpr *ICE = dyn_cast<CastExpr>(E))
578 return ICE->getCastKind() == CK_NullToPointer;
579 // '\0'
580 if (const CharacterLiteral *CL = dyn_cast<CharacterLiteral>(E))
581 return CL->getValue() == 0;
582
583 // Otherwise, hard case: conservatively return false.
584 return false;
585}
586
587
Anders Carlsson78e83f82010-02-03 17:33:16 +0000588void
John McCalla07398e2011-06-16 04:16:24 +0000589AggExprEmitter::EmitInitializationToLValue(Expr* E, LValue LV) {
590 QualType type = LV.getType();
Mike Stump7f79f9b2009-05-29 15:46:01 +0000591 // FIXME: Ignore result?
Chris Lattnerf81557c2008-04-04 18:42:16 +0000592 // FIXME: Are initializers affected by volatile?
Chris Lattner1b726772010-12-02 07:07:26 +0000593 if (Dest.isZeroed() && isSimpleZero(E, CGF)) {
594 // Storing "i32 0" to a zero'd memory location is a noop.
595 } else if (isa<ImplicitValueInitExpr>(E)) {
John McCalla07398e2011-06-16 04:16:24 +0000596 EmitNullInitializationToLValue(LV);
597 } else if (type->isReferenceType()) {
Anders Carlsson32f36ba2010-06-26 16:35:32 +0000598 RValue RV = CGF.EmitReferenceBindingToExpr(E, /*InitializedDecl=*/0);
John McCall545d9962011-06-25 02:11:03 +0000599 CGF.EmitStoreThroughLValue(RV, LV);
John McCalla07398e2011-06-16 04:16:24 +0000600 } else if (type->isAnyComplexType()) {
Douglas Gregor3498bdb2009-01-29 17:44:32 +0000601 CGF.EmitComplexExprIntoAddr(E, LV.getAddress(), false);
John McCalla07398e2011-06-16 04:16:24 +0000602 } else if (CGF.hasAggregateLLVMType(type)) {
John McCall7c2349b2011-08-25 20:40:09 +0000603 CGF.EmitAggExpr(E, AggValueSlot::forLValue(LV,
604 AggValueSlot::IsDestructed,
605 AggValueSlot::DoesNotNeedGCBarriers,
John McCall410ffb22011-08-25 23:04:34 +0000606 AggValueSlot::IsNotAliased,
John McCalla07398e2011-06-16 04:16:24 +0000607 Dest.isZeroed()));
John McCallf85e1932011-06-15 23:02:42 +0000608 } else if (LV.isSimple()) {
John McCalla07398e2011-06-16 04:16:24 +0000609 CGF.EmitScalarInit(E, /*D=*/0, LV, /*Captured=*/false);
Eli Friedmanc8ba9612008-05-12 15:06:05 +0000610 } else {
John McCall545d9962011-06-25 02:11:03 +0000611 CGF.EmitStoreThroughLValue(RValue::get(CGF.EmitScalarExpr(E)), LV);
Chris Lattnerf81557c2008-04-04 18:42:16 +0000612 }
Chris Lattnerf81557c2008-04-04 18:42:16 +0000613}
614
John McCalla07398e2011-06-16 04:16:24 +0000615void AggExprEmitter::EmitNullInitializationToLValue(LValue lv) {
616 QualType type = lv.getType();
617
Chris Lattner1b726772010-12-02 07:07:26 +0000618 // If the destination slot is already zeroed out before the aggregate is
619 // copied into it, we don't have to emit any zeros here.
John McCalla07398e2011-06-16 04:16:24 +0000620 if (Dest.isZeroed() && CGF.getTypes().isZeroInitializable(type))
Chris Lattner1b726772010-12-02 07:07:26 +0000621 return;
622
John McCalla07398e2011-06-16 04:16:24 +0000623 if (!CGF.hasAggregateLLVMType(type)) {
Chris Lattnerf81557c2008-04-04 18:42:16 +0000624 // For non-aggregates, we can store zero
John McCalla07398e2011-06-16 04:16:24 +0000625 llvm::Value *null = llvm::Constant::getNullValue(CGF.ConvertType(type));
John McCall545d9962011-06-25 02:11:03 +0000626 CGF.EmitStoreThroughLValue(RValue::get(null), lv);
Lauro Ramos Venancio145cd892008-02-19 19:27:31 +0000627 } else {
Chris Lattnerf81557c2008-04-04 18:42:16 +0000628 // There's a potential optimization opportunity in combining
629 // memsets; that would be easy for arrays, but relatively
630 // difficult for structures with the current code.
John McCalla07398e2011-06-16 04:16:24 +0000631 CGF.EmitNullInitialization(lv.getAddress(), lv.getType());
Chris Lattnerf81557c2008-04-04 18:42:16 +0000632 }
633}
634
Chris Lattnerf81557c2008-04-04 18:42:16 +0000635void AggExprEmitter::VisitInitListExpr(InitListExpr *E) {
Eli Friedmana385b3c2008-12-02 01:17:45 +0000636#if 0
Eli Friedman13a5be12009-12-04 01:30:56 +0000637 // FIXME: Assess perf here? Figure out what cases are worth optimizing here
638 // (Length of globals? Chunks of zeroed-out space?).
Eli Friedmana385b3c2008-12-02 01:17:45 +0000639 //
Mike Stumpf5408fe2009-05-16 07:57:57 +0000640 // If we can, prefer a copy from a global; this is a lot less code for long
641 // globals, and it's easier for the current optimizers to analyze.
Eli Friedman13a5be12009-12-04 01:30:56 +0000642 if (llvm::Constant* C = CGF.CGM.EmitConstantExpr(E, E->getType(), &CGF)) {
Eli Friedman994ffef2008-11-30 02:11:09 +0000643 llvm::GlobalVariable* GV =
Eli Friedman13a5be12009-12-04 01:30:56 +0000644 new llvm::GlobalVariable(CGF.CGM.getModule(), C->getType(), true,
645 llvm::GlobalValue::InternalLinkage, C, "");
Daniel Dunbar79c39282010-08-21 03:15:20 +0000646 EmitFinalDestCopy(E, CGF.MakeAddrLValue(GV, E->getType()));
Eli Friedman994ffef2008-11-30 02:11:09 +0000647 return;
648 }
Eli Friedmana385b3c2008-12-02 01:17:45 +0000649#endif
Chris Lattnerd0db03a2010-09-06 00:11:41 +0000650 if (E->hadArrayRangeDesignator())
Douglas Gregora9c87802009-01-29 19:42:23 +0000651 CGF.ErrorUnsupported(E, "GNU array range designator extension");
Douglas Gregora9c87802009-01-29 19:42:23 +0000652
John McCall558d2ab2010-09-15 10:14:12 +0000653 llvm::Value *DestPtr = Dest.getAddr();
654
Chris Lattnerf81557c2008-04-04 18:42:16 +0000655 // Handle initialization of an array.
656 if (E->getType()->isArrayType()) {
Chris Lattner2acc6e32011-07-18 04:24:23 +0000657 llvm::PointerType *APType =
Chris Lattnerf81557c2008-04-04 18:42:16 +0000658 cast<llvm::PointerType>(DestPtr->getType());
Chris Lattner2acc6e32011-07-18 04:24:23 +0000659 llvm::ArrayType *AType =
Chris Lattnerf81557c2008-04-04 18:42:16 +0000660 cast<llvm::ArrayType>(APType->getElementType());
Mike Stump1eb44332009-09-09 15:08:12 +0000661
Chris Lattnerf81557c2008-04-04 18:42:16 +0000662 uint64_t NumInitElements = E->getNumInits();
Eli Friedman922696f2008-05-19 17:51:16 +0000663
Chris Lattner96196622008-07-26 22:37:01 +0000664 if (E->getNumInits() > 0) {
665 QualType T1 = E->getType();
666 QualType T2 = E->getInit(0)->getType();
Eli Friedman2dce5f82009-05-28 23:04:00 +0000667 if (CGF.getContext().hasSameUnqualifiedType(T1, T2)) {
Chris Lattner96196622008-07-26 22:37:01 +0000668 EmitAggLoadOfLValue(E->getInit(0));
669 return;
670 }
Eli Friedman922696f2008-05-19 17:51:16 +0000671 }
672
Chris Lattnerf81557c2008-04-04 18:42:16 +0000673 uint64_t NumArrayElements = AType->getNumElements();
John McCallbdc4d802011-07-09 01:37:26 +0000674 assert(NumInitElements <= NumArrayElements);
Mike Stump1eb44332009-09-09 15:08:12 +0000675
John McCallbdc4d802011-07-09 01:37:26 +0000676 QualType elementType = E->getType().getCanonicalType();
677 elementType = CGF.getContext().getQualifiedType(
678 cast<ArrayType>(elementType)->getElementType(),
679 elementType.getQualifiers() + Dest.getQualifiers());
Argyrios Kyrtzidis3b4d4902011-04-28 18:53:58 +0000680
John McCallbdc4d802011-07-09 01:37:26 +0000681 // DestPtr is an array*. Construct an elementType* by drilling
682 // down a level.
683 llvm::Value *zero = llvm::ConstantInt::get(CGF.SizeTy, 0);
684 llvm::Value *indices[] = { zero, zero };
685 llvm::Value *begin =
Jay Foad0f6ac7c2011-07-22 08:16:57 +0000686 Builder.CreateInBoundsGEP(DestPtr, indices, "arrayinit.begin");
Chris Lattner1b726772010-12-02 07:07:26 +0000687
John McCallbdc4d802011-07-09 01:37:26 +0000688 // Exception safety requires us to destroy all the
689 // already-constructed members if an initializer throws.
690 // For that, we'll need an EH cleanup.
691 QualType::DestructionKind dtorKind = elementType.isDestructedType();
692 llvm::AllocaInst *endOfInit = 0;
693 EHScopeStack::stable_iterator cleanup;
John McCall6f103ba2011-11-10 10:43:54 +0000694 llvm::Instruction *cleanupDominator = 0;
John McCallbdc4d802011-07-09 01:37:26 +0000695 if (CGF.needsEHCleanup(dtorKind)) {
696 // In principle we could tell the cleanup where we are more
697 // directly, but the control flow can get so varied here that it
698 // would actually be quite complex. Therefore we go through an
699 // alloca.
700 endOfInit = CGF.CreateTempAlloca(begin->getType(),
701 "arrayinit.endOfInit");
John McCall6f103ba2011-11-10 10:43:54 +0000702 cleanupDominator = Builder.CreateStore(begin, endOfInit);
John McCall2673c682011-07-11 08:38:19 +0000703 CGF.pushIrregularPartialArrayCleanup(begin, endOfInit, elementType,
704 CGF.getDestroyer(dtorKind));
John McCallbdc4d802011-07-09 01:37:26 +0000705 cleanup = CGF.EHStack.stable_begin();
706
707 // Otherwise, remember that we didn't need a cleanup.
708 } else {
709 dtorKind = QualType::DK_none;
Lauro Ramos Venancio145cd892008-02-19 19:27:31 +0000710 }
John McCallbdc4d802011-07-09 01:37:26 +0000711
712 llvm::Value *one = llvm::ConstantInt::get(CGF.SizeTy, 1);
713
714 // The 'current element to initialize'. The invariants on this
715 // variable are complicated. Essentially, after each iteration of
716 // the loop, it points to the last initialized element, except
717 // that it points to the beginning of the array before any
718 // elements have been initialized.
719 llvm::Value *element = begin;
720
721 // Emit the explicit initializers.
722 for (uint64_t i = 0; i != NumInitElements; ++i) {
723 // Advance to the next element.
John McCall2673c682011-07-11 08:38:19 +0000724 if (i > 0) {
John McCallbdc4d802011-07-09 01:37:26 +0000725 element = Builder.CreateInBoundsGEP(element, one, "arrayinit.element");
726
John McCall2673c682011-07-11 08:38:19 +0000727 // Tell the cleanup that it needs to destroy up to this
728 // element. TODO: some of these stores can be trivially
729 // observed to be unnecessary.
730 if (endOfInit) Builder.CreateStore(element, endOfInit);
731 }
732
John McCallbdc4d802011-07-09 01:37:26 +0000733 LValue elementLV = CGF.MakeAddrLValue(element, elementType);
734 EmitInitializationToLValue(E->getInit(i), elementLV);
John McCallbdc4d802011-07-09 01:37:26 +0000735 }
736
737 // Check whether there's a non-trivial array-fill expression.
738 // Note that this will be a CXXConstructExpr even if the element
739 // type is an array (or array of array, etc.) of class type.
740 Expr *filler = E->getArrayFiller();
741 bool hasTrivialFiller = true;
742 if (CXXConstructExpr *cons = dyn_cast_or_null<CXXConstructExpr>(filler)) {
743 assert(cons->getConstructor()->isDefaultConstructor());
744 hasTrivialFiller = cons->getConstructor()->isTrivial();
745 }
746
747 // Any remaining elements need to be zero-initialized, possibly
748 // using the filler expression. We can skip this if the we're
749 // emitting to zeroed memory.
750 if (NumInitElements != NumArrayElements &&
751 !(Dest.isZeroed() && hasTrivialFiller &&
752 CGF.getTypes().isZeroInitializable(elementType))) {
753
754 // Use an actual loop. This is basically
755 // do { *array++ = filler; } while (array != end);
756
757 // Advance to the start of the rest of the array.
John McCall2673c682011-07-11 08:38:19 +0000758 if (NumInitElements) {
John McCallbdc4d802011-07-09 01:37:26 +0000759 element = Builder.CreateInBoundsGEP(element, one, "arrayinit.start");
John McCall2673c682011-07-11 08:38:19 +0000760 if (endOfInit) Builder.CreateStore(element, endOfInit);
761 }
John McCallbdc4d802011-07-09 01:37:26 +0000762
763 // Compute the end of the array.
764 llvm::Value *end = Builder.CreateInBoundsGEP(begin,
765 llvm::ConstantInt::get(CGF.SizeTy, NumArrayElements),
766 "arrayinit.end");
767
768 llvm::BasicBlock *entryBB = Builder.GetInsertBlock();
769 llvm::BasicBlock *bodyBB = CGF.createBasicBlock("arrayinit.body");
770
771 // Jump into the body.
772 CGF.EmitBlock(bodyBB);
773 llvm::PHINode *currentElement =
774 Builder.CreatePHI(element->getType(), 2, "arrayinit.cur");
775 currentElement->addIncoming(element, entryBB);
776
777 // Emit the actual filler expression.
778 LValue elementLV = CGF.MakeAddrLValue(currentElement, elementType);
779 if (filler)
780 EmitInitializationToLValue(filler, elementLV);
781 else
782 EmitNullInitializationToLValue(elementLV);
783
John McCallbdc4d802011-07-09 01:37:26 +0000784 // Move on to the next element.
785 llvm::Value *nextElement =
786 Builder.CreateInBoundsGEP(currentElement, one, "arrayinit.next");
787
John McCall2673c682011-07-11 08:38:19 +0000788 // Tell the EH cleanup that we finished with the last element.
789 if (endOfInit) Builder.CreateStore(nextElement, endOfInit);
790
John McCallbdc4d802011-07-09 01:37:26 +0000791 // Leave the loop if we're done.
792 llvm::Value *done = Builder.CreateICmpEQ(nextElement, end,
793 "arrayinit.done");
794 llvm::BasicBlock *endBB = CGF.createBasicBlock("arrayinit.end");
795 Builder.CreateCondBr(done, endBB, bodyBB);
796 currentElement->addIncoming(nextElement, Builder.GetInsertBlock());
797
798 CGF.EmitBlock(endBB);
799 }
800
801 // Leave the partial-array cleanup if we entered one.
John McCall6f103ba2011-11-10 10:43:54 +0000802 if (dtorKind) CGF.DeactivateCleanupBlock(cleanup, cleanupDominator);
John McCallbdc4d802011-07-09 01:37:26 +0000803
Chris Lattnerf81557c2008-04-04 18:42:16 +0000804 return;
805 }
Mike Stump1eb44332009-09-09 15:08:12 +0000806
Chris Lattnerf81557c2008-04-04 18:42:16 +0000807 assert(E->getType()->isRecordType() && "Only support structs/unions here!");
Mike Stump1eb44332009-09-09 15:08:12 +0000808
Chris Lattnerf81557c2008-04-04 18:42:16 +0000809 // Do struct initialization; this code just sets each individual member
810 // to the approprate value. This makes bitfield support automatic;
811 // the disadvantage is that the generated code is more difficult for
812 // the optimizer, especially with bitfields.
813 unsigned NumInitElements = E->getNumInits();
John McCall2b30dcf2011-07-11 19:35:02 +0000814 RecordDecl *record = E->getType()->castAs<RecordType>()->getDecl();
Chris Lattnerbd7de382010-09-06 00:13:11 +0000815
John McCall2b30dcf2011-07-11 19:35:02 +0000816 if (record->isUnion()) {
Douglas Gregor0bb76892009-01-29 16:53:55 +0000817 // Only initialize one field of a union. The field itself is
818 // specified by the initializer list.
819 if (!E->getInitializedFieldInUnion()) {
820 // Empty union; we have nothing to do.
Mike Stump1eb44332009-09-09 15:08:12 +0000821
Douglas Gregor0bb76892009-01-29 16:53:55 +0000822#ifndef NDEBUG
823 // Make sure that it's really an empty and not a failure of
824 // semantic analysis.
John McCall2b30dcf2011-07-11 19:35:02 +0000825 for (RecordDecl::field_iterator Field = record->field_begin(),
826 FieldEnd = record->field_end();
Douglas Gregor0bb76892009-01-29 16:53:55 +0000827 Field != FieldEnd; ++Field)
828 assert(Field->isUnnamedBitfield() && "Only unnamed bitfields allowed");
829#endif
830 return;
831 }
832
833 // FIXME: volatility
834 FieldDecl *Field = E->getInitializedFieldInUnion();
Douglas Gregor0bb76892009-01-29 16:53:55 +0000835
Chris Lattner1b726772010-12-02 07:07:26 +0000836 LValue FieldLoc = CGF.EmitLValueForFieldInitialization(DestPtr, Field, 0);
Douglas Gregor0bb76892009-01-29 16:53:55 +0000837 if (NumInitElements) {
838 // Store the initializer into the field
John McCalla07398e2011-06-16 04:16:24 +0000839 EmitInitializationToLValue(E->getInit(0), FieldLoc);
Douglas Gregor0bb76892009-01-29 16:53:55 +0000840 } else {
Chris Lattner1b726772010-12-02 07:07:26 +0000841 // Default-initialize to null.
John McCalla07398e2011-06-16 04:16:24 +0000842 EmitNullInitializationToLValue(FieldLoc);
Douglas Gregor0bb76892009-01-29 16:53:55 +0000843 }
844
845 return;
846 }
Mike Stump1eb44332009-09-09 15:08:12 +0000847
John McCall2b30dcf2011-07-11 19:35:02 +0000848 // We'll need to enter cleanup scopes in case any of the member
849 // initializers throw an exception.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000850 SmallVector<EHScopeStack::stable_iterator, 16> cleanups;
John McCall6f103ba2011-11-10 10:43:54 +0000851 llvm::Instruction *cleanupDominator = 0;
John McCall2b30dcf2011-07-11 19:35:02 +0000852
Chris Lattnerf81557c2008-04-04 18:42:16 +0000853 // Here we iterate over the fields; this makes it simpler to both
854 // default-initialize fields and skip over unnamed fields.
John McCall2b30dcf2011-07-11 19:35:02 +0000855 unsigned curInitIndex = 0;
856 for (RecordDecl::field_iterator field = record->field_begin(),
857 fieldEnd = record->field_end();
858 field != fieldEnd; ++field) {
859 // We're done once we hit the flexible array member.
860 if (field->getType()->isIncompleteArrayType())
Douglas Gregor44b43212008-12-11 16:49:14 +0000861 break;
862
John McCall2b30dcf2011-07-11 19:35:02 +0000863 // Always skip anonymous bitfields.
864 if (field->isUnnamedBitfield())
Chris Lattnerf81557c2008-04-04 18:42:16 +0000865 continue;
Douglas Gregor34e79462009-01-28 23:36:17 +0000866
John McCall2b30dcf2011-07-11 19:35:02 +0000867 // We're done if we reach the end of the explicit initializers, we
868 // have a zeroed object, and the rest of the fields are
869 // zero-initializable.
870 if (curInitIndex == NumInitElements && Dest.isZeroed() &&
Chris Lattner1b726772010-12-02 07:07:26 +0000871 CGF.getTypes().isZeroInitializable(E->getType()))
872 break;
873
Eli Friedman1e692ac2008-06-13 23:01:12 +0000874 // FIXME: volatility
John McCall2b30dcf2011-07-11 19:35:02 +0000875 LValue LV = CGF.EmitLValueForFieldInitialization(DestPtr, *field, 0);
Fariborz Jahanian14674ff2009-05-27 19:54:11 +0000876 // We never generate write-barries for initialized fields.
John McCall2b30dcf2011-07-11 19:35:02 +0000877 LV.setNonGC(true);
Chris Lattner1b726772010-12-02 07:07:26 +0000878
John McCall2b30dcf2011-07-11 19:35:02 +0000879 if (curInitIndex < NumInitElements) {
Chris Lattnerb35baae2010-03-08 21:08:07 +0000880 // Store the initializer into the field.
John McCall2b30dcf2011-07-11 19:35:02 +0000881 EmitInitializationToLValue(E->getInit(curInitIndex++), LV);
Chris Lattnerf81557c2008-04-04 18:42:16 +0000882 } else {
883 // We're out of initalizers; default-initialize to null
John McCall2b30dcf2011-07-11 19:35:02 +0000884 EmitNullInitializationToLValue(LV);
885 }
886
887 // Push a destructor if necessary.
888 // FIXME: if we have an array of structures, all explicitly
889 // initialized, we can end up pushing a linear number of cleanups.
890 bool pushedCleanup = false;
891 if (QualType::DestructionKind dtorKind
892 = field->getType().isDestructedType()) {
893 assert(LV.isSimple());
894 if (CGF.needsEHCleanup(dtorKind)) {
John McCall6f103ba2011-11-10 10:43:54 +0000895 if (!cleanupDominator)
896 cleanupDominator = CGF.Builder.CreateUnreachable(); // placeholder
897
John McCall2b30dcf2011-07-11 19:35:02 +0000898 CGF.pushDestroy(EHCleanup, LV.getAddress(), field->getType(),
899 CGF.getDestroyer(dtorKind), false);
900 cleanups.push_back(CGF.EHStack.stable_begin());
901 pushedCleanup = true;
902 }
Chris Lattnerf81557c2008-04-04 18:42:16 +0000903 }
Chris Lattner1b726772010-12-02 07:07:26 +0000904
905 // If the GEP didn't get used because of a dead zero init or something
906 // else, clean it up for -O0 builds and general tidiness.
John McCall2b30dcf2011-07-11 19:35:02 +0000907 if (!pushedCleanup && LV.isSimple())
Chris Lattner1b726772010-12-02 07:07:26 +0000908 if (llvm::GetElementPtrInst *GEP =
John McCall2b30dcf2011-07-11 19:35:02 +0000909 dyn_cast<llvm::GetElementPtrInst>(LV.getAddress()))
Chris Lattner1b726772010-12-02 07:07:26 +0000910 if (GEP->use_empty())
911 GEP->eraseFromParent();
Lauro Ramos Venancio145cd892008-02-19 19:27:31 +0000912 }
John McCall2b30dcf2011-07-11 19:35:02 +0000913
914 // Deactivate all the partial cleanups in reverse order, which
915 // generally means popping them.
916 for (unsigned i = cleanups.size(); i != 0; --i)
John McCall6f103ba2011-11-10 10:43:54 +0000917 CGF.DeactivateCleanupBlock(cleanups[i-1], cleanupDominator);
918
919 // Destroy the placeholder if we made one.
920 if (cleanupDominator)
921 cleanupDominator->eraseFromParent();
Devang Patel636c3d02007-10-26 17:44:44 +0000922}
923
Chris Lattneree755f92007-08-21 04:59:27 +0000924//===----------------------------------------------------------------------===//
925// Entry Points into this File
926//===----------------------------------------------------------------------===//
927
Chris Lattner1b726772010-12-02 07:07:26 +0000928/// GetNumNonZeroBytesInInit - Get an approximate count of the number of
929/// non-zero bytes that will be stored when outputting the initializer for the
930/// specified initializer expression.
Ken Dyck02c45332011-04-24 17:17:56 +0000931static CharUnits GetNumNonZeroBytesInInit(const Expr *E, CodeGenFunction &CGF) {
Peter Collingbournef111d932011-04-15 00:35:48 +0000932 E = E->IgnoreParens();
Chris Lattner1b726772010-12-02 07:07:26 +0000933
934 // 0 and 0.0 won't require any non-zero stores!
Ken Dyck02c45332011-04-24 17:17:56 +0000935 if (isSimpleZero(E, CGF)) return CharUnits::Zero();
Chris Lattner1b726772010-12-02 07:07:26 +0000936
937 // If this is an initlist expr, sum up the size of sizes of the (present)
938 // elements. If this is something weird, assume the whole thing is non-zero.
939 const InitListExpr *ILE = dyn_cast<InitListExpr>(E);
940 if (ILE == 0 || !CGF.getTypes().isZeroInitializable(ILE->getType()))
Ken Dyck02c45332011-04-24 17:17:56 +0000941 return CGF.getContext().getTypeSizeInChars(E->getType());
Chris Lattner1b726772010-12-02 07:07:26 +0000942
Chris Lattnerd1d56df2010-12-02 18:29:00 +0000943 // InitListExprs for structs have to be handled carefully. If there are
944 // reference members, we need to consider the size of the reference, not the
945 // referencee. InitListExprs for unions and arrays can't have references.
Chris Lattner8c00ad12010-12-02 22:52:04 +0000946 if (const RecordType *RT = E->getType()->getAs<RecordType>()) {
947 if (!RT->isUnionType()) {
948 RecordDecl *SD = E->getType()->getAs<RecordType>()->getDecl();
Ken Dyck02c45332011-04-24 17:17:56 +0000949 CharUnits NumNonZeroBytes = CharUnits::Zero();
Chris Lattner8c00ad12010-12-02 22:52:04 +0000950
951 unsigned ILEElement = 0;
952 for (RecordDecl::field_iterator Field = SD->field_begin(),
953 FieldEnd = SD->field_end(); Field != FieldEnd; ++Field) {
954 // We're done once we hit the flexible array member or run out of
955 // InitListExpr elements.
956 if (Field->getType()->isIncompleteArrayType() ||
957 ILEElement == ILE->getNumInits())
958 break;
959 if (Field->isUnnamedBitfield())
960 continue;
Chris Lattnerd1d56df2010-12-02 18:29:00 +0000961
Chris Lattner8c00ad12010-12-02 22:52:04 +0000962 const Expr *E = ILE->getInit(ILEElement++);
963
964 // Reference values are always non-null and have the width of a pointer.
965 if (Field->getType()->isReferenceType())
Ken Dyck02c45332011-04-24 17:17:56 +0000966 NumNonZeroBytes += CGF.getContext().toCharUnitsFromBits(
Douglas Gregorbcfd1f52011-09-02 00:18:52 +0000967 CGF.getContext().getTargetInfo().getPointerWidth(0));
Chris Lattner8c00ad12010-12-02 22:52:04 +0000968 else
969 NumNonZeroBytes += GetNumNonZeroBytesInInit(E, CGF);
970 }
Chris Lattnerd1d56df2010-12-02 18:29:00 +0000971
Chris Lattner8c00ad12010-12-02 22:52:04 +0000972 return NumNonZeroBytes;
Chris Lattnerd1d56df2010-12-02 18:29:00 +0000973 }
Chris Lattnerd1d56df2010-12-02 18:29:00 +0000974 }
975
976
Ken Dyck02c45332011-04-24 17:17:56 +0000977 CharUnits NumNonZeroBytes = CharUnits::Zero();
Chris Lattner1b726772010-12-02 07:07:26 +0000978 for (unsigned i = 0, e = ILE->getNumInits(); i != e; ++i)
979 NumNonZeroBytes += GetNumNonZeroBytesInInit(ILE->getInit(i), CGF);
980 return NumNonZeroBytes;
981}
982
983/// CheckAggExprForMemSetUse - If the initializer is large and has a lot of
984/// zeros in it, emit a memset and avoid storing the individual zeros.
985///
986static void CheckAggExprForMemSetUse(AggValueSlot &Slot, const Expr *E,
987 CodeGenFunction &CGF) {
988 // If the slot is already known to be zeroed, nothing to do. Don't mess with
989 // volatile stores.
990 if (Slot.isZeroed() || Slot.isVolatile() || Slot.getAddr() == 0) return;
Argyrios Kyrtzidis657baf12011-04-28 22:57:55 +0000991
992 // C++ objects with a user-declared constructor don't need zero'ing.
993 if (CGF.getContext().getLangOptions().CPlusPlus)
994 if (const RecordType *RT = CGF.getContext()
995 .getBaseElementType(E->getType())->getAs<RecordType>()) {
996 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
997 if (RD->hasUserDeclaredConstructor())
998 return;
999 }
1000
Chris Lattner1b726772010-12-02 07:07:26 +00001001 // If the type is 16-bytes or smaller, prefer individual stores over memset.
Ken Dyck5ff1a352011-04-24 17:25:32 +00001002 std::pair<CharUnits, CharUnits> TypeInfo =
1003 CGF.getContext().getTypeInfoInChars(E->getType());
1004 if (TypeInfo.first <= CharUnits::fromQuantity(16))
Chris Lattner1b726772010-12-02 07:07:26 +00001005 return;
1006
1007 // Check to see if over 3/4 of the initializer are known to be zero. If so,
1008 // we prefer to emit memset + individual stores for the rest.
Ken Dyck5ff1a352011-04-24 17:25:32 +00001009 CharUnits NumNonZeroBytes = GetNumNonZeroBytesInInit(E, CGF);
1010 if (NumNonZeroBytes*4 > TypeInfo.first)
Chris Lattner1b726772010-12-02 07:07:26 +00001011 return;
1012
1013 // Okay, it seems like a good idea to use an initial memset, emit the call.
Ken Dyck5ff1a352011-04-24 17:25:32 +00001014 llvm::Constant *SizeVal = CGF.Builder.getInt64(TypeInfo.first.getQuantity());
1015 CharUnits Align = TypeInfo.second;
Chris Lattner1b726772010-12-02 07:07:26 +00001016
1017 llvm::Value *Loc = Slot.getAddr();
Chris Lattner2acc6e32011-07-18 04:24:23 +00001018 llvm::Type *BP = llvm::Type::getInt8PtrTy(CGF.getLLVMContext());
Chris Lattner1b726772010-12-02 07:07:26 +00001019
1020 Loc = CGF.Builder.CreateBitCast(Loc, BP);
Ken Dyck5ff1a352011-04-24 17:25:32 +00001021 CGF.Builder.CreateMemSet(Loc, CGF.Builder.getInt8(0), SizeVal,
1022 Align.getQuantity(), false);
Chris Lattner1b726772010-12-02 07:07:26 +00001023
1024 // Tell the AggExprEmitter that the slot is known zero.
1025 Slot.setZeroed();
1026}
1027
1028
1029
1030
Mike Stumpe1129a92009-05-26 18:57:45 +00001031/// EmitAggExpr - Emit the computation of the specified expression of aggregate
1032/// type. The result is computed into DestPtr. Note that if DestPtr is null,
1033/// the value of the aggregate expression is not needed. If VolatileDest is
1034/// true, DestPtr cannot be 0.
John McCall558d2ab2010-09-15 10:14:12 +00001035///
1036/// \param IsInitializer - true if this evaluation is initializing an
1037/// object whose lifetime is already being managed.
John McCall558d2ab2010-09-15 10:14:12 +00001038void CodeGenFunction::EmitAggExpr(const Expr *E, AggValueSlot Slot,
Fariborz Jahanian474e2fe2010-09-16 00:20:07 +00001039 bool IgnoreResult) {
Chris Lattneree755f92007-08-21 04:59:27 +00001040 assert(E && hasAggregateLLVMType(E->getType()) &&
1041 "Invalid aggregate expression to emit");
Chris Lattner1b726772010-12-02 07:07:26 +00001042 assert((Slot.getAddr() != 0 || Slot.isIgnored()) &&
1043 "slot has bits but no address");
Mike Stump1eb44332009-09-09 15:08:12 +00001044
Chris Lattner1b726772010-12-02 07:07:26 +00001045 // Optimize the slot if possible.
1046 CheckAggExprForMemSetUse(Slot, E, *this);
1047
1048 AggExprEmitter(*this, Slot, IgnoreResult).Visit(const_cast<Expr*>(E));
Chris Lattneree755f92007-08-21 04:59:27 +00001049}
Daniel Dunbar7482d122008-09-09 20:49:46 +00001050
Daniel Dunbar18aba0d2010-02-05 19:38:31 +00001051LValue CodeGenFunction::EmitAggExprToLValue(const Expr *E) {
1052 assert(hasAggregateLLVMType(E->getType()) && "Invalid argument!");
Daniel Dunbar195337d2010-02-09 02:48:28 +00001053 llvm::Value *Temp = CreateMemTemp(E->getType());
Daniel Dunbar79c39282010-08-21 03:15:20 +00001054 LValue LV = MakeAddrLValue(Temp, E->getType());
John McCall7c2349b2011-08-25 20:40:09 +00001055 EmitAggExpr(E, AggValueSlot::forLValue(LV, AggValueSlot::IsNotDestructed,
John McCall44184392011-08-26 07:31:35 +00001056 AggValueSlot::DoesNotNeedGCBarriers,
1057 AggValueSlot::IsNotAliased));
Daniel Dunbar79c39282010-08-21 03:15:20 +00001058 return LV;
Daniel Dunbar18aba0d2010-02-05 19:38:31 +00001059}
1060
Daniel Dunbar7482d122008-09-09 20:49:46 +00001061void CodeGenFunction::EmitAggregateCopy(llvm::Value *DestPtr,
Mike Stump27fe2e62009-05-23 22:29:41 +00001062 llvm::Value *SrcPtr, QualType Ty,
Eli Friedmanbd7d8282011-12-05 22:23:28 +00001063 bool isVolatile, unsigned Alignment) {
Daniel Dunbar7482d122008-09-09 20:49:46 +00001064 assert(!Ty->isAnyComplexType() && "Shouldn't happen for complex");
Mike Stump1eb44332009-09-09 15:08:12 +00001065
Anders Carlsson0d7c5832010-05-03 01:20:20 +00001066 if (getContext().getLangOptions().CPlusPlus) {
1067 if (const RecordType *RT = Ty->getAs<RecordType>()) {
Douglas Gregore9979482010-05-20 15:39:01 +00001068 CXXRecordDecl *Record = cast<CXXRecordDecl>(RT->getDecl());
1069 assert((Record->hasTrivialCopyConstructor() ||
Douglas Gregorb2b56582011-09-06 16:26:56 +00001070 Record->hasTrivialCopyAssignment() ||
1071 Record->hasTrivialMoveConstructor() ||
1072 Record->hasTrivialMoveAssignment()) &&
Douglas Gregore9979482010-05-20 15:39:01 +00001073 "Trying to aggregate-copy a type without a trivial copy "
1074 "constructor or assignment operator");
Douglas Gregor419aa962010-05-20 15:48:29 +00001075 // Ignore empty classes in C++.
Douglas Gregore9979482010-05-20 15:39:01 +00001076 if (Record->isEmpty())
Anders Carlsson0d7c5832010-05-03 01:20:20 +00001077 return;
1078 }
1079 }
1080
Chris Lattner83c96292009-02-28 18:31:01 +00001081 // Aggregate assignment turns into llvm.memcpy. This is almost valid per
Chris Lattnerca4fc2c2009-02-28 18:18:58 +00001082 // C99 6.5.16.1p3, which states "If the value being stored in an object is
1083 // read from another object that overlaps in anyway the storage of the first
1084 // object, then the overlap shall be exact and the two objects shall have
1085 // qualified or unqualified versions of a compatible type."
1086 //
Chris Lattner83c96292009-02-28 18:31:01 +00001087 // memcpy is not defined if the source and destination pointers are exactly
Chris Lattnerca4fc2c2009-02-28 18:18:58 +00001088 // equal, but other compilers do this optimization, and almost every memcpy
1089 // implementation handles this case safely. If there is a libc that does not
1090 // safely handle this, we can add a target hook.
Mike Stump1eb44332009-09-09 15:08:12 +00001091
Daniel Dunbar7482d122008-09-09 20:49:46 +00001092 // Get size and alignment info for this aggregate.
Ken Dyck1a8c15a2011-04-24 17:37:26 +00001093 std::pair<CharUnits, CharUnits> TypeInfo =
1094 getContext().getTypeInfoInChars(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +00001095
Eli Friedmanbd7d8282011-12-05 22:23:28 +00001096 if (!Alignment)
1097 Alignment = TypeInfo.second.getQuantity();
1098
Daniel Dunbar7482d122008-09-09 20:49:46 +00001099 // FIXME: Handle variable sized types.
Mike Stump1eb44332009-09-09 15:08:12 +00001100
Mike Stumpfde64202009-05-23 04:13:59 +00001101 // FIXME: If we have a volatile struct, the optimizer can remove what might
1102 // appear to be `extra' memory ops:
1103 //
1104 // volatile struct { int i; } a, b;
1105 //
1106 // int main() {
1107 // a = b;
1108 // a = b;
1109 // }
1110 //
Mon P Wang3ecd7852010-04-04 03:10:52 +00001111 // we need to use a different call here. We use isVolatile to indicate when
Mike Stump49d1cd52009-05-26 22:03:21 +00001112 // either the source or the destination is volatile.
Mon P Wang3ecd7852010-04-04 03:10:52 +00001113
Chris Lattner2acc6e32011-07-18 04:24:23 +00001114 llvm::PointerType *DPT = cast<llvm::PointerType>(DestPtr->getType());
1115 llvm::Type *DBP =
John McCalld16c2cf2011-02-08 08:22:06 +00001116 llvm::Type::getInt8PtrTy(getLLVMContext(), DPT->getAddressSpace());
Benjamin Kramer578faa82011-09-27 21:06:10 +00001117 DestPtr = Builder.CreateBitCast(DestPtr, DBP);
Mon P Wang3ecd7852010-04-04 03:10:52 +00001118
Chris Lattner2acc6e32011-07-18 04:24:23 +00001119 llvm::PointerType *SPT = cast<llvm::PointerType>(SrcPtr->getType());
1120 llvm::Type *SBP =
John McCalld16c2cf2011-02-08 08:22:06 +00001121 llvm::Type::getInt8PtrTy(getLLVMContext(), SPT->getAddressSpace());
Benjamin Kramer578faa82011-09-27 21:06:10 +00001122 SrcPtr = Builder.CreateBitCast(SrcPtr, SBP);
Mon P Wang3ecd7852010-04-04 03:10:52 +00001123
John McCallf85e1932011-06-15 23:02:42 +00001124 // Don't do any of the memmove_collectable tests if GC isn't set.
Douglas Gregore289d812011-09-13 17:21:33 +00001125 if (CGM.getLangOptions().getGC() == LangOptions::NonGC) {
John McCallf85e1932011-06-15 23:02:42 +00001126 // fall through
1127 } else if (const RecordType *RecordTy = Ty->getAs<RecordType>()) {
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00001128 RecordDecl *Record = RecordTy->getDecl();
1129 if (Record->hasObjectMember()) {
Ken Dyck1a8c15a2011-04-24 17:37:26 +00001130 CharUnits size = TypeInfo.first;
Chris Lattner2acc6e32011-07-18 04:24:23 +00001131 llvm::Type *SizeTy = ConvertType(getContext().getSizeType());
Ken Dyck1a8c15a2011-04-24 17:37:26 +00001132 llvm::Value *SizeVal = llvm::ConstantInt::get(SizeTy, size.getQuantity());
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00001133 CGM.getObjCRuntime().EmitGCMemmoveCollectable(*this, DestPtr, SrcPtr,
1134 SizeVal);
1135 return;
1136 }
John McCallf85e1932011-06-15 23:02:42 +00001137 } else if (Ty->isArrayType()) {
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00001138 QualType BaseType = getContext().getBaseElementType(Ty);
1139 if (const RecordType *RecordTy = BaseType->getAs<RecordType>()) {
1140 if (RecordTy->getDecl()->hasObjectMember()) {
Ken Dyck1a8c15a2011-04-24 17:37:26 +00001141 CharUnits size = TypeInfo.first;
Chris Lattner2acc6e32011-07-18 04:24:23 +00001142 llvm::Type *SizeTy = ConvertType(getContext().getSizeType());
Ken Dyck1a8c15a2011-04-24 17:37:26 +00001143 llvm::Value *SizeVal =
1144 llvm::ConstantInt::get(SizeTy, size.getQuantity());
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00001145 CGM.getObjCRuntime().EmitGCMemmoveCollectable(*this, DestPtr, SrcPtr,
1146 SizeVal);
1147 return;
1148 }
1149 }
1150 }
1151
Benjamin Kramer9f0c7cc2010-12-30 00:13:21 +00001152 Builder.CreateMemCpy(DestPtr, SrcPtr,
Ken Dyck1a8c15a2011-04-24 17:37:26 +00001153 llvm::ConstantInt::get(IntPtrTy,
1154 TypeInfo.first.getQuantity()),
Eli Friedmanbd7d8282011-12-05 22:23:28 +00001155 Alignment, isVolatile);
Daniel Dunbar7482d122008-09-09 20:49:46 +00001156}