blob: 5b0d9f00dbbc156fcb0d89b1a120646d2c51c15f [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;
John McCallef072fd2010-05-22 01:48:05 +000037
John McCall410ffb22011-08-25 23:04:34 +000038 /// We want to use 'dest' as the return slot except under two
39 /// conditions:
40 /// - The destination slot requires garbage collection, so we
41 /// need to use the GC API.
42 /// - The destination slot is potentially aliased.
43 bool shouldUseDestForReturnSlot() const {
44 return !(Dest.requiresGCollection() || Dest.isPotentiallyAliased());
45 }
46
John McCallef072fd2010-05-22 01:48:05 +000047 ReturnValueSlot getReturnValueSlot() const {
John McCall410ffb22011-08-25 23:04:34 +000048 if (!shouldUseDestForReturnSlot())
49 return ReturnValueSlot();
John McCallfa037bd2010-05-22 22:13:32 +000050
John McCall558d2ab2010-09-15 10:14:12 +000051 return ReturnValueSlot(Dest.getAddr(), Dest.isVolatile());
52 }
53
54 AggValueSlot EnsureSlot(QualType T) {
55 if (!Dest.isIgnored()) return Dest;
56 return CGF.CreateAggTemp(T, "agg.tmp.ensured");
John McCallef072fd2010-05-22 01:48:05 +000057 }
John McCalle0c11682012-07-02 23:58:38 +000058 void EnsureDest(QualType T) {
59 if (!Dest.isIgnored()) return;
60 Dest = CGF.CreateAggTemp(T, "agg.tmp.ensured");
61 }
John McCallfa037bd2010-05-22 22:13:32 +000062
Chris Lattner9c033562007-08-21 04:25:47 +000063public:
John McCalle0c11682012-07-02 23:58:38 +000064 AggExprEmitter(CodeGenFunction &cgf, AggValueSlot Dest)
65 : CGF(cgf), Builder(CGF.Builder), Dest(Dest) {
Chris Lattner9c033562007-08-21 04:25:47 +000066 }
67
Chris Lattneree755f92007-08-21 04:59:27 +000068 //===--------------------------------------------------------------------===//
69 // Utilities
70 //===--------------------------------------------------------------------===//
71
Chris Lattner9c033562007-08-21 04:25:47 +000072 /// EmitAggLoadOfLValue - Given an expression with aggregate type that
73 /// represents a value lvalue, this method emits the address of the lvalue,
74 /// then loads the result into DestPtr.
75 void EmitAggLoadOfLValue(const Expr *E);
Eli Friedman922696f2008-05-19 17:51:16 +000076
Mike Stump4ac20dd2009-05-23 20:28:01 +000077 /// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
John McCalle0c11682012-07-02 23:58:38 +000078 void EmitFinalDestCopy(QualType type, const LValue &src);
79 void EmitFinalDestCopy(QualType type, RValue src,
80 CharUnits srcAlignment = CharUnits::Zero());
81 void EmitCopy(QualType type, const AggValueSlot &dest,
82 const AggValueSlot &src);
Mike Stump4ac20dd2009-05-23 20:28:01 +000083
John McCall410ffb22011-08-25 23:04:34 +000084 void EmitMoveFromReturnSlot(const Expr *E, RValue Src);
John McCallfa037bd2010-05-22 22:13:32 +000085
Sebastian Redl32cf1f22012-02-17 08:42:25 +000086 void EmitArrayInit(llvm::Value *DestPtr, llvm::ArrayType *AType,
87 QualType elementType, InitListExpr *E);
88
John McCall7c2349b2011-08-25 20:40:09 +000089 AggValueSlot::NeedsGCBarriers_t needsGC(QualType T) {
David Blaikie4e4d0842012-03-11 07:00:24 +000090 if (CGF.getLangOpts().getGC() && TypeRequiresGCollection(T))
John McCall7c2349b2011-08-25 20:40:09 +000091 return AggValueSlot::NeedsGCBarriers;
92 return AggValueSlot::DoesNotNeedGCBarriers;
93 }
94
John McCallfa037bd2010-05-22 22:13:32 +000095 bool TypeRequiresGCollection(QualType T);
96
Chris Lattneree755f92007-08-21 04:59:27 +000097 //===--------------------------------------------------------------------===//
98 // Visitor Methods
99 //===--------------------------------------------------------------------===//
Mike Stump1eb44332009-09-09 15:08:12 +0000100
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700101 void Visit(Expr *E) {
102 ApplyDebugLocation DL(CGF, E);
103 StmtVisitor<AggExprEmitter>::Visit(E);
104 }
105
Chris Lattner9c033562007-08-21 04:25:47 +0000106 void VisitStmt(Stmt *S) {
Daniel Dunbar488e9932008-08-16 00:56:44 +0000107 CGF.ErrorUnsupported(S, "aggregate expression");
Chris Lattner9c033562007-08-21 04:25:47 +0000108 }
109 void VisitParenExpr(ParenExpr *PE) { Visit(PE->getSubExpr()); }
Peter Collingbournef111d932011-04-15 00:35:48 +0000110 void VisitGenericSelectionExpr(GenericSelectionExpr *GE) {
111 Visit(GE->getResultExpr());
112 }
Eli Friedman12444a22009-01-27 09:03:41 +0000113 void VisitUnaryExtension(UnaryOperator *E) { Visit(E->getSubExpr()); }
John McCall91a57552011-07-15 05:09:51 +0000114 void VisitSubstNonTypeTemplateParmExpr(SubstNonTypeTemplateParmExpr *E) {
115 return Visit(E->getReplacement());
116 }
Chris Lattner9c033562007-08-21 04:25:47 +0000117
118 // l-values.
John McCallf4b88a42012-03-10 09:33:50 +0000119 void VisitDeclRefExpr(DeclRefExpr *E) {
John McCalldd2ecee2012-03-10 03:05:10 +0000120 // For aggregates, we should always be able to emit the variable
121 // as an l-value unless it's a reference. This is due to the fact
122 // that we can't actually ever see a normal l2r conversion on an
123 // aggregate in C++, and in C there's no language standard
124 // actively preventing us from listing variables in the captures
125 // list of a block.
John McCallf4b88a42012-03-10 09:33:50 +0000126 if (E->getDecl()->getType()->isReferenceType()) {
John McCalldd2ecee2012-03-10 03:05:10 +0000127 if (CodeGenFunction::ConstantEmission result
John McCallf4b88a42012-03-10 09:33:50 +0000128 = CGF.tryEmitAsConstant(E)) {
John McCalle0c11682012-07-02 23:58:38 +0000129 EmitFinalDestCopy(E->getType(), result.getReferenceLValue(CGF, E));
John McCalldd2ecee2012-03-10 03:05:10 +0000130 return;
131 }
132 }
133
John McCallf4b88a42012-03-10 09:33:50 +0000134 EmitAggLoadOfLValue(E);
John McCalldd2ecee2012-03-10 03:05:10 +0000135 }
136
Seo Sanghyeon9b73b392007-12-14 02:04:12 +0000137 void VisitMemberExpr(MemberExpr *ME) { EmitAggLoadOfLValue(ME); }
138 void VisitUnaryDeref(UnaryOperator *E) { EmitAggLoadOfLValue(E); }
Daniel Dunbar5be028f2010-01-04 18:47:06 +0000139 void VisitStringLiteral(StringLiteral *E) { EmitAggLoadOfLValue(E); }
Douglas Gregor751ec9b2011-06-17 04:59:12 +0000140 void VisitCompoundLiteralExpr(CompoundLiteralExpr *E);
Seo Sanghyeon9b73b392007-12-14 02:04:12 +0000141 void VisitArraySubscriptExpr(ArraySubscriptExpr *E) {
142 EmitAggLoadOfLValue(E);
143 }
Chris Lattnerf0a990c2009-04-21 23:00:09 +0000144 void VisitPredefinedExpr(const PredefinedExpr *E) {
Mike Stump1eb44332009-09-09 15:08:12 +0000145 EmitAggLoadOfLValue(E);
Chris Lattnerf0a990c2009-04-21 23:00:09 +0000146 }
Mike Stump1eb44332009-09-09 15:08:12 +0000147
Chris Lattner9c033562007-08-21 04:25:47 +0000148 // Operators.
Anders Carlsson4d8673b2009-08-07 23:22:37 +0000149 void VisitCastExpr(CastExpr *E);
Anders Carlsson148fe672007-10-31 22:04:46 +0000150 void VisitCallExpr(const CallExpr *E);
Chris Lattnerb2d963f2007-08-31 22:54:14 +0000151 void VisitStmtExpr(const StmtExpr *E);
Chris Lattner9c033562007-08-21 04:25:47 +0000152 void VisitBinaryOperator(const BinaryOperator *BO);
Fariborz Jahanian8bfd31f2009-10-22 22:57:31 +0000153 void VisitPointerToDataMemberBinaryOperator(const BinaryOperator *BO);
Chris Lattner03d6fb92007-08-21 04:43:17 +0000154 void VisitBinAssign(const BinaryOperator *E);
Eli Friedman07fa52a2008-05-20 07:56:31 +0000155 void VisitBinComma(const BinaryOperator *E);
Chris Lattner9c033562007-08-21 04:25:47 +0000156
Chris Lattner8fdf3282008-06-24 17:04:18 +0000157 void VisitObjCMessageExpr(ObjCMessageExpr *E);
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000158 void VisitObjCIvarRefExpr(ObjCIvarRefExpr *E) {
159 EmitAggLoadOfLValue(E);
160 }
Mike Stump1eb44332009-09-09 15:08:12 +0000161
John McCall56ca35d2011-02-17 10:25:35 +0000162 void VisitAbstractConditionalOperator(const AbstractConditionalOperator *CO);
Anders Carlssona294ca82009-07-08 18:33:14 +0000163 void VisitChooseExpr(const ChooseExpr *CE);
Devang Patel636c3d02007-10-26 17:44:44 +0000164 void VisitInitListExpr(InitListExpr *E);
Anders Carlsson30311fa2009-12-16 06:57:54 +0000165 void VisitImplicitValueInitExpr(ImplicitValueInitExpr *E);
Chris Lattner04421082008-04-08 04:40:51 +0000166 void VisitCXXDefaultArgExpr(CXXDefaultArgExpr *DAE) {
167 Visit(DAE->getExpr());
168 }
Richard Smithc3bf52c2013-04-20 22:23:05 +0000169 void VisitCXXDefaultInitExpr(CXXDefaultInitExpr *DIE) {
170 CodeGenFunction::CXXDefaultInitExprScope Scope(CGF);
171 Visit(DIE->getExpr());
172 }
Anders Carlssonb58d0172009-05-30 23:23:33 +0000173 void VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E);
Anders Carlsson31ccf372009-05-03 17:47:16 +0000174 void VisitCXXConstructExpr(const CXXConstructExpr *E);
Eli Friedman4c5d8af2012-02-09 03:32:31 +0000175 void VisitLambdaExpr(LambdaExpr *E);
Richard Smith7c3e6152013-06-12 22:31:48 +0000176 void VisitCXXStdInitializerListExpr(CXXStdInitializerListExpr *E);
John McCall4765fa02010-12-06 08:20:24 +0000177 void VisitExprWithCleanups(ExprWithCleanups *E);
Douglas Gregored8abf12010-07-08 06:14:04 +0000178 void VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *E);
Mike Stump2710c412009-11-18 00:40:12 +0000179 void VisitCXXTypeidExpr(CXXTypeidExpr *E) { EmitAggLoadOfLValue(E); }
Douglas Gregor03e80032011-06-21 17:03:29 +0000180 void VisitMaterializeTemporaryExpr(MaterializeTemporaryExpr *E);
John McCalle996ffd2011-02-16 08:02:54 +0000181 void VisitOpaqueValueExpr(OpaqueValueExpr *E);
182
John McCall4b9c2d22011-11-06 09:01:30 +0000183 void VisitPseudoObjectExpr(PseudoObjectExpr *E) {
184 if (E->isGLValue()) {
185 LValue LV = CGF.EmitPseudoObjectLValue(E);
John McCalle0c11682012-07-02 23:58:38 +0000186 return EmitFinalDestCopy(E->getType(), LV);
John McCall4b9c2d22011-11-06 09:01:30 +0000187 }
188
189 CGF.EmitPseudoObjectRValue(E, EnsureSlot(E->getType()));
190 }
191
Eli Friedmanb1851242008-05-27 15:51:49 +0000192 void VisitVAArgExpr(VAArgExpr *E);
Chris Lattnerf81557c2008-04-04 18:42:16 +0000193
Chad Rosier649b4a12012-03-29 17:37:10 +0000194 void EmitInitializationToLValue(Expr *E, LValue Address);
John McCalla07398e2011-06-16 04:16:24 +0000195 void EmitNullInitializationToLValue(LValue Address);
Chris Lattner9c033562007-08-21 04:25:47 +0000196 // case Expr::ChooseExprClass:
Mike Stump39406b12009-12-09 19:24:08 +0000197 void VisitCXXThrowExpr(const CXXThrowExpr *E) { CGF.EmitCXXThrowExpr(E); }
Eli Friedman276b0612011-10-11 02:20:01 +0000198 void VisitAtomicExpr(AtomicExpr *E) {
199 CGF.EmitAtomicExpr(E, EnsureSlot(E->getType()).getAddr());
200 }
Chris Lattner9c033562007-08-21 04:25:47 +0000201};
202} // end anonymous namespace.
203
Chris Lattneree755f92007-08-21 04:59:27 +0000204//===----------------------------------------------------------------------===//
205// Utilities
206//===----------------------------------------------------------------------===//
Chris Lattner9c033562007-08-21 04:25:47 +0000207
Chris Lattner883f6a72007-08-11 00:04:45 +0000208/// EmitAggLoadOfLValue - Given an expression with aggregate type that
209/// represents a value lvalue, this method emits the address of the lvalue,
210/// then loads the result into DestPtr.
Chris Lattner9c033562007-08-21 04:25:47 +0000211void AggExprEmitter::EmitAggLoadOfLValue(const Expr *E) {
212 LValue LV = CGF.EmitLValue(E);
John McCall9eda3ab2013-03-07 21:37:17 +0000213
214 // If the type of the l-value is atomic, then do an atomic load.
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700215 if (LV.getType()->isAtomicType() || CGF.LValueIsSuitableForInlineAtomic(LV)) {
Nick Lewycky4ee7dc22013-10-02 02:29:49 +0000216 CGF.EmitAtomicLoad(LV, E->getExprLoc(), Dest);
John McCall9eda3ab2013-03-07 21:37:17 +0000217 return;
218 }
219
John McCalle0c11682012-07-02 23:58:38 +0000220 EmitFinalDestCopy(E->getType(), LV);
Mike Stump4ac20dd2009-05-23 20:28:01 +0000221}
222
John McCallfa037bd2010-05-22 22:13:32 +0000223/// \brief True if the given aggregate type requires special GC API calls.
224bool AggExprEmitter::TypeRequiresGCollection(QualType T) {
225 // Only record types have members that might require garbage collection.
226 const RecordType *RecordTy = T->getAs<RecordType>();
227 if (!RecordTy) return false;
228
229 // Don't mess with non-trivial C++ types.
230 RecordDecl *Record = RecordTy->getDecl();
231 if (isa<CXXRecordDecl>(Record) &&
Richard Smith426391c2012-11-16 00:53:38 +0000232 (cast<CXXRecordDecl>(Record)->hasNonTrivialCopyConstructor() ||
John McCallfa037bd2010-05-22 22:13:32 +0000233 !cast<CXXRecordDecl>(Record)->hasTrivialDestructor()))
234 return false;
235
236 // Check whether the type has an object member.
237 return Record->hasObjectMember();
238}
239
John McCall410ffb22011-08-25 23:04:34 +0000240/// \brief Perform the final move to DestPtr if for some reason
241/// getReturnValueSlot() didn't use it directly.
John McCallfa037bd2010-05-22 22:13:32 +0000242///
243/// The idea is that you do something like this:
244/// RValue Result = EmitSomething(..., getReturnValueSlot());
John McCall410ffb22011-08-25 23:04:34 +0000245/// EmitMoveFromReturnSlot(E, Result);
246///
247/// If nothing interferes, this will cause the result to be emitted
248/// directly into the return value slot. Otherwise, a final move
249/// will be performed.
John McCalle0c11682012-07-02 23:58:38 +0000250void AggExprEmitter::EmitMoveFromReturnSlot(const Expr *E, RValue src) {
John McCall410ffb22011-08-25 23:04:34 +0000251 if (shouldUseDestForReturnSlot()) {
252 // Logically, Dest.getAddr() should equal Src.getAggregateAddr().
253 // The possibility of undef rvalues complicates that a lot,
254 // though, so we can't really assert.
255 return;
Fariborz Jahanian55bcace2010-06-15 22:44:06 +0000256 }
John McCall410ffb22011-08-25 23:04:34 +0000257
John McCalle0c11682012-07-02 23:58:38 +0000258 // Otherwise, copy from there to the destination.
259 assert(Dest.getAddr() != src.getAggregateAddr());
260 std::pair<CharUnits, CharUnits> typeInfo =
Chad Rosier26397ed2012-04-17 01:14:29 +0000261 CGF.getContext().getTypeInfoInChars(E->getType());
John McCalle0c11682012-07-02 23:58:38 +0000262 EmitFinalDestCopy(E->getType(), src, typeInfo.second);
John McCallfa037bd2010-05-22 22:13:32 +0000263}
264
Mike Stump4ac20dd2009-05-23 20:28:01 +0000265/// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
John McCalle0c11682012-07-02 23:58:38 +0000266void AggExprEmitter::EmitFinalDestCopy(QualType type, RValue src,
267 CharUnits srcAlign) {
268 assert(src.isAggregate() && "value must be aggregate value!");
269 LValue srcLV = CGF.MakeAddrLValue(src.getAggregateAddr(), type, srcAlign);
270 EmitFinalDestCopy(type, srcLV);
271}
Mike Stump4ac20dd2009-05-23 20:28:01 +0000272
John McCalle0c11682012-07-02 23:58:38 +0000273/// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
274void AggExprEmitter::EmitFinalDestCopy(QualType type, const LValue &src) {
John McCall558d2ab2010-09-15 10:14:12 +0000275 // If Dest is ignored, then we're evaluating an aggregate expression
John McCalle0c11682012-07-02 23:58:38 +0000276 // in a context that doesn't care about the result. Note that loads
277 // from volatile l-values force the existence of a non-ignored
278 // destination.
279 if (Dest.isIgnored())
280 return;
Fariborz Jahanian8a970052010-10-22 22:05:03 +0000281
John McCalle0c11682012-07-02 23:58:38 +0000282 AggValueSlot srcAgg =
283 AggValueSlot::forLValue(src, AggValueSlot::IsDestructed,
284 needsGC(type), AggValueSlot::IsAliased);
285 EmitCopy(type, Dest, srcAgg);
286}
Chris Lattner883f6a72007-08-11 00:04:45 +0000287
John McCalle0c11682012-07-02 23:58:38 +0000288/// Perform a copy from the source into the destination.
289///
290/// \param type - the type of the aggregate being copied; qualifiers are
291/// ignored
292void AggExprEmitter::EmitCopy(QualType type, const AggValueSlot &dest,
293 const AggValueSlot &src) {
294 if (dest.requiresGCollection()) {
295 CharUnits sz = CGF.getContext().getTypeSizeInChars(type);
296 llvm::Value *size = llvm::ConstantInt::get(CGF.SizeTy, sz.getQuantity());
Fariborz Jahanian08c32132009-08-31 19:33:16 +0000297 CGF.CGM.getObjCRuntime().EmitGCMemmoveCollectable(CGF,
John McCalle0c11682012-07-02 23:58:38 +0000298 dest.getAddr(),
299 src.getAddr(),
300 size);
Fariborz Jahanian08c32132009-08-31 19:33:16 +0000301 return;
302 }
John McCalle0c11682012-07-02 23:58:38 +0000303
Mike Stump4ac20dd2009-05-23 20:28:01 +0000304 // If the result of the assignment is used, copy the LHS there also.
John McCalle0c11682012-07-02 23:58:38 +0000305 // It's volatile if either side is. Use the minimum alignment of
306 // the two sides.
307 CGF.EmitAggregateCopy(dest.getAddr(), src.getAddr(), type,
308 dest.isVolatile() || src.isVolatile(),
309 std::min(dest.getAlignment(), src.getAlignment()));
Chris Lattner883f6a72007-08-11 00:04:45 +0000310}
311
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000312/// \brief Emit the initializer for a std::initializer_list initialized with a
313/// real initializer list.
Richard Smith7c3e6152013-06-12 22:31:48 +0000314void
315AggExprEmitter::VisitCXXStdInitializerListExpr(CXXStdInitializerListExpr *E) {
316 // Emit an array containing the elements. The array is externally destructed
317 // if the std::initializer_list object is.
318 ASTContext &Ctx = CGF.getContext();
319 LValue Array = CGF.EmitLValue(E->getSubExpr());
320 assert(Array.isSimple() && "initializer_list array not a simple lvalue");
321 llvm::Value *ArrayPtr = Array.getAddress();
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000322
Richard Smith7c3e6152013-06-12 22:31:48 +0000323 const ConstantArrayType *ArrayType =
324 Ctx.getAsConstantArrayType(E->getSubExpr()->getType());
325 assert(ArrayType && "std::initializer_list constructed from non-array");
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000326
Richard Smith7c3e6152013-06-12 22:31:48 +0000327 // FIXME: Perform the checks on the field types in SemaInit.
328 RecordDecl *Record = E->getType()->castAs<RecordType>()->getDecl();
329 RecordDecl::field_iterator Field = Record->field_begin();
330 if (Field == Record->field_end()) {
331 CGF.ErrorUnsupported(E, "weird std::initializer_list");
Sebastian Redlbabcf9d2012-02-25 20:51:13 +0000332 return;
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000333 }
334
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000335 // Start pointer.
Richard Smith7c3e6152013-06-12 22:31:48 +0000336 if (!Field->getType()->isPointerType() ||
337 !Ctx.hasSameType(Field->getType()->getPointeeType(),
338 ArrayType->getElementType())) {
339 CGF.ErrorUnsupported(E, "weird std::initializer_list");
Sebastian Redlbabcf9d2012-02-25 20:51:13 +0000340 return;
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000341 }
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000342
Richard Smith7c3e6152013-06-12 22:31:48 +0000343 AggValueSlot Dest = EnsureSlot(E->getType());
344 LValue DestLV = CGF.MakeAddrLValue(Dest.getAddr(), E->getType(),
345 Dest.getAlignment());
346 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 =
350 Builder.CreateInBoundsGEP(ArrayPtr, IdxStart, "arraystart");
351 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 =
367 Builder.CreateInBoundsGEP(ArrayPtr, IdxEnd, "arrayend");
368 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.
402void AggExprEmitter::EmitArrayInit(llvm::Value *DestPtr, llvm::ArrayType *AType,
403 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 =
414 Builder.CreateInBoundsGEP(DestPtr, indices, "arrayinit.begin");
415
416 // Exception safety requires us to destroy all the
417 // already-constructed members if an initializer throws.
418 // For that, we'll need an EH cleanup.
419 QualType::DestructionKind dtorKind = elementType.isDestructedType();
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700420 llvm::AllocaInst *endOfInit = nullptr;
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000421 EHScopeStack::stable_iterator cleanup;
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700422 llvm::Instruction *cleanupDominator = nullptr;
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000423 if (CGF.needsEHCleanup(dtorKind)) {
424 // In principle we could tell the cleanup where we are more
425 // directly, but the control flow can get so varied here that it
426 // would actually be quite complex. Therefore we go through an
427 // alloca.
428 endOfInit = CGF.CreateTempAlloca(begin->getType(),
429 "arrayinit.endOfInit");
430 cleanupDominator = Builder.CreateStore(begin, endOfInit);
431 CGF.pushIrregularPartialArrayCleanup(begin, endOfInit, elementType,
432 CGF.getDestroyer(dtorKind));
433 cleanup = CGF.EHStack.stable_begin();
434
435 // Otherwise, remember that we didn't need a cleanup.
436 } else {
437 dtorKind = QualType::DK_none;
438 }
439
440 llvm::Value *one = llvm::ConstantInt::get(CGF.SizeTy, 1);
441
442 // The 'current element to initialize'. The invariants on this
443 // variable are complicated. Essentially, after each iteration of
444 // the loop, it points to the last initialized element, except
445 // that it points to the beginning of the array before any
446 // elements have been initialized.
447 llvm::Value *element = begin;
448
449 // Emit the explicit initializers.
450 for (uint64_t i = 0; i != NumInitElements; ++i) {
451 // Advance to the next element.
452 if (i > 0) {
453 element = Builder.CreateInBoundsGEP(element, one, "arrayinit.element");
454
455 // Tell the cleanup that it needs to destroy up to this
456 // element. TODO: some of these stores can be trivially
457 // observed to be unnecessary.
458 if (endOfInit) Builder.CreateStore(element, endOfInit);
459 }
460
Richard Smith7c3e6152013-06-12 22:31:48 +0000461 LValue elementLV = CGF.MakeAddrLValue(element, elementType);
462 EmitInitializationToLValue(E->getInit(i), elementLV);
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000463 }
464
465 // Check whether there's a non-trivial array-fill expression.
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000466 Expr *filler = E->getArrayFiller();
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700467 bool hasTrivialFiller = isTrivialFiller(filler);
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000468
469 // Any remaining elements need to be zero-initialized, possibly
470 // using the filler expression. We can skip this if the we're
471 // emitting to zeroed memory.
472 if (NumInitElements != NumArrayElements &&
473 !(Dest.isZeroed() && hasTrivialFiller &&
474 CGF.getTypes().isZeroInitializable(elementType))) {
475
476 // Use an actual loop. This is basically
477 // do { *array++ = filler; } while (array != end);
478
479 // Advance to the start of the rest of the array.
480 if (NumInitElements) {
481 element = Builder.CreateInBoundsGEP(element, one, "arrayinit.start");
482 if (endOfInit) Builder.CreateStore(element, endOfInit);
483 }
484
485 // Compute the end of the array.
486 llvm::Value *end = Builder.CreateInBoundsGEP(begin,
487 llvm::ConstantInt::get(CGF.SizeTy, NumArrayElements),
488 "arrayinit.end");
489
490 llvm::BasicBlock *entryBB = Builder.GetInsertBlock();
491 llvm::BasicBlock *bodyBB = CGF.createBasicBlock("arrayinit.body");
492
493 // Jump into the body.
494 CGF.EmitBlock(bodyBB);
495 llvm::PHINode *currentElement =
496 Builder.CreatePHI(element->getType(), 2, "arrayinit.cur");
497 currentElement->addIncoming(element, entryBB);
498
499 // Emit the actual filler expression.
500 LValue elementLV = CGF.MakeAddrLValue(currentElement, elementType);
501 if (filler)
Chad Rosier649b4a12012-03-29 17:37:10 +0000502 EmitInitializationToLValue(filler, elementLV);
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000503 else
504 EmitNullInitializationToLValue(elementLV);
505
506 // Move on to the next element.
507 llvm::Value *nextElement =
508 Builder.CreateInBoundsGEP(currentElement, one, "arrayinit.next");
509
510 // Tell the EH cleanup that we finished with the last element.
511 if (endOfInit) Builder.CreateStore(nextElement, endOfInit);
512
513 // Leave the loop if we're done.
514 llvm::Value *done = Builder.CreateICmpEQ(nextElement, end,
515 "arrayinit.done");
516 llvm::BasicBlock *endBB = CGF.createBasicBlock("arrayinit.end");
517 Builder.CreateCondBr(done, endBB, bodyBB);
518 currentElement->addIncoming(nextElement, Builder.GetInsertBlock());
519
520 CGF.EmitBlock(endBB);
521 }
522
523 // Leave the partial-array cleanup if we entered one.
524 if (dtorKind) CGF.DeactivateCleanupBlock(cleanup, cleanupDominator);
525}
526
Chris Lattneree755f92007-08-21 04:59:27 +0000527//===----------------------------------------------------------------------===//
528// Visitor Methods
529//===----------------------------------------------------------------------===//
530
Douglas Gregor03e80032011-06-21 17:03:29 +0000531void AggExprEmitter::VisitMaterializeTemporaryExpr(MaterializeTemporaryExpr *E){
532 Visit(E->GetTemporaryExpr());
533}
534
John McCalle996ffd2011-02-16 08:02:54 +0000535void AggExprEmitter::VisitOpaqueValueExpr(OpaqueValueExpr *e) {
John McCalle0c11682012-07-02 23:58:38 +0000536 EmitFinalDestCopy(e->getType(), CGF.getOpaqueLValueMapping(e));
John McCalle996ffd2011-02-16 08:02:54 +0000537}
538
Douglas Gregor751ec9b2011-06-17 04:59:12 +0000539void
540AggExprEmitter::VisitCompoundLiteralExpr(CompoundLiteralExpr *E) {
John McCall1723f632013-03-07 21:36:54 +0000541 if (Dest.isPotentiallyAliased() &&
542 E->getType().isPODType(CGF.getContext())) {
Douglas Gregor673e98b2011-06-17 16:37:20 +0000543 // For a POD type, just emit a load of the lvalue + a copy, because our
544 // compound literal might alias the destination.
Douglas Gregor673e98b2011-06-17 16:37:20 +0000545 EmitAggLoadOfLValue(E);
546 return;
547 }
548
Douglas Gregor751ec9b2011-06-17 04:59:12 +0000549 AggValueSlot Slot = EnsureSlot(E->getType());
550 CGF.EmitAggExpr(E->getInitializer(), Slot);
551}
552
John McCall9eda3ab2013-03-07 21:37:17 +0000553/// Attempt to look through various unimportant expressions to find a
554/// cast of the given kind.
555static Expr *findPeephole(Expr *op, CastKind kind) {
556 while (true) {
557 op = op->IgnoreParens();
558 if (CastExpr *castE = dyn_cast<CastExpr>(op)) {
559 if (castE->getCastKind() == kind)
560 return castE->getSubExpr();
561 if (castE->getCastKind() == CK_NoOp)
562 continue;
563 }
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700564 return nullptr;
John McCall9eda3ab2013-03-07 21:37:17 +0000565 }
566}
Douglas Gregor751ec9b2011-06-17 04:59:12 +0000567
Anders Carlsson4d8673b2009-08-07 23:22:37 +0000568void AggExprEmitter::VisitCastExpr(CastExpr *E) {
Anders Carlsson30168422009-09-29 01:23:39 +0000569 switch (E->getCastKind()) {
Anders Carlsson575b3742011-04-11 02:03:26 +0000570 case CK_Dynamic: {
Richard Smith2c9f87c2012-08-24 00:54:33 +0000571 // FIXME: Can this actually happen? We have no test coverage for it.
Douglas Gregor69cfeb12010-05-14 21:31:02 +0000572 assert(isa<CXXDynamicCastExpr>(E) && "CK_Dynamic without a dynamic_cast?");
Richard Smith2c9f87c2012-08-24 00:54:33 +0000573 LValue LV = CGF.EmitCheckedLValue(E->getSubExpr(),
Richard Smith7ac9ef12012-09-08 02:08:36 +0000574 CodeGenFunction::TCK_Load);
Douglas Gregor69cfeb12010-05-14 21:31:02 +0000575 // FIXME: Do we also need to handle property references here?
576 if (LV.isSimple())
577 CGF.EmitDynamicCast(LV.getAddress(), cast<CXXDynamicCastExpr>(E));
578 else
579 CGF.CGM.ErrorUnsupported(E, "non-simple lvalue dynamic_cast");
580
John McCall558d2ab2010-09-15 10:14:12 +0000581 if (!Dest.isIgnored())
582 CGF.CGM.ErrorUnsupported(E, "lvalue dynamic_cast with a destination");
Douglas Gregor69cfeb12010-05-14 21:31:02 +0000583 break;
584 }
585
John McCall2de56d12010-08-25 11:45:40 +0000586 case CK_ToUnion: {
John McCall65912712011-04-12 22:02:02 +0000587 if (Dest.isIgnored()) break;
588
Anders Carlsson4d8673b2009-08-07 23:22:37 +0000589 // GCC union extension
Daniel Dunbar79c39282010-08-21 03:15:20 +0000590 QualType Ty = E->getSubExpr()->getType();
591 QualType PtrTy = CGF.getContext().getPointerType(Ty);
John McCall558d2ab2010-09-15 10:14:12 +0000592 llvm::Value *CastPtr = Builder.CreateBitCast(Dest.getAddr(),
Eli Friedman34ebf4d2009-06-03 20:45:06 +0000593 CGF.ConvertType(PtrTy));
John McCalla07398e2011-06-16 04:16:24 +0000594 EmitInitializationToLValue(E->getSubExpr(),
Chad Rosier649b4a12012-03-29 17:37:10 +0000595 CGF.MakeAddrLValue(CastPtr, Ty));
Anders Carlsson30168422009-09-29 01:23:39 +0000596 break;
Nuno Lopes7e916272009-01-15 20:14:33 +0000597 }
Mike Stump1eb44332009-09-09 15:08:12 +0000598
John McCall2de56d12010-08-25 11:45:40 +0000599 case CK_DerivedToBase:
600 case CK_BaseToDerived:
601 case CK_UncheckedDerivedToBase: {
David Blaikieb219cfc2011-09-23 05:06:16 +0000602 llvm_unreachable("cannot perform hierarchy conversion in EmitAggExpr: "
Douglas Gregor2d6b0e92010-05-22 05:17:18 +0000603 "should have been unpacked before we got here");
Douglas Gregor2d6b0e92010-05-22 05:17:18 +0000604 }
605
John McCall9eda3ab2013-03-07 21:37:17 +0000606 case CK_NonAtomicToAtomic:
607 case CK_AtomicToNonAtomic: {
608 bool isToAtomic = (E->getCastKind() == CK_NonAtomicToAtomic);
609
610 // Determine the atomic and value types.
611 QualType atomicType = E->getSubExpr()->getType();
612 QualType valueType = E->getType();
613 if (isToAtomic) std::swap(atomicType, valueType);
614
615 assert(atomicType->isAtomicType());
616 assert(CGF.getContext().hasSameUnqualifiedType(valueType,
617 atomicType->castAs<AtomicType>()->getValueType()));
618
619 // Just recurse normally if we're ignoring the result or the
620 // atomic type doesn't change representation.
621 if (Dest.isIgnored() || !CGF.CGM.isPaddedAtomicType(atomicType)) {
622 return Visit(E->getSubExpr());
623 }
624
625 CastKind peepholeTarget =
626 (isToAtomic ? CK_AtomicToNonAtomic : CK_NonAtomicToAtomic);
627
628 // These two cases are reverses of each other; try to peephole them.
629 if (Expr *op = findPeephole(E->getSubExpr(), peepholeTarget)) {
630 assert(CGF.getContext().hasSameUnqualifiedType(op->getType(),
631 E->getType()) &&
632 "peephole significantly changed types?");
633 return Visit(op);
634 }
635
636 // If we're converting an r-value of non-atomic type to an r-value
Eli Friedman336d9df2013-07-11 01:32:21 +0000637 // of atomic type, just emit directly into the relevant sub-object.
John McCall9eda3ab2013-03-07 21:37:17 +0000638 if (isToAtomic) {
Eli Friedman336d9df2013-07-11 01:32:21 +0000639 AggValueSlot valueDest = Dest;
640 if (!valueDest.isIgnored() && CGF.CGM.isPaddedAtomicType(atomicType)) {
641 // Zero-initialize. (Strictly speaking, we only need to intialize
642 // the padding at the end, but this is simpler.)
643 if (!Dest.isZeroed())
Eli Friedmaneb1f2762013-07-11 02:28:36 +0000644 CGF.EmitNullInitialization(Dest.getAddr(), atomicType);
Eli Friedman336d9df2013-07-11 01:32:21 +0000645
646 // Build a GEP to refer to the subobject.
647 llvm::Value *valueAddr =
648 CGF.Builder.CreateStructGEP(valueDest.getAddr(), 0);
649 valueDest = AggValueSlot::forAddr(valueAddr,
650 valueDest.getAlignment(),
651 valueDest.getQualifiers(),
652 valueDest.isExternallyDestructed(),
653 valueDest.requiresGCollection(),
654 valueDest.isPotentiallyAliased(),
655 AggValueSlot::IsZeroed);
656 }
657
Eli Friedmaneb1f2762013-07-11 02:28:36 +0000658 CGF.EmitAggExpr(E->getSubExpr(), valueDest);
John McCall9eda3ab2013-03-07 21:37:17 +0000659 return;
660 }
661
662 // Otherwise, we're converting an atomic type to a non-atomic type.
Eli Friedman336d9df2013-07-11 01:32:21 +0000663 // Make an atomic temporary, emit into that, and then copy the value out.
John McCall9eda3ab2013-03-07 21:37:17 +0000664 AggValueSlot atomicSlot =
665 CGF.CreateAggTemp(atomicType, "atomic-to-nonatomic.temp");
666 CGF.EmitAggExpr(E->getSubExpr(), atomicSlot);
667
668 llvm::Value *valueAddr =
669 Builder.CreateStructGEP(atomicSlot.getAddr(), 0);
670 RValue rvalue = RValue::getAggregate(valueAddr, atomicSlot.isVolatile());
671 return EmitFinalDestCopy(valueType, rvalue);
672 }
673
John McCalle0c11682012-07-02 23:58:38 +0000674 case CK_LValueToRValue:
675 // If we're loading from a volatile type, force the destination
676 // into existence.
677 if (E->getSubExpr()->getType().isVolatileQualified()) {
678 EnsureDest(E->getType());
679 return Visit(E->getSubExpr());
680 }
John McCall9eda3ab2013-03-07 21:37:17 +0000681
John McCalle0c11682012-07-02 23:58:38 +0000682 // fallthrough
683
John McCall2de56d12010-08-25 11:45:40 +0000684 case CK_NoOp:
685 case CK_UserDefinedConversion:
686 case CK_ConstructorConversion:
Anders Carlsson30168422009-09-29 01:23:39 +0000687 assert(CGF.getContext().hasSameUnqualifiedType(E->getSubExpr()->getType(),
688 E->getType()) &&
689 "Implicit cast types must be compatible");
690 Visit(E->getSubExpr());
691 break;
John McCall0ae287a2010-12-01 04:43:34 +0000692
John McCall2de56d12010-08-25 11:45:40 +0000693 case CK_LValueBitCast:
John McCall0ae287a2010-12-01 04:43:34 +0000694 llvm_unreachable("should not be emitting lvalue bitcast as rvalue");
John McCall1de4d4e2011-04-07 08:22:57 +0000695
John McCall0ae287a2010-12-01 04:43:34 +0000696 case CK_Dependent:
697 case CK_BitCast:
698 case CK_ArrayToPointerDecay:
699 case CK_FunctionToPointerDecay:
700 case CK_NullToPointer:
701 case CK_NullToMemberPointer:
702 case CK_BaseToDerivedMemberPointer:
703 case CK_DerivedToBaseMemberPointer:
704 case CK_MemberPointerToBoolean:
John McCall4d4e5c12012-02-15 01:22:51 +0000705 case CK_ReinterpretMemberPointer:
John McCall0ae287a2010-12-01 04:43:34 +0000706 case CK_IntegralToPointer:
707 case CK_PointerToIntegral:
708 case CK_PointerToBoolean:
709 case CK_ToVoid:
710 case CK_VectorSplat:
711 case CK_IntegralCast:
712 case CK_IntegralToBoolean:
713 case CK_IntegralToFloating:
714 case CK_FloatingToIntegral:
715 case CK_FloatingToBoolean:
716 case CK_FloatingCast:
John McCall1d9b3b22011-09-09 05:25:32 +0000717 case CK_CPointerToObjCPointerCast:
718 case CK_BlockPointerToObjCPointerCast:
John McCall0ae287a2010-12-01 04:43:34 +0000719 case CK_AnyPointerToBlockPointerCast:
720 case CK_ObjCObjectLValueCast:
721 case CK_FloatingRealToComplex:
722 case CK_FloatingComplexToReal:
723 case CK_FloatingComplexToBoolean:
724 case CK_FloatingComplexCast:
725 case CK_FloatingComplexToIntegralComplex:
726 case CK_IntegralRealToComplex:
727 case CK_IntegralComplexToReal:
728 case CK_IntegralComplexToBoolean:
729 case CK_IntegralComplexCast:
730 case CK_IntegralComplexToFloatingComplex:
John McCall33e56f32011-09-10 06:18:15 +0000731 case CK_ARCProduceObject:
732 case CK_ARCConsumeObject:
733 case CK_ARCReclaimReturnedObject:
734 case CK_ARCExtendBlockObject:
Douglas Gregorac1303e2012-02-22 05:02:47 +0000735 case CK_CopyAndAutoreleaseBlockObject:
Eli Friedmana6c66ce2012-08-31 00:14:07 +0000736 case CK_BuiltinFnToFnPtr:
Guy Benyeie6b9d802013-01-20 12:31:11 +0000737 case CK_ZeroToOCLEvent:
Stephen Hines651f13c2014-04-23 16:59:28 -0700738 case CK_AddressSpaceConversion:
John McCall0ae287a2010-12-01 04:43:34 +0000739 llvm_unreachable("cast kind invalid for aggregate types");
Anders Carlsson30168422009-09-29 01:23:39 +0000740 }
Anders Carlssone4707ff2008-01-14 06:28:57 +0000741}
742
Chris Lattner96196622008-07-26 22:37:01 +0000743void AggExprEmitter::VisitCallExpr(const CallExpr *E) {
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700744 if (E->getCallReturnType(CGF.getContext())->isReferenceType()) {
Anders Carlssone70e8f72009-05-27 16:45:02 +0000745 EmitAggLoadOfLValue(E);
746 return;
747 }
Mike Stump1eb44332009-09-09 15:08:12 +0000748
John McCallfa037bd2010-05-22 22:13:32 +0000749 RValue RV = CGF.EmitCallExpr(E, getReturnValueSlot());
John McCall410ffb22011-08-25 23:04:34 +0000750 EmitMoveFromReturnSlot(E, RV);
Anders Carlsson148fe672007-10-31 22:04:46 +0000751}
Chris Lattner96196622008-07-26 22:37:01 +0000752
753void AggExprEmitter::VisitObjCMessageExpr(ObjCMessageExpr *E) {
John McCallfa037bd2010-05-22 22:13:32 +0000754 RValue RV = CGF.EmitObjCMessageExpr(E, getReturnValueSlot());
John McCall410ffb22011-08-25 23:04:34 +0000755 EmitMoveFromReturnSlot(E, RV);
Chris Lattner8fdf3282008-06-24 17:04:18 +0000756}
Anders Carlsson148fe672007-10-31 22:04:46 +0000757
Chris Lattner96196622008-07-26 22:37:01 +0000758void AggExprEmitter::VisitBinComma(const BinaryOperator *E) {
John McCall2a416372010-12-05 02:00:02 +0000759 CGF.EmitIgnoredExpr(E->getLHS());
John McCall558d2ab2010-09-15 10:14:12 +0000760 Visit(E->getRHS());
Eli Friedman07fa52a2008-05-20 07:56:31 +0000761}
762
Chris Lattnerb2d963f2007-08-31 22:54:14 +0000763void AggExprEmitter::VisitStmtExpr(const StmtExpr *E) {
John McCall150b4622011-01-26 04:00:11 +0000764 CodeGenFunction::StmtExprEvaluation eval(CGF);
John McCall558d2ab2010-09-15 10:14:12 +0000765 CGF.EmitCompoundStmt(*E->getSubStmt(), true, Dest);
Chris Lattnerb2d963f2007-08-31 22:54:14 +0000766}
767
Chris Lattner9c033562007-08-21 04:25:47 +0000768void AggExprEmitter::VisitBinaryOperator(const BinaryOperator *E) {
John McCall2de56d12010-08-25 11:45:40 +0000769 if (E->getOpcode() == BO_PtrMemD || E->getOpcode() == BO_PtrMemI)
Fariborz Jahanian8bfd31f2009-10-22 22:57:31 +0000770 VisitPointerToDataMemberBinaryOperator(E);
771 else
772 CGF.ErrorUnsupported(E, "aggregate binary expression");
773}
774
775void AggExprEmitter::VisitPointerToDataMemberBinaryOperator(
776 const BinaryOperator *E) {
777 LValue LV = CGF.EmitPointerToDataMemberBinaryExpr(E);
John McCalle0c11682012-07-02 23:58:38 +0000778 EmitFinalDestCopy(E->getType(), LV);
779}
780
781/// Is the value of the given expression possibly a reference to or
782/// into a __block variable?
783static bool isBlockVarRef(const Expr *E) {
784 // Make sure we look through parens.
785 E = E->IgnoreParens();
786
787 // Check for a direct reference to a __block variable.
788 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) {
789 const VarDecl *var = dyn_cast<VarDecl>(DRE->getDecl());
790 return (var && var->hasAttr<BlocksAttr>());
791 }
792
793 // More complicated stuff.
794
795 // Binary operators.
796 if (const BinaryOperator *op = dyn_cast<BinaryOperator>(E)) {
797 // For an assignment or pointer-to-member operation, just care
798 // about the LHS.
799 if (op->isAssignmentOp() || op->isPtrMemOp())
800 return isBlockVarRef(op->getLHS());
801
802 // For a comma, just care about the RHS.
803 if (op->getOpcode() == BO_Comma)
804 return isBlockVarRef(op->getRHS());
805
806 // FIXME: pointer arithmetic?
807 return false;
808
809 // Check both sides of a conditional operator.
810 } else if (const AbstractConditionalOperator *op
811 = dyn_cast<AbstractConditionalOperator>(E)) {
812 return isBlockVarRef(op->getTrueExpr())
813 || isBlockVarRef(op->getFalseExpr());
814
815 // OVEs are required to support BinaryConditionalOperators.
816 } else if (const OpaqueValueExpr *op
817 = dyn_cast<OpaqueValueExpr>(E)) {
818 if (const Expr *src = op->getSourceExpr())
819 return isBlockVarRef(src);
820
821 // Casts are necessary to get things like (*(int*)&var) = foo().
822 // We don't really care about the kind of cast here, except
823 // we don't want to look through l2r casts, because it's okay
824 // to get the *value* in a __block variable.
825 } else if (const CastExpr *cast = dyn_cast<CastExpr>(E)) {
826 if (cast->getCastKind() == CK_LValueToRValue)
827 return false;
828 return isBlockVarRef(cast->getSubExpr());
829
830 // Handle unary operators. Again, just aggressively look through
831 // it, ignoring the operation.
832 } else if (const UnaryOperator *uop = dyn_cast<UnaryOperator>(E)) {
833 return isBlockVarRef(uop->getSubExpr());
834
835 // Look into the base of a field access.
836 } else if (const MemberExpr *mem = dyn_cast<MemberExpr>(E)) {
837 return isBlockVarRef(mem->getBase());
838
839 // Look into the base of a subscript.
840 } else if (const ArraySubscriptExpr *sub = dyn_cast<ArraySubscriptExpr>(E)) {
841 return isBlockVarRef(sub->getBase());
842 }
843
844 return false;
Chris Lattneree755f92007-08-21 04:59:27 +0000845}
846
Chris Lattner03d6fb92007-08-21 04:43:17 +0000847void AggExprEmitter::VisitBinAssign(const BinaryOperator *E) {
Eli Friedmanff6e2b72008-02-11 01:09:17 +0000848 // For an assignment to work, the value on the right has
849 // to be compatible with the value on the left.
Eli Friedman2dce5f82009-05-28 23:04:00 +0000850 assert(CGF.getContext().hasSameUnqualifiedType(E->getLHS()->getType(),
851 E->getRHS()->getType())
Eli Friedmanff6e2b72008-02-11 01:09:17 +0000852 && "Invalid assignment");
John McCallcd940a12010-12-06 06:10:02 +0000853
John McCalle0c11682012-07-02 23:58:38 +0000854 // If the LHS might be a __block variable, and the RHS can
855 // potentially cause a block copy, we need to evaluate the RHS first
856 // so that the assignment goes the right place.
857 // This is pretty semantically fragile.
858 if (isBlockVarRef(E->getLHS()) &&
859 E->getRHS()->HasSideEffects(CGF.getContext())) {
860 // Ensure that we have a destination, and evaluate the RHS into that.
861 EnsureDest(E->getRHS()->getType());
862 Visit(E->getRHS());
863
864 // Now emit the LHS and copy into it.
Richard Smith4def70d2012-10-09 19:52:38 +0000865 LValue LHS = CGF.EmitCheckedLValue(E->getLHS(), CodeGenFunction::TCK_Store);
John McCalle0c11682012-07-02 23:58:38 +0000866
John McCall9eda3ab2013-03-07 21:37:17 +0000867 // That copy is an atomic copy if the LHS is atomic.
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700868 if (LHS.getType()->isAtomicType() ||
869 CGF.LValueIsSuitableForInlineAtomic(LHS)) {
John McCall9eda3ab2013-03-07 21:37:17 +0000870 CGF.EmitAtomicStore(Dest.asRValue(), LHS, /*isInit*/ false);
871 return;
872 }
873
John McCalle0c11682012-07-02 23:58:38 +0000874 EmitCopy(E->getLHS()->getType(),
875 AggValueSlot::forLValue(LHS, AggValueSlot::IsDestructed,
876 needsGC(E->getLHS()->getType()),
877 AggValueSlot::IsAliased),
878 Dest);
879 return;
880 }
Chad Rosier649b4a12012-03-29 17:37:10 +0000881
Chris Lattner9c033562007-08-21 04:25:47 +0000882 LValue LHS = CGF.EmitLValue(E->getLHS());
Chris Lattner883f6a72007-08-11 00:04:45 +0000883
John McCall9eda3ab2013-03-07 21:37:17 +0000884 // If we have an atomic type, evaluate into the destination and then
885 // do an atomic copy.
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700886 if (LHS.getType()->isAtomicType() ||
887 CGF.LValueIsSuitableForInlineAtomic(LHS)) {
John McCall9eda3ab2013-03-07 21:37:17 +0000888 EnsureDest(E->getRHS()->getType());
889 Visit(E->getRHS());
890 CGF.EmitAtomicStore(Dest.asRValue(), LHS, /*isInit*/ false);
891 return;
892 }
893
John McCalldb458062011-11-07 03:59:57 +0000894 // Codegen the RHS so that it stores directly into the LHS.
895 AggValueSlot LHSSlot =
896 AggValueSlot::forLValue(LHS, AggValueSlot::IsDestructed,
897 needsGC(E->getLHS()->getType()),
Chad Rosier649b4a12012-03-29 17:37:10 +0000898 AggValueSlot::IsAliased);
Fariborz Jahanian3ac83d62013-01-25 23:57:05 +0000899 // A non-volatile aggregate destination might have volatile member.
900 if (!LHSSlot.isVolatile() &&
901 CGF.hasVolatileMember(E->getLHS()->getType()))
902 LHSSlot.setVolatile(true);
903
John McCalle0c11682012-07-02 23:58:38 +0000904 CGF.EmitAggExpr(E->getRHS(), LHSSlot);
905
906 // Copy into the destination if the assignment isn't ignored.
907 EmitFinalDestCopy(E->getType(), LHS);
Chris Lattner883f6a72007-08-11 00:04:45 +0000908}
909
John McCall56ca35d2011-02-17 10:25:35 +0000910void AggExprEmitter::
911VisitAbstractConditionalOperator(const AbstractConditionalOperator *E) {
Daniel Dunbar9615ecb2008-11-13 01:38:36 +0000912 llvm::BasicBlock *LHSBlock = CGF.createBasicBlock("cond.true");
913 llvm::BasicBlock *RHSBlock = CGF.createBasicBlock("cond.false");
914 llvm::BasicBlock *ContBlock = CGF.createBasicBlock("cond.end");
Mike Stump1eb44332009-09-09 15:08:12 +0000915
John McCall56ca35d2011-02-17 10:25:35 +0000916 // Bind the common expression if necessary.
Eli Friedmand97927d2012-01-06 20:42:20 +0000917 CodeGenFunction::OpaqueValueMapping binding(CGF, E);
John McCall56ca35d2011-02-17 10:25:35 +0000918
Stephen Hines651f13c2014-04-23 16:59:28 -0700919 RegionCounter Cnt = CGF.getPGORegionCounter(E);
John McCall150b4622011-01-26 04:00:11 +0000920 CodeGenFunction::ConditionalEvaluation eval(CGF);
Stephen Hines651f13c2014-04-23 16:59:28 -0700921 CGF.EmitBranchOnBoolExpr(E->getCond(), LHSBlock, RHSBlock, Cnt.getCount());
Mike Stump1eb44332009-09-09 15:08:12 +0000922
John McCall74fb0ed2010-11-17 00:07:33 +0000923 // Save whether the destination's lifetime is externally managed.
John McCallfd71fb82011-08-26 08:02:37 +0000924 bool isExternallyDestructed = Dest.isExternallyDestructed();
Chris Lattner883f6a72007-08-11 00:04:45 +0000925
John McCall150b4622011-01-26 04:00:11 +0000926 eval.begin(CGF);
927 CGF.EmitBlock(LHSBlock);
Stephen Hines651f13c2014-04-23 16:59:28 -0700928 Cnt.beginRegion(Builder);
John McCall56ca35d2011-02-17 10:25:35 +0000929 Visit(E->getTrueExpr());
John McCall150b4622011-01-26 04:00:11 +0000930 eval.end(CGF);
Mike Stump1eb44332009-09-09 15:08:12 +0000931
John McCall150b4622011-01-26 04:00:11 +0000932 assert(CGF.HaveInsertPoint() && "expression evaluation ended with no IP!");
933 CGF.Builder.CreateBr(ContBlock);
Mike Stump1eb44332009-09-09 15:08:12 +0000934
John McCall74fb0ed2010-11-17 00:07:33 +0000935 // If the result of an agg expression is unused, then the emission
936 // of the LHS might need to create a destination slot. That's fine
937 // with us, and we can safely emit the RHS into the same slot, but
John McCallfd71fb82011-08-26 08:02:37 +0000938 // we shouldn't claim that it's already being destructed.
939 Dest.setExternallyDestructed(isExternallyDestructed);
John McCall74fb0ed2010-11-17 00:07:33 +0000940
John McCall150b4622011-01-26 04:00:11 +0000941 eval.begin(CGF);
942 CGF.EmitBlock(RHSBlock);
John McCall56ca35d2011-02-17 10:25:35 +0000943 Visit(E->getFalseExpr());
John McCall150b4622011-01-26 04:00:11 +0000944 eval.end(CGF);
Mike Stump1eb44332009-09-09 15:08:12 +0000945
Chris Lattner9c033562007-08-21 04:25:47 +0000946 CGF.EmitBlock(ContBlock);
Chris Lattner883f6a72007-08-11 00:04:45 +0000947}
Chris Lattneree755f92007-08-21 04:59:27 +0000948
Anders Carlssona294ca82009-07-08 18:33:14 +0000949void AggExprEmitter::VisitChooseExpr(const ChooseExpr *CE) {
Eli Friedmana5e66012013-07-20 00:40:58 +0000950 Visit(CE->getChosenSubExpr());
Anders Carlssona294ca82009-07-08 18:33:14 +0000951}
952
Eli Friedmanb1851242008-05-27 15:51:49 +0000953void AggExprEmitter::VisitVAArgExpr(VAArgExpr *VE) {
Daniel Dunbar07855702009-02-11 22:25:55 +0000954 llvm::Value *ArgValue = CGF.EmitVAListRef(VE->getSubExpr());
Anders Carlssonddf7cac2008-11-04 05:30:00 +0000955 llvm::Value *ArgPtr = CGF.EmitVAArg(ArgValue, VE->getType());
956
Sebastian Redl0262f022009-01-09 21:09:38 +0000957 if (!ArgPtr) {
Stephen Hines651f13c2014-04-23 16:59:28 -0700958 // If EmitVAArg fails, we fall back to the LLVM instruction.
959 llvm::Value *Val =
960 Builder.CreateVAArg(ArgValue, CGF.ConvertType(VE->getType()));
961 if (!Dest.isIgnored())
962 Builder.CreateStore(Val, Dest.getAddr());
Sebastian Redl0262f022009-01-09 21:09:38 +0000963 return;
964 }
965
John McCalle0c11682012-07-02 23:58:38 +0000966 EmitFinalDestCopy(VE->getType(), CGF.MakeAddrLValue(ArgPtr, VE->getType()));
Eli Friedmanb1851242008-05-27 15:51:49 +0000967}
968
Anders Carlssonb58d0172009-05-30 23:23:33 +0000969void AggExprEmitter::VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E) {
John McCall558d2ab2010-09-15 10:14:12 +0000970 // Ensure that we have a slot, but if we already do, remember
John McCallfd71fb82011-08-26 08:02:37 +0000971 // whether it was externally destructed.
972 bool wasExternallyDestructed = Dest.isExternallyDestructed();
John McCalle0c11682012-07-02 23:58:38 +0000973 EnsureDest(E->getType());
John McCallfd71fb82011-08-26 08:02:37 +0000974
975 // We're going to push a destructor if there isn't already one.
976 Dest.setExternallyDestructed();
Mike Stump1eb44332009-09-09 15:08:12 +0000977
John McCall558d2ab2010-09-15 10:14:12 +0000978 Visit(E->getSubExpr());
Anders Carlssonb58d0172009-05-30 23:23:33 +0000979
John McCallfd71fb82011-08-26 08:02:37 +0000980 // Push that destructor we promised.
981 if (!wasExternallyDestructed)
Peter Collingbourne86811602011-11-27 22:09:22 +0000982 CGF.EmitCXXTemporary(E->getTemporary(), E->getType(), Dest.getAddr());
Anders Carlssonb58d0172009-05-30 23:23:33 +0000983}
984
Anders Carlssonb14095a2009-04-17 00:06:03 +0000985void
Anders Carlsson31ccf372009-05-03 17:47:16 +0000986AggExprEmitter::VisitCXXConstructExpr(const CXXConstructExpr *E) {
John McCall558d2ab2010-09-15 10:14:12 +0000987 AggValueSlot Slot = EnsureSlot(E->getType());
988 CGF.EmitCXXConstructExpr(E, Slot);
Anders Carlsson7f6ad152009-05-19 04:48:36 +0000989}
990
Eli Friedman4c5d8af2012-02-09 03:32:31 +0000991void
992AggExprEmitter::VisitLambdaExpr(LambdaExpr *E) {
993 AggValueSlot Slot = EnsureSlot(E->getType());
994 CGF.EmitLambdaExpr(E, Slot);
995}
996
John McCall4765fa02010-12-06 08:20:24 +0000997void AggExprEmitter::VisitExprWithCleanups(ExprWithCleanups *E) {
John McCall1a343eb2011-11-10 08:15:53 +0000998 CGF.enterFullExpression(E);
999 CodeGenFunction::RunCleanupsScope cleanups(CGF);
1000 Visit(E->getSubExpr());
Anders Carlssonb14095a2009-04-17 00:06:03 +00001001}
1002
Douglas Gregored8abf12010-07-08 06:14:04 +00001003void AggExprEmitter::VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *E) {
John McCall558d2ab2010-09-15 10:14:12 +00001004 QualType T = E->getType();
1005 AggValueSlot Slot = EnsureSlot(T);
John McCalla07398e2011-06-16 04:16:24 +00001006 EmitNullInitializationToLValue(CGF.MakeAddrLValue(Slot.getAddr(), T));
Anders Carlsson30311fa2009-12-16 06:57:54 +00001007}
1008
1009void AggExprEmitter::VisitImplicitValueInitExpr(ImplicitValueInitExpr *E) {
John McCall558d2ab2010-09-15 10:14:12 +00001010 QualType T = E->getType();
1011 AggValueSlot Slot = EnsureSlot(T);
John McCalla07398e2011-06-16 04:16:24 +00001012 EmitNullInitializationToLValue(CGF.MakeAddrLValue(Slot.getAddr(), T));
Nuno Lopes329763b2009-10-18 15:18:11 +00001013}
1014
Chris Lattner1b726772010-12-02 07:07:26 +00001015/// isSimpleZero - If emitting this value will obviously just cause a store of
1016/// zero to memory, return true. This can return false if uncertain, so it just
1017/// handles simple cases.
1018static bool isSimpleZero(const Expr *E, CodeGenFunction &CGF) {
Peter Collingbournef111d932011-04-15 00:35:48 +00001019 E = E->IgnoreParens();
1020
Chris Lattner1b726772010-12-02 07:07:26 +00001021 // 0
1022 if (const IntegerLiteral *IL = dyn_cast<IntegerLiteral>(E))
1023 return IL->getValue() == 0;
1024 // +0.0
1025 if (const FloatingLiteral *FL = dyn_cast<FloatingLiteral>(E))
1026 return FL->getValue().isPosZero();
1027 // int()
1028 if ((isa<ImplicitValueInitExpr>(E) || isa<CXXScalarValueInitExpr>(E)) &&
1029 CGF.getTypes().isZeroInitializable(E->getType()))
1030 return true;
1031 // (int*)0 - Null pointer expressions.
1032 if (const CastExpr *ICE = dyn_cast<CastExpr>(E))
1033 return ICE->getCastKind() == CK_NullToPointer;
1034 // '\0'
1035 if (const CharacterLiteral *CL = dyn_cast<CharacterLiteral>(E))
1036 return CL->getValue() == 0;
1037
1038 // Otherwise, hard case: conservatively return false.
1039 return false;
1040}
1041
1042
Anders Carlsson78e83f82010-02-03 17:33:16 +00001043void
Nick Lewycky4ee7dc22013-10-02 02:29:49 +00001044AggExprEmitter::EmitInitializationToLValue(Expr *E, LValue LV) {
John McCalla07398e2011-06-16 04:16:24 +00001045 QualType type = LV.getType();
Mike Stump7f79f9b2009-05-29 15:46:01 +00001046 // FIXME: Ignore result?
Chris Lattnerf81557c2008-04-04 18:42:16 +00001047 // FIXME: Are initializers affected by volatile?
Chris Lattner1b726772010-12-02 07:07:26 +00001048 if (Dest.isZeroed() && isSimpleZero(E, CGF)) {
1049 // Storing "i32 0" to a zero'd memory location is a noop.
John McCall9d232c82013-03-07 21:37:08 +00001050 return;
Richard Smith0dbe2fb2012-12-21 03:17:28 +00001051 } else if (isa<ImplicitValueInitExpr>(E) || isa<CXXScalarValueInitExpr>(E)) {
John McCall9d232c82013-03-07 21:37:08 +00001052 return EmitNullInitializationToLValue(LV);
John McCalla07398e2011-06-16 04:16:24 +00001053 } else if (type->isReferenceType()) {
Richard Smithd4ec5622013-06-12 23:38:09 +00001054 RValue RV = CGF.EmitReferenceBindingToExpr(E);
John McCall9d232c82013-03-07 21:37:08 +00001055 return CGF.EmitStoreThroughLValue(RV, LV);
1056 }
1057
1058 switch (CGF.getEvaluationKind(type)) {
1059 case TEK_Complex:
1060 CGF.EmitComplexExprIntoLValue(E, LV, /*isInit*/ true);
1061 return;
1062 case TEK_Aggregate:
John McCall7c2349b2011-08-25 20:40:09 +00001063 CGF.EmitAggExpr(E, AggValueSlot::forLValue(LV,
1064 AggValueSlot::IsDestructed,
1065 AggValueSlot::DoesNotNeedGCBarriers,
John McCall410ffb22011-08-25 23:04:34 +00001066 AggValueSlot::IsNotAliased,
John McCalla07398e2011-06-16 04:16:24 +00001067 Dest.isZeroed()));
John McCall9d232c82013-03-07 21:37:08 +00001068 return;
1069 case TEK_Scalar:
1070 if (LV.isSimple()) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001071 CGF.EmitScalarInit(E, /*D=*/nullptr, LV, /*Captured=*/false);
John McCall9d232c82013-03-07 21:37:08 +00001072 } else {
1073 CGF.EmitStoreThroughLValue(RValue::get(CGF.EmitScalarExpr(E)), LV);
1074 }
1075 return;
Chris Lattnerf81557c2008-04-04 18:42:16 +00001076 }
John McCall9d232c82013-03-07 21:37:08 +00001077 llvm_unreachable("bad evaluation kind");
Chris Lattnerf81557c2008-04-04 18:42:16 +00001078}
1079
John McCalla07398e2011-06-16 04:16:24 +00001080void AggExprEmitter::EmitNullInitializationToLValue(LValue lv) {
1081 QualType type = lv.getType();
1082
Chris Lattner1b726772010-12-02 07:07:26 +00001083 // If the destination slot is already zeroed out before the aggregate is
1084 // copied into it, we don't have to emit any zeros here.
John McCalla07398e2011-06-16 04:16:24 +00001085 if (Dest.isZeroed() && CGF.getTypes().isZeroInitializable(type))
Chris Lattner1b726772010-12-02 07:07:26 +00001086 return;
1087
John McCall9d232c82013-03-07 21:37:08 +00001088 if (CGF.hasScalarEvaluationKind(type)) {
Richard Smith0dbe2fb2012-12-21 03:17:28 +00001089 // For non-aggregates, we can store the appropriate null constant.
1090 llvm::Value *null = CGF.CGM.EmitNullConstant(type);
Eli Friedmanb1e3f322012-02-22 05:38:59 +00001091 // Note that the following is not equivalent to
1092 // EmitStoreThroughBitfieldLValue for ARC types.
Eli Friedman5a13d4d2012-02-24 23:53:49 +00001093 if (lv.isBitField()) {
Eli Friedmanb1e3f322012-02-22 05:38:59 +00001094 CGF.EmitStoreThroughBitfieldLValue(RValue::get(null), lv);
Eli Friedman5a13d4d2012-02-24 23:53:49 +00001095 } else {
1096 assert(lv.isSimple());
1097 CGF.EmitStoreOfScalar(null, lv, /* isInitialization */ true);
1098 }
Lauro Ramos Venancio145cd892008-02-19 19:27:31 +00001099 } else {
Chris Lattnerf81557c2008-04-04 18:42:16 +00001100 // There's a potential optimization opportunity in combining
1101 // memsets; that would be easy for arrays, but relatively
1102 // difficult for structures with the current code.
John McCalla07398e2011-06-16 04:16:24 +00001103 CGF.EmitNullInitialization(lv.getAddress(), lv.getType());
Chris Lattnerf81557c2008-04-04 18:42:16 +00001104 }
1105}
1106
Chris Lattnerf81557c2008-04-04 18:42:16 +00001107void AggExprEmitter::VisitInitListExpr(InitListExpr *E) {
Eli Friedmana385b3c2008-12-02 01:17:45 +00001108#if 0
Eli Friedman13a5be12009-12-04 01:30:56 +00001109 // FIXME: Assess perf here? Figure out what cases are worth optimizing here
1110 // (Length of globals? Chunks of zeroed-out space?).
Eli Friedmana385b3c2008-12-02 01:17:45 +00001111 //
Mike Stumpf5408fe2009-05-16 07:57:57 +00001112 // If we can, prefer a copy from a global; this is a lot less code for long
1113 // globals, and it's easier for the current optimizers to analyze.
Eli Friedman13a5be12009-12-04 01:30:56 +00001114 if (llvm::Constant* C = CGF.CGM.EmitConstantExpr(E, E->getType(), &CGF)) {
Eli Friedman994ffef2008-11-30 02:11:09 +00001115 llvm::GlobalVariable* GV =
Eli Friedman13a5be12009-12-04 01:30:56 +00001116 new llvm::GlobalVariable(CGF.CGM.getModule(), C->getType(), true,
1117 llvm::GlobalValue::InternalLinkage, C, "");
John McCalle0c11682012-07-02 23:58:38 +00001118 EmitFinalDestCopy(E->getType(), CGF.MakeAddrLValue(GV, E->getType()));
Eli Friedman994ffef2008-11-30 02:11:09 +00001119 return;
1120 }
Eli Friedmana385b3c2008-12-02 01:17:45 +00001121#endif
Chris Lattnerd0db03a2010-09-06 00:11:41 +00001122 if (E->hadArrayRangeDesignator())
Douglas Gregora9c87802009-01-29 19:42:23 +00001123 CGF.ErrorUnsupported(E, "GNU array range designator extension");
Douglas Gregora9c87802009-01-29 19:42:23 +00001124
Richard Smithe69fb202013-05-23 21:54:14 +00001125 AggValueSlot Dest = EnsureSlot(E->getType());
1126
Eli Friedman377ecc72012-04-16 03:54:45 +00001127 LValue DestLV = CGF.MakeAddrLValue(Dest.getAddr(), E->getType(),
1128 Dest.getAlignment());
John McCall558d2ab2010-09-15 10:14:12 +00001129
Chris Lattnerf81557c2008-04-04 18:42:16 +00001130 // Handle initialization of an array.
1131 if (E->getType()->isArrayType()) {
Richard Smithfe587202012-04-15 02:50:59 +00001132 if (E->isStringLiteralInit())
1133 return Visit(E->getInit(0));
Eli Friedman922696f2008-05-19 17:51:16 +00001134
Eli Friedman5c89c392012-02-23 02:25:10 +00001135 QualType elementType =
1136 CGF.getContext().getAsArrayType(E->getType())->getElementType();
Argyrios Kyrtzidis3b4d4902011-04-28 18:53:58 +00001137
Sebastian Redl32cf1f22012-02-17 08:42:25 +00001138 llvm::PointerType *APType =
Eli Friedman377ecc72012-04-16 03:54:45 +00001139 cast<llvm::PointerType>(Dest.getAddr()->getType());
Sebastian Redl32cf1f22012-02-17 08:42:25 +00001140 llvm::ArrayType *AType =
1141 cast<llvm::ArrayType>(APType->getElementType());
Chris Lattner1b726772010-12-02 07:07:26 +00001142
Eli Friedman377ecc72012-04-16 03:54:45 +00001143 EmitArrayInit(Dest.getAddr(), AType, elementType, E);
Chris Lattnerf81557c2008-04-04 18:42:16 +00001144 return;
1145 }
Mike Stump1eb44332009-09-09 15:08:12 +00001146
Stephen Hines176edba2014-12-01 14:53:08 -08001147 if (E->getType()->isAtomicType()) {
1148 // An _Atomic(T) object can be list-initialized from an expression
1149 // of the same type.
1150 assert(E->getNumInits() == 1 &&
1151 CGF.getContext().hasSameUnqualifiedType(E->getInit(0)->getType(),
1152 E->getType()) &&
1153 "unexpected list initialization for atomic object");
1154 return Visit(E->getInit(0));
1155 }
1156
Chris Lattnerf81557c2008-04-04 18:42:16 +00001157 assert(E->getType()->isRecordType() && "Only support structs/unions here!");
Mike Stump1eb44332009-09-09 15:08:12 +00001158
Chris Lattnerf81557c2008-04-04 18:42:16 +00001159 // Do struct initialization; this code just sets each individual member
1160 // to the approprate value. This makes bitfield support automatic;
1161 // the disadvantage is that the generated code is more difficult for
1162 // the optimizer, especially with bitfields.
1163 unsigned NumInitElements = E->getNumInits();
John McCall2b30dcf2011-07-11 19:35:02 +00001164 RecordDecl *record = E->getType()->castAs<RecordType>()->getDecl();
Richard Smithc3bf52c2013-04-20 22:23:05 +00001165
1166 // Prepare a 'this' for CXXDefaultInitExprs.
1167 CodeGenFunction::FieldConstructionScope FCS(CGF, Dest.getAddr());
1168
John McCall2b30dcf2011-07-11 19:35:02 +00001169 if (record->isUnion()) {
Douglas Gregor0bb76892009-01-29 16:53:55 +00001170 // Only initialize one field of a union. The field itself is
1171 // specified by the initializer list.
1172 if (!E->getInitializedFieldInUnion()) {
1173 // Empty union; we have nothing to do.
Mike Stump1eb44332009-09-09 15:08:12 +00001174
Douglas Gregor0bb76892009-01-29 16:53:55 +00001175#ifndef NDEBUG
1176 // Make sure that it's really an empty and not a failure of
1177 // semantic analysis.
Stephen Hines651f13c2014-04-23 16:59:28 -07001178 for (const auto *Field : record->fields())
Douglas Gregor0bb76892009-01-29 16:53:55 +00001179 assert(Field->isUnnamedBitfield() && "Only unnamed bitfields allowed");
1180#endif
1181 return;
1182 }
1183
1184 // FIXME: volatility
1185 FieldDecl *Field = E->getInitializedFieldInUnion();
Douglas Gregor0bb76892009-01-29 16:53:55 +00001186
Eli Friedman377ecc72012-04-16 03:54:45 +00001187 LValue FieldLoc = CGF.EmitLValueForFieldInitialization(DestLV, Field);
Douglas Gregor0bb76892009-01-29 16:53:55 +00001188 if (NumInitElements) {
1189 // Store the initializer into the field
Chad Rosier649b4a12012-03-29 17:37:10 +00001190 EmitInitializationToLValue(E->getInit(0), FieldLoc);
Douglas Gregor0bb76892009-01-29 16:53:55 +00001191 } else {
Chris Lattner1b726772010-12-02 07:07:26 +00001192 // Default-initialize to null.
John McCalla07398e2011-06-16 04:16:24 +00001193 EmitNullInitializationToLValue(FieldLoc);
Douglas Gregor0bb76892009-01-29 16:53:55 +00001194 }
1195
1196 return;
1197 }
Mike Stump1eb44332009-09-09 15:08:12 +00001198
John McCall2b30dcf2011-07-11 19:35:02 +00001199 // We'll need to enter cleanup scopes in case any of the member
1200 // initializers throw an exception.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001201 SmallVector<EHScopeStack::stable_iterator, 16> cleanups;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001202 llvm::Instruction *cleanupDominator = nullptr;
John McCall2b30dcf2011-07-11 19:35:02 +00001203
Chris Lattnerf81557c2008-04-04 18:42:16 +00001204 // Here we iterate over the fields; this makes it simpler to both
1205 // default-initialize fields and skip over unnamed fields.
John McCall2b30dcf2011-07-11 19:35:02 +00001206 unsigned curInitIndex = 0;
Stephen Hines651f13c2014-04-23 16:59:28 -07001207 for (const auto *field : record->fields()) {
John McCall2b30dcf2011-07-11 19:35:02 +00001208 // We're done once we hit the flexible array member.
1209 if (field->getType()->isIncompleteArrayType())
Douglas Gregor44b43212008-12-11 16:49:14 +00001210 break;
1211
John McCall2b30dcf2011-07-11 19:35:02 +00001212 // Always skip anonymous bitfields.
1213 if (field->isUnnamedBitfield())
Chris Lattnerf81557c2008-04-04 18:42:16 +00001214 continue;
Douglas Gregor34e79462009-01-28 23:36:17 +00001215
John McCall2b30dcf2011-07-11 19:35:02 +00001216 // We're done if we reach the end of the explicit initializers, we
1217 // have a zeroed object, and the rest of the fields are
1218 // zero-initializable.
1219 if (curInitIndex == NumInitElements && Dest.isZeroed() &&
Chris Lattner1b726772010-12-02 07:07:26 +00001220 CGF.getTypes().isZeroInitializable(E->getType()))
1221 break;
1222
Eli Friedman377ecc72012-04-16 03:54:45 +00001223
Stephen Hines651f13c2014-04-23 16:59:28 -07001224 LValue LV = CGF.EmitLValueForFieldInitialization(DestLV, field);
Fariborz Jahanian14674ff2009-05-27 19:54:11 +00001225 // We never generate write-barries for initialized fields.
John McCall2b30dcf2011-07-11 19:35:02 +00001226 LV.setNonGC(true);
Chris Lattner1b726772010-12-02 07:07:26 +00001227
John McCall2b30dcf2011-07-11 19:35:02 +00001228 if (curInitIndex < NumInitElements) {
Chris Lattnerb35baae2010-03-08 21:08:07 +00001229 // Store the initializer into the field.
Chad Rosier649b4a12012-03-29 17:37:10 +00001230 EmitInitializationToLValue(E->getInit(curInitIndex++), LV);
Chris Lattnerf81557c2008-04-04 18:42:16 +00001231 } else {
1232 // We're out of initalizers; default-initialize to null
John McCall2b30dcf2011-07-11 19:35:02 +00001233 EmitNullInitializationToLValue(LV);
1234 }
1235
1236 // Push a destructor if necessary.
1237 // FIXME: if we have an array of structures, all explicitly
1238 // initialized, we can end up pushing a linear number of cleanups.
1239 bool pushedCleanup = false;
1240 if (QualType::DestructionKind dtorKind
1241 = field->getType().isDestructedType()) {
1242 assert(LV.isSimple());
1243 if (CGF.needsEHCleanup(dtorKind)) {
John McCall6f103ba2011-11-10 10:43:54 +00001244 if (!cleanupDominator)
1245 cleanupDominator = CGF.Builder.CreateUnreachable(); // placeholder
1246
John McCall2b30dcf2011-07-11 19:35:02 +00001247 CGF.pushDestroy(EHCleanup, LV.getAddress(), field->getType(),
1248 CGF.getDestroyer(dtorKind), false);
1249 cleanups.push_back(CGF.EHStack.stable_begin());
1250 pushedCleanup = true;
1251 }
Chris Lattnerf81557c2008-04-04 18:42:16 +00001252 }
Chris Lattner1b726772010-12-02 07:07:26 +00001253
1254 // If the GEP didn't get used because of a dead zero init or something
1255 // else, clean it up for -O0 builds and general tidiness.
John McCall2b30dcf2011-07-11 19:35:02 +00001256 if (!pushedCleanup && LV.isSimple())
Chris Lattner1b726772010-12-02 07:07:26 +00001257 if (llvm::GetElementPtrInst *GEP =
John McCall2b30dcf2011-07-11 19:35:02 +00001258 dyn_cast<llvm::GetElementPtrInst>(LV.getAddress()))
Chris Lattner1b726772010-12-02 07:07:26 +00001259 if (GEP->use_empty())
1260 GEP->eraseFromParent();
Lauro Ramos Venancio145cd892008-02-19 19:27:31 +00001261 }
John McCall2b30dcf2011-07-11 19:35:02 +00001262
1263 // Deactivate all the partial cleanups in reverse order, which
1264 // generally means popping them.
1265 for (unsigned i = cleanups.size(); i != 0; --i)
John McCall6f103ba2011-11-10 10:43:54 +00001266 CGF.DeactivateCleanupBlock(cleanups[i-1], cleanupDominator);
1267
1268 // Destroy the placeholder if we made one.
1269 if (cleanupDominator)
1270 cleanupDominator->eraseFromParent();
Devang Patel636c3d02007-10-26 17:44:44 +00001271}
1272
Chris Lattneree755f92007-08-21 04:59:27 +00001273//===----------------------------------------------------------------------===//
1274// Entry Points into this File
1275//===----------------------------------------------------------------------===//
1276
Chris Lattner1b726772010-12-02 07:07:26 +00001277/// GetNumNonZeroBytesInInit - Get an approximate count of the number of
1278/// non-zero bytes that will be stored when outputting the initializer for the
1279/// specified initializer expression.
Ken Dyck02c45332011-04-24 17:17:56 +00001280static CharUnits GetNumNonZeroBytesInInit(const Expr *E, CodeGenFunction &CGF) {
Peter Collingbournef111d932011-04-15 00:35:48 +00001281 E = E->IgnoreParens();
Chris Lattner1b726772010-12-02 07:07:26 +00001282
1283 // 0 and 0.0 won't require any non-zero stores!
Ken Dyck02c45332011-04-24 17:17:56 +00001284 if (isSimpleZero(E, CGF)) return CharUnits::Zero();
Chris Lattner1b726772010-12-02 07:07:26 +00001285
1286 // If this is an initlist expr, sum up the size of sizes of the (present)
1287 // elements. If this is something weird, assume the whole thing is non-zero.
1288 const InitListExpr *ILE = dyn_cast<InitListExpr>(E);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001289 if (!ILE || !CGF.getTypes().isZeroInitializable(ILE->getType()))
Ken Dyck02c45332011-04-24 17:17:56 +00001290 return CGF.getContext().getTypeSizeInChars(E->getType());
Chris Lattner1b726772010-12-02 07:07:26 +00001291
Chris Lattnerd1d56df2010-12-02 18:29:00 +00001292 // InitListExprs for structs have to be handled carefully. If there are
1293 // reference members, we need to consider the size of the reference, not the
1294 // referencee. InitListExprs for unions and arrays can't have references.
Chris Lattner8c00ad12010-12-02 22:52:04 +00001295 if (const RecordType *RT = E->getType()->getAs<RecordType>()) {
1296 if (!RT->isUnionType()) {
1297 RecordDecl *SD = E->getType()->getAs<RecordType>()->getDecl();
Ken Dyck02c45332011-04-24 17:17:56 +00001298 CharUnits NumNonZeroBytes = CharUnits::Zero();
Chris Lattner8c00ad12010-12-02 22:52:04 +00001299
1300 unsigned ILEElement = 0;
Stephen Hines651f13c2014-04-23 16:59:28 -07001301 for (const auto *Field : SD->fields()) {
Chris Lattner8c00ad12010-12-02 22:52:04 +00001302 // We're done once we hit the flexible array member or run out of
1303 // InitListExpr elements.
1304 if (Field->getType()->isIncompleteArrayType() ||
1305 ILEElement == ILE->getNumInits())
1306 break;
1307 if (Field->isUnnamedBitfield())
1308 continue;
Chris Lattnerd1d56df2010-12-02 18:29:00 +00001309
Chris Lattner8c00ad12010-12-02 22:52:04 +00001310 const Expr *E = ILE->getInit(ILEElement++);
1311
1312 // Reference values are always non-null and have the width of a pointer.
1313 if (Field->getType()->isReferenceType())
Ken Dyck02c45332011-04-24 17:17:56 +00001314 NumNonZeroBytes += CGF.getContext().toCharUnitsFromBits(
John McCall64aa4b32013-04-16 22:48:15 +00001315 CGF.getTarget().getPointerWidth(0));
Chris Lattner8c00ad12010-12-02 22:52:04 +00001316 else
1317 NumNonZeroBytes += GetNumNonZeroBytesInInit(E, CGF);
1318 }
Chris Lattnerd1d56df2010-12-02 18:29:00 +00001319
Chris Lattner8c00ad12010-12-02 22:52:04 +00001320 return NumNonZeroBytes;
Chris Lattnerd1d56df2010-12-02 18:29:00 +00001321 }
Chris Lattnerd1d56df2010-12-02 18:29:00 +00001322 }
1323
1324
Ken Dyck02c45332011-04-24 17:17:56 +00001325 CharUnits NumNonZeroBytes = CharUnits::Zero();
Chris Lattner1b726772010-12-02 07:07:26 +00001326 for (unsigned i = 0, e = ILE->getNumInits(); i != e; ++i)
1327 NumNonZeroBytes += GetNumNonZeroBytesInInit(ILE->getInit(i), CGF);
1328 return NumNonZeroBytes;
1329}
1330
1331/// CheckAggExprForMemSetUse - If the initializer is large and has a lot of
1332/// zeros in it, emit a memset and avoid storing the individual zeros.
1333///
1334static void CheckAggExprForMemSetUse(AggValueSlot &Slot, const Expr *E,
1335 CodeGenFunction &CGF) {
1336 // If the slot is already known to be zeroed, nothing to do. Don't mess with
1337 // volatile stores.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001338 if (Slot.isZeroed() || Slot.isVolatile() || Slot.getAddr() == nullptr)
1339 return;
Argyrios Kyrtzidis657baf12011-04-28 22:57:55 +00001340
1341 // C++ objects with a user-declared constructor don't need zero'ing.
Richard Smith7edf9e32012-11-01 22:30:59 +00001342 if (CGF.getLangOpts().CPlusPlus)
Argyrios Kyrtzidis657baf12011-04-28 22:57:55 +00001343 if (const RecordType *RT = CGF.getContext()
1344 .getBaseElementType(E->getType())->getAs<RecordType>()) {
1345 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
1346 if (RD->hasUserDeclaredConstructor())
1347 return;
1348 }
1349
Chris Lattner1b726772010-12-02 07:07:26 +00001350 // If the type is 16-bytes or smaller, prefer individual stores over memset.
Ken Dyck5ff1a352011-04-24 17:25:32 +00001351 std::pair<CharUnits, CharUnits> TypeInfo =
1352 CGF.getContext().getTypeInfoInChars(E->getType());
1353 if (TypeInfo.first <= CharUnits::fromQuantity(16))
Chris Lattner1b726772010-12-02 07:07:26 +00001354 return;
1355
1356 // Check to see if over 3/4 of the initializer are known to be zero. If so,
1357 // we prefer to emit memset + individual stores for the rest.
Ken Dyck5ff1a352011-04-24 17:25:32 +00001358 CharUnits NumNonZeroBytes = GetNumNonZeroBytesInInit(E, CGF);
1359 if (NumNonZeroBytes*4 > TypeInfo.first)
Chris Lattner1b726772010-12-02 07:07:26 +00001360 return;
1361
1362 // Okay, it seems like a good idea to use an initial memset, emit the call.
Ken Dyck5ff1a352011-04-24 17:25:32 +00001363 llvm::Constant *SizeVal = CGF.Builder.getInt64(TypeInfo.first.getQuantity());
1364 CharUnits Align = TypeInfo.second;
Chris Lattner1b726772010-12-02 07:07:26 +00001365
1366 llvm::Value *Loc = Slot.getAddr();
Chris Lattner1b726772010-12-02 07:07:26 +00001367
Chris Lattner8b418682012-02-07 00:39:47 +00001368 Loc = CGF.Builder.CreateBitCast(Loc, CGF.Int8PtrTy);
Ken Dyck5ff1a352011-04-24 17:25:32 +00001369 CGF.Builder.CreateMemSet(Loc, CGF.Builder.getInt8(0), SizeVal,
1370 Align.getQuantity(), false);
Chris Lattner1b726772010-12-02 07:07:26 +00001371
1372 // Tell the AggExprEmitter that the slot is known zero.
1373 Slot.setZeroed();
1374}
1375
1376
1377
1378
Mike Stumpe1129a92009-05-26 18:57:45 +00001379/// EmitAggExpr - Emit the computation of the specified expression of aggregate
1380/// type. The result is computed into DestPtr. Note that if DestPtr is null,
1381/// the value of the aggregate expression is not needed. If VolatileDest is
1382/// true, DestPtr cannot be 0.
John McCalle0c11682012-07-02 23:58:38 +00001383void CodeGenFunction::EmitAggExpr(const Expr *E, AggValueSlot Slot) {
John McCall9d232c82013-03-07 21:37:08 +00001384 assert(E && hasAggregateEvaluationKind(E->getType()) &&
Chris Lattneree755f92007-08-21 04:59:27 +00001385 "Invalid aggregate expression to emit");
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001386 assert((Slot.getAddr() != nullptr || Slot.isIgnored()) &&
Chris Lattner1b726772010-12-02 07:07:26 +00001387 "slot has bits but no address");
Mike Stump1eb44332009-09-09 15:08:12 +00001388
Chris Lattner1b726772010-12-02 07:07:26 +00001389 // Optimize the slot if possible.
1390 CheckAggExprForMemSetUse(Slot, E, *this);
1391
John McCalle0c11682012-07-02 23:58:38 +00001392 AggExprEmitter(*this, Slot).Visit(const_cast<Expr*>(E));
Chris Lattneree755f92007-08-21 04:59:27 +00001393}
Daniel Dunbar7482d122008-09-09 20:49:46 +00001394
Daniel Dunbar18aba0d2010-02-05 19:38:31 +00001395LValue CodeGenFunction::EmitAggExprToLValue(const Expr *E) {
John McCall9d232c82013-03-07 21:37:08 +00001396 assert(hasAggregateEvaluationKind(E->getType()) && "Invalid argument!");
Daniel Dunbar195337d2010-02-09 02:48:28 +00001397 llvm::Value *Temp = CreateMemTemp(E->getType());
Daniel Dunbar79c39282010-08-21 03:15:20 +00001398 LValue LV = MakeAddrLValue(Temp, E->getType());
John McCall7c2349b2011-08-25 20:40:09 +00001399 EmitAggExpr(E, AggValueSlot::forLValue(LV, AggValueSlot::IsNotDestructed,
John McCall44184392011-08-26 07:31:35 +00001400 AggValueSlot::DoesNotNeedGCBarriers,
Chad Rosier649b4a12012-03-29 17:37:10 +00001401 AggValueSlot::IsNotAliased));
Daniel Dunbar79c39282010-08-21 03:15:20 +00001402 return LV;
Daniel Dunbar18aba0d2010-02-05 19:38:31 +00001403}
1404
Chad Rosier649b4a12012-03-29 17:37:10 +00001405void CodeGenFunction::EmitAggregateCopy(llvm::Value *DestPtr,
1406 llvm::Value *SrcPtr, QualType Ty,
John McCalle0c11682012-07-02 23:58:38 +00001407 bool isVolatile,
Benjamin Kramer6cacae82012-09-30 12:43:37 +00001408 CharUnits alignment,
1409 bool isAssignment) {
Chad Rosier649b4a12012-03-29 17:37:10 +00001410 assert(!Ty->isAnyComplexType() && "Shouldn't happen for complex");
Mike Stump1eb44332009-09-09 15:08:12 +00001411
Richard Smith7edf9e32012-11-01 22:30:59 +00001412 if (getLangOpts().CPlusPlus) {
Chad Rosier649b4a12012-03-29 17:37:10 +00001413 if (const RecordType *RT = Ty->getAs<RecordType>()) {
1414 CXXRecordDecl *Record = cast<CXXRecordDecl>(RT->getDecl());
1415 assert((Record->hasTrivialCopyConstructor() ||
1416 Record->hasTrivialCopyAssignment() ||
1417 Record->hasTrivialMoveConstructor() ||
1418 Record->hasTrivialMoveAssignment()) &&
Richard Smith426391c2012-11-16 00:53:38 +00001419 "Trying to aggregate-copy a type without a trivial copy/move "
Douglas Gregore9979482010-05-20 15:39:01 +00001420 "constructor or assignment operator");
Chad Rosier649b4a12012-03-29 17:37:10 +00001421 // Ignore empty classes in C++.
1422 if (Record->isEmpty())
Anders Carlsson0d7c5832010-05-03 01:20:20 +00001423 return;
1424 }
1425 }
1426
Chris Lattner83c96292009-02-28 18:31:01 +00001427 // Aggregate assignment turns into llvm.memcpy. This is almost valid per
Chris Lattnerca4fc2c2009-02-28 18:18:58 +00001428 // C99 6.5.16.1p3, which states "If the value being stored in an object is
1429 // read from another object that overlaps in anyway the storage of the first
1430 // object, then the overlap shall be exact and the two objects shall have
1431 // qualified or unqualified versions of a compatible type."
1432 //
Chris Lattner83c96292009-02-28 18:31:01 +00001433 // memcpy is not defined if the source and destination pointers are exactly
Chris Lattnerca4fc2c2009-02-28 18:18:58 +00001434 // equal, but other compilers do this optimization, and almost every memcpy
1435 // implementation handles this case safely. If there is a libc that does not
1436 // safely handle this, we can add a target hook.
Chad Rosier649b4a12012-03-29 17:37:10 +00001437
Benjamin Kramer6cacae82012-09-30 12:43:37 +00001438 // Get data size and alignment info for this aggregate. If this is an
1439 // assignment don't copy the tail padding. Otherwise copying it is fine.
1440 std::pair<CharUnits, CharUnits> TypeInfo;
1441 if (isAssignment)
1442 TypeInfo = getContext().getTypeInfoDataSizeInChars(Ty);
1443 else
1444 TypeInfo = getContext().getTypeInfoInChars(Ty);
Chad Rosier649b4a12012-03-29 17:37:10 +00001445
John McCalle0c11682012-07-02 23:58:38 +00001446 if (alignment.isZero())
1447 alignment = TypeInfo.second;
Chad Rosier649b4a12012-03-29 17:37:10 +00001448
1449 // FIXME: Handle variable sized types.
1450
1451 // FIXME: If we have a volatile struct, the optimizer can remove what might
1452 // appear to be `extra' memory ops:
1453 //
1454 // volatile struct { int i; } a, b;
1455 //
1456 // int main() {
1457 // a = b;
1458 // a = b;
1459 // }
1460 //
1461 // we need to use a different call here. We use isVolatile to indicate when
1462 // either the source or the destination is volatile.
1463
1464 llvm::PointerType *DPT = cast<llvm::PointerType>(DestPtr->getType());
1465 llvm::Type *DBP =
1466 llvm::Type::getInt8PtrTy(getLLVMContext(), DPT->getAddressSpace());
1467 DestPtr = Builder.CreateBitCast(DestPtr, DBP);
1468
1469 llvm::PointerType *SPT = cast<llvm::PointerType>(SrcPtr->getType());
1470 llvm::Type *SBP =
1471 llvm::Type::getInt8PtrTy(getLLVMContext(), SPT->getAddressSpace());
1472 SrcPtr = Builder.CreateBitCast(SrcPtr, SBP);
1473
1474 // Don't do any of the memmove_collectable tests if GC isn't set.
1475 if (CGM.getLangOpts().getGC() == LangOptions::NonGC) {
1476 // fall through
1477 } else if (const RecordType *RecordTy = Ty->getAs<RecordType>()) {
1478 RecordDecl *Record = RecordTy->getDecl();
1479 if (Record->hasObjectMember()) {
1480 CharUnits size = TypeInfo.first;
1481 llvm::Type *SizeTy = ConvertType(getContext().getSizeType());
1482 llvm::Value *SizeVal = llvm::ConstantInt::get(SizeTy, size.getQuantity());
1483 CGM.getObjCRuntime().EmitGCMemmoveCollectable(*this, DestPtr, SrcPtr,
1484 SizeVal);
1485 return;
1486 }
1487 } else if (Ty->isArrayType()) {
1488 QualType BaseType = getContext().getBaseElementType(Ty);
1489 if (const RecordType *RecordTy = BaseType->getAs<RecordType>()) {
1490 if (RecordTy->getDecl()->hasObjectMember()) {
1491 CharUnits size = TypeInfo.first;
1492 llvm::Type *SizeTy = ConvertType(getContext().getSizeType());
1493 llvm::Value *SizeVal =
1494 llvm::ConstantInt::get(SizeTy, size.getQuantity());
1495 CGM.getObjCRuntime().EmitGCMemmoveCollectable(*this, DestPtr, SrcPtr,
1496 SizeVal);
1497 return;
1498 }
1499 }
1500 }
Dan Gohmanb22c7dc2012-09-28 21:58:29 +00001501
1502 // Determine the metadata to describe the position of any padding in this
1503 // memcpy, as well as the TBAA tags for the members of the struct, in case
1504 // the optimizer wishes to expand it in to scalar memory operations.
1505 llvm::MDNode *TBAAStructTag = CGM.getTBAAStructInfo(Ty);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001506
Chad Rosier649b4a12012-03-29 17:37:10 +00001507 Builder.CreateMemCpy(DestPtr, SrcPtr,
1508 llvm::ConstantInt::get(IntPtrTy,
1509 TypeInfo.first.getQuantity()),
Dan Gohmanb22c7dc2012-09-28 21:58:29 +00001510 alignment.getQuantity(), isVolatile,
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001511 /*TBAATag=*/nullptr, TBAAStructTag);
Daniel Dunbar7482d122008-09-09 20:49:46 +00001512}