blob: 245640bfcf0822e3ae10b40177f4013188dc00a1 [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()); }
John McCall91a57552011-07-15 05:09:51 +000088 void VisitSubstNonTypeTemplateParmExpr(SubstNonTypeTemplateParmExpr *E) {
89 return Visit(E->getReplacement());
90 }
Chris Lattner9c033562007-08-21 04:25:47 +000091
92 // l-values.
Seo Sanghyeon9b73b392007-12-14 02:04:12 +000093 void VisitDeclRefExpr(DeclRefExpr *DRE) { EmitAggLoadOfLValue(DRE); }
94 void VisitMemberExpr(MemberExpr *ME) { EmitAggLoadOfLValue(ME); }
95 void VisitUnaryDeref(UnaryOperator *E) { EmitAggLoadOfLValue(E); }
Daniel Dunbar5be028f2010-01-04 18:47:06 +000096 void VisitStringLiteral(StringLiteral *E) { EmitAggLoadOfLValue(E); }
Douglas Gregor751ec9b2011-06-17 04:59:12 +000097 void VisitCompoundLiteralExpr(CompoundLiteralExpr *E);
Seo Sanghyeon9b73b392007-12-14 02:04:12 +000098 void VisitArraySubscriptExpr(ArraySubscriptExpr *E) {
99 EmitAggLoadOfLValue(E);
100 }
Chris Lattnerf0a990c2009-04-21 23:00:09 +0000101 void VisitBlockDeclRefExpr(const BlockDeclRefExpr *E) {
Mike Stump1eb44332009-09-09 15:08:12 +0000102 EmitAggLoadOfLValue(E);
Chris Lattnerf0a990c2009-04-21 23:00:09 +0000103 }
104 void VisitPredefinedExpr(const PredefinedExpr *E) {
Mike Stump1eb44332009-09-09 15:08:12 +0000105 EmitAggLoadOfLValue(E);
Chris Lattnerf0a990c2009-04-21 23:00:09 +0000106 }
Mike Stump1eb44332009-09-09 15:08:12 +0000107
Chris Lattner9c033562007-08-21 04:25:47 +0000108 // Operators.
Anders Carlsson4d8673b2009-08-07 23:22:37 +0000109 void VisitCastExpr(CastExpr *E);
Anders Carlsson148fe672007-10-31 22:04:46 +0000110 void VisitCallExpr(const CallExpr *E);
Chris Lattnerb2d963f2007-08-31 22:54:14 +0000111 void VisitStmtExpr(const StmtExpr *E);
Chris Lattner9c033562007-08-21 04:25:47 +0000112 void VisitBinaryOperator(const BinaryOperator *BO);
Fariborz Jahanian8bfd31f2009-10-22 22:57:31 +0000113 void VisitPointerToDataMemberBinaryOperator(const BinaryOperator *BO);
Chris Lattner03d6fb92007-08-21 04:43:17 +0000114 void VisitBinAssign(const BinaryOperator *E);
Eli Friedman07fa52a2008-05-20 07:56:31 +0000115 void VisitBinComma(const BinaryOperator *E);
Chris Lattner9c033562007-08-21 04:25:47 +0000116
Chris Lattner8fdf3282008-06-24 17:04:18 +0000117 void VisitObjCMessageExpr(ObjCMessageExpr *E);
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000118 void VisitObjCIvarRefExpr(ObjCIvarRefExpr *E) {
119 EmitAggLoadOfLValue(E);
120 }
Daniel Dunbar9c3fc702008-08-27 06:57:25 +0000121 void VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *E);
Mike Stump1eb44332009-09-09 15:08:12 +0000122
John McCall56ca35d2011-02-17 10:25:35 +0000123 void VisitAbstractConditionalOperator(const AbstractConditionalOperator *CO);
Anders Carlssona294ca82009-07-08 18:33:14 +0000124 void VisitChooseExpr(const ChooseExpr *CE);
Devang Patel636c3d02007-10-26 17:44:44 +0000125 void VisitInitListExpr(InitListExpr *E);
Anders Carlsson30311fa2009-12-16 06:57:54 +0000126 void VisitImplicitValueInitExpr(ImplicitValueInitExpr *E);
Chris Lattner04421082008-04-08 04:40:51 +0000127 void VisitCXXDefaultArgExpr(CXXDefaultArgExpr *DAE) {
128 Visit(DAE->getExpr());
129 }
Anders Carlssonb58d0172009-05-30 23:23:33 +0000130 void VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E);
Anders Carlsson31ccf372009-05-03 17:47:16 +0000131 void VisitCXXConstructExpr(const CXXConstructExpr *E);
John McCall4765fa02010-12-06 08:20:24 +0000132 void VisitExprWithCleanups(ExprWithCleanups *E);
Douglas Gregored8abf12010-07-08 06:14:04 +0000133 void VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *E);
Mike Stump2710c412009-11-18 00:40:12 +0000134 void VisitCXXTypeidExpr(CXXTypeidExpr *E) { EmitAggLoadOfLValue(E); }
Douglas Gregor03e80032011-06-21 17:03:29 +0000135 void VisitMaterializeTemporaryExpr(MaterializeTemporaryExpr *E);
John McCalle996ffd2011-02-16 08:02:54 +0000136 void VisitOpaqueValueExpr(OpaqueValueExpr *E);
137
Eli Friedmanb1851242008-05-27 15:51:49 +0000138 void VisitVAArgExpr(VAArgExpr *E);
Chris Lattnerf81557c2008-04-04 18:42:16 +0000139
John McCalla07398e2011-06-16 04:16:24 +0000140 void EmitInitializationToLValue(Expr *E, LValue Address);
141 void EmitNullInitializationToLValue(LValue Address);
Chris Lattner9c033562007-08-21 04:25:47 +0000142 // case Expr::ChooseExprClass:
Mike Stump39406b12009-12-09 19:24:08 +0000143 void VisitCXXThrowExpr(const CXXThrowExpr *E) { CGF.EmitCXXThrowExpr(E); }
Chris Lattner9c033562007-08-21 04:25:47 +0000144};
145} // end anonymous namespace.
146
Chris Lattneree755f92007-08-21 04:59:27 +0000147//===----------------------------------------------------------------------===//
148// Utilities
149//===----------------------------------------------------------------------===//
Chris Lattner9c033562007-08-21 04:25:47 +0000150
Chris Lattner883f6a72007-08-11 00:04:45 +0000151/// EmitAggLoadOfLValue - Given an expression with aggregate type that
152/// represents a value lvalue, this method emits the address of the lvalue,
153/// then loads the result into DestPtr.
Chris Lattner9c033562007-08-21 04:25:47 +0000154void AggExprEmitter::EmitAggLoadOfLValue(const Expr *E) {
155 LValue LV = CGF.EmitLValue(E);
Mike Stump4ac20dd2009-05-23 20:28:01 +0000156 EmitFinalDestCopy(E, LV);
157}
158
John McCallfa037bd2010-05-22 22:13:32 +0000159/// \brief True if the given aggregate type requires special GC API calls.
160bool AggExprEmitter::TypeRequiresGCollection(QualType T) {
161 // Only record types have members that might require garbage collection.
162 const RecordType *RecordTy = T->getAs<RecordType>();
163 if (!RecordTy) return false;
164
165 // Don't mess with non-trivial C++ types.
166 RecordDecl *Record = RecordTy->getDecl();
167 if (isa<CXXRecordDecl>(Record) &&
168 (!cast<CXXRecordDecl>(Record)->hasTrivialCopyConstructor() ||
169 !cast<CXXRecordDecl>(Record)->hasTrivialDestructor()))
170 return false;
171
172 // Check whether the type has an object member.
173 return Record->hasObjectMember();
174}
175
176/// \brief Perform the final move to DestPtr if RequiresGCollection is set.
177///
178/// The idea is that you do something like this:
179/// RValue Result = EmitSomething(..., getReturnValueSlot());
180/// EmitGCMove(E, Result);
181/// If GC doesn't interfere, this will cause the result to be emitted
182/// directly into the return value slot. If GC does interfere, a final
183/// move will be performed.
184void AggExprEmitter::EmitGCMove(const Expr *E, RValue Src) {
John McCalld1a5f132010-09-16 03:13:23 +0000185 if (Dest.requiresGCollection()) {
Ken Dyck479b61c2011-04-24 17:08:00 +0000186 CharUnits size = CGF.getContext().getTypeSizeInChars(E->getType());
Chris Lattner2acc6e32011-07-18 04:24:23 +0000187 llvm::Type *SizeTy = CGF.ConvertType(CGF.getContext().getSizeType());
Ken Dyck479b61c2011-04-24 17:08:00 +0000188 llvm::Value *SizeVal = llvm::ConstantInt::get(SizeTy, size.getQuantity());
John McCall558d2ab2010-09-15 10:14:12 +0000189 CGF.CGM.getObjCRuntime().EmitGCMemmoveCollectable(CGF, Dest.getAddr(),
John McCallfa037bd2010-05-22 22:13:32 +0000190 Src.getAggregateAddr(),
Fariborz Jahanian55bcace2010-06-15 22:44:06 +0000191 SizeVal);
192 }
John McCallfa037bd2010-05-22 22:13:32 +0000193}
194
Mike Stump4ac20dd2009-05-23 20:28:01 +0000195/// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
Mike Stump49d1cd52009-05-26 22:03:21 +0000196void AggExprEmitter::EmitFinalDestCopy(const Expr *E, RValue Src, bool Ignore) {
Mike Stump4ac20dd2009-05-23 20:28:01 +0000197 assert(Src.isAggregate() && "value must be aggregate value!");
198
John McCall558d2ab2010-09-15 10:14:12 +0000199 // If Dest is ignored, then we're evaluating an aggregate expression
John McCalla8f28da2010-08-25 02:50:31 +0000200 // in a context (like an expression statement) that doesn't care
201 // about the result. C says that an lvalue-to-rvalue conversion is
202 // performed in these cases; C++ says that it is not. In either
203 // case, we don't actually need to do anything unless the value is
204 // volatile.
John McCall558d2ab2010-09-15 10:14:12 +0000205 if (Dest.isIgnored()) {
John McCalla8f28da2010-08-25 02:50:31 +0000206 if (!Src.isVolatileQualified() ||
207 CGF.CGM.getLangOptions().CPlusPlus ||
208 (IgnoreResult && Ignore))
Mike Stump9ccb1032009-05-23 22:01:27 +0000209 return;
Fariborz Jahanian8a970052010-10-22 22:05:03 +0000210
Mike Stump49d1cd52009-05-26 22:03:21 +0000211 // If the source is volatile, we must read from it; to do that, we need
212 // some place to put it.
John McCall558d2ab2010-09-15 10:14:12 +0000213 Dest = CGF.CreateAggTemp(E->getType(), "agg.tmp");
Mike Stump9ccb1032009-05-23 22:01:27 +0000214 }
Chris Lattner883f6a72007-08-11 00:04:45 +0000215
John McCalld1a5f132010-09-16 03:13:23 +0000216 if (Dest.requiresGCollection()) {
Ken Dyck479b61c2011-04-24 17:08:00 +0000217 CharUnits size = CGF.getContext().getTypeSizeInChars(E->getType());
Chris Lattner2acc6e32011-07-18 04:24:23 +0000218 llvm::Type *SizeTy = CGF.ConvertType(CGF.getContext().getSizeType());
Ken Dyck479b61c2011-04-24 17:08:00 +0000219 llvm::Value *SizeVal = llvm::ConstantInt::get(SizeTy, size.getQuantity());
Fariborz Jahanian08c32132009-08-31 19:33:16 +0000220 CGF.CGM.getObjCRuntime().EmitGCMemmoveCollectable(CGF,
John McCall558d2ab2010-09-15 10:14:12 +0000221 Dest.getAddr(),
222 Src.getAggregateAddr(),
223 SizeVal);
Fariborz Jahanian08c32132009-08-31 19:33:16 +0000224 return;
225 }
Mike Stump4ac20dd2009-05-23 20:28:01 +0000226 // If the result of the assignment is used, copy the LHS there also.
227 // FIXME: Pass VolatileDest as well. I think we also need to merge volatile
228 // from the source as well, as we can't eliminate it if either operand
229 // is volatile, unless copy has volatile for both source and destination..
John McCall558d2ab2010-09-15 10:14:12 +0000230 CGF.EmitAggregateCopy(Dest.getAddr(), Src.getAggregateAddr(), E->getType(),
231 Dest.isVolatile()|Src.isVolatileQualified());
Mike Stump4ac20dd2009-05-23 20:28:01 +0000232}
233
234/// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
Mike Stump49d1cd52009-05-26 22:03:21 +0000235void AggExprEmitter::EmitFinalDestCopy(const Expr *E, LValue Src, bool Ignore) {
Mike Stump4ac20dd2009-05-23 20:28:01 +0000236 assert(Src.isSimple() && "Can't have aggregate bitfield, vector, etc");
237
238 EmitFinalDestCopy(E, RValue::getAggregate(Src.getAddress(),
Mike Stump49d1cd52009-05-26 22:03:21 +0000239 Src.isVolatileQualified()),
240 Ignore);
Chris Lattner883f6a72007-08-11 00:04:45 +0000241}
242
Chris Lattneree755f92007-08-21 04:59:27 +0000243//===----------------------------------------------------------------------===//
244// Visitor Methods
245//===----------------------------------------------------------------------===//
246
Douglas Gregor03e80032011-06-21 17:03:29 +0000247void AggExprEmitter::VisitMaterializeTemporaryExpr(MaterializeTemporaryExpr *E){
248 Visit(E->GetTemporaryExpr());
249}
250
John McCalle996ffd2011-02-16 08:02:54 +0000251void AggExprEmitter::VisitOpaqueValueExpr(OpaqueValueExpr *e) {
John McCall56ca35d2011-02-17 10:25:35 +0000252 EmitFinalDestCopy(e, CGF.getOpaqueLValueMapping(e));
John McCalle996ffd2011-02-16 08:02:54 +0000253}
254
Douglas Gregor751ec9b2011-06-17 04:59:12 +0000255void
256AggExprEmitter::VisitCompoundLiteralExpr(CompoundLiteralExpr *E) {
Douglas Gregor673e98b2011-06-17 16:37:20 +0000257 if (E->getType().isPODType(CGF.getContext())) {
258 // For a POD type, just emit a load of the lvalue + a copy, because our
259 // compound literal might alias the destination.
260 // FIXME: This is a band-aid; the real problem appears to be in our handling
261 // of assignments, where we store directly into the LHS without checking
262 // whether anything in the RHS aliases.
263 EmitAggLoadOfLValue(E);
264 return;
265 }
266
Douglas Gregor751ec9b2011-06-17 04:59:12 +0000267 AggValueSlot Slot = EnsureSlot(E->getType());
268 CGF.EmitAggExpr(E->getInitializer(), Slot);
269}
270
271
Anders Carlsson4d8673b2009-08-07 23:22:37 +0000272void AggExprEmitter::VisitCastExpr(CastExpr *E) {
Anders Carlsson30168422009-09-29 01:23:39 +0000273 switch (E->getCastKind()) {
Anders Carlsson575b3742011-04-11 02:03:26 +0000274 case CK_Dynamic: {
Douglas Gregor69cfeb12010-05-14 21:31:02 +0000275 assert(isa<CXXDynamicCastExpr>(E) && "CK_Dynamic without a dynamic_cast?");
276 LValue LV = CGF.EmitCheckedLValue(E->getSubExpr());
277 // FIXME: Do we also need to handle property references here?
278 if (LV.isSimple())
279 CGF.EmitDynamicCast(LV.getAddress(), cast<CXXDynamicCastExpr>(E));
280 else
281 CGF.CGM.ErrorUnsupported(E, "non-simple lvalue dynamic_cast");
282
John McCall558d2ab2010-09-15 10:14:12 +0000283 if (!Dest.isIgnored())
284 CGF.CGM.ErrorUnsupported(E, "lvalue dynamic_cast with a destination");
Douglas Gregor69cfeb12010-05-14 21:31:02 +0000285 break;
286 }
287
John McCall2de56d12010-08-25 11:45:40 +0000288 case CK_ToUnion: {
John McCall65912712011-04-12 22:02:02 +0000289 if (Dest.isIgnored()) break;
290
Anders Carlsson4d8673b2009-08-07 23:22:37 +0000291 // GCC union extension
Daniel Dunbar79c39282010-08-21 03:15:20 +0000292 QualType Ty = E->getSubExpr()->getType();
293 QualType PtrTy = CGF.getContext().getPointerType(Ty);
John McCall558d2ab2010-09-15 10:14:12 +0000294 llvm::Value *CastPtr = Builder.CreateBitCast(Dest.getAddr(),
Eli Friedman34ebf4d2009-06-03 20:45:06 +0000295 CGF.ConvertType(PtrTy));
John McCalla07398e2011-06-16 04:16:24 +0000296 EmitInitializationToLValue(E->getSubExpr(),
297 CGF.MakeAddrLValue(CastPtr, Ty));
Anders Carlsson30168422009-09-29 01:23:39 +0000298 break;
Nuno Lopes7e916272009-01-15 20:14:33 +0000299 }
Mike Stump1eb44332009-09-09 15:08:12 +0000300
John McCall2de56d12010-08-25 11:45:40 +0000301 case CK_DerivedToBase:
302 case CK_BaseToDerived:
303 case CK_UncheckedDerivedToBase: {
Douglas Gregor2d6b0e92010-05-22 05:17:18 +0000304 assert(0 && "cannot perform hierarchy conversion in EmitAggExpr: "
305 "should have been unpacked before we got here");
306 break;
307 }
308
John McCallf6a16482010-12-04 03:47:34 +0000309 case CK_GetObjCProperty: {
310 LValue LV = CGF.EmitLValue(E->getSubExpr());
311 assert(LV.isPropertyRef());
312 RValue RV = CGF.EmitLoadOfPropertyRefLValue(LV, getReturnValueSlot());
313 EmitGCMove(E, RV);
314 break;
315 }
316
317 case CK_LValueToRValue: // hope for downstream optimization
John McCall2de56d12010-08-25 11:45:40 +0000318 case CK_NoOp:
319 case CK_UserDefinedConversion:
320 case CK_ConstructorConversion:
Anders Carlsson30168422009-09-29 01:23:39 +0000321 assert(CGF.getContext().hasSameUnqualifiedType(E->getSubExpr()->getType(),
322 E->getType()) &&
323 "Implicit cast types must be compatible");
324 Visit(E->getSubExpr());
325 break;
John McCall0ae287a2010-12-01 04:43:34 +0000326
John McCall2de56d12010-08-25 11:45:40 +0000327 case CK_LValueBitCast:
John McCall0ae287a2010-12-01 04:43:34 +0000328 llvm_unreachable("should not be emitting lvalue bitcast as rvalue");
Douglas Gregore39a3892010-07-13 23:17:26 +0000329 break;
John McCall1de4d4e2011-04-07 08:22:57 +0000330
John McCall0ae287a2010-12-01 04:43:34 +0000331 case CK_Dependent:
332 case CK_BitCast:
333 case CK_ArrayToPointerDecay:
334 case CK_FunctionToPointerDecay:
335 case CK_NullToPointer:
336 case CK_NullToMemberPointer:
337 case CK_BaseToDerivedMemberPointer:
338 case CK_DerivedToBaseMemberPointer:
339 case CK_MemberPointerToBoolean:
340 case CK_IntegralToPointer:
341 case CK_PointerToIntegral:
342 case CK_PointerToBoolean:
343 case CK_ToVoid:
344 case CK_VectorSplat:
345 case CK_IntegralCast:
346 case CK_IntegralToBoolean:
347 case CK_IntegralToFloating:
348 case CK_FloatingToIntegral:
349 case CK_FloatingToBoolean:
350 case CK_FloatingCast:
351 case CK_AnyPointerToObjCPointerCast:
352 case CK_AnyPointerToBlockPointerCast:
353 case CK_ObjCObjectLValueCast:
354 case CK_FloatingRealToComplex:
355 case CK_FloatingComplexToReal:
356 case CK_FloatingComplexToBoolean:
357 case CK_FloatingComplexCast:
358 case CK_FloatingComplexToIntegralComplex:
359 case CK_IntegralRealToComplex:
360 case CK_IntegralComplexToReal:
361 case CK_IntegralComplexToBoolean:
362 case CK_IntegralComplexCast:
363 case CK_IntegralComplexToFloatingComplex:
John McCallf85e1932011-06-15 23:02:42 +0000364 case CK_ObjCProduceObject:
365 case CK_ObjCConsumeObject:
John McCall7e5e5f42011-07-07 06:58:02 +0000366 case CK_ObjCReclaimReturnedObject:
John McCall0ae287a2010-12-01 04:43:34 +0000367 llvm_unreachable("cast kind invalid for aggregate types");
Anders Carlsson30168422009-09-29 01:23:39 +0000368 }
Anders Carlssone4707ff2008-01-14 06:28:57 +0000369}
370
Chris Lattner96196622008-07-26 22:37:01 +0000371void AggExprEmitter::VisitCallExpr(const CallExpr *E) {
Anders Carlssone70e8f72009-05-27 16:45:02 +0000372 if (E->getCallReturnType()->isReferenceType()) {
373 EmitAggLoadOfLValue(E);
374 return;
375 }
Mike Stump1eb44332009-09-09 15:08:12 +0000376
John McCallfa037bd2010-05-22 22:13:32 +0000377 RValue RV = CGF.EmitCallExpr(E, getReturnValueSlot());
378 EmitGCMove(E, RV);
Anders Carlsson148fe672007-10-31 22:04:46 +0000379}
Chris Lattner96196622008-07-26 22:37:01 +0000380
381void AggExprEmitter::VisitObjCMessageExpr(ObjCMessageExpr *E) {
John McCallfa037bd2010-05-22 22:13:32 +0000382 RValue RV = CGF.EmitObjCMessageExpr(E, getReturnValueSlot());
383 EmitGCMove(E, RV);
Chris Lattner8fdf3282008-06-24 17:04:18 +0000384}
Anders Carlsson148fe672007-10-31 22:04:46 +0000385
Daniel Dunbar9c3fc702008-08-27 06:57:25 +0000386void AggExprEmitter::VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *E) {
John McCallf6a16482010-12-04 03:47:34 +0000387 llvm_unreachable("direct property access not surrounded by "
388 "lvalue-to-rvalue cast");
Daniel Dunbar9c3fc702008-08-27 06:57:25 +0000389}
390
Chris Lattner96196622008-07-26 22:37:01 +0000391void AggExprEmitter::VisitBinComma(const BinaryOperator *E) {
John McCall2a416372010-12-05 02:00:02 +0000392 CGF.EmitIgnoredExpr(E->getLHS());
John McCall558d2ab2010-09-15 10:14:12 +0000393 Visit(E->getRHS());
Eli Friedman07fa52a2008-05-20 07:56:31 +0000394}
395
Chris Lattnerb2d963f2007-08-31 22:54:14 +0000396void AggExprEmitter::VisitStmtExpr(const StmtExpr *E) {
John McCall150b4622011-01-26 04:00:11 +0000397 CodeGenFunction::StmtExprEvaluation eval(CGF);
John McCall558d2ab2010-09-15 10:14:12 +0000398 CGF.EmitCompoundStmt(*E->getSubStmt(), true, Dest);
Chris Lattnerb2d963f2007-08-31 22:54:14 +0000399}
400
Chris Lattner9c033562007-08-21 04:25:47 +0000401void AggExprEmitter::VisitBinaryOperator(const BinaryOperator *E) {
John McCall2de56d12010-08-25 11:45:40 +0000402 if (E->getOpcode() == BO_PtrMemD || E->getOpcode() == BO_PtrMemI)
Fariborz Jahanian8bfd31f2009-10-22 22:57:31 +0000403 VisitPointerToDataMemberBinaryOperator(E);
404 else
405 CGF.ErrorUnsupported(E, "aggregate binary expression");
406}
407
408void AggExprEmitter::VisitPointerToDataMemberBinaryOperator(
409 const BinaryOperator *E) {
410 LValue LV = CGF.EmitPointerToDataMemberBinaryExpr(E);
411 EmitFinalDestCopy(E, LV);
Chris Lattneree755f92007-08-21 04:59:27 +0000412}
413
Chris Lattner03d6fb92007-08-21 04:43:17 +0000414void AggExprEmitter::VisitBinAssign(const BinaryOperator *E) {
Eli Friedmanff6e2b72008-02-11 01:09:17 +0000415 // For an assignment to work, the value on the right has
416 // to be compatible with the value on the left.
Eli Friedman2dce5f82009-05-28 23:04:00 +0000417 assert(CGF.getContext().hasSameUnqualifiedType(E->getLHS()->getType(),
418 E->getRHS()->getType())
Eli Friedmanff6e2b72008-02-11 01:09:17 +0000419 && "Invalid assignment");
John McCallcd940a12010-12-06 06:10:02 +0000420
Fariborz Jahanian2c7168c2011-04-29 21:53:21 +0000421 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E->getLHS()))
Fariborz Jahanian73a6f8e2011-04-29 22:11:28 +0000422 if (const VarDecl *VD = dyn_cast<VarDecl>(DRE->getDecl()))
Fariborz Jahanian2c7168c2011-04-29 21:53:21 +0000423 if (VD->hasAttr<BlocksAttr>() &&
424 E->getRHS()->HasSideEffects(CGF.getContext())) {
425 // When __block variable on LHS, the RHS must be evaluated first
426 // as it may change the 'forwarding' field via call to Block_copy.
427 LValue RHS = CGF.EmitLValue(E->getRHS());
428 LValue LHS = CGF.EmitLValue(E->getLHS());
429 bool GCollection = false;
430 if (CGF.getContext().getLangOptions().getGCMode())
431 GCollection = TypeRequiresGCollection(E->getLHS()->getType());
Fariborz Jahanian2c7168c2011-04-29 21:53:21 +0000432 Dest = AggValueSlot::forLValue(LHS, true, GCollection);
433 EmitFinalDestCopy(E, RHS, true);
434 return;
435 }
Fariborz Jahanian2c7168c2011-04-29 21:53:21 +0000436
Chris Lattner9c033562007-08-21 04:25:47 +0000437 LValue LHS = CGF.EmitLValue(E->getLHS());
Chris Lattner883f6a72007-08-11 00:04:45 +0000438
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000439 // We have to special case property setters, otherwise we must have
440 // a simple lvalue (no aggregates inside vectors, bitfields).
441 if (LHS.isPropertyRef()) {
Fariborz Jahanian68af13f2011-03-30 16:11:20 +0000442 const ObjCPropertyRefExpr *RE = LHS.getPropertyRefExpr();
443 QualType ArgType = RE->getSetterArgType();
444 RValue Src;
445 if (ArgType->isReferenceType())
446 Src = CGF.EmitReferenceBindingToExpr(E->getRHS(), 0);
447 else {
448 AggValueSlot Slot = EnsureSlot(E->getRHS()->getType());
449 CGF.EmitAggExpr(E->getRHS(), Slot);
450 Src = Slot.asRValue();
451 }
452 CGF.EmitStoreThroughPropertyRefLValue(Src, LHS);
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000453 } else {
Fariborz Jahanian474e2fe2010-09-16 00:20:07 +0000454 bool GCollection = false;
John McCallfa037bd2010-05-22 22:13:32 +0000455 if (CGF.getContext().getLangOptions().getGCMode())
Fariborz Jahanian474e2fe2010-09-16 00:20:07 +0000456 GCollection = TypeRequiresGCollection(E->getLHS()->getType());
John McCallfa037bd2010-05-22 22:13:32 +0000457
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000458 // Codegen the RHS so that it stores directly into the LHS.
Fariborz Jahanian474e2fe2010-09-16 00:20:07 +0000459 AggValueSlot LHSSlot = AggValueSlot::forLValue(LHS, true,
460 GCollection);
461 CGF.EmitAggExpr(E->getRHS(), LHSSlot, false);
Mike Stump49d1cd52009-05-26 22:03:21 +0000462 EmitFinalDestCopy(E, LHS, true);
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000463 }
Chris Lattner883f6a72007-08-11 00:04:45 +0000464}
465
John McCall56ca35d2011-02-17 10:25:35 +0000466void AggExprEmitter::
467VisitAbstractConditionalOperator(const AbstractConditionalOperator *E) {
Daniel Dunbar9615ecb2008-11-13 01:38:36 +0000468 llvm::BasicBlock *LHSBlock = CGF.createBasicBlock("cond.true");
469 llvm::BasicBlock *RHSBlock = CGF.createBasicBlock("cond.false");
470 llvm::BasicBlock *ContBlock = CGF.createBasicBlock("cond.end");
Mike Stump1eb44332009-09-09 15:08:12 +0000471
John McCall56ca35d2011-02-17 10:25:35 +0000472 // Bind the common expression if necessary.
473 CodeGenFunction::OpaqueValueMapping binding(CGF, E);
474
John McCall150b4622011-01-26 04:00:11 +0000475 CodeGenFunction::ConditionalEvaluation eval(CGF);
Eli Friedman8e274bd2009-12-25 06:17:05 +0000476 CGF.EmitBranchOnBoolExpr(E->getCond(), LHSBlock, RHSBlock);
Mike Stump1eb44332009-09-09 15:08:12 +0000477
John McCall74fb0ed2010-11-17 00:07:33 +0000478 // Save whether the destination's lifetime is externally managed.
479 bool DestLifetimeManaged = Dest.isLifetimeExternallyManaged();
Chris Lattner883f6a72007-08-11 00:04:45 +0000480
John McCall150b4622011-01-26 04:00:11 +0000481 eval.begin(CGF);
482 CGF.EmitBlock(LHSBlock);
John McCall56ca35d2011-02-17 10:25:35 +0000483 Visit(E->getTrueExpr());
John McCall150b4622011-01-26 04:00:11 +0000484 eval.end(CGF);
Mike Stump1eb44332009-09-09 15:08:12 +0000485
John McCall150b4622011-01-26 04:00:11 +0000486 assert(CGF.HaveInsertPoint() && "expression evaluation ended with no IP!");
487 CGF.Builder.CreateBr(ContBlock);
Mike Stump1eb44332009-09-09 15:08:12 +0000488
John McCall74fb0ed2010-11-17 00:07:33 +0000489 // If the result of an agg expression is unused, then the emission
490 // of the LHS might need to create a destination slot. That's fine
491 // with us, and we can safely emit the RHS into the same slot, but
492 // we shouldn't claim that its lifetime is externally managed.
493 Dest.setLifetimeExternallyManaged(DestLifetimeManaged);
494
John McCall150b4622011-01-26 04:00:11 +0000495 eval.begin(CGF);
496 CGF.EmitBlock(RHSBlock);
John McCall56ca35d2011-02-17 10:25:35 +0000497 Visit(E->getFalseExpr());
John McCall150b4622011-01-26 04:00:11 +0000498 eval.end(CGF);
Mike Stump1eb44332009-09-09 15:08:12 +0000499
Chris Lattner9c033562007-08-21 04:25:47 +0000500 CGF.EmitBlock(ContBlock);
Chris Lattner883f6a72007-08-11 00:04:45 +0000501}
Chris Lattneree755f92007-08-21 04:59:27 +0000502
Anders Carlssona294ca82009-07-08 18:33:14 +0000503void AggExprEmitter::VisitChooseExpr(const ChooseExpr *CE) {
504 Visit(CE->getChosenSubExpr(CGF.getContext()));
505}
506
Eli Friedmanb1851242008-05-27 15:51:49 +0000507void AggExprEmitter::VisitVAArgExpr(VAArgExpr *VE) {
Daniel Dunbar07855702009-02-11 22:25:55 +0000508 llvm::Value *ArgValue = CGF.EmitVAListRef(VE->getSubExpr());
Anders Carlssonddf7cac2008-11-04 05:30:00 +0000509 llvm::Value *ArgPtr = CGF.EmitVAArg(ArgValue, VE->getType());
510
Sebastian Redl0262f022009-01-09 21:09:38 +0000511 if (!ArgPtr) {
Anders Carlssonddf7cac2008-11-04 05:30:00 +0000512 CGF.ErrorUnsupported(VE, "aggregate va_arg expression");
Sebastian Redl0262f022009-01-09 21:09:38 +0000513 return;
514 }
515
Daniel Dunbar79c39282010-08-21 03:15:20 +0000516 EmitFinalDestCopy(VE, CGF.MakeAddrLValue(ArgPtr, VE->getType()));
Eli Friedmanb1851242008-05-27 15:51:49 +0000517}
518
Anders Carlssonb58d0172009-05-30 23:23:33 +0000519void AggExprEmitter::VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E) {
John McCall558d2ab2010-09-15 10:14:12 +0000520 // Ensure that we have a slot, but if we already do, remember
521 // whether its lifetime was externally managed.
522 bool WasManaged = Dest.isLifetimeExternallyManaged();
523 Dest = EnsureSlot(E->getType());
524 Dest.setLifetimeExternallyManaged();
Mike Stump1eb44332009-09-09 15:08:12 +0000525
John McCall558d2ab2010-09-15 10:14:12 +0000526 Visit(E->getSubExpr());
Anders Carlssonb58d0172009-05-30 23:23:33 +0000527
John McCall558d2ab2010-09-15 10:14:12 +0000528 // Set up the temporary's destructor if its lifetime wasn't already
529 // being managed.
530 if (!WasManaged)
531 CGF.EmitCXXTemporary(E->getTemporary(), Dest.getAddr());
Anders Carlssonb58d0172009-05-30 23:23:33 +0000532}
533
Anders Carlssonb14095a2009-04-17 00:06:03 +0000534void
Anders Carlsson31ccf372009-05-03 17:47:16 +0000535AggExprEmitter::VisitCXXConstructExpr(const CXXConstructExpr *E) {
John McCall558d2ab2010-09-15 10:14:12 +0000536 AggValueSlot Slot = EnsureSlot(E->getType());
537 CGF.EmitCXXConstructExpr(E, Slot);
Anders Carlsson7f6ad152009-05-19 04:48:36 +0000538}
539
John McCall4765fa02010-12-06 08:20:24 +0000540void AggExprEmitter::VisitExprWithCleanups(ExprWithCleanups *E) {
541 CGF.EmitExprWithCleanups(E, Dest);
Anders Carlssonb14095a2009-04-17 00:06:03 +0000542}
543
Douglas Gregored8abf12010-07-08 06:14:04 +0000544void AggExprEmitter::VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *E) {
John McCall558d2ab2010-09-15 10:14:12 +0000545 QualType T = E->getType();
546 AggValueSlot Slot = EnsureSlot(T);
John McCalla07398e2011-06-16 04:16:24 +0000547 EmitNullInitializationToLValue(CGF.MakeAddrLValue(Slot.getAddr(), T));
Anders Carlsson30311fa2009-12-16 06:57:54 +0000548}
549
550void AggExprEmitter::VisitImplicitValueInitExpr(ImplicitValueInitExpr *E) {
John McCall558d2ab2010-09-15 10:14:12 +0000551 QualType T = E->getType();
552 AggValueSlot Slot = EnsureSlot(T);
John McCalla07398e2011-06-16 04:16:24 +0000553 EmitNullInitializationToLValue(CGF.MakeAddrLValue(Slot.getAddr(), T));
Nuno Lopes329763b2009-10-18 15:18:11 +0000554}
555
Chris Lattner1b726772010-12-02 07:07:26 +0000556/// isSimpleZero - If emitting this value will obviously just cause a store of
557/// zero to memory, return true. This can return false if uncertain, so it just
558/// handles simple cases.
559static bool isSimpleZero(const Expr *E, CodeGenFunction &CGF) {
Peter Collingbournef111d932011-04-15 00:35:48 +0000560 E = E->IgnoreParens();
561
Chris Lattner1b726772010-12-02 07:07:26 +0000562 // 0
563 if (const IntegerLiteral *IL = dyn_cast<IntegerLiteral>(E))
564 return IL->getValue() == 0;
565 // +0.0
566 if (const FloatingLiteral *FL = dyn_cast<FloatingLiteral>(E))
567 return FL->getValue().isPosZero();
568 // int()
569 if ((isa<ImplicitValueInitExpr>(E) || isa<CXXScalarValueInitExpr>(E)) &&
570 CGF.getTypes().isZeroInitializable(E->getType()))
571 return true;
572 // (int*)0 - Null pointer expressions.
573 if (const CastExpr *ICE = dyn_cast<CastExpr>(E))
574 return ICE->getCastKind() == CK_NullToPointer;
575 // '\0'
576 if (const CharacterLiteral *CL = dyn_cast<CharacterLiteral>(E))
577 return CL->getValue() == 0;
578
579 // Otherwise, hard case: conservatively return false.
580 return false;
581}
582
583
Anders Carlsson78e83f82010-02-03 17:33:16 +0000584void
John McCalla07398e2011-06-16 04:16:24 +0000585AggExprEmitter::EmitInitializationToLValue(Expr* E, LValue LV) {
586 QualType type = LV.getType();
Mike Stump7f79f9b2009-05-29 15:46:01 +0000587 // FIXME: Ignore result?
Chris Lattnerf81557c2008-04-04 18:42:16 +0000588 // FIXME: Are initializers affected by volatile?
Chris Lattner1b726772010-12-02 07:07:26 +0000589 if (Dest.isZeroed() && isSimpleZero(E, CGF)) {
590 // Storing "i32 0" to a zero'd memory location is a noop.
591 } else if (isa<ImplicitValueInitExpr>(E)) {
John McCalla07398e2011-06-16 04:16:24 +0000592 EmitNullInitializationToLValue(LV);
593 } else if (type->isReferenceType()) {
Anders Carlsson32f36ba2010-06-26 16:35:32 +0000594 RValue RV = CGF.EmitReferenceBindingToExpr(E, /*InitializedDecl=*/0);
John McCall545d9962011-06-25 02:11:03 +0000595 CGF.EmitStoreThroughLValue(RV, LV);
John McCalla07398e2011-06-16 04:16:24 +0000596 } else if (type->isAnyComplexType()) {
Douglas Gregor3498bdb2009-01-29 17:44:32 +0000597 CGF.EmitComplexExprIntoAddr(E, LV.getAddress(), false);
John McCalla07398e2011-06-16 04:16:24 +0000598 } else if (CGF.hasAggregateLLVMType(type)) {
599 CGF.EmitAggExpr(E, AggValueSlot::forLValue(LV, true, false,
600 Dest.isZeroed()));
John McCallf85e1932011-06-15 23:02:42 +0000601 } else if (LV.isSimple()) {
John McCalla07398e2011-06-16 04:16:24 +0000602 CGF.EmitScalarInit(E, /*D=*/0, LV, /*Captured=*/false);
Eli Friedmanc8ba9612008-05-12 15:06:05 +0000603 } else {
John McCall545d9962011-06-25 02:11:03 +0000604 CGF.EmitStoreThroughLValue(RValue::get(CGF.EmitScalarExpr(E)), LV);
Chris Lattnerf81557c2008-04-04 18:42:16 +0000605 }
Chris Lattnerf81557c2008-04-04 18:42:16 +0000606}
607
John McCalla07398e2011-06-16 04:16:24 +0000608void AggExprEmitter::EmitNullInitializationToLValue(LValue lv) {
609 QualType type = lv.getType();
610
Chris Lattner1b726772010-12-02 07:07:26 +0000611 // If the destination slot is already zeroed out before the aggregate is
612 // copied into it, we don't have to emit any zeros here.
John McCalla07398e2011-06-16 04:16:24 +0000613 if (Dest.isZeroed() && CGF.getTypes().isZeroInitializable(type))
Chris Lattner1b726772010-12-02 07:07:26 +0000614 return;
615
John McCalla07398e2011-06-16 04:16:24 +0000616 if (!CGF.hasAggregateLLVMType(type)) {
Chris Lattnerf81557c2008-04-04 18:42:16 +0000617 // For non-aggregates, we can store zero
John McCalla07398e2011-06-16 04:16:24 +0000618 llvm::Value *null = llvm::Constant::getNullValue(CGF.ConvertType(type));
John McCall545d9962011-06-25 02:11:03 +0000619 CGF.EmitStoreThroughLValue(RValue::get(null), lv);
Lauro Ramos Venancio145cd892008-02-19 19:27:31 +0000620 } else {
Chris Lattnerf81557c2008-04-04 18:42:16 +0000621 // There's a potential optimization opportunity in combining
622 // memsets; that would be easy for arrays, but relatively
623 // difficult for structures with the current code.
John McCalla07398e2011-06-16 04:16:24 +0000624 CGF.EmitNullInitialization(lv.getAddress(), lv.getType());
Chris Lattnerf81557c2008-04-04 18:42:16 +0000625 }
626}
627
Chris Lattnerf81557c2008-04-04 18:42:16 +0000628void AggExprEmitter::VisitInitListExpr(InitListExpr *E) {
Eli Friedmana385b3c2008-12-02 01:17:45 +0000629#if 0
Eli Friedman13a5be12009-12-04 01:30:56 +0000630 // FIXME: Assess perf here? Figure out what cases are worth optimizing here
631 // (Length of globals? Chunks of zeroed-out space?).
Eli Friedmana385b3c2008-12-02 01:17:45 +0000632 //
Mike Stumpf5408fe2009-05-16 07:57:57 +0000633 // If we can, prefer a copy from a global; this is a lot less code for long
634 // globals, and it's easier for the current optimizers to analyze.
Eli Friedman13a5be12009-12-04 01:30:56 +0000635 if (llvm::Constant* C = CGF.CGM.EmitConstantExpr(E, E->getType(), &CGF)) {
Eli Friedman994ffef2008-11-30 02:11:09 +0000636 llvm::GlobalVariable* GV =
Eli Friedman13a5be12009-12-04 01:30:56 +0000637 new llvm::GlobalVariable(CGF.CGM.getModule(), C->getType(), true,
638 llvm::GlobalValue::InternalLinkage, C, "");
Daniel Dunbar79c39282010-08-21 03:15:20 +0000639 EmitFinalDestCopy(E, CGF.MakeAddrLValue(GV, E->getType()));
Eli Friedman994ffef2008-11-30 02:11:09 +0000640 return;
641 }
Eli Friedmana385b3c2008-12-02 01:17:45 +0000642#endif
Chris Lattnerd0db03a2010-09-06 00:11:41 +0000643 if (E->hadArrayRangeDesignator())
Douglas Gregora9c87802009-01-29 19:42:23 +0000644 CGF.ErrorUnsupported(E, "GNU array range designator extension");
Douglas Gregora9c87802009-01-29 19:42:23 +0000645
John McCall558d2ab2010-09-15 10:14:12 +0000646 llvm::Value *DestPtr = Dest.getAddr();
647
Chris Lattnerf81557c2008-04-04 18:42:16 +0000648 // Handle initialization of an array.
649 if (E->getType()->isArrayType()) {
Chris Lattner2acc6e32011-07-18 04:24:23 +0000650 llvm::PointerType *APType =
Chris Lattnerf81557c2008-04-04 18:42:16 +0000651 cast<llvm::PointerType>(DestPtr->getType());
Chris Lattner2acc6e32011-07-18 04:24:23 +0000652 llvm::ArrayType *AType =
Chris Lattnerf81557c2008-04-04 18:42:16 +0000653 cast<llvm::ArrayType>(APType->getElementType());
Mike Stump1eb44332009-09-09 15:08:12 +0000654
Chris Lattnerf81557c2008-04-04 18:42:16 +0000655 uint64_t NumInitElements = E->getNumInits();
Eli Friedman922696f2008-05-19 17:51:16 +0000656
Chris Lattner96196622008-07-26 22:37:01 +0000657 if (E->getNumInits() > 0) {
658 QualType T1 = E->getType();
659 QualType T2 = E->getInit(0)->getType();
Eli Friedman2dce5f82009-05-28 23:04:00 +0000660 if (CGF.getContext().hasSameUnqualifiedType(T1, T2)) {
Chris Lattner96196622008-07-26 22:37:01 +0000661 EmitAggLoadOfLValue(E->getInit(0));
662 return;
663 }
Eli Friedman922696f2008-05-19 17:51:16 +0000664 }
665
Chris Lattnerf81557c2008-04-04 18:42:16 +0000666 uint64_t NumArrayElements = AType->getNumElements();
John McCallbdc4d802011-07-09 01:37:26 +0000667 assert(NumInitElements <= NumArrayElements);
Mike Stump1eb44332009-09-09 15:08:12 +0000668
John McCallbdc4d802011-07-09 01:37:26 +0000669 QualType elementType = E->getType().getCanonicalType();
670 elementType = CGF.getContext().getQualifiedType(
671 cast<ArrayType>(elementType)->getElementType(),
672 elementType.getQualifiers() + Dest.getQualifiers());
Argyrios Kyrtzidis3b4d4902011-04-28 18:53:58 +0000673
John McCallbdc4d802011-07-09 01:37:26 +0000674 // DestPtr is an array*. Construct an elementType* by drilling
675 // down a level.
676 llvm::Value *zero = llvm::ConstantInt::get(CGF.SizeTy, 0);
677 llvm::Value *indices[] = { zero, zero };
678 llvm::Value *begin =
Jay Foad0f6ac7c2011-07-22 08:16:57 +0000679 Builder.CreateInBoundsGEP(DestPtr, indices, "arrayinit.begin");
Chris Lattner1b726772010-12-02 07:07:26 +0000680
John McCallbdc4d802011-07-09 01:37:26 +0000681 // Exception safety requires us to destroy all the
682 // already-constructed members if an initializer throws.
683 // For that, we'll need an EH cleanup.
684 QualType::DestructionKind dtorKind = elementType.isDestructedType();
685 llvm::AllocaInst *endOfInit = 0;
686 EHScopeStack::stable_iterator cleanup;
687 if (CGF.needsEHCleanup(dtorKind)) {
688 // In principle we could tell the cleanup where we are more
689 // directly, but the control flow can get so varied here that it
690 // would actually be quite complex. Therefore we go through an
691 // alloca.
692 endOfInit = CGF.CreateTempAlloca(begin->getType(),
693 "arrayinit.endOfInit");
694 Builder.CreateStore(begin, endOfInit);
John McCall2673c682011-07-11 08:38:19 +0000695 CGF.pushIrregularPartialArrayCleanup(begin, endOfInit, elementType,
696 CGF.getDestroyer(dtorKind));
John McCallbdc4d802011-07-09 01:37:26 +0000697 cleanup = CGF.EHStack.stable_begin();
698
699 // Otherwise, remember that we didn't need a cleanup.
700 } else {
701 dtorKind = QualType::DK_none;
Lauro Ramos Venancio145cd892008-02-19 19:27:31 +0000702 }
John McCallbdc4d802011-07-09 01:37:26 +0000703
704 llvm::Value *one = llvm::ConstantInt::get(CGF.SizeTy, 1);
705
706 // The 'current element to initialize'. The invariants on this
707 // variable are complicated. Essentially, after each iteration of
708 // the loop, it points to the last initialized element, except
709 // that it points to the beginning of the array before any
710 // elements have been initialized.
711 llvm::Value *element = begin;
712
713 // Emit the explicit initializers.
714 for (uint64_t i = 0; i != NumInitElements; ++i) {
715 // Advance to the next element.
John McCall2673c682011-07-11 08:38:19 +0000716 if (i > 0) {
John McCallbdc4d802011-07-09 01:37:26 +0000717 element = Builder.CreateInBoundsGEP(element, one, "arrayinit.element");
718
John McCall2673c682011-07-11 08:38:19 +0000719 // Tell the cleanup that it needs to destroy up to this
720 // element. TODO: some of these stores can be trivially
721 // observed to be unnecessary.
722 if (endOfInit) Builder.CreateStore(element, endOfInit);
723 }
724
John McCallbdc4d802011-07-09 01:37:26 +0000725 LValue elementLV = CGF.MakeAddrLValue(element, elementType);
726 EmitInitializationToLValue(E->getInit(i), elementLV);
John McCallbdc4d802011-07-09 01:37:26 +0000727 }
728
729 // Check whether there's a non-trivial array-fill expression.
730 // Note that this will be a CXXConstructExpr even if the element
731 // type is an array (or array of array, etc.) of class type.
732 Expr *filler = E->getArrayFiller();
733 bool hasTrivialFiller = true;
734 if (CXXConstructExpr *cons = dyn_cast_or_null<CXXConstructExpr>(filler)) {
735 assert(cons->getConstructor()->isDefaultConstructor());
736 hasTrivialFiller = cons->getConstructor()->isTrivial();
737 }
738
739 // Any remaining elements need to be zero-initialized, possibly
740 // using the filler expression. We can skip this if the we're
741 // emitting to zeroed memory.
742 if (NumInitElements != NumArrayElements &&
743 !(Dest.isZeroed() && hasTrivialFiller &&
744 CGF.getTypes().isZeroInitializable(elementType))) {
745
746 // Use an actual loop. This is basically
747 // do { *array++ = filler; } while (array != end);
748
749 // Advance to the start of the rest of the array.
John McCall2673c682011-07-11 08:38:19 +0000750 if (NumInitElements) {
John McCallbdc4d802011-07-09 01:37:26 +0000751 element = Builder.CreateInBoundsGEP(element, one, "arrayinit.start");
John McCall2673c682011-07-11 08:38:19 +0000752 if (endOfInit) Builder.CreateStore(element, endOfInit);
753 }
John McCallbdc4d802011-07-09 01:37:26 +0000754
755 // Compute the end of the array.
756 llvm::Value *end = Builder.CreateInBoundsGEP(begin,
757 llvm::ConstantInt::get(CGF.SizeTy, NumArrayElements),
758 "arrayinit.end");
759
760 llvm::BasicBlock *entryBB = Builder.GetInsertBlock();
761 llvm::BasicBlock *bodyBB = CGF.createBasicBlock("arrayinit.body");
762
763 // Jump into the body.
764 CGF.EmitBlock(bodyBB);
765 llvm::PHINode *currentElement =
766 Builder.CreatePHI(element->getType(), 2, "arrayinit.cur");
767 currentElement->addIncoming(element, entryBB);
768
769 // Emit the actual filler expression.
770 LValue elementLV = CGF.MakeAddrLValue(currentElement, elementType);
771 if (filler)
772 EmitInitializationToLValue(filler, elementLV);
773 else
774 EmitNullInitializationToLValue(elementLV);
775
John McCallbdc4d802011-07-09 01:37:26 +0000776 // Move on to the next element.
777 llvm::Value *nextElement =
778 Builder.CreateInBoundsGEP(currentElement, one, "arrayinit.next");
779
John McCall2673c682011-07-11 08:38:19 +0000780 // Tell the EH cleanup that we finished with the last element.
781 if (endOfInit) Builder.CreateStore(nextElement, endOfInit);
782
John McCallbdc4d802011-07-09 01:37:26 +0000783 // Leave the loop if we're done.
784 llvm::Value *done = Builder.CreateICmpEQ(nextElement, end,
785 "arrayinit.done");
786 llvm::BasicBlock *endBB = CGF.createBasicBlock("arrayinit.end");
787 Builder.CreateCondBr(done, endBB, bodyBB);
788 currentElement->addIncoming(nextElement, Builder.GetInsertBlock());
789
790 CGF.EmitBlock(endBB);
791 }
792
793 // Leave the partial-array cleanup if we entered one.
794 if (dtorKind) CGF.DeactivateCleanupBlock(cleanup);
795
Chris Lattnerf81557c2008-04-04 18:42:16 +0000796 return;
797 }
Mike Stump1eb44332009-09-09 15:08:12 +0000798
Chris Lattnerf81557c2008-04-04 18:42:16 +0000799 assert(E->getType()->isRecordType() && "Only support structs/unions here!");
Mike Stump1eb44332009-09-09 15:08:12 +0000800
Chris Lattnerf81557c2008-04-04 18:42:16 +0000801 // Do struct initialization; this code just sets each individual member
802 // to the approprate value. This makes bitfield support automatic;
803 // the disadvantage is that the generated code is more difficult for
804 // the optimizer, especially with bitfields.
805 unsigned NumInitElements = E->getNumInits();
John McCall2b30dcf2011-07-11 19:35:02 +0000806 RecordDecl *record = E->getType()->castAs<RecordType>()->getDecl();
Chris Lattnerbd7de382010-09-06 00:13:11 +0000807
John McCall2b30dcf2011-07-11 19:35:02 +0000808 if (record->isUnion()) {
Douglas Gregor0bb76892009-01-29 16:53:55 +0000809 // Only initialize one field of a union. The field itself is
810 // specified by the initializer list.
811 if (!E->getInitializedFieldInUnion()) {
812 // Empty union; we have nothing to do.
Mike Stump1eb44332009-09-09 15:08:12 +0000813
Douglas Gregor0bb76892009-01-29 16:53:55 +0000814#ifndef NDEBUG
815 // Make sure that it's really an empty and not a failure of
816 // semantic analysis.
John McCall2b30dcf2011-07-11 19:35:02 +0000817 for (RecordDecl::field_iterator Field = record->field_begin(),
818 FieldEnd = record->field_end();
Douglas Gregor0bb76892009-01-29 16:53:55 +0000819 Field != FieldEnd; ++Field)
820 assert(Field->isUnnamedBitfield() && "Only unnamed bitfields allowed");
821#endif
822 return;
823 }
824
825 // FIXME: volatility
826 FieldDecl *Field = E->getInitializedFieldInUnion();
Douglas Gregor0bb76892009-01-29 16:53:55 +0000827
Chris Lattner1b726772010-12-02 07:07:26 +0000828 LValue FieldLoc = CGF.EmitLValueForFieldInitialization(DestPtr, Field, 0);
Douglas Gregor0bb76892009-01-29 16:53:55 +0000829 if (NumInitElements) {
830 // Store the initializer into the field
John McCalla07398e2011-06-16 04:16:24 +0000831 EmitInitializationToLValue(E->getInit(0), FieldLoc);
Douglas Gregor0bb76892009-01-29 16:53:55 +0000832 } else {
Chris Lattner1b726772010-12-02 07:07:26 +0000833 // Default-initialize to null.
John McCalla07398e2011-06-16 04:16:24 +0000834 EmitNullInitializationToLValue(FieldLoc);
Douglas Gregor0bb76892009-01-29 16:53:55 +0000835 }
836
837 return;
838 }
Mike Stump1eb44332009-09-09 15:08:12 +0000839
John McCall2b30dcf2011-07-11 19:35:02 +0000840 // We'll need to enter cleanup scopes in case any of the member
841 // initializers throw an exception.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000842 SmallVector<EHScopeStack::stable_iterator, 16> cleanups;
John McCall2b30dcf2011-07-11 19:35:02 +0000843
Chris Lattnerf81557c2008-04-04 18:42:16 +0000844 // Here we iterate over the fields; this makes it simpler to both
845 // default-initialize fields and skip over unnamed fields.
John McCall2b30dcf2011-07-11 19:35:02 +0000846 unsigned curInitIndex = 0;
847 for (RecordDecl::field_iterator field = record->field_begin(),
848 fieldEnd = record->field_end();
849 field != fieldEnd; ++field) {
850 // We're done once we hit the flexible array member.
851 if (field->getType()->isIncompleteArrayType())
Douglas Gregor44b43212008-12-11 16:49:14 +0000852 break;
853
John McCall2b30dcf2011-07-11 19:35:02 +0000854 // Always skip anonymous bitfields.
855 if (field->isUnnamedBitfield())
Chris Lattnerf81557c2008-04-04 18:42:16 +0000856 continue;
Douglas Gregor34e79462009-01-28 23:36:17 +0000857
John McCall2b30dcf2011-07-11 19:35:02 +0000858 // We're done if we reach the end of the explicit initializers, we
859 // have a zeroed object, and the rest of the fields are
860 // zero-initializable.
861 if (curInitIndex == NumInitElements && Dest.isZeroed() &&
Chris Lattner1b726772010-12-02 07:07:26 +0000862 CGF.getTypes().isZeroInitializable(E->getType()))
863 break;
864
Eli Friedman1e692ac2008-06-13 23:01:12 +0000865 // FIXME: volatility
John McCall2b30dcf2011-07-11 19:35:02 +0000866 LValue LV = CGF.EmitLValueForFieldInitialization(DestPtr, *field, 0);
Fariborz Jahanian14674ff2009-05-27 19:54:11 +0000867 // We never generate write-barries for initialized fields.
John McCall2b30dcf2011-07-11 19:35:02 +0000868 LV.setNonGC(true);
Chris Lattner1b726772010-12-02 07:07:26 +0000869
John McCall2b30dcf2011-07-11 19:35:02 +0000870 if (curInitIndex < NumInitElements) {
Chris Lattnerb35baae2010-03-08 21:08:07 +0000871 // Store the initializer into the field.
John McCall2b30dcf2011-07-11 19:35:02 +0000872 EmitInitializationToLValue(E->getInit(curInitIndex++), LV);
Chris Lattnerf81557c2008-04-04 18:42:16 +0000873 } else {
874 // We're out of initalizers; default-initialize to null
John McCall2b30dcf2011-07-11 19:35:02 +0000875 EmitNullInitializationToLValue(LV);
876 }
877
878 // Push a destructor if necessary.
879 // FIXME: if we have an array of structures, all explicitly
880 // initialized, we can end up pushing a linear number of cleanups.
881 bool pushedCleanup = false;
882 if (QualType::DestructionKind dtorKind
883 = field->getType().isDestructedType()) {
884 assert(LV.isSimple());
885 if (CGF.needsEHCleanup(dtorKind)) {
886 CGF.pushDestroy(EHCleanup, LV.getAddress(), field->getType(),
887 CGF.getDestroyer(dtorKind), false);
888 cleanups.push_back(CGF.EHStack.stable_begin());
889 pushedCleanup = true;
890 }
Chris Lattnerf81557c2008-04-04 18:42:16 +0000891 }
Chris Lattner1b726772010-12-02 07:07:26 +0000892
893 // If the GEP didn't get used because of a dead zero init or something
894 // else, clean it up for -O0 builds and general tidiness.
John McCall2b30dcf2011-07-11 19:35:02 +0000895 if (!pushedCleanup && LV.isSimple())
Chris Lattner1b726772010-12-02 07:07:26 +0000896 if (llvm::GetElementPtrInst *GEP =
John McCall2b30dcf2011-07-11 19:35:02 +0000897 dyn_cast<llvm::GetElementPtrInst>(LV.getAddress()))
Chris Lattner1b726772010-12-02 07:07:26 +0000898 if (GEP->use_empty())
899 GEP->eraseFromParent();
Lauro Ramos Venancio145cd892008-02-19 19:27:31 +0000900 }
John McCall2b30dcf2011-07-11 19:35:02 +0000901
902 // Deactivate all the partial cleanups in reverse order, which
903 // generally means popping them.
904 for (unsigned i = cleanups.size(); i != 0; --i)
905 CGF.DeactivateCleanupBlock(cleanups[i-1]);
Devang Patel636c3d02007-10-26 17:44:44 +0000906}
907
Chris Lattneree755f92007-08-21 04:59:27 +0000908//===----------------------------------------------------------------------===//
909// Entry Points into this File
910//===----------------------------------------------------------------------===//
911
Chris Lattner1b726772010-12-02 07:07:26 +0000912/// GetNumNonZeroBytesInInit - Get an approximate count of the number of
913/// non-zero bytes that will be stored when outputting the initializer for the
914/// specified initializer expression.
Ken Dyck02c45332011-04-24 17:17:56 +0000915static CharUnits GetNumNonZeroBytesInInit(const Expr *E, CodeGenFunction &CGF) {
Peter Collingbournef111d932011-04-15 00:35:48 +0000916 E = E->IgnoreParens();
Chris Lattner1b726772010-12-02 07:07:26 +0000917
918 // 0 and 0.0 won't require any non-zero stores!
Ken Dyck02c45332011-04-24 17:17:56 +0000919 if (isSimpleZero(E, CGF)) return CharUnits::Zero();
Chris Lattner1b726772010-12-02 07:07:26 +0000920
921 // If this is an initlist expr, sum up the size of sizes of the (present)
922 // elements. If this is something weird, assume the whole thing is non-zero.
923 const InitListExpr *ILE = dyn_cast<InitListExpr>(E);
924 if (ILE == 0 || !CGF.getTypes().isZeroInitializable(ILE->getType()))
Ken Dyck02c45332011-04-24 17:17:56 +0000925 return CGF.getContext().getTypeSizeInChars(E->getType());
Chris Lattner1b726772010-12-02 07:07:26 +0000926
Chris Lattnerd1d56df2010-12-02 18:29:00 +0000927 // InitListExprs for structs have to be handled carefully. If there are
928 // reference members, we need to consider the size of the reference, not the
929 // referencee. InitListExprs for unions and arrays can't have references.
Chris Lattner8c00ad12010-12-02 22:52:04 +0000930 if (const RecordType *RT = E->getType()->getAs<RecordType>()) {
931 if (!RT->isUnionType()) {
932 RecordDecl *SD = E->getType()->getAs<RecordType>()->getDecl();
Ken Dyck02c45332011-04-24 17:17:56 +0000933 CharUnits NumNonZeroBytes = CharUnits::Zero();
Chris Lattner8c00ad12010-12-02 22:52:04 +0000934
935 unsigned ILEElement = 0;
936 for (RecordDecl::field_iterator Field = SD->field_begin(),
937 FieldEnd = SD->field_end(); Field != FieldEnd; ++Field) {
938 // We're done once we hit the flexible array member or run out of
939 // InitListExpr elements.
940 if (Field->getType()->isIncompleteArrayType() ||
941 ILEElement == ILE->getNumInits())
942 break;
943 if (Field->isUnnamedBitfield())
944 continue;
Chris Lattnerd1d56df2010-12-02 18:29:00 +0000945
Chris Lattner8c00ad12010-12-02 22:52:04 +0000946 const Expr *E = ILE->getInit(ILEElement++);
947
948 // Reference values are always non-null and have the width of a pointer.
949 if (Field->getType()->isReferenceType())
Ken Dyck02c45332011-04-24 17:17:56 +0000950 NumNonZeroBytes += CGF.getContext().toCharUnitsFromBits(
951 CGF.getContext().Target.getPointerWidth(0));
Chris Lattner8c00ad12010-12-02 22:52:04 +0000952 else
953 NumNonZeroBytes += GetNumNonZeroBytesInInit(E, CGF);
954 }
Chris Lattnerd1d56df2010-12-02 18:29:00 +0000955
Chris Lattner8c00ad12010-12-02 22:52:04 +0000956 return NumNonZeroBytes;
Chris Lattnerd1d56df2010-12-02 18:29:00 +0000957 }
Chris Lattnerd1d56df2010-12-02 18:29:00 +0000958 }
959
960
Ken Dyck02c45332011-04-24 17:17:56 +0000961 CharUnits NumNonZeroBytes = CharUnits::Zero();
Chris Lattner1b726772010-12-02 07:07:26 +0000962 for (unsigned i = 0, e = ILE->getNumInits(); i != e; ++i)
963 NumNonZeroBytes += GetNumNonZeroBytesInInit(ILE->getInit(i), CGF);
964 return NumNonZeroBytes;
965}
966
967/// CheckAggExprForMemSetUse - If the initializer is large and has a lot of
968/// zeros in it, emit a memset and avoid storing the individual zeros.
969///
970static void CheckAggExprForMemSetUse(AggValueSlot &Slot, const Expr *E,
971 CodeGenFunction &CGF) {
972 // If the slot is already known to be zeroed, nothing to do. Don't mess with
973 // volatile stores.
974 if (Slot.isZeroed() || Slot.isVolatile() || Slot.getAddr() == 0) return;
Argyrios Kyrtzidis657baf12011-04-28 22:57:55 +0000975
976 // C++ objects with a user-declared constructor don't need zero'ing.
977 if (CGF.getContext().getLangOptions().CPlusPlus)
978 if (const RecordType *RT = CGF.getContext()
979 .getBaseElementType(E->getType())->getAs<RecordType>()) {
980 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
981 if (RD->hasUserDeclaredConstructor())
982 return;
983 }
984
Chris Lattner1b726772010-12-02 07:07:26 +0000985 // If the type is 16-bytes or smaller, prefer individual stores over memset.
Ken Dyck5ff1a352011-04-24 17:25:32 +0000986 std::pair<CharUnits, CharUnits> TypeInfo =
987 CGF.getContext().getTypeInfoInChars(E->getType());
988 if (TypeInfo.first <= CharUnits::fromQuantity(16))
Chris Lattner1b726772010-12-02 07:07:26 +0000989 return;
990
991 // Check to see if over 3/4 of the initializer are known to be zero. If so,
992 // we prefer to emit memset + individual stores for the rest.
Ken Dyck5ff1a352011-04-24 17:25:32 +0000993 CharUnits NumNonZeroBytes = GetNumNonZeroBytesInInit(E, CGF);
994 if (NumNonZeroBytes*4 > TypeInfo.first)
Chris Lattner1b726772010-12-02 07:07:26 +0000995 return;
996
997 // Okay, it seems like a good idea to use an initial memset, emit the call.
Ken Dyck5ff1a352011-04-24 17:25:32 +0000998 llvm::Constant *SizeVal = CGF.Builder.getInt64(TypeInfo.first.getQuantity());
999 CharUnits Align = TypeInfo.second;
Chris Lattner1b726772010-12-02 07:07:26 +00001000
1001 llvm::Value *Loc = Slot.getAddr();
Chris Lattner2acc6e32011-07-18 04:24:23 +00001002 llvm::Type *BP = llvm::Type::getInt8PtrTy(CGF.getLLVMContext());
Chris Lattner1b726772010-12-02 07:07:26 +00001003
1004 Loc = CGF.Builder.CreateBitCast(Loc, BP);
Ken Dyck5ff1a352011-04-24 17:25:32 +00001005 CGF.Builder.CreateMemSet(Loc, CGF.Builder.getInt8(0), SizeVal,
1006 Align.getQuantity(), false);
Chris Lattner1b726772010-12-02 07:07:26 +00001007
1008 // Tell the AggExprEmitter that the slot is known zero.
1009 Slot.setZeroed();
1010}
1011
1012
1013
1014
Mike Stumpe1129a92009-05-26 18:57:45 +00001015/// EmitAggExpr - Emit the computation of the specified expression of aggregate
1016/// type. The result is computed into DestPtr. Note that if DestPtr is null,
1017/// the value of the aggregate expression is not needed. If VolatileDest is
1018/// true, DestPtr cannot be 0.
John McCall558d2ab2010-09-15 10:14:12 +00001019///
1020/// \param IsInitializer - true if this evaluation is initializing an
1021/// object whose lifetime is already being managed.
John McCall558d2ab2010-09-15 10:14:12 +00001022void CodeGenFunction::EmitAggExpr(const Expr *E, AggValueSlot Slot,
Fariborz Jahanian474e2fe2010-09-16 00:20:07 +00001023 bool IgnoreResult) {
Chris Lattneree755f92007-08-21 04:59:27 +00001024 assert(E && hasAggregateLLVMType(E->getType()) &&
1025 "Invalid aggregate expression to emit");
Chris Lattner1b726772010-12-02 07:07:26 +00001026 assert((Slot.getAddr() != 0 || Slot.isIgnored()) &&
1027 "slot has bits but no address");
Mike Stump1eb44332009-09-09 15:08:12 +00001028
Chris Lattner1b726772010-12-02 07:07:26 +00001029 // Optimize the slot if possible.
1030 CheckAggExprForMemSetUse(Slot, E, *this);
1031
1032 AggExprEmitter(*this, Slot, IgnoreResult).Visit(const_cast<Expr*>(E));
Chris Lattneree755f92007-08-21 04:59:27 +00001033}
Daniel Dunbar7482d122008-09-09 20:49:46 +00001034
Daniel Dunbar18aba0d2010-02-05 19:38:31 +00001035LValue CodeGenFunction::EmitAggExprToLValue(const Expr *E) {
1036 assert(hasAggregateLLVMType(E->getType()) && "Invalid argument!");
Daniel Dunbar195337d2010-02-09 02:48:28 +00001037 llvm::Value *Temp = CreateMemTemp(E->getType());
Daniel Dunbar79c39282010-08-21 03:15:20 +00001038 LValue LV = MakeAddrLValue(Temp, E->getType());
John McCallf85e1932011-06-15 23:02:42 +00001039 EmitAggExpr(E, AggValueSlot::forLValue(LV, false));
Daniel Dunbar79c39282010-08-21 03:15:20 +00001040 return LV;
Daniel Dunbar18aba0d2010-02-05 19:38:31 +00001041}
1042
Daniel Dunbar7482d122008-09-09 20:49:46 +00001043void CodeGenFunction::EmitAggregateCopy(llvm::Value *DestPtr,
Mike Stump27fe2e62009-05-23 22:29:41 +00001044 llvm::Value *SrcPtr, QualType Ty,
1045 bool isVolatile) {
Daniel Dunbar7482d122008-09-09 20:49:46 +00001046 assert(!Ty->isAnyComplexType() && "Shouldn't happen for complex");
Mike Stump1eb44332009-09-09 15:08:12 +00001047
Anders Carlsson0d7c5832010-05-03 01:20:20 +00001048 if (getContext().getLangOptions().CPlusPlus) {
1049 if (const RecordType *RT = Ty->getAs<RecordType>()) {
Douglas Gregore9979482010-05-20 15:39:01 +00001050 CXXRecordDecl *Record = cast<CXXRecordDecl>(RT->getDecl());
1051 assert((Record->hasTrivialCopyConstructor() ||
Fariborz Jahanian1d49f212010-05-20 16:46:55 +00001052 Record->hasTrivialCopyAssignment()) &&
Douglas Gregore9979482010-05-20 15:39:01 +00001053 "Trying to aggregate-copy a type without a trivial copy "
1054 "constructor or assignment operator");
Douglas Gregor419aa962010-05-20 15:48:29 +00001055 // Ignore empty classes in C++.
Douglas Gregore9979482010-05-20 15:39:01 +00001056 if (Record->isEmpty())
Anders Carlsson0d7c5832010-05-03 01:20:20 +00001057 return;
1058 }
1059 }
1060
Chris Lattner83c96292009-02-28 18:31:01 +00001061 // Aggregate assignment turns into llvm.memcpy. This is almost valid per
Chris Lattnerca4fc2c2009-02-28 18:18:58 +00001062 // C99 6.5.16.1p3, which states "If the value being stored in an object is
1063 // read from another object that overlaps in anyway the storage of the first
1064 // object, then the overlap shall be exact and the two objects shall have
1065 // qualified or unqualified versions of a compatible type."
1066 //
Chris Lattner83c96292009-02-28 18:31:01 +00001067 // memcpy is not defined if the source and destination pointers are exactly
Chris Lattnerca4fc2c2009-02-28 18:18:58 +00001068 // equal, but other compilers do this optimization, and almost every memcpy
1069 // implementation handles this case safely. If there is a libc that does not
1070 // safely handle this, we can add a target hook.
Mike Stump1eb44332009-09-09 15:08:12 +00001071
Daniel Dunbar7482d122008-09-09 20:49:46 +00001072 // Get size and alignment info for this aggregate.
Ken Dyck1a8c15a2011-04-24 17:37:26 +00001073 std::pair<CharUnits, CharUnits> TypeInfo =
1074 getContext().getTypeInfoInChars(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +00001075
Daniel Dunbar7482d122008-09-09 20:49:46 +00001076 // FIXME: Handle variable sized types.
Mike Stump1eb44332009-09-09 15:08:12 +00001077
Mike Stumpfde64202009-05-23 04:13:59 +00001078 // FIXME: If we have a volatile struct, the optimizer can remove what might
1079 // appear to be `extra' memory ops:
1080 //
1081 // volatile struct { int i; } a, b;
1082 //
1083 // int main() {
1084 // a = b;
1085 // a = b;
1086 // }
1087 //
Mon P Wang3ecd7852010-04-04 03:10:52 +00001088 // we need to use a different call here. We use isVolatile to indicate when
Mike Stump49d1cd52009-05-26 22:03:21 +00001089 // either the source or the destination is volatile.
Mon P Wang3ecd7852010-04-04 03:10:52 +00001090
Chris Lattner2acc6e32011-07-18 04:24:23 +00001091 llvm::PointerType *DPT = cast<llvm::PointerType>(DestPtr->getType());
1092 llvm::Type *DBP =
John McCalld16c2cf2011-02-08 08:22:06 +00001093 llvm::Type::getInt8PtrTy(getLLVMContext(), DPT->getAddressSpace());
Chris Lattner098432c2010-07-08 00:07:45 +00001094 DestPtr = Builder.CreateBitCast(DestPtr, DBP, "tmp");
Mon P Wang3ecd7852010-04-04 03:10:52 +00001095
Chris Lattner2acc6e32011-07-18 04:24:23 +00001096 llvm::PointerType *SPT = cast<llvm::PointerType>(SrcPtr->getType());
1097 llvm::Type *SBP =
John McCalld16c2cf2011-02-08 08:22:06 +00001098 llvm::Type::getInt8PtrTy(getLLVMContext(), SPT->getAddressSpace());
Chris Lattner098432c2010-07-08 00:07:45 +00001099 SrcPtr = Builder.CreateBitCast(SrcPtr, SBP, "tmp");
Mon P Wang3ecd7852010-04-04 03:10:52 +00001100
John McCallf85e1932011-06-15 23:02:42 +00001101 // Don't do any of the memmove_collectable tests if GC isn't set.
1102 if (CGM.getLangOptions().getGCMode() == LangOptions::NonGC) {
1103 // fall through
1104 } else if (const RecordType *RecordTy = Ty->getAs<RecordType>()) {
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00001105 RecordDecl *Record = RecordTy->getDecl();
1106 if (Record->hasObjectMember()) {
Ken Dyck1a8c15a2011-04-24 17:37:26 +00001107 CharUnits size = TypeInfo.first;
Chris Lattner2acc6e32011-07-18 04:24:23 +00001108 llvm::Type *SizeTy = ConvertType(getContext().getSizeType());
Ken Dyck1a8c15a2011-04-24 17:37:26 +00001109 llvm::Value *SizeVal = llvm::ConstantInt::get(SizeTy, size.getQuantity());
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00001110 CGM.getObjCRuntime().EmitGCMemmoveCollectable(*this, DestPtr, SrcPtr,
1111 SizeVal);
1112 return;
1113 }
John McCallf85e1932011-06-15 23:02:42 +00001114 } else if (Ty->isArrayType()) {
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00001115 QualType BaseType = getContext().getBaseElementType(Ty);
1116 if (const RecordType *RecordTy = BaseType->getAs<RecordType>()) {
1117 if (RecordTy->getDecl()->hasObjectMember()) {
Ken Dyck1a8c15a2011-04-24 17:37:26 +00001118 CharUnits size = TypeInfo.first;
Chris Lattner2acc6e32011-07-18 04:24:23 +00001119 llvm::Type *SizeTy = ConvertType(getContext().getSizeType());
Ken Dyck1a8c15a2011-04-24 17:37:26 +00001120 llvm::Value *SizeVal =
1121 llvm::ConstantInt::get(SizeTy, size.getQuantity());
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00001122 CGM.getObjCRuntime().EmitGCMemmoveCollectable(*this, DestPtr, SrcPtr,
1123 SizeVal);
1124 return;
1125 }
1126 }
1127 }
1128
Benjamin Kramer9f0c7cc2010-12-30 00:13:21 +00001129 Builder.CreateMemCpy(DestPtr, SrcPtr,
Ken Dyck1a8c15a2011-04-24 17:37:26 +00001130 llvm::ConstantInt::get(IntPtrTy,
1131 TypeInfo.first.getQuantity()),
1132 TypeInfo.second.getQuantity(), isVolatile);
Daniel Dunbar7482d122008-09-09 20:49:46 +00001133}