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