blob: 6d18843591f37bda5e7f6fb2b59743063a32c619 [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"
Fariborz Jahanian082b02e2009-07-08 01:18:33 +000015#include "CGObjCRuntime.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000016#include "CodeGenModule.h"
Daniel Dunbarde7fb842008-08-11 05:00:27 +000017#include "clang/AST/ASTContext.h"
Anders Carlssonb14095a2009-04-17 00:06:03 +000018#include "clang/AST/DeclCXX.h"
Sebastian Redl32cf1f22012-02-17 08:42:25 +000019#include "clang/AST/DeclTemplate.h"
Daniel Dunbarde7fb842008-08-11 05:00:27 +000020#include "clang/AST/StmtVisitor.h"
Chandler Carruth3b844ba2013-01-02 11:45:17 +000021#include "llvm/IR/Constants.h"
22#include "llvm/IR/Function.h"
23#include "llvm/IR/GlobalVariable.h"
24#include "llvm/IR/Intrinsics.h"
Chris Lattneraf6f5282007-08-10 20:13:28 +000025using namespace clang;
26using namespace CodeGen;
Chris Lattner883f6a72007-08-11 00:04:45 +000027
Chris Lattner9c033562007-08-21 04:25:47 +000028//===----------------------------------------------------------------------===//
29// Aggregate Expression Emitter
30//===----------------------------------------------------------------------===//
31
32namespace {
Benjamin Kramer85b45212009-11-28 19:45:26 +000033class AggExprEmitter : public StmtVisitor<AggExprEmitter> {
Chris Lattner9c033562007-08-21 04:25:47 +000034 CodeGenFunction &CGF;
Daniel Dunbar45d196b2008-11-01 01:53:16 +000035 CGBuilderTy &Builder;
John McCall558d2ab2010-09-15 10:14:12 +000036 AggValueSlot Dest;
Pirama Arumuga Nainarb6d69932015-07-01 12:25:36 -070037 bool IsResultUnused;
John McCallef072fd2010-05-22 01:48:05 +000038
John McCall410ffb22011-08-25 23:04:34 +000039 /// We want to use 'dest' as the return slot except under two
40 /// conditions:
41 /// - The destination slot requires garbage collection, so we
42 /// need to use the GC API.
43 /// - The destination slot is potentially aliased.
44 bool shouldUseDestForReturnSlot() const {
45 return !(Dest.requiresGCollection() || Dest.isPotentiallyAliased());
46 }
47
John McCallef072fd2010-05-22 01:48:05 +000048 ReturnValueSlot getReturnValueSlot() const {
John McCall410ffb22011-08-25 23:04:34 +000049 if (!shouldUseDestForReturnSlot())
50 return ReturnValueSlot();
John McCallfa037bd2010-05-22 22:13:32 +000051
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -080052 return ReturnValueSlot(Dest.getAddress(), Dest.isVolatile(),
53 IsResultUnused);
John McCall558d2ab2010-09-15 10:14:12 +000054 }
55
56 AggValueSlot EnsureSlot(QualType T) {
57 if (!Dest.isIgnored()) return Dest;
58 return CGF.CreateAggTemp(T, "agg.tmp.ensured");
John McCallef072fd2010-05-22 01:48:05 +000059 }
John McCalle0c11682012-07-02 23:58:38 +000060 void EnsureDest(QualType T) {
61 if (!Dest.isIgnored()) return;
62 Dest = CGF.CreateAggTemp(T, "agg.tmp.ensured");
63 }
John McCallfa037bd2010-05-22 22:13:32 +000064
Chris Lattner9c033562007-08-21 04:25:47 +000065public:
Pirama Arumuga Nainarb6d69932015-07-01 12:25:36 -070066 AggExprEmitter(CodeGenFunction &cgf, AggValueSlot Dest, bool IsResultUnused)
67 : CGF(cgf), Builder(CGF.Builder), Dest(Dest),
68 IsResultUnused(IsResultUnused) { }
Chris Lattner9c033562007-08-21 04:25:47 +000069
Chris Lattneree755f92007-08-21 04:59:27 +000070 //===--------------------------------------------------------------------===//
71 // Utilities
72 //===--------------------------------------------------------------------===//
73
Chris Lattner9c033562007-08-21 04:25:47 +000074 /// EmitAggLoadOfLValue - Given an expression with aggregate type that
75 /// represents a value lvalue, this method emits the address of the lvalue,
76 /// then loads the result into DestPtr.
77 void EmitAggLoadOfLValue(const Expr *E);
Eli Friedman922696f2008-05-19 17:51:16 +000078
Mike Stump4ac20dd2009-05-23 20:28:01 +000079 /// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
John McCalle0c11682012-07-02 23:58:38 +000080 void EmitFinalDestCopy(QualType type, const LValue &src);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -080081 void EmitFinalDestCopy(QualType type, RValue src);
John McCalle0c11682012-07-02 23:58:38 +000082 void EmitCopy(QualType type, const AggValueSlot &dest,
83 const AggValueSlot &src);
Mike Stump4ac20dd2009-05-23 20:28:01 +000084
John McCall410ffb22011-08-25 23:04:34 +000085 void EmitMoveFromReturnSlot(const Expr *E, RValue Src);
John McCallfa037bd2010-05-22 22:13:32 +000086
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -080087 void EmitArrayInit(Address DestPtr, llvm::ArrayType *AType,
Sebastian Redl32cf1f22012-02-17 08:42:25 +000088 QualType elementType, InitListExpr *E);
89
John McCall7c2349b2011-08-25 20:40:09 +000090 AggValueSlot::NeedsGCBarriers_t needsGC(QualType T) {
David Blaikie4e4d0842012-03-11 07:00:24 +000091 if (CGF.getLangOpts().getGC() && TypeRequiresGCollection(T))
John McCall7c2349b2011-08-25 20:40:09 +000092 return AggValueSlot::NeedsGCBarriers;
93 return AggValueSlot::DoesNotNeedGCBarriers;
94 }
95
John McCallfa037bd2010-05-22 22:13:32 +000096 bool TypeRequiresGCollection(QualType T);
97
Chris Lattneree755f92007-08-21 04:59:27 +000098 //===--------------------------------------------------------------------===//
99 // Visitor Methods
100 //===--------------------------------------------------------------------===//
Mike Stump1eb44332009-09-09 15:08:12 +0000101
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700102 void Visit(Expr *E) {
103 ApplyDebugLocation DL(CGF, E);
104 StmtVisitor<AggExprEmitter>::Visit(E);
105 }
106
Chris Lattner9c033562007-08-21 04:25:47 +0000107 void VisitStmt(Stmt *S) {
Daniel Dunbar488e9932008-08-16 00:56:44 +0000108 CGF.ErrorUnsupported(S, "aggregate expression");
Chris Lattner9c033562007-08-21 04:25:47 +0000109 }
110 void VisitParenExpr(ParenExpr *PE) { Visit(PE->getSubExpr()); }
Peter Collingbournef111d932011-04-15 00:35:48 +0000111 void VisitGenericSelectionExpr(GenericSelectionExpr *GE) {
112 Visit(GE->getResultExpr());
113 }
Eli Friedman12444a22009-01-27 09:03:41 +0000114 void VisitUnaryExtension(UnaryOperator *E) { Visit(E->getSubExpr()); }
John McCall91a57552011-07-15 05:09:51 +0000115 void VisitSubstNonTypeTemplateParmExpr(SubstNonTypeTemplateParmExpr *E) {
116 return Visit(E->getReplacement());
117 }
Chris Lattner9c033562007-08-21 04:25:47 +0000118
119 // l-values.
John McCallf4b88a42012-03-10 09:33:50 +0000120 void VisitDeclRefExpr(DeclRefExpr *E) {
John McCalldd2ecee2012-03-10 03:05:10 +0000121 // For aggregates, we should always be able to emit the variable
122 // as an l-value unless it's a reference. This is due to the fact
123 // that we can't actually ever see a normal l2r conversion on an
124 // aggregate in C++, and in C there's no language standard
125 // actively preventing us from listing variables in the captures
126 // list of a block.
John McCallf4b88a42012-03-10 09:33:50 +0000127 if (E->getDecl()->getType()->isReferenceType()) {
John McCalldd2ecee2012-03-10 03:05:10 +0000128 if (CodeGenFunction::ConstantEmission result
John McCallf4b88a42012-03-10 09:33:50 +0000129 = CGF.tryEmitAsConstant(E)) {
John McCalle0c11682012-07-02 23:58:38 +0000130 EmitFinalDestCopy(E->getType(), result.getReferenceLValue(CGF, E));
John McCalldd2ecee2012-03-10 03:05:10 +0000131 return;
132 }
133 }
134
John McCallf4b88a42012-03-10 09:33:50 +0000135 EmitAggLoadOfLValue(E);
John McCalldd2ecee2012-03-10 03:05:10 +0000136 }
137
Seo Sanghyeon9b73b392007-12-14 02:04:12 +0000138 void VisitMemberExpr(MemberExpr *ME) { EmitAggLoadOfLValue(ME); }
139 void VisitUnaryDeref(UnaryOperator *E) { EmitAggLoadOfLValue(E); }
Daniel Dunbar5be028f2010-01-04 18:47:06 +0000140 void VisitStringLiteral(StringLiteral *E) { EmitAggLoadOfLValue(E); }
Douglas Gregor751ec9b2011-06-17 04:59:12 +0000141 void VisitCompoundLiteralExpr(CompoundLiteralExpr *E);
Seo Sanghyeon9b73b392007-12-14 02:04:12 +0000142 void VisitArraySubscriptExpr(ArraySubscriptExpr *E) {
143 EmitAggLoadOfLValue(E);
144 }
Chris Lattnerf0a990c2009-04-21 23:00:09 +0000145 void VisitPredefinedExpr(const PredefinedExpr *E) {
Mike Stump1eb44332009-09-09 15:08:12 +0000146 EmitAggLoadOfLValue(E);
Chris Lattnerf0a990c2009-04-21 23:00:09 +0000147 }
Mike Stump1eb44332009-09-09 15:08:12 +0000148
Chris Lattner9c033562007-08-21 04:25:47 +0000149 // Operators.
Anders Carlsson4d8673b2009-08-07 23:22:37 +0000150 void VisitCastExpr(CastExpr *E);
Anders Carlsson148fe672007-10-31 22:04:46 +0000151 void VisitCallExpr(const CallExpr *E);
Chris Lattnerb2d963f2007-08-31 22:54:14 +0000152 void VisitStmtExpr(const StmtExpr *E);
Chris Lattner9c033562007-08-21 04:25:47 +0000153 void VisitBinaryOperator(const BinaryOperator *BO);
Fariborz Jahanian8bfd31f2009-10-22 22:57:31 +0000154 void VisitPointerToDataMemberBinaryOperator(const BinaryOperator *BO);
Chris Lattner03d6fb92007-08-21 04:43:17 +0000155 void VisitBinAssign(const BinaryOperator *E);
Eli Friedman07fa52a2008-05-20 07:56:31 +0000156 void VisitBinComma(const BinaryOperator *E);
Chris Lattner9c033562007-08-21 04:25:47 +0000157
Chris Lattner8fdf3282008-06-24 17:04:18 +0000158 void VisitObjCMessageExpr(ObjCMessageExpr *E);
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000159 void VisitObjCIvarRefExpr(ObjCIvarRefExpr *E) {
160 EmitAggLoadOfLValue(E);
161 }
Mike Stump1eb44332009-09-09 15:08:12 +0000162
Pirama Arumuga Nainarb6d69932015-07-01 12:25:36 -0700163 void VisitDesignatedInitUpdateExpr(DesignatedInitUpdateExpr *E);
John McCall56ca35d2011-02-17 10:25:35 +0000164 void VisitAbstractConditionalOperator(const AbstractConditionalOperator *CO);
Anders Carlssona294ca82009-07-08 18:33:14 +0000165 void VisitChooseExpr(const ChooseExpr *CE);
Devang Patel636c3d02007-10-26 17:44:44 +0000166 void VisitInitListExpr(InitListExpr *E);
Anders Carlsson30311fa2009-12-16 06:57:54 +0000167 void VisitImplicitValueInitExpr(ImplicitValueInitExpr *E);
Pirama Arumuga Nainarb6d69932015-07-01 12:25:36 -0700168 void VisitNoInitExpr(NoInitExpr *E) { } // Do nothing.
Chris Lattner04421082008-04-08 04:40:51 +0000169 void VisitCXXDefaultArgExpr(CXXDefaultArgExpr *DAE) {
170 Visit(DAE->getExpr());
171 }
Richard Smithc3bf52c2013-04-20 22:23:05 +0000172 void VisitCXXDefaultInitExpr(CXXDefaultInitExpr *DIE) {
173 CodeGenFunction::CXXDefaultInitExprScope Scope(CGF);
174 Visit(DIE->getExpr());
175 }
Anders Carlssonb58d0172009-05-30 23:23:33 +0000176 void VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E);
Anders Carlsson31ccf372009-05-03 17:47:16 +0000177 void VisitCXXConstructExpr(const CXXConstructExpr *E);
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700178 void VisitCXXInheritedCtorInitExpr(const CXXInheritedCtorInitExpr *E);
Eli Friedman4c5d8af2012-02-09 03:32:31 +0000179 void VisitLambdaExpr(LambdaExpr *E);
Richard Smith7c3e6152013-06-12 22:31:48 +0000180 void VisitCXXStdInitializerListExpr(CXXStdInitializerListExpr *E);
John McCall4765fa02010-12-06 08:20:24 +0000181 void VisitExprWithCleanups(ExprWithCleanups *E);
Douglas Gregored8abf12010-07-08 06:14:04 +0000182 void VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *E);
Mike Stump2710c412009-11-18 00:40:12 +0000183 void VisitCXXTypeidExpr(CXXTypeidExpr *E) { EmitAggLoadOfLValue(E); }
Douglas Gregor03e80032011-06-21 17:03:29 +0000184 void VisitMaterializeTemporaryExpr(MaterializeTemporaryExpr *E);
John McCalle996ffd2011-02-16 08:02:54 +0000185 void VisitOpaqueValueExpr(OpaqueValueExpr *E);
186
John McCall4b9c2d22011-11-06 09:01:30 +0000187 void VisitPseudoObjectExpr(PseudoObjectExpr *E) {
188 if (E->isGLValue()) {
189 LValue LV = CGF.EmitPseudoObjectLValue(E);
John McCalle0c11682012-07-02 23:58:38 +0000190 return EmitFinalDestCopy(E->getType(), LV);
John McCall4b9c2d22011-11-06 09:01:30 +0000191 }
192
193 CGF.EmitPseudoObjectRValue(E, EnsureSlot(E->getType()));
194 }
195
Eli Friedmanb1851242008-05-27 15:51:49 +0000196 void VisitVAArgExpr(VAArgExpr *E);
Chris Lattnerf81557c2008-04-04 18:42:16 +0000197
Chad Rosier649b4a12012-03-29 17:37:10 +0000198 void EmitInitializationToLValue(Expr *E, LValue Address);
John McCalla07398e2011-06-16 04:16:24 +0000199 void EmitNullInitializationToLValue(LValue Address);
Chris Lattner9c033562007-08-21 04:25:47 +0000200 // case Expr::ChooseExprClass:
Mike Stump39406b12009-12-09 19:24:08 +0000201 void VisitCXXThrowExpr(const CXXThrowExpr *E) { CGF.EmitCXXThrowExpr(E); }
Eli Friedman276b0612011-10-11 02:20:01 +0000202 void VisitAtomicExpr(AtomicExpr *E) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800203 RValue Res = CGF.EmitAtomicExpr(E);
204 EmitFinalDestCopy(E->getType(), Res);
Eli Friedman276b0612011-10-11 02:20:01 +0000205 }
Chris Lattner9c033562007-08-21 04:25:47 +0000206};
207} // end anonymous namespace.
208
Chris Lattneree755f92007-08-21 04:59:27 +0000209//===----------------------------------------------------------------------===//
210// Utilities
211//===----------------------------------------------------------------------===//
Chris Lattner9c033562007-08-21 04:25:47 +0000212
Chris Lattner883f6a72007-08-11 00:04:45 +0000213/// EmitAggLoadOfLValue - Given an expression with aggregate type that
214/// represents a value lvalue, this method emits the address of the lvalue,
215/// then loads the result into DestPtr.
Chris Lattner9c033562007-08-21 04:25:47 +0000216void AggExprEmitter::EmitAggLoadOfLValue(const Expr *E) {
217 LValue LV = CGF.EmitLValue(E);
John McCall9eda3ab2013-03-07 21:37:17 +0000218
219 // If the type of the l-value is atomic, then do an atomic load.
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700220 if (LV.getType()->isAtomicType() || CGF.LValueIsSuitableForInlineAtomic(LV)) {
Nick Lewycky4ee7dc22013-10-02 02:29:49 +0000221 CGF.EmitAtomicLoad(LV, E->getExprLoc(), Dest);
John McCall9eda3ab2013-03-07 21:37:17 +0000222 return;
223 }
224
John McCalle0c11682012-07-02 23:58:38 +0000225 EmitFinalDestCopy(E->getType(), LV);
Mike Stump4ac20dd2009-05-23 20:28:01 +0000226}
227
John McCallfa037bd2010-05-22 22:13:32 +0000228/// \brief True if the given aggregate type requires special GC API calls.
229bool AggExprEmitter::TypeRequiresGCollection(QualType T) {
230 // Only record types have members that might require garbage collection.
231 const RecordType *RecordTy = T->getAs<RecordType>();
232 if (!RecordTy) return false;
233
234 // Don't mess with non-trivial C++ types.
235 RecordDecl *Record = RecordTy->getDecl();
236 if (isa<CXXRecordDecl>(Record) &&
Richard Smith426391c2012-11-16 00:53:38 +0000237 (cast<CXXRecordDecl>(Record)->hasNonTrivialCopyConstructor() ||
John McCallfa037bd2010-05-22 22:13:32 +0000238 !cast<CXXRecordDecl>(Record)->hasTrivialDestructor()))
239 return false;
240
241 // Check whether the type has an object member.
242 return Record->hasObjectMember();
243}
244
John McCall410ffb22011-08-25 23:04:34 +0000245/// \brief Perform the final move to DestPtr if for some reason
246/// getReturnValueSlot() didn't use it directly.
John McCallfa037bd2010-05-22 22:13:32 +0000247///
248/// The idea is that you do something like this:
249/// RValue Result = EmitSomething(..., getReturnValueSlot());
John McCall410ffb22011-08-25 23:04:34 +0000250/// EmitMoveFromReturnSlot(E, Result);
251///
252/// If nothing interferes, this will cause the result to be emitted
253/// directly into the return value slot. Otherwise, a final move
254/// will be performed.
John McCalle0c11682012-07-02 23:58:38 +0000255void AggExprEmitter::EmitMoveFromReturnSlot(const Expr *E, RValue src) {
John McCall410ffb22011-08-25 23:04:34 +0000256 if (shouldUseDestForReturnSlot()) {
257 // Logically, Dest.getAddr() should equal Src.getAggregateAddr().
258 // The possibility of undef rvalues complicates that a lot,
259 // though, so we can't really assert.
260 return;
Fariborz Jahanian55bcace2010-06-15 22:44:06 +0000261 }
John McCall410ffb22011-08-25 23:04:34 +0000262
John McCalle0c11682012-07-02 23:58:38 +0000263 // Otherwise, copy from there to the destination.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800264 assert(Dest.getPointer() != src.getAggregatePointer());
265 EmitFinalDestCopy(E->getType(), src);
John McCallfa037bd2010-05-22 22:13:32 +0000266}
267
Mike Stump4ac20dd2009-05-23 20:28:01 +0000268/// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800269void AggExprEmitter::EmitFinalDestCopy(QualType type, RValue src) {
John McCalle0c11682012-07-02 23:58:38 +0000270 assert(src.isAggregate() && "value must be aggregate value!");
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800271 LValue srcLV = CGF.MakeAddrLValue(src.getAggregateAddress(), type);
John McCalle0c11682012-07-02 23:58:38 +0000272 EmitFinalDestCopy(type, srcLV);
273}
Mike Stump4ac20dd2009-05-23 20:28:01 +0000274
John McCalle0c11682012-07-02 23:58:38 +0000275/// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
276void AggExprEmitter::EmitFinalDestCopy(QualType type, const LValue &src) {
John McCall558d2ab2010-09-15 10:14:12 +0000277 // If Dest is ignored, then we're evaluating an aggregate expression
John McCalle0c11682012-07-02 23:58:38 +0000278 // in a context that doesn't care about the result. Note that loads
279 // from volatile l-values force the existence of a non-ignored
280 // destination.
281 if (Dest.isIgnored())
282 return;
Fariborz Jahanian8a970052010-10-22 22:05:03 +0000283
John McCalle0c11682012-07-02 23:58:38 +0000284 AggValueSlot srcAgg =
285 AggValueSlot::forLValue(src, AggValueSlot::IsDestructed,
286 needsGC(type), AggValueSlot::IsAliased);
287 EmitCopy(type, Dest, srcAgg);
288}
Chris Lattner883f6a72007-08-11 00:04:45 +0000289
John McCalle0c11682012-07-02 23:58:38 +0000290/// Perform a copy from the source into the destination.
291///
292/// \param type - the type of the aggregate being copied; qualifiers are
293/// ignored
294void AggExprEmitter::EmitCopy(QualType type, const AggValueSlot &dest,
295 const AggValueSlot &src) {
296 if (dest.requiresGCollection()) {
297 CharUnits sz = CGF.getContext().getTypeSizeInChars(type);
298 llvm::Value *size = llvm::ConstantInt::get(CGF.SizeTy, sz.getQuantity());
Fariborz Jahanian08c32132009-08-31 19:33:16 +0000299 CGF.CGM.getObjCRuntime().EmitGCMemmoveCollectable(CGF,
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800300 dest.getAddress(),
301 src.getAddress(),
John McCalle0c11682012-07-02 23:58:38 +0000302 size);
Fariborz Jahanian08c32132009-08-31 19:33:16 +0000303 return;
304 }
John McCalle0c11682012-07-02 23:58:38 +0000305
Mike Stump4ac20dd2009-05-23 20:28:01 +0000306 // If the result of the assignment is used, copy the LHS there also.
John McCalle0c11682012-07-02 23:58:38 +0000307 // It's volatile if either side is. Use the minimum alignment of
308 // the two sides.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800309 CGF.EmitAggregateCopy(dest.getAddress(), src.getAddress(), type,
310 dest.isVolatile() || src.isVolatile());
Chris Lattner883f6a72007-08-11 00:04:45 +0000311}
312
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000313/// \brief Emit the initializer for a std::initializer_list initialized with a
314/// real initializer list.
Richard Smith7c3e6152013-06-12 22:31:48 +0000315void
316AggExprEmitter::VisitCXXStdInitializerListExpr(CXXStdInitializerListExpr *E) {
317 // Emit an array containing the elements. The array is externally destructed
318 // if the std::initializer_list object is.
319 ASTContext &Ctx = CGF.getContext();
320 LValue Array = CGF.EmitLValue(E->getSubExpr());
321 assert(Array.isSimple() && "initializer_list array not a simple lvalue");
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800322 Address ArrayPtr = Array.getAddress();
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000323
Richard Smith7c3e6152013-06-12 22:31:48 +0000324 const ConstantArrayType *ArrayType =
325 Ctx.getAsConstantArrayType(E->getSubExpr()->getType());
326 assert(ArrayType && "std::initializer_list constructed from non-array");
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000327
Richard Smith7c3e6152013-06-12 22:31:48 +0000328 // FIXME: Perform the checks on the field types in SemaInit.
329 RecordDecl *Record = E->getType()->castAs<RecordType>()->getDecl();
330 RecordDecl::field_iterator Field = Record->field_begin();
331 if (Field == Record->field_end()) {
332 CGF.ErrorUnsupported(E, "weird std::initializer_list");
Sebastian Redlbabcf9d2012-02-25 20:51:13 +0000333 return;
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000334 }
335
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000336 // Start pointer.
Richard Smith7c3e6152013-06-12 22:31:48 +0000337 if (!Field->getType()->isPointerType() ||
338 !Ctx.hasSameType(Field->getType()->getPointeeType(),
339 ArrayType->getElementType())) {
340 CGF.ErrorUnsupported(E, "weird std::initializer_list");
Sebastian Redlbabcf9d2012-02-25 20:51:13 +0000341 return;
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000342 }
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000343
Richard Smith7c3e6152013-06-12 22:31:48 +0000344 AggValueSlot Dest = EnsureSlot(E->getType());
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800345 LValue DestLV = CGF.MakeAddrLValue(Dest.getAddress(), E->getType());
Richard Smith7c3e6152013-06-12 22:31:48 +0000346 LValue Start = CGF.EmitLValueForFieldInitialization(DestLV, *Field);
347 llvm::Value *Zero = llvm::ConstantInt::get(CGF.PtrDiffTy, 0);
348 llvm::Value *IdxStart[] = { Zero, Zero };
349 llvm::Value *ArrayStart =
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800350 Builder.CreateInBoundsGEP(ArrayPtr.getPointer(), IdxStart, "arraystart");
Richard Smith7c3e6152013-06-12 22:31:48 +0000351 CGF.EmitStoreThroughLValue(RValue::get(ArrayStart), Start);
352 ++Field;
353
354 if (Field == Record->field_end()) {
355 CGF.ErrorUnsupported(E, "weird std::initializer_list");
Sebastian Redlbabcf9d2012-02-25 20:51:13 +0000356 return;
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000357 }
Richard Smith7c3e6152013-06-12 22:31:48 +0000358
359 llvm::Value *Size = Builder.getInt(ArrayType->getSize());
360 LValue EndOrLength = CGF.EmitLValueForFieldInitialization(DestLV, *Field);
361 if (Field->getType()->isPointerType() &&
362 Ctx.hasSameType(Field->getType()->getPointeeType(),
363 ArrayType->getElementType())) {
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000364 // End pointer.
Richard Smith7c3e6152013-06-12 22:31:48 +0000365 llvm::Value *IdxEnd[] = { Zero, Size };
366 llvm::Value *ArrayEnd =
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800367 Builder.CreateInBoundsGEP(ArrayPtr.getPointer(), IdxEnd, "arrayend");
Richard Smith7c3e6152013-06-12 22:31:48 +0000368 CGF.EmitStoreThroughLValue(RValue::get(ArrayEnd), EndOrLength);
369 } else if (Ctx.hasSameType(Field->getType(), Ctx.getSizeType())) {
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000370 // Length.
Richard Smith7c3e6152013-06-12 22:31:48 +0000371 CGF.EmitStoreThroughLValue(RValue::get(Size), EndOrLength);
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000372 } else {
Richard Smith7c3e6152013-06-12 22:31:48 +0000373 CGF.ErrorUnsupported(E, "weird std::initializer_list");
Sebastian Redlbabcf9d2012-02-25 20:51:13 +0000374 return;
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000375 }
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000376}
377
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700378/// \brief Determine if E is a trivial array filler, that is, one that is
379/// equivalent to zero-initialization.
380static bool isTrivialFiller(Expr *E) {
381 if (!E)
382 return true;
383
384 if (isa<ImplicitValueInitExpr>(E))
385 return true;
386
387 if (auto *ILE = dyn_cast<InitListExpr>(E)) {
388 if (ILE->getNumInits())
389 return false;
390 return isTrivialFiller(ILE->getArrayFiller());
391 }
392
393 if (auto *Cons = dyn_cast_or_null<CXXConstructExpr>(E))
394 return Cons->getConstructor()->isDefaultConstructor() &&
395 Cons->getConstructor()->isTrivial();
396
397 // FIXME: Are there other cases where we can avoid emitting an initializer?
398 return false;
399}
400
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000401/// \brief Emit initialization of an array from an initializer list.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800402void AggExprEmitter::EmitArrayInit(Address DestPtr, llvm::ArrayType *AType,
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000403 QualType elementType, InitListExpr *E) {
404 uint64_t NumInitElements = E->getNumInits();
405
406 uint64_t NumArrayElements = AType->getNumElements();
407 assert(NumInitElements <= NumArrayElements);
408
409 // DestPtr is an array*. Construct an elementType* by drilling
410 // down a level.
411 llvm::Value *zero = llvm::ConstantInt::get(CGF.SizeTy, 0);
412 llvm::Value *indices[] = { zero, zero };
413 llvm::Value *begin =
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800414 Builder.CreateInBoundsGEP(DestPtr.getPointer(), indices, "arrayinit.begin");
415
416 CharUnits elementSize = CGF.getContext().getTypeSizeInChars(elementType);
417 CharUnits elementAlign =
418 DestPtr.getAlignment().alignmentOfArrayElement(elementSize);
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000419
420 // Exception safety requires us to destroy all the
421 // already-constructed members if an initializer throws.
422 // For that, we'll need an EH cleanup.
423 QualType::DestructionKind dtorKind = elementType.isDestructedType();
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800424 Address endOfInit = Address::invalid();
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000425 EHScopeStack::stable_iterator cleanup;
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700426 llvm::Instruction *cleanupDominator = nullptr;
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000427 if (CGF.needsEHCleanup(dtorKind)) {
428 // In principle we could tell the cleanup where we are more
429 // directly, but the control flow can get so varied here that it
430 // would actually be quite complex. Therefore we go through an
431 // alloca.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800432 endOfInit = CGF.CreateTempAlloca(begin->getType(), CGF.getPointerAlign(),
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000433 "arrayinit.endOfInit");
434 cleanupDominator = Builder.CreateStore(begin, endOfInit);
435 CGF.pushIrregularPartialArrayCleanup(begin, endOfInit, elementType,
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800436 elementAlign,
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000437 CGF.getDestroyer(dtorKind));
438 cleanup = CGF.EHStack.stable_begin();
439
440 // Otherwise, remember that we didn't need a cleanup.
441 } else {
442 dtorKind = QualType::DK_none;
443 }
444
445 llvm::Value *one = llvm::ConstantInt::get(CGF.SizeTy, 1);
446
447 // The 'current element to initialize'. The invariants on this
448 // variable are complicated. Essentially, after each iteration of
449 // the loop, it points to the last initialized element, except
450 // that it points to the beginning of the array before any
451 // elements have been initialized.
452 llvm::Value *element = begin;
453
454 // Emit the explicit initializers.
455 for (uint64_t i = 0; i != NumInitElements; ++i) {
456 // Advance to the next element.
457 if (i > 0) {
458 element = Builder.CreateInBoundsGEP(element, one, "arrayinit.element");
459
460 // Tell the cleanup that it needs to destroy up to this
461 // element. TODO: some of these stores can be trivially
462 // observed to be unnecessary.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800463 if (endOfInit.isValid()) Builder.CreateStore(element, endOfInit);
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000464 }
465
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800466 LValue elementLV =
467 CGF.MakeAddrLValue(Address(element, elementAlign), elementType);
Richard Smith7c3e6152013-06-12 22:31:48 +0000468 EmitInitializationToLValue(E->getInit(i), elementLV);
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000469 }
470
471 // Check whether there's a non-trivial array-fill expression.
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000472 Expr *filler = E->getArrayFiller();
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700473 bool hasTrivialFiller = isTrivialFiller(filler);
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000474
475 // Any remaining elements need to be zero-initialized, possibly
476 // using the filler expression. We can skip this if the we're
477 // emitting to zeroed memory.
478 if (NumInitElements != NumArrayElements &&
479 !(Dest.isZeroed() && hasTrivialFiller &&
480 CGF.getTypes().isZeroInitializable(elementType))) {
481
482 // Use an actual loop. This is basically
483 // do { *array++ = filler; } while (array != end);
484
485 // Advance to the start of the rest of the array.
486 if (NumInitElements) {
487 element = Builder.CreateInBoundsGEP(element, one, "arrayinit.start");
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800488 if (endOfInit.isValid()) Builder.CreateStore(element, endOfInit);
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000489 }
490
491 // Compute the end of the array.
492 llvm::Value *end = Builder.CreateInBoundsGEP(begin,
493 llvm::ConstantInt::get(CGF.SizeTy, NumArrayElements),
494 "arrayinit.end");
495
496 llvm::BasicBlock *entryBB = Builder.GetInsertBlock();
497 llvm::BasicBlock *bodyBB = CGF.createBasicBlock("arrayinit.body");
498
499 // Jump into the body.
500 CGF.EmitBlock(bodyBB);
501 llvm::PHINode *currentElement =
502 Builder.CreatePHI(element->getType(), 2, "arrayinit.cur");
503 currentElement->addIncoming(element, entryBB);
504
505 // Emit the actual filler expression.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800506 LValue elementLV =
507 CGF.MakeAddrLValue(Address(currentElement, elementAlign), elementType);
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000508 if (filler)
Chad Rosier649b4a12012-03-29 17:37:10 +0000509 EmitInitializationToLValue(filler, elementLV);
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000510 else
511 EmitNullInitializationToLValue(elementLV);
512
513 // Move on to the next element.
514 llvm::Value *nextElement =
515 Builder.CreateInBoundsGEP(currentElement, one, "arrayinit.next");
516
517 // Tell the EH cleanup that we finished with the last element.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800518 if (endOfInit.isValid()) Builder.CreateStore(nextElement, endOfInit);
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000519
520 // Leave the loop if we're done.
521 llvm::Value *done = Builder.CreateICmpEQ(nextElement, end,
522 "arrayinit.done");
523 llvm::BasicBlock *endBB = CGF.createBasicBlock("arrayinit.end");
524 Builder.CreateCondBr(done, endBB, bodyBB);
525 currentElement->addIncoming(nextElement, Builder.GetInsertBlock());
526
527 CGF.EmitBlock(endBB);
528 }
529
530 // Leave the partial-array cleanup if we entered one.
531 if (dtorKind) CGF.DeactivateCleanupBlock(cleanup, cleanupDominator);
532}
533
Chris Lattneree755f92007-08-21 04:59:27 +0000534//===----------------------------------------------------------------------===//
535// Visitor Methods
536//===----------------------------------------------------------------------===//
537
Douglas Gregor03e80032011-06-21 17:03:29 +0000538void AggExprEmitter::VisitMaterializeTemporaryExpr(MaterializeTemporaryExpr *E){
539 Visit(E->GetTemporaryExpr());
540}
541
John McCalle996ffd2011-02-16 08:02:54 +0000542void AggExprEmitter::VisitOpaqueValueExpr(OpaqueValueExpr *e) {
John McCalle0c11682012-07-02 23:58:38 +0000543 EmitFinalDestCopy(e->getType(), CGF.getOpaqueLValueMapping(e));
John McCalle996ffd2011-02-16 08:02:54 +0000544}
545
Douglas Gregor751ec9b2011-06-17 04:59:12 +0000546void
547AggExprEmitter::VisitCompoundLiteralExpr(CompoundLiteralExpr *E) {
John McCall1723f632013-03-07 21:36:54 +0000548 if (Dest.isPotentiallyAliased() &&
549 E->getType().isPODType(CGF.getContext())) {
Douglas Gregor673e98b2011-06-17 16:37:20 +0000550 // For a POD type, just emit a load of the lvalue + a copy, because our
551 // compound literal might alias the destination.
Douglas Gregor673e98b2011-06-17 16:37:20 +0000552 EmitAggLoadOfLValue(E);
553 return;
554 }
555
Douglas Gregor751ec9b2011-06-17 04:59:12 +0000556 AggValueSlot Slot = EnsureSlot(E->getType());
557 CGF.EmitAggExpr(E->getInitializer(), Slot);
558}
559
John McCall9eda3ab2013-03-07 21:37:17 +0000560/// Attempt to look through various unimportant expressions to find a
561/// cast of the given kind.
562static Expr *findPeephole(Expr *op, CastKind kind) {
563 while (true) {
564 op = op->IgnoreParens();
565 if (CastExpr *castE = dyn_cast<CastExpr>(op)) {
566 if (castE->getCastKind() == kind)
567 return castE->getSubExpr();
568 if (castE->getCastKind() == CK_NoOp)
569 continue;
570 }
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700571 return nullptr;
John McCall9eda3ab2013-03-07 21:37:17 +0000572 }
573}
Douglas Gregor751ec9b2011-06-17 04:59:12 +0000574
Anders Carlsson4d8673b2009-08-07 23:22:37 +0000575void AggExprEmitter::VisitCastExpr(CastExpr *E) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800576 if (const auto *ECE = dyn_cast<ExplicitCastExpr>(E))
577 CGF.CGM.EmitExplicitCastExprType(ECE, &CGF);
Anders Carlsson30168422009-09-29 01:23:39 +0000578 switch (E->getCastKind()) {
Anders Carlsson575b3742011-04-11 02:03:26 +0000579 case CK_Dynamic: {
Richard Smith2c9f87c2012-08-24 00:54:33 +0000580 // FIXME: Can this actually happen? We have no test coverage for it.
Douglas Gregor69cfeb12010-05-14 21:31:02 +0000581 assert(isa<CXXDynamicCastExpr>(E) && "CK_Dynamic without a dynamic_cast?");
Richard Smith2c9f87c2012-08-24 00:54:33 +0000582 LValue LV = CGF.EmitCheckedLValue(E->getSubExpr(),
Richard Smith7ac9ef12012-09-08 02:08:36 +0000583 CodeGenFunction::TCK_Load);
Douglas Gregor69cfeb12010-05-14 21:31:02 +0000584 // FIXME: Do we also need to handle property references here?
585 if (LV.isSimple())
586 CGF.EmitDynamicCast(LV.getAddress(), cast<CXXDynamicCastExpr>(E));
587 else
588 CGF.CGM.ErrorUnsupported(E, "non-simple lvalue dynamic_cast");
589
John McCall558d2ab2010-09-15 10:14:12 +0000590 if (!Dest.isIgnored())
591 CGF.CGM.ErrorUnsupported(E, "lvalue dynamic_cast with a destination");
Douglas Gregor69cfeb12010-05-14 21:31:02 +0000592 break;
593 }
594
John McCall2de56d12010-08-25 11:45:40 +0000595 case CK_ToUnion: {
Pirama Arumuga Nainarb6d69932015-07-01 12:25:36 -0700596 // Evaluate even if the destination is ignored.
597 if (Dest.isIgnored()) {
598 CGF.EmitAnyExpr(E->getSubExpr(), AggValueSlot::ignored(),
599 /*ignoreResult=*/true);
600 break;
601 }
John McCall65912712011-04-12 22:02:02 +0000602
Anders Carlsson4d8673b2009-08-07 23:22:37 +0000603 // GCC union extension
Daniel Dunbar79c39282010-08-21 03:15:20 +0000604 QualType Ty = E->getSubExpr()->getType();
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800605 Address CastPtr =
606 Builder.CreateElementBitCast(Dest.getAddress(), CGF.ConvertType(Ty));
John McCalla07398e2011-06-16 04:16:24 +0000607 EmitInitializationToLValue(E->getSubExpr(),
Chad Rosier649b4a12012-03-29 17:37:10 +0000608 CGF.MakeAddrLValue(CastPtr, Ty));
Anders Carlsson30168422009-09-29 01:23:39 +0000609 break;
Nuno Lopes7e916272009-01-15 20:14:33 +0000610 }
Mike Stump1eb44332009-09-09 15:08:12 +0000611
John McCall2de56d12010-08-25 11:45:40 +0000612 case CK_DerivedToBase:
613 case CK_BaseToDerived:
614 case CK_UncheckedDerivedToBase: {
David Blaikieb219cfc2011-09-23 05:06:16 +0000615 llvm_unreachable("cannot perform hierarchy conversion in EmitAggExpr: "
Douglas Gregor2d6b0e92010-05-22 05:17:18 +0000616 "should have been unpacked before we got here");
Douglas Gregor2d6b0e92010-05-22 05:17:18 +0000617 }
618
John McCall9eda3ab2013-03-07 21:37:17 +0000619 case CK_NonAtomicToAtomic:
620 case CK_AtomicToNonAtomic: {
621 bool isToAtomic = (E->getCastKind() == CK_NonAtomicToAtomic);
622
623 // Determine the atomic and value types.
624 QualType atomicType = E->getSubExpr()->getType();
625 QualType valueType = E->getType();
626 if (isToAtomic) std::swap(atomicType, valueType);
627
628 assert(atomicType->isAtomicType());
629 assert(CGF.getContext().hasSameUnqualifiedType(valueType,
630 atomicType->castAs<AtomicType>()->getValueType()));
631
632 // Just recurse normally if we're ignoring the result or the
633 // atomic type doesn't change representation.
634 if (Dest.isIgnored() || !CGF.CGM.isPaddedAtomicType(atomicType)) {
635 return Visit(E->getSubExpr());
636 }
637
638 CastKind peepholeTarget =
639 (isToAtomic ? CK_AtomicToNonAtomic : CK_NonAtomicToAtomic);
640
641 // These two cases are reverses of each other; try to peephole them.
642 if (Expr *op = findPeephole(E->getSubExpr(), peepholeTarget)) {
643 assert(CGF.getContext().hasSameUnqualifiedType(op->getType(),
644 E->getType()) &&
645 "peephole significantly changed types?");
646 return Visit(op);
647 }
648
649 // If we're converting an r-value of non-atomic type to an r-value
Eli Friedman336d9df2013-07-11 01:32:21 +0000650 // of atomic type, just emit directly into the relevant sub-object.
John McCall9eda3ab2013-03-07 21:37:17 +0000651 if (isToAtomic) {
Eli Friedman336d9df2013-07-11 01:32:21 +0000652 AggValueSlot valueDest = Dest;
653 if (!valueDest.isIgnored() && CGF.CGM.isPaddedAtomicType(atomicType)) {
654 // Zero-initialize. (Strictly speaking, we only need to intialize
655 // the padding at the end, but this is simpler.)
656 if (!Dest.isZeroed())
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800657 CGF.EmitNullInitialization(Dest.getAddress(), atomicType);
Eli Friedman336d9df2013-07-11 01:32:21 +0000658
659 // Build a GEP to refer to the subobject.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800660 Address valueAddr =
661 CGF.Builder.CreateStructGEP(valueDest.getAddress(), 0,
662 CharUnits());
Eli Friedman336d9df2013-07-11 01:32:21 +0000663 valueDest = AggValueSlot::forAddr(valueAddr,
Eli Friedman336d9df2013-07-11 01:32:21 +0000664 valueDest.getQualifiers(),
665 valueDest.isExternallyDestructed(),
666 valueDest.requiresGCollection(),
667 valueDest.isPotentiallyAliased(),
668 AggValueSlot::IsZeroed);
669 }
670
Eli Friedmaneb1f2762013-07-11 02:28:36 +0000671 CGF.EmitAggExpr(E->getSubExpr(), valueDest);
John McCall9eda3ab2013-03-07 21:37:17 +0000672 return;
673 }
674
675 // Otherwise, we're converting an atomic type to a non-atomic type.
Eli Friedman336d9df2013-07-11 01:32:21 +0000676 // Make an atomic temporary, emit into that, and then copy the value out.
John McCall9eda3ab2013-03-07 21:37:17 +0000677 AggValueSlot atomicSlot =
678 CGF.CreateAggTemp(atomicType, "atomic-to-nonatomic.temp");
679 CGF.EmitAggExpr(E->getSubExpr(), atomicSlot);
680
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800681 Address valueAddr =
682 Builder.CreateStructGEP(atomicSlot.getAddress(), 0, CharUnits());
John McCall9eda3ab2013-03-07 21:37:17 +0000683 RValue rvalue = RValue::getAggregate(valueAddr, atomicSlot.isVolatile());
684 return EmitFinalDestCopy(valueType, rvalue);
685 }
686
John McCalle0c11682012-07-02 23:58:38 +0000687 case CK_LValueToRValue:
688 // If we're loading from a volatile type, force the destination
689 // into existence.
690 if (E->getSubExpr()->getType().isVolatileQualified()) {
691 EnsureDest(E->getType());
692 return Visit(E->getSubExpr());
693 }
John McCall9eda3ab2013-03-07 21:37:17 +0000694
John McCalle0c11682012-07-02 23:58:38 +0000695 // fallthrough
696
John McCall2de56d12010-08-25 11:45:40 +0000697 case CK_NoOp:
698 case CK_UserDefinedConversion:
699 case CK_ConstructorConversion:
Anders Carlsson30168422009-09-29 01:23:39 +0000700 assert(CGF.getContext().hasSameUnqualifiedType(E->getSubExpr()->getType(),
701 E->getType()) &&
702 "Implicit cast types must be compatible");
703 Visit(E->getSubExpr());
704 break;
John McCall0ae287a2010-12-01 04:43:34 +0000705
John McCall2de56d12010-08-25 11:45:40 +0000706 case CK_LValueBitCast:
John McCall0ae287a2010-12-01 04:43:34 +0000707 llvm_unreachable("should not be emitting lvalue bitcast as rvalue");
John McCall1de4d4e2011-04-07 08:22:57 +0000708
John McCall0ae287a2010-12-01 04:43:34 +0000709 case CK_Dependent:
710 case CK_BitCast:
711 case CK_ArrayToPointerDecay:
712 case CK_FunctionToPointerDecay:
713 case CK_NullToPointer:
714 case CK_NullToMemberPointer:
715 case CK_BaseToDerivedMemberPointer:
716 case CK_DerivedToBaseMemberPointer:
717 case CK_MemberPointerToBoolean:
John McCall4d4e5c12012-02-15 01:22:51 +0000718 case CK_ReinterpretMemberPointer:
John McCall0ae287a2010-12-01 04:43:34 +0000719 case CK_IntegralToPointer:
720 case CK_PointerToIntegral:
721 case CK_PointerToBoolean:
722 case CK_ToVoid:
723 case CK_VectorSplat:
724 case CK_IntegralCast:
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700725 case CK_BooleanToSignedIntegral:
John McCall0ae287a2010-12-01 04:43:34 +0000726 case CK_IntegralToBoolean:
727 case CK_IntegralToFloating:
728 case CK_FloatingToIntegral:
729 case CK_FloatingToBoolean:
730 case CK_FloatingCast:
John McCall1d9b3b22011-09-09 05:25:32 +0000731 case CK_CPointerToObjCPointerCast:
732 case CK_BlockPointerToObjCPointerCast:
John McCall0ae287a2010-12-01 04:43:34 +0000733 case CK_AnyPointerToBlockPointerCast:
734 case CK_ObjCObjectLValueCast:
735 case CK_FloatingRealToComplex:
736 case CK_FloatingComplexToReal:
737 case CK_FloatingComplexToBoolean:
738 case CK_FloatingComplexCast:
739 case CK_FloatingComplexToIntegralComplex:
740 case CK_IntegralRealToComplex:
741 case CK_IntegralComplexToReal:
742 case CK_IntegralComplexToBoolean:
743 case CK_IntegralComplexCast:
744 case CK_IntegralComplexToFloatingComplex:
John McCall33e56f32011-09-10 06:18:15 +0000745 case CK_ARCProduceObject:
746 case CK_ARCConsumeObject:
747 case CK_ARCReclaimReturnedObject:
748 case CK_ARCExtendBlockObject:
Douglas Gregorac1303e2012-02-22 05:02:47 +0000749 case CK_CopyAndAutoreleaseBlockObject:
Eli Friedmana6c66ce2012-08-31 00:14:07 +0000750 case CK_BuiltinFnToFnPtr:
Guy Benyeie6b9d802013-01-20 12:31:11 +0000751 case CK_ZeroToOCLEvent:
Stephen Hines651f13c2014-04-23 16:59:28 -0700752 case CK_AddressSpaceConversion:
John McCall0ae287a2010-12-01 04:43:34 +0000753 llvm_unreachable("cast kind invalid for aggregate types");
Anders Carlsson30168422009-09-29 01:23:39 +0000754 }
Anders Carlssone4707ff2008-01-14 06:28:57 +0000755}
756
Chris Lattner96196622008-07-26 22:37:01 +0000757void AggExprEmitter::VisitCallExpr(const CallExpr *E) {
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700758 if (E->getCallReturnType(CGF.getContext())->isReferenceType()) {
Anders Carlssone70e8f72009-05-27 16:45:02 +0000759 EmitAggLoadOfLValue(E);
760 return;
761 }
Mike Stump1eb44332009-09-09 15:08:12 +0000762
John McCallfa037bd2010-05-22 22:13:32 +0000763 RValue RV = CGF.EmitCallExpr(E, getReturnValueSlot());
John McCall410ffb22011-08-25 23:04:34 +0000764 EmitMoveFromReturnSlot(E, RV);
Anders Carlsson148fe672007-10-31 22:04:46 +0000765}
Chris Lattner96196622008-07-26 22:37:01 +0000766
767void AggExprEmitter::VisitObjCMessageExpr(ObjCMessageExpr *E) {
John McCallfa037bd2010-05-22 22:13:32 +0000768 RValue RV = CGF.EmitObjCMessageExpr(E, getReturnValueSlot());
John McCall410ffb22011-08-25 23:04:34 +0000769 EmitMoveFromReturnSlot(E, RV);
Chris Lattner8fdf3282008-06-24 17:04:18 +0000770}
Anders Carlsson148fe672007-10-31 22:04:46 +0000771
Chris Lattner96196622008-07-26 22:37:01 +0000772void AggExprEmitter::VisitBinComma(const BinaryOperator *E) {
John McCall2a416372010-12-05 02:00:02 +0000773 CGF.EmitIgnoredExpr(E->getLHS());
John McCall558d2ab2010-09-15 10:14:12 +0000774 Visit(E->getRHS());
Eli Friedman07fa52a2008-05-20 07:56:31 +0000775}
776
Chris Lattnerb2d963f2007-08-31 22:54:14 +0000777void AggExprEmitter::VisitStmtExpr(const StmtExpr *E) {
John McCall150b4622011-01-26 04:00:11 +0000778 CodeGenFunction::StmtExprEvaluation eval(CGF);
John McCall558d2ab2010-09-15 10:14:12 +0000779 CGF.EmitCompoundStmt(*E->getSubStmt(), true, Dest);
Chris Lattnerb2d963f2007-08-31 22:54:14 +0000780}
781
Chris Lattner9c033562007-08-21 04:25:47 +0000782void AggExprEmitter::VisitBinaryOperator(const BinaryOperator *E) {
John McCall2de56d12010-08-25 11:45:40 +0000783 if (E->getOpcode() == BO_PtrMemD || E->getOpcode() == BO_PtrMemI)
Fariborz Jahanian8bfd31f2009-10-22 22:57:31 +0000784 VisitPointerToDataMemberBinaryOperator(E);
785 else
786 CGF.ErrorUnsupported(E, "aggregate binary expression");
787}
788
789void AggExprEmitter::VisitPointerToDataMemberBinaryOperator(
790 const BinaryOperator *E) {
791 LValue LV = CGF.EmitPointerToDataMemberBinaryExpr(E);
John McCalle0c11682012-07-02 23:58:38 +0000792 EmitFinalDestCopy(E->getType(), LV);
793}
794
795/// Is the value of the given expression possibly a reference to or
796/// into a __block variable?
797static bool isBlockVarRef(const Expr *E) {
798 // Make sure we look through parens.
799 E = E->IgnoreParens();
800
801 // Check for a direct reference to a __block variable.
802 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) {
803 const VarDecl *var = dyn_cast<VarDecl>(DRE->getDecl());
804 return (var && var->hasAttr<BlocksAttr>());
805 }
806
807 // More complicated stuff.
808
809 // Binary operators.
810 if (const BinaryOperator *op = dyn_cast<BinaryOperator>(E)) {
811 // For an assignment or pointer-to-member operation, just care
812 // about the LHS.
813 if (op->isAssignmentOp() || op->isPtrMemOp())
814 return isBlockVarRef(op->getLHS());
815
816 // For a comma, just care about the RHS.
817 if (op->getOpcode() == BO_Comma)
818 return isBlockVarRef(op->getRHS());
819
820 // FIXME: pointer arithmetic?
821 return false;
822
823 // Check both sides of a conditional operator.
824 } else if (const AbstractConditionalOperator *op
825 = dyn_cast<AbstractConditionalOperator>(E)) {
826 return isBlockVarRef(op->getTrueExpr())
827 || isBlockVarRef(op->getFalseExpr());
828
829 // OVEs are required to support BinaryConditionalOperators.
830 } else if (const OpaqueValueExpr *op
831 = dyn_cast<OpaqueValueExpr>(E)) {
832 if (const Expr *src = op->getSourceExpr())
833 return isBlockVarRef(src);
834
835 // Casts are necessary to get things like (*(int*)&var) = foo().
836 // We don't really care about the kind of cast here, except
837 // we don't want to look through l2r casts, because it's okay
838 // to get the *value* in a __block variable.
839 } else if (const CastExpr *cast = dyn_cast<CastExpr>(E)) {
840 if (cast->getCastKind() == CK_LValueToRValue)
841 return false;
842 return isBlockVarRef(cast->getSubExpr());
843
844 // Handle unary operators. Again, just aggressively look through
845 // it, ignoring the operation.
846 } else if (const UnaryOperator *uop = dyn_cast<UnaryOperator>(E)) {
847 return isBlockVarRef(uop->getSubExpr());
848
849 // Look into the base of a field access.
850 } else if (const MemberExpr *mem = dyn_cast<MemberExpr>(E)) {
851 return isBlockVarRef(mem->getBase());
852
853 // Look into the base of a subscript.
854 } else if (const ArraySubscriptExpr *sub = dyn_cast<ArraySubscriptExpr>(E)) {
855 return isBlockVarRef(sub->getBase());
856 }
857
858 return false;
Chris Lattneree755f92007-08-21 04:59:27 +0000859}
860
Chris Lattner03d6fb92007-08-21 04:43:17 +0000861void AggExprEmitter::VisitBinAssign(const BinaryOperator *E) {
Eli Friedmanff6e2b72008-02-11 01:09:17 +0000862 // For an assignment to work, the value on the right has
863 // to be compatible with the value on the left.
Eli Friedman2dce5f82009-05-28 23:04:00 +0000864 assert(CGF.getContext().hasSameUnqualifiedType(E->getLHS()->getType(),
865 E->getRHS()->getType())
Eli Friedmanff6e2b72008-02-11 01:09:17 +0000866 && "Invalid assignment");
John McCallcd940a12010-12-06 06:10:02 +0000867
John McCalle0c11682012-07-02 23:58:38 +0000868 // If the LHS might be a __block variable, and the RHS can
869 // potentially cause a block copy, we need to evaluate the RHS first
870 // so that the assignment goes the right place.
871 // This is pretty semantically fragile.
872 if (isBlockVarRef(E->getLHS()) &&
873 E->getRHS()->HasSideEffects(CGF.getContext())) {
874 // Ensure that we have a destination, and evaluate the RHS into that.
875 EnsureDest(E->getRHS()->getType());
876 Visit(E->getRHS());
877
878 // Now emit the LHS and copy into it.
Richard Smith4def70d2012-10-09 19:52:38 +0000879 LValue LHS = CGF.EmitCheckedLValue(E->getLHS(), CodeGenFunction::TCK_Store);
John McCalle0c11682012-07-02 23:58:38 +0000880
John McCall9eda3ab2013-03-07 21:37:17 +0000881 // That copy is an atomic copy if the LHS is atomic.
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700882 if (LHS.getType()->isAtomicType() ||
883 CGF.LValueIsSuitableForInlineAtomic(LHS)) {
John McCall9eda3ab2013-03-07 21:37:17 +0000884 CGF.EmitAtomicStore(Dest.asRValue(), LHS, /*isInit*/ false);
885 return;
886 }
887
John McCalle0c11682012-07-02 23:58:38 +0000888 EmitCopy(E->getLHS()->getType(),
889 AggValueSlot::forLValue(LHS, AggValueSlot::IsDestructed,
890 needsGC(E->getLHS()->getType()),
891 AggValueSlot::IsAliased),
892 Dest);
893 return;
894 }
Chad Rosier649b4a12012-03-29 17:37:10 +0000895
Chris Lattner9c033562007-08-21 04:25:47 +0000896 LValue LHS = CGF.EmitLValue(E->getLHS());
Chris Lattner883f6a72007-08-11 00:04:45 +0000897
John McCall9eda3ab2013-03-07 21:37:17 +0000898 // If we have an atomic type, evaluate into the destination and then
899 // do an atomic copy.
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700900 if (LHS.getType()->isAtomicType() ||
901 CGF.LValueIsSuitableForInlineAtomic(LHS)) {
John McCall9eda3ab2013-03-07 21:37:17 +0000902 EnsureDest(E->getRHS()->getType());
903 Visit(E->getRHS());
904 CGF.EmitAtomicStore(Dest.asRValue(), LHS, /*isInit*/ false);
905 return;
906 }
907
John McCalldb458062011-11-07 03:59:57 +0000908 // Codegen the RHS so that it stores directly into the LHS.
909 AggValueSlot LHSSlot =
910 AggValueSlot::forLValue(LHS, AggValueSlot::IsDestructed,
911 needsGC(E->getLHS()->getType()),
Chad Rosier649b4a12012-03-29 17:37:10 +0000912 AggValueSlot::IsAliased);
Fariborz Jahanian3ac83d62013-01-25 23:57:05 +0000913 // A non-volatile aggregate destination might have volatile member.
914 if (!LHSSlot.isVolatile() &&
915 CGF.hasVolatileMember(E->getLHS()->getType()))
916 LHSSlot.setVolatile(true);
917
John McCalle0c11682012-07-02 23:58:38 +0000918 CGF.EmitAggExpr(E->getRHS(), LHSSlot);
919
920 // Copy into the destination if the assignment isn't ignored.
921 EmitFinalDestCopy(E->getType(), LHS);
Chris Lattner883f6a72007-08-11 00:04:45 +0000922}
923
John McCall56ca35d2011-02-17 10:25:35 +0000924void AggExprEmitter::
925VisitAbstractConditionalOperator(const AbstractConditionalOperator *E) {
Daniel Dunbar9615ecb2008-11-13 01:38:36 +0000926 llvm::BasicBlock *LHSBlock = CGF.createBasicBlock("cond.true");
927 llvm::BasicBlock *RHSBlock = CGF.createBasicBlock("cond.false");
928 llvm::BasicBlock *ContBlock = CGF.createBasicBlock("cond.end");
Mike Stump1eb44332009-09-09 15:08:12 +0000929
John McCall56ca35d2011-02-17 10:25:35 +0000930 // Bind the common expression if necessary.
Eli Friedmand97927d2012-01-06 20:42:20 +0000931 CodeGenFunction::OpaqueValueMapping binding(CGF, E);
John McCall56ca35d2011-02-17 10:25:35 +0000932
John McCall150b4622011-01-26 04:00:11 +0000933 CodeGenFunction::ConditionalEvaluation eval(CGF);
Pirama Arumuga Nainarb6d69932015-07-01 12:25:36 -0700934 CGF.EmitBranchOnBoolExpr(E->getCond(), LHSBlock, RHSBlock,
935 CGF.getProfileCount(E));
Mike Stump1eb44332009-09-09 15:08:12 +0000936
John McCall74fb0ed2010-11-17 00:07:33 +0000937 // Save whether the destination's lifetime is externally managed.
John McCallfd71fb82011-08-26 08:02:37 +0000938 bool isExternallyDestructed = Dest.isExternallyDestructed();
Chris Lattner883f6a72007-08-11 00:04:45 +0000939
John McCall150b4622011-01-26 04:00:11 +0000940 eval.begin(CGF);
941 CGF.EmitBlock(LHSBlock);
Pirama Arumuga Nainarb6d69932015-07-01 12:25:36 -0700942 CGF.incrementProfileCounter(E);
John McCall56ca35d2011-02-17 10:25:35 +0000943 Visit(E->getTrueExpr());
John McCall150b4622011-01-26 04:00:11 +0000944 eval.end(CGF);
Mike Stump1eb44332009-09-09 15:08:12 +0000945
John McCall150b4622011-01-26 04:00:11 +0000946 assert(CGF.HaveInsertPoint() && "expression evaluation ended with no IP!");
947 CGF.Builder.CreateBr(ContBlock);
Mike Stump1eb44332009-09-09 15:08:12 +0000948
John McCall74fb0ed2010-11-17 00:07:33 +0000949 // If the result of an agg expression is unused, then the emission
950 // of the LHS might need to create a destination slot. That's fine
951 // with us, and we can safely emit the RHS into the same slot, but
John McCallfd71fb82011-08-26 08:02:37 +0000952 // we shouldn't claim that it's already being destructed.
953 Dest.setExternallyDestructed(isExternallyDestructed);
John McCall74fb0ed2010-11-17 00:07:33 +0000954
John McCall150b4622011-01-26 04:00:11 +0000955 eval.begin(CGF);
956 CGF.EmitBlock(RHSBlock);
John McCall56ca35d2011-02-17 10:25:35 +0000957 Visit(E->getFalseExpr());
John McCall150b4622011-01-26 04:00:11 +0000958 eval.end(CGF);
Mike Stump1eb44332009-09-09 15:08:12 +0000959
Chris Lattner9c033562007-08-21 04:25:47 +0000960 CGF.EmitBlock(ContBlock);
Chris Lattner883f6a72007-08-11 00:04:45 +0000961}
Chris Lattneree755f92007-08-21 04:59:27 +0000962
Anders Carlssona294ca82009-07-08 18:33:14 +0000963void AggExprEmitter::VisitChooseExpr(const ChooseExpr *CE) {
Eli Friedmana5e66012013-07-20 00:40:58 +0000964 Visit(CE->getChosenSubExpr());
Anders Carlssona294ca82009-07-08 18:33:14 +0000965}
966
Eli Friedmanb1851242008-05-27 15:51:49 +0000967void AggExprEmitter::VisitVAArgExpr(VAArgExpr *VE) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800968 Address ArgValue = Address::invalid();
969 Address ArgPtr = CGF.EmitVAArg(VE, ArgValue);
Anders Carlssonddf7cac2008-11-04 05:30:00 +0000970
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700971 // If EmitVAArg fails, emit an error.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800972 if (!ArgPtr.isValid()) {
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700973 CGF.ErrorUnsupported(VE, "aggregate va_arg expression");
Sebastian Redl0262f022009-01-09 21:09:38 +0000974 return;
975 }
976
John McCalle0c11682012-07-02 23:58:38 +0000977 EmitFinalDestCopy(VE->getType(), CGF.MakeAddrLValue(ArgPtr, VE->getType()));
Eli Friedmanb1851242008-05-27 15:51:49 +0000978}
979
Anders Carlssonb58d0172009-05-30 23:23:33 +0000980void AggExprEmitter::VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E) {
John McCall558d2ab2010-09-15 10:14:12 +0000981 // Ensure that we have a slot, but if we already do, remember
John McCallfd71fb82011-08-26 08:02:37 +0000982 // whether it was externally destructed.
983 bool wasExternallyDestructed = Dest.isExternallyDestructed();
John McCalle0c11682012-07-02 23:58:38 +0000984 EnsureDest(E->getType());
John McCallfd71fb82011-08-26 08:02:37 +0000985
986 // We're going to push a destructor if there isn't already one.
987 Dest.setExternallyDestructed();
Mike Stump1eb44332009-09-09 15:08:12 +0000988
John McCall558d2ab2010-09-15 10:14:12 +0000989 Visit(E->getSubExpr());
Anders Carlssonb58d0172009-05-30 23:23:33 +0000990
John McCallfd71fb82011-08-26 08:02:37 +0000991 // Push that destructor we promised.
992 if (!wasExternallyDestructed)
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800993 CGF.EmitCXXTemporary(E->getTemporary(), E->getType(), Dest.getAddress());
Anders Carlssonb58d0172009-05-30 23:23:33 +0000994}
995
Anders Carlssonb14095a2009-04-17 00:06:03 +0000996void
Anders Carlsson31ccf372009-05-03 17:47:16 +0000997AggExprEmitter::VisitCXXConstructExpr(const CXXConstructExpr *E) {
John McCall558d2ab2010-09-15 10:14:12 +0000998 AggValueSlot Slot = EnsureSlot(E->getType());
999 CGF.EmitCXXConstructExpr(E, Slot);
Anders Carlsson7f6ad152009-05-19 04:48:36 +00001000}
1001
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07001002void AggExprEmitter::VisitCXXInheritedCtorInitExpr(
1003 const CXXInheritedCtorInitExpr *E) {
1004 AggValueSlot Slot = EnsureSlot(E->getType());
1005 CGF.EmitInheritedCXXConstructorCall(
1006 E->getConstructor(), E->constructsVBase(), Slot.getAddress(),
1007 E->inheritedFromVBase(), E);
1008}
1009
Eli Friedman4c5d8af2012-02-09 03:32:31 +00001010void
1011AggExprEmitter::VisitLambdaExpr(LambdaExpr *E) {
1012 AggValueSlot Slot = EnsureSlot(E->getType());
1013 CGF.EmitLambdaExpr(E, Slot);
1014}
1015
John McCall4765fa02010-12-06 08:20:24 +00001016void AggExprEmitter::VisitExprWithCleanups(ExprWithCleanups *E) {
John McCall1a343eb2011-11-10 08:15:53 +00001017 CGF.enterFullExpression(E);
1018 CodeGenFunction::RunCleanupsScope cleanups(CGF);
1019 Visit(E->getSubExpr());
Anders Carlssonb14095a2009-04-17 00:06:03 +00001020}
1021
Douglas Gregored8abf12010-07-08 06:14:04 +00001022void AggExprEmitter::VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *E) {
John McCall558d2ab2010-09-15 10:14:12 +00001023 QualType T = E->getType();
1024 AggValueSlot Slot = EnsureSlot(T);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001025 EmitNullInitializationToLValue(CGF.MakeAddrLValue(Slot.getAddress(), T));
Anders Carlsson30311fa2009-12-16 06:57:54 +00001026}
1027
1028void AggExprEmitter::VisitImplicitValueInitExpr(ImplicitValueInitExpr *E) {
John McCall558d2ab2010-09-15 10:14:12 +00001029 QualType T = E->getType();
1030 AggValueSlot Slot = EnsureSlot(T);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001031 EmitNullInitializationToLValue(CGF.MakeAddrLValue(Slot.getAddress(), T));
Nuno Lopes329763b2009-10-18 15:18:11 +00001032}
1033
Chris Lattner1b726772010-12-02 07:07:26 +00001034/// isSimpleZero - If emitting this value will obviously just cause a store of
1035/// zero to memory, return true. This can return false if uncertain, so it just
1036/// handles simple cases.
1037static bool isSimpleZero(const Expr *E, CodeGenFunction &CGF) {
Peter Collingbournef111d932011-04-15 00:35:48 +00001038 E = E->IgnoreParens();
1039
Chris Lattner1b726772010-12-02 07:07:26 +00001040 // 0
1041 if (const IntegerLiteral *IL = dyn_cast<IntegerLiteral>(E))
1042 return IL->getValue() == 0;
1043 // +0.0
1044 if (const FloatingLiteral *FL = dyn_cast<FloatingLiteral>(E))
1045 return FL->getValue().isPosZero();
1046 // int()
1047 if ((isa<ImplicitValueInitExpr>(E) || isa<CXXScalarValueInitExpr>(E)) &&
1048 CGF.getTypes().isZeroInitializable(E->getType()))
1049 return true;
1050 // (int*)0 - Null pointer expressions.
1051 if (const CastExpr *ICE = dyn_cast<CastExpr>(E))
1052 return ICE->getCastKind() == CK_NullToPointer;
1053 // '\0'
1054 if (const CharacterLiteral *CL = dyn_cast<CharacterLiteral>(E))
1055 return CL->getValue() == 0;
1056
1057 // Otherwise, hard case: conservatively return false.
1058 return false;
1059}
1060
1061
Anders Carlsson78e83f82010-02-03 17:33:16 +00001062void
Nick Lewycky4ee7dc22013-10-02 02:29:49 +00001063AggExprEmitter::EmitInitializationToLValue(Expr *E, LValue LV) {
John McCalla07398e2011-06-16 04:16:24 +00001064 QualType type = LV.getType();
Mike Stump7f79f9b2009-05-29 15:46:01 +00001065 // FIXME: Ignore result?
Chris Lattnerf81557c2008-04-04 18:42:16 +00001066 // FIXME: Are initializers affected by volatile?
Chris Lattner1b726772010-12-02 07:07:26 +00001067 if (Dest.isZeroed() && isSimpleZero(E, CGF)) {
1068 // Storing "i32 0" to a zero'd memory location is a noop.
John McCall9d232c82013-03-07 21:37:08 +00001069 return;
Richard Smith0dbe2fb2012-12-21 03:17:28 +00001070 } else if (isa<ImplicitValueInitExpr>(E) || isa<CXXScalarValueInitExpr>(E)) {
John McCall9d232c82013-03-07 21:37:08 +00001071 return EmitNullInitializationToLValue(LV);
Pirama Arumuga Nainarb6d69932015-07-01 12:25:36 -07001072 } else if (isa<NoInitExpr>(E)) {
1073 // Do nothing.
1074 return;
John McCalla07398e2011-06-16 04:16:24 +00001075 } else if (type->isReferenceType()) {
Richard Smithd4ec5622013-06-12 23:38:09 +00001076 RValue RV = CGF.EmitReferenceBindingToExpr(E);
John McCall9d232c82013-03-07 21:37:08 +00001077 return CGF.EmitStoreThroughLValue(RV, LV);
1078 }
1079
1080 switch (CGF.getEvaluationKind(type)) {
1081 case TEK_Complex:
1082 CGF.EmitComplexExprIntoLValue(E, LV, /*isInit*/ true);
1083 return;
1084 case TEK_Aggregate:
John McCall7c2349b2011-08-25 20:40:09 +00001085 CGF.EmitAggExpr(E, AggValueSlot::forLValue(LV,
1086 AggValueSlot::IsDestructed,
1087 AggValueSlot::DoesNotNeedGCBarriers,
John McCall410ffb22011-08-25 23:04:34 +00001088 AggValueSlot::IsNotAliased,
John McCalla07398e2011-06-16 04:16:24 +00001089 Dest.isZeroed()));
John McCall9d232c82013-03-07 21:37:08 +00001090 return;
1091 case TEK_Scalar:
1092 if (LV.isSimple()) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001093 CGF.EmitScalarInit(E, /*D=*/nullptr, LV, /*Captured=*/false);
John McCall9d232c82013-03-07 21:37:08 +00001094 } else {
1095 CGF.EmitStoreThroughLValue(RValue::get(CGF.EmitScalarExpr(E)), LV);
1096 }
1097 return;
Chris Lattnerf81557c2008-04-04 18:42:16 +00001098 }
John McCall9d232c82013-03-07 21:37:08 +00001099 llvm_unreachable("bad evaluation kind");
Chris Lattnerf81557c2008-04-04 18:42:16 +00001100}
1101
John McCalla07398e2011-06-16 04:16:24 +00001102void AggExprEmitter::EmitNullInitializationToLValue(LValue lv) {
1103 QualType type = lv.getType();
1104
Chris Lattner1b726772010-12-02 07:07:26 +00001105 // If the destination slot is already zeroed out before the aggregate is
1106 // copied into it, we don't have to emit any zeros here.
John McCalla07398e2011-06-16 04:16:24 +00001107 if (Dest.isZeroed() && CGF.getTypes().isZeroInitializable(type))
Chris Lattner1b726772010-12-02 07:07:26 +00001108 return;
1109
John McCall9d232c82013-03-07 21:37:08 +00001110 if (CGF.hasScalarEvaluationKind(type)) {
Richard Smith0dbe2fb2012-12-21 03:17:28 +00001111 // For non-aggregates, we can store the appropriate null constant.
1112 llvm::Value *null = CGF.CGM.EmitNullConstant(type);
Eli Friedmanb1e3f322012-02-22 05:38:59 +00001113 // Note that the following is not equivalent to
1114 // EmitStoreThroughBitfieldLValue for ARC types.
Eli Friedman5a13d4d2012-02-24 23:53:49 +00001115 if (lv.isBitField()) {
Eli Friedmanb1e3f322012-02-22 05:38:59 +00001116 CGF.EmitStoreThroughBitfieldLValue(RValue::get(null), lv);
Eli Friedman5a13d4d2012-02-24 23:53:49 +00001117 } else {
1118 assert(lv.isSimple());
1119 CGF.EmitStoreOfScalar(null, lv, /* isInitialization */ true);
1120 }
Lauro Ramos Venancio145cd892008-02-19 19:27:31 +00001121 } else {
Chris Lattnerf81557c2008-04-04 18:42:16 +00001122 // There's a potential optimization opportunity in combining
1123 // memsets; that would be easy for arrays, but relatively
1124 // difficult for structures with the current code.
John McCalla07398e2011-06-16 04:16:24 +00001125 CGF.EmitNullInitialization(lv.getAddress(), lv.getType());
Chris Lattnerf81557c2008-04-04 18:42:16 +00001126 }
1127}
1128
Chris Lattnerf81557c2008-04-04 18:42:16 +00001129void AggExprEmitter::VisitInitListExpr(InitListExpr *E) {
Eli Friedmana385b3c2008-12-02 01:17:45 +00001130#if 0
Eli Friedman13a5be12009-12-04 01:30:56 +00001131 // FIXME: Assess perf here? Figure out what cases are worth optimizing here
1132 // (Length of globals? Chunks of zeroed-out space?).
Eli Friedmana385b3c2008-12-02 01:17:45 +00001133 //
Mike Stumpf5408fe2009-05-16 07:57:57 +00001134 // If we can, prefer a copy from a global; this is a lot less code for long
1135 // globals, and it's easier for the current optimizers to analyze.
Eli Friedman13a5be12009-12-04 01:30:56 +00001136 if (llvm::Constant* C = CGF.CGM.EmitConstantExpr(E, E->getType(), &CGF)) {
Eli Friedman994ffef2008-11-30 02:11:09 +00001137 llvm::GlobalVariable* GV =
Eli Friedman13a5be12009-12-04 01:30:56 +00001138 new llvm::GlobalVariable(CGF.CGM.getModule(), C->getType(), true,
1139 llvm::GlobalValue::InternalLinkage, C, "");
John McCalle0c11682012-07-02 23:58:38 +00001140 EmitFinalDestCopy(E->getType(), CGF.MakeAddrLValue(GV, E->getType()));
Eli Friedman994ffef2008-11-30 02:11:09 +00001141 return;
1142 }
Eli Friedmana385b3c2008-12-02 01:17:45 +00001143#endif
Chris Lattnerd0db03a2010-09-06 00:11:41 +00001144 if (E->hadArrayRangeDesignator())
Douglas Gregora9c87802009-01-29 19:42:23 +00001145 CGF.ErrorUnsupported(E, "GNU array range designator extension");
Douglas Gregora9c87802009-01-29 19:42:23 +00001146
Richard Smithe69fb202013-05-23 21:54:14 +00001147 AggValueSlot Dest = EnsureSlot(E->getType());
1148
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001149 LValue DestLV = CGF.MakeAddrLValue(Dest.getAddress(), E->getType());
John McCall558d2ab2010-09-15 10:14:12 +00001150
Chris Lattnerf81557c2008-04-04 18:42:16 +00001151 // Handle initialization of an array.
1152 if (E->getType()->isArrayType()) {
Richard Smithfe587202012-04-15 02:50:59 +00001153 if (E->isStringLiteralInit())
1154 return Visit(E->getInit(0));
Eli Friedman922696f2008-05-19 17:51:16 +00001155
Eli Friedman5c89c392012-02-23 02:25:10 +00001156 QualType elementType =
1157 CGF.getContext().getAsArrayType(E->getType())->getElementType();
Argyrios Kyrtzidis3b4d4902011-04-28 18:53:58 +00001158
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001159 auto AType = cast<llvm::ArrayType>(Dest.getAddress().getElementType());
1160 EmitArrayInit(Dest.getAddress(), AType, elementType, E);
Chris Lattnerf81557c2008-04-04 18:42:16 +00001161 return;
1162 }
Mike Stump1eb44332009-09-09 15:08:12 +00001163
Stephen Hines176edba2014-12-01 14:53:08 -08001164 if (E->getType()->isAtomicType()) {
1165 // An _Atomic(T) object can be list-initialized from an expression
1166 // of the same type.
1167 assert(E->getNumInits() == 1 &&
1168 CGF.getContext().hasSameUnqualifiedType(E->getInit(0)->getType(),
1169 E->getType()) &&
1170 "unexpected list initialization for atomic object");
1171 return Visit(E->getInit(0));
1172 }
1173
Chris Lattnerf81557c2008-04-04 18:42:16 +00001174 assert(E->getType()->isRecordType() && "Only support structs/unions here!");
Mike Stump1eb44332009-09-09 15:08:12 +00001175
Chris Lattnerf81557c2008-04-04 18:42:16 +00001176 // Do struct initialization; this code just sets each individual member
1177 // to the approprate value. This makes bitfield support automatic;
1178 // the disadvantage is that the generated code is more difficult for
1179 // the optimizer, especially with bitfields.
1180 unsigned NumInitElements = E->getNumInits();
John McCall2b30dcf2011-07-11 19:35:02 +00001181 RecordDecl *record = E->getType()->castAs<RecordType>()->getDecl();
Richard Smithc3bf52c2013-04-20 22:23:05 +00001182
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07001183 // We'll need to enter cleanup scopes in case any of the element
1184 // initializers throws an exception.
1185 SmallVector<EHScopeStack::stable_iterator, 16> cleanups;
1186 llvm::Instruction *cleanupDominator = nullptr;
1187
1188 unsigned curInitIndex = 0;
1189
1190 // Emit initialization of base classes.
1191 if (auto *CXXRD = dyn_cast<CXXRecordDecl>(record)) {
1192 assert(E->getNumInits() >= CXXRD->getNumBases() &&
1193 "missing initializer for base class");
1194 for (auto &Base : CXXRD->bases()) {
1195 assert(!Base.isVirtual() && "should not see vbases here");
1196 auto *BaseRD = Base.getType()->getAsCXXRecordDecl();
1197 Address V = CGF.GetAddressOfDirectBaseInCompleteClass(
1198 Dest.getAddress(), CXXRD, BaseRD,
1199 /*isBaseVirtual*/ false);
1200 AggValueSlot AggSlot =
1201 AggValueSlot::forAddr(V, Qualifiers(),
1202 AggValueSlot::IsDestructed,
1203 AggValueSlot::DoesNotNeedGCBarriers,
1204 AggValueSlot::IsNotAliased);
1205 CGF.EmitAggExpr(E->getInit(curInitIndex++), AggSlot);
1206
1207 if (QualType::DestructionKind dtorKind =
1208 Base.getType().isDestructedType()) {
1209 CGF.pushDestroy(dtorKind, V, Base.getType());
1210 cleanups.push_back(CGF.EHStack.stable_begin());
1211 }
1212 }
1213 }
1214
Richard Smithc3bf52c2013-04-20 22:23:05 +00001215 // Prepare a 'this' for CXXDefaultInitExprs.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001216 CodeGenFunction::FieldConstructionScope FCS(CGF, Dest.getAddress());
Richard Smithc3bf52c2013-04-20 22:23:05 +00001217
John McCall2b30dcf2011-07-11 19:35:02 +00001218 if (record->isUnion()) {
Douglas Gregor0bb76892009-01-29 16:53:55 +00001219 // Only initialize one field of a union. The field itself is
1220 // specified by the initializer list.
1221 if (!E->getInitializedFieldInUnion()) {
1222 // Empty union; we have nothing to do.
Mike Stump1eb44332009-09-09 15:08:12 +00001223
Douglas Gregor0bb76892009-01-29 16:53:55 +00001224#ifndef NDEBUG
1225 // Make sure that it's really an empty and not a failure of
1226 // semantic analysis.
Stephen Hines651f13c2014-04-23 16:59:28 -07001227 for (const auto *Field : record->fields())
Douglas Gregor0bb76892009-01-29 16:53:55 +00001228 assert(Field->isUnnamedBitfield() && "Only unnamed bitfields allowed");
1229#endif
1230 return;
1231 }
1232
1233 // FIXME: volatility
1234 FieldDecl *Field = E->getInitializedFieldInUnion();
Douglas Gregor0bb76892009-01-29 16:53:55 +00001235
Eli Friedman377ecc72012-04-16 03:54:45 +00001236 LValue FieldLoc = CGF.EmitLValueForFieldInitialization(DestLV, Field);
Douglas Gregor0bb76892009-01-29 16:53:55 +00001237 if (NumInitElements) {
1238 // Store the initializer into the field
Chad Rosier649b4a12012-03-29 17:37:10 +00001239 EmitInitializationToLValue(E->getInit(0), FieldLoc);
Douglas Gregor0bb76892009-01-29 16:53:55 +00001240 } else {
Chris Lattner1b726772010-12-02 07:07:26 +00001241 // Default-initialize to null.
John McCalla07398e2011-06-16 04:16:24 +00001242 EmitNullInitializationToLValue(FieldLoc);
Douglas Gregor0bb76892009-01-29 16:53:55 +00001243 }
1244
1245 return;
1246 }
Mike Stump1eb44332009-09-09 15:08:12 +00001247
Chris Lattnerf81557c2008-04-04 18:42:16 +00001248 // Here we iterate over the fields; this makes it simpler to both
1249 // default-initialize fields and skip over unnamed fields.
Stephen Hines651f13c2014-04-23 16:59:28 -07001250 for (const auto *field : record->fields()) {
John McCall2b30dcf2011-07-11 19:35:02 +00001251 // We're done once we hit the flexible array member.
1252 if (field->getType()->isIncompleteArrayType())
Douglas Gregor44b43212008-12-11 16:49:14 +00001253 break;
1254
John McCall2b30dcf2011-07-11 19:35:02 +00001255 // Always skip anonymous bitfields.
1256 if (field->isUnnamedBitfield())
Chris Lattnerf81557c2008-04-04 18:42:16 +00001257 continue;
Douglas Gregor34e79462009-01-28 23:36:17 +00001258
John McCall2b30dcf2011-07-11 19:35:02 +00001259 // We're done if we reach the end of the explicit initializers, we
1260 // have a zeroed object, and the rest of the fields are
1261 // zero-initializable.
1262 if (curInitIndex == NumInitElements && Dest.isZeroed() &&
Chris Lattner1b726772010-12-02 07:07:26 +00001263 CGF.getTypes().isZeroInitializable(E->getType()))
1264 break;
1265
Eli Friedman377ecc72012-04-16 03:54:45 +00001266
Stephen Hines651f13c2014-04-23 16:59:28 -07001267 LValue LV = CGF.EmitLValueForFieldInitialization(DestLV, field);
Fariborz Jahanian14674ff2009-05-27 19:54:11 +00001268 // We never generate write-barries for initialized fields.
John McCall2b30dcf2011-07-11 19:35:02 +00001269 LV.setNonGC(true);
Chris Lattner1b726772010-12-02 07:07:26 +00001270
John McCall2b30dcf2011-07-11 19:35:02 +00001271 if (curInitIndex < NumInitElements) {
Chris Lattnerb35baae2010-03-08 21:08:07 +00001272 // Store the initializer into the field.
Chad Rosier649b4a12012-03-29 17:37:10 +00001273 EmitInitializationToLValue(E->getInit(curInitIndex++), LV);
Chris Lattnerf81557c2008-04-04 18:42:16 +00001274 } else {
1275 // We're out of initalizers; default-initialize to null
John McCall2b30dcf2011-07-11 19:35:02 +00001276 EmitNullInitializationToLValue(LV);
1277 }
1278
1279 // Push a destructor if necessary.
1280 // FIXME: if we have an array of structures, all explicitly
1281 // initialized, we can end up pushing a linear number of cleanups.
1282 bool pushedCleanup = false;
1283 if (QualType::DestructionKind dtorKind
1284 = field->getType().isDestructedType()) {
1285 assert(LV.isSimple());
1286 if (CGF.needsEHCleanup(dtorKind)) {
John McCall6f103ba2011-11-10 10:43:54 +00001287 if (!cleanupDominator)
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001288 cleanupDominator = CGF.Builder.CreateAlignedLoad(
1289 CGF.Int8Ty,
1290 llvm::Constant::getNullValue(CGF.Int8PtrTy),
1291 CharUnits::One()); // placeholder
John McCall6f103ba2011-11-10 10:43:54 +00001292
John McCall2b30dcf2011-07-11 19:35:02 +00001293 CGF.pushDestroy(EHCleanup, LV.getAddress(), field->getType(),
1294 CGF.getDestroyer(dtorKind), false);
1295 cleanups.push_back(CGF.EHStack.stable_begin());
1296 pushedCleanup = true;
1297 }
Chris Lattnerf81557c2008-04-04 18:42:16 +00001298 }
Chris Lattner1b726772010-12-02 07:07:26 +00001299
1300 // If the GEP didn't get used because of a dead zero init or something
1301 // else, clean it up for -O0 builds and general tidiness.
John McCall2b30dcf2011-07-11 19:35:02 +00001302 if (!pushedCleanup && LV.isSimple())
Chris Lattner1b726772010-12-02 07:07:26 +00001303 if (llvm::GetElementPtrInst *GEP =
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001304 dyn_cast<llvm::GetElementPtrInst>(LV.getPointer()))
Chris Lattner1b726772010-12-02 07:07:26 +00001305 if (GEP->use_empty())
1306 GEP->eraseFromParent();
Lauro Ramos Venancio145cd892008-02-19 19:27:31 +00001307 }
John McCall2b30dcf2011-07-11 19:35:02 +00001308
1309 // Deactivate all the partial cleanups in reverse order, which
1310 // generally means popping them.
1311 for (unsigned i = cleanups.size(); i != 0; --i)
John McCall6f103ba2011-11-10 10:43:54 +00001312 CGF.DeactivateCleanupBlock(cleanups[i-1], cleanupDominator);
1313
1314 // Destroy the placeholder if we made one.
1315 if (cleanupDominator)
1316 cleanupDominator->eraseFromParent();
Devang Patel636c3d02007-10-26 17:44:44 +00001317}
1318
Pirama Arumuga Nainarb6d69932015-07-01 12:25:36 -07001319void AggExprEmitter::VisitDesignatedInitUpdateExpr(DesignatedInitUpdateExpr *E) {
1320 AggValueSlot Dest = EnsureSlot(E->getType());
1321
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001322 LValue DestLV = CGF.MakeAddrLValue(Dest.getAddress(), E->getType());
Pirama Arumuga Nainarb6d69932015-07-01 12:25:36 -07001323 EmitInitializationToLValue(E->getBase(), DestLV);
1324 VisitInitListExpr(E->getUpdater());
1325}
1326
Chris Lattneree755f92007-08-21 04:59:27 +00001327//===----------------------------------------------------------------------===//
1328// Entry Points into this File
1329//===----------------------------------------------------------------------===//
1330
Chris Lattner1b726772010-12-02 07:07:26 +00001331/// GetNumNonZeroBytesInInit - Get an approximate count of the number of
1332/// non-zero bytes that will be stored when outputting the initializer for the
1333/// specified initializer expression.
Ken Dyck02c45332011-04-24 17:17:56 +00001334static CharUnits GetNumNonZeroBytesInInit(const Expr *E, CodeGenFunction &CGF) {
Peter Collingbournef111d932011-04-15 00:35:48 +00001335 E = E->IgnoreParens();
Chris Lattner1b726772010-12-02 07:07:26 +00001336
1337 // 0 and 0.0 won't require any non-zero stores!
Ken Dyck02c45332011-04-24 17:17:56 +00001338 if (isSimpleZero(E, CGF)) return CharUnits::Zero();
Chris Lattner1b726772010-12-02 07:07:26 +00001339
1340 // If this is an initlist expr, sum up the size of sizes of the (present)
1341 // elements. If this is something weird, assume the whole thing is non-zero.
1342 const InitListExpr *ILE = dyn_cast<InitListExpr>(E);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001343 if (!ILE || !CGF.getTypes().isZeroInitializable(ILE->getType()))
Ken Dyck02c45332011-04-24 17:17:56 +00001344 return CGF.getContext().getTypeSizeInChars(E->getType());
Chris Lattner1b726772010-12-02 07:07:26 +00001345
Chris Lattnerd1d56df2010-12-02 18:29:00 +00001346 // InitListExprs for structs have to be handled carefully. If there are
1347 // reference members, we need to consider the size of the reference, not the
1348 // referencee. InitListExprs for unions and arrays can't have references.
Chris Lattner8c00ad12010-12-02 22:52:04 +00001349 if (const RecordType *RT = E->getType()->getAs<RecordType>()) {
1350 if (!RT->isUnionType()) {
1351 RecordDecl *SD = E->getType()->getAs<RecordType>()->getDecl();
Ken Dyck02c45332011-04-24 17:17:56 +00001352 CharUnits NumNonZeroBytes = CharUnits::Zero();
Chris Lattner8c00ad12010-12-02 22:52:04 +00001353
1354 unsigned ILEElement = 0;
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07001355 if (auto *CXXRD = dyn_cast<CXXRecordDecl>(SD))
1356 while (ILEElement != CXXRD->getNumBases())
1357 NumNonZeroBytes +=
1358 GetNumNonZeroBytesInInit(ILE->getInit(ILEElement++), CGF);
Stephen Hines651f13c2014-04-23 16:59:28 -07001359 for (const auto *Field : SD->fields()) {
Chris Lattner8c00ad12010-12-02 22:52:04 +00001360 // We're done once we hit the flexible array member or run out of
1361 // InitListExpr elements.
1362 if (Field->getType()->isIncompleteArrayType() ||
1363 ILEElement == ILE->getNumInits())
1364 break;
1365 if (Field->isUnnamedBitfield())
1366 continue;
Chris Lattnerd1d56df2010-12-02 18:29:00 +00001367
Chris Lattner8c00ad12010-12-02 22:52:04 +00001368 const Expr *E = ILE->getInit(ILEElement++);
1369
1370 // Reference values are always non-null and have the width of a pointer.
1371 if (Field->getType()->isReferenceType())
Ken Dyck02c45332011-04-24 17:17:56 +00001372 NumNonZeroBytes += CGF.getContext().toCharUnitsFromBits(
John McCall64aa4b32013-04-16 22:48:15 +00001373 CGF.getTarget().getPointerWidth(0));
Chris Lattner8c00ad12010-12-02 22:52:04 +00001374 else
1375 NumNonZeroBytes += GetNumNonZeroBytesInInit(E, CGF);
1376 }
Chris Lattnerd1d56df2010-12-02 18:29:00 +00001377
Chris Lattner8c00ad12010-12-02 22:52:04 +00001378 return NumNonZeroBytes;
Chris Lattnerd1d56df2010-12-02 18:29:00 +00001379 }
Chris Lattnerd1d56df2010-12-02 18:29:00 +00001380 }
1381
1382
Ken Dyck02c45332011-04-24 17:17:56 +00001383 CharUnits NumNonZeroBytes = CharUnits::Zero();
Chris Lattner1b726772010-12-02 07:07:26 +00001384 for (unsigned i = 0, e = ILE->getNumInits(); i != e; ++i)
1385 NumNonZeroBytes += GetNumNonZeroBytesInInit(ILE->getInit(i), CGF);
1386 return NumNonZeroBytes;
1387}
1388
1389/// CheckAggExprForMemSetUse - If the initializer is large and has a lot of
1390/// zeros in it, emit a memset and avoid storing the individual zeros.
1391///
1392static void CheckAggExprForMemSetUse(AggValueSlot &Slot, const Expr *E,
1393 CodeGenFunction &CGF) {
1394 // If the slot is already known to be zeroed, nothing to do. Don't mess with
1395 // volatile stores.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001396 if (Slot.isZeroed() || Slot.isVolatile() || !Slot.getAddress().isValid())
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001397 return;
Argyrios Kyrtzidis657baf12011-04-28 22:57:55 +00001398
1399 // C++ objects with a user-declared constructor don't need zero'ing.
Richard Smith7edf9e32012-11-01 22:30:59 +00001400 if (CGF.getLangOpts().CPlusPlus)
Argyrios Kyrtzidis657baf12011-04-28 22:57:55 +00001401 if (const RecordType *RT = CGF.getContext()
1402 .getBaseElementType(E->getType())->getAs<RecordType>()) {
1403 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
1404 if (RD->hasUserDeclaredConstructor())
1405 return;
1406 }
1407
Chris Lattner1b726772010-12-02 07:07:26 +00001408 // If the type is 16-bytes or smaller, prefer individual stores over memset.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001409 CharUnits Size = CGF.getContext().getTypeSizeInChars(E->getType());
1410 if (Size <= CharUnits::fromQuantity(16))
Chris Lattner1b726772010-12-02 07:07:26 +00001411 return;
1412
1413 // Check to see if over 3/4 of the initializer are known to be zero. If so,
1414 // we prefer to emit memset + individual stores for the rest.
Ken Dyck5ff1a352011-04-24 17:25:32 +00001415 CharUnits NumNonZeroBytes = GetNumNonZeroBytesInInit(E, CGF);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001416 if (NumNonZeroBytes*4 > Size)
Chris Lattner1b726772010-12-02 07:07:26 +00001417 return;
1418
1419 // Okay, it seems like a good idea to use an initial memset, emit the call.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001420 llvm::Constant *SizeVal = CGF.Builder.getInt64(Size.getQuantity());
Chris Lattner1b726772010-12-02 07:07:26 +00001421
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001422 Address Loc = Slot.getAddress();
1423 Loc = CGF.Builder.CreateElementBitCast(Loc, CGF.Int8Ty);
1424 CGF.Builder.CreateMemSet(Loc, CGF.Builder.getInt8(0), SizeVal, false);
Chris Lattner1b726772010-12-02 07:07:26 +00001425
1426 // Tell the AggExprEmitter that the slot is known zero.
1427 Slot.setZeroed();
1428}
1429
1430
1431
1432
Mike Stumpe1129a92009-05-26 18:57:45 +00001433/// EmitAggExpr - Emit the computation of the specified expression of aggregate
1434/// type. The result is computed into DestPtr. Note that if DestPtr is null,
1435/// the value of the aggregate expression is not needed. If VolatileDest is
1436/// true, DestPtr cannot be 0.
John McCalle0c11682012-07-02 23:58:38 +00001437void CodeGenFunction::EmitAggExpr(const Expr *E, AggValueSlot Slot) {
John McCall9d232c82013-03-07 21:37:08 +00001438 assert(E && hasAggregateEvaluationKind(E->getType()) &&
Chris Lattneree755f92007-08-21 04:59:27 +00001439 "Invalid aggregate expression to emit");
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001440 assert((Slot.getAddress().isValid() || Slot.isIgnored()) &&
Chris Lattner1b726772010-12-02 07:07:26 +00001441 "slot has bits but no address");
Mike Stump1eb44332009-09-09 15:08:12 +00001442
Chris Lattner1b726772010-12-02 07:07:26 +00001443 // Optimize the slot if possible.
1444 CheckAggExprForMemSetUse(Slot, E, *this);
1445
Pirama Arumuga Nainarb6d69932015-07-01 12:25:36 -07001446 AggExprEmitter(*this, Slot, Slot.isIgnored()).Visit(const_cast<Expr*>(E));
Chris Lattneree755f92007-08-21 04:59:27 +00001447}
Daniel Dunbar7482d122008-09-09 20:49:46 +00001448
Daniel Dunbar18aba0d2010-02-05 19:38:31 +00001449LValue CodeGenFunction::EmitAggExprToLValue(const Expr *E) {
John McCall9d232c82013-03-07 21:37:08 +00001450 assert(hasAggregateEvaluationKind(E->getType()) && "Invalid argument!");
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001451 Address Temp = CreateMemTemp(E->getType());
Daniel Dunbar79c39282010-08-21 03:15:20 +00001452 LValue LV = MakeAddrLValue(Temp, E->getType());
John McCall7c2349b2011-08-25 20:40:09 +00001453 EmitAggExpr(E, AggValueSlot::forLValue(LV, AggValueSlot::IsNotDestructed,
John McCall44184392011-08-26 07:31:35 +00001454 AggValueSlot::DoesNotNeedGCBarriers,
Chad Rosier649b4a12012-03-29 17:37:10 +00001455 AggValueSlot::IsNotAliased));
Daniel Dunbar79c39282010-08-21 03:15:20 +00001456 return LV;
Daniel Dunbar18aba0d2010-02-05 19:38:31 +00001457}
1458
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001459void CodeGenFunction::EmitAggregateCopy(Address DestPtr,
1460 Address SrcPtr, QualType Ty,
John McCalle0c11682012-07-02 23:58:38 +00001461 bool isVolatile,
Benjamin Kramer6cacae82012-09-30 12:43:37 +00001462 bool isAssignment) {
Chad Rosier649b4a12012-03-29 17:37:10 +00001463 assert(!Ty->isAnyComplexType() && "Shouldn't happen for complex");
Mike Stump1eb44332009-09-09 15:08:12 +00001464
Richard Smith7edf9e32012-11-01 22:30:59 +00001465 if (getLangOpts().CPlusPlus) {
Chad Rosier649b4a12012-03-29 17:37:10 +00001466 if (const RecordType *RT = Ty->getAs<RecordType>()) {
1467 CXXRecordDecl *Record = cast<CXXRecordDecl>(RT->getDecl());
1468 assert((Record->hasTrivialCopyConstructor() ||
1469 Record->hasTrivialCopyAssignment() ||
1470 Record->hasTrivialMoveConstructor() ||
Pirama Arumuga Nainarb6d69932015-07-01 12:25:36 -07001471 Record->hasTrivialMoveAssignment() ||
1472 Record->isUnion()) &&
Richard Smith426391c2012-11-16 00:53:38 +00001473 "Trying to aggregate-copy a type without a trivial copy/move "
Douglas Gregore9979482010-05-20 15:39:01 +00001474 "constructor or assignment operator");
Chad Rosier649b4a12012-03-29 17:37:10 +00001475 // Ignore empty classes in C++.
1476 if (Record->isEmpty())
Anders Carlsson0d7c5832010-05-03 01:20:20 +00001477 return;
1478 }
1479 }
1480
Chris Lattner83c96292009-02-28 18:31:01 +00001481 // Aggregate assignment turns into llvm.memcpy. This is almost valid per
Chris Lattnerca4fc2c2009-02-28 18:18:58 +00001482 // C99 6.5.16.1p3, which states "If the value being stored in an object is
1483 // read from another object that overlaps in anyway the storage of the first
1484 // object, then the overlap shall be exact and the two objects shall have
1485 // qualified or unqualified versions of a compatible type."
1486 //
Chris Lattner83c96292009-02-28 18:31:01 +00001487 // memcpy is not defined if the source and destination pointers are exactly
Chris Lattnerca4fc2c2009-02-28 18:18:58 +00001488 // equal, but other compilers do this optimization, and almost every memcpy
1489 // implementation handles this case safely. If there is a libc that does not
1490 // safely handle this, we can add a target hook.
Chad Rosier649b4a12012-03-29 17:37:10 +00001491
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001492 // Get data size info for this aggregate. If this is an assignment,
1493 // don't copy the tail padding, because we might be assigning into a
1494 // base subobject where the tail padding is claimed. Otherwise,
1495 // copying it is fine.
Benjamin Kramer6cacae82012-09-30 12:43:37 +00001496 std::pair<CharUnits, CharUnits> TypeInfo;
1497 if (isAssignment)
1498 TypeInfo = getContext().getTypeInfoDataSizeInChars(Ty);
1499 else
1500 TypeInfo = getContext().getTypeInfoInChars(Ty);
Chad Rosier649b4a12012-03-29 17:37:10 +00001501
Pirama Arumuga Nainarb6d69932015-07-01 12:25:36 -07001502 llvm::Value *SizeVal = nullptr;
1503 if (TypeInfo.first.isZero()) {
1504 // But note that getTypeInfo returns 0 for a VLA.
1505 if (auto *VAT = dyn_cast_or_null<VariableArrayType>(
1506 getContext().getAsArrayType(Ty))) {
1507 QualType BaseEltTy;
1508 SizeVal = emitArrayLength(VAT, BaseEltTy, DestPtr);
1509 TypeInfo = getContext().getTypeInfoDataSizeInChars(BaseEltTy);
1510 std::pair<CharUnits, CharUnits> LastElementTypeInfo;
1511 if (!isAssignment)
1512 LastElementTypeInfo = getContext().getTypeInfoInChars(BaseEltTy);
1513 assert(!TypeInfo.first.isZero());
1514 SizeVal = Builder.CreateNUWMul(
1515 SizeVal,
1516 llvm::ConstantInt::get(SizeTy, TypeInfo.first.getQuantity()));
1517 if (!isAssignment) {
1518 SizeVal = Builder.CreateNUWSub(
1519 SizeVal,
1520 llvm::ConstantInt::get(SizeTy, TypeInfo.first.getQuantity()));
1521 SizeVal = Builder.CreateNUWAdd(
1522 SizeVal, llvm::ConstantInt::get(
1523 SizeTy, LastElementTypeInfo.first.getQuantity()));
1524 }
1525 }
1526 }
1527 if (!SizeVal) {
1528 SizeVal = llvm::ConstantInt::get(SizeTy, TypeInfo.first.getQuantity());
1529 }
Chad Rosier649b4a12012-03-29 17:37:10 +00001530
1531 // FIXME: If we have a volatile struct, the optimizer can remove what might
1532 // appear to be `extra' memory ops:
1533 //
1534 // volatile struct { int i; } a, b;
1535 //
1536 // int main() {
1537 // a = b;
1538 // a = b;
1539 // }
1540 //
1541 // we need to use a different call here. We use isVolatile to indicate when
1542 // either the source or the destination is volatile.
1543
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001544 DestPtr = Builder.CreateElementBitCast(DestPtr, Int8Ty);
1545 SrcPtr = Builder.CreateElementBitCast(SrcPtr, Int8Ty);
Chad Rosier649b4a12012-03-29 17:37:10 +00001546
1547 // Don't do any of the memmove_collectable tests if GC isn't set.
1548 if (CGM.getLangOpts().getGC() == LangOptions::NonGC) {
1549 // fall through
1550 } else if (const RecordType *RecordTy = Ty->getAs<RecordType>()) {
1551 RecordDecl *Record = RecordTy->getDecl();
1552 if (Record->hasObjectMember()) {
Chad Rosier649b4a12012-03-29 17:37:10 +00001553 CGM.getObjCRuntime().EmitGCMemmoveCollectable(*this, DestPtr, SrcPtr,
1554 SizeVal);
1555 return;
1556 }
1557 } else if (Ty->isArrayType()) {
1558 QualType BaseType = getContext().getBaseElementType(Ty);
1559 if (const RecordType *RecordTy = BaseType->getAs<RecordType>()) {
1560 if (RecordTy->getDecl()->hasObjectMember()) {
Chad Rosier649b4a12012-03-29 17:37:10 +00001561 CGM.getObjCRuntime().EmitGCMemmoveCollectable(*this, DestPtr, SrcPtr,
1562 SizeVal);
1563 return;
1564 }
1565 }
1566 }
Dan Gohmanb22c7dc2012-09-28 21:58:29 +00001567
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001568 auto Inst = Builder.CreateMemCpy(DestPtr, SrcPtr, SizeVal, isVolatile);
1569
Dan Gohmanb22c7dc2012-09-28 21:58:29 +00001570 // Determine the metadata to describe the position of any padding in this
1571 // memcpy, as well as the TBAA tags for the members of the struct, in case
1572 // the optimizer wishes to expand it in to scalar memory operations.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001573 if (llvm::MDNode *TBAAStructTag = CGM.getTBAAStructInfo(Ty))
1574 Inst->setMetadata(llvm::LLVMContext::MD_tbaa_struct, TBAAStructTag);
Daniel Dunbar7482d122008-09-09 20:49:46 +00001575}