| 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" | 
| Daniel Dunbar | de7fb84 | 2008-08-11 05:00:27 +0000 | [diff] [blame] | 19 | #include "clang/AST/StmtVisitor.h" | 
| Chris Lattner | 883f6a7 | 2007-08-11 00:04:45 +0000 | [diff] [blame] | 20 | #include "llvm/Constants.h" | 
|  | 21 | #include "llvm/Function.h" | 
| Devang Patel | 636c3d0 | 2007-10-26 17:44:44 +0000 | [diff] [blame] | 22 | #include "llvm/GlobalVariable.h" | 
| Chris Lattner | f81557c | 2008-04-04 18:42:16 +0000 | [diff] [blame] | 23 | #include "llvm/Intrinsics.h" | 
| Chris Lattner | af6f528 | 2007-08-10 20:13:28 +0000 | [diff] [blame] | 24 | using namespace clang; | 
|  | 25 | using namespace CodeGen; | 
| Chris Lattner | 883f6a7 | 2007-08-11 00:04:45 +0000 | [diff] [blame] | 26 |  | 
| Chris Lattner | 9c03356 | 2007-08-21 04:25:47 +0000 | [diff] [blame] | 27 | //===----------------------------------------------------------------------===// | 
|  | 28 | //                        Aggregate Expression Emitter | 
|  | 29 | //===----------------------------------------------------------------------===// | 
|  | 30 |  | 
|  | 31 | namespace  { | 
| Benjamin Kramer | 85b4521 | 2009-11-28 19:45:26 +0000 | [diff] [blame] | 32 | class AggExprEmitter : public StmtVisitor<AggExprEmitter> { | 
| Chris Lattner | 9c03356 | 2007-08-21 04:25:47 +0000 | [diff] [blame] | 33 | CodeGenFunction &CGF; | 
| Daniel Dunbar | 45d196b | 2008-11-01 01:53:16 +0000 | [diff] [blame] | 34 | CGBuilderTy &Builder; | 
| John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 35 | AggValueSlot Dest; | 
| Mike Stump | 49d1cd5 | 2009-05-26 22:03:21 +0000 | [diff] [blame] | 36 | bool IgnoreResult; | 
| John McCall | ef072fd | 2010-05-22 01:48:05 +0000 | [diff] [blame] | 37 |  | 
|  | 38 | ReturnValueSlot getReturnValueSlot() const { | 
| John McCall | fa037bd | 2010-05-22 22:13:32 +0000 | [diff] [blame] | 39 | // If the destination slot requires garbage collection, we can't | 
|  | 40 | // use the real return value slot, because we have to use the GC | 
|  | 41 | // API. | 
| John McCall | d1a5f13 | 2010-09-16 03:13:23 +0000 | [diff] [blame] | 42 | if (Dest.requiresGCollection()) return ReturnValueSlot(); | 
| John McCall | fa037bd | 2010-05-22 22:13:32 +0000 | [diff] [blame] | 43 |  | 
| John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 44 | return ReturnValueSlot(Dest.getAddr(), Dest.isVolatile()); | 
|  | 45 | } | 
|  | 46 |  | 
|  | 47 | AggValueSlot EnsureSlot(QualType T) { | 
|  | 48 | if (!Dest.isIgnored()) return Dest; | 
|  | 49 | return CGF.CreateAggTemp(T, "agg.tmp.ensured"); | 
| John McCall | ef072fd | 2010-05-22 01:48:05 +0000 | [diff] [blame] | 50 | } | 
| John McCall | fa037bd | 2010-05-22 22:13:32 +0000 | [diff] [blame] | 51 |  | 
| Chris Lattner | 9c03356 | 2007-08-21 04:25:47 +0000 | [diff] [blame] | 52 | public: | 
| John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 53 | AggExprEmitter(CodeGenFunction &cgf, AggValueSlot Dest, | 
| Fariborz Jahanian | 474e2fe | 2010-09-16 00:20:07 +0000 | [diff] [blame] | 54 | bool ignore) | 
| John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 55 | : CGF(cgf), Builder(CGF.Builder), Dest(Dest), | 
| Fariborz Jahanian | 474e2fe | 2010-09-16 00:20:07 +0000 | [diff] [blame] | 56 | IgnoreResult(ignore) { | 
| Chris Lattner | 9c03356 | 2007-08-21 04:25:47 +0000 | [diff] [blame] | 57 | } | 
|  | 58 |  | 
| Chris Lattner | ee755f9 | 2007-08-21 04:59:27 +0000 | [diff] [blame] | 59 | //===--------------------------------------------------------------------===// | 
|  | 60 | //                               Utilities | 
|  | 61 | //===--------------------------------------------------------------------===// | 
|  | 62 |  | 
| Chris Lattner | 9c03356 | 2007-08-21 04:25:47 +0000 | [diff] [blame] | 63 | /// EmitAggLoadOfLValue - Given an expression with aggregate type that | 
|  | 64 | /// represents a value lvalue, this method emits the address of the lvalue, | 
|  | 65 | /// then loads the result into DestPtr. | 
|  | 66 | void EmitAggLoadOfLValue(const Expr *E); | 
| Eli Friedman | 922696f | 2008-05-19 17:51:16 +0000 | [diff] [blame] | 67 |  | 
| Mike Stump | 4ac20dd | 2009-05-23 20:28:01 +0000 | [diff] [blame] | 68 | /// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired. | 
| Mike Stump | 49d1cd5 | 2009-05-26 22:03:21 +0000 | [diff] [blame] | 69 | void EmitFinalDestCopy(const Expr *E, LValue Src, bool Ignore = false); | 
|  | 70 | void EmitFinalDestCopy(const Expr *E, RValue Src, bool Ignore = false); | 
| Mike Stump | 4ac20dd | 2009-05-23 20:28:01 +0000 | [diff] [blame] | 71 |  | 
| John McCall | fa037bd | 2010-05-22 22:13:32 +0000 | [diff] [blame] | 72 | void EmitGCMove(const Expr *E, RValue Src); | 
|  | 73 |  | 
|  | 74 | bool TypeRequiresGCollection(QualType T); | 
|  | 75 |  | 
| Chris Lattner | ee755f9 | 2007-08-21 04:59:27 +0000 | [diff] [blame] | 76 | //===--------------------------------------------------------------------===// | 
|  | 77 | //                            Visitor Methods | 
|  | 78 | //===--------------------------------------------------------------------===// | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 79 |  | 
| Chris Lattner | 9c03356 | 2007-08-21 04:25:47 +0000 | [diff] [blame] | 80 | void VisitStmt(Stmt *S) { | 
| Daniel Dunbar | 488e993 | 2008-08-16 00:56:44 +0000 | [diff] [blame] | 81 | CGF.ErrorUnsupported(S, "aggregate expression"); | 
| Chris Lattner | 9c03356 | 2007-08-21 04:25:47 +0000 | [diff] [blame] | 82 | } | 
|  | 83 | void VisitParenExpr(ParenExpr *PE) { Visit(PE->getSubExpr()); } | 
| Peter Collingbourne | f111d93 | 2011-04-15 00:35:48 +0000 | [diff] [blame] | 84 | void VisitGenericSelectionExpr(GenericSelectionExpr *GE) { | 
|  | 85 | Visit(GE->getResultExpr()); | 
|  | 86 | } | 
| Eli Friedman | 12444a2 | 2009-01-27 09:03:41 +0000 | [diff] [blame] | 87 | void VisitUnaryExtension(UnaryOperator *E) { Visit(E->getSubExpr()); } | 
| Chris Lattner | 9c03356 | 2007-08-21 04:25:47 +0000 | [diff] [blame] | 88 |  | 
|  | 89 | // l-values. | 
| Seo Sanghyeon | 9b73b39 | 2007-12-14 02:04:12 +0000 | [diff] [blame] | 90 | void VisitDeclRefExpr(DeclRefExpr *DRE) { EmitAggLoadOfLValue(DRE); } | 
|  | 91 | void VisitMemberExpr(MemberExpr *ME) { EmitAggLoadOfLValue(ME); } | 
|  | 92 | void VisitUnaryDeref(UnaryOperator *E) { EmitAggLoadOfLValue(E); } | 
| Daniel Dunbar | 5be028f | 2010-01-04 18:47:06 +0000 | [diff] [blame] | 93 | void VisitStringLiteral(StringLiteral *E) { EmitAggLoadOfLValue(E); } | 
| Douglas Gregor | 751ec9b | 2011-06-17 04:59:12 +0000 | [diff] [blame^] | 94 | void VisitCompoundLiteralExpr(CompoundLiteralExpr *E); | 
| Seo Sanghyeon | 9b73b39 | 2007-12-14 02:04:12 +0000 | [diff] [blame] | 95 | void VisitArraySubscriptExpr(ArraySubscriptExpr *E) { | 
|  | 96 | EmitAggLoadOfLValue(E); | 
|  | 97 | } | 
| Chris Lattner | f0a990c | 2009-04-21 23:00:09 +0000 | [diff] [blame] | 98 | void VisitBlockDeclRefExpr(const BlockDeclRefExpr *E) { | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 99 | EmitAggLoadOfLValue(E); | 
| Chris Lattner | f0a990c | 2009-04-21 23:00:09 +0000 | [diff] [blame] | 100 | } | 
|  | 101 | void VisitPredefinedExpr(const PredefinedExpr *E) { | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 102 | EmitAggLoadOfLValue(E); | 
| Chris Lattner | f0a990c | 2009-04-21 23:00:09 +0000 | [diff] [blame] | 103 | } | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 104 |  | 
| Chris Lattner | 9c03356 | 2007-08-21 04:25:47 +0000 | [diff] [blame] | 105 | // Operators. | 
| Anders Carlsson | 4d8673b | 2009-08-07 23:22:37 +0000 | [diff] [blame] | 106 | void VisitCastExpr(CastExpr *E); | 
| Anders Carlsson | 148fe67 | 2007-10-31 22:04:46 +0000 | [diff] [blame] | 107 | void VisitCallExpr(const CallExpr *E); | 
| Chris Lattner | b2d963f | 2007-08-31 22:54:14 +0000 | [diff] [blame] | 108 | void VisitStmtExpr(const StmtExpr *E); | 
| Chris Lattner | 9c03356 | 2007-08-21 04:25:47 +0000 | [diff] [blame] | 109 | void VisitBinaryOperator(const BinaryOperator *BO); | 
| Fariborz Jahanian | 8bfd31f | 2009-10-22 22:57:31 +0000 | [diff] [blame] | 110 | void VisitPointerToDataMemberBinaryOperator(const BinaryOperator *BO); | 
| Chris Lattner | 03d6fb9 | 2007-08-21 04:43:17 +0000 | [diff] [blame] | 111 | void VisitBinAssign(const BinaryOperator *E); | 
| Eli Friedman | 07fa52a | 2008-05-20 07:56:31 +0000 | [diff] [blame] | 112 | void VisitBinComma(const BinaryOperator *E); | 
| Chris Lattner | 9c03356 | 2007-08-21 04:25:47 +0000 | [diff] [blame] | 113 |  | 
| Chris Lattner | 8fdf328 | 2008-06-24 17:04:18 +0000 | [diff] [blame] | 114 | void VisitObjCMessageExpr(ObjCMessageExpr *E); | 
| Daniel Dunbar | 0a04d77 | 2008-08-23 10:51:21 +0000 | [diff] [blame] | 115 | void VisitObjCIvarRefExpr(ObjCIvarRefExpr *E) { | 
|  | 116 | EmitAggLoadOfLValue(E); | 
|  | 117 | } | 
| Daniel Dunbar | 9c3fc70 | 2008-08-27 06:57:25 +0000 | [diff] [blame] | 118 | void VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *E); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 119 |  | 
| John McCall | 56ca35d | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 120 | void VisitAbstractConditionalOperator(const AbstractConditionalOperator *CO); | 
| Anders Carlsson | a294ca8 | 2009-07-08 18:33:14 +0000 | [diff] [blame] | 121 | void VisitChooseExpr(const ChooseExpr *CE); | 
| Devang Patel | 636c3d0 | 2007-10-26 17:44:44 +0000 | [diff] [blame] | 122 | void VisitInitListExpr(InitListExpr *E); | 
| Anders Carlsson | 30311fa | 2009-12-16 06:57:54 +0000 | [diff] [blame] | 123 | void VisitImplicitValueInitExpr(ImplicitValueInitExpr *E); | 
| Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 124 | void VisitCXXDefaultArgExpr(CXXDefaultArgExpr *DAE) { | 
|  | 125 | Visit(DAE->getExpr()); | 
|  | 126 | } | 
| Anders Carlsson | b58d017 | 2009-05-30 23:23:33 +0000 | [diff] [blame] | 127 | void VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E); | 
| Anders Carlsson | 31ccf37 | 2009-05-03 17:47:16 +0000 | [diff] [blame] | 128 | void VisitCXXConstructExpr(const CXXConstructExpr *E); | 
| John McCall | 4765fa0 | 2010-12-06 08:20:24 +0000 | [diff] [blame] | 129 | void VisitExprWithCleanups(ExprWithCleanups *E); | 
| Douglas Gregor | ed8abf1 | 2010-07-08 06:14:04 +0000 | [diff] [blame] | 130 | void VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *E); | 
| Mike Stump | 2710c41 | 2009-11-18 00:40:12 +0000 | [diff] [blame] | 131 | void VisitCXXTypeidExpr(CXXTypeidExpr *E) { EmitAggLoadOfLValue(E); } | 
| Anders Carlsson | 7f6ad15 | 2009-05-19 04:48:36 +0000 | [diff] [blame] | 132 |  | 
| John McCall | e996ffd | 2011-02-16 08:02:54 +0000 | [diff] [blame] | 133 | void VisitOpaqueValueExpr(OpaqueValueExpr *E); | 
|  | 134 |  | 
| Eli Friedman | b185124 | 2008-05-27 15:51:49 +0000 | [diff] [blame] | 135 | void VisitVAArgExpr(VAArgExpr *E); | 
| Chris Lattner | f81557c | 2008-04-04 18:42:16 +0000 | [diff] [blame] | 136 |  | 
| John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 137 | void EmitInitializationToLValue(Expr *E, LValue Address); | 
|  | 138 | void EmitNullInitializationToLValue(LValue Address); | 
| Chris Lattner | 9c03356 | 2007-08-21 04:25:47 +0000 | [diff] [blame] | 139 | //  case Expr::ChooseExprClass: | 
| Mike Stump | 39406b1 | 2009-12-09 19:24:08 +0000 | [diff] [blame] | 140 | void VisitCXXThrowExpr(const CXXThrowExpr *E) { CGF.EmitCXXThrowExpr(E); } | 
| Chris Lattner | 9c03356 | 2007-08-21 04:25:47 +0000 | [diff] [blame] | 141 | }; | 
|  | 142 | }  // end anonymous namespace. | 
|  | 143 |  | 
| Chris Lattner | ee755f9 | 2007-08-21 04:59:27 +0000 | [diff] [blame] | 144 | //===----------------------------------------------------------------------===// | 
|  | 145 | //                                Utilities | 
|  | 146 | //===----------------------------------------------------------------------===// | 
| Chris Lattner | 9c03356 | 2007-08-21 04:25:47 +0000 | [diff] [blame] | 147 |  | 
| Chris Lattner | 883f6a7 | 2007-08-11 00:04:45 +0000 | [diff] [blame] | 148 | /// EmitAggLoadOfLValue - Given an expression with aggregate type that | 
|  | 149 | /// represents a value lvalue, this method emits the address of the lvalue, | 
|  | 150 | /// then loads the result into DestPtr. | 
| Chris Lattner | 9c03356 | 2007-08-21 04:25:47 +0000 | [diff] [blame] | 151 | void AggExprEmitter::EmitAggLoadOfLValue(const Expr *E) { | 
|  | 152 | LValue LV = CGF.EmitLValue(E); | 
| Mike Stump | 4ac20dd | 2009-05-23 20:28:01 +0000 | [diff] [blame] | 153 | EmitFinalDestCopy(E, LV); | 
|  | 154 | } | 
|  | 155 |  | 
| John McCall | fa037bd | 2010-05-22 22:13:32 +0000 | [diff] [blame] | 156 | /// \brief True if the given aggregate type requires special GC API calls. | 
|  | 157 | bool AggExprEmitter::TypeRequiresGCollection(QualType T) { | 
|  | 158 | // Only record types have members that might require garbage collection. | 
|  | 159 | const RecordType *RecordTy = T->getAs<RecordType>(); | 
|  | 160 | if (!RecordTy) return false; | 
|  | 161 |  | 
|  | 162 | // Don't mess with non-trivial C++ types. | 
|  | 163 | RecordDecl *Record = RecordTy->getDecl(); | 
|  | 164 | if (isa<CXXRecordDecl>(Record) && | 
|  | 165 | (!cast<CXXRecordDecl>(Record)->hasTrivialCopyConstructor() || | 
|  | 166 | !cast<CXXRecordDecl>(Record)->hasTrivialDestructor())) | 
|  | 167 | return false; | 
|  | 168 |  | 
|  | 169 | // Check whether the type has an object member. | 
|  | 170 | return Record->hasObjectMember(); | 
|  | 171 | } | 
|  | 172 |  | 
|  | 173 | /// \brief Perform the final move to DestPtr if RequiresGCollection is set. | 
|  | 174 | /// | 
|  | 175 | /// The idea is that you do something like this: | 
|  | 176 | ///   RValue Result = EmitSomething(..., getReturnValueSlot()); | 
|  | 177 | ///   EmitGCMove(E, Result); | 
|  | 178 | /// If GC doesn't interfere, this will cause the result to be emitted | 
|  | 179 | /// directly into the return value slot.  If GC does interfere, a final | 
|  | 180 | /// move will be performed. | 
|  | 181 | void AggExprEmitter::EmitGCMove(const Expr *E, RValue Src) { | 
| John McCall | d1a5f13 | 2010-09-16 03:13:23 +0000 | [diff] [blame] | 182 | if (Dest.requiresGCollection()) { | 
| Ken Dyck | 479b61c | 2011-04-24 17:08:00 +0000 | [diff] [blame] | 183 | CharUnits size = CGF.getContext().getTypeSizeInChars(E->getType()); | 
| Fariborz Jahanian | 55bcace | 2010-06-15 22:44:06 +0000 | [diff] [blame] | 184 | const llvm::Type *SizeTy = CGF.ConvertType(CGF.getContext().getSizeType()); | 
| Ken Dyck | 479b61c | 2011-04-24 17:08:00 +0000 | [diff] [blame] | 185 | llvm::Value *SizeVal = llvm::ConstantInt::get(SizeTy, size.getQuantity()); | 
| John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 186 | CGF.CGM.getObjCRuntime().EmitGCMemmoveCollectable(CGF, Dest.getAddr(), | 
| John McCall | fa037bd | 2010-05-22 22:13:32 +0000 | [diff] [blame] | 187 | Src.getAggregateAddr(), | 
| Fariborz Jahanian | 55bcace | 2010-06-15 22:44:06 +0000 | [diff] [blame] | 188 | SizeVal); | 
|  | 189 | } | 
| John McCall | fa037bd | 2010-05-22 22:13:32 +0000 | [diff] [blame] | 190 | } | 
|  | 191 |  | 
| Mike Stump | 4ac20dd | 2009-05-23 20:28:01 +0000 | [diff] [blame] | 192 | /// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired. | 
| Mike Stump | 49d1cd5 | 2009-05-26 22:03:21 +0000 | [diff] [blame] | 193 | void AggExprEmitter::EmitFinalDestCopy(const Expr *E, RValue Src, bool Ignore) { | 
| Mike Stump | 4ac20dd | 2009-05-23 20:28:01 +0000 | [diff] [blame] | 194 | assert(Src.isAggregate() && "value must be aggregate value!"); | 
|  | 195 |  | 
| John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 196 | // If Dest is ignored, then we're evaluating an aggregate expression | 
| John McCall | a8f28da | 2010-08-25 02:50:31 +0000 | [diff] [blame] | 197 | // in a context (like an expression statement) that doesn't care | 
|  | 198 | // about the result.  C says that an lvalue-to-rvalue conversion is | 
|  | 199 | // performed in these cases; C++ says that it is not.  In either | 
|  | 200 | // case, we don't actually need to do anything unless the value is | 
|  | 201 | // volatile. | 
| John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 202 | if (Dest.isIgnored()) { | 
| John McCall | a8f28da | 2010-08-25 02:50:31 +0000 | [diff] [blame] | 203 | if (!Src.isVolatileQualified() || | 
|  | 204 | CGF.CGM.getLangOptions().CPlusPlus || | 
|  | 205 | (IgnoreResult && Ignore)) | 
| Mike Stump | 9ccb103 | 2009-05-23 22:01:27 +0000 | [diff] [blame] | 206 | return; | 
| Fariborz Jahanian | 8a97005 | 2010-10-22 22:05:03 +0000 | [diff] [blame] | 207 |  | 
| Mike Stump | 49d1cd5 | 2009-05-26 22:03:21 +0000 | [diff] [blame] | 208 | // If the source is volatile, we must read from it; to do that, we need | 
|  | 209 | // some place to put it. | 
| John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 210 | Dest = CGF.CreateAggTemp(E->getType(), "agg.tmp"); | 
| Mike Stump | 9ccb103 | 2009-05-23 22:01:27 +0000 | [diff] [blame] | 211 | } | 
| Chris Lattner | 883f6a7 | 2007-08-11 00:04:45 +0000 | [diff] [blame] | 212 |  | 
| John McCall | d1a5f13 | 2010-09-16 03:13:23 +0000 | [diff] [blame] | 213 | if (Dest.requiresGCollection()) { | 
| Ken Dyck | 479b61c | 2011-04-24 17:08:00 +0000 | [diff] [blame] | 214 | CharUnits size = CGF.getContext().getTypeSizeInChars(E->getType()); | 
| Fariborz Jahanian | 55bcace | 2010-06-15 22:44:06 +0000 | [diff] [blame] | 215 | const llvm::Type *SizeTy = CGF.ConvertType(CGF.getContext().getSizeType()); | 
| Ken Dyck | 479b61c | 2011-04-24 17:08:00 +0000 | [diff] [blame] | 216 | llvm::Value *SizeVal = llvm::ConstantInt::get(SizeTy, size.getQuantity()); | 
| Fariborz Jahanian | 08c3213 | 2009-08-31 19:33:16 +0000 | [diff] [blame] | 217 | CGF.CGM.getObjCRuntime().EmitGCMemmoveCollectable(CGF, | 
| John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 218 | Dest.getAddr(), | 
|  | 219 | Src.getAggregateAddr(), | 
|  | 220 | SizeVal); | 
| Fariborz Jahanian | 08c3213 | 2009-08-31 19:33:16 +0000 | [diff] [blame] | 221 | return; | 
|  | 222 | } | 
| Mike Stump | 4ac20dd | 2009-05-23 20:28:01 +0000 | [diff] [blame] | 223 | // If the result of the assignment is used, copy the LHS there also. | 
|  | 224 | // FIXME: Pass VolatileDest as well.  I think we also need to merge volatile | 
|  | 225 | // from the source as well, as we can't eliminate it if either operand | 
|  | 226 | // is volatile, unless copy has volatile for both source and destination.. | 
| John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 227 | CGF.EmitAggregateCopy(Dest.getAddr(), Src.getAggregateAddr(), E->getType(), | 
|  | 228 | Dest.isVolatile()|Src.isVolatileQualified()); | 
| Mike Stump | 4ac20dd | 2009-05-23 20:28:01 +0000 | [diff] [blame] | 229 | } | 
|  | 230 |  | 
|  | 231 | /// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired. | 
| Mike Stump | 49d1cd5 | 2009-05-26 22:03:21 +0000 | [diff] [blame] | 232 | void AggExprEmitter::EmitFinalDestCopy(const Expr *E, LValue Src, bool Ignore) { | 
| Mike Stump | 4ac20dd | 2009-05-23 20:28:01 +0000 | [diff] [blame] | 233 | assert(Src.isSimple() && "Can't have aggregate bitfield, vector, etc"); | 
|  | 234 |  | 
|  | 235 | EmitFinalDestCopy(E, RValue::getAggregate(Src.getAddress(), | 
| Mike Stump | 49d1cd5 | 2009-05-26 22:03:21 +0000 | [diff] [blame] | 236 | Src.isVolatileQualified()), | 
|  | 237 | Ignore); | 
| Chris Lattner | 883f6a7 | 2007-08-11 00:04:45 +0000 | [diff] [blame] | 238 | } | 
|  | 239 |  | 
| Chris Lattner | ee755f9 | 2007-08-21 04:59:27 +0000 | [diff] [blame] | 240 | //===----------------------------------------------------------------------===// | 
|  | 241 | //                            Visitor Methods | 
|  | 242 | //===----------------------------------------------------------------------===// | 
|  | 243 |  | 
| John McCall | e996ffd | 2011-02-16 08:02:54 +0000 | [diff] [blame] | 244 | void AggExprEmitter::VisitOpaqueValueExpr(OpaqueValueExpr *e) { | 
| John McCall | 56ca35d | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 245 | EmitFinalDestCopy(e, CGF.getOpaqueLValueMapping(e)); | 
| John McCall | e996ffd | 2011-02-16 08:02:54 +0000 | [diff] [blame] | 246 | } | 
|  | 247 |  | 
| Douglas Gregor | 751ec9b | 2011-06-17 04:59:12 +0000 | [diff] [blame^] | 248 | void | 
|  | 249 | AggExprEmitter::VisitCompoundLiteralExpr(CompoundLiteralExpr *E) { | 
|  | 250 | AggValueSlot Slot = EnsureSlot(E->getType()); | 
|  | 251 | CGF.EmitAggExpr(E->getInitializer(), Slot); | 
|  | 252 | } | 
|  | 253 |  | 
|  | 254 |  | 
| Anders Carlsson | 4d8673b | 2009-08-07 23:22:37 +0000 | [diff] [blame] | 255 | void AggExprEmitter::VisitCastExpr(CastExpr *E) { | 
| Anders Carlsson | 3016842 | 2009-09-29 01:23:39 +0000 | [diff] [blame] | 256 | switch (E->getCastKind()) { | 
| Anders Carlsson | 575b374 | 2011-04-11 02:03:26 +0000 | [diff] [blame] | 257 | case CK_Dynamic: { | 
| Douglas Gregor | 69cfeb1 | 2010-05-14 21:31:02 +0000 | [diff] [blame] | 258 | assert(isa<CXXDynamicCastExpr>(E) && "CK_Dynamic without a dynamic_cast?"); | 
|  | 259 | LValue LV = CGF.EmitCheckedLValue(E->getSubExpr()); | 
|  | 260 | // FIXME: Do we also need to handle property references here? | 
|  | 261 | if (LV.isSimple()) | 
|  | 262 | CGF.EmitDynamicCast(LV.getAddress(), cast<CXXDynamicCastExpr>(E)); | 
|  | 263 | else | 
|  | 264 | CGF.CGM.ErrorUnsupported(E, "non-simple lvalue dynamic_cast"); | 
|  | 265 |  | 
| John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 266 | if (!Dest.isIgnored()) | 
|  | 267 | CGF.CGM.ErrorUnsupported(E, "lvalue dynamic_cast with a destination"); | 
| Douglas Gregor | 69cfeb1 | 2010-05-14 21:31:02 +0000 | [diff] [blame] | 268 | break; | 
|  | 269 | } | 
|  | 270 |  | 
| John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 271 | case CK_ToUnion: { | 
| John McCall | 6591271 | 2011-04-12 22:02:02 +0000 | [diff] [blame] | 272 | if (Dest.isIgnored()) break; | 
|  | 273 |  | 
| Anders Carlsson | 4d8673b | 2009-08-07 23:22:37 +0000 | [diff] [blame] | 274 | // GCC union extension | 
| Daniel Dunbar | 79c3928 | 2010-08-21 03:15:20 +0000 | [diff] [blame] | 275 | QualType Ty = E->getSubExpr()->getType(); | 
|  | 276 | QualType PtrTy = CGF.getContext().getPointerType(Ty); | 
| John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 277 | llvm::Value *CastPtr = Builder.CreateBitCast(Dest.getAddr(), | 
| Eli Friedman | 34ebf4d | 2009-06-03 20:45:06 +0000 | [diff] [blame] | 278 | CGF.ConvertType(PtrTy)); | 
| John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 279 | EmitInitializationToLValue(E->getSubExpr(), | 
|  | 280 | CGF.MakeAddrLValue(CastPtr, Ty)); | 
| Anders Carlsson | 3016842 | 2009-09-29 01:23:39 +0000 | [diff] [blame] | 281 | break; | 
| Nuno Lopes | 7e91627 | 2009-01-15 20:14:33 +0000 | [diff] [blame] | 282 | } | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 283 |  | 
| John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 284 | case CK_DerivedToBase: | 
|  | 285 | case CK_BaseToDerived: | 
|  | 286 | case CK_UncheckedDerivedToBase: { | 
| Douglas Gregor | 2d6b0e9 | 2010-05-22 05:17:18 +0000 | [diff] [blame] | 287 | assert(0 && "cannot perform hierarchy conversion in EmitAggExpr: " | 
|  | 288 | "should have been unpacked before we got here"); | 
|  | 289 | break; | 
|  | 290 | } | 
|  | 291 |  | 
| John McCall | f6a1648 | 2010-12-04 03:47:34 +0000 | [diff] [blame] | 292 | case CK_GetObjCProperty: { | 
|  | 293 | LValue LV = CGF.EmitLValue(E->getSubExpr()); | 
|  | 294 | assert(LV.isPropertyRef()); | 
|  | 295 | RValue RV = CGF.EmitLoadOfPropertyRefLValue(LV, getReturnValueSlot()); | 
|  | 296 | EmitGCMove(E, RV); | 
|  | 297 | break; | 
|  | 298 | } | 
|  | 299 |  | 
|  | 300 | case CK_LValueToRValue: // hope for downstream optimization | 
| John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 301 | case CK_NoOp: | 
|  | 302 | case CK_UserDefinedConversion: | 
|  | 303 | case CK_ConstructorConversion: | 
| Anders Carlsson | 3016842 | 2009-09-29 01:23:39 +0000 | [diff] [blame] | 304 | assert(CGF.getContext().hasSameUnqualifiedType(E->getSubExpr()->getType(), | 
|  | 305 | E->getType()) && | 
|  | 306 | "Implicit cast types must be compatible"); | 
|  | 307 | Visit(E->getSubExpr()); | 
|  | 308 | break; | 
| John McCall | 0ae287a | 2010-12-01 04:43:34 +0000 | [diff] [blame] | 309 |  | 
| John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 310 | case CK_LValueBitCast: | 
| John McCall | 0ae287a | 2010-12-01 04:43:34 +0000 | [diff] [blame] | 311 | llvm_unreachable("should not be emitting lvalue bitcast as rvalue"); | 
| Douglas Gregor | e39a389 | 2010-07-13 23:17:26 +0000 | [diff] [blame] | 312 | break; | 
| John McCall | 1de4d4e | 2011-04-07 08:22:57 +0000 | [diff] [blame] | 313 |  | 
| John McCall | 0ae287a | 2010-12-01 04:43:34 +0000 | [diff] [blame] | 314 | case CK_Dependent: | 
|  | 315 | case CK_BitCast: | 
|  | 316 | case CK_ArrayToPointerDecay: | 
|  | 317 | case CK_FunctionToPointerDecay: | 
|  | 318 | case CK_NullToPointer: | 
|  | 319 | case CK_NullToMemberPointer: | 
|  | 320 | case CK_BaseToDerivedMemberPointer: | 
|  | 321 | case CK_DerivedToBaseMemberPointer: | 
|  | 322 | case CK_MemberPointerToBoolean: | 
|  | 323 | case CK_IntegralToPointer: | 
|  | 324 | case CK_PointerToIntegral: | 
|  | 325 | case CK_PointerToBoolean: | 
|  | 326 | case CK_ToVoid: | 
|  | 327 | case CK_VectorSplat: | 
|  | 328 | case CK_IntegralCast: | 
|  | 329 | case CK_IntegralToBoolean: | 
|  | 330 | case CK_IntegralToFloating: | 
|  | 331 | case CK_FloatingToIntegral: | 
|  | 332 | case CK_FloatingToBoolean: | 
|  | 333 | case CK_FloatingCast: | 
|  | 334 | case CK_AnyPointerToObjCPointerCast: | 
|  | 335 | case CK_AnyPointerToBlockPointerCast: | 
|  | 336 | case CK_ObjCObjectLValueCast: | 
|  | 337 | case CK_FloatingRealToComplex: | 
|  | 338 | case CK_FloatingComplexToReal: | 
|  | 339 | case CK_FloatingComplexToBoolean: | 
|  | 340 | case CK_FloatingComplexCast: | 
|  | 341 | case CK_FloatingComplexToIntegralComplex: | 
|  | 342 | case CK_IntegralRealToComplex: | 
|  | 343 | case CK_IntegralComplexToReal: | 
|  | 344 | case CK_IntegralComplexToBoolean: | 
|  | 345 | case CK_IntegralComplexCast: | 
|  | 346 | case CK_IntegralComplexToFloatingComplex: | 
| John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 347 | case CK_ObjCProduceObject: | 
|  | 348 | case CK_ObjCConsumeObject: | 
| John McCall | 0ae287a | 2010-12-01 04:43:34 +0000 | [diff] [blame] | 349 | llvm_unreachable("cast kind invalid for aggregate types"); | 
| Anders Carlsson | 3016842 | 2009-09-29 01:23:39 +0000 | [diff] [blame] | 350 | } | 
| Anders Carlsson | e4707ff | 2008-01-14 06:28:57 +0000 | [diff] [blame] | 351 | } | 
|  | 352 |  | 
| Chris Lattner | 9619662 | 2008-07-26 22:37:01 +0000 | [diff] [blame] | 353 | void AggExprEmitter::VisitCallExpr(const CallExpr *E) { | 
| Anders Carlsson | e70e8f7 | 2009-05-27 16:45:02 +0000 | [diff] [blame] | 354 | if (E->getCallReturnType()->isReferenceType()) { | 
|  | 355 | EmitAggLoadOfLValue(E); | 
|  | 356 | return; | 
|  | 357 | } | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 358 |  | 
| John McCall | fa037bd | 2010-05-22 22:13:32 +0000 | [diff] [blame] | 359 | RValue RV = CGF.EmitCallExpr(E, getReturnValueSlot()); | 
|  | 360 | EmitGCMove(E, RV); | 
| Anders Carlsson | 148fe67 | 2007-10-31 22:04:46 +0000 | [diff] [blame] | 361 | } | 
| Chris Lattner | 9619662 | 2008-07-26 22:37:01 +0000 | [diff] [blame] | 362 |  | 
|  | 363 | void AggExprEmitter::VisitObjCMessageExpr(ObjCMessageExpr *E) { | 
| John McCall | fa037bd | 2010-05-22 22:13:32 +0000 | [diff] [blame] | 364 | RValue RV = CGF.EmitObjCMessageExpr(E, getReturnValueSlot()); | 
|  | 365 | EmitGCMove(E, RV); | 
| Chris Lattner | 8fdf328 | 2008-06-24 17:04:18 +0000 | [diff] [blame] | 366 | } | 
| Anders Carlsson | 148fe67 | 2007-10-31 22:04:46 +0000 | [diff] [blame] | 367 |  | 
| Daniel Dunbar | 9c3fc70 | 2008-08-27 06:57:25 +0000 | [diff] [blame] | 368 | void AggExprEmitter::VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *E) { | 
| John McCall | f6a1648 | 2010-12-04 03:47:34 +0000 | [diff] [blame] | 369 | llvm_unreachable("direct property access not surrounded by " | 
|  | 370 | "lvalue-to-rvalue cast"); | 
| Daniel Dunbar | 9c3fc70 | 2008-08-27 06:57:25 +0000 | [diff] [blame] | 371 | } | 
|  | 372 |  | 
| Chris Lattner | 9619662 | 2008-07-26 22:37:01 +0000 | [diff] [blame] | 373 | void AggExprEmitter::VisitBinComma(const BinaryOperator *E) { | 
| John McCall | 2a41637 | 2010-12-05 02:00:02 +0000 | [diff] [blame] | 374 | CGF.EmitIgnoredExpr(E->getLHS()); | 
| John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 375 | Visit(E->getRHS()); | 
| Eli Friedman | 07fa52a | 2008-05-20 07:56:31 +0000 | [diff] [blame] | 376 | } | 
|  | 377 |  | 
| Chris Lattner | b2d963f | 2007-08-31 22:54:14 +0000 | [diff] [blame] | 378 | void AggExprEmitter::VisitStmtExpr(const StmtExpr *E) { | 
| John McCall | 150b462 | 2011-01-26 04:00:11 +0000 | [diff] [blame] | 379 | CodeGenFunction::StmtExprEvaluation eval(CGF); | 
| John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 380 | CGF.EmitCompoundStmt(*E->getSubStmt(), true, Dest); | 
| Chris Lattner | b2d963f | 2007-08-31 22:54:14 +0000 | [diff] [blame] | 381 | } | 
|  | 382 |  | 
| Chris Lattner | 9c03356 | 2007-08-21 04:25:47 +0000 | [diff] [blame] | 383 | void AggExprEmitter::VisitBinaryOperator(const BinaryOperator *E) { | 
| John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 384 | if (E->getOpcode() == BO_PtrMemD || E->getOpcode() == BO_PtrMemI) | 
| Fariborz Jahanian | 8bfd31f | 2009-10-22 22:57:31 +0000 | [diff] [blame] | 385 | VisitPointerToDataMemberBinaryOperator(E); | 
|  | 386 | else | 
|  | 387 | CGF.ErrorUnsupported(E, "aggregate binary expression"); | 
|  | 388 | } | 
|  | 389 |  | 
|  | 390 | void AggExprEmitter::VisitPointerToDataMemberBinaryOperator( | 
|  | 391 | const BinaryOperator *E) { | 
|  | 392 | LValue LV = CGF.EmitPointerToDataMemberBinaryExpr(E); | 
|  | 393 | EmitFinalDestCopy(E, LV); | 
| Chris Lattner | ee755f9 | 2007-08-21 04:59:27 +0000 | [diff] [blame] | 394 | } | 
|  | 395 |  | 
| Chris Lattner | 03d6fb9 | 2007-08-21 04:43:17 +0000 | [diff] [blame] | 396 | void AggExprEmitter::VisitBinAssign(const BinaryOperator *E) { | 
| Eli Friedman | ff6e2b7 | 2008-02-11 01:09:17 +0000 | [diff] [blame] | 397 | // For an assignment to work, the value on the right has | 
|  | 398 | // to be compatible with the value on the left. | 
| Eli Friedman | 2dce5f8 | 2009-05-28 23:04:00 +0000 | [diff] [blame] | 399 | assert(CGF.getContext().hasSameUnqualifiedType(E->getLHS()->getType(), | 
|  | 400 | E->getRHS()->getType()) | 
| Eli Friedman | ff6e2b7 | 2008-02-11 01:09:17 +0000 | [diff] [blame] | 401 | && "Invalid assignment"); | 
| John McCall | cd940a1 | 2010-12-06 06:10:02 +0000 | [diff] [blame] | 402 |  | 
| Fariborz Jahanian | 2c7168c | 2011-04-29 21:53:21 +0000 | [diff] [blame] | 403 | if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E->getLHS())) | 
| Fariborz Jahanian | 73a6f8e | 2011-04-29 22:11:28 +0000 | [diff] [blame] | 404 | if (const VarDecl *VD = dyn_cast<VarDecl>(DRE->getDecl())) | 
| Fariborz Jahanian | 2c7168c | 2011-04-29 21:53:21 +0000 | [diff] [blame] | 405 | if (VD->hasAttr<BlocksAttr>() && | 
|  | 406 | E->getRHS()->HasSideEffects(CGF.getContext())) { | 
|  | 407 | // When __block variable on LHS, the RHS must be evaluated first | 
|  | 408 | // as it may change the 'forwarding' field via call to Block_copy. | 
|  | 409 | LValue RHS = CGF.EmitLValue(E->getRHS()); | 
|  | 410 | LValue LHS = CGF.EmitLValue(E->getLHS()); | 
|  | 411 | bool GCollection = false; | 
|  | 412 | if (CGF.getContext().getLangOptions().getGCMode()) | 
|  | 413 | GCollection = TypeRequiresGCollection(E->getLHS()->getType()); | 
| Fariborz Jahanian | 2c7168c | 2011-04-29 21:53:21 +0000 | [diff] [blame] | 414 | Dest = AggValueSlot::forLValue(LHS, true, GCollection); | 
|  | 415 | EmitFinalDestCopy(E, RHS, true); | 
|  | 416 | return; | 
|  | 417 | } | 
| Fariborz Jahanian | 2c7168c | 2011-04-29 21:53:21 +0000 | [diff] [blame] | 418 |  | 
| Chris Lattner | 9c03356 | 2007-08-21 04:25:47 +0000 | [diff] [blame] | 419 | LValue LHS = CGF.EmitLValue(E->getLHS()); | 
| Chris Lattner | 883f6a7 | 2007-08-11 00:04:45 +0000 | [diff] [blame] | 420 |  | 
| Daniel Dunbar | 7f8ea5c | 2008-08-30 05:35:15 +0000 | [diff] [blame] | 421 | // We have to special case property setters, otherwise we must have | 
|  | 422 | // a simple lvalue (no aggregates inside vectors, bitfields). | 
|  | 423 | if (LHS.isPropertyRef()) { | 
| Fariborz Jahanian | 68af13f | 2011-03-30 16:11:20 +0000 | [diff] [blame] | 424 | const ObjCPropertyRefExpr *RE = LHS.getPropertyRefExpr(); | 
|  | 425 | QualType ArgType = RE->getSetterArgType(); | 
|  | 426 | RValue Src; | 
|  | 427 | if (ArgType->isReferenceType()) | 
|  | 428 | Src = CGF.EmitReferenceBindingToExpr(E->getRHS(), 0); | 
|  | 429 | else { | 
|  | 430 | AggValueSlot Slot = EnsureSlot(E->getRHS()->getType()); | 
|  | 431 | CGF.EmitAggExpr(E->getRHS(), Slot); | 
|  | 432 | Src = Slot.asRValue(); | 
|  | 433 | } | 
|  | 434 | CGF.EmitStoreThroughPropertyRefLValue(Src, LHS); | 
| Daniel Dunbar | 7f8ea5c | 2008-08-30 05:35:15 +0000 | [diff] [blame] | 435 | } else { | 
| Fariborz Jahanian | 474e2fe | 2010-09-16 00:20:07 +0000 | [diff] [blame] | 436 | bool GCollection = false; | 
| John McCall | fa037bd | 2010-05-22 22:13:32 +0000 | [diff] [blame] | 437 | if (CGF.getContext().getLangOptions().getGCMode()) | 
| Fariborz Jahanian | 474e2fe | 2010-09-16 00:20:07 +0000 | [diff] [blame] | 438 | GCollection = TypeRequiresGCollection(E->getLHS()->getType()); | 
| John McCall | fa037bd | 2010-05-22 22:13:32 +0000 | [diff] [blame] | 439 |  | 
| Daniel Dunbar | 7f8ea5c | 2008-08-30 05:35:15 +0000 | [diff] [blame] | 440 | // Codegen the RHS so that it stores directly into the LHS. | 
| Fariborz Jahanian | 474e2fe | 2010-09-16 00:20:07 +0000 | [diff] [blame] | 441 | AggValueSlot LHSSlot = AggValueSlot::forLValue(LHS, true, | 
|  | 442 | GCollection); | 
|  | 443 | CGF.EmitAggExpr(E->getRHS(), LHSSlot, false); | 
| Mike Stump | 49d1cd5 | 2009-05-26 22:03:21 +0000 | [diff] [blame] | 444 | EmitFinalDestCopy(E, LHS, true); | 
| Daniel Dunbar | 7f8ea5c | 2008-08-30 05:35:15 +0000 | [diff] [blame] | 445 | } | 
| Chris Lattner | 883f6a7 | 2007-08-11 00:04:45 +0000 | [diff] [blame] | 446 | } | 
|  | 447 |  | 
| John McCall | 56ca35d | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 448 | void AggExprEmitter:: | 
|  | 449 | VisitAbstractConditionalOperator(const AbstractConditionalOperator *E) { | 
| Daniel Dunbar | 9615ecb | 2008-11-13 01:38:36 +0000 | [diff] [blame] | 450 | llvm::BasicBlock *LHSBlock = CGF.createBasicBlock("cond.true"); | 
|  | 451 | llvm::BasicBlock *RHSBlock = CGF.createBasicBlock("cond.false"); | 
|  | 452 | llvm::BasicBlock *ContBlock = CGF.createBasicBlock("cond.end"); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 453 |  | 
| John McCall | 56ca35d | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 454 | // Bind the common expression if necessary. | 
|  | 455 | CodeGenFunction::OpaqueValueMapping binding(CGF, E); | 
|  | 456 |  | 
| John McCall | 150b462 | 2011-01-26 04:00:11 +0000 | [diff] [blame] | 457 | CodeGenFunction::ConditionalEvaluation eval(CGF); | 
| Eli Friedman | 8e274bd | 2009-12-25 06:17:05 +0000 | [diff] [blame] | 458 | CGF.EmitBranchOnBoolExpr(E->getCond(), LHSBlock, RHSBlock); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 459 |  | 
| John McCall | 74fb0ed | 2010-11-17 00:07:33 +0000 | [diff] [blame] | 460 | // Save whether the destination's lifetime is externally managed. | 
|  | 461 | bool DestLifetimeManaged = Dest.isLifetimeExternallyManaged(); | 
| Chris Lattner | 883f6a7 | 2007-08-11 00:04:45 +0000 | [diff] [blame] | 462 |  | 
| John McCall | 150b462 | 2011-01-26 04:00:11 +0000 | [diff] [blame] | 463 | eval.begin(CGF); | 
|  | 464 | CGF.EmitBlock(LHSBlock); | 
| John McCall | 56ca35d | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 465 | Visit(E->getTrueExpr()); | 
| John McCall | 150b462 | 2011-01-26 04:00:11 +0000 | [diff] [blame] | 466 | eval.end(CGF); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 467 |  | 
| John McCall | 150b462 | 2011-01-26 04:00:11 +0000 | [diff] [blame] | 468 | assert(CGF.HaveInsertPoint() && "expression evaluation ended with no IP!"); | 
|  | 469 | CGF.Builder.CreateBr(ContBlock); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 470 |  | 
| John McCall | 74fb0ed | 2010-11-17 00:07:33 +0000 | [diff] [blame] | 471 | // If the result of an agg expression is unused, then the emission | 
|  | 472 | // of the LHS might need to create a destination slot.  That's fine | 
|  | 473 | // with us, and we can safely emit the RHS into the same slot, but | 
|  | 474 | // we shouldn't claim that its lifetime is externally managed. | 
|  | 475 | Dest.setLifetimeExternallyManaged(DestLifetimeManaged); | 
|  | 476 |  | 
| John McCall | 150b462 | 2011-01-26 04:00:11 +0000 | [diff] [blame] | 477 | eval.begin(CGF); | 
|  | 478 | CGF.EmitBlock(RHSBlock); | 
| John McCall | 56ca35d | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 479 | Visit(E->getFalseExpr()); | 
| John McCall | 150b462 | 2011-01-26 04:00:11 +0000 | [diff] [blame] | 480 | eval.end(CGF); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 481 |  | 
| Chris Lattner | 9c03356 | 2007-08-21 04:25:47 +0000 | [diff] [blame] | 482 | CGF.EmitBlock(ContBlock); | 
| Chris Lattner | 883f6a7 | 2007-08-11 00:04:45 +0000 | [diff] [blame] | 483 | } | 
| Chris Lattner | ee755f9 | 2007-08-21 04:59:27 +0000 | [diff] [blame] | 484 |  | 
| Anders Carlsson | a294ca8 | 2009-07-08 18:33:14 +0000 | [diff] [blame] | 485 | void AggExprEmitter::VisitChooseExpr(const ChooseExpr *CE) { | 
|  | 486 | Visit(CE->getChosenSubExpr(CGF.getContext())); | 
|  | 487 | } | 
|  | 488 |  | 
| Eli Friedman | b185124 | 2008-05-27 15:51:49 +0000 | [diff] [blame] | 489 | void AggExprEmitter::VisitVAArgExpr(VAArgExpr *VE) { | 
| Daniel Dunbar | 0785570 | 2009-02-11 22:25:55 +0000 | [diff] [blame] | 490 | llvm::Value *ArgValue = CGF.EmitVAListRef(VE->getSubExpr()); | 
| Anders Carlsson | ddf7cac | 2008-11-04 05:30:00 +0000 | [diff] [blame] | 491 | llvm::Value *ArgPtr = CGF.EmitVAArg(ArgValue, VE->getType()); | 
|  | 492 |  | 
| Sebastian Redl | 0262f02 | 2009-01-09 21:09:38 +0000 | [diff] [blame] | 493 | if (!ArgPtr) { | 
| Anders Carlsson | ddf7cac | 2008-11-04 05:30:00 +0000 | [diff] [blame] | 494 | CGF.ErrorUnsupported(VE, "aggregate va_arg expression"); | 
| Sebastian Redl | 0262f02 | 2009-01-09 21:09:38 +0000 | [diff] [blame] | 495 | return; | 
|  | 496 | } | 
|  | 497 |  | 
| Daniel Dunbar | 79c3928 | 2010-08-21 03:15:20 +0000 | [diff] [blame] | 498 | EmitFinalDestCopy(VE, CGF.MakeAddrLValue(ArgPtr, VE->getType())); | 
| Eli Friedman | b185124 | 2008-05-27 15:51:49 +0000 | [diff] [blame] | 499 | } | 
|  | 500 |  | 
| Anders Carlsson | b58d017 | 2009-05-30 23:23:33 +0000 | [diff] [blame] | 501 | void AggExprEmitter::VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E) { | 
| John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 502 | // Ensure that we have a slot, but if we already do, remember | 
|  | 503 | // whether its lifetime was externally managed. | 
|  | 504 | bool WasManaged = Dest.isLifetimeExternallyManaged(); | 
|  | 505 | Dest = EnsureSlot(E->getType()); | 
|  | 506 | Dest.setLifetimeExternallyManaged(); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 507 |  | 
| John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 508 | Visit(E->getSubExpr()); | 
| Anders Carlsson | b58d017 | 2009-05-30 23:23:33 +0000 | [diff] [blame] | 509 |  | 
| John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 510 | // Set up the temporary's destructor if its lifetime wasn't already | 
|  | 511 | // being managed. | 
|  | 512 | if (!WasManaged) | 
|  | 513 | CGF.EmitCXXTemporary(E->getTemporary(), Dest.getAddr()); | 
| Anders Carlsson | b58d017 | 2009-05-30 23:23:33 +0000 | [diff] [blame] | 514 | } | 
|  | 515 |  | 
| Anders Carlsson | b14095a | 2009-04-17 00:06:03 +0000 | [diff] [blame] | 516 | void | 
| Anders Carlsson | 31ccf37 | 2009-05-03 17:47:16 +0000 | [diff] [blame] | 517 | AggExprEmitter::VisitCXXConstructExpr(const CXXConstructExpr *E) { | 
| John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 518 | AggValueSlot Slot = EnsureSlot(E->getType()); | 
|  | 519 | CGF.EmitCXXConstructExpr(E, Slot); | 
| Anders Carlsson | 7f6ad15 | 2009-05-19 04:48:36 +0000 | [diff] [blame] | 520 | } | 
|  | 521 |  | 
| John McCall | 4765fa0 | 2010-12-06 08:20:24 +0000 | [diff] [blame] | 522 | void AggExprEmitter::VisitExprWithCleanups(ExprWithCleanups *E) { | 
|  | 523 | CGF.EmitExprWithCleanups(E, Dest); | 
| Anders Carlsson | b14095a | 2009-04-17 00:06:03 +0000 | [diff] [blame] | 524 | } | 
|  | 525 |  | 
| Douglas Gregor | ed8abf1 | 2010-07-08 06:14:04 +0000 | [diff] [blame] | 526 | void AggExprEmitter::VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *E) { | 
| John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 527 | QualType T = E->getType(); | 
|  | 528 | AggValueSlot Slot = EnsureSlot(T); | 
| John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 529 | EmitNullInitializationToLValue(CGF.MakeAddrLValue(Slot.getAddr(), T)); | 
| Anders Carlsson | 30311fa | 2009-12-16 06:57:54 +0000 | [diff] [blame] | 530 | } | 
|  | 531 |  | 
|  | 532 | void AggExprEmitter::VisitImplicitValueInitExpr(ImplicitValueInitExpr *E) { | 
| John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 533 | QualType T = E->getType(); | 
|  | 534 | AggValueSlot Slot = EnsureSlot(T); | 
| John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 535 | EmitNullInitializationToLValue(CGF.MakeAddrLValue(Slot.getAddr(), T)); | 
| Nuno Lopes | 329763b | 2009-10-18 15:18:11 +0000 | [diff] [blame] | 536 | } | 
|  | 537 |  | 
| Chris Lattner | 1b72677 | 2010-12-02 07:07:26 +0000 | [diff] [blame] | 538 | /// isSimpleZero - If emitting this value will obviously just cause a store of | 
|  | 539 | /// zero to memory, return true.  This can return false if uncertain, so it just | 
|  | 540 | /// handles simple cases. | 
|  | 541 | static bool isSimpleZero(const Expr *E, CodeGenFunction &CGF) { | 
| Peter Collingbourne | f111d93 | 2011-04-15 00:35:48 +0000 | [diff] [blame] | 542 | E = E->IgnoreParens(); | 
|  | 543 |  | 
| Chris Lattner | 1b72677 | 2010-12-02 07:07:26 +0000 | [diff] [blame] | 544 | // 0 | 
|  | 545 | if (const IntegerLiteral *IL = dyn_cast<IntegerLiteral>(E)) | 
|  | 546 | return IL->getValue() == 0; | 
|  | 547 | // +0.0 | 
|  | 548 | if (const FloatingLiteral *FL = dyn_cast<FloatingLiteral>(E)) | 
|  | 549 | return FL->getValue().isPosZero(); | 
|  | 550 | // int() | 
|  | 551 | if ((isa<ImplicitValueInitExpr>(E) || isa<CXXScalarValueInitExpr>(E)) && | 
|  | 552 | CGF.getTypes().isZeroInitializable(E->getType())) | 
|  | 553 | return true; | 
|  | 554 | // (int*)0 - Null pointer expressions. | 
|  | 555 | if (const CastExpr *ICE = dyn_cast<CastExpr>(E)) | 
|  | 556 | return ICE->getCastKind() == CK_NullToPointer; | 
|  | 557 | // '\0' | 
|  | 558 | if (const CharacterLiteral *CL = dyn_cast<CharacterLiteral>(E)) | 
|  | 559 | return CL->getValue() == 0; | 
|  | 560 |  | 
|  | 561 | // Otherwise, hard case: conservatively return false. | 
|  | 562 | return false; | 
|  | 563 | } | 
|  | 564 |  | 
|  | 565 |  | 
| Anders Carlsson | 78e83f8 | 2010-02-03 17:33:16 +0000 | [diff] [blame] | 566 | void | 
| John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 567 | AggExprEmitter::EmitInitializationToLValue(Expr* E, LValue LV) { | 
|  | 568 | QualType type = LV.getType(); | 
| Mike Stump | 7f79f9b | 2009-05-29 15:46:01 +0000 | [diff] [blame] | 569 | // FIXME: Ignore result? | 
| Chris Lattner | f81557c | 2008-04-04 18:42:16 +0000 | [diff] [blame] | 570 | // FIXME: Are initializers affected by volatile? | 
| Chris Lattner | 1b72677 | 2010-12-02 07:07:26 +0000 | [diff] [blame] | 571 | if (Dest.isZeroed() && isSimpleZero(E, CGF)) { | 
|  | 572 | // Storing "i32 0" to a zero'd memory location is a noop. | 
|  | 573 | } else if (isa<ImplicitValueInitExpr>(E)) { | 
| John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 574 | EmitNullInitializationToLValue(LV); | 
|  | 575 | } else if (type->isReferenceType()) { | 
| Anders Carlsson | 32f36ba | 2010-06-26 16:35:32 +0000 | [diff] [blame] | 576 | RValue RV = CGF.EmitReferenceBindingToExpr(E, /*InitializedDecl=*/0); | 
| John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 577 | CGF.EmitStoreThroughLValue(RV, LV, type); | 
|  | 578 | } else if (type->isAnyComplexType()) { | 
| Douglas Gregor | 3498bdb | 2009-01-29 17:44:32 +0000 | [diff] [blame] | 579 | CGF.EmitComplexExprIntoAddr(E, LV.getAddress(), false); | 
| John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 580 | } else if (CGF.hasAggregateLLVMType(type)) { | 
|  | 581 | CGF.EmitAggExpr(E, AggValueSlot::forLValue(LV, true, false, | 
|  | 582 | Dest.isZeroed())); | 
| John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 583 | } else if (LV.isSimple()) { | 
| John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 584 | CGF.EmitScalarInit(E, /*D=*/0, LV, /*Captured=*/false); | 
| Eli Friedman | c8ba961 | 2008-05-12 15:06:05 +0000 | [diff] [blame] | 585 | } else { | 
| John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 586 | CGF.EmitStoreThroughLValue(RValue::get(CGF.EmitScalarExpr(E)), LV, type); | 
| Chris Lattner | f81557c | 2008-04-04 18:42:16 +0000 | [diff] [blame] | 587 | } | 
| Chris Lattner | f81557c | 2008-04-04 18:42:16 +0000 | [diff] [blame] | 588 | } | 
|  | 589 |  | 
| John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 590 | void AggExprEmitter::EmitNullInitializationToLValue(LValue lv) { | 
|  | 591 | QualType type = lv.getType(); | 
|  | 592 |  | 
| Chris Lattner | 1b72677 | 2010-12-02 07:07:26 +0000 | [diff] [blame] | 593 | // If the destination slot is already zeroed out before the aggregate is | 
|  | 594 | // copied into it, we don't have to emit any zeros here. | 
| John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 595 | if (Dest.isZeroed() && CGF.getTypes().isZeroInitializable(type)) | 
| Chris Lattner | 1b72677 | 2010-12-02 07:07:26 +0000 | [diff] [blame] | 596 | return; | 
|  | 597 |  | 
| John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 598 | if (!CGF.hasAggregateLLVMType(type)) { | 
| Chris Lattner | f81557c | 2008-04-04 18:42:16 +0000 | [diff] [blame] | 599 | // For non-aggregates, we can store zero | 
| John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 600 | llvm::Value *null = llvm::Constant::getNullValue(CGF.ConvertType(type)); | 
|  | 601 | CGF.EmitStoreThroughLValue(RValue::get(null), lv, type); | 
| Lauro Ramos Venancio | 145cd89 | 2008-02-19 19:27:31 +0000 | [diff] [blame] | 602 | } else { | 
| Chris Lattner | f81557c | 2008-04-04 18:42:16 +0000 | [diff] [blame] | 603 | // There's a potential optimization opportunity in combining | 
|  | 604 | // memsets; that would be easy for arrays, but relatively | 
|  | 605 | // difficult for structures with the current code. | 
| John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 606 | CGF.EmitNullInitialization(lv.getAddress(), lv.getType()); | 
| Chris Lattner | f81557c | 2008-04-04 18:42:16 +0000 | [diff] [blame] | 607 | } | 
|  | 608 | } | 
|  | 609 |  | 
| Chris Lattner | f81557c | 2008-04-04 18:42:16 +0000 | [diff] [blame] | 610 | void AggExprEmitter::VisitInitListExpr(InitListExpr *E) { | 
| Eli Friedman | a385b3c | 2008-12-02 01:17:45 +0000 | [diff] [blame] | 611 | #if 0 | 
| Eli Friedman | 13a5be1 | 2009-12-04 01:30:56 +0000 | [diff] [blame] | 612 | // FIXME: Assess perf here?  Figure out what cases are worth optimizing here | 
|  | 613 | // (Length of globals? Chunks of zeroed-out space?). | 
| Eli Friedman | a385b3c | 2008-12-02 01:17:45 +0000 | [diff] [blame] | 614 | // | 
| Mike Stump | f5408fe | 2009-05-16 07:57:57 +0000 | [diff] [blame] | 615 | // If we can, prefer a copy from a global; this is a lot less code for long | 
|  | 616 | // globals, and it's easier for the current optimizers to analyze. | 
| Eli Friedman | 13a5be1 | 2009-12-04 01:30:56 +0000 | [diff] [blame] | 617 | if (llvm::Constant* C = CGF.CGM.EmitConstantExpr(E, E->getType(), &CGF)) { | 
| Eli Friedman | 994ffef | 2008-11-30 02:11:09 +0000 | [diff] [blame] | 618 | llvm::GlobalVariable* GV = | 
| Eli Friedman | 13a5be1 | 2009-12-04 01:30:56 +0000 | [diff] [blame] | 619 | new llvm::GlobalVariable(CGF.CGM.getModule(), C->getType(), true, | 
|  | 620 | llvm::GlobalValue::InternalLinkage, C, ""); | 
| Daniel Dunbar | 79c3928 | 2010-08-21 03:15:20 +0000 | [diff] [blame] | 621 | EmitFinalDestCopy(E, CGF.MakeAddrLValue(GV, E->getType())); | 
| Eli Friedman | 994ffef | 2008-11-30 02:11:09 +0000 | [diff] [blame] | 622 | return; | 
|  | 623 | } | 
| Eli Friedman | a385b3c | 2008-12-02 01:17:45 +0000 | [diff] [blame] | 624 | #endif | 
| Chris Lattner | d0db03a | 2010-09-06 00:11:41 +0000 | [diff] [blame] | 625 | if (E->hadArrayRangeDesignator()) | 
| Douglas Gregor | a9c8780 | 2009-01-29 19:42:23 +0000 | [diff] [blame] | 626 | CGF.ErrorUnsupported(E, "GNU array range designator extension"); | 
| Douglas Gregor | a9c8780 | 2009-01-29 19:42:23 +0000 | [diff] [blame] | 627 |  | 
| John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 628 | llvm::Value *DestPtr = Dest.getAddr(); | 
|  | 629 |  | 
| Chris Lattner | f81557c | 2008-04-04 18:42:16 +0000 | [diff] [blame] | 630 | // Handle initialization of an array. | 
|  | 631 | if (E->getType()->isArrayType()) { | 
|  | 632 | const llvm::PointerType *APType = | 
|  | 633 | cast<llvm::PointerType>(DestPtr->getType()); | 
|  | 634 | const llvm::ArrayType *AType = | 
|  | 635 | cast<llvm::ArrayType>(APType->getElementType()); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 636 |  | 
| Chris Lattner | f81557c | 2008-04-04 18:42:16 +0000 | [diff] [blame] | 637 | uint64_t NumInitElements = E->getNumInits(); | 
| Eli Friedman | 922696f | 2008-05-19 17:51:16 +0000 | [diff] [blame] | 638 |  | 
| Chris Lattner | 9619662 | 2008-07-26 22:37:01 +0000 | [diff] [blame] | 639 | if (E->getNumInits() > 0) { | 
|  | 640 | QualType T1 = E->getType(); | 
|  | 641 | QualType T2 = E->getInit(0)->getType(); | 
| Eli Friedman | 2dce5f8 | 2009-05-28 23:04:00 +0000 | [diff] [blame] | 642 | if (CGF.getContext().hasSameUnqualifiedType(T1, T2)) { | 
| Chris Lattner | 9619662 | 2008-07-26 22:37:01 +0000 | [diff] [blame] | 643 | EmitAggLoadOfLValue(E->getInit(0)); | 
|  | 644 | return; | 
|  | 645 | } | 
| Eli Friedman | 922696f | 2008-05-19 17:51:16 +0000 | [diff] [blame] | 646 | } | 
|  | 647 |  | 
| Chris Lattner | f81557c | 2008-04-04 18:42:16 +0000 | [diff] [blame] | 648 | uint64_t NumArrayElements = AType->getNumElements(); | 
| Chris Lattner | c63a1f2 | 2008-08-04 07:31:14 +0000 | [diff] [blame] | 649 | QualType ElementType = CGF.getContext().getCanonicalType(E->getType()); | 
| Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 650 | ElementType = CGF.getContext().getAsArrayType(ElementType)->getElementType(); | 
| John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 651 | ElementType = CGF.getContext().getQualifiedType(ElementType, | 
|  | 652 | Dest.getQualifiers()); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 653 |  | 
| Argyrios Kyrtzidis | 3b4d490 | 2011-04-28 18:53:58 +0000 | [diff] [blame] | 654 | bool hasNonTrivialCXXConstructor = false; | 
|  | 655 | if (CGF.getContext().getLangOptions().CPlusPlus) | 
| Argyrios Kyrtzidis | 4962153 | 2011-04-28 20:07:15 +0000 | [diff] [blame] | 656 | if (const RecordType *RT = CGF.getContext() | 
|  | 657 | .getBaseElementType(ElementType)->getAs<RecordType>()) { | 
| Argyrios Kyrtzidis | 3b4d490 | 2011-04-28 18:53:58 +0000 | [diff] [blame] | 658 | const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl()); | 
| Sean Hunt | 023df37 | 2011-05-09 18:22:59 +0000 | [diff] [blame] | 659 | hasNonTrivialCXXConstructor = !RD->hasTrivialDefaultConstructor(); | 
| Argyrios Kyrtzidis | 3b4d490 | 2011-04-28 18:53:58 +0000 | [diff] [blame] | 660 | } | 
|  | 661 |  | 
| Chris Lattner | f81557c | 2008-04-04 18:42:16 +0000 | [diff] [blame] | 662 | for (uint64_t i = 0; i != NumArrayElements; ++i) { | 
| Chris Lattner | 1b72677 | 2010-12-02 07:07:26 +0000 | [diff] [blame] | 663 | // If we're done emitting initializers and the destination is known-zeroed | 
|  | 664 | // then we're done. | 
|  | 665 | if (i == NumInitElements && | 
|  | 666 | Dest.isZeroed() && | 
| Argyrios Kyrtzidis | 3b4d490 | 2011-04-28 18:53:58 +0000 | [diff] [blame] | 667 | CGF.getTypes().isZeroInitializable(ElementType) && | 
|  | 668 | !hasNonTrivialCXXConstructor) | 
| Chris Lattner | 1b72677 | 2010-12-02 07:07:26 +0000 | [diff] [blame] | 669 | break; | 
|  | 670 |  | 
| Chris Lattner | f81557c | 2008-04-04 18:42:16 +0000 | [diff] [blame] | 671 | llvm::Value *NextVal = Builder.CreateStructGEP(DestPtr, i, ".array"); | 
| Daniel Dunbar | 9f553f5 | 2010-08-21 03:08:16 +0000 | [diff] [blame] | 672 | LValue LV = CGF.MakeAddrLValue(NextVal, ElementType); | 
| Chris Lattner | 1b72677 | 2010-12-02 07:07:26 +0000 | [diff] [blame] | 673 |  | 
| Chris Lattner | f81557c | 2008-04-04 18:42:16 +0000 | [diff] [blame] | 674 | if (i < NumInitElements) | 
| John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 675 | EmitInitializationToLValue(E->getInit(i), LV); | 
| Argyrios Kyrtzidis | 4423ac0 | 2011-04-21 00:27:41 +0000 | [diff] [blame] | 676 | else if (Expr *filler = E->getArrayFiller()) | 
| John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 677 | EmitInitializationToLValue(filler, LV); | 
| Chris Lattner | f81557c | 2008-04-04 18:42:16 +0000 | [diff] [blame] | 678 | else | 
| John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 679 | EmitNullInitializationToLValue(LV); | 
| Chris Lattner | 1b72677 | 2010-12-02 07:07:26 +0000 | [diff] [blame] | 680 |  | 
|  | 681 | // If the GEP didn't get used because of a dead zero init or something | 
|  | 682 | // else, clean it up for -O0 builds and general tidiness. | 
|  | 683 | if (llvm::GetElementPtrInst *GEP = | 
|  | 684 | dyn_cast<llvm::GetElementPtrInst>(NextVal)) | 
|  | 685 | if (GEP->use_empty()) | 
|  | 686 | GEP->eraseFromParent(); | 
| Lauro Ramos Venancio | 145cd89 | 2008-02-19 19:27:31 +0000 | [diff] [blame] | 687 | } | 
| Chris Lattner | f81557c | 2008-04-04 18:42:16 +0000 | [diff] [blame] | 688 | return; | 
|  | 689 | } | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 690 |  | 
| Chris Lattner | f81557c | 2008-04-04 18:42:16 +0000 | [diff] [blame] | 691 | assert(E->getType()->isRecordType() && "Only support structs/unions here!"); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 692 |  | 
| Chris Lattner | f81557c | 2008-04-04 18:42:16 +0000 | [diff] [blame] | 693 | // Do struct initialization; this code just sets each individual member | 
|  | 694 | // to the approprate value.  This makes bitfield support automatic; | 
|  | 695 | // the disadvantage is that the generated code is more difficult for | 
|  | 696 | // the optimizer, especially with bitfields. | 
|  | 697 | unsigned NumInitElements = E->getNumInits(); | 
| Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 698 | RecordDecl *SD = E->getType()->getAs<RecordType>()->getDecl(); | 
| Chris Lattner | bd7de38 | 2010-09-06 00:13:11 +0000 | [diff] [blame] | 699 |  | 
| Douglas Gregor | 0bb7689 | 2009-01-29 16:53:55 +0000 | [diff] [blame] | 700 | if (E->getType()->isUnionType()) { | 
|  | 701 | // Only initialize one field of a union. The field itself is | 
|  | 702 | // specified by the initializer list. | 
|  | 703 | if (!E->getInitializedFieldInUnion()) { | 
|  | 704 | // Empty union; we have nothing to do. | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 705 |  | 
| Douglas Gregor | 0bb7689 | 2009-01-29 16:53:55 +0000 | [diff] [blame] | 706 | #ifndef NDEBUG | 
|  | 707 | // Make sure that it's really an empty and not a failure of | 
|  | 708 | // semantic analysis. | 
| Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 709 | for (RecordDecl::field_iterator Field = SD->field_begin(), | 
|  | 710 | FieldEnd = SD->field_end(); | 
| Douglas Gregor | 0bb7689 | 2009-01-29 16:53:55 +0000 | [diff] [blame] | 711 | Field != FieldEnd; ++Field) | 
|  | 712 | assert(Field->isUnnamedBitfield() && "Only unnamed bitfields allowed"); | 
|  | 713 | #endif | 
|  | 714 | return; | 
|  | 715 | } | 
|  | 716 |  | 
|  | 717 | // FIXME: volatility | 
|  | 718 | FieldDecl *Field = E->getInitializedFieldInUnion(); | 
| Douglas Gregor | 0bb7689 | 2009-01-29 16:53:55 +0000 | [diff] [blame] | 719 |  | 
| Chris Lattner | 1b72677 | 2010-12-02 07:07:26 +0000 | [diff] [blame] | 720 | LValue FieldLoc = CGF.EmitLValueForFieldInitialization(DestPtr, Field, 0); | 
| Douglas Gregor | 0bb7689 | 2009-01-29 16:53:55 +0000 | [diff] [blame] | 721 | if (NumInitElements) { | 
|  | 722 | // Store the initializer into the field | 
| John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 723 | EmitInitializationToLValue(E->getInit(0), FieldLoc); | 
| Douglas Gregor | 0bb7689 | 2009-01-29 16:53:55 +0000 | [diff] [blame] | 724 | } else { | 
| Chris Lattner | 1b72677 | 2010-12-02 07:07:26 +0000 | [diff] [blame] | 725 | // Default-initialize to null. | 
| John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 726 | EmitNullInitializationToLValue(FieldLoc); | 
| Douglas Gregor | 0bb7689 | 2009-01-29 16:53:55 +0000 | [diff] [blame] | 727 | } | 
|  | 728 |  | 
|  | 729 | return; | 
|  | 730 | } | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 731 |  | 
| Chris Lattner | f81557c | 2008-04-04 18:42:16 +0000 | [diff] [blame] | 732 | // Here we iterate over the fields; this makes it simpler to both | 
|  | 733 | // default-initialize fields and skip over unnamed fields. | 
| Chris Lattner | bd7de38 | 2010-09-06 00:13:11 +0000 | [diff] [blame] | 734 | unsigned CurInitVal = 0; | 
| Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 735 | for (RecordDecl::field_iterator Field = SD->field_begin(), | 
|  | 736 | FieldEnd = SD->field_end(); | 
| Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 737 | Field != FieldEnd; ++Field) { | 
|  | 738 | // We're done once we hit the flexible array member | 
|  | 739 | if (Field->getType()->isIncompleteArrayType()) | 
|  | 740 | break; | 
|  | 741 |  | 
| Douglas Gregor | 34e7946 | 2009-01-28 23:36:17 +0000 | [diff] [blame] | 742 | if (Field->isUnnamedBitfield()) | 
| Chris Lattner | f81557c | 2008-04-04 18:42:16 +0000 | [diff] [blame] | 743 | continue; | 
| Douglas Gregor | 34e7946 | 2009-01-28 23:36:17 +0000 | [diff] [blame] | 744 |  | 
| Chris Lattner | 1b72677 | 2010-12-02 07:07:26 +0000 | [diff] [blame] | 745 | // Don't emit GEP before a noop store of zero. | 
|  | 746 | if (CurInitVal == NumInitElements && Dest.isZeroed() && | 
|  | 747 | CGF.getTypes().isZeroInitializable(E->getType())) | 
|  | 748 | break; | 
|  | 749 |  | 
| Eli Friedman | 1e692ac | 2008-06-13 23:01:12 +0000 | [diff] [blame] | 750 | // FIXME: volatility | 
| Anders Carlsson | e78ccb4 | 2010-02-03 19:13:55 +0000 | [diff] [blame] | 751 | LValue FieldLoc = CGF.EmitLValueForFieldInitialization(DestPtr, *Field, 0); | 
| Fariborz Jahanian | 14674ff | 2009-05-27 19:54:11 +0000 | [diff] [blame] | 752 | // We never generate write-barries for initialized fields. | 
| Daniel Dunbar | ea61917 | 2010-08-21 03:22:38 +0000 | [diff] [blame] | 753 | FieldLoc.setNonGC(true); | 
| Chris Lattner | 1b72677 | 2010-12-02 07:07:26 +0000 | [diff] [blame] | 754 |  | 
| Chris Lattner | f81557c | 2008-04-04 18:42:16 +0000 | [diff] [blame] | 755 | if (CurInitVal < NumInitElements) { | 
| Chris Lattner | b35baae | 2010-03-08 21:08:07 +0000 | [diff] [blame] | 756 | // Store the initializer into the field. | 
| John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 757 | EmitInitializationToLValue(E->getInit(CurInitVal++), FieldLoc); | 
| Chris Lattner | f81557c | 2008-04-04 18:42:16 +0000 | [diff] [blame] | 758 | } else { | 
|  | 759 | // We're out of initalizers; default-initialize to null | 
| John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 760 | EmitNullInitializationToLValue(FieldLoc); | 
| Chris Lattner | f81557c | 2008-04-04 18:42:16 +0000 | [diff] [blame] | 761 | } | 
| Chris Lattner | 1b72677 | 2010-12-02 07:07:26 +0000 | [diff] [blame] | 762 |  | 
|  | 763 | // If the GEP didn't get used because of a dead zero init or something | 
|  | 764 | // else, clean it up for -O0 builds and general tidiness. | 
|  | 765 | if (FieldLoc.isSimple()) | 
|  | 766 | if (llvm::GetElementPtrInst *GEP = | 
|  | 767 | dyn_cast<llvm::GetElementPtrInst>(FieldLoc.getAddress())) | 
|  | 768 | if (GEP->use_empty()) | 
|  | 769 | GEP->eraseFromParent(); | 
| Lauro Ramos Venancio | 145cd89 | 2008-02-19 19:27:31 +0000 | [diff] [blame] | 770 | } | 
| Devang Patel | 636c3d0 | 2007-10-26 17:44:44 +0000 | [diff] [blame] | 771 | } | 
|  | 772 |  | 
| Chris Lattner | ee755f9 | 2007-08-21 04:59:27 +0000 | [diff] [blame] | 773 | //===----------------------------------------------------------------------===// | 
|  | 774 | //                        Entry Points into this File | 
|  | 775 | //===----------------------------------------------------------------------===// | 
|  | 776 |  | 
| Chris Lattner | 1b72677 | 2010-12-02 07:07:26 +0000 | [diff] [blame] | 777 | /// GetNumNonZeroBytesInInit - Get an approximate count of the number of | 
|  | 778 | /// non-zero bytes that will be stored when outputting the initializer for the | 
|  | 779 | /// specified initializer expression. | 
| Ken Dyck | 02c4533 | 2011-04-24 17:17:56 +0000 | [diff] [blame] | 780 | static CharUnits GetNumNonZeroBytesInInit(const Expr *E, CodeGenFunction &CGF) { | 
| Peter Collingbourne | f111d93 | 2011-04-15 00:35:48 +0000 | [diff] [blame] | 781 | E = E->IgnoreParens(); | 
| Chris Lattner | 1b72677 | 2010-12-02 07:07:26 +0000 | [diff] [blame] | 782 |  | 
|  | 783 | // 0 and 0.0 won't require any non-zero stores! | 
| Ken Dyck | 02c4533 | 2011-04-24 17:17:56 +0000 | [diff] [blame] | 784 | if (isSimpleZero(E, CGF)) return CharUnits::Zero(); | 
| Chris Lattner | 1b72677 | 2010-12-02 07:07:26 +0000 | [diff] [blame] | 785 |  | 
|  | 786 | // If this is an initlist expr, sum up the size of sizes of the (present) | 
|  | 787 | // elements.  If this is something weird, assume the whole thing is non-zero. | 
|  | 788 | const InitListExpr *ILE = dyn_cast<InitListExpr>(E); | 
|  | 789 | if (ILE == 0 || !CGF.getTypes().isZeroInitializable(ILE->getType())) | 
| Ken Dyck | 02c4533 | 2011-04-24 17:17:56 +0000 | [diff] [blame] | 790 | return CGF.getContext().getTypeSizeInChars(E->getType()); | 
| Chris Lattner | 1b72677 | 2010-12-02 07:07:26 +0000 | [diff] [blame] | 791 |  | 
| Chris Lattner | d1d56df | 2010-12-02 18:29:00 +0000 | [diff] [blame] | 792 | // InitListExprs for structs have to be handled carefully.  If there are | 
|  | 793 | // reference members, we need to consider the size of the reference, not the | 
|  | 794 | // referencee.  InitListExprs for unions and arrays can't have references. | 
| Chris Lattner | 8c00ad1 | 2010-12-02 22:52:04 +0000 | [diff] [blame] | 795 | if (const RecordType *RT = E->getType()->getAs<RecordType>()) { | 
|  | 796 | if (!RT->isUnionType()) { | 
|  | 797 | RecordDecl *SD = E->getType()->getAs<RecordType>()->getDecl(); | 
| Ken Dyck | 02c4533 | 2011-04-24 17:17:56 +0000 | [diff] [blame] | 798 | CharUnits NumNonZeroBytes = CharUnits::Zero(); | 
| Chris Lattner | 8c00ad1 | 2010-12-02 22:52:04 +0000 | [diff] [blame] | 799 |  | 
|  | 800 | unsigned ILEElement = 0; | 
|  | 801 | for (RecordDecl::field_iterator Field = SD->field_begin(), | 
|  | 802 | FieldEnd = SD->field_end(); Field != FieldEnd; ++Field) { | 
|  | 803 | // We're done once we hit the flexible array member or run out of | 
|  | 804 | // InitListExpr elements. | 
|  | 805 | if (Field->getType()->isIncompleteArrayType() || | 
|  | 806 | ILEElement == ILE->getNumInits()) | 
|  | 807 | break; | 
|  | 808 | if (Field->isUnnamedBitfield()) | 
|  | 809 | continue; | 
| Chris Lattner | d1d56df | 2010-12-02 18:29:00 +0000 | [diff] [blame] | 810 |  | 
| Chris Lattner | 8c00ad1 | 2010-12-02 22:52:04 +0000 | [diff] [blame] | 811 | const Expr *E = ILE->getInit(ILEElement++); | 
|  | 812 |  | 
|  | 813 | // Reference values are always non-null and have the width of a pointer. | 
|  | 814 | if (Field->getType()->isReferenceType()) | 
| Ken Dyck | 02c4533 | 2011-04-24 17:17:56 +0000 | [diff] [blame] | 815 | NumNonZeroBytes += CGF.getContext().toCharUnitsFromBits( | 
|  | 816 | CGF.getContext().Target.getPointerWidth(0)); | 
| Chris Lattner | 8c00ad1 | 2010-12-02 22:52:04 +0000 | [diff] [blame] | 817 | else | 
|  | 818 | NumNonZeroBytes += GetNumNonZeroBytesInInit(E, CGF); | 
|  | 819 | } | 
| Chris Lattner | d1d56df | 2010-12-02 18:29:00 +0000 | [diff] [blame] | 820 |  | 
| Chris Lattner | 8c00ad1 | 2010-12-02 22:52:04 +0000 | [diff] [blame] | 821 | return NumNonZeroBytes; | 
| Chris Lattner | d1d56df | 2010-12-02 18:29:00 +0000 | [diff] [blame] | 822 | } | 
| Chris Lattner | d1d56df | 2010-12-02 18:29:00 +0000 | [diff] [blame] | 823 | } | 
|  | 824 |  | 
|  | 825 |  | 
| Ken Dyck | 02c4533 | 2011-04-24 17:17:56 +0000 | [diff] [blame] | 826 | CharUnits NumNonZeroBytes = CharUnits::Zero(); | 
| Chris Lattner | 1b72677 | 2010-12-02 07:07:26 +0000 | [diff] [blame] | 827 | for (unsigned i = 0, e = ILE->getNumInits(); i != e; ++i) | 
|  | 828 | NumNonZeroBytes += GetNumNonZeroBytesInInit(ILE->getInit(i), CGF); | 
|  | 829 | return NumNonZeroBytes; | 
|  | 830 | } | 
|  | 831 |  | 
|  | 832 | /// CheckAggExprForMemSetUse - If the initializer is large and has a lot of | 
|  | 833 | /// zeros in it, emit a memset and avoid storing the individual zeros. | 
|  | 834 | /// | 
|  | 835 | static void CheckAggExprForMemSetUse(AggValueSlot &Slot, const Expr *E, | 
|  | 836 | CodeGenFunction &CGF) { | 
|  | 837 | // If the slot is already known to be zeroed, nothing to do.  Don't mess with | 
|  | 838 | // volatile stores. | 
|  | 839 | if (Slot.isZeroed() || Slot.isVolatile() || Slot.getAddr() == 0) return; | 
| Argyrios Kyrtzidis | 657baf1 | 2011-04-28 22:57:55 +0000 | [diff] [blame] | 840 |  | 
|  | 841 | // C++ objects with a user-declared constructor don't need zero'ing. | 
|  | 842 | if (CGF.getContext().getLangOptions().CPlusPlus) | 
|  | 843 | if (const RecordType *RT = CGF.getContext() | 
|  | 844 | .getBaseElementType(E->getType())->getAs<RecordType>()) { | 
|  | 845 | const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl()); | 
|  | 846 | if (RD->hasUserDeclaredConstructor()) | 
|  | 847 | return; | 
|  | 848 | } | 
|  | 849 |  | 
| Chris Lattner | 1b72677 | 2010-12-02 07:07:26 +0000 | [diff] [blame] | 850 | // 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] | 851 | std::pair<CharUnits, CharUnits> TypeInfo = | 
|  | 852 | CGF.getContext().getTypeInfoInChars(E->getType()); | 
|  | 853 | if (TypeInfo.first <= CharUnits::fromQuantity(16)) | 
| Chris Lattner | 1b72677 | 2010-12-02 07:07:26 +0000 | [diff] [blame] | 854 | return; | 
|  | 855 |  | 
|  | 856 | // Check to see if over 3/4 of the initializer are known to be zero.  If so, | 
|  | 857 | // we prefer to emit memset + individual stores for the rest. | 
| Ken Dyck | 5ff1a35 | 2011-04-24 17:25:32 +0000 | [diff] [blame] | 858 | CharUnits NumNonZeroBytes = GetNumNonZeroBytesInInit(E, CGF); | 
|  | 859 | if (NumNonZeroBytes*4 > TypeInfo.first) | 
| Chris Lattner | 1b72677 | 2010-12-02 07:07:26 +0000 | [diff] [blame] | 860 | return; | 
|  | 861 |  | 
|  | 862 | // 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] | 863 | llvm::Constant *SizeVal = CGF.Builder.getInt64(TypeInfo.first.getQuantity()); | 
|  | 864 | CharUnits Align = TypeInfo.second; | 
| Chris Lattner | 1b72677 | 2010-12-02 07:07:26 +0000 | [diff] [blame] | 865 |  | 
|  | 866 | llvm::Value *Loc = Slot.getAddr(); | 
|  | 867 | const llvm::Type *BP = llvm::Type::getInt8PtrTy(CGF.getLLVMContext()); | 
|  | 868 |  | 
|  | 869 | Loc = CGF.Builder.CreateBitCast(Loc, BP); | 
| Ken Dyck | 5ff1a35 | 2011-04-24 17:25:32 +0000 | [diff] [blame] | 870 | CGF.Builder.CreateMemSet(Loc, CGF.Builder.getInt8(0), SizeVal, | 
|  | 871 | Align.getQuantity(), false); | 
| Chris Lattner | 1b72677 | 2010-12-02 07:07:26 +0000 | [diff] [blame] | 872 |  | 
|  | 873 | // Tell the AggExprEmitter that the slot is known zero. | 
|  | 874 | Slot.setZeroed(); | 
|  | 875 | } | 
|  | 876 |  | 
|  | 877 |  | 
|  | 878 |  | 
|  | 879 |  | 
| Mike Stump | e1129a9 | 2009-05-26 18:57:45 +0000 | [diff] [blame] | 880 | /// EmitAggExpr - Emit the computation of the specified expression of aggregate | 
|  | 881 | /// type.  The result is computed into DestPtr.  Note that if DestPtr is null, | 
|  | 882 | /// the value of the aggregate expression is not needed.  If VolatileDest is | 
|  | 883 | /// true, DestPtr cannot be 0. | 
| John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 884 | /// | 
|  | 885 | /// \param IsInitializer - true if this evaluation is initializing an | 
|  | 886 | /// object whose lifetime is already being managed. | 
| John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 887 | void CodeGenFunction::EmitAggExpr(const Expr *E, AggValueSlot Slot, | 
| Fariborz Jahanian | 474e2fe | 2010-09-16 00:20:07 +0000 | [diff] [blame] | 888 | bool IgnoreResult) { | 
| Chris Lattner | ee755f9 | 2007-08-21 04:59:27 +0000 | [diff] [blame] | 889 | assert(E && hasAggregateLLVMType(E->getType()) && | 
|  | 890 | "Invalid aggregate expression to emit"); | 
| Chris Lattner | 1b72677 | 2010-12-02 07:07:26 +0000 | [diff] [blame] | 891 | assert((Slot.getAddr() != 0 || Slot.isIgnored()) && | 
|  | 892 | "slot has bits but no address"); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 893 |  | 
| Chris Lattner | 1b72677 | 2010-12-02 07:07:26 +0000 | [diff] [blame] | 894 | // Optimize the slot if possible. | 
|  | 895 | CheckAggExprForMemSetUse(Slot, E, *this); | 
|  | 896 |  | 
|  | 897 | AggExprEmitter(*this, Slot, IgnoreResult).Visit(const_cast<Expr*>(E)); | 
| Chris Lattner | ee755f9 | 2007-08-21 04:59:27 +0000 | [diff] [blame] | 898 | } | 
| Daniel Dunbar | 7482d12 | 2008-09-09 20:49:46 +0000 | [diff] [blame] | 899 |  | 
| Daniel Dunbar | 18aba0d | 2010-02-05 19:38:31 +0000 | [diff] [blame] | 900 | LValue CodeGenFunction::EmitAggExprToLValue(const Expr *E) { | 
|  | 901 | assert(hasAggregateLLVMType(E->getType()) && "Invalid argument!"); | 
| Daniel Dunbar | 195337d | 2010-02-09 02:48:28 +0000 | [diff] [blame] | 902 | llvm::Value *Temp = CreateMemTemp(E->getType()); | 
| Daniel Dunbar | 79c3928 | 2010-08-21 03:15:20 +0000 | [diff] [blame] | 903 | LValue LV = MakeAddrLValue(Temp, E->getType()); | 
| John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 904 | EmitAggExpr(E, AggValueSlot::forLValue(LV, false)); | 
| Daniel Dunbar | 79c3928 | 2010-08-21 03:15:20 +0000 | [diff] [blame] | 905 | return LV; | 
| Daniel Dunbar | 18aba0d | 2010-02-05 19:38:31 +0000 | [diff] [blame] | 906 | } | 
|  | 907 |  | 
| Daniel Dunbar | 7482d12 | 2008-09-09 20:49:46 +0000 | [diff] [blame] | 908 | void CodeGenFunction::EmitAggregateCopy(llvm::Value *DestPtr, | 
| Mike Stump | 27fe2e6 | 2009-05-23 22:29:41 +0000 | [diff] [blame] | 909 | llvm::Value *SrcPtr, QualType Ty, | 
|  | 910 | bool isVolatile) { | 
| Daniel Dunbar | 7482d12 | 2008-09-09 20:49:46 +0000 | [diff] [blame] | 911 | assert(!Ty->isAnyComplexType() && "Shouldn't happen for complex"); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 912 |  | 
| Anders Carlsson | 0d7c583 | 2010-05-03 01:20:20 +0000 | [diff] [blame] | 913 | if (getContext().getLangOptions().CPlusPlus) { | 
|  | 914 | if (const RecordType *RT = Ty->getAs<RecordType>()) { | 
| Douglas Gregor | e997948 | 2010-05-20 15:39:01 +0000 | [diff] [blame] | 915 | CXXRecordDecl *Record = cast<CXXRecordDecl>(RT->getDecl()); | 
|  | 916 | assert((Record->hasTrivialCopyConstructor() || | 
| Fariborz Jahanian | 1d49f21 | 2010-05-20 16:46:55 +0000 | [diff] [blame] | 917 | Record->hasTrivialCopyAssignment()) && | 
| Douglas Gregor | e997948 | 2010-05-20 15:39:01 +0000 | [diff] [blame] | 918 | "Trying to aggregate-copy a type without a trivial copy " | 
|  | 919 | "constructor or assignment operator"); | 
| Douglas Gregor | 419aa96 | 2010-05-20 15:48:29 +0000 | [diff] [blame] | 920 | // Ignore empty classes in C++. | 
| Douglas Gregor | e997948 | 2010-05-20 15:39:01 +0000 | [diff] [blame] | 921 | if (Record->isEmpty()) | 
| Anders Carlsson | 0d7c583 | 2010-05-03 01:20:20 +0000 | [diff] [blame] | 922 | return; | 
|  | 923 | } | 
|  | 924 | } | 
|  | 925 |  | 
| Chris Lattner | 83c9629 | 2009-02-28 18:31:01 +0000 | [diff] [blame] | 926 | // Aggregate assignment turns into llvm.memcpy.  This is almost valid per | 
| Chris Lattner | ca4fc2c | 2009-02-28 18:18:58 +0000 | [diff] [blame] | 927 | // C99 6.5.16.1p3, which states "If the value being stored in an object is | 
|  | 928 | // read from another object that overlaps in anyway the storage of the first | 
|  | 929 | // object, then the overlap shall be exact and the two objects shall have | 
|  | 930 | // qualified or unqualified versions of a compatible type." | 
|  | 931 | // | 
| Chris Lattner | 83c9629 | 2009-02-28 18:31:01 +0000 | [diff] [blame] | 932 | // memcpy is not defined if the source and destination pointers are exactly | 
| Chris Lattner | ca4fc2c | 2009-02-28 18:18:58 +0000 | [diff] [blame] | 933 | // equal, but other compilers do this optimization, and almost every memcpy | 
|  | 934 | // implementation handles this case safely.  If there is a libc that does not | 
|  | 935 | // safely handle this, we can add a target hook. | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 936 |  | 
| Daniel Dunbar | 7482d12 | 2008-09-09 20:49:46 +0000 | [diff] [blame] | 937 | // Get size and alignment info for this aggregate. | 
| Ken Dyck | 1a8c15a | 2011-04-24 17:37:26 +0000 | [diff] [blame] | 938 | std::pair<CharUnits, CharUnits> TypeInfo = | 
|  | 939 | getContext().getTypeInfoInChars(Ty); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 940 |  | 
| Daniel Dunbar | 7482d12 | 2008-09-09 20:49:46 +0000 | [diff] [blame] | 941 | // FIXME: Handle variable sized types. | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 942 |  | 
| Mike Stump | fde6420 | 2009-05-23 04:13:59 +0000 | [diff] [blame] | 943 | // FIXME: If we have a volatile struct, the optimizer can remove what might | 
|  | 944 | // appear to be `extra' memory ops: | 
|  | 945 | // | 
|  | 946 | // volatile struct { int i; } a, b; | 
|  | 947 | // | 
|  | 948 | // int main() { | 
|  | 949 | //   a = b; | 
|  | 950 | //   a = b; | 
|  | 951 | // } | 
|  | 952 | // | 
| Mon P Wang | 3ecd785 | 2010-04-04 03:10:52 +0000 | [diff] [blame] | 953 | // 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] | 954 | // either the source or the destination is volatile. | 
| Mon P Wang | 3ecd785 | 2010-04-04 03:10:52 +0000 | [diff] [blame] | 955 |  | 
|  | 956 | const llvm::PointerType *DPT = cast<llvm::PointerType>(DestPtr->getType()); | 
| Chris Lattner | 098432c | 2010-07-08 00:07:45 +0000 | [diff] [blame] | 957 | const llvm::Type *DBP = | 
| John McCall | d16c2cf | 2011-02-08 08:22:06 +0000 | [diff] [blame] | 958 | llvm::Type::getInt8PtrTy(getLLVMContext(), DPT->getAddressSpace()); | 
| Chris Lattner | 098432c | 2010-07-08 00:07:45 +0000 | [diff] [blame] | 959 | DestPtr = Builder.CreateBitCast(DestPtr, DBP, "tmp"); | 
| Mon P Wang | 3ecd785 | 2010-04-04 03:10:52 +0000 | [diff] [blame] | 960 |  | 
|  | 961 | const llvm::PointerType *SPT = cast<llvm::PointerType>(SrcPtr->getType()); | 
| Chris Lattner | 098432c | 2010-07-08 00:07:45 +0000 | [diff] [blame] | 962 | const llvm::Type *SBP = | 
| John McCall | d16c2cf | 2011-02-08 08:22:06 +0000 | [diff] [blame] | 963 | llvm::Type::getInt8PtrTy(getLLVMContext(), SPT->getAddressSpace()); | 
| Chris Lattner | 098432c | 2010-07-08 00:07:45 +0000 | [diff] [blame] | 964 | SrcPtr = Builder.CreateBitCast(SrcPtr, SBP, "tmp"); | 
| Mon P Wang | 3ecd785 | 2010-04-04 03:10:52 +0000 | [diff] [blame] | 965 |  | 
| John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 966 | // Don't do any of the memmove_collectable tests if GC isn't set. | 
|  | 967 | if (CGM.getLangOptions().getGCMode() == LangOptions::NonGC) { | 
|  | 968 | // fall through | 
|  | 969 | } else if (const RecordType *RecordTy = Ty->getAs<RecordType>()) { | 
| Fariborz Jahanian | 55bcace | 2010-06-15 22:44:06 +0000 | [diff] [blame] | 970 | RecordDecl *Record = RecordTy->getDecl(); | 
|  | 971 | if (Record->hasObjectMember()) { | 
| Ken Dyck | 1a8c15a | 2011-04-24 17:37:26 +0000 | [diff] [blame] | 972 | CharUnits size = TypeInfo.first; | 
| Fariborz Jahanian | 55bcace | 2010-06-15 22:44:06 +0000 | [diff] [blame] | 973 | const llvm::Type *SizeTy = ConvertType(getContext().getSizeType()); | 
| Ken Dyck | 1a8c15a | 2011-04-24 17:37:26 +0000 | [diff] [blame] | 974 | llvm::Value *SizeVal = llvm::ConstantInt::get(SizeTy, size.getQuantity()); | 
| Fariborz Jahanian | 55bcace | 2010-06-15 22:44:06 +0000 | [diff] [blame] | 975 | CGM.getObjCRuntime().EmitGCMemmoveCollectable(*this, DestPtr, SrcPtr, | 
|  | 976 | SizeVal); | 
|  | 977 | return; | 
|  | 978 | } | 
| John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 979 | } else if (Ty->isArrayType()) { | 
| Fariborz Jahanian | 55bcace | 2010-06-15 22:44:06 +0000 | [diff] [blame] | 980 | QualType BaseType = getContext().getBaseElementType(Ty); | 
|  | 981 | if (const RecordType *RecordTy = BaseType->getAs<RecordType>()) { | 
|  | 982 | if (RecordTy->getDecl()->hasObjectMember()) { | 
| Ken Dyck | 1a8c15a | 2011-04-24 17:37:26 +0000 | [diff] [blame] | 983 | CharUnits size = TypeInfo.first; | 
| Fariborz Jahanian | 55bcace | 2010-06-15 22:44:06 +0000 | [diff] [blame] | 984 | const llvm::Type *SizeTy = ConvertType(getContext().getSizeType()); | 
| Ken Dyck | 1a8c15a | 2011-04-24 17:37:26 +0000 | [diff] [blame] | 985 | llvm::Value *SizeVal = | 
|  | 986 | llvm::ConstantInt::get(SizeTy, size.getQuantity()); | 
| Fariborz Jahanian | 55bcace | 2010-06-15 22:44:06 +0000 | [diff] [blame] | 987 | CGM.getObjCRuntime().EmitGCMemmoveCollectable(*this, DestPtr, SrcPtr, | 
|  | 988 | SizeVal); | 
|  | 989 | return; | 
|  | 990 | } | 
|  | 991 | } | 
|  | 992 | } | 
|  | 993 |  | 
| Benjamin Kramer | 9f0c7cc | 2010-12-30 00:13:21 +0000 | [diff] [blame] | 994 | Builder.CreateMemCpy(DestPtr, SrcPtr, | 
| Ken Dyck | 1a8c15a | 2011-04-24 17:37:26 +0000 | [diff] [blame] | 995 | llvm::ConstantInt::get(IntPtrTy, | 
|  | 996 | TypeInfo.first.getQuantity()), | 
|  | 997 | TypeInfo.second.getQuantity(), isVolatile); | 
| Daniel Dunbar | 7482d12 | 2008-09-09 20:49:46 +0000 | [diff] [blame] | 998 | } |