blob: b974e1dcc68206f4152686da3ac03728f51542b9 [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
John McCall9eda3ab2013-03-07 21:37:17 +000032llvm::Value *AggValueSlot::getPaddedAtomicAddr() const {
33 assert(isValueOfAtomic());
34 llvm::GEPOperator *op = cast<llvm::GEPOperator>(getAddr());
35 assert(op->getNumIndices() == 2);
36 assert(op->hasAllZeroIndices());
37 return op->getPointerOperand();
38}
39
Chris Lattner9c033562007-08-21 04:25:47 +000040namespace {
Benjamin Kramer85b45212009-11-28 19:45:26 +000041class AggExprEmitter : public StmtVisitor<AggExprEmitter> {
Chris Lattner9c033562007-08-21 04:25:47 +000042 CodeGenFunction &CGF;
Daniel Dunbar45d196b2008-11-01 01:53:16 +000043 CGBuilderTy &Builder;
John McCall558d2ab2010-09-15 10:14:12 +000044 AggValueSlot Dest;
John McCallef072fd2010-05-22 01:48:05 +000045
John McCall410ffb22011-08-25 23:04:34 +000046 /// We want to use 'dest' as the return slot except under two
47 /// conditions:
48 /// - The destination slot requires garbage collection, so we
49 /// need to use the GC API.
50 /// - The destination slot is potentially aliased.
51 bool shouldUseDestForReturnSlot() const {
52 return !(Dest.requiresGCollection() || Dest.isPotentiallyAliased());
53 }
54
John McCallef072fd2010-05-22 01:48:05 +000055 ReturnValueSlot getReturnValueSlot() const {
John McCall410ffb22011-08-25 23:04:34 +000056 if (!shouldUseDestForReturnSlot())
57 return ReturnValueSlot();
John McCallfa037bd2010-05-22 22:13:32 +000058
John McCall558d2ab2010-09-15 10:14:12 +000059 return ReturnValueSlot(Dest.getAddr(), Dest.isVolatile());
60 }
61
62 AggValueSlot EnsureSlot(QualType T) {
63 if (!Dest.isIgnored()) return Dest;
64 return CGF.CreateAggTemp(T, "agg.tmp.ensured");
John McCallef072fd2010-05-22 01:48:05 +000065 }
John McCalle0c11682012-07-02 23:58:38 +000066 void EnsureDest(QualType T) {
67 if (!Dest.isIgnored()) return;
68 Dest = CGF.CreateAggTemp(T, "agg.tmp.ensured");
69 }
John McCallfa037bd2010-05-22 22:13:32 +000070
Chris Lattner9c033562007-08-21 04:25:47 +000071public:
John McCalle0c11682012-07-02 23:58:38 +000072 AggExprEmitter(CodeGenFunction &cgf, AggValueSlot Dest)
73 : CGF(cgf), Builder(CGF.Builder), Dest(Dest) {
Chris Lattner9c033562007-08-21 04:25:47 +000074 }
75
Chris Lattneree755f92007-08-21 04:59:27 +000076 //===--------------------------------------------------------------------===//
77 // Utilities
78 //===--------------------------------------------------------------------===//
79
Chris Lattner9c033562007-08-21 04:25:47 +000080 /// EmitAggLoadOfLValue - Given an expression with aggregate type that
81 /// represents a value lvalue, this method emits the address of the lvalue,
82 /// then loads the result into DestPtr.
83 void EmitAggLoadOfLValue(const Expr *E);
Eli Friedman922696f2008-05-19 17:51:16 +000084
Mike Stump4ac20dd2009-05-23 20:28:01 +000085 /// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
John McCalle0c11682012-07-02 23:58:38 +000086 void EmitFinalDestCopy(QualType type, const LValue &src);
87 void EmitFinalDestCopy(QualType type, RValue src,
88 CharUnits srcAlignment = CharUnits::Zero());
89 void EmitCopy(QualType type, const AggValueSlot &dest,
90 const AggValueSlot &src);
Mike Stump4ac20dd2009-05-23 20:28:01 +000091
John McCall410ffb22011-08-25 23:04:34 +000092 void EmitMoveFromReturnSlot(const Expr *E, RValue Src);
John McCallfa037bd2010-05-22 22:13:32 +000093
Sebastian Redlaf130fd2012-02-19 12:28:02 +000094 void EmitStdInitializerList(llvm::Value *DestPtr, InitListExpr *InitList);
Sebastian Redl32cf1f22012-02-17 08:42:25 +000095 void EmitArrayInit(llvm::Value *DestPtr, llvm::ArrayType *AType,
96 QualType elementType, InitListExpr *E);
97
John McCall7c2349b2011-08-25 20:40:09 +000098 AggValueSlot::NeedsGCBarriers_t needsGC(QualType T) {
David Blaikie4e4d0842012-03-11 07:00:24 +000099 if (CGF.getLangOpts().getGC() && TypeRequiresGCollection(T))
John McCall7c2349b2011-08-25 20:40:09 +0000100 return AggValueSlot::NeedsGCBarriers;
101 return AggValueSlot::DoesNotNeedGCBarriers;
102 }
103
John McCallfa037bd2010-05-22 22:13:32 +0000104 bool TypeRequiresGCollection(QualType T);
105
Chris Lattneree755f92007-08-21 04:59:27 +0000106 //===--------------------------------------------------------------------===//
107 // Visitor Methods
108 //===--------------------------------------------------------------------===//
Mike Stump1eb44332009-09-09 15:08:12 +0000109
Chris Lattner9c033562007-08-21 04:25:47 +0000110 void VisitStmt(Stmt *S) {
Daniel Dunbar488e9932008-08-16 00:56:44 +0000111 CGF.ErrorUnsupported(S, "aggregate expression");
Chris Lattner9c033562007-08-21 04:25:47 +0000112 }
113 void VisitParenExpr(ParenExpr *PE) { Visit(PE->getSubExpr()); }
Peter Collingbournef111d932011-04-15 00:35:48 +0000114 void VisitGenericSelectionExpr(GenericSelectionExpr *GE) {
115 Visit(GE->getResultExpr());
116 }
Eli Friedman12444a22009-01-27 09:03:41 +0000117 void VisitUnaryExtension(UnaryOperator *E) { Visit(E->getSubExpr()); }
John McCall91a57552011-07-15 05:09:51 +0000118 void VisitSubstNonTypeTemplateParmExpr(SubstNonTypeTemplateParmExpr *E) {
119 return Visit(E->getReplacement());
120 }
Chris Lattner9c033562007-08-21 04:25:47 +0000121
122 // l-values.
John McCallf4b88a42012-03-10 09:33:50 +0000123 void VisitDeclRefExpr(DeclRefExpr *E) {
John McCalldd2ecee2012-03-10 03:05:10 +0000124 // For aggregates, we should always be able to emit the variable
125 // as an l-value unless it's a reference. This is due to the fact
126 // that we can't actually ever see a normal l2r conversion on an
127 // aggregate in C++, and in C there's no language standard
128 // actively preventing us from listing variables in the captures
129 // list of a block.
John McCallf4b88a42012-03-10 09:33:50 +0000130 if (E->getDecl()->getType()->isReferenceType()) {
John McCalldd2ecee2012-03-10 03:05:10 +0000131 if (CodeGenFunction::ConstantEmission result
John McCallf4b88a42012-03-10 09:33:50 +0000132 = CGF.tryEmitAsConstant(E)) {
John McCalle0c11682012-07-02 23:58:38 +0000133 EmitFinalDestCopy(E->getType(), result.getReferenceLValue(CGF, E));
John McCalldd2ecee2012-03-10 03:05:10 +0000134 return;
135 }
136 }
137
John McCallf4b88a42012-03-10 09:33:50 +0000138 EmitAggLoadOfLValue(E);
John McCalldd2ecee2012-03-10 03:05:10 +0000139 }
140
Seo Sanghyeon9b73b392007-12-14 02:04:12 +0000141 void VisitMemberExpr(MemberExpr *ME) { EmitAggLoadOfLValue(ME); }
142 void VisitUnaryDeref(UnaryOperator *E) { EmitAggLoadOfLValue(E); }
Daniel Dunbar5be028f2010-01-04 18:47:06 +0000143 void VisitStringLiteral(StringLiteral *E) { EmitAggLoadOfLValue(E); }
Douglas Gregor751ec9b2011-06-17 04:59:12 +0000144 void VisitCompoundLiteralExpr(CompoundLiteralExpr *E);
Seo Sanghyeon9b73b392007-12-14 02:04:12 +0000145 void VisitArraySubscriptExpr(ArraySubscriptExpr *E) {
146 EmitAggLoadOfLValue(E);
147 }
Chris Lattnerf0a990c2009-04-21 23:00:09 +0000148 void VisitPredefinedExpr(const PredefinedExpr *E) {
Mike Stump1eb44332009-09-09 15:08:12 +0000149 EmitAggLoadOfLValue(E);
Chris Lattnerf0a990c2009-04-21 23:00:09 +0000150 }
Mike Stump1eb44332009-09-09 15:08:12 +0000151
Chris Lattner9c033562007-08-21 04:25:47 +0000152 // Operators.
Anders Carlsson4d8673b2009-08-07 23:22:37 +0000153 void VisitCastExpr(CastExpr *E);
Anders Carlsson148fe672007-10-31 22:04:46 +0000154 void VisitCallExpr(const CallExpr *E);
Chris Lattnerb2d963f2007-08-31 22:54:14 +0000155 void VisitStmtExpr(const StmtExpr *E);
Chris Lattner9c033562007-08-21 04:25:47 +0000156 void VisitBinaryOperator(const BinaryOperator *BO);
Fariborz Jahanian8bfd31f2009-10-22 22:57:31 +0000157 void VisitPointerToDataMemberBinaryOperator(const BinaryOperator *BO);
Chris Lattner03d6fb92007-08-21 04:43:17 +0000158 void VisitBinAssign(const BinaryOperator *E);
Eli Friedman07fa52a2008-05-20 07:56:31 +0000159 void VisitBinComma(const BinaryOperator *E);
Chris Lattner9c033562007-08-21 04:25:47 +0000160
Chris Lattner8fdf3282008-06-24 17:04:18 +0000161 void VisitObjCMessageExpr(ObjCMessageExpr *E);
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000162 void VisitObjCIvarRefExpr(ObjCIvarRefExpr *E) {
163 EmitAggLoadOfLValue(E);
164 }
Mike Stump1eb44332009-09-09 15:08:12 +0000165
John McCall56ca35d2011-02-17 10:25:35 +0000166 void VisitAbstractConditionalOperator(const AbstractConditionalOperator *CO);
Anders Carlssona294ca82009-07-08 18:33:14 +0000167 void VisitChooseExpr(const ChooseExpr *CE);
Devang Patel636c3d02007-10-26 17:44:44 +0000168 void VisitInitListExpr(InitListExpr *E);
Anders Carlsson30311fa2009-12-16 06:57:54 +0000169 void VisitImplicitValueInitExpr(ImplicitValueInitExpr *E);
Chris Lattner04421082008-04-08 04:40:51 +0000170 void VisitCXXDefaultArgExpr(CXXDefaultArgExpr *DAE) {
171 Visit(DAE->getExpr());
172 }
Richard Smithc3bf52c2013-04-20 22:23:05 +0000173 void VisitCXXDefaultInitExpr(CXXDefaultInitExpr *DIE) {
174 CodeGenFunction::CXXDefaultInitExprScope Scope(CGF);
175 Visit(DIE->getExpr());
176 }
Anders Carlssonb58d0172009-05-30 23:23:33 +0000177 void VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E);
Anders Carlsson31ccf372009-05-03 17:47:16 +0000178 void VisitCXXConstructExpr(const CXXConstructExpr *E);
Eli Friedman4c5d8af2012-02-09 03:32:31 +0000179 void VisitLambdaExpr(LambdaExpr *E);
John McCall4765fa02010-12-06 08:20:24 +0000180 void VisitExprWithCleanups(ExprWithCleanups *E);
Douglas Gregored8abf12010-07-08 06:14:04 +0000181 void VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *E);
Mike Stump2710c412009-11-18 00:40:12 +0000182 void VisitCXXTypeidExpr(CXXTypeidExpr *E) { EmitAggLoadOfLValue(E); }
Douglas Gregor03e80032011-06-21 17:03:29 +0000183 void VisitMaterializeTemporaryExpr(MaterializeTemporaryExpr *E);
John McCalle996ffd2011-02-16 08:02:54 +0000184 void VisitOpaqueValueExpr(OpaqueValueExpr *E);
185
John McCall4b9c2d22011-11-06 09:01:30 +0000186 void VisitPseudoObjectExpr(PseudoObjectExpr *E) {
187 if (E->isGLValue()) {
188 LValue LV = CGF.EmitPseudoObjectLValue(E);
John McCalle0c11682012-07-02 23:58:38 +0000189 return EmitFinalDestCopy(E->getType(), LV);
John McCall4b9c2d22011-11-06 09:01:30 +0000190 }
191
192 CGF.EmitPseudoObjectRValue(E, EnsureSlot(E->getType()));
193 }
194
Eli Friedmanb1851242008-05-27 15:51:49 +0000195 void VisitVAArgExpr(VAArgExpr *E);
Chris Lattnerf81557c2008-04-04 18:42:16 +0000196
Chad Rosier649b4a12012-03-29 17:37:10 +0000197 void EmitInitializationToLValue(Expr *E, LValue Address);
John McCalla07398e2011-06-16 04:16:24 +0000198 void EmitNullInitializationToLValue(LValue Address);
Chris Lattner9c033562007-08-21 04:25:47 +0000199 // case Expr::ChooseExprClass:
Mike Stump39406b12009-12-09 19:24:08 +0000200 void VisitCXXThrowExpr(const CXXThrowExpr *E) { CGF.EmitCXXThrowExpr(E); }
Eli Friedman276b0612011-10-11 02:20:01 +0000201 void VisitAtomicExpr(AtomicExpr *E) {
202 CGF.EmitAtomicExpr(E, EnsureSlot(E->getType()).getAddr());
203 }
Chris Lattner9c033562007-08-21 04:25:47 +0000204};
John McCall9eda3ab2013-03-07 21:37:17 +0000205
206/// A helper class for emitting expressions into the value sub-object
207/// of a padded atomic type.
208class ValueDestForAtomic {
209 AggValueSlot Dest;
210public:
211 ValueDestForAtomic(CodeGenFunction &CGF, AggValueSlot dest, QualType type)
212 : Dest(dest) {
213 assert(!Dest.isValueOfAtomic());
214 if (!Dest.isIgnored() && CGF.CGM.isPaddedAtomicType(type)) {
215 llvm::Value *valueAddr = CGF.Builder.CreateStructGEP(Dest.getAddr(), 0);
216 Dest = AggValueSlot::forAddr(valueAddr,
217 Dest.getAlignment(),
218 Dest.getQualifiers(),
219 Dest.isExternallyDestructed(),
220 Dest.requiresGCollection(),
221 Dest.isPotentiallyAliased(),
222 Dest.isZeroed(),
223 AggValueSlot::IsValueOfAtomic);
224 }
225 }
226
227 const AggValueSlot &getDest() const { return Dest; }
228
229 ~ValueDestForAtomic() {
230 // Kill the GEP if we made one and it didn't end up used.
231 if (Dest.isValueOfAtomic()) {
232 llvm::Instruction *addr = cast<llvm::GetElementPtrInst>(Dest.getAddr());
233 if (addr->use_empty()) addr->eraseFromParent();
234 }
235 }
236};
Chris Lattner9c033562007-08-21 04:25:47 +0000237} // end anonymous namespace.
238
Chris Lattneree755f92007-08-21 04:59:27 +0000239//===----------------------------------------------------------------------===//
240// Utilities
241//===----------------------------------------------------------------------===//
Chris Lattner9c033562007-08-21 04:25:47 +0000242
Chris Lattner883f6a72007-08-11 00:04:45 +0000243/// EmitAggLoadOfLValue - Given an expression with aggregate type that
244/// represents a value lvalue, this method emits the address of the lvalue,
245/// then loads the result into DestPtr.
Chris Lattner9c033562007-08-21 04:25:47 +0000246void AggExprEmitter::EmitAggLoadOfLValue(const Expr *E) {
247 LValue LV = CGF.EmitLValue(E);
John McCall9eda3ab2013-03-07 21:37:17 +0000248
249 // If the type of the l-value is atomic, then do an atomic load.
250 if (LV.getType()->isAtomicType()) {
251 ValueDestForAtomic valueDest(CGF, Dest, LV.getType());
252 CGF.EmitAtomicLoad(LV, valueDest.getDest());
253 return;
254 }
255
John McCalle0c11682012-07-02 23:58:38 +0000256 EmitFinalDestCopy(E->getType(), LV);
Mike Stump4ac20dd2009-05-23 20:28:01 +0000257}
258
John McCallfa037bd2010-05-22 22:13:32 +0000259/// \brief True if the given aggregate type requires special GC API calls.
260bool AggExprEmitter::TypeRequiresGCollection(QualType T) {
261 // Only record types have members that might require garbage collection.
262 const RecordType *RecordTy = T->getAs<RecordType>();
263 if (!RecordTy) return false;
264
265 // Don't mess with non-trivial C++ types.
266 RecordDecl *Record = RecordTy->getDecl();
267 if (isa<CXXRecordDecl>(Record) &&
Richard Smith426391c2012-11-16 00:53:38 +0000268 (cast<CXXRecordDecl>(Record)->hasNonTrivialCopyConstructor() ||
John McCallfa037bd2010-05-22 22:13:32 +0000269 !cast<CXXRecordDecl>(Record)->hasTrivialDestructor()))
270 return false;
271
272 // Check whether the type has an object member.
273 return Record->hasObjectMember();
274}
275
John McCall410ffb22011-08-25 23:04:34 +0000276/// \brief Perform the final move to DestPtr if for some reason
277/// getReturnValueSlot() didn't use it directly.
John McCallfa037bd2010-05-22 22:13:32 +0000278///
279/// The idea is that you do something like this:
280/// RValue Result = EmitSomething(..., getReturnValueSlot());
John McCall410ffb22011-08-25 23:04:34 +0000281/// EmitMoveFromReturnSlot(E, Result);
282///
283/// If nothing interferes, this will cause the result to be emitted
284/// directly into the return value slot. Otherwise, a final move
285/// will be performed.
John McCalle0c11682012-07-02 23:58:38 +0000286void AggExprEmitter::EmitMoveFromReturnSlot(const Expr *E, RValue src) {
John McCall410ffb22011-08-25 23:04:34 +0000287 if (shouldUseDestForReturnSlot()) {
288 // Logically, Dest.getAddr() should equal Src.getAggregateAddr().
289 // The possibility of undef rvalues complicates that a lot,
290 // though, so we can't really assert.
291 return;
Fariborz Jahanian55bcace2010-06-15 22:44:06 +0000292 }
John McCall410ffb22011-08-25 23:04:34 +0000293
John McCalle0c11682012-07-02 23:58:38 +0000294 // Otherwise, copy from there to the destination.
295 assert(Dest.getAddr() != src.getAggregateAddr());
296 std::pair<CharUnits, CharUnits> typeInfo =
Chad Rosier26397ed2012-04-17 01:14:29 +0000297 CGF.getContext().getTypeInfoInChars(E->getType());
John McCalle0c11682012-07-02 23:58:38 +0000298 EmitFinalDestCopy(E->getType(), src, typeInfo.second);
John McCallfa037bd2010-05-22 22:13:32 +0000299}
300
Mike Stump4ac20dd2009-05-23 20:28:01 +0000301/// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
John McCalle0c11682012-07-02 23:58:38 +0000302void AggExprEmitter::EmitFinalDestCopy(QualType type, RValue src,
303 CharUnits srcAlign) {
304 assert(src.isAggregate() && "value must be aggregate value!");
305 LValue srcLV = CGF.MakeAddrLValue(src.getAggregateAddr(), type, srcAlign);
306 EmitFinalDestCopy(type, srcLV);
307}
Mike Stump4ac20dd2009-05-23 20:28:01 +0000308
John McCalle0c11682012-07-02 23:58:38 +0000309/// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
310void AggExprEmitter::EmitFinalDestCopy(QualType type, const LValue &src) {
John McCall558d2ab2010-09-15 10:14:12 +0000311 // If Dest is ignored, then we're evaluating an aggregate expression
John McCalle0c11682012-07-02 23:58:38 +0000312 // in a context that doesn't care about the result. Note that loads
313 // from volatile l-values force the existence of a non-ignored
314 // destination.
315 if (Dest.isIgnored())
316 return;
Fariborz Jahanian8a970052010-10-22 22:05:03 +0000317
John McCalle0c11682012-07-02 23:58:38 +0000318 AggValueSlot srcAgg =
319 AggValueSlot::forLValue(src, AggValueSlot::IsDestructed,
320 needsGC(type), AggValueSlot::IsAliased);
321 EmitCopy(type, Dest, srcAgg);
322}
Chris Lattner883f6a72007-08-11 00:04:45 +0000323
John McCalle0c11682012-07-02 23:58:38 +0000324/// Perform a copy from the source into the destination.
325///
326/// \param type - the type of the aggregate being copied; qualifiers are
327/// ignored
328void AggExprEmitter::EmitCopy(QualType type, const AggValueSlot &dest,
329 const AggValueSlot &src) {
330 if (dest.requiresGCollection()) {
331 CharUnits sz = CGF.getContext().getTypeSizeInChars(type);
332 llvm::Value *size = llvm::ConstantInt::get(CGF.SizeTy, sz.getQuantity());
Fariborz Jahanian08c32132009-08-31 19:33:16 +0000333 CGF.CGM.getObjCRuntime().EmitGCMemmoveCollectable(CGF,
John McCalle0c11682012-07-02 23:58:38 +0000334 dest.getAddr(),
335 src.getAddr(),
336 size);
Fariborz Jahanian08c32132009-08-31 19:33:16 +0000337 return;
338 }
John McCalle0c11682012-07-02 23:58:38 +0000339
Mike Stump4ac20dd2009-05-23 20:28:01 +0000340 // If the result of the assignment is used, copy the LHS there also.
John McCalle0c11682012-07-02 23:58:38 +0000341 // It's volatile if either side is. Use the minimum alignment of
342 // the two sides.
343 CGF.EmitAggregateCopy(dest.getAddr(), src.getAddr(), type,
344 dest.isVolatile() || src.isVolatile(),
345 std::min(dest.getAlignment(), src.getAlignment()));
Chris Lattner883f6a72007-08-11 00:04:45 +0000346}
347
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000348static QualType GetStdInitializerListElementType(QualType T) {
349 // Just assume that this is really std::initializer_list.
350 ClassTemplateSpecializationDecl *specialization =
351 cast<ClassTemplateSpecializationDecl>(T->castAs<RecordType>()->getDecl());
352 return specialization->getTemplateArgs()[0].getAsType();
353}
354
355/// \brief Prepare cleanup for the temporary array.
356static void EmitStdInitializerListCleanup(CodeGenFunction &CGF,
357 QualType arrayType,
358 llvm::Value *addr,
359 const InitListExpr *initList) {
360 QualType::DestructionKind dtorKind = arrayType.isDestructedType();
361 if (!dtorKind)
362 return; // Type doesn't need destroying.
363 if (dtorKind != QualType::DK_cxx_destructor) {
364 CGF.ErrorUnsupported(initList, "ObjC ARC type in initializer_list");
365 return;
366 }
367
368 CodeGenFunction::Destroyer *destroyer = CGF.getDestroyer(dtorKind);
369 CGF.pushDestroy(NormalAndEHCleanup, addr, arrayType, destroyer,
370 /*EHCleanup=*/true);
371}
372
373/// \brief Emit the initializer for a std::initializer_list initialized with a
374/// real initializer list.
Sebastian Redlaf130fd2012-02-19 12:28:02 +0000375void AggExprEmitter::EmitStdInitializerList(llvm::Value *destPtr,
376 InitListExpr *initList) {
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000377 // We emit an array containing the elements, then have the init list point
378 // at the array.
379 ASTContext &ctx = CGF.getContext();
380 unsigned numInits = initList->getNumInits();
381 QualType element = GetStdInitializerListElementType(initList->getType());
382 llvm::APInt size(ctx.getTypeSize(ctx.getSizeType()), numInits);
383 QualType array = ctx.getConstantArrayType(element, size, ArrayType::Normal,0);
384 llvm::Type *LTy = CGF.ConvertTypeForMem(array);
385 llvm::AllocaInst *alloc = CGF.CreateTempAlloca(LTy);
386 alloc->setAlignment(ctx.getTypeAlignInChars(array).getQuantity());
387 alloc->setName(".initlist.");
388
389 EmitArrayInit(alloc, cast<llvm::ArrayType>(LTy), element, initList);
390
391 // FIXME: The diagnostics are somewhat out of place here.
392 RecordDecl *record = initList->getType()->castAs<RecordType>()->getDecl();
393 RecordDecl::field_iterator field = record->field_begin();
394 if (field == record->field_end()) {
395 CGF.ErrorUnsupported(initList, "weird std::initializer_list");
Sebastian Redlbabcf9d2012-02-25 20:51:13 +0000396 return;
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000397 }
398
399 QualType elementPtr = ctx.getPointerType(element.withConst());
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000400
401 // Start pointer.
402 if (!ctx.hasSameType(field->getType(), elementPtr)) {
403 CGF.ErrorUnsupported(initList, "weird std::initializer_list");
Sebastian Redlbabcf9d2012-02-25 20:51:13 +0000404 return;
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000405 }
Eli Friedman377ecc72012-04-16 03:54:45 +0000406 LValue DestLV = CGF.MakeNaturalAlignAddrLValue(destPtr, initList->getType());
David Blaikie581deb32012-06-06 20:45:41 +0000407 LValue start = CGF.EmitLValueForFieldInitialization(DestLV, *field);
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000408 llvm::Value *arrayStart = Builder.CreateStructGEP(alloc, 0, "arraystart");
409 CGF.EmitStoreThroughLValue(RValue::get(arrayStart), start);
410 ++field;
411
412 if (field == record->field_end()) {
413 CGF.ErrorUnsupported(initList, "weird std::initializer_list");
Sebastian Redlbabcf9d2012-02-25 20:51:13 +0000414 return;
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000415 }
David Blaikie581deb32012-06-06 20:45:41 +0000416 LValue endOrLength = CGF.EmitLValueForFieldInitialization(DestLV, *field);
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000417 if (ctx.hasSameType(field->getType(), elementPtr)) {
418 // End pointer.
419 llvm::Value *arrayEnd = Builder.CreateStructGEP(alloc,numInits, "arrayend");
420 CGF.EmitStoreThroughLValue(RValue::get(arrayEnd), endOrLength);
421 } else if(ctx.hasSameType(field->getType(), ctx.getSizeType())) {
422 // Length.
423 CGF.EmitStoreThroughLValue(RValue::get(Builder.getInt(size)), endOrLength);
424 } else {
425 CGF.ErrorUnsupported(initList, "weird std::initializer_list");
Sebastian Redlbabcf9d2012-02-25 20:51:13 +0000426 return;
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000427 }
428
429 if (!Dest.isExternallyDestructed())
430 EmitStdInitializerListCleanup(CGF, array, alloc, initList);
431}
432
433/// \brief Emit initialization of an array from an initializer list.
434void AggExprEmitter::EmitArrayInit(llvm::Value *DestPtr, llvm::ArrayType *AType,
435 QualType elementType, InitListExpr *E) {
436 uint64_t NumInitElements = E->getNumInits();
437
438 uint64_t NumArrayElements = AType->getNumElements();
439 assert(NumInitElements <= NumArrayElements);
440
441 // DestPtr is an array*. Construct an elementType* by drilling
442 // down a level.
443 llvm::Value *zero = llvm::ConstantInt::get(CGF.SizeTy, 0);
444 llvm::Value *indices[] = { zero, zero };
445 llvm::Value *begin =
446 Builder.CreateInBoundsGEP(DestPtr, indices, "arrayinit.begin");
447
448 // Exception safety requires us to destroy all the
449 // already-constructed members if an initializer throws.
450 // For that, we'll need an EH cleanup.
451 QualType::DestructionKind dtorKind = elementType.isDestructedType();
452 llvm::AllocaInst *endOfInit = 0;
453 EHScopeStack::stable_iterator cleanup;
454 llvm::Instruction *cleanupDominator = 0;
455 if (CGF.needsEHCleanup(dtorKind)) {
456 // In principle we could tell the cleanup where we are more
457 // directly, but the control flow can get so varied here that it
458 // would actually be quite complex. Therefore we go through an
459 // alloca.
460 endOfInit = CGF.CreateTempAlloca(begin->getType(),
461 "arrayinit.endOfInit");
462 cleanupDominator = Builder.CreateStore(begin, endOfInit);
463 CGF.pushIrregularPartialArrayCleanup(begin, endOfInit, elementType,
464 CGF.getDestroyer(dtorKind));
465 cleanup = CGF.EHStack.stable_begin();
466
467 // Otherwise, remember that we didn't need a cleanup.
468 } else {
469 dtorKind = QualType::DK_none;
470 }
471
472 llvm::Value *one = llvm::ConstantInt::get(CGF.SizeTy, 1);
473
474 // The 'current element to initialize'. The invariants on this
475 // variable are complicated. Essentially, after each iteration of
476 // the loop, it points to the last initialized element, except
477 // that it points to the beginning of the array before any
478 // elements have been initialized.
479 llvm::Value *element = begin;
480
481 // Emit the explicit initializers.
482 for (uint64_t i = 0; i != NumInitElements; ++i) {
483 // Advance to the next element.
484 if (i > 0) {
485 element = Builder.CreateInBoundsGEP(element, one, "arrayinit.element");
486
487 // Tell the cleanup that it needs to destroy up to this
488 // element. TODO: some of these stores can be trivially
489 // observed to be unnecessary.
490 if (endOfInit) Builder.CreateStore(element, endOfInit);
491 }
492
Sebastian Redlaf130fd2012-02-19 12:28:02 +0000493 // If these are nested std::initializer_list inits, do them directly,
494 // because they are conceptually the same "location".
495 InitListExpr *initList = dyn_cast<InitListExpr>(E->getInit(i));
496 if (initList && initList->initializesStdInitializerList()) {
497 EmitStdInitializerList(element, initList);
498 } else {
499 LValue elementLV = CGF.MakeAddrLValue(element, elementType);
Chad Rosier649b4a12012-03-29 17:37:10 +0000500 EmitInitializationToLValue(E->getInit(i), elementLV);
Sebastian Redlaf130fd2012-02-19 12:28:02 +0000501 }
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000502 }
503
504 // Check whether there's a non-trivial array-fill expression.
505 // Note that this will be a CXXConstructExpr even if the element
506 // type is an array (or array of array, etc.) of class type.
507 Expr *filler = E->getArrayFiller();
508 bool hasTrivialFiller = true;
509 if (CXXConstructExpr *cons = dyn_cast_or_null<CXXConstructExpr>(filler)) {
510 assert(cons->getConstructor()->isDefaultConstructor());
511 hasTrivialFiller = cons->getConstructor()->isTrivial();
512 }
513
514 // Any remaining elements need to be zero-initialized, possibly
515 // using the filler expression. We can skip this if the we're
516 // emitting to zeroed memory.
517 if (NumInitElements != NumArrayElements &&
518 !(Dest.isZeroed() && hasTrivialFiller &&
519 CGF.getTypes().isZeroInitializable(elementType))) {
520
521 // Use an actual loop. This is basically
522 // do { *array++ = filler; } while (array != end);
523
524 // Advance to the start of the rest of the array.
525 if (NumInitElements) {
526 element = Builder.CreateInBoundsGEP(element, one, "arrayinit.start");
527 if (endOfInit) Builder.CreateStore(element, endOfInit);
528 }
529
530 // Compute the end of the array.
531 llvm::Value *end = Builder.CreateInBoundsGEP(begin,
532 llvm::ConstantInt::get(CGF.SizeTy, NumArrayElements),
533 "arrayinit.end");
534
535 llvm::BasicBlock *entryBB = Builder.GetInsertBlock();
536 llvm::BasicBlock *bodyBB = CGF.createBasicBlock("arrayinit.body");
537
538 // Jump into the body.
539 CGF.EmitBlock(bodyBB);
540 llvm::PHINode *currentElement =
541 Builder.CreatePHI(element->getType(), 2, "arrayinit.cur");
542 currentElement->addIncoming(element, entryBB);
543
544 // Emit the actual filler expression.
545 LValue elementLV = CGF.MakeAddrLValue(currentElement, elementType);
546 if (filler)
Chad Rosier649b4a12012-03-29 17:37:10 +0000547 EmitInitializationToLValue(filler, elementLV);
Sebastian Redl32cf1f22012-02-17 08:42:25 +0000548 else
549 EmitNullInitializationToLValue(elementLV);
550
551 // Move on to the next element.
552 llvm::Value *nextElement =
553 Builder.CreateInBoundsGEP(currentElement, one, "arrayinit.next");
554
555 // Tell the EH cleanup that we finished with the last element.
556 if (endOfInit) Builder.CreateStore(nextElement, endOfInit);
557
558 // Leave the loop if we're done.
559 llvm::Value *done = Builder.CreateICmpEQ(nextElement, end,
560 "arrayinit.done");
561 llvm::BasicBlock *endBB = CGF.createBasicBlock("arrayinit.end");
562 Builder.CreateCondBr(done, endBB, bodyBB);
563 currentElement->addIncoming(nextElement, Builder.GetInsertBlock());
564
565 CGF.EmitBlock(endBB);
566 }
567
568 // Leave the partial-array cleanup if we entered one.
569 if (dtorKind) CGF.DeactivateCleanupBlock(cleanup, cleanupDominator);
570}
571
Chris Lattneree755f92007-08-21 04:59:27 +0000572//===----------------------------------------------------------------------===//
573// Visitor Methods
574//===----------------------------------------------------------------------===//
575
Douglas Gregor03e80032011-06-21 17:03:29 +0000576void AggExprEmitter::VisitMaterializeTemporaryExpr(MaterializeTemporaryExpr *E){
577 Visit(E->GetTemporaryExpr());
578}
579
John McCalle996ffd2011-02-16 08:02:54 +0000580void AggExprEmitter::VisitOpaqueValueExpr(OpaqueValueExpr *e) {
John McCalle0c11682012-07-02 23:58:38 +0000581 EmitFinalDestCopy(e->getType(), CGF.getOpaqueLValueMapping(e));
John McCalle996ffd2011-02-16 08:02:54 +0000582}
583
Douglas Gregor751ec9b2011-06-17 04:59:12 +0000584void
585AggExprEmitter::VisitCompoundLiteralExpr(CompoundLiteralExpr *E) {
John McCall1723f632013-03-07 21:36:54 +0000586 if (Dest.isPotentiallyAliased() &&
587 E->getType().isPODType(CGF.getContext())) {
Douglas Gregor673e98b2011-06-17 16:37:20 +0000588 // For a POD type, just emit a load of the lvalue + a copy, because our
589 // compound literal might alias the destination.
Douglas Gregor673e98b2011-06-17 16:37:20 +0000590 EmitAggLoadOfLValue(E);
591 return;
592 }
593
Douglas Gregor751ec9b2011-06-17 04:59:12 +0000594 AggValueSlot Slot = EnsureSlot(E->getType());
595 CGF.EmitAggExpr(E->getInitializer(), Slot);
596}
597
John McCall9eda3ab2013-03-07 21:37:17 +0000598/// Attempt to look through various unimportant expressions to find a
599/// cast of the given kind.
600static Expr *findPeephole(Expr *op, CastKind kind) {
601 while (true) {
602 op = op->IgnoreParens();
603 if (CastExpr *castE = dyn_cast<CastExpr>(op)) {
604 if (castE->getCastKind() == kind)
605 return castE->getSubExpr();
606 if (castE->getCastKind() == CK_NoOp)
607 continue;
608 }
609 return 0;
610 }
611}
Douglas Gregor751ec9b2011-06-17 04:59:12 +0000612
Anders Carlsson4d8673b2009-08-07 23:22:37 +0000613void AggExprEmitter::VisitCastExpr(CastExpr *E) {
Anders Carlsson30168422009-09-29 01:23:39 +0000614 switch (E->getCastKind()) {
Anders Carlsson575b3742011-04-11 02:03:26 +0000615 case CK_Dynamic: {
Richard Smith2c9f87c2012-08-24 00:54:33 +0000616 // FIXME: Can this actually happen? We have no test coverage for it.
Douglas Gregor69cfeb12010-05-14 21:31:02 +0000617 assert(isa<CXXDynamicCastExpr>(E) && "CK_Dynamic without a dynamic_cast?");
Richard Smith2c9f87c2012-08-24 00:54:33 +0000618 LValue LV = CGF.EmitCheckedLValue(E->getSubExpr(),
Richard Smith7ac9ef12012-09-08 02:08:36 +0000619 CodeGenFunction::TCK_Load);
Douglas Gregor69cfeb12010-05-14 21:31:02 +0000620 // FIXME: Do we also need to handle property references here?
621 if (LV.isSimple())
622 CGF.EmitDynamicCast(LV.getAddress(), cast<CXXDynamicCastExpr>(E));
623 else
624 CGF.CGM.ErrorUnsupported(E, "non-simple lvalue dynamic_cast");
625
John McCall558d2ab2010-09-15 10:14:12 +0000626 if (!Dest.isIgnored())
627 CGF.CGM.ErrorUnsupported(E, "lvalue dynamic_cast with a destination");
Douglas Gregor69cfeb12010-05-14 21:31:02 +0000628 break;
629 }
630
John McCall2de56d12010-08-25 11:45:40 +0000631 case CK_ToUnion: {
John McCall65912712011-04-12 22:02:02 +0000632 if (Dest.isIgnored()) break;
633
Anders Carlsson4d8673b2009-08-07 23:22:37 +0000634 // GCC union extension
Daniel Dunbar79c39282010-08-21 03:15:20 +0000635 QualType Ty = E->getSubExpr()->getType();
636 QualType PtrTy = CGF.getContext().getPointerType(Ty);
John McCall558d2ab2010-09-15 10:14:12 +0000637 llvm::Value *CastPtr = Builder.CreateBitCast(Dest.getAddr(),
Eli Friedman34ebf4d2009-06-03 20:45:06 +0000638 CGF.ConvertType(PtrTy));
John McCalla07398e2011-06-16 04:16:24 +0000639 EmitInitializationToLValue(E->getSubExpr(),
Chad Rosier649b4a12012-03-29 17:37:10 +0000640 CGF.MakeAddrLValue(CastPtr, Ty));
Anders Carlsson30168422009-09-29 01:23:39 +0000641 break;
Nuno Lopes7e916272009-01-15 20:14:33 +0000642 }
Mike Stump1eb44332009-09-09 15:08:12 +0000643
John McCall2de56d12010-08-25 11:45:40 +0000644 case CK_DerivedToBase:
645 case CK_BaseToDerived:
646 case CK_UncheckedDerivedToBase: {
David Blaikieb219cfc2011-09-23 05:06:16 +0000647 llvm_unreachable("cannot perform hierarchy conversion in EmitAggExpr: "
Douglas Gregor2d6b0e92010-05-22 05:17:18 +0000648 "should have been unpacked before we got here");
Douglas Gregor2d6b0e92010-05-22 05:17:18 +0000649 }
650
John McCall9eda3ab2013-03-07 21:37:17 +0000651 case CK_NonAtomicToAtomic:
652 case CK_AtomicToNonAtomic: {
653 bool isToAtomic = (E->getCastKind() == CK_NonAtomicToAtomic);
654
655 // Determine the atomic and value types.
656 QualType atomicType = E->getSubExpr()->getType();
657 QualType valueType = E->getType();
658 if (isToAtomic) std::swap(atomicType, valueType);
659
660 assert(atomicType->isAtomicType());
661 assert(CGF.getContext().hasSameUnqualifiedType(valueType,
662 atomicType->castAs<AtomicType>()->getValueType()));
663
664 // Just recurse normally if we're ignoring the result or the
665 // atomic type doesn't change representation.
666 if (Dest.isIgnored() || !CGF.CGM.isPaddedAtomicType(atomicType)) {
667 return Visit(E->getSubExpr());
668 }
669
670 CastKind peepholeTarget =
671 (isToAtomic ? CK_AtomicToNonAtomic : CK_NonAtomicToAtomic);
672
673 // These two cases are reverses of each other; try to peephole them.
674 if (Expr *op = findPeephole(E->getSubExpr(), peepholeTarget)) {
675 assert(CGF.getContext().hasSameUnqualifiedType(op->getType(),
676 E->getType()) &&
677 "peephole significantly changed types?");
678 return Visit(op);
679 }
680
681 // If we're converting an r-value of non-atomic type to an r-value
682 // of atomic type, just make an atomic temporary, emit into that,
683 // and then copy the value out. (FIXME: do we need to
684 // zero-initialize it first?)
685 if (isToAtomic) {
686 ValueDestForAtomic valueDest(CGF, Dest, atomicType);
687 CGF.EmitAggExpr(E->getSubExpr(), valueDest.getDest());
688 return;
689 }
690
691 // Otherwise, we're converting an atomic type to a non-atomic type.
692
693 // If the dest is a value-of-atomic subobject, drill back out.
694 if (Dest.isValueOfAtomic()) {
695 AggValueSlot atomicSlot =
696 AggValueSlot::forAddr(Dest.getPaddedAtomicAddr(),
697 Dest.getAlignment(),
698 Dest.getQualifiers(),
699 Dest.isExternallyDestructed(),
700 Dest.requiresGCollection(),
701 Dest.isPotentiallyAliased(),
702 Dest.isZeroed(),
703 AggValueSlot::IsNotValueOfAtomic);
704 CGF.EmitAggExpr(E->getSubExpr(), atomicSlot);
705 return;
706 }
707
708 // Otherwise, make an atomic temporary, emit into that, and then
709 // copy the value out.
710 AggValueSlot atomicSlot =
711 CGF.CreateAggTemp(atomicType, "atomic-to-nonatomic.temp");
712 CGF.EmitAggExpr(E->getSubExpr(), atomicSlot);
713
714 llvm::Value *valueAddr =
715 Builder.CreateStructGEP(atomicSlot.getAddr(), 0);
716 RValue rvalue = RValue::getAggregate(valueAddr, atomicSlot.isVolatile());
717 return EmitFinalDestCopy(valueType, rvalue);
718 }
719
John McCalle0c11682012-07-02 23:58:38 +0000720 case CK_LValueToRValue:
721 // If we're loading from a volatile type, force the destination
722 // into existence.
723 if (E->getSubExpr()->getType().isVolatileQualified()) {
724 EnsureDest(E->getType());
725 return Visit(E->getSubExpr());
726 }
John McCall9eda3ab2013-03-07 21:37:17 +0000727
John McCalle0c11682012-07-02 23:58:38 +0000728 // fallthrough
729
John McCall2de56d12010-08-25 11:45:40 +0000730 case CK_NoOp:
731 case CK_UserDefinedConversion:
732 case CK_ConstructorConversion:
Anders Carlsson30168422009-09-29 01:23:39 +0000733 assert(CGF.getContext().hasSameUnqualifiedType(E->getSubExpr()->getType(),
734 E->getType()) &&
735 "Implicit cast types must be compatible");
736 Visit(E->getSubExpr());
737 break;
John McCall0ae287a2010-12-01 04:43:34 +0000738
John McCall2de56d12010-08-25 11:45:40 +0000739 case CK_LValueBitCast:
John McCall0ae287a2010-12-01 04:43:34 +0000740 llvm_unreachable("should not be emitting lvalue bitcast as rvalue");
John McCall1de4d4e2011-04-07 08:22:57 +0000741
John McCall0ae287a2010-12-01 04:43:34 +0000742 case CK_Dependent:
743 case CK_BitCast:
744 case CK_ArrayToPointerDecay:
745 case CK_FunctionToPointerDecay:
746 case CK_NullToPointer:
747 case CK_NullToMemberPointer:
748 case CK_BaseToDerivedMemberPointer:
749 case CK_DerivedToBaseMemberPointer:
750 case CK_MemberPointerToBoolean:
John McCall4d4e5c12012-02-15 01:22:51 +0000751 case CK_ReinterpretMemberPointer:
John McCall0ae287a2010-12-01 04:43:34 +0000752 case CK_IntegralToPointer:
753 case CK_PointerToIntegral:
754 case CK_PointerToBoolean:
755 case CK_ToVoid:
756 case CK_VectorSplat:
757 case CK_IntegralCast:
758 case CK_IntegralToBoolean:
759 case CK_IntegralToFloating:
760 case CK_FloatingToIntegral:
761 case CK_FloatingToBoolean:
762 case CK_FloatingCast:
John McCall1d9b3b22011-09-09 05:25:32 +0000763 case CK_CPointerToObjCPointerCast:
764 case CK_BlockPointerToObjCPointerCast:
John McCall0ae287a2010-12-01 04:43:34 +0000765 case CK_AnyPointerToBlockPointerCast:
766 case CK_ObjCObjectLValueCast:
767 case CK_FloatingRealToComplex:
768 case CK_FloatingComplexToReal:
769 case CK_FloatingComplexToBoolean:
770 case CK_FloatingComplexCast:
771 case CK_FloatingComplexToIntegralComplex:
772 case CK_IntegralRealToComplex:
773 case CK_IntegralComplexToReal:
774 case CK_IntegralComplexToBoolean:
775 case CK_IntegralComplexCast:
776 case CK_IntegralComplexToFloatingComplex:
John McCall33e56f32011-09-10 06:18:15 +0000777 case CK_ARCProduceObject:
778 case CK_ARCConsumeObject:
779 case CK_ARCReclaimReturnedObject:
780 case CK_ARCExtendBlockObject:
Douglas Gregorac1303e2012-02-22 05:02:47 +0000781 case CK_CopyAndAutoreleaseBlockObject:
Eli Friedmana6c66ce2012-08-31 00:14:07 +0000782 case CK_BuiltinFnToFnPtr:
Guy Benyeie6b9d802013-01-20 12:31:11 +0000783 case CK_ZeroToOCLEvent:
John McCall0ae287a2010-12-01 04:43:34 +0000784 llvm_unreachable("cast kind invalid for aggregate types");
Anders Carlsson30168422009-09-29 01:23:39 +0000785 }
Anders Carlssone4707ff2008-01-14 06:28:57 +0000786}
787
Chris Lattner96196622008-07-26 22:37:01 +0000788void AggExprEmitter::VisitCallExpr(const CallExpr *E) {
Anders Carlssone70e8f72009-05-27 16:45:02 +0000789 if (E->getCallReturnType()->isReferenceType()) {
790 EmitAggLoadOfLValue(E);
791 return;
792 }
Mike Stump1eb44332009-09-09 15:08:12 +0000793
John McCallfa037bd2010-05-22 22:13:32 +0000794 RValue RV = CGF.EmitCallExpr(E, getReturnValueSlot());
John McCall410ffb22011-08-25 23:04:34 +0000795 EmitMoveFromReturnSlot(E, RV);
Anders Carlsson148fe672007-10-31 22:04:46 +0000796}
Chris Lattner96196622008-07-26 22:37:01 +0000797
798void AggExprEmitter::VisitObjCMessageExpr(ObjCMessageExpr *E) {
John McCallfa037bd2010-05-22 22:13:32 +0000799 RValue RV = CGF.EmitObjCMessageExpr(E, getReturnValueSlot());
John McCall410ffb22011-08-25 23:04:34 +0000800 EmitMoveFromReturnSlot(E, RV);
Chris Lattner8fdf3282008-06-24 17:04:18 +0000801}
Anders Carlsson148fe672007-10-31 22:04:46 +0000802
Chris Lattner96196622008-07-26 22:37:01 +0000803void AggExprEmitter::VisitBinComma(const BinaryOperator *E) {
John McCall2a416372010-12-05 02:00:02 +0000804 CGF.EmitIgnoredExpr(E->getLHS());
John McCall558d2ab2010-09-15 10:14:12 +0000805 Visit(E->getRHS());
Eli Friedman07fa52a2008-05-20 07:56:31 +0000806}
807
Chris Lattnerb2d963f2007-08-31 22:54:14 +0000808void AggExprEmitter::VisitStmtExpr(const StmtExpr *E) {
John McCall150b4622011-01-26 04:00:11 +0000809 CodeGenFunction::StmtExprEvaluation eval(CGF);
John McCall558d2ab2010-09-15 10:14:12 +0000810 CGF.EmitCompoundStmt(*E->getSubStmt(), true, Dest);
Chris Lattnerb2d963f2007-08-31 22:54:14 +0000811}
812
Chris Lattner9c033562007-08-21 04:25:47 +0000813void AggExprEmitter::VisitBinaryOperator(const BinaryOperator *E) {
John McCall2de56d12010-08-25 11:45:40 +0000814 if (E->getOpcode() == BO_PtrMemD || E->getOpcode() == BO_PtrMemI)
Fariborz Jahanian8bfd31f2009-10-22 22:57:31 +0000815 VisitPointerToDataMemberBinaryOperator(E);
816 else
817 CGF.ErrorUnsupported(E, "aggregate binary expression");
818}
819
820void AggExprEmitter::VisitPointerToDataMemberBinaryOperator(
821 const BinaryOperator *E) {
822 LValue LV = CGF.EmitPointerToDataMemberBinaryExpr(E);
John McCalle0c11682012-07-02 23:58:38 +0000823 EmitFinalDestCopy(E->getType(), LV);
824}
825
826/// Is the value of the given expression possibly a reference to or
827/// into a __block variable?
828static bool isBlockVarRef(const Expr *E) {
829 // Make sure we look through parens.
830 E = E->IgnoreParens();
831
832 // Check for a direct reference to a __block variable.
833 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) {
834 const VarDecl *var = dyn_cast<VarDecl>(DRE->getDecl());
835 return (var && var->hasAttr<BlocksAttr>());
836 }
837
838 // More complicated stuff.
839
840 // Binary operators.
841 if (const BinaryOperator *op = dyn_cast<BinaryOperator>(E)) {
842 // For an assignment or pointer-to-member operation, just care
843 // about the LHS.
844 if (op->isAssignmentOp() || op->isPtrMemOp())
845 return isBlockVarRef(op->getLHS());
846
847 // For a comma, just care about the RHS.
848 if (op->getOpcode() == BO_Comma)
849 return isBlockVarRef(op->getRHS());
850
851 // FIXME: pointer arithmetic?
852 return false;
853
854 // Check both sides of a conditional operator.
855 } else if (const AbstractConditionalOperator *op
856 = dyn_cast<AbstractConditionalOperator>(E)) {
857 return isBlockVarRef(op->getTrueExpr())
858 || isBlockVarRef(op->getFalseExpr());
859
860 // OVEs are required to support BinaryConditionalOperators.
861 } else if (const OpaqueValueExpr *op
862 = dyn_cast<OpaqueValueExpr>(E)) {
863 if (const Expr *src = op->getSourceExpr())
864 return isBlockVarRef(src);
865
866 // Casts are necessary to get things like (*(int*)&var) = foo().
867 // We don't really care about the kind of cast here, except
868 // we don't want to look through l2r casts, because it's okay
869 // to get the *value* in a __block variable.
870 } else if (const CastExpr *cast = dyn_cast<CastExpr>(E)) {
871 if (cast->getCastKind() == CK_LValueToRValue)
872 return false;
873 return isBlockVarRef(cast->getSubExpr());
874
875 // Handle unary operators. Again, just aggressively look through
876 // it, ignoring the operation.
877 } else if (const UnaryOperator *uop = dyn_cast<UnaryOperator>(E)) {
878 return isBlockVarRef(uop->getSubExpr());
879
880 // Look into the base of a field access.
881 } else if (const MemberExpr *mem = dyn_cast<MemberExpr>(E)) {
882 return isBlockVarRef(mem->getBase());
883
884 // Look into the base of a subscript.
885 } else if (const ArraySubscriptExpr *sub = dyn_cast<ArraySubscriptExpr>(E)) {
886 return isBlockVarRef(sub->getBase());
887 }
888
889 return false;
Chris Lattneree755f92007-08-21 04:59:27 +0000890}
891
Chris Lattner03d6fb92007-08-21 04:43:17 +0000892void AggExprEmitter::VisitBinAssign(const BinaryOperator *E) {
Eli Friedmanff6e2b72008-02-11 01:09:17 +0000893 // For an assignment to work, the value on the right has
894 // to be compatible with the value on the left.
Eli Friedman2dce5f82009-05-28 23:04:00 +0000895 assert(CGF.getContext().hasSameUnqualifiedType(E->getLHS()->getType(),
896 E->getRHS()->getType())
Eli Friedmanff6e2b72008-02-11 01:09:17 +0000897 && "Invalid assignment");
John McCallcd940a12010-12-06 06:10:02 +0000898
John McCalle0c11682012-07-02 23:58:38 +0000899 // If the LHS might be a __block variable, and the RHS can
900 // potentially cause a block copy, we need to evaluate the RHS first
901 // so that the assignment goes the right place.
902 // This is pretty semantically fragile.
903 if (isBlockVarRef(E->getLHS()) &&
904 E->getRHS()->HasSideEffects(CGF.getContext())) {
905 // Ensure that we have a destination, and evaluate the RHS into that.
906 EnsureDest(E->getRHS()->getType());
907 Visit(E->getRHS());
908
909 // Now emit the LHS and copy into it.
Richard Smith4def70d2012-10-09 19:52:38 +0000910 LValue LHS = CGF.EmitCheckedLValue(E->getLHS(), CodeGenFunction::TCK_Store);
John McCalle0c11682012-07-02 23:58:38 +0000911
John McCall9eda3ab2013-03-07 21:37:17 +0000912 // That copy is an atomic copy if the LHS is atomic.
913 if (LHS.getType()->isAtomicType()) {
914 CGF.EmitAtomicStore(Dest.asRValue(), LHS, /*isInit*/ false);
915 return;
916 }
917
John McCalle0c11682012-07-02 23:58:38 +0000918 EmitCopy(E->getLHS()->getType(),
919 AggValueSlot::forLValue(LHS, AggValueSlot::IsDestructed,
920 needsGC(E->getLHS()->getType()),
921 AggValueSlot::IsAliased),
922 Dest);
923 return;
924 }
Chad Rosier649b4a12012-03-29 17:37:10 +0000925
Chris Lattner9c033562007-08-21 04:25:47 +0000926 LValue LHS = CGF.EmitLValue(E->getLHS());
Chris Lattner883f6a72007-08-11 00:04:45 +0000927
John McCall9eda3ab2013-03-07 21:37:17 +0000928 // If we have an atomic type, evaluate into the destination and then
929 // do an atomic copy.
930 if (LHS.getType()->isAtomicType()) {
931 EnsureDest(E->getRHS()->getType());
932 Visit(E->getRHS());
933 CGF.EmitAtomicStore(Dest.asRValue(), LHS, /*isInit*/ false);
934 return;
935 }
936
John McCalldb458062011-11-07 03:59:57 +0000937 // Codegen the RHS so that it stores directly into the LHS.
938 AggValueSlot LHSSlot =
939 AggValueSlot::forLValue(LHS, AggValueSlot::IsDestructed,
940 needsGC(E->getLHS()->getType()),
Chad Rosier649b4a12012-03-29 17:37:10 +0000941 AggValueSlot::IsAliased);
Fariborz Jahanian3ac83d62013-01-25 23:57:05 +0000942 // A non-volatile aggregate destination might have volatile member.
943 if (!LHSSlot.isVolatile() &&
944 CGF.hasVolatileMember(E->getLHS()->getType()))
945 LHSSlot.setVolatile(true);
946
John McCalle0c11682012-07-02 23:58:38 +0000947 CGF.EmitAggExpr(E->getRHS(), LHSSlot);
948
949 // Copy into the destination if the assignment isn't ignored.
950 EmitFinalDestCopy(E->getType(), LHS);
Chris Lattner883f6a72007-08-11 00:04:45 +0000951}
952
John McCall56ca35d2011-02-17 10:25:35 +0000953void AggExprEmitter::
954VisitAbstractConditionalOperator(const AbstractConditionalOperator *E) {
Daniel Dunbar9615ecb2008-11-13 01:38:36 +0000955 llvm::BasicBlock *LHSBlock = CGF.createBasicBlock("cond.true");
956 llvm::BasicBlock *RHSBlock = CGF.createBasicBlock("cond.false");
957 llvm::BasicBlock *ContBlock = CGF.createBasicBlock("cond.end");
Mike Stump1eb44332009-09-09 15:08:12 +0000958
John McCall56ca35d2011-02-17 10:25:35 +0000959 // Bind the common expression if necessary.
Eli Friedmand97927d2012-01-06 20:42:20 +0000960 CodeGenFunction::OpaqueValueMapping binding(CGF, E);
John McCall56ca35d2011-02-17 10:25:35 +0000961
John McCall150b4622011-01-26 04:00:11 +0000962 CodeGenFunction::ConditionalEvaluation eval(CGF);
Eli Friedman8e274bd2009-12-25 06:17:05 +0000963 CGF.EmitBranchOnBoolExpr(E->getCond(), LHSBlock, RHSBlock);
Mike Stump1eb44332009-09-09 15:08:12 +0000964
John McCall74fb0ed2010-11-17 00:07:33 +0000965 // Save whether the destination's lifetime is externally managed.
John McCallfd71fb82011-08-26 08:02:37 +0000966 bool isExternallyDestructed = Dest.isExternallyDestructed();
Chris Lattner883f6a72007-08-11 00:04:45 +0000967
John McCall150b4622011-01-26 04:00:11 +0000968 eval.begin(CGF);
969 CGF.EmitBlock(LHSBlock);
John McCall56ca35d2011-02-17 10:25:35 +0000970 Visit(E->getTrueExpr());
John McCall150b4622011-01-26 04:00:11 +0000971 eval.end(CGF);
Mike Stump1eb44332009-09-09 15:08:12 +0000972
John McCall150b4622011-01-26 04:00:11 +0000973 assert(CGF.HaveInsertPoint() && "expression evaluation ended with no IP!");
974 CGF.Builder.CreateBr(ContBlock);
Mike Stump1eb44332009-09-09 15:08:12 +0000975
John McCall74fb0ed2010-11-17 00:07:33 +0000976 // If the result of an agg expression is unused, then the emission
977 // of the LHS might need to create a destination slot. That's fine
978 // with us, and we can safely emit the RHS into the same slot, but
John McCallfd71fb82011-08-26 08:02:37 +0000979 // we shouldn't claim that it's already being destructed.
980 Dest.setExternallyDestructed(isExternallyDestructed);
John McCall74fb0ed2010-11-17 00:07:33 +0000981
John McCall150b4622011-01-26 04:00:11 +0000982 eval.begin(CGF);
983 CGF.EmitBlock(RHSBlock);
John McCall56ca35d2011-02-17 10:25:35 +0000984 Visit(E->getFalseExpr());
John McCall150b4622011-01-26 04:00:11 +0000985 eval.end(CGF);
Mike Stump1eb44332009-09-09 15:08:12 +0000986
Chris Lattner9c033562007-08-21 04:25:47 +0000987 CGF.EmitBlock(ContBlock);
Chris Lattner883f6a72007-08-11 00:04:45 +0000988}
Chris Lattneree755f92007-08-21 04:59:27 +0000989
Anders Carlssona294ca82009-07-08 18:33:14 +0000990void AggExprEmitter::VisitChooseExpr(const ChooseExpr *CE) {
991 Visit(CE->getChosenSubExpr(CGF.getContext()));
992}
993
Eli Friedmanb1851242008-05-27 15:51:49 +0000994void AggExprEmitter::VisitVAArgExpr(VAArgExpr *VE) {
Daniel Dunbar07855702009-02-11 22:25:55 +0000995 llvm::Value *ArgValue = CGF.EmitVAListRef(VE->getSubExpr());
Anders Carlssonddf7cac2008-11-04 05:30:00 +0000996 llvm::Value *ArgPtr = CGF.EmitVAArg(ArgValue, VE->getType());
997
Sebastian Redl0262f022009-01-09 21:09:38 +0000998 if (!ArgPtr) {
Anders Carlssonddf7cac2008-11-04 05:30:00 +0000999 CGF.ErrorUnsupported(VE, "aggregate va_arg expression");
Sebastian Redl0262f022009-01-09 21:09:38 +00001000 return;
1001 }
1002
John McCalle0c11682012-07-02 23:58:38 +00001003 EmitFinalDestCopy(VE->getType(), CGF.MakeAddrLValue(ArgPtr, VE->getType()));
Eli Friedmanb1851242008-05-27 15:51:49 +00001004}
1005
Anders Carlssonb58d0172009-05-30 23:23:33 +00001006void AggExprEmitter::VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E) {
John McCall558d2ab2010-09-15 10:14:12 +00001007 // Ensure that we have a slot, but if we already do, remember
John McCallfd71fb82011-08-26 08:02:37 +00001008 // whether it was externally destructed.
1009 bool wasExternallyDestructed = Dest.isExternallyDestructed();
John McCalle0c11682012-07-02 23:58:38 +00001010 EnsureDest(E->getType());
John McCallfd71fb82011-08-26 08:02:37 +00001011
1012 // We're going to push a destructor if there isn't already one.
1013 Dest.setExternallyDestructed();
Mike Stump1eb44332009-09-09 15:08:12 +00001014
John McCall558d2ab2010-09-15 10:14:12 +00001015 Visit(E->getSubExpr());
Anders Carlssonb58d0172009-05-30 23:23:33 +00001016
John McCallfd71fb82011-08-26 08:02:37 +00001017 // Push that destructor we promised.
1018 if (!wasExternallyDestructed)
Peter Collingbourne86811602011-11-27 22:09:22 +00001019 CGF.EmitCXXTemporary(E->getTemporary(), E->getType(), Dest.getAddr());
Anders Carlssonb58d0172009-05-30 23:23:33 +00001020}
1021
Anders Carlssonb14095a2009-04-17 00:06:03 +00001022void
Anders Carlsson31ccf372009-05-03 17:47:16 +00001023AggExprEmitter::VisitCXXConstructExpr(const CXXConstructExpr *E) {
John McCall558d2ab2010-09-15 10:14:12 +00001024 AggValueSlot Slot = EnsureSlot(E->getType());
1025 CGF.EmitCXXConstructExpr(E, Slot);
Anders Carlsson7f6ad152009-05-19 04:48:36 +00001026}
1027
Eli Friedman4c5d8af2012-02-09 03:32:31 +00001028void
1029AggExprEmitter::VisitLambdaExpr(LambdaExpr *E) {
1030 AggValueSlot Slot = EnsureSlot(E->getType());
1031 CGF.EmitLambdaExpr(E, Slot);
1032}
1033
John McCall4765fa02010-12-06 08:20:24 +00001034void AggExprEmitter::VisitExprWithCleanups(ExprWithCleanups *E) {
John McCall1a343eb2011-11-10 08:15:53 +00001035 CGF.enterFullExpression(E);
1036 CodeGenFunction::RunCleanupsScope cleanups(CGF);
1037 Visit(E->getSubExpr());
Anders Carlssonb14095a2009-04-17 00:06:03 +00001038}
1039
Douglas Gregored8abf12010-07-08 06:14:04 +00001040void AggExprEmitter::VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *E) {
John McCall558d2ab2010-09-15 10:14:12 +00001041 QualType T = E->getType();
1042 AggValueSlot Slot = EnsureSlot(T);
John McCalla07398e2011-06-16 04:16:24 +00001043 EmitNullInitializationToLValue(CGF.MakeAddrLValue(Slot.getAddr(), T));
Anders Carlsson30311fa2009-12-16 06:57:54 +00001044}
1045
1046void AggExprEmitter::VisitImplicitValueInitExpr(ImplicitValueInitExpr *E) {
John McCall558d2ab2010-09-15 10:14:12 +00001047 QualType T = E->getType();
1048 AggValueSlot Slot = EnsureSlot(T);
John McCalla07398e2011-06-16 04:16:24 +00001049 EmitNullInitializationToLValue(CGF.MakeAddrLValue(Slot.getAddr(), T));
Nuno Lopes329763b2009-10-18 15:18:11 +00001050}
1051
Chris Lattner1b726772010-12-02 07:07:26 +00001052/// isSimpleZero - If emitting this value will obviously just cause a store of
1053/// zero to memory, return true. This can return false if uncertain, so it just
1054/// handles simple cases.
1055static bool isSimpleZero(const Expr *E, CodeGenFunction &CGF) {
Peter Collingbournef111d932011-04-15 00:35:48 +00001056 E = E->IgnoreParens();
1057
Chris Lattner1b726772010-12-02 07:07:26 +00001058 // 0
1059 if (const IntegerLiteral *IL = dyn_cast<IntegerLiteral>(E))
1060 return IL->getValue() == 0;
1061 // +0.0
1062 if (const FloatingLiteral *FL = dyn_cast<FloatingLiteral>(E))
1063 return FL->getValue().isPosZero();
1064 // int()
1065 if ((isa<ImplicitValueInitExpr>(E) || isa<CXXScalarValueInitExpr>(E)) &&
1066 CGF.getTypes().isZeroInitializable(E->getType()))
1067 return true;
1068 // (int*)0 - Null pointer expressions.
1069 if (const CastExpr *ICE = dyn_cast<CastExpr>(E))
1070 return ICE->getCastKind() == CK_NullToPointer;
1071 // '\0'
1072 if (const CharacterLiteral *CL = dyn_cast<CharacterLiteral>(E))
1073 return CL->getValue() == 0;
1074
1075 // Otherwise, hard case: conservatively return false.
1076 return false;
1077}
1078
1079
Anders Carlsson78e83f82010-02-03 17:33:16 +00001080void
Chad Rosier649b4a12012-03-29 17:37:10 +00001081AggExprEmitter::EmitInitializationToLValue(Expr* E, LValue LV) {
John McCalla07398e2011-06-16 04:16:24 +00001082 QualType type = LV.getType();
Mike Stump7f79f9b2009-05-29 15:46:01 +00001083 // FIXME: Ignore result?
Chris Lattnerf81557c2008-04-04 18:42:16 +00001084 // FIXME: Are initializers affected by volatile?
Chris Lattner1b726772010-12-02 07:07:26 +00001085 if (Dest.isZeroed() && isSimpleZero(E, CGF)) {
1086 // Storing "i32 0" to a zero'd memory location is a noop.
John McCall9d232c82013-03-07 21:37:08 +00001087 return;
Richard Smith0dbe2fb2012-12-21 03:17:28 +00001088 } else if (isa<ImplicitValueInitExpr>(E) || isa<CXXScalarValueInitExpr>(E)) {
John McCall9d232c82013-03-07 21:37:08 +00001089 return EmitNullInitializationToLValue(LV);
John McCalla07398e2011-06-16 04:16:24 +00001090 } else if (type->isReferenceType()) {
Anders Carlsson32f36ba2010-06-26 16:35:32 +00001091 RValue RV = CGF.EmitReferenceBindingToExpr(E, /*InitializedDecl=*/0);
John McCall9d232c82013-03-07 21:37:08 +00001092 return CGF.EmitStoreThroughLValue(RV, LV);
1093 }
1094
1095 switch (CGF.getEvaluationKind(type)) {
1096 case TEK_Complex:
1097 CGF.EmitComplexExprIntoLValue(E, LV, /*isInit*/ true);
1098 return;
1099 case TEK_Aggregate:
John McCall7c2349b2011-08-25 20:40:09 +00001100 CGF.EmitAggExpr(E, AggValueSlot::forLValue(LV,
1101 AggValueSlot::IsDestructed,
1102 AggValueSlot::DoesNotNeedGCBarriers,
John McCall410ffb22011-08-25 23:04:34 +00001103 AggValueSlot::IsNotAliased,
John McCalla07398e2011-06-16 04:16:24 +00001104 Dest.isZeroed()));
John McCall9d232c82013-03-07 21:37:08 +00001105 return;
1106 case TEK_Scalar:
1107 if (LV.isSimple()) {
1108 CGF.EmitScalarInit(E, /*D=*/0, LV, /*Captured=*/false);
1109 } else {
1110 CGF.EmitStoreThroughLValue(RValue::get(CGF.EmitScalarExpr(E)), LV);
1111 }
1112 return;
Chris Lattnerf81557c2008-04-04 18:42:16 +00001113 }
John McCall9d232c82013-03-07 21:37:08 +00001114 llvm_unreachable("bad evaluation kind");
Chris Lattnerf81557c2008-04-04 18:42:16 +00001115}
1116
John McCalla07398e2011-06-16 04:16:24 +00001117void AggExprEmitter::EmitNullInitializationToLValue(LValue lv) {
1118 QualType type = lv.getType();
1119
Chris Lattner1b726772010-12-02 07:07:26 +00001120 // If the destination slot is already zeroed out before the aggregate is
1121 // copied into it, we don't have to emit any zeros here.
John McCalla07398e2011-06-16 04:16:24 +00001122 if (Dest.isZeroed() && CGF.getTypes().isZeroInitializable(type))
Chris Lattner1b726772010-12-02 07:07:26 +00001123 return;
1124
John McCall9d232c82013-03-07 21:37:08 +00001125 if (CGF.hasScalarEvaluationKind(type)) {
Richard Smith0dbe2fb2012-12-21 03:17:28 +00001126 // For non-aggregates, we can store the appropriate null constant.
1127 llvm::Value *null = CGF.CGM.EmitNullConstant(type);
Eli Friedmanb1e3f322012-02-22 05:38:59 +00001128 // Note that the following is not equivalent to
1129 // EmitStoreThroughBitfieldLValue for ARC types.
Eli Friedman5a13d4d2012-02-24 23:53:49 +00001130 if (lv.isBitField()) {
Eli Friedmanb1e3f322012-02-22 05:38:59 +00001131 CGF.EmitStoreThroughBitfieldLValue(RValue::get(null), lv);
Eli Friedman5a13d4d2012-02-24 23:53:49 +00001132 } else {
1133 assert(lv.isSimple());
1134 CGF.EmitStoreOfScalar(null, lv, /* isInitialization */ true);
1135 }
Lauro Ramos Venancio145cd892008-02-19 19:27:31 +00001136 } else {
Chris Lattnerf81557c2008-04-04 18:42:16 +00001137 // There's a potential optimization opportunity in combining
1138 // memsets; that would be easy for arrays, but relatively
1139 // difficult for structures with the current code.
John McCalla07398e2011-06-16 04:16:24 +00001140 CGF.EmitNullInitialization(lv.getAddress(), lv.getType());
Chris Lattnerf81557c2008-04-04 18:42:16 +00001141 }
1142}
1143
Chris Lattnerf81557c2008-04-04 18:42:16 +00001144void AggExprEmitter::VisitInitListExpr(InitListExpr *E) {
Eli Friedmana385b3c2008-12-02 01:17:45 +00001145#if 0
Eli Friedman13a5be12009-12-04 01:30:56 +00001146 // FIXME: Assess perf here? Figure out what cases are worth optimizing here
1147 // (Length of globals? Chunks of zeroed-out space?).
Eli Friedmana385b3c2008-12-02 01:17:45 +00001148 //
Mike Stumpf5408fe2009-05-16 07:57:57 +00001149 // If we can, prefer a copy from a global; this is a lot less code for long
1150 // globals, and it's easier for the current optimizers to analyze.
Eli Friedman13a5be12009-12-04 01:30:56 +00001151 if (llvm::Constant* C = CGF.CGM.EmitConstantExpr(E, E->getType(), &CGF)) {
Eli Friedman994ffef2008-11-30 02:11:09 +00001152 llvm::GlobalVariable* GV =
Eli Friedman13a5be12009-12-04 01:30:56 +00001153 new llvm::GlobalVariable(CGF.CGM.getModule(), C->getType(), true,
1154 llvm::GlobalValue::InternalLinkage, C, "");
John McCalle0c11682012-07-02 23:58:38 +00001155 EmitFinalDestCopy(E->getType(), CGF.MakeAddrLValue(GV, E->getType()));
Eli Friedman994ffef2008-11-30 02:11:09 +00001156 return;
1157 }
Eli Friedmana385b3c2008-12-02 01:17:45 +00001158#endif
Chris Lattnerd0db03a2010-09-06 00:11:41 +00001159 if (E->hadArrayRangeDesignator())
Douglas Gregora9c87802009-01-29 19:42:23 +00001160 CGF.ErrorUnsupported(E, "GNU array range designator extension");
Douglas Gregora9c87802009-01-29 19:42:23 +00001161
Sebastian Redl32cf1f22012-02-17 08:42:25 +00001162 if (E->initializesStdInitializerList()) {
Sebastian Redlaf130fd2012-02-19 12:28:02 +00001163 EmitStdInitializerList(Dest.getAddr(), E);
Sebastian Redl32cf1f22012-02-17 08:42:25 +00001164 return;
1165 }
1166
Eli Friedman377ecc72012-04-16 03:54:45 +00001167 AggValueSlot Dest = EnsureSlot(E->getType());
1168 LValue DestLV = CGF.MakeAddrLValue(Dest.getAddr(), E->getType(),
1169 Dest.getAlignment());
John McCall558d2ab2010-09-15 10:14:12 +00001170
Chris Lattnerf81557c2008-04-04 18:42:16 +00001171 // Handle initialization of an array.
1172 if (E->getType()->isArrayType()) {
Richard Smithfe587202012-04-15 02:50:59 +00001173 if (E->isStringLiteralInit())
1174 return Visit(E->getInit(0));
Eli Friedman922696f2008-05-19 17:51:16 +00001175
Eli Friedman5c89c392012-02-23 02:25:10 +00001176 QualType elementType =
1177 CGF.getContext().getAsArrayType(E->getType())->getElementType();
Argyrios Kyrtzidis3b4d4902011-04-28 18:53:58 +00001178
Sebastian Redl32cf1f22012-02-17 08:42:25 +00001179 llvm::PointerType *APType =
Eli Friedman377ecc72012-04-16 03:54:45 +00001180 cast<llvm::PointerType>(Dest.getAddr()->getType());
Sebastian Redl32cf1f22012-02-17 08:42:25 +00001181 llvm::ArrayType *AType =
1182 cast<llvm::ArrayType>(APType->getElementType());
Chris Lattner1b726772010-12-02 07:07:26 +00001183
Eli Friedman377ecc72012-04-16 03:54:45 +00001184 EmitArrayInit(Dest.getAddr(), AType, elementType, E);
Chris Lattnerf81557c2008-04-04 18:42:16 +00001185 return;
1186 }
Mike Stump1eb44332009-09-09 15:08:12 +00001187
Chris Lattnerf81557c2008-04-04 18:42:16 +00001188 assert(E->getType()->isRecordType() && "Only support structs/unions here!");
Mike Stump1eb44332009-09-09 15:08:12 +00001189
Chris Lattnerf81557c2008-04-04 18:42:16 +00001190 // Do struct initialization; this code just sets each individual member
1191 // to the approprate value. This makes bitfield support automatic;
1192 // the disadvantage is that the generated code is more difficult for
1193 // the optimizer, especially with bitfields.
1194 unsigned NumInitElements = E->getNumInits();
John McCall2b30dcf2011-07-11 19:35:02 +00001195 RecordDecl *record = E->getType()->castAs<RecordType>()->getDecl();
Richard Smithc3bf52c2013-04-20 22:23:05 +00001196
1197 // Prepare a 'this' for CXXDefaultInitExprs.
1198 CodeGenFunction::FieldConstructionScope FCS(CGF, Dest.getAddr());
1199
John McCall2b30dcf2011-07-11 19:35:02 +00001200 if (record->isUnion()) {
Douglas Gregor0bb76892009-01-29 16:53:55 +00001201 // Only initialize one field of a union. The field itself is
1202 // specified by the initializer list.
1203 if (!E->getInitializedFieldInUnion()) {
1204 // Empty union; we have nothing to do.
Mike Stump1eb44332009-09-09 15:08:12 +00001205
Douglas Gregor0bb76892009-01-29 16:53:55 +00001206#ifndef NDEBUG
1207 // Make sure that it's really an empty and not a failure of
1208 // semantic analysis.
John McCall2b30dcf2011-07-11 19:35:02 +00001209 for (RecordDecl::field_iterator Field = record->field_begin(),
1210 FieldEnd = record->field_end();
Douglas Gregor0bb76892009-01-29 16:53:55 +00001211 Field != FieldEnd; ++Field)
1212 assert(Field->isUnnamedBitfield() && "Only unnamed bitfields allowed");
1213#endif
1214 return;
1215 }
1216
1217 // FIXME: volatility
1218 FieldDecl *Field = E->getInitializedFieldInUnion();
Douglas Gregor0bb76892009-01-29 16:53:55 +00001219
Eli Friedman377ecc72012-04-16 03:54:45 +00001220 LValue FieldLoc = CGF.EmitLValueForFieldInitialization(DestLV, Field);
Douglas Gregor0bb76892009-01-29 16:53:55 +00001221 if (NumInitElements) {
1222 // Store the initializer into the field
Chad Rosier649b4a12012-03-29 17:37:10 +00001223 EmitInitializationToLValue(E->getInit(0), FieldLoc);
Douglas Gregor0bb76892009-01-29 16:53:55 +00001224 } else {
Chris Lattner1b726772010-12-02 07:07:26 +00001225 // Default-initialize to null.
John McCalla07398e2011-06-16 04:16:24 +00001226 EmitNullInitializationToLValue(FieldLoc);
Douglas Gregor0bb76892009-01-29 16:53:55 +00001227 }
1228
1229 return;
1230 }
Mike Stump1eb44332009-09-09 15:08:12 +00001231
John McCall2b30dcf2011-07-11 19:35:02 +00001232 // We'll need to enter cleanup scopes in case any of the member
1233 // initializers throw an exception.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001234 SmallVector<EHScopeStack::stable_iterator, 16> cleanups;
John McCall6f103ba2011-11-10 10:43:54 +00001235 llvm::Instruction *cleanupDominator = 0;
John McCall2b30dcf2011-07-11 19:35:02 +00001236
Chris Lattnerf81557c2008-04-04 18:42:16 +00001237 // Here we iterate over the fields; this makes it simpler to both
1238 // default-initialize fields and skip over unnamed fields.
John McCall2b30dcf2011-07-11 19:35:02 +00001239 unsigned curInitIndex = 0;
1240 for (RecordDecl::field_iterator field = record->field_begin(),
1241 fieldEnd = record->field_end();
1242 field != fieldEnd; ++field) {
1243 // We're done once we hit the flexible array member.
1244 if (field->getType()->isIncompleteArrayType())
Douglas Gregor44b43212008-12-11 16:49:14 +00001245 break;
1246
John McCall2b30dcf2011-07-11 19:35:02 +00001247 // Always skip anonymous bitfields.
1248 if (field->isUnnamedBitfield())
Chris Lattnerf81557c2008-04-04 18:42:16 +00001249 continue;
Douglas Gregor34e79462009-01-28 23:36:17 +00001250
John McCall2b30dcf2011-07-11 19:35:02 +00001251 // We're done if we reach the end of the explicit initializers, we
1252 // have a zeroed object, and the rest of the fields are
1253 // zero-initializable.
1254 if (curInitIndex == NumInitElements && Dest.isZeroed() &&
Chris Lattner1b726772010-12-02 07:07:26 +00001255 CGF.getTypes().isZeroInitializable(E->getType()))
1256 break;
1257
Eli Friedman377ecc72012-04-16 03:54:45 +00001258
David Blaikie581deb32012-06-06 20:45:41 +00001259 LValue LV = CGF.EmitLValueForFieldInitialization(DestLV, *field);
Fariborz Jahanian14674ff2009-05-27 19:54:11 +00001260 // We never generate write-barries for initialized fields.
John McCall2b30dcf2011-07-11 19:35:02 +00001261 LV.setNonGC(true);
Chris Lattner1b726772010-12-02 07:07:26 +00001262
John McCall2b30dcf2011-07-11 19:35:02 +00001263 if (curInitIndex < NumInitElements) {
Chris Lattnerb35baae2010-03-08 21:08:07 +00001264 // Store the initializer into the field.
Chad Rosier649b4a12012-03-29 17:37:10 +00001265 EmitInitializationToLValue(E->getInit(curInitIndex++), LV);
Chris Lattnerf81557c2008-04-04 18:42:16 +00001266 } else {
1267 // We're out of initalizers; default-initialize to null
John McCall2b30dcf2011-07-11 19:35:02 +00001268 EmitNullInitializationToLValue(LV);
1269 }
1270
1271 // Push a destructor if necessary.
1272 // FIXME: if we have an array of structures, all explicitly
1273 // initialized, we can end up pushing a linear number of cleanups.
1274 bool pushedCleanup = false;
1275 if (QualType::DestructionKind dtorKind
1276 = field->getType().isDestructedType()) {
1277 assert(LV.isSimple());
1278 if (CGF.needsEHCleanup(dtorKind)) {
John McCall6f103ba2011-11-10 10:43:54 +00001279 if (!cleanupDominator)
1280 cleanupDominator = CGF.Builder.CreateUnreachable(); // placeholder
1281
John McCall2b30dcf2011-07-11 19:35:02 +00001282 CGF.pushDestroy(EHCleanup, LV.getAddress(), field->getType(),
1283 CGF.getDestroyer(dtorKind), false);
1284 cleanups.push_back(CGF.EHStack.stable_begin());
1285 pushedCleanup = true;
1286 }
Chris Lattnerf81557c2008-04-04 18:42:16 +00001287 }
Chris Lattner1b726772010-12-02 07:07:26 +00001288
1289 // If the GEP didn't get used because of a dead zero init or something
1290 // else, clean it up for -O0 builds and general tidiness.
John McCall2b30dcf2011-07-11 19:35:02 +00001291 if (!pushedCleanup && LV.isSimple())
Chris Lattner1b726772010-12-02 07:07:26 +00001292 if (llvm::GetElementPtrInst *GEP =
John McCall2b30dcf2011-07-11 19:35:02 +00001293 dyn_cast<llvm::GetElementPtrInst>(LV.getAddress()))
Chris Lattner1b726772010-12-02 07:07:26 +00001294 if (GEP->use_empty())
1295 GEP->eraseFromParent();
Lauro Ramos Venancio145cd892008-02-19 19:27:31 +00001296 }
John McCall2b30dcf2011-07-11 19:35:02 +00001297
1298 // Deactivate all the partial cleanups in reverse order, which
1299 // generally means popping them.
1300 for (unsigned i = cleanups.size(); i != 0; --i)
John McCall6f103ba2011-11-10 10:43:54 +00001301 CGF.DeactivateCleanupBlock(cleanups[i-1], cleanupDominator);
1302
1303 // Destroy the placeholder if we made one.
1304 if (cleanupDominator)
1305 cleanupDominator->eraseFromParent();
Devang Patel636c3d02007-10-26 17:44:44 +00001306}
1307
Chris Lattneree755f92007-08-21 04:59:27 +00001308//===----------------------------------------------------------------------===//
1309// Entry Points into this File
1310//===----------------------------------------------------------------------===//
1311
Chris Lattner1b726772010-12-02 07:07:26 +00001312/// GetNumNonZeroBytesInInit - Get an approximate count of the number of
1313/// non-zero bytes that will be stored when outputting the initializer for the
1314/// specified initializer expression.
Ken Dyck02c45332011-04-24 17:17:56 +00001315static CharUnits GetNumNonZeroBytesInInit(const Expr *E, CodeGenFunction &CGF) {
Peter Collingbournef111d932011-04-15 00:35:48 +00001316 E = E->IgnoreParens();
Chris Lattner1b726772010-12-02 07:07:26 +00001317
1318 // 0 and 0.0 won't require any non-zero stores!
Ken Dyck02c45332011-04-24 17:17:56 +00001319 if (isSimpleZero(E, CGF)) return CharUnits::Zero();
Chris Lattner1b726772010-12-02 07:07:26 +00001320
1321 // If this is an initlist expr, sum up the size of sizes of the (present)
1322 // elements. If this is something weird, assume the whole thing is non-zero.
1323 const InitListExpr *ILE = dyn_cast<InitListExpr>(E);
1324 if (ILE == 0 || !CGF.getTypes().isZeroInitializable(ILE->getType()))
Ken Dyck02c45332011-04-24 17:17:56 +00001325 return CGF.getContext().getTypeSizeInChars(E->getType());
Chris Lattner1b726772010-12-02 07:07:26 +00001326
Chris Lattnerd1d56df2010-12-02 18:29:00 +00001327 // InitListExprs for structs have to be handled carefully. If there are
1328 // reference members, we need to consider the size of the reference, not the
1329 // referencee. InitListExprs for unions and arrays can't have references.
Chris Lattner8c00ad12010-12-02 22:52:04 +00001330 if (const RecordType *RT = E->getType()->getAs<RecordType>()) {
1331 if (!RT->isUnionType()) {
1332 RecordDecl *SD = E->getType()->getAs<RecordType>()->getDecl();
Ken Dyck02c45332011-04-24 17:17:56 +00001333 CharUnits NumNonZeroBytes = CharUnits::Zero();
Chris Lattner8c00ad12010-12-02 22:52:04 +00001334
1335 unsigned ILEElement = 0;
1336 for (RecordDecl::field_iterator Field = SD->field_begin(),
1337 FieldEnd = SD->field_end(); Field != FieldEnd; ++Field) {
1338 // We're done once we hit the flexible array member or run out of
1339 // InitListExpr elements.
1340 if (Field->getType()->isIncompleteArrayType() ||
1341 ILEElement == ILE->getNumInits())
1342 break;
1343 if (Field->isUnnamedBitfield())
1344 continue;
Chris Lattnerd1d56df2010-12-02 18:29:00 +00001345
Chris Lattner8c00ad12010-12-02 22:52:04 +00001346 const Expr *E = ILE->getInit(ILEElement++);
1347
1348 // Reference values are always non-null and have the width of a pointer.
1349 if (Field->getType()->isReferenceType())
Ken Dyck02c45332011-04-24 17:17:56 +00001350 NumNonZeroBytes += CGF.getContext().toCharUnitsFromBits(
John McCall64aa4b32013-04-16 22:48:15 +00001351 CGF.getTarget().getPointerWidth(0));
Chris Lattner8c00ad12010-12-02 22:52:04 +00001352 else
1353 NumNonZeroBytes += GetNumNonZeroBytesInInit(E, CGF);
1354 }
Chris Lattnerd1d56df2010-12-02 18:29:00 +00001355
Chris Lattner8c00ad12010-12-02 22:52:04 +00001356 return NumNonZeroBytes;
Chris Lattnerd1d56df2010-12-02 18:29:00 +00001357 }
Chris Lattnerd1d56df2010-12-02 18:29:00 +00001358 }
1359
1360
Ken Dyck02c45332011-04-24 17:17:56 +00001361 CharUnits NumNonZeroBytes = CharUnits::Zero();
Chris Lattner1b726772010-12-02 07:07:26 +00001362 for (unsigned i = 0, e = ILE->getNumInits(); i != e; ++i)
1363 NumNonZeroBytes += GetNumNonZeroBytesInInit(ILE->getInit(i), CGF);
1364 return NumNonZeroBytes;
1365}
1366
1367/// CheckAggExprForMemSetUse - If the initializer is large and has a lot of
1368/// zeros in it, emit a memset and avoid storing the individual zeros.
1369///
1370static void CheckAggExprForMemSetUse(AggValueSlot &Slot, const Expr *E,
1371 CodeGenFunction &CGF) {
1372 // If the slot is already known to be zeroed, nothing to do. Don't mess with
1373 // volatile stores.
1374 if (Slot.isZeroed() || Slot.isVolatile() || Slot.getAddr() == 0) return;
Argyrios Kyrtzidis657baf12011-04-28 22:57:55 +00001375
1376 // C++ objects with a user-declared constructor don't need zero'ing.
Richard Smith7edf9e32012-11-01 22:30:59 +00001377 if (CGF.getLangOpts().CPlusPlus)
Argyrios Kyrtzidis657baf12011-04-28 22:57:55 +00001378 if (const RecordType *RT = CGF.getContext()
1379 .getBaseElementType(E->getType())->getAs<RecordType>()) {
1380 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
1381 if (RD->hasUserDeclaredConstructor())
1382 return;
1383 }
1384
Chris Lattner1b726772010-12-02 07:07:26 +00001385 // If the type is 16-bytes or smaller, prefer individual stores over memset.
Ken Dyck5ff1a352011-04-24 17:25:32 +00001386 std::pair<CharUnits, CharUnits> TypeInfo =
1387 CGF.getContext().getTypeInfoInChars(E->getType());
1388 if (TypeInfo.first <= CharUnits::fromQuantity(16))
Chris Lattner1b726772010-12-02 07:07:26 +00001389 return;
1390
1391 // Check to see if over 3/4 of the initializer are known to be zero. If so,
1392 // we prefer to emit memset + individual stores for the rest.
Ken Dyck5ff1a352011-04-24 17:25:32 +00001393 CharUnits NumNonZeroBytes = GetNumNonZeroBytesInInit(E, CGF);
1394 if (NumNonZeroBytes*4 > TypeInfo.first)
Chris Lattner1b726772010-12-02 07:07:26 +00001395 return;
1396
1397 // Okay, it seems like a good idea to use an initial memset, emit the call.
Ken Dyck5ff1a352011-04-24 17:25:32 +00001398 llvm::Constant *SizeVal = CGF.Builder.getInt64(TypeInfo.first.getQuantity());
1399 CharUnits Align = TypeInfo.second;
Chris Lattner1b726772010-12-02 07:07:26 +00001400
1401 llvm::Value *Loc = Slot.getAddr();
Chris Lattner1b726772010-12-02 07:07:26 +00001402
Chris Lattner8b418682012-02-07 00:39:47 +00001403 Loc = CGF.Builder.CreateBitCast(Loc, CGF.Int8PtrTy);
Ken Dyck5ff1a352011-04-24 17:25:32 +00001404 CGF.Builder.CreateMemSet(Loc, CGF.Builder.getInt8(0), SizeVal,
1405 Align.getQuantity(), false);
Chris Lattner1b726772010-12-02 07:07:26 +00001406
1407 // Tell the AggExprEmitter that the slot is known zero.
1408 Slot.setZeroed();
1409}
1410
1411
1412
1413
Mike Stumpe1129a92009-05-26 18:57:45 +00001414/// EmitAggExpr - Emit the computation of the specified expression of aggregate
1415/// type. The result is computed into DestPtr. Note that if DestPtr is null,
1416/// the value of the aggregate expression is not needed. If VolatileDest is
1417/// true, DestPtr cannot be 0.
John McCalle0c11682012-07-02 23:58:38 +00001418void CodeGenFunction::EmitAggExpr(const Expr *E, AggValueSlot Slot) {
John McCall9d232c82013-03-07 21:37:08 +00001419 assert(E && hasAggregateEvaluationKind(E->getType()) &&
Chris Lattneree755f92007-08-21 04:59:27 +00001420 "Invalid aggregate expression to emit");
Chris Lattner1b726772010-12-02 07:07:26 +00001421 assert((Slot.getAddr() != 0 || Slot.isIgnored()) &&
1422 "slot has bits but no address");
Mike Stump1eb44332009-09-09 15:08:12 +00001423
Chris Lattner1b726772010-12-02 07:07:26 +00001424 // Optimize the slot if possible.
1425 CheckAggExprForMemSetUse(Slot, E, *this);
1426
John McCalle0c11682012-07-02 23:58:38 +00001427 AggExprEmitter(*this, Slot).Visit(const_cast<Expr*>(E));
Chris Lattneree755f92007-08-21 04:59:27 +00001428}
Daniel Dunbar7482d122008-09-09 20:49:46 +00001429
Daniel Dunbar18aba0d2010-02-05 19:38:31 +00001430LValue CodeGenFunction::EmitAggExprToLValue(const Expr *E) {
John McCall9d232c82013-03-07 21:37:08 +00001431 assert(hasAggregateEvaluationKind(E->getType()) && "Invalid argument!");
Daniel Dunbar195337d2010-02-09 02:48:28 +00001432 llvm::Value *Temp = CreateMemTemp(E->getType());
Daniel Dunbar79c39282010-08-21 03:15:20 +00001433 LValue LV = MakeAddrLValue(Temp, E->getType());
John McCall7c2349b2011-08-25 20:40:09 +00001434 EmitAggExpr(E, AggValueSlot::forLValue(LV, AggValueSlot::IsNotDestructed,
John McCall44184392011-08-26 07:31:35 +00001435 AggValueSlot::DoesNotNeedGCBarriers,
Chad Rosier649b4a12012-03-29 17:37:10 +00001436 AggValueSlot::IsNotAliased));
Daniel Dunbar79c39282010-08-21 03:15:20 +00001437 return LV;
Daniel Dunbar18aba0d2010-02-05 19:38:31 +00001438}
1439
Chad Rosier649b4a12012-03-29 17:37:10 +00001440void CodeGenFunction::EmitAggregateCopy(llvm::Value *DestPtr,
1441 llvm::Value *SrcPtr, QualType Ty,
John McCalle0c11682012-07-02 23:58:38 +00001442 bool isVolatile,
Benjamin Kramer6cacae82012-09-30 12:43:37 +00001443 CharUnits alignment,
1444 bool isAssignment) {
Chad Rosier649b4a12012-03-29 17:37:10 +00001445 assert(!Ty->isAnyComplexType() && "Shouldn't happen for complex");
Mike Stump1eb44332009-09-09 15:08:12 +00001446
Richard Smith7edf9e32012-11-01 22:30:59 +00001447 if (getLangOpts().CPlusPlus) {
Chad Rosier649b4a12012-03-29 17:37:10 +00001448 if (const RecordType *RT = Ty->getAs<RecordType>()) {
1449 CXXRecordDecl *Record = cast<CXXRecordDecl>(RT->getDecl());
1450 assert((Record->hasTrivialCopyConstructor() ||
1451 Record->hasTrivialCopyAssignment() ||
1452 Record->hasTrivialMoveConstructor() ||
1453 Record->hasTrivialMoveAssignment()) &&
Richard Smith426391c2012-11-16 00:53:38 +00001454 "Trying to aggregate-copy a type without a trivial copy/move "
Douglas Gregore9979482010-05-20 15:39:01 +00001455 "constructor or assignment operator");
Chad Rosier649b4a12012-03-29 17:37:10 +00001456 // Ignore empty classes in C++.
1457 if (Record->isEmpty())
Anders Carlsson0d7c5832010-05-03 01:20:20 +00001458 return;
1459 }
1460 }
1461
Chris Lattner83c96292009-02-28 18:31:01 +00001462 // Aggregate assignment turns into llvm.memcpy. This is almost valid per
Chris Lattnerca4fc2c2009-02-28 18:18:58 +00001463 // C99 6.5.16.1p3, which states "If the value being stored in an object is
1464 // read from another object that overlaps in anyway the storage of the first
1465 // object, then the overlap shall be exact and the two objects shall have
1466 // qualified or unqualified versions of a compatible type."
1467 //
Chris Lattner83c96292009-02-28 18:31:01 +00001468 // memcpy is not defined if the source and destination pointers are exactly
Chris Lattnerca4fc2c2009-02-28 18:18:58 +00001469 // equal, but other compilers do this optimization, and almost every memcpy
1470 // implementation handles this case safely. If there is a libc that does not
1471 // safely handle this, we can add a target hook.
Chad Rosier649b4a12012-03-29 17:37:10 +00001472
Benjamin Kramer6cacae82012-09-30 12:43:37 +00001473 // Get data size and alignment info for this aggregate. If this is an
1474 // assignment don't copy the tail padding. Otherwise copying it is fine.
1475 std::pair<CharUnits, CharUnits> TypeInfo;
1476 if (isAssignment)
1477 TypeInfo = getContext().getTypeInfoDataSizeInChars(Ty);
1478 else
1479 TypeInfo = getContext().getTypeInfoInChars(Ty);
Chad Rosier649b4a12012-03-29 17:37:10 +00001480
John McCalle0c11682012-07-02 23:58:38 +00001481 if (alignment.isZero())
1482 alignment = TypeInfo.second;
Chad Rosier649b4a12012-03-29 17:37:10 +00001483
1484 // FIXME: Handle variable sized types.
1485
1486 // FIXME: If we have a volatile struct, the optimizer can remove what might
1487 // appear to be `extra' memory ops:
1488 //
1489 // volatile struct { int i; } a, b;
1490 //
1491 // int main() {
1492 // a = b;
1493 // a = b;
1494 // }
1495 //
1496 // we need to use a different call here. We use isVolatile to indicate when
1497 // either the source or the destination is volatile.
1498
1499 llvm::PointerType *DPT = cast<llvm::PointerType>(DestPtr->getType());
1500 llvm::Type *DBP =
1501 llvm::Type::getInt8PtrTy(getLLVMContext(), DPT->getAddressSpace());
1502 DestPtr = Builder.CreateBitCast(DestPtr, DBP);
1503
1504 llvm::PointerType *SPT = cast<llvm::PointerType>(SrcPtr->getType());
1505 llvm::Type *SBP =
1506 llvm::Type::getInt8PtrTy(getLLVMContext(), SPT->getAddressSpace());
1507 SrcPtr = Builder.CreateBitCast(SrcPtr, SBP);
1508
1509 // Don't do any of the memmove_collectable tests if GC isn't set.
1510 if (CGM.getLangOpts().getGC() == LangOptions::NonGC) {
1511 // fall through
1512 } else if (const RecordType *RecordTy = Ty->getAs<RecordType>()) {
1513 RecordDecl *Record = RecordTy->getDecl();
1514 if (Record->hasObjectMember()) {
1515 CharUnits size = TypeInfo.first;
1516 llvm::Type *SizeTy = ConvertType(getContext().getSizeType());
1517 llvm::Value *SizeVal = llvm::ConstantInt::get(SizeTy, size.getQuantity());
1518 CGM.getObjCRuntime().EmitGCMemmoveCollectable(*this, DestPtr, SrcPtr,
1519 SizeVal);
1520 return;
1521 }
1522 } else if (Ty->isArrayType()) {
1523 QualType BaseType = getContext().getBaseElementType(Ty);
1524 if (const RecordType *RecordTy = BaseType->getAs<RecordType>()) {
1525 if (RecordTy->getDecl()->hasObjectMember()) {
1526 CharUnits size = TypeInfo.first;
1527 llvm::Type *SizeTy = ConvertType(getContext().getSizeType());
1528 llvm::Value *SizeVal =
1529 llvm::ConstantInt::get(SizeTy, size.getQuantity());
1530 CGM.getObjCRuntime().EmitGCMemmoveCollectable(*this, DestPtr, SrcPtr,
1531 SizeVal);
1532 return;
1533 }
1534 }
1535 }
Dan Gohmanb22c7dc2012-09-28 21:58:29 +00001536
1537 // Determine the metadata to describe the position of any padding in this
1538 // memcpy, as well as the TBAA tags for the members of the struct, in case
1539 // the optimizer wishes to expand it in to scalar memory operations.
1540 llvm::MDNode *TBAAStructTag = CGM.getTBAAStructInfo(Ty);
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00001541
Chad Rosier649b4a12012-03-29 17:37:10 +00001542 Builder.CreateMemCpy(DestPtr, SrcPtr,
1543 llvm::ConstantInt::get(IntPtrTy,
1544 TypeInfo.first.getQuantity()),
Dan Gohmanb22c7dc2012-09-28 21:58:29 +00001545 alignment.getQuantity(), isVolatile,
1546 /*TBAATag=*/0, TBAAStructTag);
Daniel Dunbar7482d122008-09-09 20:49:46 +00001547}
Sebastian Redl32cf1f22012-02-17 08:42:25 +00001548
Sebastian Redl972edf02012-02-19 16:03:09 +00001549void CodeGenFunction::MaybeEmitStdInitializerListCleanup(llvm::Value *loc,
1550 const Expr *init) {
Sebastian Redl32cf1f22012-02-17 08:42:25 +00001551 const ExprWithCleanups *cleanups = dyn_cast<ExprWithCleanups>(init);
Sebastian Redl972edf02012-02-19 16:03:09 +00001552 if (cleanups)
1553 init = cleanups->getSubExpr();
Sebastian Redl32cf1f22012-02-17 08:42:25 +00001554
1555 if (isa<InitListExpr>(init) &&
1556 cast<InitListExpr>(init)->initializesStdInitializerList()) {
1557 // We initialized this std::initializer_list with an initializer list.
1558 // A backing array was created. Push a cleanup for it.
Sebastian Redl972edf02012-02-19 16:03:09 +00001559 EmitStdInitializerListCleanup(loc, cast<InitListExpr>(init));
Sebastian Redl32cf1f22012-02-17 08:42:25 +00001560 }
1561}
1562
Sebastian Redlaf130fd2012-02-19 12:28:02 +00001563static void EmitRecursiveStdInitializerListCleanup(CodeGenFunction &CGF,
1564 llvm::Value *arrayStart,
1565 const InitListExpr *init) {
1566 // Check if there are any recursive cleanups to do, i.e. if we have
1567 // std::initializer_list<std::initializer_list<obj>> list = {{obj()}};
1568 // then we need to destroy the inner array as well.
1569 for (unsigned i = 0, e = init->getNumInits(); i != e; ++i) {
1570 const InitListExpr *subInit = dyn_cast<InitListExpr>(init->getInit(i));
1571 if (!subInit || !subInit->initializesStdInitializerList())
1572 continue;
1573
1574 // This one needs to be destroyed. Get the address of the std::init_list.
1575 llvm::Value *offset = llvm::ConstantInt::get(CGF.SizeTy, i);
1576 llvm::Value *loc = CGF.Builder.CreateInBoundsGEP(arrayStart, offset,
1577 "std.initlist");
1578 CGF.EmitStdInitializerListCleanup(loc, subInit);
1579 }
1580}
1581
1582void CodeGenFunction::EmitStdInitializerListCleanup(llvm::Value *loc,
Sebastian Redl32cf1f22012-02-17 08:42:25 +00001583 const InitListExpr *init) {
1584 ASTContext &ctx = getContext();
1585 QualType element = GetStdInitializerListElementType(init->getType());
1586 unsigned numInits = init->getNumInits();
1587 llvm::APInt size(ctx.getTypeSize(ctx.getSizeType()), numInits);
1588 QualType array =ctx.getConstantArrayType(element, size, ArrayType::Normal, 0);
1589 QualType arrayPtr = ctx.getPointerType(array);
1590 llvm::Type *arrayPtrType = ConvertType(arrayPtr);
1591
1592 // lvalue is the location of a std::initializer_list, which as its first
1593 // element has a pointer to the array we want to destroy.
Sebastian Redlaf130fd2012-02-19 12:28:02 +00001594 llvm::Value *startPointer = Builder.CreateStructGEP(loc, 0, "startPointer");
1595 llvm::Value *startAddress = Builder.CreateLoad(startPointer, "startAddress");
Sebastian Redl32cf1f22012-02-17 08:42:25 +00001596
Sebastian Redlaf130fd2012-02-19 12:28:02 +00001597 ::EmitRecursiveStdInitializerListCleanup(*this, startAddress, init);
1598
1599 llvm::Value *arrayAddress =
1600 Builder.CreateBitCast(startAddress, arrayPtrType, "arrayAddress");
Sebastian Redl32cf1f22012-02-17 08:42:25 +00001601 ::EmitStdInitializerListCleanup(*this, array, arrayAddress, init);
1602}