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