blob: f4387cd0def062719decc5680d14c0a37fe66070 [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
38 ReturnValueSlot getReturnValueSlot() const {
John McCallfa037bd2010-05-22 22:13:32 +000039 // If the destination slot requires garbage collection, we can't
40 // use the real return value slot, because we have to use the GC
41 // API.
John McCalld1a5f132010-09-16 03:13:23 +000042 if (Dest.requiresGCollection()) return ReturnValueSlot();
John McCallfa037bd2010-05-22 22:13:32 +000043
John McCall558d2ab2010-09-15 10:14:12 +000044 return ReturnValueSlot(Dest.getAddr(), Dest.isVolatile());
45 }
46
47 AggValueSlot EnsureSlot(QualType T) {
48 if (!Dest.isIgnored()) return Dest;
49 return CGF.CreateAggTemp(T, "agg.tmp.ensured");
John McCallef072fd2010-05-22 01:48:05 +000050 }
John McCallfa037bd2010-05-22 22:13:32 +000051
Chris Lattner9c033562007-08-21 04:25:47 +000052public:
John McCall558d2ab2010-09-15 10:14:12 +000053 AggExprEmitter(CodeGenFunction &cgf, AggValueSlot Dest,
Fariborz Jahanian474e2fe2010-09-16 00:20:07 +000054 bool ignore)
John McCall558d2ab2010-09-15 10:14:12 +000055 : CGF(cgf), Builder(CGF.Builder), Dest(Dest),
Fariborz Jahanian474e2fe2010-09-16 00:20:07 +000056 IgnoreResult(ignore) {
Chris Lattner9c033562007-08-21 04:25:47 +000057 }
58
Chris Lattneree755f92007-08-21 04:59:27 +000059 //===--------------------------------------------------------------------===//
60 // Utilities
61 //===--------------------------------------------------------------------===//
62
Chris Lattner9c033562007-08-21 04:25:47 +000063 /// EmitAggLoadOfLValue - Given an expression with aggregate type that
64 /// represents a value lvalue, this method emits the address of the lvalue,
65 /// then loads the result into DestPtr.
66 void EmitAggLoadOfLValue(const Expr *E);
Eli Friedman922696f2008-05-19 17:51:16 +000067
Mike Stump4ac20dd2009-05-23 20:28:01 +000068 /// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
Mike Stump49d1cd52009-05-26 22:03:21 +000069 void EmitFinalDestCopy(const Expr *E, LValue Src, bool Ignore = false);
70 void EmitFinalDestCopy(const Expr *E, RValue Src, bool Ignore = false);
Mike Stump4ac20dd2009-05-23 20:28:01 +000071
John McCallfa037bd2010-05-22 22:13:32 +000072 void EmitGCMove(const Expr *E, RValue Src);
73
74 bool TypeRequiresGCollection(QualType T);
75
Chris Lattneree755f92007-08-21 04:59:27 +000076 //===--------------------------------------------------------------------===//
77 // Visitor Methods
78 //===--------------------------------------------------------------------===//
Mike Stump1eb44332009-09-09 15:08:12 +000079
Chris Lattner9c033562007-08-21 04:25:47 +000080 void VisitStmt(Stmt *S) {
Daniel Dunbar488e9932008-08-16 00:56:44 +000081 CGF.ErrorUnsupported(S, "aggregate expression");
Chris Lattner9c033562007-08-21 04:25:47 +000082 }
83 void VisitParenExpr(ParenExpr *PE) { Visit(PE->getSubExpr()); }
Peter Collingbournef111d932011-04-15 00:35:48 +000084 void VisitGenericSelectionExpr(GenericSelectionExpr *GE) {
85 Visit(GE->getResultExpr());
86 }
Eli Friedman12444a22009-01-27 09:03:41 +000087 void VisitUnaryExtension(UnaryOperator *E) { Visit(E->getSubExpr()); }
Chris Lattner9c033562007-08-21 04:25:47 +000088
89 // l-values.
Seo Sanghyeon9b73b392007-12-14 02:04:12 +000090 void VisitDeclRefExpr(DeclRefExpr *DRE) { EmitAggLoadOfLValue(DRE); }
91 void VisitMemberExpr(MemberExpr *ME) { EmitAggLoadOfLValue(ME); }
92 void VisitUnaryDeref(UnaryOperator *E) { EmitAggLoadOfLValue(E); }
Daniel Dunbar5be028f2010-01-04 18:47:06 +000093 void VisitStringLiteral(StringLiteral *E) { EmitAggLoadOfLValue(E); }
Douglas Gregor751ec9b2011-06-17 04:59:12 +000094 void VisitCompoundLiteralExpr(CompoundLiteralExpr *E);
Seo Sanghyeon9b73b392007-12-14 02:04:12 +000095 void VisitArraySubscriptExpr(ArraySubscriptExpr *E) {
96 EmitAggLoadOfLValue(E);
97 }
Chris Lattnerf0a990c2009-04-21 23:00:09 +000098 void VisitBlockDeclRefExpr(const BlockDeclRefExpr *E) {
Mike Stump1eb44332009-09-09 15:08:12 +000099 EmitAggLoadOfLValue(E);
Chris Lattnerf0a990c2009-04-21 23:00:09 +0000100 }
101 void VisitPredefinedExpr(const PredefinedExpr *E) {
Mike Stump1eb44332009-09-09 15:08:12 +0000102 EmitAggLoadOfLValue(E);
Chris Lattnerf0a990c2009-04-21 23:00:09 +0000103 }
Mike Stump1eb44332009-09-09 15:08:12 +0000104
Chris Lattner9c033562007-08-21 04:25:47 +0000105 // Operators.
Anders Carlsson4d8673b2009-08-07 23:22:37 +0000106 void VisitCastExpr(CastExpr *E);
Anders Carlsson148fe672007-10-31 22:04:46 +0000107 void VisitCallExpr(const CallExpr *E);
Chris Lattnerb2d963f2007-08-31 22:54:14 +0000108 void VisitStmtExpr(const StmtExpr *E);
Chris Lattner9c033562007-08-21 04:25:47 +0000109 void VisitBinaryOperator(const BinaryOperator *BO);
Fariborz Jahanian8bfd31f2009-10-22 22:57:31 +0000110 void VisitPointerToDataMemberBinaryOperator(const BinaryOperator *BO);
Chris Lattner03d6fb92007-08-21 04:43:17 +0000111 void VisitBinAssign(const BinaryOperator *E);
Eli Friedman07fa52a2008-05-20 07:56:31 +0000112 void VisitBinComma(const BinaryOperator *E);
Chris Lattner9c033562007-08-21 04:25:47 +0000113
Chris Lattner8fdf3282008-06-24 17:04:18 +0000114 void VisitObjCMessageExpr(ObjCMessageExpr *E);
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000115 void VisitObjCIvarRefExpr(ObjCIvarRefExpr *E) {
116 EmitAggLoadOfLValue(E);
117 }
Daniel Dunbar9c3fc702008-08-27 06:57:25 +0000118 void VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *E);
Mike Stump1eb44332009-09-09 15:08:12 +0000119
John McCall56ca35d2011-02-17 10:25:35 +0000120 void VisitAbstractConditionalOperator(const AbstractConditionalOperator *CO);
Anders Carlssona294ca82009-07-08 18:33:14 +0000121 void VisitChooseExpr(const ChooseExpr *CE);
Devang Patel636c3d02007-10-26 17:44:44 +0000122 void VisitInitListExpr(InitListExpr *E);
Anders Carlsson30311fa2009-12-16 06:57:54 +0000123 void VisitImplicitValueInitExpr(ImplicitValueInitExpr *E);
Chris Lattner04421082008-04-08 04:40:51 +0000124 void VisitCXXDefaultArgExpr(CXXDefaultArgExpr *DAE) {
125 Visit(DAE->getExpr());
126 }
Anders Carlssonb58d0172009-05-30 23:23:33 +0000127 void VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E);
Anders Carlsson31ccf372009-05-03 17:47:16 +0000128 void VisitCXXConstructExpr(const CXXConstructExpr *E);
John McCall4765fa02010-12-06 08:20:24 +0000129 void VisitExprWithCleanups(ExprWithCleanups *E);
Douglas Gregored8abf12010-07-08 06:14:04 +0000130 void VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *E);
Mike Stump2710c412009-11-18 00:40:12 +0000131 void VisitCXXTypeidExpr(CXXTypeidExpr *E) { EmitAggLoadOfLValue(E); }
Douglas Gregor03e80032011-06-21 17:03:29 +0000132 void VisitMaterializeTemporaryExpr(MaterializeTemporaryExpr *E);
John McCalle996ffd2011-02-16 08:02:54 +0000133 void VisitOpaqueValueExpr(OpaqueValueExpr *E);
134
Eli Friedmanb1851242008-05-27 15:51:49 +0000135 void VisitVAArgExpr(VAArgExpr *E);
Chris Lattnerf81557c2008-04-04 18:42:16 +0000136
John McCalla07398e2011-06-16 04:16:24 +0000137 void EmitInitializationToLValue(Expr *E, LValue Address);
138 void EmitNullInitializationToLValue(LValue Address);
Chris Lattner9c033562007-08-21 04:25:47 +0000139 // case Expr::ChooseExprClass:
Mike Stump39406b12009-12-09 19:24:08 +0000140 void VisitCXXThrowExpr(const CXXThrowExpr *E) { CGF.EmitCXXThrowExpr(E); }
Chris Lattner9c033562007-08-21 04:25:47 +0000141};
142} // end anonymous namespace.
143
Chris Lattneree755f92007-08-21 04:59:27 +0000144//===----------------------------------------------------------------------===//
145// Utilities
146//===----------------------------------------------------------------------===//
Chris Lattner9c033562007-08-21 04:25:47 +0000147
Chris Lattner883f6a72007-08-11 00:04:45 +0000148/// EmitAggLoadOfLValue - Given an expression with aggregate type that
149/// represents a value lvalue, this method emits the address of the lvalue,
150/// then loads the result into DestPtr.
Chris Lattner9c033562007-08-21 04:25:47 +0000151void AggExprEmitter::EmitAggLoadOfLValue(const Expr *E) {
152 LValue LV = CGF.EmitLValue(E);
Mike Stump4ac20dd2009-05-23 20:28:01 +0000153 EmitFinalDestCopy(E, LV);
154}
155
John McCallfa037bd2010-05-22 22:13:32 +0000156/// \brief True if the given aggregate type requires special GC API calls.
157bool AggExprEmitter::TypeRequiresGCollection(QualType T) {
158 // Only record types have members that might require garbage collection.
159 const RecordType *RecordTy = T->getAs<RecordType>();
160 if (!RecordTy) return false;
161
162 // Don't mess with non-trivial C++ types.
163 RecordDecl *Record = RecordTy->getDecl();
164 if (isa<CXXRecordDecl>(Record) &&
165 (!cast<CXXRecordDecl>(Record)->hasTrivialCopyConstructor() ||
166 !cast<CXXRecordDecl>(Record)->hasTrivialDestructor()))
167 return false;
168
169 // Check whether the type has an object member.
170 return Record->hasObjectMember();
171}
172
173/// \brief Perform the final move to DestPtr if RequiresGCollection is set.
174///
175/// The idea is that you do something like this:
176/// RValue Result = EmitSomething(..., getReturnValueSlot());
177/// EmitGCMove(E, Result);
178/// If GC doesn't interfere, this will cause the result to be emitted
179/// directly into the return value slot. If GC does interfere, a final
180/// move will be performed.
181void AggExprEmitter::EmitGCMove(const Expr *E, RValue Src) {
John McCalld1a5f132010-09-16 03:13:23 +0000182 if (Dest.requiresGCollection()) {
Ken Dyck479b61c2011-04-24 17:08:00 +0000183 CharUnits size = CGF.getContext().getTypeSizeInChars(E->getType());
Fariborz Jahanian55bcace2010-06-15 22:44:06 +0000184 const llvm::Type *SizeTy = CGF.ConvertType(CGF.getContext().getSizeType());
Ken Dyck479b61c2011-04-24 17:08:00 +0000185 llvm::Value *SizeVal = llvm::ConstantInt::get(SizeTy, size.getQuantity());
John McCall558d2ab2010-09-15 10:14:12 +0000186 CGF.CGM.getObjCRuntime().EmitGCMemmoveCollectable(CGF, Dest.getAddr(),
John McCallfa037bd2010-05-22 22:13:32 +0000187 Src.getAggregateAddr(),
Fariborz Jahanian55bcace2010-06-15 22:44:06 +0000188 SizeVal);
189 }
John McCallfa037bd2010-05-22 22:13:32 +0000190}
191
Mike Stump4ac20dd2009-05-23 20:28:01 +0000192/// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
Mike Stump49d1cd52009-05-26 22:03:21 +0000193void AggExprEmitter::EmitFinalDestCopy(const Expr *E, RValue Src, bool Ignore) {
Mike Stump4ac20dd2009-05-23 20:28:01 +0000194 assert(Src.isAggregate() && "value must be aggregate value!");
195
John McCall558d2ab2010-09-15 10:14:12 +0000196 // If Dest is ignored, then we're evaluating an aggregate expression
John McCalla8f28da2010-08-25 02:50:31 +0000197 // in a context (like an expression statement) that doesn't care
198 // about the result. C says that an lvalue-to-rvalue conversion is
199 // performed in these cases; C++ says that it is not. In either
200 // case, we don't actually need to do anything unless the value is
201 // volatile.
John McCall558d2ab2010-09-15 10:14:12 +0000202 if (Dest.isIgnored()) {
John McCalla8f28da2010-08-25 02:50:31 +0000203 if (!Src.isVolatileQualified() ||
204 CGF.CGM.getLangOptions().CPlusPlus ||
205 (IgnoreResult && Ignore))
Mike Stump9ccb1032009-05-23 22:01:27 +0000206 return;
Fariborz Jahanian8a970052010-10-22 22:05:03 +0000207
Mike Stump49d1cd52009-05-26 22:03:21 +0000208 // If the source is volatile, we must read from it; to do that, we need
209 // some place to put it.
John McCall558d2ab2010-09-15 10:14:12 +0000210 Dest = CGF.CreateAggTemp(E->getType(), "agg.tmp");
Mike Stump9ccb1032009-05-23 22:01:27 +0000211 }
Chris Lattner883f6a72007-08-11 00:04:45 +0000212
John McCalld1a5f132010-09-16 03:13:23 +0000213 if (Dest.requiresGCollection()) {
Ken Dyck479b61c2011-04-24 17:08:00 +0000214 CharUnits size = CGF.getContext().getTypeSizeInChars(E->getType());
Fariborz Jahanian55bcace2010-06-15 22:44:06 +0000215 const llvm::Type *SizeTy = CGF.ConvertType(CGF.getContext().getSizeType());
Ken Dyck479b61c2011-04-24 17:08:00 +0000216 llvm::Value *SizeVal = llvm::ConstantInt::get(SizeTy, size.getQuantity());
Fariborz Jahanian08c32132009-08-31 19:33:16 +0000217 CGF.CGM.getObjCRuntime().EmitGCMemmoveCollectable(CGF,
John McCall558d2ab2010-09-15 10:14:12 +0000218 Dest.getAddr(),
219 Src.getAggregateAddr(),
220 SizeVal);
Fariborz Jahanian08c32132009-08-31 19:33:16 +0000221 return;
222 }
Mike Stump4ac20dd2009-05-23 20:28:01 +0000223 // If the result of the assignment is used, copy the LHS there also.
224 // FIXME: Pass VolatileDest as well. I think we also need to merge volatile
225 // from the source as well, as we can't eliminate it if either operand
226 // is volatile, unless copy has volatile for both source and destination..
John McCall558d2ab2010-09-15 10:14:12 +0000227 CGF.EmitAggregateCopy(Dest.getAddr(), Src.getAggregateAddr(), E->getType(),
228 Dest.isVolatile()|Src.isVolatileQualified());
Mike Stump4ac20dd2009-05-23 20:28:01 +0000229}
230
231/// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
Mike Stump49d1cd52009-05-26 22:03:21 +0000232void AggExprEmitter::EmitFinalDestCopy(const Expr *E, LValue Src, bool Ignore) {
Mike Stump4ac20dd2009-05-23 20:28:01 +0000233 assert(Src.isSimple() && "Can't have aggregate bitfield, vector, etc");
234
235 EmitFinalDestCopy(E, RValue::getAggregate(Src.getAddress(),
Mike Stump49d1cd52009-05-26 22:03:21 +0000236 Src.isVolatileQualified()),
237 Ignore);
Chris Lattner883f6a72007-08-11 00:04:45 +0000238}
239
Chris Lattneree755f92007-08-21 04:59:27 +0000240//===----------------------------------------------------------------------===//
241// Visitor Methods
242//===----------------------------------------------------------------------===//
243
Douglas Gregor03e80032011-06-21 17:03:29 +0000244void AggExprEmitter::VisitMaterializeTemporaryExpr(MaterializeTemporaryExpr *E){
245 Visit(E->GetTemporaryExpr());
246}
247
John McCalle996ffd2011-02-16 08:02:54 +0000248void AggExprEmitter::VisitOpaqueValueExpr(OpaqueValueExpr *e) {
John McCall56ca35d2011-02-17 10:25:35 +0000249 EmitFinalDestCopy(e, CGF.getOpaqueLValueMapping(e));
John McCalle996ffd2011-02-16 08:02:54 +0000250}
251
Douglas Gregor751ec9b2011-06-17 04:59:12 +0000252void
253AggExprEmitter::VisitCompoundLiteralExpr(CompoundLiteralExpr *E) {
Douglas Gregor673e98b2011-06-17 16:37:20 +0000254 if (E->getType().isPODType(CGF.getContext())) {
255 // For a POD type, just emit a load of the lvalue + a copy, because our
256 // compound literal might alias the destination.
257 // FIXME: This is a band-aid; the real problem appears to be in our handling
258 // of assignments, where we store directly into the LHS without checking
259 // whether anything in the RHS aliases.
260 EmitAggLoadOfLValue(E);
261 return;
262 }
263
Douglas Gregor751ec9b2011-06-17 04:59:12 +0000264 AggValueSlot Slot = EnsureSlot(E->getType());
265 CGF.EmitAggExpr(E->getInitializer(), Slot);
266}
267
268
Anders Carlsson4d8673b2009-08-07 23:22:37 +0000269void AggExprEmitter::VisitCastExpr(CastExpr *E) {
Anders Carlsson30168422009-09-29 01:23:39 +0000270 switch (E->getCastKind()) {
Anders Carlsson575b3742011-04-11 02:03:26 +0000271 case CK_Dynamic: {
Douglas Gregor69cfeb12010-05-14 21:31:02 +0000272 assert(isa<CXXDynamicCastExpr>(E) && "CK_Dynamic without a dynamic_cast?");
273 LValue LV = CGF.EmitCheckedLValue(E->getSubExpr());
274 // FIXME: Do we also need to handle property references here?
275 if (LV.isSimple())
276 CGF.EmitDynamicCast(LV.getAddress(), cast<CXXDynamicCastExpr>(E));
277 else
278 CGF.CGM.ErrorUnsupported(E, "non-simple lvalue dynamic_cast");
279
John McCall558d2ab2010-09-15 10:14:12 +0000280 if (!Dest.isIgnored())
281 CGF.CGM.ErrorUnsupported(E, "lvalue dynamic_cast with a destination");
Douglas Gregor69cfeb12010-05-14 21:31:02 +0000282 break;
283 }
284
John McCall2de56d12010-08-25 11:45:40 +0000285 case CK_ToUnion: {
John McCall65912712011-04-12 22:02:02 +0000286 if (Dest.isIgnored()) break;
287
Anders Carlsson4d8673b2009-08-07 23:22:37 +0000288 // GCC union extension
Daniel Dunbar79c39282010-08-21 03:15:20 +0000289 QualType Ty = E->getSubExpr()->getType();
290 QualType PtrTy = CGF.getContext().getPointerType(Ty);
John McCall558d2ab2010-09-15 10:14:12 +0000291 llvm::Value *CastPtr = Builder.CreateBitCast(Dest.getAddr(),
Eli Friedman34ebf4d2009-06-03 20:45:06 +0000292 CGF.ConvertType(PtrTy));
John McCalla07398e2011-06-16 04:16:24 +0000293 EmitInitializationToLValue(E->getSubExpr(),
294 CGF.MakeAddrLValue(CastPtr, Ty));
Anders Carlsson30168422009-09-29 01:23:39 +0000295 break;
Nuno Lopes7e916272009-01-15 20:14:33 +0000296 }
Mike Stump1eb44332009-09-09 15:08:12 +0000297
John McCall2de56d12010-08-25 11:45:40 +0000298 case CK_DerivedToBase:
299 case CK_BaseToDerived:
300 case CK_UncheckedDerivedToBase: {
Douglas Gregor2d6b0e92010-05-22 05:17:18 +0000301 assert(0 && "cannot perform hierarchy conversion in EmitAggExpr: "
302 "should have been unpacked before we got here");
303 break;
304 }
305
John McCallf6a16482010-12-04 03:47:34 +0000306 case CK_GetObjCProperty: {
307 LValue LV = CGF.EmitLValue(E->getSubExpr());
308 assert(LV.isPropertyRef());
309 RValue RV = CGF.EmitLoadOfPropertyRefLValue(LV, getReturnValueSlot());
310 EmitGCMove(E, RV);
311 break;
312 }
313
314 case CK_LValueToRValue: // hope for downstream optimization
John McCall2de56d12010-08-25 11:45:40 +0000315 case CK_NoOp:
316 case CK_UserDefinedConversion:
317 case CK_ConstructorConversion:
Anders Carlsson30168422009-09-29 01:23:39 +0000318 assert(CGF.getContext().hasSameUnqualifiedType(E->getSubExpr()->getType(),
319 E->getType()) &&
320 "Implicit cast types must be compatible");
321 Visit(E->getSubExpr());
322 break;
John McCall0ae287a2010-12-01 04:43:34 +0000323
John McCall2de56d12010-08-25 11:45:40 +0000324 case CK_LValueBitCast:
John McCall0ae287a2010-12-01 04:43:34 +0000325 llvm_unreachable("should not be emitting lvalue bitcast as rvalue");
Douglas Gregore39a3892010-07-13 23:17:26 +0000326 break;
John McCall1de4d4e2011-04-07 08:22:57 +0000327
John McCall0ae287a2010-12-01 04:43:34 +0000328 case CK_Dependent:
329 case CK_BitCast:
330 case CK_ArrayToPointerDecay:
331 case CK_FunctionToPointerDecay:
332 case CK_NullToPointer:
333 case CK_NullToMemberPointer:
334 case CK_BaseToDerivedMemberPointer:
335 case CK_DerivedToBaseMemberPointer:
336 case CK_MemberPointerToBoolean:
337 case CK_IntegralToPointer:
338 case CK_PointerToIntegral:
339 case CK_PointerToBoolean:
340 case CK_ToVoid:
341 case CK_VectorSplat:
342 case CK_IntegralCast:
343 case CK_IntegralToBoolean:
344 case CK_IntegralToFloating:
345 case CK_FloatingToIntegral:
346 case CK_FloatingToBoolean:
347 case CK_FloatingCast:
348 case CK_AnyPointerToObjCPointerCast:
349 case CK_AnyPointerToBlockPointerCast:
350 case CK_ObjCObjectLValueCast:
351 case CK_FloatingRealToComplex:
352 case CK_FloatingComplexToReal:
353 case CK_FloatingComplexToBoolean:
354 case CK_FloatingComplexCast:
355 case CK_FloatingComplexToIntegralComplex:
356 case CK_IntegralRealToComplex:
357 case CK_IntegralComplexToReal:
358 case CK_IntegralComplexToBoolean:
359 case CK_IntegralComplexCast:
360 case CK_IntegralComplexToFloatingComplex:
John McCallf85e1932011-06-15 23:02:42 +0000361 case CK_ObjCProduceObject:
362 case CK_ObjCConsumeObject:
John McCall7e5e5f42011-07-07 06:58:02 +0000363 case CK_ObjCReclaimReturnedObject:
John McCall0ae287a2010-12-01 04:43:34 +0000364 llvm_unreachable("cast kind invalid for aggregate types");
Anders Carlsson30168422009-09-29 01:23:39 +0000365 }
Anders Carlssone4707ff2008-01-14 06:28:57 +0000366}
367
Chris Lattner96196622008-07-26 22:37:01 +0000368void AggExprEmitter::VisitCallExpr(const CallExpr *E) {
Anders Carlssone70e8f72009-05-27 16:45:02 +0000369 if (E->getCallReturnType()->isReferenceType()) {
370 EmitAggLoadOfLValue(E);
371 return;
372 }
Mike Stump1eb44332009-09-09 15:08:12 +0000373
John McCallfa037bd2010-05-22 22:13:32 +0000374 RValue RV = CGF.EmitCallExpr(E, getReturnValueSlot());
375 EmitGCMove(E, RV);
Anders Carlsson148fe672007-10-31 22:04:46 +0000376}
Chris Lattner96196622008-07-26 22:37:01 +0000377
378void AggExprEmitter::VisitObjCMessageExpr(ObjCMessageExpr *E) {
John McCallfa037bd2010-05-22 22:13:32 +0000379 RValue RV = CGF.EmitObjCMessageExpr(E, getReturnValueSlot());
380 EmitGCMove(E, RV);
Chris Lattner8fdf3282008-06-24 17:04:18 +0000381}
Anders Carlsson148fe672007-10-31 22:04:46 +0000382
Daniel Dunbar9c3fc702008-08-27 06:57:25 +0000383void AggExprEmitter::VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *E) {
John McCallf6a16482010-12-04 03:47:34 +0000384 llvm_unreachable("direct property access not surrounded by "
385 "lvalue-to-rvalue cast");
Daniel Dunbar9c3fc702008-08-27 06:57:25 +0000386}
387
Chris Lattner96196622008-07-26 22:37:01 +0000388void AggExprEmitter::VisitBinComma(const BinaryOperator *E) {
John McCall2a416372010-12-05 02:00:02 +0000389 CGF.EmitIgnoredExpr(E->getLHS());
John McCall558d2ab2010-09-15 10:14:12 +0000390 Visit(E->getRHS());
Eli Friedman07fa52a2008-05-20 07:56:31 +0000391}
392
Chris Lattnerb2d963f2007-08-31 22:54:14 +0000393void AggExprEmitter::VisitStmtExpr(const StmtExpr *E) {
John McCall150b4622011-01-26 04:00:11 +0000394 CodeGenFunction::StmtExprEvaluation eval(CGF);
John McCall558d2ab2010-09-15 10:14:12 +0000395 CGF.EmitCompoundStmt(*E->getSubStmt(), true, Dest);
Chris Lattnerb2d963f2007-08-31 22:54:14 +0000396}
397
Chris Lattner9c033562007-08-21 04:25:47 +0000398void AggExprEmitter::VisitBinaryOperator(const BinaryOperator *E) {
John McCall2de56d12010-08-25 11:45:40 +0000399 if (E->getOpcode() == BO_PtrMemD || E->getOpcode() == BO_PtrMemI)
Fariborz Jahanian8bfd31f2009-10-22 22:57:31 +0000400 VisitPointerToDataMemberBinaryOperator(E);
401 else
402 CGF.ErrorUnsupported(E, "aggregate binary expression");
403}
404
405void AggExprEmitter::VisitPointerToDataMemberBinaryOperator(
406 const BinaryOperator *E) {
407 LValue LV = CGF.EmitPointerToDataMemberBinaryExpr(E);
408 EmitFinalDestCopy(E, LV);
Chris Lattneree755f92007-08-21 04:59:27 +0000409}
410
Chris Lattner03d6fb92007-08-21 04:43:17 +0000411void AggExprEmitter::VisitBinAssign(const BinaryOperator *E) {
Eli Friedmanff6e2b72008-02-11 01:09:17 +0000412 // For an assignment to work, the value on the right has
413 // to be compatible with the value on the left.
Eli Friedman2dce5f82009-05-28 23:04:00 +0000414 assert(CGF.getContext().hasSameUnqualifiedType(E->getLHS()->getType(),
415 E->getRHS()->getType())
Eli Friedmanff6e2b72008-02-11 01:09:17 +0000416 && "Invalid assignment");
John McCallcd940a12010-12-06 06:10:02 +0000417
Fariborz Jahanian2c7168c2011-04-29 21:53:21 +0000418 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E->getLHS()))
Fariborz Jahanian73a6f8e2011-04-29 22:11:28 +0000419 if (const VarDecl *VD = dyn_cast<VarDecl>(DRE->getDecl()))
Fariborz Jahanian2c7168c2011-04-29 21:53:21 +0000420 if (VD->hasAttr<BlocksAttr>() &&
421 E->getRHS()->HasSideEffects(CGF.getContext())) {
422 // When __block variable on LHS, the RHS must be evaluated first
423 // as it may change the 'forwarding' field via call to Block_copy.
424 LValue RHS = CGF.EmitLValue(E->getRHS());
425 LValue LHS = CGF.EmitLValue(E->getLHS());
426 bool GCollection = false;
427 if (CGF.getContext().getLangOptions().getGCMode())
428 GCollection = TypeRequiresGCollection(E->getLHS()->getType());
Fariborz Jahanian2c7168c2011-04-29 21:53:21 +0000429 Dest = AggValueSlot::forLValue(LHS, true, GCollection);
430 EmitFinalDestCopy(E, RHS, true);
431 return;
432 }
Fariborz Jahanian2c7168c2011-04-29 21:53:21 +0000433
Chris Lattner9c033562007-08-21 04:25:47 +0000434 LValue LHS = CGF.EmitLValue(E->getLHS());
Chris Lattner883f6a72007-08-11 00:04:45 +0000435
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000436 // We have to special case property setters, otherwise we must have
437 // a simple lvalue (no aggregates inside vectors, bitfields).
438 if (LHS.isPropertyRef()) {
Fariborz Jahanian68af13f2011-03-30 16:11:20 +0000439 const ObjCPropertyRefExpr *RE = LHS.getPropertyRefExpr();
440 QualType ArgType = RE->getSetterArgType();
441 RValue Src;
442 if (ArgType->isReferenceType())
443 Src = CGF.EmitReferenceBindingToExpr(E->getRHS(), 0);
444 else {
445 AggValueSlot Slot = EnsureSlot(E->getRHS()->getType());
446 CGF.EmitAggExpr(E->getRHS(), Slot);
447 Src = Slot.asRValue();
448 }
449 CGF.EmitStoreThroughPropertyRefLValue(Src, LHS);
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000450 } else {
Fariborz Jahanian474e2fe2010-09-16 00:20:07 +0000451 bool GCollection = false;
John McCallfa037bd2010-05-22 22:13:32 +0000452 if (CGF.getContext().getLangOptions().getGCMode())
Fariborz Jahanian474e2fe2010-09-16 00:20:07 +0000453 GCollection = TypeRequiresGCollection(E->getLHS()->getType());
John McCallfa037bd2010-05-22 22:13:32 +0000454
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000455 // Codegen the RHS so that it stores directly into the LHS.
Fariborz Jahanian474e2fe2010-09-16 00:20:07 +0000456 AggValueSlot LHSSlot = AggValueSlot::forLValue(LHS, true,
457 GCollection);
458 CGF.EmitAggExpr(E->getRHS(), LHSSlot, false);
Mike Stump49d1cd52009-05-26 22:03:21 +0000459 EmitFinalDestCopy(E, LHS, true);
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000460 }
Chris Lattner883f6a72007-08-11 00:04:45 +0000461}
462
John McCall56ca35d2011-02-17 10:25:35 +0000463void AggExprEmitter::
464VisitAbstractConditionalOperator(const AbstractConditionalOperator *E) {
Daniel Dunbar9615ecb2008-11-13 01:38:36 +0000465 llvm::BasicBlock *LHSBlock = CGF.createBasicBlock("cond.true");
466 llvm::BasicBlock *RHSBlock = CGF.createBasicBlock("cond.false");
467 llvm::BasicBlock *ContBlock = CGF.createBasicBlock("cond.end");
Mike Stump1eb44332009-09-09 15:08:12 +0000468
John McCall56ca35d2011-02-17 10:25:35 +0000469 // Bind the common expression if necessary.
470 CodeGenFunction::OpaqueValueMapping binding(CGF, E);
471
John McCall150b4622011-01-26 04:00:11 +0000472 CodeGenFunction::ConditionalEvaluation eval(CGF);
Eli Friedman8e274bd2009-12-25 06:17:05 +0000473 CGF.EmitBranchOnBoolExpr(E->getCond(), LHSBlock, RHSBlock);
Mike Stump1eb44332009-09-09 15:08:12 +0000474
John McCall74fb0ed2010-11-17 00:07:33 +0000475 // Save whether the destination's lifetime is externally managed.
476 bool DestLifetimeManaged = Dest.isLifetimeExternallyManaged();
Chris Lattner883f6a72007-08-11 00:04:45 +0000477
John McCall150b4622011-01-26 04:00:11 +0000478 eval.begin(CGF);
479 CGF.EmitBlock(LHSBlock);
John McCall56ca35d2011-02-17 10:25:35 +0000480 Visit(E->getTrueExpr());
John McCall150b4622011-01-26 04:00:11 +0000481 eval.end(CGF);
Mike Stump1eb44332009-09-09 15:08:12 +0000482
John McCall150b4622011-01-26 04:00:11 +0000483 assert(CGF.HaveInsertPoint() && "expression evaluation ended with no IP!");
484 CGF.Builder.CreateBr(ContBlock);
Mike Stump1eb44332009-09-09 15:08:12 +0000485
John McCall74fb0ed2010-11-17 00:07:33 +0000486 // If the result of an agg expression is unused, then the emission
487 // of the LHS might need to create a destination slot. That's fine
488 // with us, and we can safely emit the RHS into the same slot, but
489 // we shouldn't claim that its lifetime is externally managed.
490 Dest.setLifetimeExternallyManaged(DestLifetimeManaged);
491
John McCall150b4622011-01-26 04:00:11 +0000492 eval.begin(CGF);
493 CGF.EmitBlock(RHSBlock);
John McCall56ca35d2011-02-17 10:25:35 +0000494 Visit(E->getFalseExpr());
John McCall150b4622011-01-26 04:00:11 +0000495 eval.end(CGF);
Mike Stump1eb44332009-09-09 15:08:12 +0000496
Chris Lattner9c033562007-08-21 04:25:47 +0000497 CGF.EmitBlock(ContBlock);
Chris Lattner883f6a72007-08-11 00:04:45 +0000498}
Chris Lattneree755f92007-08-21 04:59:27 +0000499
Anders Carlssona294ca82009-07-08 18:33:14 +0000500void AggExprEmitter::VisitChooseExpr(const ChooseExpr *CE) {
501 Visit(CE->getChosenSubExpr(CGF.getContext()));
502}
503
Eli Friedmanb1851242008-05-27 15:51:49 +0000504void AggExprEmitter::VisitVAArgExpr(VAArgExpr *VE) {
Daniel Dunbar07855702009-02-11 22:25:55 +0000505 llvm::Value *ArgValue = CGF.EmitVAListRef(VE->getSubExpr());
Anders Carlssonddf7cac2008-11-04 05:30:00 +0000506 llvm::Value *ArgPtr = CGF.EmitVAArg(ArgValue, VE->getType());
507
Sebastian Redl0262f022009-01-09 21:09:38 +0000508 if (!ArgPtr) {
Anders Carlssonddf7cac2008-11-04 05:30:00 +0000509 CGF.ErrorUnsupported(VE, "aggregate va_arg expression");
Sebastian Redl0262f022009-01-09 21:09:38 +0000510 return;
511 }
512
Daniel Dunbar79c39282010-08-21 03:15:20 +0000513 EmitFinalDestCopy(VE, CGF.MakeAddrLValue(ArgPtr, VE->getType()));
Eli Friedmanb1851242008-05-27 15:51:49 +0000514}
515
Anders Carlssonb58d0172009-05-30 23:23:33 +0000516void AggExprEmitter::VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E) {
John McCall558d2ab2010-09-15 10:14:12 +0000517 // Ensure that we have a slot, but if we already do, remember
518 // whether its lifetime was externally managed.
519 bool WasManaged = Dest.isLifetimeExternallyManaged();
520 Dest = EnsureSlot(E->getType());
521 Dest.setLifetimeExternallyManaged();
Mike Stump1eb44332009-09-09 15:08:12 +0000522
John McCall558d2ab2010-09-15 10:14:12 +0000523 Visit(E->getSubExpr());
Anders Carlssonb58d0172009-05-30 23:23:33 +0000524
John McCall558d2ab2010-09-15 10:14:12 +0000525 // Set up the temporary's destructor if its lifetime wasn't already
526 // being managed.
527 if (!WasManaged)
528 CGF.EmitCXXTemporary(E->getTemporary(), Dest.getAddr());
Anders Carlssonb58d0172009-05-30 23:23:33 +0000529}
530
Anders Carlssonb14095a2009-04-17 00:06:03 +0000531void
Anders Carlsson31ccf372009-05-03 17:47:16 +0000532AggExprEmitter::VisitCXXConstructExpr(const CXXConstructExpr *E) {
John McCall558d2ab2010-09-15 10:14:12 +0000533 AggValueSlot Slot = EnsureSlot(E->getType());
534 CGF.EmitCXXConstructExpr(E, Slot);
Anders Carlsson7f6ad152009-05-19 04:48:36 +0000535}
536
John McCall4765fa02010-12-06 08:20:24 +0000537void AggExprEmitter::VisitExprWithCleanups(ExprWithCleanups *E) {
538 CGF.EmitExprWithCleanups(E, Dest);
Anders Carlssonb14095a2009-04-17 00:06:03 +0000539}
540
Douglas Gregored8abf12010-07-08 06:14:04 +0000541void AggExprEmitter::VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *E) {
John McCall558d2ab2010-09-15 10:14:12 +0000542 QualType T = E->getType();
543 AggValueSlot Slot = EnsureSlot(T);
John McCalla07398e2011-06-16 04:16:24 +0000544 EmitNullInitializationToLValue(CGF.MakeAddrLValue(Slot.getAddr(), T));
Anders Carlsson30311fa2009-12-16 06:57:54 +0000545}
546
547void AggExprEmitter::VisitImplicitValueInitExpr(ImplicitValueInitExpr *E) {
John McCall558d2ab2010-09-15 10:14:12 +0000548 QualType T = E->getType();
549 AggValueSlot Slot = EnsureSlot(T);
John McCalla07398e2011-06-16 04:16:24 +0000550 EmitNullInitializationToLValue(CGF.MakeAddrLValue(Slot.getAddr(), T));
Nuno Lopes329763b2009-10-18 15:18:11 +0000551}
552
Chris Lattner1b726772010-12-02 07:07:26 +0000553/// isSimpleZero - If emitting this value will obviously just cause a store of
554/// zero to memory, return true. This can return false if uncertain, so it just
555/// handles simple cases.
556static bool isSimpleZero(const Expr *E, CodeGenFunction &CGF) {
Peter Collingbournef111d932011-04-15 00:35:48 +0000557 E = E->IgnoreParens();
558
Chris Lattner1b726772010-12-02 07:07:26 +0000559 // 0
560 if (const IntegerLiteral *IL = dyn_cast<IntegerLiteral>(E))
561 return IL->getValue() == 0;
562 // +0.0
563 if (const FloatingLiteral *FL = dyn_cast<FloatingLiteral>(E))
564 return FL->getValue().isPosZero();
565 // int()
566 if ((isa<ImplicitValueInitExpr>(E) || isa<CXXScalarValueInitExpr>(E)) &&
567 CGF.getTypes().isZeroInitializable(E->getType()))
568 return true;
569 // (int*)0 - Null pointer expressions.
570 if (const CastExpr *ICE = dyn_cast<CastExpr>(E))
571 return ICE->getCastKind() == CK_NullToPointer;
572 // '\0'
573 if (const CharacterLiteral *CL = dyn_cast<CharacterLiteral>(E))
574 return CL->getValue() == 0;
575
576 // Otherwise, hard case: conservatively return false.
577 return false;
578}
579
580
Anders Carlsson78e83f82010-02-03 17:33:16 +0000581void
John McCalla07398e2011-06-16 04:16:24 +0000582AggExprEmitter::EmitInitializationToLValue(Expr* E, LValue LV) {
583 QualType type = LV.getType();
Mike Stump7f79f9b2009-05-29 15:46:01 +0000584 // FIXME: Ignore result?
Chris Lattnerf81557c2008-04-04 18:42:16 +0000585 // FIXME: Are initializers affected by volatile?
Chris Lattner1b726772010-12-02 07:07:26 +0000586 if (Dest.isZeroed() && isSimpleZero(E, CGF)) {
587 // Storing "i32 0" to a zero'd memory location is a noop.
588 } else if (isa<ImplicitValueInitExpr>(E)) {
John McCalla07398e2011-06-16 04:16:24 +0000589 EmitNullInitializationToLValue(LV);
590 } else if (type->isReferenceType()) {
Anders Carlsson32f36ba2010-06-26 16:35:32 +0000591 RValue RV = CGF.EmitReferenceBindingToExpr(E, /*InitializedDecl=*/0);
John McCall545d9962011-06-25 02:11:03 +0000592 CGF.EmitStoreThroughLValue(RV, LV);
John McCalla07398e2011-06-16 04:16:24 +0000593 } else if (type->isAnyComplexType()) {
Douglas Gregor3498bdb2009-01-29 17:44:32 +0000594 CGF.EmitComplexExprIntoAddr(E, LV.getAddress(), false);
John McCalla07398e2011-06-16 04:16:24 +0000595 } else if (CGF.hasAggregateLLVMType(type)) {
596 CGF.EmitAggExpr(E, AggValueSlot::forLValue(LV, true, false,
597 Dest.isZeroed()));
John McCallf85e1932011-06-15 23:02:42 +0000598 } else if (LV.isSimple()) {
John McCalla07398e2011-06-16 04:16:24 +0000599 CGF.EmitScalarInit(E, /*D=*/0, LV, /*Captured=*/false);
Eli Friedmanc8ba9612008-05-12 15:06:05 +0000600 } else {
John McCall545d9962011-06-25 02:11:03 +0000601 CGF.EmitStoreThroughLValue(RValue::get(CGF.EmitScalarExpr(E)), LV);
Chris Lattnerf81557c2008-04-04 18:42:16 +0000602 }
Chris Lattnerf81557c2008-04-04 18:42:16 +0000603}
604
John McCalla07398e2011-06-16 04:16:24 +0000605void AggExprEmitter::EmitNullInitializationToLValue(LValue lv) {
606 QualType type = lv.getType();
607
Chris Lattner1b726772010-12-02 07:07:26 +0000608 // If the destination slot is already zeroed out before the aggregate is
609 // copied into it, we don't have to emit any zeros here.
John McCalla07398e2011-06-16 04:16:24 +0000610 if (Dest.isZeroed() && CGF.getTypes().isZeroInitializable(type))
Chris Lattner1b726772010-12-02 07:07:26 +0000611 return;
612
John McCalla07398e2011-06-16 04:16:24 +0000613 if (!CGF.hasAggregateLLVMType(type)) {
Chris Lattnerf81557c2008-04-04 18:42:16 +0000614 // For non-aggregates, we can store zero
John McCalla07398e2011-06-16 04:16:24 +0000615 llvm::Value *null = llvm::Constant::getNullValue(CGF.ConvertType(type));
John McCall545d9962011-06-25 02:11:03 +0000616 CGF.EmitStoreThroughLValue(RValue::get(null), lv);
Lauro Ramos Venancio145cd892008-02-19 19:27:31 +0000617 } else {
Chris Lattnerf81557c2008-04-04 18:42:16 +0000618 // There's a potential optimization opportunity in combining
619 // memsets; that would be easy for arrays, but relatively
620 // difficult for structures with the current code.
John McCalla07398e2011-06-16 04:16:24 +0000621 CGF.EmitNullInitialization(lv.getAddress(), lv.getType());
Chris Lattnerf81557c2008-04-04 18:42:16 +0000622 }
623}
624
Chris Lattnerf81557c2008-04-04 18:42:16 +0000625void AggExprEmitter::VisitInitListExpr(InitListExpr *E) {
Eli Friedmana385b3c2008-12-02 01:17:45 +0000626#if 0
Eli Friedman13a5be12009-12-04 01:30:56 +0000627 // FIXME: Assess perf here? Figure out what cases are worth optimizing here
628 // (Length of globals? Chunks of zeroed-out space?).
Eli Friedmana385b3c2008-12-02 01:17:45 +0000629 //
Mike Stumpf5408fe2009-05-16 07:57:57 +0000630 // If we can, prefer a copy from a global; this is a lot less code for long
631 // globals, and it's easier for the current optimizers to analyze.
Eli Friedman13a5be12009-12-04 01:30:56 +0000632 if (llvm::Constant* C = CGF.CGM.EmitConstantExpr(E, E->getType(), &CGF)) {
Eli Friedman994ffef2008-11-30 02:11:09 +0000633 llvm::GlobalVariable* GV =
Eli Friedman13a5be12009-12-04 01:30:56 +0000634 new llvm::GlobalVariable(CGF.CGM.getModule(), C->getType(), true,
635 llvm::GlobalValue::InternalLinkage, C, "");
Daniel Dunbar79c39282010-08-21 03:15:20 +0000636 EmitFinalDestCopy(E, CGF.MakeAddrLValue(GV, E->getType()));
Eli Friedman994ffef2008-11-30 02:11:09 +0000637 return;
638 }
Eli Friedmana385b3c2008-12-02 01:17:45 +0000639#endif
Chris Lattnerd0db03a2010-09-06 00:11:41 +0000640 if (E->hadArrayRangeDesignator())
Douglas Gregora9c87802009-01-29 19:42:23 +0000641 CGF.ErrorUnsupported(E, "GNU array range designator extension");
Douglas Gregora9c87802009-01-29 19:42:23 +0000642
John McCall558d2ab2010-09-15 10:14:12 +0000643 llvm::Value *DestPtr = Dest.getAddr();
644
Chris Lattnerf81557c2008-04-04 18:42:16 +0000645 // Handle initialization of an array.
646 if (E->getType()->isArrayType()) {
647 const llvm::PointerType *APType =
648 cast<llvm::PointerType>(DestPtr->getType());
649 const llvm::ArrayType *AType =
650 cast<llvm::ArrayType>(APType->getElementType());
Mike Stump1eb44332009-09-09 15:08:12 +0000651
Chris Lattnerf81557c2008-04-04 18:42:16 +0000652 uint64_t NumInitElements = E->getNumInits();
Eli Friedman922696f2008-05-19 17:51:16 +0000653
Chris Lattner96196622008-07-26 22:37:01 +0000654 if (E->getNumInits() > 0) {
655 QualType T1 = E->getType();
656 QualType T2 = E->getInit(0)->getType();
Eli Friedman2dce5f82009-05-28 23:04:00 +0000657 if (CGF.getContext().hasSameUnqualifiedType(T1, T2)) {
Chris Lattner96196622008-07-26 22:37:01 +0000658 EmitAggLoadOfLValue(E->getInit(0));
659 return;
660 }
Eli Friedman922696f2008-05-19 17:51:16 +0000661 }
662
Chris Lattnerf81557c2008-04-04 18:42:16 +0000663 uint64_t NumArrayElements = AType->getNumElements();
John McCallbdc4d802011-07-09 01:37:26 +0000664 assert(NumInitElements <= NumArrayElements);
Mike Stump1eb44332009-09-09 15:08:12 +0000665
John McCallbdc4d802011-07-09 01:37:26 +0000666 QualType elementType = E->getType().getCanonicalType();
667 elementType = CGF.getContext().getQualifiedType(
668 cast<ArrayType>(elementType)->getElementType(),
669 elementType.getQualifiers() + Dest.getQualifiers());
Argyrios Kyrtzidis3b4d4902011-04-28 18:53:58 +0000670
John McCallbdc4d802011-07-09 01:37:26 +0000671 // DestPtr is an array*. Construct an elementType* by drilling
672 // down a level.
673 llvm::Value *zero = llvm::ConstantInt::get(CGF.SizeTy, 0);
674 llvm::Value *indices[] = { zero, zero };
675 llvm::Value *begin =
676 Builder.CreateInBoundsGEP(DestPtr, indices, indices+2, "arrayinit.begin");
Chris Lattner1b726772010-12-02 07:07:26 +0000677
John McCallbdc4d802011-07-09 01:37:26 +0000678 // Exception safety requires us to destroy all the
679 // already-constructed members if an initializer throws.
680 // For that, we'll need an EH cleanup.
681 QualType::DestructionKind dtorKind = elementType.isDestructedType();
682 llvm::AllocaInst *endOfInit = 0;
683 EHScopeStack::stable_iterator cleanup;
684 if (CGF.needsEHCleanup(dtorKind)) {
685 // In principle we could tell the cleanup where we are more
686 // directly, but the control flow can get so varied here that it
687 // would actually be quite complex. Therefore we go through an
688 // alloca.
689 endOfInit = CGF.CreateTempAlloca(begin->getType(),
690 "arrayinit.endOfInit");
691 Builder.CreateStore(begin, endOfInit);
John McCall2673c682011-07-11 08:38:19 +0000692 CGF.pushIrregularPartialArrayCleanup(begin, endOfInit, elementType,
693 CGF.getDestroyer(dtorKind));
John McCallbdc4d802011-07-09 01:37:26 +0000694 cleanup = CGF.EHStack.stable_begin();
695
696 // Otherwise, remember that we didn't need a cleanup.
697 } else {
698 dtorKind = QualType::DK_none;
Lauro Ramos Venancio145cd892008-02-19 19:27:31 +0000699 }
John McCallbdc4d802011-07-09 01:37:26 +0000700
701 llvm::Value *one = llvm::ConstantInt::get(CGF.SizeTy, 1);
702
703 // The 'current element to initialize'. The invariants on this
704 // variable are complicated. Essentially, after each iteration of
705 // the loop, it points to the last initialized element, except
706 // that it points to the beginning of the array before any
707 // elements have been initialized.
708 llvm::Value *element = begin;
709
710 // Emit the explicit initializers.
711 for (uint64_t i = 0; i != NumInitElements; ++i) {
712 // Advance to the next element.
John McCall2673c682011-07-11 08:38:19 +0000713 if (i > 0) {
John McCallbdc4d802011-07-09 01:37:26 +0000714 element = Builder.CreateInBoundsGEP(element, one, "arrayinit.element");
715
John McCall2673c682011-07-11 08:38:19 +0000716 // Tell the cleanup that it needs to destroy up to this
717 // element. TODO: some of these stores can be trivially
718 // observed to be unnecessary.
719 if (endOfInit) Builder.CreateStore(element, endOfInit);
720 }
721
John McCallbdc4d802011-07-09 01:37:26 +0000722 LValue elementLV = CGF.MakeAddrLValue(element, elementType);
723 EmitInitializationToLValue(E->getInit(i), elementLV);
John McCallbdc4d802011-07-09 01:37:26 +0000724 }
725
726 // Check whether there's a non-trivial array-fill expression.
727 // Note that this will be a CXXConstructExpr even if the element
728 // type is an array (or array of array, etc.) of class type.
729 Expr *filler = E->getArrayFiller();
730 bool hasTrivialFiller = true;
731 if (CXXConstructExpr *cons = dyn_cast_or_null<CXXConstructExpr>(filler)) {
732 assert(cons->getConstructor()->isDefaultConstructor());
733 hasTrivialFiller = cons->getConstructor()->isTrivial();
734 }
735
736 // Any remaining elements need to be zero-initialized, possibly
737 // using the filler expression. We can skip this if the we're
738 // emitting to zeroed memory.
739 if (NumInitElements != NumArrayElements &&
740 !(Dest.isZeroed() && hasTrivialFiller &&
741 CGF.getTypes().isZeroInitializable(elementType))) {
742
743 // Use an actual loop. This is basically
744 // do { *array++ = filler; } while (array != end);
745
746 // Advance to the start of the rest of the array.
John McCall2673c682011-07-11 08:38:19 +0000747 if (NumInitElements) {
John McCallbdc4d802011-07-09 01:37:26 +0000748 element = Builder.CreateInBoundsGEP(element, one, "arrayinit.start");
John McCall2673c682011-07-11 08:38:19 +0000749 if (endOfInit) Builder.CreateStore(element, endOfInit);
750 }
John McCallbdc4d802011-07-09 01:37:26 +0000751
752 // Compute the end of the array.
753 llvm::Value *end = Builder.CreateInBoundsGEP(begin,
754 llvm::ConstantInt::get(CGF.SizeTy, NumArrayElements),
755 "arrayinit.end");
756
757 llvm::BasicBlock *entryBB = Builder.GetInsertBlock();
758 llvm::BasicBlock *bodyBB = CGF.createBasicBlock("arrayinit.body");
759
760 // Jump into the body.
761 CGF.EmitBlock(bodyBB);
762 llvm::PHINode *currentElement =
763 Builder.CreatePHI(element->getType(), 2, "arrayinit.cur");
764 currentElement->addIncoming(element, entryBB);
765
766 // Emit the actual filler expression.
767 LValue elementLV = CGF.MakeAddrLValue(currentElement, elementType);
768 if (filler)
769 EmitInitializationToLValue(filler, elementLV);
770 else
771 EmitNullInitializationToLValue(elementLV);
772
John McCallbdc4d802011-07-09 01:37:26 +0000773 // Move on to the next element.
774 llvm::Value *nextElement =
775 Builder.CreateInBoundsGEP(currentElement, one, "arrayinit.next");
776
John McCall2673c682011-07-11 08:38:19 +0000777 // Tell the EH cleanup that we finished with the last element.
778 if (endOfInit) Builder.CreateStore(nextElement, endOfInit);
779
John McCallbdc4d802011-07-09 01:37:26 +0000780 // Leave the loop if we're done.
781 llvm::Value *done = Builder.CreateICmpEQ(nextElement, end,
782 "arrayinit.done");
783 llvm::BasicBlock *endBB = CGF.createBasicBlock("arrayinit.end");
784 Builder.CreateCondBr(done, endBB, bodyBB);
785 currentElement->addIncoming(nextElement, Builder.GetInsertBlock());
786
787 CGF.EmitBlock(endBB);
788 }
789
790 // Leave the partial-array cleanup if we entered one.
791 if (dtorKind) CGF.DeactivateCleanupBlock(cleanup);
792
Chris Lattnerf81557c2008-04-04 18:42:16 +0000793 return;
794 }
Mike Stump1eb44332009-09-09 15:08:12 +0000795
Chris Lattnerf81557c2008-04-04 18:42:16 +0000796 assert(E->getType()->isRecordType() && "Only support structs/unions here!");
Mike Stump1eb44332009-09-09 15:08:12 +0000797
Chris Lattnerf81557c2008-04-04 18:42:16 +0000798 // Do struct initialization; this code just sets each individual member
799 // to the approprate value. This makes bitfield support automatic;
800 // the disadvantage is that the generated code is more difficult for
801 // the optimizer, especially with bitfields.
802 unsigned NumInitElements = E->getNumInits();
John McCall2b30dcf2011-07-11 19:35:02 +0000803 RecordDecl *record = E->getType()->castAs<RecordType>()->getDecl();
Chris Lattnerbd7de382010-09-06 00:13:11 +0000804
John McCall2b30dcf2011-07-11 19:35:02 +0000805 if (record->isUnion()) {
Douglas Gregor0bb76892009-01-29 16:53:55 +0000806 // Only initialize one field of a union. The field itself is
807 // specified by the initializer list.
808 if (!E->getInitializedFieldInUnion()) {
809 // Empty union; we have nothing to do.
Mike Stump1eb44332009-09-09 15:08:12 +0000810
Douglas Gregor0bb76892009-01-29 16:53:55 +0000811#ifndef NDEBUG
812 // Make sure that it's really an empty and not a failure of
813 // semantic analysis.
John McCall2b30dcf2011-07-11 19:35:02 +0000814 for (RecordDecl::field_iterator Field = record->field_begin(),
815 FieldEnd = record->field_end();
Douglas Gregor0bb76892009-01-29 16:53:55 +0000816 Field != FieldEnd; ++Field)
817 assert(Field->isUnnamedBitfield() && "Only unnamed bitfields allowed");
818#endif
819 return;
820 }
821
822 // FIXME: volatility
823 FieldDecl *Field = E->getInitializedFieldInUnion();
Douglas Gregor0bb76892009-01-29 16:53:55 +0000824
Chris Lattner1b726772010-12-02 07:07:26 +0000825 LValue FieldLoc = CGF.EmitLValueForFieldInitialization(DestPtr, Field, 0);
Douglas Gregor0bb76892009-01-29 16:53:55 +0000826 if (NumInitElements) {
827 // Store the initializer into the field
John McCalla07398e2011-06-16 04:16:24 +0000828 EmitInitializationToLValue(E->getInit(0), FieldLoc);
Douglas Gregor0bb76892009-01-29 16:53:55 +0000829 } else {
Chris Lattner1b726772010-12-02 07:07:26 +0000830 // Default-initialize to null.
John McCalla07398e2011-06-16 04:16:24 +0000831 EmitNullInitializationToLValue(FieldLoc);
Douglas Gregor0bb76892009-01-29 16:53:55 +0000832 }
833
834 return;
835 }
Mike Stump1eb44332009-09-09 15:08:12 +0000836
John McCall2b30dcf2011-07-11 19:35:02 +0000837 // We'll need to enter cleanup scopes in case any of the member
838 // initializers throw an exception.
839 llvm::SmallVector<EHScopeStack::stable_iterator, 16> cleanups;
840
Chris Lattnerf81557c2008-04-04 18:42:16 +0000841 // Here we iterate over the fields; this makes it simpler to both
842 // default-initialize fields and skip over unnamed fields.
John McCall2b30dcf2011-07-11 19:35:02 +0000843 unsigned curInitIndex = 0;
844 for (RecordDecl::field_iterator field = record->field_begin(),
845 fieldEnd = record->field_end();
846 field != fieldEnd; ++field) {
847 // We're done once we hit the flexible array member.
848 if (field->getType()->isIncompleteArrayType())
Douglas Gregor44b43212008-12-11 16:49:14 +0000849 break;
850
John McCall2b30dcf2011-07-11 19:35:02 +0000851 // Always skip anonymous bitfields.
852 if (field->isUnnamedBitfield())
Chris Lattnerf81557c2008-04-04 18:42:16 +0000853 continue;
Douglas Gregor34e79462009-01-28 23:36:17 +0000854
John McCall2b30dcf2011-07-11 19:35:02 +0000855 // We're done if we reach the end of the explicit initializers, we
856 // have a zeroed object, and the rest of the fields are
857 // zero-initializable.
858 if (curInitIndex == NumInitElements && Dest.isZeroed() &&
Chris Lattner1b726772010-12-02 07:07:26 +0000859 CGF.getTypes().isZeroInitializable(E->getType()))
860 break;
861
Eli Friedman1e692ac2008-06-13 23:01:12 +0000862 // FIXME: volatility
John McCall2b30dcf2011-07-11 19:35:02 +0000863 LValue LV = CGF.EmitLValueForFieldInitialization(DestPtr, *field, 0);
Fariborz Jahanian14674ff2009-05-27 19:54:11 +0000864 // We never generate write-barries for initialized fields.
John McCall2b30dcf2011-07-11 19:35:02 +0000865 LV.setNonGC(true);
Chris Lattner1b726772010-12-02 07:07:26 +0000866
John McCall2b30dcf2011-07-11 19:35:02 +0000867 if (curInitIndex < NumInitElements) {
Chris Lattnerb35baae2010-03-08 21:08:07 +0000868 // Store the initializer into the field.
John McCall2b30dcf2011-07-11 19:35:02 +0000869 EmitInitializationToLValue(E->getInit(curInitIndex++), LV);
Chris Lattnerf81557c2008-04-04 18:42:16 +0000870 } else {
871 // We're out of initalizers; default-initialize to null
John McCall2b30dcf2011-07-11 19:35:02 +0000872 EmitNullInitializationToLValue(LV);
873 }
874
875 // Push a destructor if necessary.
876 // FIXME: if we have an array of structures, all explicitly
877 // initialized, we can end up pushing a linear number of cleanups.
878 bool pushedCleanup = false;
879 if (QualType::DestructionKind dtorKind
880 = field->getType().isDestructedType()) {
881 assert(LV.isSimple());
882 if (CGF.needsEHCleanup(dtorKind)) {
883 CGF.pushDestroy(EHCleanup, LV.getAddress(), field->getType(),
884 CGF.getDestroyer(dtorKind), false);
885 cleanups.push_back(CGF.EHStack.stable_begin());
886 pushedCleanup = true;
887 }
Chris Lattnerf81557c2008-04-04 18:42:16 +0000888 }
Chris Lattner1b726772010-12-02 07:07:26 +0000889
890 // If the GEP didn't get used because of a dead zero init or something
891 // else, clean it up for -O0 builds and general tidiness.
John McCall2b30dcf2011-07-11 19:35:02 +0000892 if (!pushedCleanup && LV.isSimple())
Chris Lattner1b726772010-12-02 07:07:26 +0000893 if (llvm::GetElementPtrInst *GEP =
John McCall2b30dcf2011-07-11 19:35:02 +0000894 dyn_cast<llvm::GetElementPtrInst>(LV.getAddress()))
Chris Lattner1b726772010-12-02 07:07:26 +0000895 if (GEP->use_empty())
896 GEP->eraseFromParent();
Lauro Ramos Venancio145cd892008-02-19 19:27:31 +0000897 }
John McCall2b30dcf2011-07-11 19:35:02 +0000898
899 // Deactivate all the partial cleanups in reverse order, which
900 // generally means popping them.
901 for (unsigned i = cleanups.size(); i != 0; --i)
902 CGF.DeactivateCleanupBlock(cleanups[i-1]);
Devang Patel636c3d02007-10-26 17:44:44 +0000903}
904
Chris Lattneree755f92007-08-21 04:59:27 +0000905//===----------------------------------------------------------------------===//
906// Entry Points into this File
907//===----------------------------------------------------------------------===//
908
Chris Lattner1b726772010-12-02 07:07:26 +0000909/// GetNumNonZeroBytesInInit - Get an approximate count of the number of
910/// non-zero bytes that will be stored when outputting the initializer for the
911/// specified initializer expression.
Ken Dyck02c45332011-04-24 17:17:56 +0000912static CharUnits GetNumNonZeroBytesInInit(const Expr *E, CodeGenFunction &CGF) {
Peter Collingbournef111d932011-04-15 00:35:48 +0000913 E = E->IgnoreParens();
Chris Lattner1b726772010-12-02 07:07:26 +0000914
915 // 0 and 0.0 won't require any non-zero stores!
Ken Dyck02c45332011-04-24 17:17:56 +0000916 if (isSimpleZero(E, CGF)) return CharUnits::Zero();
Chris Lattner1b726772010-12-02 07:07:26 +0000917
918 // If this is an initlist expr, sum up the size of sizes of the (present)
919 // elements. If this is something weird, assume the whole thing is non-zero.
920 const InitListExpr *ILE = dyn_cast<InitListExpr>(E);
921 if (ILE == 0 || !CGF.getTypes().isZeroInitializable(ILE->getType()))
Ken Dyck02c45332011-04-24 17:17:56 +0000922 return CGF.getContext().getTypeSizeInChars(E->getType());
Chris Lattner1b726772010-12-02 07:07:26 +0000923
Chris Lattnerd1d56df2010-12-02 18:29:00 +0000924 // InitListExprs for structs have to be handled carefully. If there are
925 // reference members, we need to consider the size of the reference, not the
926 // referencee. InitListExprs for unions and arrays can't have references.
Chris Lattner8c00ad12010-12-02 22:52:04 +0000927 if (const RecordType *RT = E->getType()->getAs<RecordType>()) {
928 if (!RT->isUnionType()) {
929 RecordDecl *SD = E->getType()->getAs<RecordType>()->getDecl();
Ken Dyck02c45332011-04-24 17:17:56 +0000930 CharUnits NumNonZeroBytes = CharUnits::Zero();
Chris Lattner8c00ad12010-12-02 22:52:04 +0000931
932 unsigned ILEElement = 0;
933 for (RecordDecl::field_iterator Field = SD->field_begin(),
934 FieldEnd = SD->field_end(); Field != FieldEnd; ++Field) {
935 // We're done once we hit the flexible array member or run out of
936 // InitListExpr elements.
937 if (Field->getType()->isIncompleteArrayType() ||
938 ILEElement == ILE->getNumInits())
939 break;
940 if (Field->isUnnamedBitfield())
941 continue;
Chris Lattnerd1d56df2010-12-02 18:29:00 +0000942
Chris Lattner8c00ad12010-12-02 22:52:04 +0000943 const Expr *E = ILE->getInit(ILEElement++);
944
945 // Reference values are always non-null and have the width of a pointer.
946 if (Field->getType()->isReferenceType())
Ken Dyck02c45332011-04-24 17:17:56 +0000947 NumNonZeroBytes += CGF.getContext().toCharUnitsFromBits(
948 CGF.getContext().Target.getPointerWidth(0));
Chris Lattner8c00ad12010-12-02 22:52:04 +0000949 else
950 NumNonZeroBytes += GetNumNonZeroBytesInInit(E, CGF);
951 }
Chris Lattnerd1d56df2010-12-02 18:29:00 +0000952
Chris Lattner8c00ad12010-12-02 22:52:04 +0000953 return NumNonZeroBytes;
Chris Lattnerd1d56df2010-12-02 18:29:00 +0000954 }
Chris Lattnerd1d56df2010-12-02 18:29:00 +0000955 }
956
957
Ken Dyck02c45332011-04-24 17:17:56 +0000958 CharUnits NumNonZeroBytes = CharUnits::Zero();
Chris Lattner1b726772010-12-02 07:07:26 +0000959 for (unsigned i = 0, e = ILE->getNumInits(); i != e; ++i)
960 NumNonZeroBytes += GetNumNonZeroBytesInInit(ILE->getInit(i), CGF);
961 return NumNonZeroBytes;
962}
963
964/// CheckAggExprForMemSetUse - If the initializer is large and has a lot of
965/// zeros in it, emit a memset and avoid storing the individual zeros.
966///
967static void CheckAggExprForMemSetUse(AggValueSlot &Slot, const Expr *E,
968 CodeGenFunction &CGF) {
969 // If the slot is already known to be zeroed, nothing to do. Don't mess with
970 // volatile stores.
971 if (Slot.isZeroed() || Slot.isVolatile() || Slot.getAddr() == 0) return;
Argyrios Kyrtzidis657baf12011-04-28 22:57:55 +0000972
973 // C++ objects with a user-declared constructor don't need zero'ing.
974 if (CGF.getContext().getLangOptions().CPlusPlus)
975 if (const RecordType *RT = CGF.getContext()
976 .getBaseElementType(E->getType())->getAs<RecordType>()) {
977 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
978 if (RD->hasUserDeclaredConstructor())
979 return;
980 }
981
Chris Lattner1b726772010-12-02 07:07:26 +0000982 // If the type is 16-bytes or smaller, prefer individual stores over memset.
Ken Dyck5ff1a352011-04-24 17:25:32 +0000983 std::pair<CharUnits, CharUnits> TypeInfo =
984 CGF.getContext().getTypeInfoInChars(E->getType());
985 if (TypeInfo.first <= CharUnits::fromQuantity(16))
Chris Lattner1b726772010-12-02 07:07:26 +0000986 return;
987
988 // Check to see if over 3/4 of the initializer are known to be zero. If so,
989 // we prefer to emit memset + individual stores for the rest.
Ken Dyck5ff1a352011-04-24 17:25:32 +0000990 CharUnits NumNonZeroBytes = GetNumNonZeroBytesInInit(E, CGF);
991 if (NumNonZeroBytes*4 > TypeInfo.first)
Chris Lattner1b726772010-12-02 07:07:26 +0000992 return;
993
994 // Okay, it seems like a good idea to use an initial memset, emit the call.
Ken Dyck5ff1a352011-04-24 17:25:32 +0000995 llvm::Constant *SizeVal = CGF.Builder.getInt64(TypeInfo.first.getQuantity());
996 CharUnits Align = TypeInfo.second;
Chris Lattner1b726772010-12-02 07:07:26 +0000997
998 llvm::Value *Loc = Slot.getAddr();
999 const llvm::Type *BP = llvm::Type::getInt8PtrTy(CGF.getLLVMContext());
1000
1001 Loc = CGF.Builder.CreateBitCast(Loc, BP);
Ken Dyck5ff1a352011-04-24 17:25:32 +00001002 CGF.Builder.CreateMemSet(Loc, CGF.Builder.getInt8(0), SizeVal,
1003 Align.getQuantity(), false);
Chris Lattner1b726772010-12-02 07:07:26 +00001004
1005 // Tell the AggExprEmitter that the slot is known zero.
1006 Slot.setZeroed();
1007}
1008
1009
1010
1011
Mike Stumpe1129a92009-05-26 18:57:45 +00001012/// EmitAggExpr - Emit the computation of the specified expression of aggregate
1013/// type. The result is computed into DestPtr. Note that if DestPtr is null,
1014/// the value of the aggregate expression is not needed. If VolatileDest is
1015/// true, DestPtr cannot be 0.
John McCall558d2ab2010-09-15 10:14:12 +00001016///
1017/// \param IsInitializer - true if this evaluation is initializing an
1018/// object whose lifetime is already being managed.
John McCall558d2ab2010-09-15 10:14:12 +00001019void CodeGenFunction::EmitAggExpr(const Expr *E, AggValueSlot Slot,
Fariborz Jahanian474e2fe2010-09-16 00:20:07 +00001020 bool IgnoreResult) {
Chris Lattneree755f92007-08-21 04:59:27 +00001021 assert(E && hasAggregateLLVMType(E->getType()) &&
1022 "Invalid aggregate expression to emit");
Chris Lattner1b726772010-12-02 07:07:26 +00001023 assert((Slot.getAddr() != 0 || Slot.isIgnored()) &&
1024 "slot has bits but no address");
Mike Stump1eb44332009-09-09 15:08:12 +00001025
Chris Lattner1b726772010-12-02 07:07:26 +00001026 // Optimize the slot if possible.
1027 CheckAggExprForMemSetUse(Slot, E, *this);
1028
1029 AggExprEmitter(*this, Slot, IgnoreResult).Visit(const_cast<Expr*>(E));
Chris Lattneree755f92007-08-21 04:59:27 +00001030}
Daniel Dunbar7482d122008-09-09 20:49:46 +00001031
Daniel Dunbar18aba0d2010-02-05 19:38:31 +00001032LValue CodeGenFunction::EmitAggExprToLValue(const Expr *E) {
1033 assert(hasAggregateLLVMType(E->getType()) && "Invalid argument!");
Daniel Dunbar195337d2010-02-09 02:48:28 +00001034 llvm::Value *Temp = CreateMemTemp(E->getType());
Daniel Dunbar79c39282010-08-21 03:15:20 +00001035 LValue LV = MakeAddrLValue(Temp, E->getType());
John McCallf85e1932011-06-15 23:02:42 +00001036 EmitAggExpr(E, AggValueSlot::forLValue(LV, false));
Daniel Dunbar79c39282010-08-21 03:15:20 +00001037 return LV;
Daniel Dunbar18aba0d2010-02-05 19:38:31 +00001038}
1039
Daniel Dunbar7482d122008-09-09 20:49:46 +00001040void CodeGenFunction::EmitAggregateCopy(llvm::Value *DestPtr,
Mike Stump27fe2e62009-05-23 22:29:41 +00001041 llvm::Value *SrcPtr, QualType Ty,
1042 bool isVolatile) {
Daniel Dunbar7482d122008-09-09 20:49:46 +00001043 assert(!Ty->isAnyComplexType() && "Shouldn't happen for complex");
Mike Stump1eb44332009-09-09 15:08:12 +00001044
Anders Carlsson0d7c5832010-05-03 01:20:20 +00001045 if (getContext().getLangOptions().CPlusPlus) {
1046 if (const RecordType *RT = Ty->getAs<RecordType>()) {
Douglas Gregore9979482010-05-20 15:39:01 +00001047 CXXRecordDecl *Record = cast<CXXRecordDecl>(RT->getDecl());
1048 assert((Record->hasTrivialCopyConstructor() ||
Fariborz Jahanian1d49f212010-05-20 16:46:55 +00001049 Record->hasTrivialCopyAssignment()) &&
Douglas Gregore9979482010-05-20 15:39:01 +00001050 "Trying to aggregate-copy a type without a trivial copy "
1051 "constructor or assignment operator");
Douglas Gregor419aa962010-05-20 15:48:29 +00001052 // Ignore empty classes in C++.
Douglas Gregore9979482010-05-20 15:39:01 +00001053 if (Record->isEmpty())
Anders Carlsson0d7c5832010-05-03 01:20:20 +00001054 return;
1055 }
1056 }
1057
Chris Lattner83c96292009-02-28 18:31:01 +00001058 // Aggregate assignment turns into llvm.memcpy. This is almost valid per
Chris Lattnerca4fc2c2009-02-28 18:18:58 +00001059 // C99 6.5.16.1p3, which states "If the value being stored in an object is
1060 // read from another object that overlaps in anyway the storage of the first
1061 // object, then the overlap shall be exact and the two objects shall have
1062 // qualified or unqualified versions of a compatible type."
1063 //
Chris Lattner83c96292009-02-28 18:31:01 +00001064 // memcpy is not defined if the source and destination pointers are exactly
Chris Lattnerca4fc2c2009-02-28 18:18:58 +00001065 // equal, but other compilers do this optimization, and almost every memcpy
1066 // implementation handles this case safely. If there is a libc that does not
1067 // safely handle this, we can add a target hook.
Mike Stump1eb44332009-09-09 15:08:12 +00001068
Daniel Dunbar7482d122008-09-09 20:49:46 +00001069 // Get size and alignment info for this aggregate.
Ken Dyck1a8c15a2011-04-24 17:37:26 +00001070 std::pair<CharUnits, CharUnits> TypeInfo =
1071 getContext().getTypeInfoInChars(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +00001072
Daniel Dunbar7482d122008-09-09 20:49:46 +00001073 // FIXME: Handle variable sized types.
Mike Stump1eb44332009-09-09 15:08:12 +00001074
Mike Stumpfde64202009-05-23 04:13:59 +00001075 // FIXME: If we have a volatile struct, the optimizer can remove what might
1076 // appear to be `extra' memory ops:
1077 //
1078 // volatile struct { int i; } a, b;
1079 //
1080 // int main() {
1081 // a = b;
1082 // a = b;
1083 // }
1084 //
Mon P Wang3ecd7852010-04-04 03:10:52 +00001085 // we need to use a different call here. We use isVolatile to indicate when
Mike Stump49d1cd52009-05-26 22:03:21 +00001086 // either the source or the destination is volatile.
Mon P Wang3ecd7852010-04-04 03:10:52 +00001087
1088 const llvm::PointerType *DPT = cast<llvm::PointerType>(DestPtr->getType());
Chris Lattner098432c2010-07-08 00:07:45 +00001089 const llvm::Type *DBP =
John McCalld16c2cf2011-02-08 08:22:06 +00001090 llvm::Type::getInt8PtrTy(getLLVMContext(), DPT->getAddressSpace());
Chris Lattner098432c2010-07-08 00:07:45 +00001091 DestPtr = Builder.CreateBitCast(DestPtr, DBP, "tmp");
Mon P Wang3ecd7852010-04-04 03:10:52 +00001092
1093 const llvm::PointerType *SPT = cast<llvm::PointerType>(SrcPtr->getType());
Chris Lattner098432c2010-07-08 00:07:45 +00001094 const llvm::Type *SBP =
John McCalld16c2cf2011-02-08 08:22:06 +00001095 llvm::Type::getInt8PtrTy(getLLVMContext(), SPT->getAddressSpace());
Chris Lattner098432c2010-07-08 00:07:45 +00001096 SrcPtr = Builder.CreateBitCast(SrcPtr, SBP, "tmp");
Mon P Wang3ecd7852010-04-04 03:10:52 +00001097
John McCallf85e1932011-06-15 23:02:42 +00001098 // Don't do any of the memmove_collectable tests if GC isn't set.
1099 if (CGM.getLangOptions().getGCMode() == LangOptions::NonGC) {
1100 // fall through
1101 } else if (const RecordType *RecordTy = Ty->getAs<RecordType>()) {
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00001102 RecordDecl *Record = RecordTy->getDecl();
1103 if (Record->hasObjectMember()) {
Ken Dyck1a8c15a2011-04-24 17:37:26 +00001104 CharUnits size = TypeInfo.first;
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00001105 const llvm::Type *SizeTy = ConvertType(getContext().getSizeType());
Ken Dyck1a8c15a2011-04-24 17:37:26 +00001106 llvm::Value *SizeVal = llvm::ConstantInt::get(SizeTy, size.getQuantity());
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00001107 CGM.getObjCRuntime().EmitGCMemmoveCollectable(*this, DestPtr, SrcPtr,
1108 SizeVal);
1109 return;
1110 }
John McCallf85e1932011-06-15 23:02:42 +00001111 } else if (Ty->isArrayType()) {
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00001112 QualType BaseType = getContext().getBaseElementType(Ty);
1113 if (const RecordType *RecordTy = BaseType->getAs<RecordType>()) {
1114 if (RecordTy->getDecl()->hasObjectMember()) {
Ken Dyck1a8c15a2011-04-24 17:37:26 +00001115 CharUnits size = TypeInfo.first;
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00001116 const llvm::Type *SizeTy = ConvertType(getContext().getSizeType());
Ken Dyck1a8c15a2011-04-24 17:37:26 +00001117 llvm::Value *SizeVal =
1118 llvm::ConstantInt::get(SizeTy, size.getQuantity());
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00001119 CGM.getObjCRuntime().EmitGCMemmoveCollectable(*this, DestPtr, SrcPtr,
1120 SizeVal);
1121 return;
1122 }
1123 }
1124 }
1125
Benjamin Kramer9f0c7cc2010-12-30 00:13:21 +00001126 Builder.CreateMemCpy(DestPtr, SrcPtr,
Ken Dyck1a8c15a2011-04-24 17:37:26 +00001127 llvm::ConstantInt::get(IntPtrTy,
1128 TypeInfo.first.getQuantity()),
1129 TypeInfo.second.getQuantity(), isVolatile);
Daniel Dunbar7482d122008-09-09 20:49:46 +00001130}