blob: c42c87b1ac810effffc074ac8a0a9e5ff7dbdf58 [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);
77 void EmitFinalDestCopy(const Expr *E, RValue Src, bool Ignore = false);
Mike Stump4ac20dd2009-05-23 20:28:01 +000078
John McCall410ffb22011-08-25 23:04:34 +000079 void EmitMoveFromReturnSlot(const Expr *E, RValue Src);
John McCallfa037bd2010-05-22 22:13:32 +000080
John McCall7c2349b2011-08-25 20:40:09 +000081 AggValueSlot::NeedsGCBarriers_t needsGC(QualType T) {
82 if (CGF.getLangOptions().getGCMode() && TypeRequiresGCollection(T))
83 return AggValueSlot::NeedsGCBarriers;
84 return AggValueSlot::DoesNotNeedGCBarriers;
85 }
86
John McCallfa037bd2010-05-22 22:13:32 +000087 bool TypeRequiresGCollection(QualType T);
88
Chris Lattneree755f92007-08-21 04:59:27 +000089 //===--------------------------------------------------------------------===//
90 // Visitor Methods
91 //===--------------------------------------------------------------------===//
Mike Stump1eb44332009-09-09 15:08:12 +000092
Chris Lattner9c033562007-08-21 04:25:47 +000093 void VisitStmt(Stmt *S) {
Daniel Dunbar488e9932008-08-16 00:56:44 +000094 CGF.ErrorUnsupported(S, "aggregate expression");
Chris Lattner9c033562007-08-21 04:25:47 +000095 }
96 void VisitParenExpr(ParenExpr *PE) { Visit(PE->getSubExpr()); }
Peter Collingbournef111d932011-04-15 00:35:48 +000097 void VisitGenericSelectionExpr(GenericSelectionExpr *GE) {
98 Visit(GE->getResultExpr());
99 }
Eli Friedman12444a22009-01-27 09:03:41 +0000100 void VisitUnaryExtension(UnaryOperator *E) { Visit(E->getSubExpr()); }
John McCall91a57552011-07-15 05:09:51 +0000101 void VisitSubstNonTypeTemplateParmExpr(SubstNonTypeTemplateParmExpr *E) {
102 return Visit(E->getReplacement());
103 }
Chris Lattner9c033562007-08-21 04:25:47 +0000104
105 // l-values.
Seo Sanghyeon9b73b392007-12-14 02:04:12 +0000106 void VisitDeclRefExpr(DeclRefExpr *DRE) { EmitAggLoadOfLValue(DRE); }
107 void VisitMemberExpr(MemberExpr *ME) { EmitAggLoadOfLValue(ME); }
108 void VisitUnaryDeref(UnaryOperator *E) { EmitAggLoadOfLValue(E); }
Daniel Dunbar5be028f2010-01-04 18:47:06 +0000109 void VisitStringLiteral(StringLiteral *E) { EmitAggLoadOfLValue(E); }
Douglas Gregor751ec9b2011-06-17 04:59:12 +0000110 void VisitCompoundLiteralExpr(CompoundLiteralExpr *E);
Seo Sanghyeon9b73b392007-12-14 02:04:12 +0000111 void VisitArraySubscriptExpr(ArraySubscriptExpr *E) {
112 EmitAggLoadOfLValue(E);
113 }
Chris Lattnerf0a990c2009-04-21 23:00:09 +0000114 void VisitBlockDeclRefExpr(const BlockDeclRefExpr *E) {
Mike Stump1eb44332009-09-09 15:08:12 +0000115 EmitAggLoadOfLValue(E);
Chris Lattnerf0a990c2009-04-21 23:00:09 +0000116 }
117 void VisitPredefinedExpr(const PredefinedExpr *E) {
Mike Stump1eb44332009-09-09 15:08:12 +0000118 EmitAggLoadOfLValue(E);
Chris Lattnerf0a990c2009-04-21 23:00:09 +0000119 }
Mike Stump1eb44332009-09-09 15:08:12 +0000120
Chris Lattner9c033562007-08-21 04:25:47 +0000121 // Operators.
Anders Carlsson4d8673b2009-08-07 23:22:37 +0000122 void VisitCastExpr(CastExpr *E);
Anders Carlsson148fe672007-10-31 22:04:46 +0000123 void VisitCallExpr(const CallExpr *E);
Chris Lattnerb2d963f2007-08-31 22:54:14 +0000124 void VisitStmtExpr(const StmtExpr *E);
Chris Lattner9c033562007-08-21 04:25:47 +0000125 void VisitBinaryOperator(const BinaryOperator *BO);
Fariborz Jahanian8bfd31f2009-10-22 22:57:31 +0000126 void VisitPointerToDataMemberBinaryOperator(const BinaryOperator *BO);
Chris Lattner03d6fb92007-08-21 04:43:17 +0000127 void VisitBinAssign(const BinaryOperator *E);
Eli Friedman07fa52a2008-05-20 07:56:31 +0000128 void VisitBinComma(const BinaryOperator *E);
Chris Lattner9c033562007-08-21 04:25:47 +0000129
Chris Lattner8fdf3282008-06-24 17:04:18 +0000130 void VisitObjCMessageExpr(ObjCMessageExpr *E);
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000131 void VisitObjCIvarRefExpr(ObjCIvarRefExpr *E) {
132 EmitAggLoadOfLValue(E);
133 }
Daniel Dunbar9c3fc702008-08-27 06:57:25 +0000134 void VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *E);
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
Eli Friedmanb1851242008-05-27 15:51:49 +0000151 void VisitVAArgExpr(VAArgExpr *E);
Chris Lattnerf81557c2008-04-04 18:42:16 +0000152
John McCalla07398e2011-06-16 04:16:24 +0000153 void EmitInitializationToLValue(Expr *E, LValue Address);
154 void EmitNullInitializationToLValue(LValue Address);
Chris Lattner9c033562007-08-21 04:25:47 +0000155 // case Expr::ChooseExprClass:
Mike Stump39406b12009-12-09 19:24:08 +0000156 void VisitCXXThrowExpr(const CXXThrowExpr *E) { CGF.EmitCXXThrowExpr(E); }
Chris Lattner9c033562007-08-21 04:25:47 +0000157};
158} // end anonymous namespace.
159
Chris Lattneree755f92007-08-21 04:59:27 +0000160//===----------------------------------------------------------------------===//
161// Utilities
162//===----------------------------------------------------------------------===//
Chris Lattner9c033562007-08-21 04:25:47 +0000163
Chris Lattner883f6a72007-08-11 00:04:45 +0000164/// EmitAggLoadOfLValue - Given an expression with aggregate type that
165/// represents a value lvalue, this method emits the address of the lvalue,
166/// then loads the result into DestPtr.
Chris Lattner9c033562007-08-21 04:25:47 +0000167void AggExprEmitter::EmitAggLoadOfLValue(const Expr *E) {
168 LValue LV = CGF.EmitLValue(E);
Mike Stump4ac20dd2009-05-23 20:28:01 +0000169 EmitFinalDestCopy(E, LV);
170}
171
John McCallfa037bd2010-05-22 22:13:32 +0000172/// \brief True if the given aggregate type requires special GC API calls.
173bool AggExprEmitter::TypeRequiresGCollection(QualType T) {
174 // Only record types have members that might require garbage collection.
175 const RecordType *RecordTy = T->getAs<RecordType>();
176 if (!RecordTy) return false;
177
178 // Don't mess with non-trivial C++ types.
179 RecordDecl *Record = RecordTy->getDecl();
180 if (isa<CXXRecordDecl>(Record) &&
181 (!cast<CXXRecordDecl>(Record)->hasTrivialCopyConstructor() ||
182 !cast<CXXRecordDecl>(Record)->hasTrivialDestructor()))
183 return false;
184
185 // Check whether the type has an object member.
186 return Record->hasObjectMember();
187}
188
John McCall410ffb22011-08-25 23:04:34 +0000189/// \brief Perform the final move to DestPtr if for some reason
190/// getReturnValueSlot() didn't use it directly.
John McCallfa037bd2010-05-22 22:13:32 +0000191///
192/// The idea is that you do something like this:
193/// RValue Result = EmitSomething(..., getReturnValueSlot());
John McCall410ffb22011-08-25 23:04:34 +0000194/// EmitMoveFromReturnSlot(E, Result);
195///
196/// If nothing interferes, this will cause the result to be emitted
197/// directly into the return value slot. Otherwise, a final move
198/// will be performed.
199void AggExprEmitter::EmitMoveFromReturnSlot(const Expr *E, RValue Src) {
200 if (shouldUseDestForReturnSlot()) {
201 // Logically, Dest.getAddr() should equal Src.getAggregateAddr().
202 // The possibility of undef rvalues complicates that a lot,
203 // though, so we can't really assert.
204 return;
Fariborz Jahanian55bcace2010-06-15 22:44:06 +0000205 }
John McCall410ffb22011-08-25 23:04:34 +0000206
207 // Otherwise, do a final copy,
208 assert(Dest.getAddr() != Src.getAggregateAddr());
209 EmitFinalDestCopy(E, Src, /*Ignore*/ true);
John McCallfa037bd2010-05-22 22:13:32 +0000210}
211
Mike Stump4ac20dd2009-05-23 20:28:01 +0000212/// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
Mike Stump49d1cd52009-05-26 22:03:21 +0000213void AggExprEmitter::EmitFinalDestCopy(const Expr *E, RValue Src, bool Ignore) {
Mike Stump4ac20dd2009-05-23 20:28:01 +0000214 assert(Src.isAggregate() && "value must be aggregate value!");
215
John McCall558d2ab2010-09-15 10:14:12 +0000216 // If Dest is ignored, then we're evaluating an aggregate expression
John McCalla8f28da2010-08-25 02:50:31 +0000217 // in a context (like an expression statement) that doesn't care
218 // about the result. C says that an lvalue-to-rvalue conversion is
219 // performed in these cases; C++ says that it is not. In either
220 // case, we don't actually need to do anything unless the value is
221 // volatile.
John McCall558d2ab2010-09-15 10:14:12 +0000222 if (Dest.isIgnored()) {
John McCalla8f28da2010-08-25 02:50:31 +0000223 if (!Src.isVolatileQualified() ||
224 CGF.CGM.getLangOptions().CPlusPlus ||
225 (IgnoreResult && Ignore))
Mike Stump9ccb1032009-05-23 22:01:27 +0000226 return;
Fariborz Jahanian8a970052010-10-22 22:05:03 +0000227
Mike Stump49d1cd52009-05-26 22:03:21 +0000228 // If the source is volatile, we must read from it; to do that, we need
229 // some place to put it.
John McCall558d2ab2010-09-15 10:14:12 +0000230 Dest = CGF.CreateAggTemp(E->getType(), "agg.tmp");
Mike Stump9ccb1032009-05-23 22:01:27 +0000231 }
Chris Lattner883f6a72007-08-11 00:04:45 +0000232
John McCalld1a5f132010-09-16 03:13:23 +0000233 if (Dest.requiresGCollection()) {
Ken Dyck479b61c2011-04-24 17:08:00 +0000234 CharUnits size = CGF.getContext().getTypeSizeInChars(E->getType());
Chris Lattner2acc6e32011-07-18 04:24:23 +0000235 llvm::Type *SizeTy = CGF.ConvertType(CGF.getContext().getSizeType());
Ken Dyck479b61c2011-04-24 17:08:00 +0000236 llvm::Value *SizeVal = llvm::ConstantInt::get(SizeTy, size.getQuantity());
Fariborz Jahanian08c32132009-08-31 19:33:16 +0000237 CGF.CGM.getObjCRuntime().EmitGCMemmoveCollectable(CGF,
John McCall558d2ab2010-09-15 10:14:12 +0000238 Dest.getAddr(),
239 Src.getAggregateAddr(),
240 SizeVal);
Fariborz Jahanian08c32132009-08-31 19:33:16 +0000241 return;
242 }
Mike Stump4ac20dd2009-05-23 20:28:01 +0000243 // If the result of the assignment is used, copy the LHS there also.
244 // FIXME: Pass VolatileDest as well. I think we also need to merge volatile
245 // from the source as well, as we can't eliminate it if either operand
246 // is volatile, unless copy has volatile for both source and destination..
John McCall558d2ab2010-09-15 10:14:12 +0000247 CGF.EmitAggregateCopy(Dest.getAddr(), Src.getAggregateAddr(), E->getType(),
248 Dest.isVolatile()|Src.isVolatileQualified());
Mike Stump4ac20dd2009-05-23 20:28:01 +0000249}
250
251/// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
Mike Stump49d1cd52009-05-26 22:03:21 +0000252void AggExprEmitter::EmitFinalDestCopy(const Expr *E, LValue Src, bool Ignore) {
Mike Stump4ac20dd2009-05-23 20:28:01 +0000253 assert(Src.isSimple() && "Can't have aggregate bitfield, vector, etc");
254
255 EmitFinalDestCopy(E, RValue::getAggregate(Src.getAddress(),
Mike Stump49d1cd52009-05-26 22:03:21 +0000256 Src.isVolatileQualified()),
257 Ignore);
Chris Lattner883f6a72007-08-11 00:04:45 +0000258}
259
Chris Lattneree755f92007-08-21 04:59:27 +0000260//===----------------------------------------------------------------------===//
261// Visitor Methods
262//===----------------------------------------------------------------------===//
263
Douglas Gregor03e80032011-06-21 17:03:29 +0000264void AggExprEmitter::VisitMaterializeTemporaryExpr(MaterializeTemporaryExpr *E){
265 Visit(E->GetTemporaryExpr());
266}
267
John McCalle996ffd2011-02-16 08:02:54 +0000268void AggExprEmitter::VisitOpaqueValueExpr(OpaqueValueExpr *e) {
John McCall56ca35d2011-02-17 10:25:35 +0000269 EmitFinalDestCopy(e, CGF.getOpaqueLValueMapping(e));
John McCalle996ffd2011-02-16 08:02:54 +0000270}
271
Douglas Gregor751ec9b2011-06-17 04:59:12 +0000272void
273AggExprEmitter::VisitCompoundLiteralExpr(CompoundLiteralExpr *E) {
Douglas Gregor673e98b2011-06-17 16:37:20 +0000274 if (E->getType().isPODType(CGF.getContext())) {
275 // For a POD type, just emit a load of the lvalue + a copy, because our
276 // compound literal might alias the destination.
277 // FIXME: This is a band-aid; the real problem appears to be in our handling
278 // of assignments, where we store directly into the LHS without checking
279 // whether anything in the RHS aliases.
280 EmitAggLoadOfLValue(E);
281 return;
282 }
283
Douglas Gregor751ec9b2011-06-17 04:59:12 +0000284 AggValueSlot Slot = EnsureSlot(E->getType());
285 CGF.EmitAggExpr(E->getInitializer(), Slot);
286}
287
288
Anders Carlsson4d8673b2009-08-07 23:22:37 +0000289void AggExprEmitter::VisitCastExpr(CastExpr *E) {
Anders Carlsson30168422009-09-29 01:23:39 +0000290 switch (E->getCastKind()) {
Anders Carlsson575b3742011-04-11 02:03:26 +0000291 case CK_Dynamic: {
Douglas Gregor69cfeb12010-05-14 21:31:02 +0000292 assert(isa<CXXDynamicCastExpr>(E) && "CK_Dynamic without a dynamic_cast?");
293 LValue LV = CGF.EmitCheckedLValue(E->getSubExpr());
294 // FIXME: Do we also need to handle property references here?
295 if (LV.isSimple())
296 CGF.EmitDynamicCast(LV.getAddress(), cast<CXXDynamicCastExpr>(E));
297 else
298 CGF.CGM.ErrorUnsupported(E, "non-simple lvalue dynamic_cast");
299
John McCall558d2ab2010-09-15 10:14:12 +0000300 if (!Dest.isIgnored())
301 CGF.CGM.ErrorUnsupported(E, "lvalue dynamic_cast with a destination");
Douglas Gregor69cfeb12010-05-14 21:31:02 +0000302 break;
303 }
304
John McCall2de56d12010-08-25 11:45:40 +0000305 case CK_ToUnion: {
John McCall65912712011-04-12 22:02:02 +0000306 if (Dest.isIgnored()) break;
307
Anders Carlsson4d8673b2009-08-07 23:22:37 +0000308 // GCC union extension
Daniel Dunbar79c39282010-08-21 03:15:20 +0000309 QualType Ty = E->getSubExpr()->getType();
310 QualType PtrTy = CGF.getContext().getPointerType(Ty);
John McCall558d2ab2010-09-15 10:14:12 +0000311 llvm::Value *CastPtr = Builder.CreateBitCast(Dest.getAddr(),
Eli Friedman34ebf4d2009-06-03 20:45:06 +0000312 CGF.ConvertType(PtrTy));
John McCalla07398e2011-06-16 04:16:24 +0000313 EmitInitializationToLValue(E->getSubExpr(),
314 CGF.MakeAddrLValue(CastPtr, Ty));
Anders Carlsson30168422009-09-29 01:23:39 +0000315 break;
Nuno Lopes7e916272009-01-15 20:14:33 +0000316 }
Mike Stump1eb44332009-09-09 15:08:12 +0000317
John McCall2de56d12010-08-25 11:45:40 +0000318 case CK_DerivedToBase:
319 case CK_BaseToDerived:
320 case CK_UncheckedDerivedToBase: {
Douglas Gregor2d6b0e92010-05-22 05:17:18 +0000321 assert(0 && "cannot perform hierarchy conversion in EmitAggExpr: "
322 "should have been unpacked before we got here");
323 break;
324 }
325
John McCallf6a16482010-12-04 03:47:34 +0000326 case CK_GetObjCProperty: {
327 LValue LV = CGF.EmitLValue(E->getSubExpr());
328 assert(LV.isPropertyRef());
329 RValue RV = CGF.EmitLoadOfPropertyRefLValue(LV, getReturnValueSlot());
John McCall410ffb22011-08-25 23:04:34 +0000330 EmitMoveFromReturnSlot(E, RV);
John McCallf6a16482010-12-04 03:47:34 +0000331 break;
332 }
333
334 case CK_LValueToRValue: // hope for downstream optimization
John McCall2de56d12010-08-25 11:45:40 +0000335 case CK_NoOp:
336 case CK_UserDefinedConversion:
337 case CK_ConstructorConversion:
Anders Carlsson30168422009-09-29 01:23:39 +0000338 assert(CGF.getContext().hasSameUnqualifiedType(E->getSubExpr()->getType(),
339 E->getType()) &&
340 "Implicit cast types must be compatible");
341 Visit(E->getSubExpr());
342 break;
John McCall0ae287a2010-12-01 04:43:34 +0000343
John McCall2de56d12010-08-25 11:45:40 +0000344 case CK_LValueBitCast:
John McCall0ae287a2010-12-01 04:43:34 +0000345 llvm_unreachable("should not be emitting lvalue bitcast as rvalue");
Douglas Gregore39a3892010-07-13 23:17:26 +0000346 break;
John McCall1de4d4e2011-04-07 08:22:57 +0000347
John McCall0ae287a2010-12-01 04:43:34 +0000348 case CK_Dependent:
349 case CK_BitCast:
350 case CK_ArrayToPointerDecay:
351 case CK_FunctionToPointerDecay:
352 case CK_NullToPointer:
353 case CK_NullToMemberPointer:
354 case CK_BaseToDerivedMemberPointer:
355 case CK_DerivedToBaseMemberPointer:
356 case CK_MemberPointerToBoolean:
357 case CK_IntegralToPointer:
358 case CK_PointerToIntegral:
359 case CK_PointerToBoolean:
360 case CK_ToVoid:
361 case CK_VectorSplat:
362 case CK_IntegralCast:
363 case CK_IntegralToBoolean:
364 case CK_IntegralToFloating:
365 case CK_FloatingToIntegral:
366 case CK_FloatingToBoolean:
367 case CK_FloatingCast:
368 case CK_AnyPointerToObjCPointerCast:
369 case CK_AnyPointerToBlockPointerCast:
370 case CK_ObjCObjectLValueCast:
371 case CK_FloatingRealToComplex:
372 case CK_FloatingComplexToReal:
373 case CK_FloatingComplexToBoolean:
374 case CK_FloatingComplexCast:
375 case CK_FloatingComplexToIntegralComplex:
376 case CK_IntegralRealToComplex:
377 case CK_IntegralComplexToReal:
378 case CK_IntegralComplexToBoolean:
379 case CK_IntegralComplexCast:
380 case CK_IntegralComplexToFloatingComplex:
John McCallf85e1932011-06-15 23:02:42 +0000381 case CK_ObjCProduceObject:
382 case CK_ObjCConsumeObject:
John McCall7e5e5f42011-07-07 06:58:02 +0000383 case CK_ObjCReclaimReturnedObject:
John McCall0ae287a2010-12-01 04:43:34 +0000384 llvm_unreachable("cast kind invalid for aggregate types");
Anders Carlsson30168422009-09-29 01:23:39 +0000385 }
Anders Carlssone4707ff2008-01-14 06:28:57 +0000386}
387
Chris Lattner96196622008-07-26 22:37:01 +0000388void AggExprEmitter::VisitCallExpr(const CallExpr *E) {
Anders Carlssone70e8f72009-05-27 16:45:02 +0000389 if (E->getCallReturnType()->isReferenceType()) {
390 EmitAggLoadOfLValue(E);
391 return;
392 }
Mike Stump1eb44332009-09-09 15:08:12 +0000393
John McCallfa037bd2010-05-22 22:13:32 +0000394 RValue RV = CGF.EmitCallExpr(E, getReturnValueSlot());
John McCall410ffb22011-08-25 23:04:34 +0000395 EmitMoveFromReturnSlot(E, RV);
Anders Carlsson148fe672007-10-31 22:04:46 +0000396}
Chris Lattner96196622008-07-26 22:37:01 +0000397
398void AggExprEmitter::VisitObjCMessageExpr(ObjCMessageExpr *E) {
John McCallfa037bd2010-05-22 22:13:32 +0000399 RValue RV = CGF.EmitObjCMessageExpr(E, getReturnValueSlot());
John McCall410ffb22011-08-25 23:04:34 +0000400 EmitMoveFromReturnSlot(E, RV);
Chris Lattner8fdf3282008-06-24 17:04:18 +0000401}
Anders Carlsson148fe672007-10-31 22:04:46 +0000402
Daniel Dunbar9c3fc702008-08-27 06:57:25 +0000403void AggExprEmitter::VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *E) {
John McCallf6a16482010-12-04 03:47:34 +0000404 llvm_unreachable("direct property access not surrounded by "
405 "lvalue-to-rvalue cast");
Daniel Dunbar9c3fc702008-08-27 06:57:25 +0000406}
407
Chris Lattner96196622008-07-26 22:37:01 +0000408void AggExprEmitter::VisitBinComma(const BinaryOperator *E) {
John McCall2a416372010-12-05 02:00:02 +0000409 CGF.EmitIgnoredExpr(E->getLHS());
John McCall558d2ab2010-09-15 10:14:12 +0000410 Visit(E->getRHS());
Eli Friedman07fa52a2008-05-20 07:56:31 +0000411}
412
Chris Lattnerb2d963f2007-08-31 22:54:14 +0000413void AggExprEmitter::VisitStmtExpr(const StmtExpr *E) {
John McCall150b4622011-01-26 04:00:11 +0000414 CodeGenFunction::StmtExprEvaluation eval(CGF);
John McCall558d2ab2010-09-15 10:14:12 +0000415 CGF.EmitCompoundStmt(*E->getSubStmt(), true, Dest);
Chris Lattnerb2d963f2007-08-31 22:54:14 +0000416}
417
Chris Lattner9c033562007-08-21 04:25:47 +0000418void AggExprEmitter::VisitBinaryOperator(const BinaryOperator *E) {
John McCall2de56d12010-08-25 11:45:40 +0000419 if (E->getOpcode() == BO_PtrMemD || E->getOpcode() == BO_PtrMemI)
Fariborz Jahanian8bfd31f2009-10-22 22:57:31 +0000420 VisitPointerToDataMemberBinaryOperator(E);
421 else
422 CGF.ErrorUnsupported(E, "aggregate binary expression");
423}
424
425void AggExprEmitter::VisitPointerToDataMemberBinaryOperator(
426 const BinaryOperator *E) {
427 LValue LV = CGF.EmitPointerToDataMemberBinaryExpr(E);
428 EmitFinalDestCopy(E, LV);
Chris Lattneree755f92007-08-21 04:59:27 +0000429}
430
Chris Lattner03d6fb92007-08-21 04:43:17 +0000431void AggExprEmitter::VisitBinAssign(const BinaryOperator *E) {
Eli Friedmanff6e2b72008-02-11 01:09:17 +0000432 // For an assignment to work, the value on the right has
433 // to be compatible with the value on the left.
Eli Friedman2dce5f82009-05-28 23:04:00 +0000434 assert(CGF.getContext().hasSameUnqualifiedType(E->getLHS()->getType(),
435 E->getRHS()->getType())
Eli Friedmanff6e2b72008-02-11 01:09:17 +0000436 && "Invalid assignment");
John McCallcd940a12010-12-06 06:10:02 +0000437
Fariborz Jahanian2c7168c2011-04-29 21:53:21 +0000438 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E->getLHS()))
Fariborz Jahanian73a6f8e2011-04-29 22:11:28 +0000439 if (const VarDecl *VD = dyn_cast<VarDecl>(DRE->getDecl()))
Fariborz Jahanian2c7168c2011-04-29 21:53:21 +0000440 if (VD->hasAttr<BlocksAttr>() &&
441 E->getRHS()->HasSideEffects(CGF.getContext())) {
442 // When __block variable on LHS, the RHS must be evaluated first
443 // as it may change the 'forwarding' field via call to Block_copy.
444 LValue RHS = CGF.EmitLValue(E->getRHS());
445 LValue LHS = CGF.EmitLValue(E->getLHS());
John McCall7c2349b2011-08-25 20:40:09 +0000446 Dest = AggValueSlot::forLValue(LHS, AggValueSlot::IsDestructed,
447 needsGC(E->getLHS()->getType()));
Fariborz Jahanian2c7168c2011-04-29 21:53:21 +0000448 EmitFinalDestCopy(E, RHS, true);
449 return;
450 }
Fariborz Jahanian2c7168c2011-04-29 21:53:21 +0000451
Chris Lattner9c033562007-08-21 04:25:47 +0000452 LValue LHS = CGF.EmitLValue(E->getLHS());
Chris Lattner883f6a72007-08-11 00:04:45 +0000453
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000454 // We have to special case property setters, otherwise we must have
455 // a simple lvalue (no aggregates inside vectors, bitfields).
456 if (LHS.isPropertyRef()) {
Fariborz Jahanian68af13f2011-03-30 16:11:20 +0000457 const ObjCPropertyRefExpr *RE = LHS.getPropertyRefExpr();
458 QualType ArgType = RE->getSetterArgType();
459 RValue Src;
460 if (ArgType->isReferenceType())
461 Src = CGF.EmitReferenceBindingToExpr(E->getRHS(), 0);
462 else {
463 AggValueSlot Slot = EnsureSlot(E->getRHS()->getType());
464 CGF.EmitAggExpr(E->getRHS(), Slot);
465 Src = Slot.asRValue();
466 }
467 CGF.EmitStoreThroughPropertyRefLValue(Src, LHS);
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000468 } else {
469 // Codegen the RHS so that it stores directly into the LHS.
John McCall7c2349b2011-08-25 20:40:09 +0000470 AggValueSlot LHSSlot =
471 AggValueSlot::forLValue(LHS, AggValueSlot::IsDestructed,
472 needsGC(E->getLHS()->getType()));
Fariborz Jahanian474e2fe2010-09-16 00:20:07 +0000473 CGF.EmitAggExpr(E->getRHS(), LHSSlot, false);
Mike Stump49d1cd52009-05-26 22:03:21 +0000474 EmitFinalDestCopy(E, LHS, true);
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000475 }
Chris Lattner883f6a72007-08-11 00:04:45 +0000476}
477
John McCall56ca35d2011-02-17 10:25:35 +0000478void AggExprEmitter::
479VisitAbstractConditionalOperator(const AbstractConditionalOperator *E) {
Daniel Dunbar9615ecb2008-11-13 01:38:36 +0000480 llvm::BasicBlock *LHSBlock = CGF.createBasicBlock("cond.true");
481 llvm::BasicBlock *RHSBlock = CGF.createBasicBlock("cond.false");
482 llvm::BasicBlock *ContBlock = CGF.createBasicBlock("cond.end");
Mike Stump1eb44332009-09-09 15:08:12 +0000483
John McCall56ca35d2011-02-17 10:25:35 +0000484 // Bind the common expression if necessary.
485 CodeGenFunction::OpaqueValueMapping binding(CGF, E);
486
John McCall150b4622011-01-26 04:00:11 +0000487 CodeGenFunction::ConditionalEvaluation eval(CGF);
Eli Friedman8e274bd2009-12-25 06:17:05 +0000488 CGF.EmitBranchOnBoolExpr(E->getCond(), LHSBlock, RHSBlock);
Mike Stump1eb44332009-09-09 15:08:12 +0000489
John McCall74fb0ed2010-11-17 00:07:33 +0000490 // Save whether the destination's lifetime is externally managed.
491 bool DestLifetimeManaged = Dest.isLifetimeExternallyManaged();
Chris Lattner883f6a72007-08-11 00:04:45 +0000492
John McCall150b4622011-01-26 04:00:11 +0000493 eval.begin(CGF);
494 CGF.EmitBlock(LHSBlock);
John McCall56ca35d2011-02-17 10:25:35 +0000495 Visit(E->getTrueExpr());
John McCall150b4622011-01-26 04:00:11 +0000496 eval.end(CGF);
Mike Stump1eb44332009-09-09 15:08:12 +0000497
John McCall150b4622011-01-26 04:00:11 +0000498 assert(CGF.HaveInsertPoint() && "expression evaluation ended with no IP!");
499 CGF.Builder.CreateBr(ContBlock);
Mike Stump1eb44332009-09-09 15:08:12 +0000500
John McCall74fb0ed2010-11-17 00:07:33 +0000501 // If the result of an agg expression is unused, then the emission
502 // of the LHS might need to create a destination slot. That's fine
503 // with us, and we can safely emit the RHS into the same slot, but
504 // we shouldn't claim that its lifetime is externally managed.
505 Dest.setLifetimeExternallyManaged(DestLifetimeManaged);
506
John McCall150b4622011-01-26 04:00:11 +0000507 eval.begin(CGF);
508 CGF.EmitBlock(RHSBlock);
John McCall56ca35d2011-02-17 10:25:35 +0000509 Visit(E->getFalseExpr());
John McCall150b4622011-01-26 04:00:11 +0000510 eval.end(CGF);
Mike Stump1eb44332009-09-09 15:08:12 +0000511
Chris Lattner9c033562007-08-21 04:25:47 +0000512 CGF.EmitBlock(ContBlock);
Chris Lattner883f6a72007-08-11 00:04:45 +0000513}
Chris Lattneree755f92007-08-21 04:59:27 +0000514
Anders Carlssona294ca82009-07-08 18:33:14 +0000515void AggExprEmitter::VisitChooseExpr(const ChooseExpr *CE) {
516 Visit(CE->getChosenSubExpr(CGF.getContext()));
517}
518
Eli Friedmanb1851242008-05-27 15:51:49 +0000519void AggExprEmitter::VisitVAArgExpr(VAArgExpr *VE) {
Daniel Dunbar07855702009-02-11 22:25:55 +0000520 llvm::Value *ArgValue = CGF.EmitVAListRef(VE->getSubExpr());
Anders Carlssonddf7cac2008-11-04 05:30:00 +0000521 llvm::Value *ArgPtr = CGF.EmitVAArg(ArgValue, VE->getType());
522
Sebastian Redl0262f022009-01-09 21:09:38 +0000523 if (!ArgPtr) {
Anders Carlssonddf7cac2008-11-04 05:30:00 +0000524 CGF.ErrorUnsupported(VE, "aggregate va_arg expression");
Sebastian Redl0262f022009-01-09 21:09:38 +0000525 return;
526 }
527
Daniel Dunbar79c39282010-08-21 03:15:20 +0000528 EmitFinalDestCopy(VE, CGF.MakeAddrLValue(ArgPtr, VE->getType()));
Eli Friedmanb1851242008-05-27 15:51:49 +0000529}
530
Anders Carlssonb58d0172009-05-30 23:23:33 +0000531void AggExprEmitter::VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E) {
John McCall558d2ab2010-09-15 10:14:12 +0000532 // Ensure that we have a slot, but if we already do, remember
533 // whether its lifetime was externally managed.
534 bool WasManaged = Dest.isLifetimeExternallyManaged();
535 Dest = EnsureSlot(E->getType());
536 Dest.setLifetimeExternallyManaged();
Mike Stump1eb44332009-09-09 15:08:12 +0000537
John McCall558d2ab2010-09-15 10:14:12 +0000538 Visit(E->getSubExpr());
Anders Carlssonb58d0172009-05-30 23:23:33 +0000539
John McCall558d2ab2010-09-15 10:14:12 +0000540 // Set up the temporary's destructor if its lifetime wasn't already
541 // being managed.
542 if (!WasManaged)
543 CGF.EmitCXXTemporary(E->getTemporary(), Dest.getAddr());
Anders Carlssonb58d0172009-05-30 23:23:33 +0000544}
545
Anders Carlssonb14095a2009-04-17 00:06:03 +0000546void
Anders Carlsson31ccf372009-05-03 17:47:16 +0000547AggExprEmitter::VisitCXXConstructExpr(const CXXConstructExpr *E) {
John McCall558d2ab2010-09-15 10:14:12 +0000548 AggValueSlot Slot = EnsureSlot(E->getType());
549 CGF.EmitCXXConstructExpr(E, Slot);
Anders Carlsson7f6ad152009-05-19 04:48:36 +0000550}
551
John McCall4765fa02010-12-06 08:20:24 +0000552void AggExprEmitter::VisitExprWithCleanups(ExprWithCleanups *E) {
553 CGF.EmitExprWithCleanups(E, Dest);
Anders Carlssonb14095a2009-04-17 00:06:03 +0000554}
555
Douglas Gregored8abf12010-07-08 06:14:04 +0000556void AggExprEmitter::VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *E) {
John McCall558d2ab2010-09-15 10:14:12 +0000557 QualType T = E->getType();
558 AggValueSlot Slot = EnsureSlot(T);
John McCalla07398e2011-06-16 04:16:24 +0000559 EmitNullInitializationToLValue(CGF.MakeAddrLValue(Slot.getAddr(), T));
Anders Carlsson30311fa2009-12-16 06:57:54 +0000560}
561
562void AggExprEmitter::VisitImplicitValueInitExpr(ImplicitValueInitExpr *E) {
John McCall558d2ab2010-09-15 10:14:12 +0000563 QualType T = E->getType();
564 AggValueSlot Slot = EnsureSlot(T);
John McCalla07398e2011-06-16 04:16:24 +0000565 EmitNullInitializationToLValue(CGF.MakeAddrLValue(Slot.getAddr(), T));
Nuno Lopes329763b2009-10-18 15:18:11 +0000566}
567
Chris Lattner1b726772010-12-02 07:07:26 +0000568/// isSimpleZero - If emitting this value will obviously just cause a store of
569/// zero to memory, return true. This can return false if uncertain, so it just
570/// handles simple cases.
571static bool isSimpleZero(const Expr *E, CodeGenFunction &CGF) {
Peter Collingbournef111d932011-04-15 00:35:48 +0000572 E = E->IgnoreParens();
573
Chris Lattner1b726772010-12-02 07:07:26 +0000574 // 0
575 if (const IntegerLiteral *IL = dyn_cast<IntegerLiteral>(E))
576 return IL->getValue() == 0;
577 // +0.0
578 if (const FloatingLiteral *FL = dyn_cast<FloatingLiteral>(E))
579 return FL->getValue().isPosZero();
580 // int()
581 if ((isa<ImplicitValueInitExpr>(E) || isa<CXXScalarValueInitExpr>(E)) &&
582 CGF.getTypes().isZeroInitializable(E->getType()))
583 return true;
584 // (int*)0 - Null pointer expressions.
585 if (const CastExpr *ICE = dyn_cast<CastExpr>(E))
586 return ICE->getCastKind() == CK_NullToPointer;
587 // '\0'
588 if (const CharacterLiteral *CL = dyn_cast<CharacterLiteral>(E))
589 return CL->getValue() == 0;
590
591 // Otherwise, hard case: conservatively return false.
592 return false;
593}
594
595
Anders Carlsson78e83f82010-02-03 17:33:16 +0000596void
John McCalla07398e2011-06-16 04:16:24 +0000597AggExprEmitter::EmitInitializationToLValue(Expr* E, LValue LV) {
598 QualType type = LV.getType();
Mike Stump7f79f9b2009-05-29 15:46:01 +0000599 // FIXME: Ignore result?
Chris Lattnerf81557c2008-04-04 18:42:16 +0000600 // FIXME: Are initializers affected by volatile?
Chris Lattner1b726772010-12-02 07:07:26 +0000601 if (Dest.isZeroed() && isSimpleZero(E, CGF)) {
602 // Storing "i32 0" to a zero'd memory location is a noop.
603 } else if (isa<ImplicitValueInitExpr>(E)) {
John McCalla07398e2011-06-16 04:16:24 +0000604 EmitNullInitializationToLValue(LV);
605 } else if (type->isReferenceType()) {
Anders Carlsson32f36ba2010-06-26 16:35:32 +0000606 RValue RV = CGF.EmitReferenceBindingToExpr(E, /*InitializedDecl=*/0);
John McCall545d9962011-06-25 02:11:03 +0000607 CGF.EmitStoreThroughLValue(RV, LV);
John McCalla07398e2011-06-16 04:16:24 +0000608 } else if (type->isAnyComplexType()) {
Douglas Gregor3498bdb2009-01-29 17:44:32 +0000609 CGF.EmitComplexExprIntoAddr(E, LV.getAddress(), false);
John McCalla07398e2011-06-16 04:16:24 +0000610 } else if (CGF.hasAggregateLLVMType(type)) {
John McCall7c2349b2011-08-25 20:40:09 +0000611 CGF.EmitAggExpr(E, AggValueSlot::forLValue(LV,
612 AggValueSlot::IsDestructed,
613 AggValueSlot::DoesNotNeedGCBarriers,
John McCall410ffb22011-08-25 23:04:34 +0000614 AggValueSlot::IsNotAliased,
John McCalla07398e2011-06-16 04:16:24 +0000615 Dest.isZeroed()));
John McCallf85e1932011-06-15 23:02:42 +0000616 } else if (LV.isSimple()) {
John McCalla07398e2011-06-16 04:16:24 +0000617 CGF.EmitScalarInit(E, /*D=*/0, LV, /*Captured=*/false);
Eli Friedmanc8ba9612008-05-12 15:06:05 +0000618 } else {
John McCall545d9962011-06-25 02:11:03 +0000619 CGF.EmitStoreThroughLValue(RValue::get(CGF.EmitScalarExpr(E)), LV);
Chris Lattnerf81557c2008-04-04 18:42:16 +0000620 }
Chris Lattnerf81557c2008-04-04 18:42:16 +0000621}
622
John McCalla07398e2011-06-16 04:16:24 +0000623void AggExprEmitter::EmitNullInitializationToLValue(LValue lv) {
624 QualType type = lv.getType();
625
Chris Lattner1b726772010-12-02 07:07:26 +0000626 // If the destination slot is already zeroed out before the aggregate is
627 // copied into it, we don't have to emit any zeros here.
John McCalla07398e2011-06-16 04:16:24 +0000628 if (Dest.isZeroed() && CGF.getTypes().isZeroInitializable(type))
Chris Lattner1b726772010-12-02 07:07:26 +0000629 return;
630
John McCalla07398e2011-06-16 04:16:24 +0000631 if (!CGF.hasAggregateLLVMType(type)) {
Chris Lattnerf81557c2008-04-04 18:42:16 +0000632 // For non-aggregates, we can store zero
John McCalla07398e2011-06-16 04:16:24 +0000633 llvm::Value *null = llvm::Constant::getNullValue(CGF.ConvertType(type));
John McCall545d9962011-06-25 02:11:03 +0000634 CGF.EmitStoreThroughLValue(RValue::get(null), lv);
Lauro Ramos Venancio145cd892008-02-19 19:27:31 +0000635 } else {
Chris Lattnerf81557c2008-04-04 18:42:16 +0000636 // There's a potential optimization opportunity in combining
637 // memsets; that would be easy for arrays, but relatively
638 // difficult for structures with the current code.
John McCalla07398e2011-06-16 04:16:24 +0000639 CGF.EmitNullInitialization(lv.getAddress(), lv.getType());
Chris Lattnerf81557c2008-04-04 18:42:16 +0000640 }
641}
642
Chris Lattnerf81557c2008-04-04 18:42:16 +0000643void AggExprEmitter::VisitInitListExpr(InitListExpr *E) {
Eli Friedmana385b3c2008-12-02 01:17:45 +0000644#if 0
Eli Friedman13a5be12009-12-04 01:30:56 +0000645 // FIXME: Assess perf here? Figure out what cases are worth optimizing here
646 // (Length of globals? Chunks of zeroed-out space?).
Eli Friedmana385b3c2008-12-02 01:17:45 +0000647 //
Mike Stumpf5408fe2009-05-16 07:57:57 +0000648 // If we can, prefer a copy from a global; this is a lot less code for long
649 // globals, and it's easier for the current optimizers to analyze.
Eli Friedman13a5be12009-12-04 01:30:56 +0000650 if (llvm::Constant* C = CGF.CGM.EmitConstantExpr(E, E->getType(), &CGF)) {
Eli Friedman994ffef2008-11-30 02:11:09 +0000651 llvm::GlobalVariable* GV =
Eli Friedman13a5be12009-12-04 01:30:56 +0000652 new llvm::GlobalVariable(CGF.CGM.getModule(), C->getType(), true,
653 llvm::GlobalValue::InternalLinkage, C, "");
Daniel Dunbar79c39282010-08-21 03:15:20 +0000654 EmitFinalDestCopy(E, CGF.MakeAddrLValue(GV, E->getType()));
Eli Friedman994ffef2008-11-30 02:11:09 +0000655 return;
656 }
Eli Friedmana385b3c2008-12-02 01:17:45 +0000657#endif
Chris Lattnerd0db03a2010-09-06 00:11:41 +0000658 if (E->hadArrayRangeDesignator())
Douglas Gregora9c87802009-01-29 19:42:23 +0000659 CGF.ErrorUnsupported(E, "GNU array range designator extension");
Douglas Gregora9c87802009-01-29 19:42:23 +0000660
John McCall558d2ab2010-09-15 10:14:12 +0000661 llvm::Value *DestPtr = Dest.getAddr();
662
Chris Lattnerf81557c2008-04-04 18:42:16 +0000663 // Handle initialization of an array.
664 if (E->getType()->isArrayType()) {
Chris Lattner2acc6e32011-07-18 04:24:23 +0000665 llvm::PointerType *APType =
Chris Lattnerf81557c2008-04-04 18:42:16 +0000666 cast<llvm::PointerType>(DestPtr->getType());
Chris Lattner2acc6e32011-07-18 04:24:23 +0000667 llvm::ArrayType *AType =
Chris Lattnerf81557c2008-04-04 18:42:16 +0000668 cast<llvm::ArrayType>(APType->getElementType());
Mike Stump1eb44332009-09-09 15:08:12 +0000669
Chris Lattnerf81557c2008-04-04 18:42:16 +0000670 uint64_t NumInitElements = E->getNumInits();
Eli Friedman922696f2008-05-19 17:51:16 +0000671
Chris Lattner96196622008-07-26 22:37:01 +0000672 if (E->getNumInits() > 0) {
673 QualType T1 = E->getType();
674 QualType T2 = E->getInit(0)->getType();
Eli Friedman2dce5f82009-05-28 23:04:00 +0000675 if (CGF.getContext().hasSameUnqualifiedType(T1, T2)) {
Chris Lattner96196622008-07-26 22:37:01 +0000676 EmitAggLoadOfLValue(E->getInit(0));
677 return;
678 }
Eli Friedman922696f2008-05-19 17:51:16 +0000679 }
680
Chris Lattnerf81557c2008-04-04 18:42:16 +0000681 uint64_t NumArrayElements = AType->getNumElements();
John McCallbdc4d802011-07-09 01:37:26 +0000682 assert(NumInitElements <= NumArrayElements);
Mike Stump1eb44332009-09-09 15:08:12 +0000683
John McCallbdc4d802011-07-09 01:37:26 +0000684 QualType elementType = E->getType().getCanonicalType();
685 elementType = CGF.getContext().getQualifiedType(
686 cast<ArrayType>(elementType)->getElementType(),
687 elementType.getQualifiers() + Dest.getQualifiers());
Argyrios Kyrtzidis3b4d4902011-04-28 18:53:58 +0000688
John McCallbdc4d802011-07-09 01:37:26 +0000689 // DestPtr is an array*. Construct an elementType* by drilling
690 // down a level.
691 llvm::Value *zero = llvm::ConstantInt::get(CGF.SizeTy, 0);
692 llvm::Value *indices[] = { zero, zero };
693 llvm::Value *begin =
Jay Foad0f6ac7c2011-07-22 08:16:57 +0000694 Builder.CreateInBoundsGEP(DestPtr, indices, "arrayinit.begin");
Chris Lattner1b726772010-12-02 07:07:26 +0000695
John McCallbdc4d802011-07-09 01:37:26 +0000696 // Exception safety requires us to destroy all the
697 // already-constructed members if an initializer throws.
698 // For that, we'll need an EH cleanup.
699 QualType::DestructionKind dtorKind = elementType.isDestructedType();
700 llvm::AllocaInst *endOfInit = 0;
701 EHScopeStack::stable_iterator cleanup;
702 if (CGF.needsEHCleanup(dtorKind)) {
703 // In principle we could tell the cleanup where we are more
704 // directly, but the control flow can get so varied here that it
705 // would actually be quite complex. Therefore we go through an
706 // alloca.
707 endOfInit = CGF.CreateTempAlloca(begin->getType(),
708 "arrayinit.endOfInit");
709 Builder.CreateStore(begin, endOfInit);
John McCall2673c682011-07-11 08:38:19 +0000710 CGF.pushIrregularPartialArrayCleanup(begin, endOfInit, elementType,
711 CGF.getDestroyer(dtorKind));
John McCallbdc4d802011-07-09 01:37:26 +0000712 cleanup = CGF.EHStack.stable_begin();
713
714 // Otherwise, remember that we didn't need a cleanup.
715 } else {
716 dtorKind = QualType::DK_none;
Lauro Ramos Venancio145cd892008-02-19 19:27:31 +0000717 }
John McCallbdc4d802011-07-09 01:37:26 +0000718
719 llvm::Value *one = llvm::ConstantInt::get(CGF.SizeTy, 1);
720
721 // The 'current element to initialize'. The invariants on this
722 // variable are complicated. Essentially, after each iteration of
723 // the loop, it points to the last initialized element, except
724 // that it points to the beginning of the array before any
725 // elements have been initialized.
726 llvm::Value *element = begin;
727
728 // Emit the explicit initializers.
729 for (uint64_t i = 0; i != NumInitElements; ++i) {
730 // Advance to the next element.
John McCall2673c682011-07-11 08:38:19 +0000731 if (i > 0) {
John McCallbdc4d802011-07-09 01:37:26 +0000732 element = Builder.CreateInBoundsGEP(element, one, "arrayinit.element");
733
John McCall2673c682011-07-11 08:38:19 +0000734 // Tell the cleanup that it needs to destroy up to this
735 // element. TODO: some of these stores can be trivially
736 // observed to be unnecessary.
737 if (endOfInit) Builder.CreateStore(element, endOfInit);
738 }
739
John McCallbdc4d802011-07-09 01:37:26 +0000740 LValue elementLV = CGF.MakeAddrLValue(element, elementType);
741 EmitInitializationToLValue(E->getInit(i), elementLV);
John McCallbdc4d802011-07-09 01:37:26 +0000742 }
743
744 // Check whether there's a non-trivial array-fill expression.
745 // Note that this will be a CXXConstructExpr even if the element
746 // type is an array (or array of array, etc.) of class type.
747 Expr *filler = E->getArrayFiller();
748 bool hasTrivialFiller = true;
749 if (CXXConstructExpr *cons = dyn_cast_or_null<CXXConstructExpr>(filler)) {
750 assert(cons->getConstructor()->isDefaultConstructor());
751 hasTrivialFiller = cons->getConstructor()->isTrivial();
752 }
753
754 // Any remaining elements need to be zero-initialized, possibly
755 // using the filler expression. We can skip this if the we're
756 // emitting to zeroed memory.
757 if (NumInitElements != NumArrayElements &&
758 !(Dest.isZeroed() && hasTrivialFiller &&
759 CGF.getTypes().isZeroInitializable(elementType))) {
760
761 // Use an actual loop. This is basically
762 // do { *array++ = filler; } while (array != end);
763
764 // Advance to the start of the rest of the array.
John McCall2673c682011-07-11 08:38:19 +0000765 if (NumInitElements) {
John McCallbdc4d802011-07-09 01:37:26 +0000766 element = Builder.CreateInBoundsGEP(element, one, "arrayinit.start");
John McCall2673c682011-07-11 08:38:19 +0000767 if (endOfInit) Builder.CreateStore(element, endOfInit);
768 }
John McCallbdc4d802011-07-09 01:37:26 +0000769
770 // Compute the end of the array.
771 llvm::Value *end = Builder.CreateInBoundsGEP(begin,
772 llvm::ConstantInt::get(CGF.SizeTy, NumArrayElements),
773 "arrayinit.end");
774
775 llvm::BasicBlock *entryBB = Builder.GetInsertBlock();
776 llvm::BasicBlock *bodyBB = CGF.createBasicBlock("arrayinit.body");
777
778 // Jump into the body.
779 CGF.EmitBlock(bodyBB);
780 llvm::PHINode *currentElement =
781 Builder.CreatePHI(element->getType(), 2, "arrayinit.cur");
782 currentElement->addIncoming(element, entryBB);
783
784 // Emit the actual filler expression.
785 LValue elementLV = CGF.MakeAddrLValue(currentElement, elementType);
786 if (filler)
787 EmitInitializationToLValue(filler, elementLV);
788 else
789 EmitNullInitializationToLValue(elementLV);
790
John McCallbdc4d802011-07-09 01:37:26 +0000791 // Move on to the next element.
792 llvm::Value *nextElement =
793 Builder.CreateInBoundsGEP(currentElement, one, "arrayinit.next");
794
John McCall2673c682011-07-11 08:38:19 +0000795 // Tell the EH cleanup that we finished with the last element.
796 if (endOfInit) Builder.CreateStore(nextElement, endOfInit);
797
John McCallbdc4d802011-07-09 01:37:26 +0000798 // Leave the loop if we're done.
799 llvm::Value *done = Builder.CreateICmpEQ(nextElement, end,
800 "arrayinit.done");
801 llvm::BasicBlock *endBB = CGF.createBasicBlock("arrayinit.end");
802 Builder.CreateCondBr(done, endBB, bodyBB);
803 currentElement->addIncoming(nextElement, Builder.GetInsertBlock());
804
805 CGF.EmitBlock(endBB);
806 }
807
808 // Leave the partial-array cleanup if we entered one.
809 if (dtorKind) CGF.DeactivateCleanupBlock(cleanup);
810
Chris Lattnerf81557c2008-04-04 18:42:16 +0000811 return;
812 }
Mike Stump1eb44332009-09-09 15:08:12 +0000813
Chris Lattnerf81557c2008-04-04 18:42:16 +0000814 assert(E->getType()->isRecordType() && "Only support structs/unions here!");
Mike Stump1eb44332009-09-09 15:08:12 +0000815
Chris Lattnerf81557c2008-04-04 18:42:16 +0000816 // Do struct initialization; this code just sets each individual member
817 // to the approprate value. This makes bitfield support automatic;
818 // the disadvantage is that the generated code is more difficult for
819 // the optimizer, especially with bitfields.
820 unsigned NumInitElements = E->getNumInits();
John McCall2b30dcf2011-07-11 19:35:02 +0000821 RecordDecl *record = E->getType()->castAs<RecordType>()->getDecl();
Chris Lattnerbd7de382010-09-06 00:13:11 +0000822
John McCall2b30dcf2011-07-11 19:35:02 +0000823 if (record->isUnion()) {
Douglas Gregor0bb76892009-01-29 16:53:55 +0000824 // Only initialize one field of a union. The field itself is
825 // specified by the initializer list.
826 if (!E->getInitializedFieldInUnion()) {
827 // Empty union; we have nothing to do.
Mike Stump1eb44332009-09-09 15:08:12 +0000828
Douglas Gregor0bb76892009-01-29 16:53:55 +0000829#ifndef NDEBUG
830 // Make sure that it's really an empty and not a failure of
831 // semantic analysis.
John McCall2b30dcf2011-07-11 19:35:02 +0000832 for (RecordDecl::field_iterator Field = record->field_begin(),
833 FieldEnd = record->field_end();
Douglas Gregor0bb76892009-01-29 16:53:55 +0000834 Field != FieldEnd; ++Field)
835 assert(Field->isUnnamedBitfield() && "Only unnamed bitfields allowed");
836#endif
837 return;
838 }
839
840 // FIXME: volatility
841 FieldDecl *Field = E->getInitializedFieldInUnion();
Douglas Gregor0bb76892009-01-29 16:53:55 +0000842
Chris Lattner1b726772010-12-02 07:07:26 +0000843 LValue FieldLoc = CGF.EmitLValueForFieldInitialization(DestPtr, Field, 0);
Douglas Gregor0bb76892009-01-29 16:53:55 +0000844 if (NumInitElements) {
845 // Store the initializer into the field
John McCalla07398e2011-06-16 04:16:24 +0000846 EmitInitializationToLValue(E->getInit(0), FieldLoc);
Douglas Gregor0bb76892009-01-29 16:53:55 +0000847 } else {
Chris Lattner1b726772010-12-02 07:07:26 +0000848 // Default-initialize to null.
John McCalla07398e2011-06-16 04:16:24 +0000849 EmitNullInitializationToLValue(FieldLoc);
Douglas Gregor0bb76892009-01-29 16:53:55 +0000850 }
851
852 return;
853 }
Mike Stump1eb44332009-09-09 15:08:12 +0000854
John McCall2b30dcf2011-07-11 19:35:02 +0000855 // We'll need to enter cleanup scopes in case any of the member
856 // initializers throw an exception.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000857 SmallVector<EHScopeStack::stable_iterator, 16> cleanups;
John McCall2b30dcf2011-07-11 19:35:02 +0000858
Chris Lattnerf81557c2008-04-04 18:42:16 +0000859 // Here we iterate over the fields; this makes it simpler to both
860 // default-initialize fields and skip over unnamed fields.
John McCall2b30dcf2011-07-11 19:35:02 +0000861 unsigned curInitIndex = 0;
862 for (RecordDecl::field_iterator field = record->field_begin(),
863 fieldEnd = record->field_end();
864 field != fieldEnd; ++field) {
865 // We're done once we hit the flexible array member.
866 if (field->getType()->isIncompleteArrayType())
Douglas Gregor44b43212008-12-11 16:49:14 +0000867 break;
868
John McCall2b30dcf2011-07-11 19:35:02 +0000869 // Always skip anonymous bitfields.
870 if (field->isUnnamedBitfield())
Chris Lattnerf81557c2008-04-04 18:42:16 +0000871 continue;
Douglas Gregor34e79462009-01-28 23:36:17 +0000872
John McCall2b30dcf2011-07-11 19:35:02 +0000873 // We're done if we reach the end of the explicit initializers, we
874 // have a zeroed object, and the rest of the fields are
875 // zero-initializable.
876 if (curInitIndex == NumInitElements && Dest.isZeroed() &&
Chris Lattner1b726772010-12-02 07:07:26 +0000877 CGF.getTypes().isZeroInitializable(E->getType()))
878 break;
879
Eli Friedman1e692ac2008-06-13 23:01:12 +0000880 // FIXME: volatility
John McCall2b30dcf2011-07-11 19:35:02 +0000881 LValue LV = CGF.EmitLValueForFieldInitialization(DestPtr, *field, 0);
Fariborz Jahanian14674ff2009-05-27 19:54:11 +0000882 // We never generate write-barries for initialized fields.
John McCall2b30dcf2011-07-11 19:35:02 +0000883 LV.setNonGC(true);
Chris Lattner1b726772010-12-02 07:07:26 +0000884
John McCall2b30dcf2011-07-11 19:35:02 +0000885 if (curInitIndex < NumInitElements) {
Chris Lattnerb35baae2010-03-08 21:08:07 +0000886 // Store the initializer into the field.
John McCall2b30dcf2011-07-11 19:35:02 +0000887 EmitInitializationToLValue(E->getInit(curInitIndex++), LV);
Chris Lattnerf81557c2008-04-04 18:42:16 +0000888 } else {
889 // We're out of initalizers; default-initialize to null
John McCall2b30dcf2011-07-11 19:35:02 +0000890 EmitNullInitializationToLValue(LV);
891 }
892
893 // Push a destructor if necessary.
894 // FIXME: if we have an array of structures, all explicitly
895 // initialized, we can end up pushing a linear number of cleanups.
896 bool pushedCleanup = false;
897 if (QualType::DestructionKind dtorKind
898 = field->getType().isDestructedType()) {
899 assert(LV.isSimple());
900 if (CGF.needsEHCleanup(dtorKind)) {
901 CGF.pushDestroy(EHCleanup, LV.getAddress(), field->getType(),
902 CGF.getDestroyer(dtorKind), false);
903 cleanups.push_back(CGF.EHStack.stable_begin());
904 pushedCleanup = true;
905 }
Chris Lattnerf81557c2008-04-04 18:42:16 +0000906 }
Chris Lattner1b726772010-12-02 07:07:26 +0000907
908 // If the GEP didn't get used because of a dead zero init or something
909 // else, clean it up for -O0 builds and general tidiness.
John McCall2b30dcf2011-07-11 19:35:02 +0000910 if (!pushedCleanup && LV.isSimple())
Chris Lattner1b726772010-12-02 07:07:26 +0000911 if (llvm::GetElementPtrInst *GEP =
John McCall2b30dcf2011-07-11 19:35:02 +0000912 dyn_cast<llvm::GetElementPtrInst>(LV.getAddress()))
Chris Lattner1b726772010-12-02 07:07:26 +0000913 if (GEP->use_empty())
914 GEP->eraseFromParent();
Lauro Ramos Venancio145cd892008-02-19 19:27:31 +0000915 }
John McCall2b30dcf2011-07-11 19:35:02 +0000916
917 // Deactivate all the partial cleanups in reverse order, which
918 // generally means popping them.
919 for (unsigned i = cleanups.size(); i != 0; --i)
920 CGF.DeactivateCleanupBlock(cleanups[i-1]);
Devang Patel636c3d02007-10-26 17:44:44 +0000921}
922
Chris Lattneree755f92007-08-21 04:59:27 +0000923//===----------------------------------------------------------------------===//
924// Entry Points into this File
925//===----------------------------------------------------------------------===//
926
Chris Lattner1b726772010-12-02 07:07:26 +0000927/// GetNumNonZeroBytesInInit - Get an approximate count of the number of
928/// non-zero bytes that will be stored when outputting the initializer for the
929/// specified initializer expression.
Ken Dyck02c45332011-04-24 17:17:56 +0000930static CharUnits GetNumNonZeroBytesInInit(const Expr *E, CodeGenFunction &CGF) {
Peter Collingbournef111d932011-04-15 00:35:48 +0000931 E = E->IgnoreParens();
Chris Lattner1b726772010-12-02 07:07:26 +0000932
933 // 0 and 0.0 won't require any non-zero stores!
Ken Dyck02c45332011-04-24 17:17:56 +0000934 if (isSimpleZero(E, CGF)) return CharUnits::Zero();
Chris Lattner1b726772010-12-02 07:07:26 +0000935
936 // If this is an initlist expr, sum up the size of sizes of the (present)
937 // elements. If this is something weird, assume the whole thing is non-zero.
938 const InitListExpr *ILE = dyn_cast<InitListExpr>(E);
939 if (ILE == 0 || !CGF.getTypes().isZeroInitializable(ILE->getType()))
Ken Dyck02c45332011-04-24 17:17:56 +0000940 return CGF.getContext().getTypeSizeInChars(E->getType());
Chris Lattner1b726772010-12-02 07:07:26 +0000941
Chris Lattnerd1d56df2010-12-02 18:29:00 +0000942 // InitListExprs for structs have to be handled carefully. If there are
943 // reference members, we need to consider the size of the reference, not the
944 // referencee. InitListExprs for unions and arrays can't have references.
Chris Lattner8c00ad12010-12-02 22:52:04 +0000945 if (const RecordType *RT = E->getType()->getAs<RecordType>()) {
946 if (!RT->isUnionType()) {
947 RecordDecl *SD = E->getType()->getAs<RecordType>()->getDecl();
Ken Dyck02c45332011-04-24 17:17:56 +0000948 CharUnits NumNonZeroBytes = CharUnits::Zero();
Chris Lattner8c00ad12010-12-02 22:52:04 +0000949
950 unsigned ILEElement = 0;
951 for (RecordDecl::field_iterator Field = SD->field_begin(),
952 FieldEnd = SD->field_end(); Field != FieldEnd; ++Field) {
953 // We're done once we hit the flexible array member or run out of
954 // InitListExpr elements.
955 if (Field->getType()->isIncompleteArrayType() ||
956 ILEElement == ILE->getNumInits())
957 break;
958 if (Field->isUnnamedBitfield())
959 continue;
Chris Lattnerd1d56df2010-12-02 18:29:00 +0000960
Chris Lattner8c00ad12010-12-02 22:52:04 +0000961 const Expr *E = ILE->getInit(ILEElement++);
962
963 // Reference values are always non-null and have the width of a pointer.
964 if (Field->getType()->isReferenceType())
Ken Dyck02c45332011-04-24 17:17:56 +0000965 NumNonZeroBytes += CGF.getContext().toCharUnitsFromBits(
966 CGF.getContext().Target.getPointerWidth(0));
Chris Lattner8c00ad12010-12-02 22:52:04 +0000967 else
968 NumNonZeroBytes += GetNumNonZeroBytesInInit(E, CGF);
969 }
Chris Lattnerd1d56df2010-12-02 18:29:00 +0000970
Chris Lattner8c00ad12010-12-02 22:52:04 +0000971 return NumNonZeroBytes;
Chris Lattnerd1d56df2010-12-02 18:29:00 +0000972 }
Chris Lattnerd1d56df2010-12-02 18:29:00 +0000973 }
974
975
Ken Dyck02c45332011-04-24 17:17:56 +0000976 CharUnits NumNonZeroBytes = CharUnits::Zero();
Chris Lattner1b726772010-12-02 07:07:26 +0000977 for (unsigned i = 0, e = ILE->getNumInits(); i != e; ++i)
978 NumNonZeroBytes += GetNumNonZeroBytesInInit(ILE->getInit(i), CGF);
979 return NumNonZeroBytes;
980}
981
982/// CheckAggExprForMemSetUse - If the initializer is large and has a lot of
983/// zeros in it, emit a memset and avoid storing the individual zeros.
984///
985static void CheckAggExprForMemSetUse(AggValueSlot &Slot, const Expr *E,
986 CodeGenFunction &CGF) {
987 // If the slot is already known to be zeroed, nothing to do. Don't mess with
988 // volatile stores.
989 if (Slot.isZeroed() || Slot.isVolatile() || Slot.getAddr() == 0) return;
Argyrios Kyrtzidis657baf12011-04-28 22:57:55 +0000990
991 // C++ objects with a user-declared constructor don't need zero'ing.
992 if (CGF.getContext().getLangOptions().CPlusPlus)
993 if (const RecordType *RT = CGF.getContext()
994 .getBaseElementType(E->getType())->getAs<RecordType>()) {
995 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
996 if (RD->hasUserDeclaredConstructor())
997 return;
998 }
999
Chris Lattner1b726772010-12-02 07:07:26 +00001000 // If the type is 16-bytes or smaller, prefer individual stores over memset.
Ken Dyck5ff1a352011-04-24 17:25:32 +00001001 std::pair<CharUnits, CharUnits> TypeInfo =
1002 CGF.getContext().getTypeInfoInChars(E->getType());
1003 if (TypeInfo.first <= CharUnits::fromQuantity(16))
Chris Lattner1b726772010-12-02 07:07:26 +00001004 return;
1005
1006 // Check to see if over 3/4 of the initializer are known to be zero. If so,
1007 // we prefer to emit memset + individual stores for the rest.
Ken Dyck5ff1a352011-04-24 17:25:32 +00001008 CharUnits NumNonZeroBytes = GetNumNonZeroBytesInInit(E, CGF);
1009 if (NumNonZeroBytes*4 > TypeInfo.first)
Chris Lattner1b726772010-12-02 07:07:26 +00001010 return;
1011
1012 // Okay, it seems like a good idea to use an initial memset, emit the call.
Ken Dyck5ff1a352011-04-24 17:25:32 +00001013 llvm::Constant *SizeVal = CGF.Builder.getInt64(TypeInfo.first.getQuantity());
1014 CharUnits Align = TypeInfo.second;
Chris Lattner1b726772010-12-02 07:07:26 +00001015
1016 llvm::Value *Loc = Slot.getAddr();
Chris Lattner2acc6e32011-07-18 04:24:23 +00001017 llvm::Type *BP = llvm::Type::getInt8PtrTy(CGF.getLLVMContext());
Chris Lattner1b726772010-12-02 07:07:26 +00001018
1019 Loc = CGF.Builder.CreateBitCast(Loc, BP);
Ken Dyck5ff1a352011-04-24 17:25:32 +00001020 CGF.Builder.CreateMemSet(Loc, CGF.Builder.getInt8(0), SizeVal,
1021 Align.getQuantity(), false);
Chris Lattner1b726772010-12-02 07:07:26 +00001022
1023 // Tell the AggExprEmitter that the slot is known zero.
1024 Slot.setZeroed();
1025}
1026
1027
1028
1029
Mike Stumpe1129a92009-05-26 18:57:45 +00001030/// EmitAggExpr - Emit the computation of the specified expression of aggregate
1031/// type. The result is computed into DestPtr. Note that if DestPtr is null,
1032/// the value of the aggregate expression is not needed. If VolatileDest is
1033/// true, DestPtr cannot be 0.
John McCall558d2ab2010-09-15 10:14:12 +00001034///
1035/// \param IsInitializer - true if this evaluation is initializing an
1036/// object whose lifetime is already being managed.
John McCall558d2ab2010-09-15 10:14:12 +00001037void CodeGenFunction::EmitAggExpr(const Expr *E, AggValueSlot Slot,
Fariborz Jahanian474e2fe2010-09-16 00:20:07 +00001038 bool IgnoreResult) {
Chris Lattneree755f92007-08-21 04:59:27 +00001039 assert(E && hasAggregateLLVMType(E->getType()) &&
1040 "Invalid aggregate expression to emit");
Chris Lattner1b726772010-12-02 07:07:26 +00001041 assert((Slot.getAddr() != 0 || Slot.isIgnored()) &&
1042 "slot has bits but no address");
Mike Stump1eb44332009-09-09 15:08:12 +00001043
Chris Lattner1b726772010-12-02 07:07:26 +00001044 // Optimize the slot if possible.
1045 CheckAggExprForMemSetUse(Slot, E, *this);
1046
1047 AggExprEmitter(*this, Slot, IgnoreResult).Visit(const_cast<Expr*>(E));
Chris Lattneree755f92007-08-21 04:59:27 +00001048}
Daniel Dunbar7482d122008-09-09 20:49:46 +00001049
Daniel Dunbar18aba0d2010-02-05 19:38:31 +00001050LValue CodeGenFunction::EmitAggExprToLValue(const Expr *E) {
1051 assert(hasAggregateLLVMType(E->getType()) && "Invalid argument!");
Daniel Dunbar195337d2010-02-09 02:48:28 +00001052 llvm::Value *Temp = CreateMemTemp(E->getType());
Daniel Dunbar79c39282010-08-21 03:15:20 +00001053 LValue LV = MakeAddrLValue(Temp, E->getType());
John McCall7c2349b2011-08-25 20:40:09 +00001054 EmitAggExpr(E, AggValueSlot::forLValue(LV, AggValueSlot::IsNotDestructed,
1055 AggValueSlot::DoesNotNeedGCBarriers));
Daniel Dunbar79c39282010-08-21 03:15:20 +00001056 return LV;
Daniel Dunbar18aba0d2010-02-05 19:38:31 +00001057}
1058
Daniel Dunbar7482d122008-09-09 20:49:46 +00001059void CodeGenFunction::EmitAggregateCopy(llvm::Value *DestPtr,
Mike Stump27fe2e62009-05-23 22:29:41 +00001060 llvm::Value *SrcPtr, QualType Ty,
1061 bool isVolatile) {
Daniel Dunbar7482d122008-09-09 20:49:46 +00001062 assert(!Ty->isAnyComplexType() && "Shouldn't happen for complex");
Mike Stump1eb44332009-09-09 15:08:12 +00001063
Anders Carlsson0d7c5832010-05-03 01:20:20 +00001064 if (getContext().getLangOptions().CPlusPlus) {
1065 if (const RecordType *RT = Ty->getAs<RecordType>()) {
Douglas Gregore9979482010-05-20 15:39:01 +00001066 CXXRecordDecl *Record = cast<CXXRecordDecl>(RT->getDecl());
1067 assert((Record->hasTrivialCopyConstructor() ||
Fariborz Jahanian1d49f212010-05-20 16:46:55 +00001068 Record->hasTrivialCopyAssignment()) &&
Douglas Gregore9979482010-05-20 15:39:01 +00001069 "Trying to aggregate-copy a type without a trivial copy "
1070 "constructor or assignment operator");
Douglas Gregor419aa962010-05-20 15:48:29 +00001071 // Ignore empty classes in C++.
Douglas Gregore9979482010-05-20 15:39:01 +00001072 if (Record->isEmpty())
Anders Carlsson0d7c5832010-05-03 01:20:20 +00001073 return;
1074 }
1075 }
1076
Chris Lattner83c96292009-02-28 18:31:01 +00001077 // Aggregate assignment turns into llvm.memcpy. This is almost valid per
Chris Lattnerca4fc2c2009-02-28 18:18:58 +00001078 // C99 6.5.16.1p3, which states "If the value being stored in an object is
1079 // read from another object that overlaps in anyway the storage of the first
1080 // object, then the overlap shall be exact and the two objects shall have
1081 // qualified or unqualified versions of a compatible type."
1082 //
Chris Lattner83c96292009-02-28 18:31:01 +00001083 // memcpy is not defined if the source and destination pointers are exactly
Chris Lattnerca4fc2c2009-02-28 18:18:58 +00001084 // equal, but other compilers do this optimization, and almost every memcpy
1085 // implementation handles this case safely. If there is a libc that does not
1086 // safely handle this, we can add a target hook.
Mike Stump1eb44332009-09-09 15:08:12 +00001087
Daniel Dunbar7482d122008-09-09 20:49:46 +00001088 // Get size and alignment info for this aggregate.
Ken Dyck1a8c15a2011-04-24 17:37:26 +00001089 std::pair<CharUnits, CharUnits> TypeInfo =
1090 getContext().getTypeInfoInChars(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +00001091
Daniel Dunbar7482d122008-09-09 20:49:46 +00001092 // FIXME: Handle variable sized types.
Mike Stump1eb44332009-09-09 15:08:12 +00001093
Mike Stumpfde64202009-05-23 04:13:59 +00001094 // FIXME: If we have a volatile struct, the optimizer can remove what might
1095 // appear to be `extra' memory ops:
1096 //
1097 // volatile struct { int i; } a, b;
1098 //
1099 // int main() {
1100 // a = b;
1101 // a = b;
1102 // }
1103 //
Mon P Wang3ecd7852010-04-04 03:10:52 +00001104 // we need to use a different call here. We use isVolatile to indicate when
Mike Stump49d1cd52009-05-26 22:03:21 +00001105 // either the source or the destination is volatile.
Mon P Wang3ecd7852010-04-04 03:10:52 +00001106
Chris Lattner2acc6e32011-07-18 04:24:23 +00001107 llvm::PointerType *DPT = cast<llvm::PointerType>(DestPtr->getType());
1108 llvm::Type *DBP =
John McCalld16c2cf2011-02-08 08:22:06 +00001109 llvm::Type::getInt8PtrTy(getLLVMContext(), DPT->getAddressSpace());
Chris Lattner098432c2010-07-08 00:07:45 +00001110 DestPtr = Builder.CreateBitCast(DestPtr, DBP, "tmp");
Mon P Wang3ecd7852010-04-04 03:10:52 +00001111
Chris Lattner2acc6e32011-07-18 04:24:23 +00001112 llvm::PointerType *SPT = cast<llvm::PointerType>(SrcPtr->getType());
1113 llvm::Type *SBP =
John McCalld16c2cf2011-02-08 08:22:06 +00001114 llvm::Type::getInt8PtrTy(getLLVMContext(), SPT->getAddressSpace());
Chris Lattner098432c2010-07-08 00:07:45 +00001115 SrcPtr = Builder.CreateBitCast(SrcPtr, SBP, "tmp");
Mon P Wang3ecd7852010-04-04 03:10:52 +00001116
John McCallf85e1932011-06-15 23:02:42 +00001117 // Don't do any of the memmove_collectable tests if GC isn't set.
1118 if (CGM.getLangOptions().getGCMode() == LangOptions::NonGC) {
1119 // fall through
1120 } else if (const RecordType *RecordTy = Ty->getAs<RecordType>()) {
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00001121 RecordDecl *Record = RecordTy->getDecl();
1122 if (Record->hasObjectMember()) {
Ken Dyck1a8c15a2011-04-24 17:37:26 +00001123 CharUnits size = TypeInfo.first;
Chris Lattner2acc6e32011-07-18 04:24:23 +00001124 llvm::Type *SizeTy = ConvertType(getContext().getSizeType());
Ken Dyck1a8c15a2011-04-24 17:37:26 +00001125 llvm::Value *SizeVal = llvm::ConstantInt::get(SizeTy, size.getQuantity());
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00001126 CGM.getObjCRuntime().EmitGCMemmoveCollectable(*this, DestPtr, SrcPtr,
1127 SizeVal);
1128 return;
1129 }
John McCallf85e1932011-06-15 23:02:42 +00001130 } else if (Ty->isArrayType()) {
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00001131 QualType BaseType = getContext().getBaseElementType(Ty);
1132 if (const RecordType *RecordTy = BaseType->getAs<RecordType>()) {
1133 if (RecordTy->getDecl()->hasObjectMember()) {
Ken Dyck1a8c15a2011-04-24 17:37:26 +00001134 CharUnits size = TypeInfo.first;
Chris Lattner2acc6e32011-07-18 04:24:23 +00001135 llvm::Type *SizeTy = ConvertType(getContext().getSizeType());
Ken Dyck1a8c15a2011-04-24 17:37:26 +00001136 llvm::Value *SizeVal =
1137 llvm::ConstantInt::get(SizeTy, size.getQuantity());
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00001138 CGM.getObjCRuntime().EmitGCMemmoveCollectable(*this, DestPtr, SrcPtr,
1139 SizeVal);
1140 return;
1141 }
1142 }
1143 }
1144
Benjamin Kramer9f0c7cc2010-12-30 00:13:21 +00001145 Builder.CreateMemCpy(DestPtr, SrcPtr,
Ken Dyck1a8c15a2011-04-24 17:37:26 +00001146 llvm::ConstantInt::get(IntPtrTy,
1147 TypeInfo.first.getQuantity()),
1148 TypeInfo.second.getQuantity(), isVolatile);
Daniel Dunbar7482d122008-09-09 20:49:46 +00001149}