Chris Lattner | 566b6ce | 2007-08-24 02:22:53 +0000 | [diff] [blame] | 1 | //===--- CGExprAgg.cpp - Emit LLVM Code from Aggregate Expressions --------===// |
Chris Lattner | af6f528 | 2007-08-10 20:13:28 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 0bc735f | 2007-12-29 19:59:25 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Chris Lattner | af6f528 | 2007-08-10 20:13:28 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This contains code to emit Aggregate Expr nodes as LLVM code. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "CodeGenFunction.h" |
Chris Lattner | 883f6a7 | 2007-08-11 00:04:45 +0000 | [diff] [blame] | 15 | #include "CodeGenModule.h" |
Fariborz Jahanian | 082b02e | 2009-07-08 01:18:33 +0000 | [diff] [blame] | 16 | #include "CGObjCRuntime.h" |
Daniel Dunbar | de7fb84 | 2008-08-11 05:00:27 +0000 | [diff] [blame] | 17 | #include "clang/AST/ASTContext.h" |
Anders Carlsson | b14095a | 2009-04-17 00:06:03 +0000 | [diff] [blame] | 18 | #include "clang/AST/DeclCXX.h" |
Sebastian Redl | 32cf1f2 | 2012-02-17 08:42:25 +0000 | [diff] [blame] | 19 | #include "clang/AST/DeclTemplate.h" |
Daniel Dunbar | de7fb84 | 2008-08-11 05:00:27 +0000 | [diff] [blame] | 20 | #include "clang/AST/StmtVisitor.h" |
Chris Lattner | 883f6a7 | 2007-08-11 00:04:45 +0000 | [diff] [blame] | 21 | #include "llvm/Constants.h" |
| 22 | #include "llvm/Function.h" |
Devang Patel | 636c3d0 | 2007-10-26 17:44:44 +0000 | [diff] [blame] | 23 | #include "llvm/GlobalVariable.h" |
Chris Lattner | f81557c | 2008-04-04 18:42:16 +0000 | [diff] [blame] | 24 | #include "llvm/Intrinsics.h" |
Chris Lattner | af6f528 | 2007-08-10 20:13:28 +0000 | [diff] [blame] | 25 | using namespace clang; |
| 26 | using namespace CodeGen; |
Chris Lattner | 883f6a7 | 2007-08-11 00:04:45 +0000 | [diff] [blame] | 27 | |
Chris Lattner | 9c03356 | 2007-08-21 04:25:47 +0000 | [diff] [blame] | 28 | //===----------------------------------------------------------------------===// |
| 29 | // Aggregate Expression Emitter |
| 30 | //===----------------------------------------------------------------------===// |
| 31 | |
| 32 | namespace { |
Benjamin Kramer | 85b4521 | 2009-11-28 19:45:26 +0000 | [diff] [blame] | 33 | class AggExprEmitter : public StmtVisitor<AggExprEmitter> { |
Chris Lattner | 9c03356 | 2007-08-21 04:25:47 +0000 | [diff] [blame] | 34 | CodeGenFunction &CGF; |
Daniel Dunbar | 45d196b | 2008-11-01 01:53:16 +0000 | [diff] [blame] | 35 | CGBuilderTy &Builder; |
John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 36 | AggValueSlot Dest; |
Mike Stump | 49d1cd5 | 2009-05-26 22:03:21 +0000 | [diff] [blame] | 37 | bool IgnoreResult; |
John McCall | ef072fd | 2010-05-22 01:48:05 +0000 | [diff] [blame] | 38 | |
John McCall | 410ffb2 | 2011-08-25 23:04:34 +0000 | [diff] [blame] | 39 | /// We want to use 'dest' as the return slot except under two |
| 40 | /// conditions: |
| 41 | /// - The destination slot requires garbage collection, so we |
| 42 | /// need to use the GC API. |
| 43 | /// - The destination slot is potentially aliased. |
| 44 | bool shouldUseDestForReturnSlot() const { |
| 45 | return !(Dest.requiresGCollection() || Dest.isPotentiallyAliased()); |
| 46 | } |
| 47 | |
John McCall | ef072fd | 2010-05-22 01:48:05 +0000 | [diff] [blame] | 48 | ReturnValueSlot getReturnValueSlot() const { |
John McCall | 410ffb2 | 2011-08-25 23:04:34 +0000 | [diff] [blame] | 49 | if (!shouldUseDestForReturnSlot()) |
| 50 | return ReturnValueSlot(); |
John McCall | fa037bd | 2010-05-22 22:13:32 +0000 | [diff] [blame] | 51 | |
John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 52 | return ReturnValueSlot(Dest.getAddr(), Dest.isVolatile()); |
| 53 | } |
| 54 | |
| 55 | AggValueSlot EnsureSlot(QualType T) { |
| 56 | if (!Dest.isIgnored()) return Dest; |
| 57 | return CGF.CreateAggTemp(T, "agg.tmp.ensured"); |
John McCall | ef072fd | 2010-05-22 01:48:05 +0000 | [diff] [blame] | 58 | } |
John McCall | fa037bd | 2010-05-22 22:13:32 +0000 | [diff] [blame] | 59 | |
Chris Lattner | 9c03356 | 2007-08-21 04:25:47 +0000 | [diff] [blame] | 60 | public: |
John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 61 | AggExprEmitter(CodeGenFunction &cgf, AggValueSlot Dest, |
Fariborz Jahanian | 474e2fe | 2010-09-16 00:20:07 +0000 | [diff] [blame] | 62 | bool ignore) |
John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 63 | : CGF(cgf), Builder(CGF.Builder), Dest(Dest), |
Fariborz Jahanian | 474e2fe | 2010-09-16 00:20:07 +0000 | [diff] [blame] | 64 | IgnoreResult(ignore) { |
Chris Lattner | 9c03356 | 2007-08-21 04:25:47 +0000 | [diff] [blame] | 65 | } |
| 66 | |
Chris Lattner | ee755f9 | 2007-08-21 04:59:27 +0000 | [diff] [blame] | 67 | //===--------------------------------------------------------------------===// |
| 68 | // Utilities |
| 69 | //===--------------------------------------------------------------------===// |
| 70 | |
Chris Lattner | 9c03356 | 2007-08-21 04:25:47 +0000 | [diff] [blame] | 71 | /// EmitAggLoadOfLValue - Given an expression with aggregate type that |
| 72 | /// represents a value lvalue, this method emits the address of the lvalue, |
| 73 | /// then loads the result into DestPtr. |
| 74 | void EmitAggLoadOfLValue(const Expr *E); |
Eli Friedman | 922696f | 2008-05-19 17:51:16 +0000 | [diff] [blame] | 75 | |
Mike Stump | 4ac20dd | 2009-05-23 20:28:01 +0000 | [diff] [blame] | 76 | /// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired. |
Mike Stump | 49d1cd5 | 2009-05-26 22:03:21 +0000 | [diff] [blame] | 77 | void EmitFinalDestCopy(const Expr *E, LValue Src, bool Ignore = false); |
Eli Friedman | bd7d828 | 2011-12-05 22:23:28 +0000 | [diff] [blame] | 78 | void EmitFinalDestCopy(const Expr *E, RValue Src, bool Ignore = false, |
| 79 | unsigned Alignment = 0); |
Mike Stump | 4ac20dd | 2009-05-23 20:28:01 +0000 | [diff] [blame] | 80 | |
John McCall | 410ffb2 | 2011-08-25 23:04:34 +0000 | [diff] [blame] | 81 | void EmitMoveFromReturnSlot(const Expr *E, RValue Src); |
John McCall | fa037bd | 2010-05-22 22:13:32 +0000 | [diff] [blame] | 82 | |
Sebastian Redl | af130fd | 2012-02-19 12:28:02 +0000 | [diff] [blame] | 83 | void EmitStdInitializerList(llvm::Value *DestPtr, InitListExpr *InitList); |
Sebastian Redl | 32cf1f2 | 2012-02-17 08:42:25 +0000 | [diff] [blame] | 84 | void EmitArrayInit(llvm::Value *DestPtr, llvm::ArrayType *AType, |
| 85 | QualType elementType, InitListExpr *E); |
| 86 | |
John McCall | 7c2349b | 2011-08-25 20:40:09 +0000 | [diff] [blame] | 87 | AggValueSlot::NeedsGCBarriers_t needsGC(QualType T) { |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 88 | if (CGF.getLangOpts().getGC() && TypeRequiresGCollection(T)) |
John McCall | 7c2349b | 2011-08-25 20:40:09 +0000 | [diff] [blame] | 89 | return AggValueSlot::NeedsGCBarriers; |
| 90 | return AggValueSlot::DoesNotNeedGCBarriers; |
| 91 | } |
| 92 | |
John McCall | fa037bd | 2010-05-22 22:13:32 +0000 | [diff] [blame] | 93 | bool TypeRequiresGCollection(QualType T); |
| 94 | |
Chris Lattner | ee755f9 | 2007-08-21 04:59:27 +0000 | [diff] [blame] | 95 | //===--------------------------------------------------------------------===// |
| 96 | // Visitor Methods |
| 97 | //===--------------------------------------------------------------------===// |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 98 | |
Chris Lattner | 9c03356 | 2007-08-21 04:25:47 +0000 | [diff] [blame] | 99 | void VisitStmt(Stmt *S) { |
Daniel Dunbar | 488e993 | 2008-08-16 00:56:44 +0000 | [diff] [blame] | 100 | CGF.ErrorUnsupported(S, "aggregate expression"); |
Chris Lattner | 9c03356 | 2007-08-21 04:25:47 +0000 | [diff] [blame] | 101 | } |
| 102 | void VisitParenExpr(ParenExpr *PE) { Visit(PE->getSubExpr()); } |
Peter Collingbourne | f111d93 | 2011-04-15 00:35:48 +0000 | [diff] [blame] | 103 | void VisitGenericSelectionExpr(GenericSelectionExpr *GE) { |
| 104 | Visit(GE->getResultExpr()); |
| 105 | } |
Eli Friedman | 12444a2 | 2009-01-27 09:03:41 +0000 | [diff] [blame] | 106 | void VisitUnaryExtension(UnaryOperator *E) { Visit(E->getSubExpr()); } |
John McCall | 91a5755 | 2011-07-15 05:09:51 +0000 | [diff] [blame] | 107 | void VisitSubstNonTypeTemplateParmExpr(SubstNonTypeTemplateParmExpr *E) { |
| 108 | return Visit(E->getReplacement()); |
| 109 | } |
Chris Lattner | 9c03356 | 2007-08-21 04:25:47 +0000 | [diff] [blame] | 110 | |
| 111 | // l-values. |
John McCall | f4b88a4 | 2012-03-10 09:33:50 +0000 | [diff] [blame] | 112 | void VisitDeclRefExpr(DeclRefExpr *E) { |
John McCall | dd2ecee | 2012-03-10 03:05:10 +0000 | [diff] [blame] | 113 | // For aggregates, we should always be able to emit the variable |
| 114 | // as an l-value unless it's a reference. This is due to the fact |
| 115 | // that we can't actually ever see a normal l2r conversion on an |
| 116 | // aggregate in C++, and in C there's no language standard |
| 117 | // actively preventing us from listing variables in the captures |
| 118 | // list of a block. |
John McCall | f4b88a4 | 2012-03-10 09:33:50 +0000 | [diff] [blame] | 119 | if (E->getDecl()->getType()->isReferenceType()) { |
John McCall | dd2ecee | 2012-03-10 03:05:10 +0000 | [diff] [blame] | 120 | if (CodeGenFunction::ConstantEmission result |
John McCall | f4b88a4 | 2012-03-10 09:33:50 +0000 | [diff] [blame] | 121 | = CGF.tryEmitAsConstant(E)) { |
| 122 | EmitFinalDestCopy(E, result.getReferenceLValue(CGF, E)); |
John McCall | dd2ecee | 2012-03-10 03:05:10 +0000 | [diff] [blame] | 123 | return; |
| 124 | } |
| 125 | } |
| 126 | |
John McCall | f4b88a4 | 2012-03-10 09:33:50 +0000 | [diff] [blame] | 127 | EmitAggLoadOfLValue(E); |
John McCall | dd2ecee | 2012-03-10 03:05:10 +0000 | [diff] [blame] | 128 | } |
| 129 | |
Seo Sanghyeon | 9b73b39 | 2007-12-14 02:04:12 +0000 | [diff] [blame] | 130 | void VisitMemberExpr(MemberExpr *ME) { EmitAggLoadOfLValue(ME); } |
| 131 | void VisitUnaryDeref(UnaryOperator *E) { EmitAggLoadOfLValue(E); } |
Daniel Dunbar | 5be028f | 2010-01-04 18:47:06 +0000 | [diff] [blame] | 132 | void VisitStringLiteral(StringLiteral *E) { EmitAggLoadOfLValue(E); } |
Douglas Gregor | 751ec9b | 2011-06-17 04:59:12 +0000 | [diff] [blame] | 133 | void VisitCompoundLiteralExpr(CompoundLiteralExpr *E); |
Seo Sanghyeon | 9b73b39 | 2007-12-14 02:04:12 +0000 | [diff] [blame] | 134 | void VisitArraySubscriptExpr(ArraySubscriptExpr *E) { |
| 135 | EmitAggLoadOfLValue(E); |
| 136 | } |
Chris Lattner | f0a990c | 2009-04-21 23:00:09 +0000 | [diff] [blame] | 137 | void VisitPredefinedExpr(const PredefinedExpr *E) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 138 | EmitAggLoadOfLValue(E); |
Chris Lattner | f0a990c | 2009-04-21 23:00:09 +0000 | [diff] [blame] | 139 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 140 | |
Chris Lattner | 9c03356 | 2007-08-21 04:25:47 +0000 | [diff] [blame] | 141 | // Operators. |
Anders Carlsson | 4d8673b | 2009-08-07 23:22:37 +0000 | [diff] [blame] | 142 | void VisitCastExpr(CastExpr *E); |
Anders Carlsson | 148fe67 | 2007-10-31 22:04:46 +0000 | [diff] [blame] | 143 | void VisitCallExpr(const CallExpr *E); |
Chris Lattner | b2d963f | 2007-08-31 22:54:14 +0000 | [diff] [blame] | 144 | void VisitStmtExpr(const StmtExpr *E); |
Chris Lattner | 9c03356 | 2007-08-21 04:25:47 +0000 | [diff] [blame] | 145 | void VisitBinaryOperator(const BinaryOperator *BO); |
Fariborz Jahanian | 8bfd31f | 2009-10-22 22:57:31 +0000 | [diff] [blame] | 146 | void VisitPointerToDataMemberBinaryOperator(const BinaryOperator *BO); |
Chris Lattner | 03d6fb9 | 2007-08-21 04:43:17 +0000 | [diff] [blame] | 147 | void VisitBinAssign(const BinaryOperator *E); |
Eli Friedman | 07fa52a | 2008-05-20 07:56:31 +0000 | [diff] [blame] | 148 | void VisitBinComma(const BinaryOperator *E); |
Chris Lattner | 9c03356 | 2007-08-21 04:25:47 +0000 | [diff] [blame] | 149 | |
Chris Lattner | 8fdf328 | 2008-06-24 17:04:18 +0000 | [diff] [blame] | 150 | void VisitObjCMessageExpr(ObjCMessageExpr *E); |
Daniel Dunbar | 0a04d77 | 2008-08-23 10:51:21 +0000 | [diff] [blame] | 151 | void VisitObjCIvarRefExpr(ObjCIvarRefExpr *E) { |
| 152 | EmitAggLoadOfLValue(E); |
| 153 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 154 | |
John McCall | 56ca35d | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 155 | void VisitAbstractConditionalOperator(const AbstractConditionalOperator *CO); |
Anders Carlsson | a294ca8 | 2009-07-08 18:33:14 +0000 | [diff] [blame] | 156 | void VisitChooseExpr(const ChooseExpr *CE); |
Devang Patel | 636c3d0 | 2007-10-26 17:44:44 +0000 | [diff] [blame] | 157 | void VisitInitListExpr(InitListExpr *E); |
Anders Carlsson | 30311fa | 2009-12-16 06:57:54 +0000 | [diff] [blame] | 158 | void VisitImplicitValueInitExpr(ImplicitValueInitExpr *E); |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 159 | void VisitCXXDefaultArgExpr(CXXDefaultArgExpr *DAE) { |
| 160 | Visit(DAE->getExpr()); |
| 161 | } |
Anders Carlsson | b58d017 | 2009-05-30 23:23:33 +0000 | [diff] [blame] | 162 | void VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E); |
Anders Carlsson | 31ccf37 | 2009-05-03 17:47:16 +0000 | [diff] [blame] | 163 | void VisitCXXConstructExpr(const CXXConstructExpr *E); |
Eli Friedman | 4c5d8af | 2012-02-09 03:32:31 +0000 | [diff] [blame] | 164 | void VisitLambdaExpr(LambdaExpr *E); |
John McCall | 4765fa0 | 2010-12-06 08:20:24 +0000 | [diff] [blame] | 165 | void VisitExprWithCleanups(ExprWithCleanups *E); |
Douglas Gregor | ed8abf1 | 2010-07-08 06:14:04 +0000 | [diff] [blame] | 166 | void VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *E); |
Mike Stump | 2710c41 | 2009-11-18 00:40:12 +0000 | [diff] [blame] | 167 | void VisitCXXTypeidExpr(CXXTypeidExpr *E) { EmitAggLoadOfLValue(E); } |
Douglas Gregor | 03e8003 | 2011-06-21 17:03:29 +0000 | [diff] [blame] | 168 | void VisitMaterializeTemporaryExpr(MaterializeTemporaryExpr *E); |
John McCall | e996ffd | 2011-02-16 08:02:54 +0000 | [diff] [blame] | 169 | void VisitOpaqueValueExpr(OpaqueValueExpr *E); |
| 170 | |
John McCall | 4b9c2d2 | 2011-11-06 09:01:30 +0000 | [diff] [blame] | 171 | void VisitPseudoObjectExpr(PseudoObjectExpr *E) { |
| 172 | if (E->isGLValue()) { |
| 173 | LValue LV = CGF.EmitPseudoObjectLValue(E); |
| 174 | return EmitFinalDestCopy(E, LV); |
| 175 | } |
| 176 | |
| 177 | CGF.EmitPseudoObjectRValue(E, EnsureSlot(E->getType())); |
| 178 | } |
| 179 | |
Eli Friedman | b185124 | 2008-05-27 15:51:49 +0000 | [diff] [blame] | 180 | void VisitVAArgExpr(VAArgExpr *E); |
Chris Lattner | f81557c | 2008-04-04 18:42:16 +0000 | [diff] [blame] | 181 | |
John McCall | 57cd1b8 | 2012-03-28 23:30:44 +0000 | [diff] [blame^] | 182 | void EmitInitializationToLValue(Expr *E, LValue Address, |
| 183 | AggValueSlot::IsCompleteObject_t isCompleteObject); |
John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 184 | void EmitNullInitializationToLValue(LValue Address); |
Chris Lattner | 9c03356 | 2007-08-21 04:25:47 +0000 | [diff] [blame] | 185 | // case Expr::ChooseExprClass: |
Mike Stump | 39406b1 | 2009-12-09 19:24:08 +0000 | [diff] [blame] | 186 | void VisitCXXThrowExpr(const CXXThrowExpr *E) { CGF.EmitCXXThrowExpr(E); } |
Eli Friedman | 276b061 | 2011-10-11 02:20:01 +0000 | [diff] [blame] | 187 | void VisitAtomicExpr(AtomicExpr *E) { |
| 188 | CGF.EmitAtomicExpr(E, EnsureSlot(E->getType()).getAddr()); |
| 189 | } |
Chris Lattner | 9c03356 | 2007-08-21 04:25:47 +0000 | [diff] [blame] | 190 | }; |
| 191 | } // end anonymous namespace. |
| 192 | |
Chris Lattner | ee755f9 | 2007-08-21 04:59:27 +0000 | [diff] [blame] | 193 | //===----------------------------------------------------------------------===// |
| 194 | // Utilities |
| 195 | //===----------------------------------------------------------------------===// |
Chris Lattner | 9c03356 | 2007-08-21 04:25:47 +0000 | [diff] [blame] | 196 | |
Chris Lattner | 883f6a7 | 2007-08-11 00:04:45 +0000 | [diff] [blame] | 197 | /// EmitAggLoadOfLValue - Given an expression with aggregate type that |
| 198 | /// represents a value lvalue, this method emits the address of the lvalue, |
| 199 | /// then loads the result into DestPtr. |
Chris Lattner | 9c03356 | 2007-08-21 04:25:47 +0000 | [diff] [blame] | 200 | void AggExprEmitter::EmitAggLoadOfLValue(const Expr *E) { |
| 201 | LValue LV = CGF.EmitLValue(E); |
Mike Stump | 4ac20dd | 2009-05-23 20:28:01 +0000 | [diff] [blame] | 202 | EmitFinalDestCopy(E, LV); |
| 203 | } |
| 204 | |
John McCall | fa037bd | 2010-05-22 22:13:32 +0000 | [diff] [blame] | 205 | /// \brief True if the given aggregate type requires special GC API calls. |
| 206 | bool AggExprEmitter::TypeRequiresGCollection(QualType T) { |
| 207 | // Only record types have members that might require garbage collection. |
| 208 | const RecordType *RecordTy = T->getAs<RecordType>(); |
| 209 | if (!RecordTy) return false; |
| 210 | |
| 211 | // Don't mess with non-trivial C++ types. |
| 212 | RecordDecl *Record = RecordTy->getDecl(); |
| 213 | if (isa<CXXRecordDecl>(Record) && |
| 214 | (!cast<CXXRecordDecl>(Record)->hasTrivialCopyConstructor() || |
| 215 | !cast<CXXRecordDecl>(Record)->hasTrivialDestructor())) |
| 216 | return false; |
| 217 | |
| 218 | // Check whether the type has an object member. |
| 219 | return Record->hasObjectMember(); |
| 220 | } |
| 221 | |
John McCall | 410ffb2 | 2011-08-25 23:04:34 +0000 | [diff] [blame] | 222 | /// \brief Perform the final move to DestPtr if for some reason |
| 223 | /// getReturnValueSlot() didn't use it directly. |
John McCall | fa037bd | 2010-05-22 22:13:32 +0000 | [diff] [blame] | 224 | /// |
| 225 | /// The idea is that you do something like this: |
| 226 | /// RValue Result = EmitSomething(..., getReturnValueSlot()); |
John McCall | 410ffb2 | 2011-08-25 23:04:34 +0000 | [diff] [blame] | 227 | /// EmitMoveFromReturnSlot(E, Result); |
| 228 | /// |
| 229 | /// If nothing interferes, this will cause the result to be emitted |
| 230 | /// directly into the return value slot. Otherwise, a final move |
| 231 | /// will be performed. |
| 232 | void AggExprEmitter::EmitMoveFromReturnSlot(const Expr *E, RValue Src) { |
| 233 | if (shouldUseDestForReturnSlot()) { |
| 234 | // Logically, Dest.getAddr() should equal Src.getAggregateAddr(). |
| 235 | // The possibility of undef rvalues complicates that a lot, |
| 236 | // though, so we can't really assert. |
| 237 | return; |
Fariborz Jahanian | 55bcace | 2010-06-15 22:44:06 +0000 | [diff] [blame] | 238 | } |
John McCall | 410ffb2 | 2011-08-25 23:04:34 +0000 | [diff] [blame] | 239 | |
| 240 | // Otherwise, do a final copy, |
| 241 | assert(Dest.getAddr() != Src.getAggregateAddr()); |
| 242 | EmitFinalDestCopy(E, Src, /*Ignore*/ true); |
John McCall | fa037bd | 2010-05-22 22:13:32 +0000 | [diff] [blame] | 243 | } |
| 244 | |
Mike Stump | 4ac20dd | 2009-05-23 20:28:01 +0000 | [diff] [blame] | 245 | /// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired. |
Eli Friedman | bd7d828 | 2011-12-05 22:23:28 +0000 | [diff] [blame] | 246 | void AggExprEmitter::EmitFinalDestCopy(const Expr *E, RValue Src, bool Ignore, |
| 247 | unsigned Alignment) { |
Mike Stump | 4ac20dd | 2009-05-23 20:28:01 +0000 | [diff] [blame] | 248 | assert(Src.isAggregate() && "value must be aggregate value!"); |
| 249 | |
John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 250 | // If Dest is ignored, then we're evaluating an aggregate expression |
John McCall | a8f28da | 2010-08-25 02:50:31 +0000 | [diff] [blame] | 251 | // in a context (like an expression statement) that doesn't care |
| 252 | // about the result. C says that an lvalue-to-rvalue conversion is |
| 253 | // performed in these cases; C++ says that it is not. In either |
| 254 | // case, we don't actually need to do anything unless the value is |
| 255 | // volatile. |
John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 256 | if (Dest.isIgnored()) { |
John McCall | a8f28da | 2010-08-25 02:50:31 +0000 | [diff] [blame] | 257 | if (!Src.isVolatileQualified() || |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 258 | CGF.CGM.getLangOpts().CPlusPlus || |
John McCall | a8f28da | 2010-08-25 02:50:31 +0000 | [diff] [blame] | 259 | (IgnoreResult && Ignore)) |
Mike Stump | 9ccb103 | 2009-05-23 22:01:27 +0000 | [diff] [blame] | 260 | return; |
Fariborz Jahanian | 8a97005 | 2010-10-22 22:05:03 +0000 | [diff] [blame] | 261 | |
Mike Stump | 49d1cd5 | 2009-05-26 22:03:21 +0000 | [diff] [blame] | 262 | // If the source is volatile, we must read from it; to do that, we need |
| 263 | // some place to put it. |
John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 264 | Dest = CGF.CreateAggTemp(E->getType(), "agg.tmp"); |
Mike Stump | 9ccb103 | 2009-05-23 22:01:27 +0000 | [diff] [blame] | 265 | } |
Chris Lattner | 883f6a7 | 2007-08-11 00:04:45 +0000 | [diff] [blame] | 266 | |
John McCall | d1a5f13 | 2010-09-16 03:13:23 +0000 | [diff] [blame] | 267 | if (Dest.requiresGCollection()) { |
Ken Dyck | 479b61c | 2011-04-24 17:08:00 +0000 | [diff] [blame] | 268 | CharUnits size = CGF.getContext().getTypeSizeInChars(E->getType()); |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 269 | llvm::Type *SizeTy = CGF.ConvertType(CGF.getContext().getSizeType()); |
Ken Dyck | 479b61c | 2011-04-24 17:08:00 +0000 | [diff] [blame] | 270 | llvm::Value *SizeVal = llvm::ConstantInt::get(SizeTy, size.getQuantity()); |
Fariborz Jahanian | 08c3213 | 2009-08-31 19:33:16 +0000 | [diff] [blame] | 271 | CGF.CGM.getObjCRuntime().EmitGCMemmoveCollectable(CGF, |
John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 272 | Dest.getAddr(), |
| 273 | Src.getAggregateAddr(), |
| 274 | SizeVal); |
Fariborz Jahanian | 08c3213 | 2009-08-31 19:33:16 +0000 | [diff] [blame] | 275 | return; |
| 276 | } |
Mike Stump | 4ac20dd | 2009-05-23 20:28:01 +0000 | [diff] [blame] | 277 | // If the result of the assignment is used, copy the LHS there also. |
| 278 | // FIXME: Pass VolatileDest as well. I think we also need to merge volatile |
| 279 | // from the source as well, as we can't eliminate it if either operand |
| 280 | // is volatile, unless copy has volatile for both source and destination.. |
John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 281 | CGF.EmitAggregateCopy(Dest.getAddr(), Src.getAggregateAddr(), E->getType(), |
Eli Friedman | bd7d828 | 2011-12-05 22:23:28 +0000 | [diff] [blame] | 282 | Dest.isVolatile()|Src.isVolatileQualified(), |
John McCall | 57cd1b8 | 2012-03-28 23:30:44 +0000 | [diff] [blame^] | 283 | Alignment, Dest.isCompleteObject()); |
Mike Stump | 4ac20dd | 2009-05-23 20:28:01 +0000 | [diff] [blame] | 284 | } |
| 285 | |
| 286 | /// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired. |
Mike Stump | 49d1cd5 | 2009-05-26 22:03:21 +0000 | [diff] [blame] | 287 | void AggExprEmitter::EmitFinalDestCopy(const Expr *E, LValue Src, bool Ignore) { |
Mike Stump | 4ac20dd | 2009-05-23 20:28:01 +0000 | [diff] [blame] | 288 | assert(Src.isSimple() && "Can't have aggregate bitfield, vector, etc"); |
| 289 | |
Eli Friedman | bd7d828 | 2011-12-05 22:23:28 +0000 | [diff] [blame] | 290 | CharUnits Alignment = std::min(Src.getAlignment(), Dest.getAlignment()); |
| 291 | EmitFinalDestCopy(E, Src.asAggregateRValue(), Ignore, Alignment.getQuantity()); |
Chris Lattner | 883f6a7 | 2007-08-11 00:04:45 +0000 | [diff] [blame] | 292 | } |
| 293 | |
Sebastian Redl | 32cf1f2 | 2012-02-17 08:42:25 +0000 | [diff] [blame] | 294 | static QualType GetStdInitializerListElementType(QualType T) { |
| 295 | // Just assume that this is really std::initializer_list. |
| 296 | ClassTemplateSpecializationDecl *specialization = |
| 297 | cast<ClassTemplateSpecializationDecl>(T->castAs<RecordType>()->getDecl()); |
| 298 | return specialization->getTemplateArgs()[0].getAsType(); |
| 299 | } |
| 300 | |
| 301 | /// \brief Prepare cleanup for the temporary array. |
| 302 | static void EmitStdInitializerListCleanup(CodeGenFunction &CGF, |
| 303 | QualType arrayType, |
| 304 | llvm::Value *addr, |
| 305 | const InitListExpr *initList) { |
| 306 | QualType::DestructionKind dtorKind = arrayType.isDestructedType(); |
| 307 | if (!dtorKind) |
| 308 | return; // Type doesn't need destroying. |
| 309 | if (dtorKind != QualType::DK_cxx_destructor) { |
| 310 | CGF.ErrorUnsupported(initList, "ObjC ARC type in initializer_list"); |
| 311 | return; |
| 312 | } |
| 313 | |
| 314 | CodeGenFunction::Destroyer *destroyer = CGF.getDestroyer(dtorKind); |
| 315 | CGF.pushDestroy(NormalAndEHCleanup, addr, arrayType, destroyer, |
| 316 | /*EHCleanup=*/true); |
| 317 | } |
| 318 | |
| 319 | /// \brief Emit the initializer for a std::initializer_list initialized with a |
| 320 | /// real initializer list. |
Sebastian Redl | af130fd | 2012-02-19 12:28:02 +0000 | [diff] [blame] | 321 | void AggExprEmitter::EmitStdInitializerList(llvm::Value *destPtr, |
| 322 | InitListExpr *initList) { |
Sebastian Redl | 32cf1f2 | 2012-02-17 08:42:25 +0000 | [diff] [blame] | 323 | // We emit an array containing the elements, then have the init list point |
| 324 | // at the array. |
| 325 | ASTContext &ctx = CGF.getContext(); |
| 326 | unsigned numInits = initList->getNumInits(); |
| 327 | QualType element = GetStdInitializerListElementType(initList->getType()); |
| 328 | llvm::APInt size(ctx.getTypeSize(ctx.getSizeType()), numInits); |
| 329 | QualType array = ctx.getConstantArrayType(element, size, ArrayType::Normal,0); |
| 330 | llvm::Type *LTy = CGF.ConvertTypeForMem(array); |
| 331 | llvm::AllocaInst *alloc = CGF.CreateTempAlloca(LTy); |
| 332 | alloc->setAlignment(ctx.getTypeAlignInChars(array).getQuantity()); |
| 333 | alloc->setName(".initlist."); |
| 334 | |
| 335 | EmitArrayInit(alloc, cast<llvm::ArrayType>(LTy), element, initList); |
| 336 | |
| 337 | // FIXME: The diagnostics are somewhat out of place here. |
| 338 | RecordDecl *record = initList->getType()->castAs<RecordType>()->getDecl(); |
| 339 | RecordDecl::field_iterator field = record->field_begin(); |
| 340 | if (field == record->field_end()) { |
| 341 | CGF.ErrorUnsupported(initList, "weird std::initializer_list"); |
Sebastian Redl | babcf9d | 2012-02-25 20:51:13 +0000 | [diff] [blame] | 342 | return; |
Sebastian Redl | 32cf1f2 | 2012-02-17 08:42:25 +0000 | [diff] [blame] | 343 | } |
| 344 | |
| 345 | QualType elementPtr = ctx.getPointerType(element.withConst()); |
Sebastian Redl | 32cf1f2 | 2012-02-17 08:42:25 +0000 | [diff] [blame] | 346 | |
| 347 | // Start pointer. |
| 348 | if (!ctx.hasSameType(field->getType(), elementPtr)) { |
| 349 | CGF.ErrorUnsupported(initList, "weird std::initializer_list"); |
Sebastian Redl | babcf9d | 2012-02-25 20:51:13 +0000 | [diff] [blame] | 350 | return; |
Sebastian Redl | 32cf1f2 | 2012-02-17 08:42:25 +0000 | [diff] [blame] | 351 | } |
| 352 | LValue start = CGF.EmitLValueForFieldInitialization(destPtr, *field, 0); |
| 353 | llvm::Value *arrayStart = Builder.CreateStructGEP(alloc, 0, "arraystart"); |
| 354 | CGF.EmitStoreThroughLValue(RValue::get(arrayStart), start); |
| 355 | ++field; |
| 356 | |
| 357 | if (field == record->field_end()) { |
| 358 | CGF.ErrorUnsupported(initList, "weird std::initializer_list"); |
Sebastian Redl | babcf9d | 2012-02-25 20:51:13 +0000 | [diff] [blame] | 359 | return; |
Sebastian Redl | 32cf1f2 | 2012-02-17 08:42:25 +0000 | [diff] [blame] | 360 | } |
| 361 | LValue endOrLength = CGF.EmitLValueForFieldInitialization(destPtr, *field, 0); |
| 362 | if (ctx.hasSameType(field->getType(), elementPtr)) { |
| 363 | // End pointer. |
| 364 | llvm::Value *arrayEnd = Builder.CreateStructGEP(alloc,numInits, "arrayend"); |
| 365 | CGF.EmitStoreThroughLValue(RValue::get(arrayEnd), endOrLength); |
| 366 | } else if(ctx.hasSameType(field->getType(), ctx.getSizeType())) { |
| 367 | // Length. |
| 368 | CGF.EmitStoreThroughLValue(RValue::get(Builder.getInt(size)), endOrLength); |
| 369 | } else { |
| 370 | CGF.ErrorUnsupported(initList, "weird std::initializer_list"); |
Sebastian Redl | babcf9d | 2012-02-25 20:51:13 +0000 | [diff] [blame] | 371 | return; |
Sebastian Redl | 32cf1f2 | 2012-02-17 08:42:25 +0000 | [diff] [blame] | 372 | } |
| 373 | |
| 374 | if (!Dest.isExternallyDestructed()) |
| 375 | EmitStdInitializerListCleanup(CGF, array, alloc, initList); |
| 376 | } |
| 377 | |
| 378 | /// \brief Emit initialization of an array from an initializer list. |
| 379 | void AggExprEmitter::EmitArrayInit(llvm::Value *DestPtr, llvm::ArrayType *AType, |
| 380 | QualType elementType, InitListExpr *E) { |
| 381 | uint64_t NumInitElements = E->getNumInits(); |
| 382 | |
| 383 | uint64_t NumArrayElements = AType->getNumElements(); |
| 384 | assert(NumInitElements <= NumArrayElements); |
| 385 | |
| 386 | // DestPtr is an array*. Construct an elementType* by drilling |
| 387 | // down a level. |
| 388 | llvm::Value *zero = llvm::ConstantInt::get(CGF.SizeTy, 0); |
| 389 | llvm::Value *indices[] = { zero, zero }; |
| 390 | llvm::Value *begin = |
| 391 | Builder.CreateInBoundsGEP(DestPtr, indices, "arrayinit.begin"); |
| 392 | |
| 393 | // Exception safety requires us to destroy all the |
| 394 | // already-constructed members if an initializer throws. |
| 395 | // For that, we'll need an EH cleanup. |
| 396 | QualType::DestructionKind dtorKind = elementType.isDestructedType(); |
| 397 | llvm::AllocaInst *endOfInit = 0; |
| 398 | EHScopeStack::stable_iterator cleanup; |
| 399 | llvm::Instruction *cleanupDominator = 0; |
| 400 | if (CGF.needsEHCleanup(dtorKind)) { |
| 401 | // In principle we could tell the cleanup where we are more |
| 402 | // directly, but the control flow can get so varied here that it |
| 403 | // would actually be quite complex. Therefore we go through an |
| 404 | // alloca. |
| 405 | endOfInit = CGF.CreateTempAlloca(begin->getType(), |
| 406 | "arrayinit.endOfInit"); |
| 407 | cleanupDominator = Builder.CreateStore(begin, endOfInit); |
| 408 | CGF.pushIrregularPartialArrayCleanup(begin, endOfInit, elementType, |
| 409 | CGF.getDestroyer(dtorKind)); |
| 410 | cleanup = CGF.EHStack.stable_begin(); |
| 411 | |
| 412 | // Otherwise, remember that we didn't need a cleanup. |
| 413 | } else { |
| 414 | dtorKind = QualType::DK_none; |
| 415 | } |
| 416 | |
| 417 | llvm::Value *one = llvm::ConstantInt::get(CGF.SizeTy, 1); |
| 418 | |
| 419 | // The 'current element to initialize'. The invariants on this |
| 420 | // variable are complicated. Essentially, after each iteration of |
| 421 | // the loop, it points to the last initialized element, except |
| 422 | // that it points to the beginning of the array before any |
| 423 | // elements have been initialized. |
| 424 | llvm::Value *element = begin; |
| 425 | |
| 426 | // Emit the explicit initializers. |
| 427 | for (uint64_t i = 0; i != NumInitElements; ++i) { |
| 428 | // Advance to the next element. |
| 429 | if (i > 0) { |
| 430 | element = Builder.CreateInBoundsGEP(element, one, "arrayinit.element"); |
| 431 | |
| 432 | // Tell the cleanup that it needs to destroy up to this |
| 433 | // element. TODO: some of these stores can be trivially |
| 434 | // observed to be unnecessary. |
| 435 | if (endOfInit) Builder.CreateStore(element, endOfInit); |
| 436 | } |
| 437 | |
Sebastian Redl | af130fd | 2012-02-19 12:28:02 +0000 | [diff] [blame] | 438 | // If these are nested std::initializer_list inits, do them directly, |
| 439 | // because they are conceptually the same "location". |
| 440 | InitListExpr *initList = dyn_cast<InitListExpr>(E->getInit(i)); |
| 441 | if (initList && initList->initializesStdInitializerList()) { |
| 442 | EmitStdInitializerList(element, initList); |
| 443 | } else { |
| 444 | LValue elementLV = CGF.MakeAddrLValue(element, elementType); |
John McCall | 57cd1b8 | 2012-03-28 23:30:44 +0000 | [diff] [blame^] | 445 | EmitInitializationToLValue(E->getInit(i), elementLV, |
| 446 | AggValueSlot::IsCompleteObject); |
Sebastian Redl | af130fd | 2012-02-19 12:28:02 +0000 | [diff] [blame] | 447 | } |
Sebastian Redl | 32cf1f2 | 2012-02-17 08:42:25 +0000 | [diff] [blame] | 448 | } |
| 449 | |
| 450 | // Check whether there's a non-trivial array-fill expression. |
| 451 | // Note that this will be a CXXConstructExpr even if the element |
| 452 | // type is an array (or array of array, etc.) of class type. |
| 453 | Expr *filler = E->getArrayFiller(); |
| 454 | bool hasTrivialFiller = true; |
| 455 | if (CXXConstructExpr *cons = dyn_cast_or_null<CXXConstructExpr>(filler)) { |
| 456 | assert(cons->getConstructor()->isDefaultConstructor()); |
| 457 | hasTrivialFiller = cons->getConstructor()->isTrivial(); |
| 458 | } |
| 459 | |
| 460 | // Any remaining elements need to be zero-initialized, possibly |
| 461 | // using the filler expression. We can skip this if the we're |
| 462 | // emitting to zeroed memory. |
| 463 | if (NumInitElements != NumArrayElements && |
| 464 | !(Dest.isZeroed() && hasTrivialFiller && |
| 465 | CGF.getTypes().isZeroInitializable(elementType))) { |
| 466 | |
| 467 | // Use an actual loop. This is basically |
| 468 | // do { *array++ = filler; } while (array != end); |
| 469 | |
| 470 | // Advance to the start of the rest of the array. |
| 471 | if (NumInitElements) { |
| 472 | element = Builder.CreateInBoundsGEP(element, one, "arrayinit.start"); |
| 473 | if (endOfInit) Builder.CreateStore(element, endOfInit); |
| 474 | } |
| 475 | |
| 476 | // Compute the end of the array. |
| 477 | llvm::Value *end = Builder.CreateInBoundsGEP(begin, |
| 478 | llvm::ConstantInt::get(CGF.SizeTy, NumArrayElements), |
| 479 | "arrayinit.end"); |
| 480 | |
| 481 | llvm::BasicBlock *entryBB = Builder.GetInsertBlock(); |
| 482 | llvm::BasicBlock *bodyBB = CGF.createBasicBlock("arrayinit.body"); |
| 483 | |
| 484 | // Jump into the body. |
| 485 | CGF.EmitBlock(bodyBB); |
| 486 | llvm::PHINode *currentElement = |
| 487 | Builder.CreatePHI(element->getType(), 2, "arrayinit.cur"); |
| 488 | currentElement->addIncoming(element, entryBB); |
| 489 | |
| 490 | // Emit the actual filler expression. |
| 491 | LValue elementLV = CGF.MakeAddrLValue(currentElement, elementType); |
| 492 | if (filler) |
John McCall | 57cd1b8 | 2012-03-28 23:30:44 +0000 | [diff] [blame^] | 493 | EmitInitializationToLValue(filler, elementLV, |
| 494 | AggValueSlot::IsCompleteObject); |
Sebastian Redl | 32cf1f2 | 2012-02-17 08:42:25 +0000 | [diff] [blame] | 495 | else |
| 496 | EmitNullInitializationToLValue(elementLV); |
| 497 | |
| 498 | // Move on to the next element. |
| 499 | llvm::Value *nextElement = |
| 500 | Builder.CreateInBoundsGEP(currentElement, one, "arrayinit.next"); |
| 501 | |
| 502 | // Tell the EH cleanup that we finished with the last element. |
| 503 | if (endOfInit) Builder.CreateStore(nextElement, endOfInit); |
| 504 | |
| 505 | // Leave the loop if we're done. |
| 506 | llvm::Value *done = Builder.CreateICmpEQ(nextElement, end, |
| 507 | "arrayinit.done"); |
| 508 | llvm::BasicBlock *endBB = CGF.createBasicBlock("arrayinit.end"); |
| 509 | Builder.CreateCondBr(done, endBB, bodyBB); |
| 510 | currentElement->addIncoming(nextElement, Builder.GetInsertBlock()); |
| 511 | |
| 512 | CGF.EmitBlock(endBB); |
| 513 | } |
| 514 | |
| 515 | // Leave the partial-array cleanup if we entered one. |
| 516 | if (dtorKind) CGF.DeactivateCleanupBlock(cleanup, cleanupDominator); |
| 517 | } |
| 518 | |
Chris Lattner | ee755f9 | 2007-08-21 04:59:27 +0000 | [diff] [blame] | 519 | //===----------------------------------------------------------------------===// |
| 520 | // Visitor Methods |
| 521 | //===----------------------------------------------------------------------===// |
| 522 | |
Douglas Gregor | 03e8003 | 2011-06-21 17:03:29 +0000 | [diff] [blame] | 523 | void AggExprEmitter::VisitMaterializeTemporaryExpr(MaterializeTemporaryExpr *E){ |
| 524 | Visit(E->GetTemporaryExpr()); |
| 525 | } |
| 526 | |
John McCall | e996ffd | 2011-02-16 08:02:54 +0000 | [diff] [blame] | 527 | void AggExprEmitter::VisitOpaqueValueExpr(OpaqueValueExpr *e) { |
John McCall | 56ca35d | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 528 | EmitFinalDestCopy(e, CGF.getOpaqueLValueMapping(e)); |
John McCall | e996ffd | 2011-02-16 08:02:54 +0000 | [diff] [blame] | 529 | } |
| 530 | |
Douglas Gregor | 751ec9b | 2011-06-17 04:59:12 +0000 | [diff] [blame] | 531 | void |
| 532 | AggExprEmitter::VisitCompoundLiteralExpr(CompoundLiteralExpr *E) { |
Douglas Gregor | 673e98b | 2011-06-17 16:37:20 +0000 | [diff] [blame] | 533 | if (E->getType().isPODType(CGF.getContext())) { |
| 534 | // For a POD type, just emit a load of the lvalue + a copy, because our |
| 535 | // compound literal might alias the destination. |
| 536 | // FIXME: This is a band-aid; the real problem appears to be in our handling |
| 537 | // of assignments, where we store directly into the LHS without checking |
| 538 | // whether anything in the RHS aliases. |
| 539 | EmitAggLoadOfLValue(E); |
| 540 | return; |
| 541 | } |
| 542 | |
Douglas Gregor | 751ec9b | 2011-06-17 04:59:12 +0000 | [diff] [blame] | 543 | AggValueSlot Slot = EnsureSlot(E->getType()); |
| 544 | CGF.EmitAggExpr(E->getInitializer(), Slot); |
| 545 | } |
| 546 | |
| 547 | |
Anders Carlsson | 4d8673b | 2009-08-07 23:22:37 +0000 | [diff] [blame] | 548 | void AggExprEmitter::VisitCastExpr(CastExpr *E) { |
Anders Carlsson | 3016842 | 2009-09-29 01:23:39 +0000 | [diff] [blame] | 549 | switch (E->getCastKind()) { |
Anders Carlsson | 575b374 | 2011-04-11 02:03:26 +0000 | [diff] [blame] | 550 | case CK_Dynamic: { |
Douglas Gregor | 69cfeb1 | 2010-05-14 21:31:02 +0000 | [diff] [blame] | 551 | assert(isa<CXXDynamicCastExpr>(E) && "CK_Dynamic without a dynamic_cast?"); |
| 552 | LValue LV = CGF.EmitCheckedLValue(E->getSubExpr()); |
| 553 | // FIXME: Do we also need to handle property references here? |
| 554 | if (LV.isSimple()) |
| 555 | CGF.EmitDynamicCast(LV.getAddress(), cast<CXXDynamicCastExpr>(E)); |
| 556 | else |
| 557 | CGF.CGM.ErrorUnsupported(E, "non-simple lvalue dynamic_cast"); |
| 558 | |
John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 559 | if (!Dest.isIgnored()) |
| 560 | CGF.CGM.ErrorUnsupported(E, "lvalue dynamic_cast with a destination"); |
Douglas Gregor | 69cfeb1 | 2010-05-14 21:31:02 +0000 | [diff] [blame] | 561 | break; |
| 562 | } |
| 563 | |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 564 | case CK_ToUnion: { |
John McCall | 6591271 | 2011-04-12 22:02:02 +0000 | [diff] [blame] | 565 | if (Dest.isIgnored()) break; |
| 566 | |
Anders Carlsson | 4d8673b | 2009-08-07 23:22:37 +0000 | [diff] [blame] | 567 | // GCC union extension |
Daniel Dunbar | 79c3928 | 2010-08-21 03:15:20 +0000 | [diff] [blame] | 568 | QualType Ty = E->getSubExpr()->getType(); |
| 569 | QualType PtrTy = CGF.getContext().getPointerType(Ty); |
John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 570 | llvm::Value *CastPtr = Builder.CreateBitCast(Dest.getAddr(), |
Eli Friedman | 34ebf4d | 2009-06-03 20:45:06 +0000 | [diff] [blame] | 571 | CGF.ConvertType(PtrTy)); |
John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 572 | EmitInitializationToLValue(E->getSubExpr(), |
John McCall | 57cd1b8 | 2012-03-28 23:30:44 +0000 | [diff] [blame^] | 573 | CGF.MakeAddrLValue(CastPtr, Ty), |
| 574 | Dest.isCompleteObject()); |
Anders Carlsson | 3016842 | 2009-09-29 01:23:39 +0000 | [diff] [blame] | 575 | break; |
Nuno Lopes | 7e91627 | 2009-01-15 20:14:33 +0000 | [diff] [blame] | 576 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 577 | |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 578 | case CK_DerivedToBase: |
| 579 | case CK_BaseToDerived: |
| 580 | case CK_UncheckedDerivedToBase: { |
David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 581 | llvm_unreachable("cannot perform hierarchy conversion in EmitAggExpr: " |
Douglas Gregor | 2d6b0e9 | 2010-05-22 05:17:18 +0000 | [diff] [blame] | 582 | "should have been unpacked before we got here"); |
Douglas Gregor | 2d6b0e9 | 2010-05-22 05:17:18 +0000 | [diff] [blame] | 583 | } |
| 584 | |
John McCall | f6a1648 | 2010-12-04 03:47:34 +0000 | [diff] [blame] | 585 | case CK_LValueToRValue: // hope for downstream optimization |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 586 | case CK_NoOp: |
David Chisnall | 7a7ee30 | 2012-01-16 17:27:18 +0000 | [diff] [blame] | 587 | case CK_AtomicToNonAtomic: |
| 588 | case CK_NonAtomicToAtomic: |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 589 | case CK_UserDefinedConversion: |
| 590 | case CK_ConstructorConversion: |
Anders Carlsson | 3016842 | 2009-09-29 01:23:39 +0000 | [diff] [blame] | 591 | assert(CGF.getContext().hasSameUnqualifiedType(E->getSubExpr()->getType(), |
| 592 | E->getType()) && |
| 593 | "Implicit cast types must be compatible"); |
| 594 | Visit(E->getSubExpr()); |
| 595 | break; |
John McCall | 0ae287a | 2010-12-01 04:43:34 +0000 | [diff] [blame] | 596 | |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 597 | case CK_LValueBitCast: |
John McCall | 0ae287a | 2010-12-01 04:43:34 +0000 | [diff] [blame] | 598 | llvm_unreachable("should not be emitting lvalue bitcast as rvalue"); |
John McCall | 1de4d4e | 2011-04-07 08:22:57 +0000 | [diff] [blame] | 599 | |
John McCall | 0ae287a | 2010-12-01 04:43:34 +0000 | [diff] [blame] | 600 | case CK_Dependent: |
| 601 | case CK_BitCast: |
| 602 | case CK_ArrayToPointerDecay: |
| 603 | case CK_FunctionToPointerDecay: |
| 604 | case CK_NullToPointer: |
| 605 | case CK_NullToMemberPointer: |
| 606 | case CK_BaseToDerivedMemberPointer: |
| 607 | case CK_DerivedToBaseMemberPointer: |
| 608 | case CK_MemberPointerToBoolean: |
John McCall | 4d4e5c1 | 2012-02-15 01:22:51 +0000 | [diff] [blame] | 609 | case CK_ReinterpretMemberPointer: |
John McCall | 0ae287a | 2010-12-01 04:43:34 +0000 | [diff] [blame] | 610 | case CK_IntegralToPointer: |
| 611 | case CK_PointerToIntegral: |
| 612 | case CK_PointerToBoolean: |
| 613 | case CK_ToVoid: |
| 614 | case CK_VectorSplat: |
| 615 | case CK_IntegralCast: |
| 616 | case CK_IntegralToBoolean: |
| 617 | case CK_IntegralToFloating: |
| 618 | case CK_FloatingToIntegral: |
| 619 | case CK_FloatingToBoolean: |
| 620 | case CK_FloatingCast: |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 621 | case CK_CPointerToObjCPointerCast: |
| 622 | case CK_BlockPointerToObjCPointerCast: |
John McCall | 0ae287a | 2010-12-01 04:43:34 +0000 | [diff] [blame] | 623 | case CK_AnyPointerToBlockPointerCast: |
| 624 | case CK_ObjCObjectLValueCast: |
| 625 | case CK_FloatingRealToComplex: |
| 626 | case CK_FloatingComplexToReal: |
| 627 | case CK_FloatingComplexToBoolean: |
| 628 | case CK_FloatingComplexCast: |
| 629 | case CK_FloatingComplexToIntegralComplex: |
| 630 | case CK_IntegralRealToComplex: |
| 631 | case CK_IntegralComplexToReal: |
| 632 | case CK_IntegralComplexToBoolean: |
| 633 | case CK_IntegralComplexCast: |
| 634 | case CK_IntegralComplexToFloatingComplex: |
John McCall | 33e56f3 | 2011-09-10 06:18:15 +0000 | [diff] [blame] | 635 | case CK_ARCProduceObject: |
| 636 | case CK_ARCConsumeObject: |
| 637 | case CK_ARCReclaimReturnedObject: |
| 638 | case CK_ARCExtendBlockObject: |
Douglas Gregor | ac1303e | 2012-02-22 05:02:47 +0000 | [diff] [blame] | 639 | case CK_CopyAndAutoreleaseBlockObject: |
John McCall | 0ae287a | 2010-12-01 04:43:34 +0000 | [diff] [blame] | 640 | llvm_unreachable("cast kind invalid for aggregate types"); |
Anders Carlsson | 3016842 | 2009-09-29 01:23:39 +0000 | [diff] [blame] | 641 | } |
Anders Carlsson | e4707ff | 2008-01-14 06:28:57 +0000 | [diff] [blame] | 642 | } |
| 643 | |
Chris Lattner | 9619662 | 2008-07-26 22:37:01 +0000 | [diff] [blame] | 644 | void AggExprEmitter::VisitCallExpr(const CallExpr *E) { |
Anders Carlsson | e70e8f7 | 2009-05-27 16:45:02 +0000 | [diff] [blame] | 645 | if (E->getCallReturnType()->isReferenceType()) { |
| 646 | EmitAggLoadOfLValue(E); |
| 647 | return; |
| 648 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 649 | |
John McCall | fa037bd | 2010-05-22 22:13:32 +0000 | [diff] [blame] | 650 | RValue RV = CGF.EmitCallExpr(E, getReturnValueSlot()); |
John McCall | 410ffb2 | 2011-08-25 23:04:34 +0000 | [diff] [blame] | 651 | EmitMoveFromReturnSlot(E, RV); |
Anders Carlsson | 148fe67 | 2007-10-31 22:04:46 +0000 | [diff] [blame] | 652 | } |
Chris Lattner | 9619662 | 2008-07-26 22:37:01 +0000 | [diff] [blame] | 653 | |
| 654 | void AggExprEmitter::VisitObjCMessageExpr(ObjCMessageExpr *E) { |
John McCall | fa037bd | 2010-05-22 22:13:32 +0000 | [diff] [blame] | 655 | RValue RV = CGF.EmitObjCMessageExpr(E, getReturnValueSlot()); |
John McCall | 410ffb2 | 2011-08-25 23:04:34 +0000 | [diff] [blame] | 656 | EmitMoveFromReturnSlot(E, RV); |
Chris Lattner | 8fdf328 | 2008-06-24 17:04:18 +0000 | [diff] [blame] | 657 | } |
Anders Carlsson | 148fe67 | 2007-10-31 22:04:46 +0000 | [diff] [blame] | 658 | |
Chris Lattner | 9619662 | 2008-07-26 22:37:01 +0000 | [diff] [blame] | 659 | void AggExprEmitter::VisitBinComma(const BinaryOperator *E) { |
John McCall | 2a41637 | 2010-12-05 02:00:02 +0000 | [diff] [blame] | 660 | CGF.EmitIgnoredExpr(E->getLHS()); |
John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 661 | Visit(E->getRHS()); |
Eli Friedman | 07fa52a | 2008-05-20 07:56:31 +0000 | [diff] [blame] | 662 | } |
| 663 | |
Chris Lattner | b2d963f | 2007-08-31 22:54:14 +0000 | [diff] [blame] | 664 | void AggExprEmitter::VisitStmtExpr(const StmtExpr *E) { |
John McCall | 150b462 | 2011-01-26 04:00:11 +0000 | [diff] [blame] | 665 | CodeGenFunction::StmtExprEvaluation eval(CGF); |
John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 666 | CGF.EmitCompoundStmt(*E->getSubStmt(), true, Dest); |
Chris Lattner | b2d963f | 2007-08-31 22:54:14 +0000 | [diff] [blame] | 667 | } |
| 668 | |
Chris Lattner | 9c03356 | 2007-08-21 04:25:47 +0000 | [diff] [blame] | 669 | void AggExprEmitter::VisitBinaryOperator(const BinaryOperator *E) { |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 670 | if (E->getOpcode() == BO_PtrMemD || E->getOpcode() == BO_PtrMemI) |
Fariborz Jahanian | 8bfd31f | 2009-10-22 22:57:31 +0000 | [diff] [blame] | 671 | VisitPointerToDataMemberBinaryOperator(E); |
| 672 | else |
| 673 | CGF.ErrorUnsupported(E, "aggregate binary expression"); |
| 674 | } |
| 675 | |
| 676 | void AggExprEmitter::VisitPointerToDataMemberBinaryOperator( |
| 677 | const BinaryOperator *E) { |
| 678 | LValue LV = CGF.EmitPointerToDataMemberBinaryExpr(E); |
| 679 | EmitFinalDestCopy(E, LV); |
Chris Lattner | ee755f9 | 2007-08-21 04:59:27 +0000 | [diff] [blame] | 680 | } |
| 681 | |
John McCall | 57cd1b8 | 2012-03-28 23:30:44 +0000 | [diff] [blame^] | 682 | /// Quickly check whether the object looks like it might be a complete |
| 683 | /// object. |
| 684 | static AggValueSlot::IsCompleteObject_t isCompleteObject(const Expr *E) { |
| 685 | E = E->IgnoreParens(); |
| 686 | |
| 687 | QualType objectType; |
| 688 | if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) { |
| 689 | objectType = DRE->getDecl()->getType(); |
| 690 | } else if (const MemberExpr *ME = dyn_cast<MemberExpr>(E)) { |
| 691 | objectType = ME->getMemberDecl()->getType(); |
| 692 | } else { |
| 693 | // Be conservative. |
| 694 | return AggValueSlot::MayNotBeCompleteObject; |
| 695 | } |
| 696 | |
| 697 | // The expression refers directly to some sort of object. |
| 698 | // If that object has reference type, be conservative. |
| 699 | if (objectType->isReferenceType()) |
| 700 | return AggValueSlot::MayNotBeCompleteObject; |
| 701 | |
| 702 | return AggValueSlot::IsCompleteObject; |
| 703 | } |
| 704 | |
Chris Lattner | 03d6fb9 | 2007-08-21 04:43:17 +0000 | [diff] [blame] | 705 | void AggExprEmitter::VisitBinAssign(const BinaryOperator *E) { |
Eli Friedman | ff6e2b7 | 2008-02-11 01:09:17 +0000 | [diff] [blame] | 706 | // For an assignment to work, the value on the right has |
| 707 | // to be compatible with the value on the left. |
Eli Friedman | 2dce5f8 | 2009-05-28 23:04:00 +0000 | [diff] [blame] | 708 | assert(CGF.getContext().hasSameUnqualifiedType(E->getLHS()->getType(), |
| 709 | E->getRHS()->getType()) |
Eli Friedman | ff6e2b7 | 2008-02-11 01:09:17 +0000 | [diff] [blame] | 710 | && "Invalid assignment"); |
John McCall | cd940a1 | 2010-12-06 06:10:02 +0000 | [diff] [blame] | 711 | |
John McCall | 57cd1b8 | 2012-03-28 23:30:44 +0000 | [diff] [blame^] | 712 | if (const DeclRefExpr *DRE |
| 713 | = dyn_cast<DeclRefExpr>(E->getLHS()->IgnoreParens())) |
Fariborz Jahanian | 73a6f8e | 2011-04-29 22:11:28 +0000 | [diff] [blame] | 714 | if (const VarDecl *VD = dyn_cast<VarDecl>(DRE->getDecl())) |
Fariborz Jahanian | 2c7168c | 2011-04-29 21:53:21 +0000 | [diff] [blame] | 715 | if (VD->hasAttr<BlocksAttr>() && |
| 716 | E->getRHS()->HasSideEffects(CGF.getContext())) { |
| 717 | // When __block variable on LHS, the RHS must be evaluated first |
| 718 | // as it may change the 'forwarding' field via call to Block_copy. |
| 719 | LValue RHS = CGF.EmitLValue(E->getRHS()); |
| 720 | LValue LHS = CGF.EmitLValue(E->getLHS()); |
John McCall | 7c2349b | 2011-08-25 20:40:09 +0000 | [diff] [blame] | 721 | Dest = AggValueSlot::forLValue(LHS, AggValueSlot::IsDestructed, |
John McCall | 4418439 | 2011-08-26 07:31:35 +0000 | [diff] [blame] | 722 | needsGC(E->getLHS()->getType()), |
John McCall | 57cd1b8 | 2012-03-28 23:30:44 +0000 | [diff] [blame^] | 723 | AggValueSlot::IsAliased, |
| 724 | AggValueSlot::IsCompleteObject); |
Fariborz Jahanian | 2c7168c | 2011-04-29 21:53:21 +0000 | [diff] [blame] | 725 | EmitFinalDestCopy(E, RHS, true); |
| 726 | return; |
| 727 | } |
John McCall | 57cd1b8 | 2012-03-28 23:30:44 +0000 | [diff] [blame^] | 728 | |
Chris Lattner | 9c03356 | 2007-08-21 04:25:47 +0000 | [diff] [blame] | 729 | LValue LHS = CGF.EmitLValue(E->getLHS()); |
Chris Lattner | 883f6a7 | 2007-08-11 00:04:45 +0000 | [diff] [blame] | 730 | |
John McCall | db45806 | 2011-11-07 03:59:57 +0000 | [diff] [blame] | 731 | // Codegen the RHS so that it stores directly into the LHS. |
| 732 | AggValueSlot LHSSlot = |
| 733 | AggValueSlot::forLValue(LHS, AggValueSlot::IsDestructed, |
| 734 | needsGC(E->getLHS()->getType()), |
John McCall | 57cd1b8 | 2012-03-28 23:30:44 +0000 | [diff] [blame^] | 735 | AggValueSlot::IsAliased, |
| 736 | isCompleteObject(E->getLHS())); |
John McCall | db45806 | 2011-11-07 03:59:57 +0000 | [diff] [blame] | 737 | CGF.EmitAggExpr(E->getRHS(), LHSSlot, false); |
| 738 | EmitFinalDestCopy(E, LHS, true); |
Chris Lattner | 883f6a7 | 2007-08-11 00:04:45 +0000 | [diff] [blame] | 739 | } |
| 740 | |
John McCall | 56ca35d | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 741 | void AggExprEmitter:: |
| 742 | VisitAbstractConditionalOperator(const AbstractConditionalOperator *E) { |
Daniel Dunbar | 9615ecb | 2008-11-13 01:38:36 +0000 | [diff] [blame] | 743 | llvm::BasicBlock *LHSBlock = CGF.createBasicBlock("cond.true"); |
| 744 | llvm::BasicBlock *RHSBlock = CGF.createBasicBlock("cond.false"); |
| 745 | llvm::BasicBlock *ContBlock = CGF.createBasicBlock("cond.end"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 746 | |
John McCall | 56ca35d | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 747 | // Bind the common expression if necessary. |
Eli Friedman | d97927d | 2012-01-06 20:42:20 +0000 | [diff] [blame] | 748 | CodeGenFunction::OpaqueValueMapping binding(CGF, E); |
John McCall | 56ca35d | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 749 | |
John McCall | 150b462 | 2011-01-26 04:00:11 +0000 | [diff] [blame] | 750 | CodeGenFunction::ConditionalEvaluation eval(CGF); |
Eli Friedman | 8e274bd | 2009-12-25 06:17:05 +0000 | [diff] [blame] | 751 | CGF.EmitBranchOnBoolExpr(E->getCond(), LHSBlock, RHSBlock); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 752 | |
John McCall | 74fb0ed | 2010-11-17 00:07:33 +0000 | [diff] [blame] | 753 | // Save whether the destination's lifetime is externally managed. |
John McCall | fd71fb8 | 2011-08-26 08:02:37 +0000 | [diff] [blame] | 754 | bool isExternallyDestructed = Dest.isExternallyDestructed(); |
Chris Lattner | 883f6a7 | 2007-08-11 00:04:45 +0000 | [diff] [blame] | 755 | |
John McCall | 150b462 | 2011-01-26 04:00:11 +0000 | [diff] [blame] | 756 | eval.begin(CGF); |
| 757 | CGF.EmitBlock(LHSBlock); |
John McCall | 56ca35d | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 758 | Visit(E->getTrueExpr()); |
John McCall | 150b462 | 2011-01-26 04:00:11 +0000 | [diff] [blame] | 759 | eval.end(CGF); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 760 | |
John McCall | 150b462 | 2011-01-26 04:00:11 +0000 | [diff] [blame] | 761 | assert(CGF.HaveInsertPoint() && "expression evaluation ended with no IP!"); |
| 762 | CGF.Builder.CreateBr(ContBlock); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 763 | |
John McCall | 74fb0ed | 2010-11-17 00:07:33 +0000 | [diff] [blame] | 764 | // If the result of an agg expression is unused, then the emission |
| 765 | // of the LHS might need to create a destination slot. That's fine |
| 766 | // with us, and we can safely emit the RHS into the same slot, but |
John McCall | fd71fb8 | 2011-08-26 08:02:37 +0000 | [diff] [blame] | 767 | // we shouldn't claim that it's already being destructed. |
| 768 | Dest.setExternallyDestructed(isExternallyDestructed); |
John McCall | 74fb0ed | 2010-11-17 00:07:33 +0000 | [diff] [blame] | 769 | |
John McCall | 150b462 | 2011-01-26 04:00:11 +0000 | [diff] [blame] | 770 | eval.begin(CGF); |
| 771 | CGF.EmitBlock(RHSBlock); |
John McCall | 56ca35d | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 772 | Visit(E->getFalseExpr()); |
John McCall | 150b462 | 2011-01-26 04:00:11 +0000 | [diff] [blame] | 773 | eval.end(CGF); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 774 | |
Chris Lattner | 9c03356 | 2007-08-21 04:25:47 +0000 | [diff] [blame] | 775 | CGF.EmitBlock(ContBlock); |
Chris Lattner | 883f6a7 | 2007-08-11 00:04:45 +0000 | [diff] [blame] | 776 | } |
Chris Lattner | ee755f9 | 2007-08-21 04:59:27 +0000 | [diff] [blame] | 777 | |
Anders Carlsson | a294ca8 | 2009-07-08 18:33:14 +0000 | [diff] [blame] | 778 | void AggExprEmitter::VisitChooseExpr(const ChooseExpr *CE) { |
| 779 | Visit(CE->getChosenSubExpr(CGF.getContext())); |
| 780 | } |
| 781 | |
Eli Friedman | b185124 | 2008-05-27 15:51:49 +0000 | [diff] [blame] | 782 | void AggExprEmitter::VisitVAArgExpr(VAArgExpr *VE) { |
Daniel Dunbar | 0785570 | 2009-02-11 22:25:55 +0000 | [diff] [blame] | 783 | llvm::Value *ArgValue = CGF.EmitVAListRef(VE->getSubExpr()); |
Anders Carlsson | ddf7cac | 2008-11-04 05:30:00 +0000 | [diff] [blame] | 784 | llvm::Value *ArgPtr = CGF.EmitVAArg(ArgValue, VE->getType()); |
| 785 | |
Sebastian Redl | 0262f02 | 2009-01-09 21:09:38 +0000 | [diff] [blame] | 786 | if (!ArgPtr) { |
Anders Carlsson | ddf7cac | 2008-11-04 05:30:00 +0000 | [diff] [blame] | 787 | CGF.ErrorUnsupported(VE, "aggregate va_arg expression"); |
Sebastian Redl | 0262f02 | 2009-01-09 21:09:38 +0000 | [diff] [blame] | 788 | return; |
| 789 | } |
| 790 | |
Daniel Dunbar | 79c3928 | 2010-08-21 03:15:20 +0000 | [diff] [blame] | 791 | EmitFinalDestCopy(VE, CGF.MakeAddrLValue(ArgPtr, VE->getType())); |
Eli Friedman | b185124 | 2008-05-27 15:51:49 +0000 | [diff] [blame] | 792 | } |
| 793 | |
Anders Carlsson | b58d017 | 2009-05-30 23:23:33 +0000 | [diff] [blame] | 794 | void AggExprEmitter::VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E) { |
John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 795 | // Ensure that we have a slot, but if we already do, remember |
John McCall | fd71fb8 | 2011-08-26 08:02:37 +0000 | [diff] [blame] | 796 | // whether it was externally destructed. |
| 797 | bool wasExternallyDestructed = Dest.isExternallyDestructed(); |
John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 798 | Dest = EnsureSlot(E->getType()); |
John McCall | fd71fb8 | 2011-08-26 08:02:37 +0000 | [diff] [blame] | 799 | |
| 800 | // We're going to push a destructor if there isn't already one. |
| 801 | Dest.setExternallyDestructed(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 802 | |
John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 803 | Visit(E->getSubExpr()); |
Anders Carlsson | b58d017 | 2009-05-30 23:23:33 +0000 | [diff] [blame] | 804 | |
John McCall | fd71fb8 | 2011-08-26 08:02:37 +0000 | [diff] [blame] | 805 | // Push that destructor we promised. |
| 806 | if (!wasExternallyDestructed) |
Peter Collingbourne | 8681160 | 2011-11-27 22:09:22 +0000 | [diff] [blame] | 807 | CGF.EmitCXXTemporary(E->getTemporary(), E->getType(), Dest.getAddr()); |
Anders Carlsson | b58d017 | 2009-05-30 23:23:33 +0000 | [diff] [blame] | 808 | } |
| 809 | |
Anders Carlsson | b14095a | 2009-04-17 00:06:03 +0000 | [diff] [blame] | 810 | void |
Anders Carlsson | 31ccf37 | 2009-05-03 17:47:16 +0000 | [diff] [blame] | 811 | AggExprEmitter::VisitCXXConstructExpr(const CXXConstructExpr *E) { |
John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 812 | AggValueSlot Slot = EnsureSlot(E->getType()); |
| 813 | CGF.EmitCXXConstructExpr(E, Slot); |
Anders Carlsson | 7f6ad15 | 2009-05-19 04:48:36 +0000 | [diff] [blame] | 814 | } |
| 815 | |
Eli Friedman | 4c5d8af | 2012-02-09 03:32:31 +0000 | [diff] [blame] | 816 | void |
| 817 | AggExprEmitter::VisitLambdaExpr(LambdaExpr *E) { |
| 818 | AggValueSlot Slot = EnsureSlot(E->getType()); |
| 819 | CGF.EmitLambdaExpr(E, Slot); |
| 820 | } |
| 821 | |
John McCall | 4765fa0 | 2010-12-06 08:20:24 +0000 | [diff] [blame] | 822 | void AggExprEmitter::VisitExprWithCleanups(ExprWithCleanups *E) { |
John McCall | 1a343eb | 2011-11-10 08:15:53 +0000 | [diff] [blame] | 823 | CGF.enterFullExpression(E); |
| 824 | CodeGenFunction::RunCleanupsScope cleanups(CGF); |
| 825 | Visit(E->getSubExpr()); |
Anders Carlsson | b14095a | 2009-04-17 00:06:03 +0000 | [diff] [blame] | 826 | } |
| 827 | |
Douglas Gregor | ed8abf1 | 2010-07-08 06:14:04 +0000 | [diff] [blame] | 828 | void AggExprEmitter::VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *E) { |
John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 829 | QualType T = E->getType(); |
| 830 | AggValueSlot Slot = EnsureSlot(T); |
John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 831 | EmitNullInitializationToLValue(CGF.MakeAddrLValue(Slot.getAddr(), T)); |
Anders Carlsson | 30311fa | 2009-12-16 06:57:54 +0000 | [diff] [blame] | 832 | } |
| 833 | |
| 834 | void AggExprEmitter::VisitImplicitValueInitExpr(ImplicitValueInitExpr *E) { |
John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 835 | QualType T = E->getType(); |
| 836 | AggValueSlot Slot = EnsureSlot(T); |
John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 837 | EmitNullInitializationToLValue(CGF.MakeAddrLValue(Slot.getAddr(), T)); |
Nuno Lopes | 329763b | 2009-10-18 15:18:11 +0000 | [diff] [blame] | 838 | } |
| 839 | |
Chris Lattner | 1b72677 | 2010-12-02 07:07:26 +0000 | [diff] [blame] | 840 | /// isSimpleZero - If emitting this value will obviously just cause a store of |
| 841 | /// zero to memory, return true. This can return false if uncertain, so it just |
| 842 | /// handles simple cases. |
| 843 | static bool isSimpleZero(const Expr *E, CodeGenFunction &CGF) { |
Peter Collingbourne | f111d93 | 2011-04-15 00:35:48 +0000 | [diff] [blame] | 844 | E = E->IgnoreParens(); |
| 845 | |
Chris Lattner | 1b72677 | 2010-12-02 07:07:26 +0000 | [diff] [blame] | 846 | // 0 |
| 847 | if (const IntegerLiteral *IL = dyn_cast<IntegerLiteral>(E)) |
| 848 | return IL->getValue() == 0; |
| 849 | // +0.0 |
| 850 | if (const FloatingLiteral *FL = dyn_cast<FloatingLiteral>(E)) |
| 851 | return FL->getValue().isPosZero(); |
| 852 | // int() |
| 853 | if ((isa<ImplicitValueInitExpr>(E) || isa<CXXScalarValueInitExpr>(E)) && |
| 854 | CGF.getTypes().isZeroInitializable(E->getType())) |
| 855 | return true; |
| 856 | // (int*)0 - Null pointer expressions. |
| 857 | if (const CastExpr *ICE = dyn_cast<CastExpr>(E)) |
| 858 | return ICE->getCastKind() == CK_NullToPointer; |
| 859 | // '\0' |
| 860 | if (const CharacterLiteral *CL = dyn_cast<CharacterLiteral>(E)) |
| 861 | return CL->getValue() == 0; |
| 862 | |
| 863 | // Otherwise, hard case: conservatively return false. |
| 864 | return false; |
| 865 | } |
| 866 | |
| 867 | |
Anders Carlsson | 78e83f8 | 2010-02-03 17:33:16 +0000 | [diff] [blame] | 868 | void |
John McCall | 57cd1b8 | 2012-03-28 23:30:44 +0000 | [diff] [blame^] | 869 | AggExprEmitter::EmitInitializationToLValue(Expr* E, LValue LV, |
| 870 | AggValueSlot::IsCompleteObject_t isCompleteObject) { |
John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 871 | QualType type = LV.getType(); |
Mike Stump | 7f79f9b | 2009-05-29 15:46:01 +0000 | [diff] [blame] | 872 | // FIXME: Ignore result? |
Chris Lattner | f81557c | 2008-04-04 18:42:16 +0000 | [diff] [blame] | 873 | // FIXME: Are initializers affected by volatile? |
Chris Lattner | 1b72677 | 2010-12-02 07:07:26 +0000 | [diff] [blame] | 874 | if (Dest.isZeroed() && isSimpleZero(E, CGF)) { |
| 875 | // Storing "i32 0" to a zero'd memory location is a noop. |
| 876 | } else if (isa<ImplicitValueInitExpr>(E)) { |
John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 877 | EmitNullInitializationToLValue(LV); |
| 878 | } else if (type->isReferenceType()) { |
Anders Carlsson | 32f36ba | 2010-06-26 16:35:32 +0000 | [diff] [blame] | 879 | RValue RV = CGF.EmitReferenceBindingToExpr(E, /*InitializedDecl=*/0); |
John McCall | 545d996 | 2011-06-25 02:11:03 +0000 | [diff] [blame] | 880 | CGF.EmitStoreThroughLValue(RV, LV); |
John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 881 | } else if (type->isAnyComplexType()) { |
Douglas Gregor | 3498bdb | 2009-01-29 17:44:32 +0000 | [diff] [blame] | 882 | CGF.EmitComplexExprIntoAddr(E, LV.getAddress(), false); |
John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 883 | } else if (CGF.hasAggregateLLVMType(type)) { |
John McCall | 7c2349b | 2011-08-25 20:40:09 +0000 | [diff] [blame] | 884 | CGF.EmitAggExpr(E, AggValueSlot::forLValue(LV, |
| 885 | AggValueSlot::IsDestructed, |
| 886 | AggValueSlot::DoesNotNeedGCBarriers, |
John McCall | 410ffb2 | 2011-08-25 23:04:34 +0000 | [diff] [blame] | 887 | AggValueSlot::IsNotAliased, |
John McCall | 57cd1b8 | 2012-03-28 23:30:44 +0000 | [diff] [blame^] | 888 | isCompleteObject, |
John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 889 | Dest.isZeroed())); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 890 | } else if (LV.isSimple()) { |
John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 891 | CGF.EmitScalarInit(E, /*D=*/0, LV, /*Captured=*/false); |
Eli Friedman | c8ba961 | 2008-05-12 15:06:05 +0000 | [diff] [blame] | 892 | } else { |
John McCall | 545d996 | 2011-06-25 02:11:03 +0000 | [diff] [blame] | 893 | CGF.EmitStoreThroughLValue(RValue::get(CGF.EmitScalarExpr(E)), LV); |
Chris Lattner | f81557c | 2008-04-04 18:42:16 +0000 | [diff] [blame] | 894 | } |
Chris Lattner | f81557c | 2008-04-04 18:42:16 +0000 | [diff] [blame] | 895 | } |
| 896 | |
John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 897 | void AggExprEmitter::EmitNullInitializationToLValue(LValue lv) { |
| 898 | QualType type = lv.getType(); |
| 899 | |
Chris Lattner | 1b72677 | 2010-12-02 07:07:26 +0000 | [diff] [blame] | 900 | // If the destination slot is already zeroed out before the aggregate is |
| 901 | // copied into it, we don't have to emit any zeros here. |
John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 902 | if (Dest.isZeroed() && CGF.getTypes().isZeroInitializable(type)) |
Chris Lattner | 1b72677 | 2010-12-02 07:07:26 +0000 | [diff] [blame] | 903 | return; |
| 904 | |
John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 905 | if (!CGF.hasAggregateLLVMType(type)) { |
Eli Friedman | b1e3f32 | 2012-02-22 05:38:59 +0000 | [diff] [blame] | 906 | // For non-aggregates, we can store zero. |
John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 907 | llvm::Value *null = llvm::Constant::getNullValue(CGF.ConvertType(type)); |
Eli Friedman | b1e3f32 | 2012-02-22 05:38:59 +0000 | [diff] [blame] | 908 | // Note that the following is not equivalent to |
| 909 | // EmitStoreThroughBitfieldLValue for ARC types. |
Eli Friedman | 5a13d4d | 2012-02-24 23:53:49 +0000 | [diff] [blame] | 910 | if (lv.isBitField()) { |
Eli Friedman | b1e3f32 | 2012-02-22 05:38:59 +0000 | [diff] [blame] | 911 | CGF.EmitStoreThroughBitfieldLValue(RValue::get(null), lv); |
Eli Friedman | 5a13d4d | 2012-02-24 23:53:49 +0000 | [diff] [blame] | 912 | } else { |
| 913 | assert(lv.isSimple()); |
| 914 | CGF.EmitStoreOfScalar(null, lv, /* isInitialization */ true); |
| 915 | } |
Lauro Ramos Venancio | 145cd89 | 2008-02-19 19:27:31 +0000 | [diff] [blame] | 916 | } else { |
Chris Lattner | f81557c | 2008-04-04 18:42:16 +0000 | [diff] [blame] | 917 | // There's a potential optimization opportunity in combining |
| 918 | // memsets; that would be easy for arrays, but relatively |
| 919 | // difficult for structures with the current code. |
John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 920 | CGF.EmitNullInitialization(lv.getAddress(), lv.getType()); |
Chris Lattner | f81557c | 2008-04-04 18:42:16 +0000 | [diff] [blame] | 921 | } |
| 922 | } |
| 923 | |
Chris Lattner | f81557c | 2008-04-04 18:42:16 +0000 | [diff] [blame] | 924 | void AggExprEmitter::VisitInitListExpr(InitListExpr *E) { |
Eli Friedman | a385b3c | 2008-12-02 01:17:45 +0000 | [diff] [blame] | 925 | #if 0 |
Eli Friedman | 13a5be1 | 2009-12-04 01:30:56 +0000 | [diff] [blame] | 926 | // FIXME: Assess perf here? Figure out what cases are worth optimizing here |
| 927 | // (Length of globals? Chunks of zeroed-out space?). |
Eli Friedman | a385b3c | 2008-12-02 01:17:45 +0000 | [diff] [blame] | 928 | // |
Mike Stump | f5408fe | 2009-05-16 07:57:57 +0000 | [diff] [blame] | 929 | // If we can, prefer a copy from a global; this is a lot less code for long |
| 930 | // globals, and it's easier for the current optimizers to analyze. |
Eli Friedman | 13a5be1 | 2009-12-04 01:30:56 +0000 | [diff] [blame] | 931 | if (llvm::Constant* C = CGF.CGM.EmitConstantExpr(E, E->getType(), &CGF)) { |
Eli Friedman | 994ffef | 2008-11-30 02:11:09 +0000 | [diff] [blame] | 932 | llvm::GlobalVariable* GV = |
Eli Friedman | 13a5be1 | 2009-12-04 01:30:56 +0000 | [diff] [blame] | 933 | new llvm::GlobalVariable(CGF.CGM.getModule(), C->getType(), true, |
| 934 | llvm::GlobalValue::InternalLinkage, C, ""); |
Daniel Dunbar | 79c3928 | 2010-08-21 03:15:20 +0000 | [diff] [blame] | 935 | EmitFinalDestCopy(E, CGF.MakeAddrLValue(GV, E->getType())); |
Eli Friedman | 994ffef | 2008-11-30 02:11:09 +0000 | [diff] [blame] | 936 | return; |
| 937 | } |
Eli Friedman | a385b3c | 2008-12-02 01:17:45 +0000 | [diff] [blame] | 938 | #endif |
Chris Lattner | d0db03a | 2010-09-06 00:11:41 +0000 | [diff] [blame] | 939 | if (E->hadArrayRangeDesignator()) |
Douglas Gregor | a9c8780 | 2009-01-29 19:42:23 +0000 | [diff] [blame] | 940 | CGF.ErrorUnsupported(E, "GNU array range designator extension"); |
Douglas Gregor | a9c8780 | 2009-01-29 19:42:23 +0000 | [diff] [blame] | 941 | |
Sebastian Redl | 32cf1f2 | 2012-02-17 08:42:25 +0000 | [diff] [blame] | 942 | if (E->initializesStdInitializerList()) { |
Sebastian Redl | af130fd | 2012-02-19 12:28:02 +0000 | [diff] [blame] | 943 | EmitStdInitializerList(Dest.getAddr(), E); |
Sebastian Redl | 32cf1f2 | 2012-02-17 08:42:25 +0000 | [diff] [blame] | 944 | return; |
| 945 | } |
| 946 | |
Eli Friedman | c60ccf5 | 2012-02-29 00:00:28 +0000 | [diff] [blame] | 947 | llvm::Value *DestPtr = EnsureSlot(E->getType()).getAddr(); |
John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 948 | |
Chris Lattner | f81557c | 2008-04-04 18:42:16 +0000 | [diff] [blame] | 949 | // Handle initialization of an array. |
| 950 | if (E->getType()->isArrayType()) { |
Chris Lattner | 9619662 | 2008-07-26 22:37:01 +0000 | [diff] [blame] | 951 | if (E->getNumInits() > 0) { |
| 952 | QualType T1 = E->getType(); |
| 953 | QualType T2 = E->getInit(0)->getType(); |
Eli Friedman | 2dce5f8 | 2009-05-28 23:04:00 +0000 | [diff] [blame] | 954 | if (CGF.getContext().hasSameUnqualifiedType(T1, T2)) { |
Chris Lattner | 9619662 | 2008-07-26 22:37:01 +0000 | [diff] [blame] | 955 | EmitAggLoadOfLValue(E->getInit(0)); |
| 956 | return; |
| 957 | } |
Eli Friedman | 922696f | 2008-05-19 17:51:16 +0000 | [diff] [blame] | 958 | } |
| 959 | |
Eli Friedman | 5c89c39 | 2012-02-23 02:25:10 +0000 | [diff] [blame] | 960 | QualType elementType = |
| 961 | CGF.getContext().getAsArrayType(E->getType())->getElementType(); |
Argyrios Kyrtzidis | 3b4d490 | 2011-04-28 18:53:58 +0000 | [diff] [blame] | 962 | |
Sebastian Redl | 32cf1f2 | 2012-02-17 08:42:25 +0000 | [diff] [blame] | 963 | llvm::PointerType *APType = |
| 964 | cast<llvm::PointerType>(DestPtr->getType()); |
| 965 | llvm::ArrayType *AType = |
| 966 | cast<llvm::ArrayType>(APType->getElementType()); |
Chris Lattner | 1b72677 | 2010-12-02 07:07:26 +0000 | [diff] [blame] | 967 | |
Sebastian Redl | 32cf1f2 | 2012-02-17 08:42:25 +0000 | [diff] [blame] | 968 | EmitArrayInit(DestPtr, AType, elementType, E); |
Chris Lattner | f81557c | 2008-04-04 18:42:16 +0000 | [diff] [blame] | 969 | return; |
| 970 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 971 | |
Chris Lattner | f81557c | 2008-04-04 18:42:16 +0000 | [diff] [blame] | 972 | assert(E->getType()->isRecordType() && "Only support structs/unions here!"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 973 | |
Chris Lattner | f81557c | 2008-04-04 18:42:16 +0000 | [diff] [blame] | 974 | // Do struct initialization; this code just sets each individual member |
| 975 | // to the approprate value. This makes bitfield support automatic; |
| 976 | // the disadvantage is that the generated code is more difficult for |
| 977 | // the optimizer, especially with bitfields. |
| 978 | unsigned NumInitElements = E->getNumInits(); |
John McCall | 2b30dcf | 2011-07-11 19:35:02 +0000 | [diff] [blame] | 979 | RecordDecl *record = E->getType()->castAs<RecordType>()->getDecl(); |
Chris Lattner | bd7de38 | 2010-09-06 00:13:11 +0000 | [diff] [blame] | 980 | |
John McCall | 2b30dcf | 2011-07-11 19:35:02 +0000 | [diff] [blame] | 981 | if (record->isUnion()) { |
Douglas Gregor | 0bb7689 | 2009-01-29 16:53:55 +0000 | [diff] [blame] | 982 | // Only initialize one field of a union. The field itself is |
| 983 | // specified by the initializer list. |
| 984 | if (!E->getInitializedFieldInUnion()) { |
| 985 | // Empty union; we have nothing to do. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 986 | |
Douglas Gregor | 0bb7689 | 2009-01-29 16:53:55 +0000 | [diff] [blame] | 987 | #ifndef NDEBUG |
| 988 | // Make sure that it's really an empty and not a failure of |
| 989 | // semantic analysis. |
John McCall | 2b30dcf | 2011-07-11 19:35:02 +0000 | [diff] [blame] | 990 | for (RecordDecl::field_iterator Field = record->field_begin(), |
| 991 | FieldEnd = record->field_end(); |
Douglas Gregor | 0bb7689 | 2009-01-29 16:53:55 +0000 | [diff] [blame] | 992 | Field != FieldEnd; ++Field) |
| 993 | assert(Field->isUnnamedBitfield() && "Only unnamed bitfields allowed"); |
| 994 | #endif |
| 995 | return; |
| 996 | } |
| 997 | |
| 998 | // FIXME: volatility |
| 999 | FieldDecl *Field = E->getInitializedFieldInUnion(); |
Douglas Gregor | 0bb7689 | 2009-01-29 16:53:55 +0000 | [diff] [blame] | 1000 | |
Chris Lattner | 1b72677 | 2010-12-02 07:07:26 +0000 | [diff] [blame] | 1001 | LValue FieldLoc = CGF.EmitLValueForFieldInitialization(DestPtr, Field, 0); |
Douglas Gregor | 0bb7689 | 2009-01-29 16:53:55 +0000 | [diff] [blame] | 1002 | if (NumInitElements) { |
| 1003 | // Store the initializer into the field |
John McCall | 57cd1b8 | 2012-03-28 23:30:44 +0000 | [diff] [blame^] | 1004 | EmitInitializationToLValue(E->getInit(0), FieldLoc, |
| 1005 | AggValueSlot::IsCompleteObject); |
Douglas Gregor | 0bb7689 | 2009-01-29 16:53:55 +0000 | [diff] [blame] | 1006 | } else { |
Chris Lattner | 1b72677 | 2010-12-02 07:07:26 +0000 | [diff] [blame] | 1007 | // Default-initialize to null. |
John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 1008 | EmitNullInitializationToLValue(FieldLoc); |
Douglas Gregor | 0bb7689 | 2009-01-29 16:53:55 +0000 | [diff] [blame] | 1009 | } |
| 1010 | |
| 1011 | return; |
| 1012 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1013 | |
John McCall | 2b30dcf | 2011-07-11 19:35:02 +0000 | [diff] [blame] | 1014 | // We'll need to enter cleanup scopes in case any of the member |
| 1015 | // initializers throw an exception. |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1016 | SmallVector<EHScopeStack::stable_iterator, 16> cleanups; |
John McCall | 6f103ba | 2011-11-10 10:43:54 +0000 | [diff] [blame] | 1017 | llvm::Instruction *cleanupDominator = 0; |
John McCall | 2b30dcf | 2011-07-11 19:35:02 +0000 | [diff] [blame] | 1018 | |
Chris Lattner | f81557c | 2008-04-04 18:42:16 +0000 | [diff] [blame] | 1019 | // Here we iterate over the fields; this makes it simpler to both |
| 1020 | // default-initialize fields and skip over unnamed fields. |
John McCall | 2b30dcf | 2011-07-11 19:35:02 +0000 | [diff] [blame] | 1021 | unsigned curInitIndex = 0; |
| 1022 | for (RecordDecl::field_iterator field = record->field_begin(), |
| 1023 | fieldEnd = record->field_end(); |
| 1024 | field != fieldEnd; ++field) { |
| 1025 | // We're done once we hit the flexible array member. |
| 1026 | if (field->getType()->isIncompleteArrayType()) |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 1027 | break; |
| 1028 | |
John McCall | 2b30dcf | 2011-07-11 19:35:02 +0000 | [diff] [blame] | 1029 | // Always skip anonymous bitfields. |
| 1030 | if (field->isUnnamedBitfield()) |
Chris Lattner | f81557c | 2008-04-04 18:42:16 +0000 | [diff] [blame] | 1031 | continue; |
Douglas Gregor | 34e7946 | 2009-01-28 23:36:17 +0000 | [diff] [blame] | 1032 | |
John McCall | 2b30dcf | 2011-07-11 19:35:02 +0000 | [diff] [blame] | 1033 | // We're done if we reach the end of the explicit initializers, we |
| 1034 | // have a zeroed object, and the rest of the fields are |
| 1035 | // zero-initializable. |
| 1036 | if (curInitIndex == NumInitElements && Dest.isZeroed() && |
Chris Lattner | 1b72677 | 2010-12-02 07:07:26 +0000 | [diff] [blame] | 1037 | CGF.getTypes().isZeroInitializable(E->getType())) |
| 1038 | break; |
| 1039 | |
Eli Friedman | 1e692ac | 2008-06-13 23:01:12 +0000 | [diff] [blame] | 1040 | // FIXME: volatility |
John McCall | 2b30dcf | 2011-07-11 19:35:02 +0000 | [diff] [blame] | 1041 | LValue LV = CGF.EmitLValueForFieldInitialization(DestPtr, *field, 0); |
Fariborz Jahanian | 14674ff | 2009-05-27 19:54:11 +0000 | [diff] [blame] | 1042 | // We never generate write-barries for initialized fields. |
John McCall | 2b30dcf | 2011-07-11 19:35:02 +0000 | [diff] [blame] | 1043 | LV.setNonGC(true); |
Chris Lattner | 1b72677 | 2010-12-02 07:07:26 +0000 | [diff] [blame] | 1044 | |
John McCall | 2b30dcf | 2011-07-11 19:35:02 +0000 | [diff] [blame] | 1045 | if (curInitIndex < NumInitElements) { |
Chris Lattner | b35baae | 2010-03-08 21:08:07 +0000 | [diff] [blame] | 1046 | // Store the initializer into the field. |
John McCall | 57cd1b8 | 2012-03-28 23:30:44 +0000 | [diff] [blame^] | 1047 | EmitInitializationToLValue(E->getInit(curInitIndex++), LV, |
| 1048 | AggValueSlot::IsCompleteObject); |
Chris Lattner | f81557c | 2008-04-04 18:42:16 +0000 | [diff] [blame] | 1049 | } else { |
| 1050 | // We're out of initalizers; default-initialize to null |
John McCall | 2b30dcf | 2011-07-11 19:35:02 +0000 | [diff] [blame] | 1051 | EmitNullInitializationToLValue(LV); |
| 1052 | } |
| 1053 | |
| 1054 | // Push a destructor if necessary. |
| 1055 | // FIXME: if we have an array of structures, all explicitly |
| 1056 | // initialized, we can end up pushing a linear number of cleanups. |
| 1057 | bool pushedCleanup = false; |
| 1058 | if (QualType::DestructionKind dtorKind |
| 1059 | = field->getType().isDestructedType()) { |
| 1060 | assert(LV.isSimple()); |
| 1061 | if (CGF.needsEHCleanup(dtorKind)) { |
John McCall | 6f103ba | 2011-11-10 10:43:54 +0000 | [diff] [blame] | 1062 | if (!cleanupDominator) |
| 1063 | cleanupDominator = CGF.Builder.CreateUnreachable(); // placeholder |
| 1064 | |
John McCall | 2b30dcf | 2011-07-11 19:35:02 +0000 | [diff] [blame] | 1065 | CGF.pushDestroy(EHCleanup, LV.getAddress(), field->getType(), |
| 1066 | CGF.getDestroyer(dtorKind), false); |
| 1067 | cleanups.push_back(CGF.EHStack.stable_begin()); |
| 1068 | pushedCleanup = true; |
| 1069 | } |
Chris Lattner | f81557c | 2008-04-04 18:42:16 +0000 | [diff] [blame] | 1070 | } |
Chris Lattner | 1b72677 | 2010-12-02 07:07:26 +0000 | [diff] [blame] | 1071 | |
| 1072 | // If the GEP didn't get used because of a dead zero init or something |
| 1073 | // else, clean it up for -O0 builds and general tidiness. |
John McCall | 2b30dcf | 2011-07-11 19:35:02 +0000 | [diff] [blame] | 1074 | if (!pushedCleanup && LV.isSimple()) |
Chris Lattner | 1b72677 | 2010-12-02 07:07:26 +0000 | [diff] [blame] | 1075 | if (llvm::GetElementPtrInst *GEP = |
John McCall | 2b30dcf | 2011-07-11 19:35:02 +0000 | [diff] [blame] | 1076 | dyn_cast<llvm::GetElementPtrInst>(LV.getAddress())) |
Chris Lattner | 1b72677 | 2010-12-02 07:07:26 +0000 | [diff] [blame] | 1077 | if (GEP->use_empty()) |
| 1078 | GEP->eraseFromParent(); |
Lauro Ramos Venancio | 145cd89 | 2008-02-19 19:27:31 +0000 | [diff] [blame] | 1079 | } |
John McCall | 2b30dcf | 2011-07-11 19:35:02 +0000 | [diff] [blame] | 1080 | |
| 1081 | // Deactivate all the partial cleanups in reverse order, which |
| 1082 | // generally means popping them. |
| 1083 | for (unsigned i = cleanups.size(); i != 0; --i) |
John McCall | 6f103ba | 2011-11-10 10:43:54 +0000 | [diff] [blame] | 1084 | CGF.DeactivateCleanupBlock(cleanups[i-1], cleanupDominator); |
| 1085 | |
| 1086 | // Destroy the placeholder if we made one. |
| 1087 | if (cleanupDominator) |
| 1088 | cleanupDominator->eraseFromParent(); |
Devang Patel | 636c3d0 | 2007-10-26 17:44:44 +0000 | [diff] [blame] | 1089 | } |
| 1090 | |
Chris Lattner | ee755f9 | 2007-08-21 04:59:27 +0000 | [diff] [blame] | 1091 | //===----------------------------------------------------------------------===// |
| 1092 | // Entry Points into this File |
| 1093 | //===----------------------------------------------------------------------===// |
| 1094 | |
Chris Lattner | 1b72677 | 2010-12-02 07:07:26 +0000 | [diff] [blame] | 1095 | /// GetNumNonZeroBytesInInit - Get an approximate count of the number of |
| 1096 | /// non-zero bytes that will be stored when outputting the initializer for the |
| 1097 | /// specified initializer expression. |
Ken Dyck | 02c4533 | 2011-04-24 17:17:56 +0000 | [diff] [blame] | 1098 | static CharUnits GetNumNonZeroBytesInInit(const Expr *E, CodeGenFunction &CGF) { |
Peter Collingbourne | f111d93 | 2011-04-15 00:35:48 +0000 | [diff] [blame] | 1099 | E = E->IgnoreParens(); |
Chris Lattner | 1b72677 | 2010-12-02 07:07:26 +0000 | [diff] [blame] | 1100 | |
| 1101 | // 0 and 0.0 won't require any non-zero stores! |
Ken Dyck | 02c4533 | 2011-04-24 17:17:56 +0000 | [diff] [blame] | 1102 | if (isSimpleZero(E, CGF)) return CharUnits::Zero(); |
Chris Lattner | 1b72677 | 2010-12-02 07:07:26 +0000 | [diff] [blame] | 1103 | |
| 1104 | // If this is an initlist expr, sum up the size of sizes of the (present) |
| 1105 | // elements. If this is something weird, assume the whole thing is non-zero. |
| 1106 | const InitListExpr *ILE = dyn_cast<InitListExpr>(E); |
| 1107 | if (ILE == 0 || !CGF.getTypes().isZeroInitializable(ILE->getType())) |
Ken Dyck | 02c4533 | 2011-04-24 17:17:56 +0000 | [diff] [blame] | 1108 | return CGF.getContext().getTypeSizeInChars(E->getType()); |
Chris Lattner | 1b72677 | 2010-12-02 07:07:26 +0000 | [diff] [blame] | 1109 | |
Chris Lattner | d1d56df | 2010-12-02 18:29:00 +0000 | [diff] [blame] | 1110 | // InitListExprs for structs have to be handled carefully. If there are |
| 1111 | // reference members, we need to consider the size of the reference, not the |
| 1112 | // referencee. InitListExprs for unions and arrays can't have references. |
Chris Lattner | 8c00ad1 | 2010-12-02 22:52:04 +0000 | [diff] [blame] | 1113 | if (const RecordType *RT = E->getType()->getAs<RecordType>()) { |
| 1114 | if (!RT->isUnionType()) { |
| 1115 | RecordDecl *SD = E->getType()->getAs<RecordType>()->getDecl(); |
Ken Dyck | 02c4533 | 2011-04-24 17:17:56 +0000 | [diff] [blame] | 1116 | CharUnits NumNonZeroBytes = CharUnits::Zero(); |
Chris Lattner | 8c00ad1 | 2010-12-02 22:52:04 +0000 | [diff] [blame] | 1117 | |
| 1118 | unsigned ILEElement = 0; |
| 1119 | for (RecordDecl::field_iterator Field = SD->field_begin(), |
| 1120 | FieldEnd = SD->field_end(); Field != FieldEnd; ++Field) { |
| 1121 | // We're done once we hit the flexible array member or run out of |
| 1122 | // InitListExpr elements. |
| 1123 | if (Field->getType()->isIncompleteArrayType() || |
| 1124 | ILEElement == ILE->getNumInits()) |
| 1125 | break; |
| 1126 | if (Field->isUnnamedBitfield()) |
| 1127 | continue; |
Chris Lattner | d1d56df | 2010-12-02 18:29:00 +0000 | [diff] [blame] | 1128 | |
Chris Lattner | 8c00ad1 | 2010-12-02 22:52:04 +0000 | [diff] [blame] | 1129 | const Expr *E = ILE->getInit(ILEElement++); |
| 1130 | |
| 1131 | // Reference values are always non-null and have the width of a pointer. |
| 1132 | if (Field->getType()->isReferenceType()) |
Ken Dyck | 02c4533 | 2011-04-24 17:17:56 +0000 | [diff] [blame] | 1133 | NumNonZeroBytes += CGF.getContext().toCharUnitsFromBits( |
Douglas Gregor | bcfd1f5 | 2011-09-02 00:18:52 +0000 | [diff] [blame] | 1134 | CGF.getContext().getTargetInfo().getPointerWidth(0)); |
Chris Lattner | 8c00ad1 | 2010-12-02 22:52:04 +0000 | [diff] [blame] | 1135 | else |
| 1136 | NumNonZeroBytes += GetNumNonZeroBytesInInit(E, CGF); |
| 1137 | } |
Chris Lattner | d1d56df | 2010-12-02 18:29:00 +0000 | [diff] [blame] | 1138 | |
Chris Lattner | 8c00ad1 | 2010-12-02 22:52:04 +0000 | [diff] [blame] | 1139 | return NumNonZeroBytes; |
Chris Lattner | d1d56df | 2010-12-02 18:29:00 +0000 | [diff] [blame] | 1140 | } |
Chris Lattner | d1d56df | 2010-12-02 18:29:00 +0000 | [diff] [blame] | 1141 | } |
| 1142 | |
| 1143 | |
Ken Dyck | 02c4533 | 2011-04-24 17:17:56 +0000 | [diff] [blame] | 1144 | CharUnits NumNonZeroBytes = CharUnits::Zero(); |
Chris Lattner | 1b72677 | 2010-12-02 07:07:26 +0000 | [diff] [blame] | 1145 | for (unsigned i = 0, e = ILE->getNumInits(); i != e; ++i) |
| 1146 | NumNonZeroBytes += GetNumNonZeroBytesInInit(ILE->getInit(i), CGF); |
| 1147 | return NumNonZeroBytes; |
| 1148 | } |
| 1149 | |
| 1150 | /// CheckAggExprForMemSetUse - If the initializer is large and has a lot of |
| 1151 | /// zeros in it, emit a memset and avoid storing the individual zeros. |
| 1152 | /// |
| 1153 | static void CheckAggExprForMemSetUse(AggValueSlot &Slot, const Expr *E, |
| 1154 | CodeGenFunction &CGF) { |
| 1155 | // If the slot is already known to be zeroed, nothing to do. Don't mess with |
| 1156 | // volatile stores. |
| 1157 | if (Slot.isZeroed() || Slot.isVolatile() || Slot.getAddr() == 0) return; |
Argyrios Kyrtzidis | 657baf1 | 2011-04-28 22:57:55 +0000 | [diff] [blame] | 1158 | |
| 1159 | // C++ objects with a user-declared constructor don't need zero'ing. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1160 | if (CGF.getContext().getLangOpts().CPlusPlus) |
Argyrios Kyrtzidis | 657baf1 | 2011-04-28 22:57:55 +0000 | [diff] [blame] | 1161 | if (const RecordType *RT = CGF.getContext() |
| 1162 | .getBaseElementType(E->getType())->getAs<RecordType>()) { |
| 1163 | const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl()); |
| 1164 | if (RD->hasUserDeclaredConstructor()) |
| 1165 | return; |
| 1166 | } |
| 1167 | |
Chris Lattner | 1b72677 | 2010-12-02 07:07:26 +0000 | [diff] [blame] | 1168 | // If the type is 16-bytes or smaller, prefer individual stores over memset. |
Ken Dyck | 5ff1a35 | 2011-04-24 17:25:32 +0000 | [diff] [blame] | 1169 | std::pair<CharUnits, CharUnits> TypeInfo = |
| 1170 | CGF.getContext().getTypeInfoInChars(E->getType()); |
| 1171 | if (TypeInfo.first <= CharUnits::fromQuantity(16)) |
Chris Lattner | 1b72677 | 2010-12-02 07:07:26 +0000 | [diff] [blame] | 1172 | return; |
| 1173 | |
| 1174 | // Check to see if over 3/4 of the initializer are known to be zero. If so, |
| 1175 | // we prefer to emit memset + individual stores for the rest. |
Ken Dyck | 5ff1a35 | 2011-04-24 17:25:32 +0000 | [diff] [blame] | 1176 | CharUnits NumNonZeroBytes = GetNumNonZeroBytesInInit(E, CGF); |
| 1177 | if (NumNonZeroBytes*4 > TypeInfo.first) |
Chris Lattner | 1b72677 | 2010-12-02 07:07:26 +0000 | [diff] [blame] | 1178 | return; |
| 1179 | |
| 1180 | // Okay, it seems like a good idea to use an initial memset, emit the call. |
Ken Dyck | 5ff1a35 | 2011-04-24 17:25:32 +0000 | [diff] [blame] | 1181 | llvm::Constant *SizeVal = CGF.Builder.getInt64(TypeInfo.first.getQuantity()); |
| 1182 | CharUnits Align = TypeInfo.second; |
Chris Lattner | 1b72677 | 2010-12-02 07:07:26 +0000 | [diff] [blame] | 1183 | |
| 1184 | llvm::Value *Loc = Slot.getAddr(); |
Chris Lattner | 1b72677 | 2010-12-02 07:07:26 +0000 | [diff] [blame] | 1185 | |
Chris Lattner | 8b41868 | 2012-02-07 00:39:47 +0000 | [diff] [blame] | 1186 | Loc = CGF.Builder.CreateBitCast(Loc, CGF.Int8PtrTy); |
Ken Dyck | 5ff1a35 | 2011-04-24 17:25:32 +0000 | [diff] [blame] | 1187 | CGF.Builder.CreateMemSet(Loc, CGF.Builder.getInt8(0), SizeVal, |
| 1188 | Align.getQuantity(), false); |
Chris Lattner | 1b72677 | 2010-12-02 07:07:26 +0000 | [diff] [blame] | 1189 | |
| 1190 | // Tell the AggExprEmitter that the slot is known zero. |
| 1191 | Slot.setZeroed(); |
| 1192 | } |
| 1193 | |
| 1194 | |
| 1195 | |
| 1196 | |
Mike Stump | e1129a9 | 2009-05-26 18:57:45 +0000 | [diff] [blame] | 1197 | /// EmitAggExpr - Emit the computation of the specified expression of aggregate |
| 1198 | /// type. The result is computed into DestPtr. Note that if DestPtr is null, |
| 1199 | /// the value of the aggregate expression is not needed. If VolatileDest is |
| 1200 | /// true, DestPtr cannot be 0. |
John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 1201 | /// |
| 1202 | /// \param IsInitializer - true if this evaluation is initializing an |
| 1203 | /// object whose lifetime is already being managed. |
John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 1204 | void CodeGenFunction::EmitAggExpr(const Expr *E, AggValueSlot Slot, |
Fariborz Jahanian | 474e2fe | 2010-09-16 00:20:07 +0000 | [diff] [blame] | 1205 | bool IgnoreResult) { |
Chris Lattner | ee755f9 | 2007-08-21 04:59:27 +0000 | [diff] [blame] | 1206 | assert(E && hasAggregateLLVMType(E->getType()) && |
| 1207 | "Invalid aggregate expression to emit"); |
Chris Lattner | 1b72677 | 2010-12-02 07:07:26 +0000 | [diff] [blame] | 1208 | assert((Slot.getAddr() != 0 || Slot.isIgnored()) && |
| 1209 | "slot has bits but no address"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1210 | |
Chris Lattner | 1b72677 | 2010-12-02 07:07:26 +0000 | [diff] [blame] | 1211 | // Optimize the slot if possible. |
| 1212 | CheckAggExprForMemSetUse(Slot, E, *this); |
| 1213 | |
| 1214 | AggExprEmitter(*this, Slot, IgnoreResult).Visit(const_cast<Expr*>(E)); |
Chris Lattner | ee755f9 | 2007-08-21 04:59:27 +0000 | [diff] [blame] | 1215 | } |
Daniel Dunbar | 7482d12 | 2008-09-09 20:49:46 +0000 | [diff] [blame] | 1216 | |
Daniel Dunbar | 18aba0d | 2010-02-05 19:38:31 +0000 | [diff] [blame] | 1217 | LValue CodeGenFunction::EmitAggExprToLValue(const Expr *E) { |
| 1218 | assert(hasAggregateLLVMType(E->getType()) && "Invalid argument!"); |
Daniel Dunbar | 195337d | 2010-02-09 02:48:28 +0000 | [diff] [blame] | 1219 | llvm::Value *Temp = CreateMemTemp(E->getType()); |
Daniel Dunbar | 79c3928 | 2010-08-21 03:15:20 +0000 | [diff] [blame] | 1220 | LValue LV = MakeAddrLValue(Temp, E->getType()); |
John McCall | 7c2349b | 2011-08-25 20:40:09 +0000 | [diff] [blame] | 1221 | EmitAggExpr(E, AggValueSlot::forLValue(LV, AggValueSlot::IsNotDestructed, |
John McCall | 4418439 | 2011-08-26 07:31:35 +0000 | [diff] [blame] | 1222 | AggValueSlot::DoesNotNeedGCBarriers, |
John McCall | 57cd1b8 | 2012-03-28 23:30:44 +0000 | [diff] [blame^] | 1223 | AggValueSlot::IsNotAliased, |
| 1224 | AggValueSlot::IsCompleteObject)); |
Daniel Dunbar | 79c3928 | 2010-08-21 03:15:20 +0000 | [diff] [blame] | 1225 | return LV; |
Daniel Dunbar | 18aba0d | 2010-02-05 19:38:31 +0000 | [diff] [blame] | 1226 | } |
| 1227 | |
John McCall | 57cd1b8 | 2012-03-28 23:30:44 +0000 | [diff] [blame^] | 1228 | void CodeGenFunction::EmitAggregateCopy(llvm::Value *dest, llvm::Value *src, |
| 1229 | QualType type, |
| 1230 | bool isVolatile, unsigned alignment, |
| 1231 | bool destIsCompleteObject) { |
| 1232 | assert(!type->isAnyComplexType() && "Shouldn't happen for complex"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1233 | |
John McCall | 57cd1b8 | 2012-03-28 23:30:44 +0000 | [diff] [blame^] | 1234 | // Get size and alignment info for this type. Note that the type |
| 1235 | // might include an alignment attribute, so we can't just rely on |
| 1236 | // the layout. |
| 1237 | // FIXME: Do we need to handle VLAs here? |
| 1238 | std::pair<CharUnits, CharUnits> typeInfo = |
| 1239 | getContext().getTypeInfoInChars(type); |
| 1240 | |
| 1241 | // If we weren't given an alignment, use the natural alignment. |
| 1242 | if (!alignment) alignment = typeInfo.second.getQuantity(); |
| 1243 | |
| 1244 | CharUnits sizeToCopy = typeInfo.first; |
| 1245 | |
| 1246 | // There's some special logic that applies to C++ classes: |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1247 | if (getContext().getLangOpts().CPlusPlus) { |
John McCall | 57cd1b8 | 2012-03-28 23:30:44 +0000 | [diff] [blame^] | 1248 | if (const RecordType *RT = type->getAs<RecordType>()) { |
| 1249 | // First, we want to assert that we're not doing this to |
| 1250 | // something with a non-trivial operator/constructor. |
| 1251 | CXXRecordDecl *record = cast<CXXRecordDecl>(RT->getDecl()); |
| 1252 | assert((record->hasTrivialCopyConstructor() || |
| 1253 | record->hasTrivialCopyAssignment() || |
| 1254 | record->hasTrivialMoveConstructor() || |
| 1255 | record->hasTrivialMoveAssignment()) && |
Douglas Gregor | e997948 | 2010-05-20 15:39:01 +0000 | [diff] [blame] | 1256 | "Trying to aggregate-copy a type without a trivial copy " |
| 1257 | "constructor or assignment operator"); |
John McCall | 57cd1b8 | 2012-03-28 23:30:44 +0000 | [diff] [blame^] | 1258 | |
| 1259 | // Second, we want to ignore empty classes. |
| 1260 | if (record->isEmpty()) |
Anders Carlsson | 0d7c583 | 2010-05-03 01:20:20 +0000 | [diff] [blame] | 1261 | return; |
John McCall | 57cd1b8 | 2012-03-28 23:30:44 +0000 | [diff] [blame^] | 1262 | |
| 1263 | // Third, if it's possible that the destination might not be a |
| 1264 | // complete object, then we need to make sure we only copy the |
| 1265 | // data size, not the full sizeof, so that we don't overwrite |
| 1266 | // subclass fields in the tailing padding. It's generally going |
| 1267 | // to be more efficient to copy the sizeof, since we can use |
| 1268 | // larger stores. |
| 1269 | // |
| 1270 | // Unions and final classes can never be base classes. |
| 1271 | if (!destIsCompleteObject && !record->isUnion() && |
| 1272 | !record->hasAttr<FinalAttr>()) { |
| 1273 | const ASTRecordLayout &layout |
| 1274 | = getContext().getASTRecordLayout(record); |
| 1275 | sizeToCopy = layout.getDataSize(); |
| 1276 | } |
Anders Carlsson | 0d7c583 | 2010-05-03 01:20:20 +0000 | [diff] [blame] | 1277 | } |
| 1278 | } |
| 1279 | |
John McCall | 57cd1b8 | 2012-03-28 23:30:44 +0000 | [diff] [blame^] | 1280 | llvm::PointerType *DPT = cast<llvm::PointerType>(dest->getType()); |
| 1281 | llvm::Type *DBP = |
| 1282 | llvm::Type::getInt8PtrTy(getLLVMContext(), DPT->getAddressSpace()); |
| 1283 | dest = Builder.CreateBitCast(dest, DBP); |
| 1284 | |
| 1285 | llvm::PointerType *SPT = cast<llvm::PointerType>(src->getType()); |
| 1286 | llvm::Type *SBP = |
| 1287 | llvm::Type::getInt8PtrTy(getLLVMContext(), SPT->getAddressSpace()); |
| 1288 | src = Builder.CreateBitCast(src, SBP); |
| 1289 | |
| 1290 | llvm::Value *sizeVal = |
| 1291 | llvm::ConstantInt::get(CGM.SizeTy, sizeToCopy.getQuantity()); |
| 1292 | |
| 1293 | // Don't do any of the memmove_collectable tests if GC isn't set. |
| 1294 | if (CGM.getLangOpts().getGC() == LangOptions::NonGC) { |
| 1295 | // fall through |
| 1296 | } else if (const RecordType *RT = type->getAs<RecordType>()) { |
| 1297 | if (RT->getDecl()->hasObjectMember()) { |
| 1298 | CGM.getObjCRuntime().EmitGCMemmoveCollectable(*this, dest, src, sizeVal); |
| 1299 | return; |
| 1300 | } |
| 1301 | } else if (type->isArrayType()) { |
| 1302 | QualType baseType = getContext().getBaseElementType(type); |
| 1303 | if (const RecordType *RT = baseType->getAs<RecordType>()) { |
| 1304 | if (RT->getDecl()->hasObjectMember()) { |
| 1305 | CGM.getObjCRuntime().EmitGCMemmoveCollectable(*this, dest, src,sizeVal); |
| 1306 | return; |
| 1307 | } |
| 1308 | } |
| 1309 | } |
| 1310 | |
Chris Lattner | 83c9629 | 2009-02-28 18:31:01 +0000 | [diff] [blame] | 1311 | // Aggregate assignment turns into llvm.memcpy. This is almost valid per |
Chris Lattner | ca4fc2c | 2009-02-28 18:18:58 +0000 | [diff] [blame] | 1312 | // C99 6.5.16.1p3, which states "If the value being stored in an object is |
| 1313 | // read from another object that overlaps in anyway the storage of the first |
| 1314 | // object, then the overlap shall be exact and the two objects shall have |
| 1315 | // qualified or unqualified versions of a compatible type." |
| 1316 | // |
Chris Lattner | 83c9629 | 2009-02-28 18:31:01 +0000 | [diff] [blame] | 1317 | // memcpy is not defined if the source and destination pointers are exactly |
Chris Lattner | ca4fc2c | 2009-02-28 18:18:58 +0000 | [diff] [blame] | 1318 | // equal, but other compilers do this optimization, and almost every memcpy |
| 1319 | // implementation handles this case safely. If there is a libc that does not |
| 1320 | // safely handle this, we can add a target hook. |
Fariborz Jahanian | 55bcace | 2010-06-15 22:44:06 +0000 | [diff] [blame] | 1321 | |
John McCall | 57cd1b8 | 2012-03-28 23:30:44 +0000 | [diff] [blame^] | 1322 | Builder.CreateMemCpy(dest, src, sizeVal, alignment, isVolatile); |
Daniel Dunbar | 7482d12 | 2008-09-09 20:49:46 +0000 | [diff] [blame] | 1323 | } |
Sebastian Redl | 32cf1f2 | 2012-02-17 08:42:25 +0000 | [diff] [blame] | 1324 | |
Sebastian Redl | 972edf0 | 2012-02-19 16:03:09 +0000 | [diff] [blame] | 1325 | void CodeGenFunction::MaybeEmitStdInitializerListCleanup(llvm::Value *loc, |
| 1326 | const Expr *init) { |
Sebastian Redl | 32cf1f2 | 2012-02-17 08:42:25 +0000 | [diff] [blame] | 1327 | const ExprWithCleanups *cleanups = dyn_cast<ExprWithCleanups>(init); |
Sebastian Redl | 972edf0 | 2012-02-19 16:03:09 +0000 | [diff] [blame] | 1328 | if (cleanups) |
| 1329 | init = cleanups->getSubExpr(); |
Sebastian Redl | 32cf1f2 | 2012-02-17 08:42:25 +0000 | [diff] [blame] | 1330 | |
| 1331 | if (isa<InitListExpr>(init) && |
| 1332 | cast<InitListExpr>(init)->initializesStdInitializerList()) { |
| 1333 | // We initialized this std::initializer_list with an initializer list. |
| 1334 | // A backing array was created. Push a cleanup for it. |
Sebastian Redl | 972edf0 | 2012-02-19 16:03:09 +0000 | [diff] [blame] | 1335 | EmitStdInitializerListCleanup(loc, cast<InitListExpr>(init)); |
Sebastian Redl | 32cf1f2 | 2012-02-17 08:42:25 +0000 | [diff] [blame] | 1336 | } |
| 1337 | } |
| 1338 | |
Sebastian Redl | af130fd | 2012-02-19 12:28:02 +0000 | [diff] [blame] | 1339 | static void EmitRecursiveStdInitializerListCleanup(CodeGenFunction &CGF, |
| 1340 | llvm::Value *arrayStart, |
| 1341 | const InitListExpr *init) { |
| 1342 | // Check if there are any recursive cleanups to do, i.e. if we have |
| 1343 | // std::initializer_list<std::initializer_list<obj>> list = {{obj()}}; |
| 1344 | // then we need to destroy the inner array as well. |
| 1345 | for (unsigned i = 0, e = init->getNumInits(); i != e; ++i) { |
| 1346 | const InitListExpr *subInit = dyn_cast<InitListExpr>(init->getInit(i)); |
| 1347 | if (!subInit || !subInit->initializesStdInitializerList()) |
| 1348 | continue; |
| 1349 | |
| 1350 | // This one needs to be destroyed. Get the address of the std::init_list. |
| 1351 | llvm::Value *offset = llvm::ConstantInt::get(CGF.SizeTy, i); |
| 1352 | llvm::Value *loc = CGF.Builder.CreateInBoundsGEP(arrayStart, offset, |
| 1353 | "std.initlist"); |
| 1354 | CGF.EmitStdInitializerListCleanup(loc, subInit); |
| 1355 | } |
| 1356 | } |
| 1357 | |
| 1358 | void CodeGenFunction::EmitStdInitializerListCleanup(llvm::Value *loc, |
Sebastian Redl | 32cf1f2 | 2012-02-17 08:42:25 +0000 | [diff] [blame] | 1359 | const InitListExpr *init) { |
| 1360 | ASTContext &ctx = getContext(); |
| 1361 | QualType element = GetStdInitializerListElementType(init->getType()); |
| 1362 | unsigned numInits = init->getNumInits(); |
| 1363 | llvm::APInt size(ctx.getTypeSize(ctx.getSizeType()), numInits); |
| 1364 | QualType array =ctx.getConstantArrayType(element, size, ArrayType::Normal, 0); |
| 1365 | QualType arrayPtr = ctx.getPointerType(array); |
| 1366 | llvm::Type *arrayPtrType = ConvertType(arrayPtr); |
| 1367 | |
| 1368 | // lvalue is the location of a std::initializer_list, which as its first |
| 1369 | // element has a pointer to the array we want to destroy. |
Sebastian Redl | af130fd | 2012-02-19 12:28:02 +0000 | [diff] [blame] | 1370 | llvm::Value *startPointer = Builder.CreateStructGEP(loc, 0, "startPointer"); |
| 1371 | llvm::Value *startAddress = Builder.CreateLoad(startPointer, "startAddress"); |
Sebastian Redl | 32cf1f2 | 2012-02-17 08:42:25 +0000 | [diff] [blame] | 1372 | |
Sebastian Redl | af130fd | 2012-02-19 12:28:02 +0000 | [diff] [blame] | 1373 | ::EmitRecursiveStdInitializerListCleanup(*this, startAddress, init); |
| 1374 | |
| 1375 | llvm::Value *arrayAddress = |
| 1376 | Builder.CreateBitCast(startAddress, arrayPtrType, "arrayAddress"); |
Sebastian Redl | 32cf1f2 | 2012-02-17 08:42:25 +0000 | [diff] [blame] | 1377 | ::EmitStdInitializerListCleanup(*this, array, arrayAddress, init); |
| 1378 | } |