blob: 89fea398d33477351b5b599e3a7fa1e9d9e7fddb [file] [log] [blame]
Chris Lattner566b6ce2007-08-24 02:22:53 +00001//===--- CGExprAgg.cpp - Emit LLVM Code from Aggregate Expressions --------===//
Chris Lattneraf6f5282007-08-10 20:13:28 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattneraf6f5282007-08-10 20:13:28 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This contains code to emit Aggregate Expr nodes as LLVM code.
11//
12//===----------------------------------------------------------------------===//
13
14#include "CodeGenFunction.h"
Chris Lattner883f6a72007-08-11 00:04:45 +000015#include "CodeGenModule.h"
Fariborz Jahanian082b02e2009-07-08 01:18:33 +000016#include "CGObjCRuntime.h"
Daniel Dunbarde7fb842008-08-11 05:00:27 +000017#include "clang/AST/ASTContext.h"
Anders Carlssonb14095a2009-04-17 00:06:03 +000018#include "clang/AST/DeclCXX.h"
Daniel Dunbarde7fb842008-08-11 05:00:27 +000019#include "clang/AST/StmtVisitor.h"
Chris Lattner883f6a72007-08-11 00:04:45 +000020#include "llvm/Constants.h"
21#include "llvm/Function.h"
Devang Patel636c3d02007-10-26 17:44:44 +000022#include "llvm/GlobalVariable.h"
Chris Lattnerf81557c2008-04-04 18:42:16 +000023#include "llvm/Intrinsics.h"
Chris Lattneraf6f5282007-08-10 20:13:28 +000024using namespace clang;
25using namespace CodeGen;
Chris Lattner883f6a72007-08-11 00:04:45 +000026
Chris Lattner9c033562007-08-21 04:25:47 +000027//===----------------------------------------------------------------------===//
28// Aggregate Expression Emitter
29//===----------------------------------------------------------------------===//
30
31namespace {
Benjamin Kramer85b45212009-11-28 19:45:26 +000032class AggExprEmitter : public StmtVisitor<AggExprEmitter> {
Chris Lattner9c033562007-08-21 04:25:47 +000033 CodeGenFunction &CGF;
Daniel Dunbar45d196b2008-11-01 01:53:16 +000034 CGBuilderTy &Builder;
Chris Lattner9c033562007-08-21 04:25:47 +000035 llvm::Value *DestPtr;
36 bool VolatileDest;
Mike Stump49d1cd52009-05-26 22:03:21 +000037 bool IgnoreResult;
Anders Carlsson14c5cbf2009-08-16 07:36:22 +000038 bool IsInitializer;
Fariborz Jahanian08c32132009-08-31 19:33:16 +000039 bool RequiresGCollection;
John McCallef072fd2010-05-22 01:48:05 +000040
41 ReturnValueSlot getReturnValueSlot() const {
John McCallfa037bd2010-05-22 22:13:32 +000042 // If the destination slot requires garbage collection, we can't
43 // use the real return value slot, because we have to use the GC
44 // API.
45 if (RequiresGCollection) return ReturnValueSlot();
46
John McCallef072fd2010-05-22 01:48:05 +000047 return ReturnValueSlot(DestPtr, VolatileDest);
48 }
John McCallfa037bd2010-05-22 22:13:32 +000049
Chris Lattner9c033562007-08-21 04:25:47 +000050public:
Mike Stumpff4bf3b2009-05-27 01:42:21 +000051 AggExprEmitter(CodeGenFunction &cgf, llvm::Value *destPtr, bool v,
Fariborz Jahanian08c32132009-08-31 19:33:16 +000052 bool ignore, bool isinit, bool requiresGCollection)
Chris Lattnerbfc0c1a2007-08-26 23:13:56 +000053 : CGF(cgf), Builder(CGF.Builder),
Anders Carlsson14c5cbf2009-08-16 07:36:22 +000054 DestPtr(destPtr), VolatileDest(v), IgnoreResult(ignore),
Fariborz Jahanian08c32132009-08-31 19:33:16 +000055 IsInitializer(isinit), RequiresGCollection(requiresGCollection) {
Chris Lattner9c033562007-08-21 04:25:47 +000056 }
57
Chris Lattneree755f92007-08-21 04:59:27 +000058 //===--------------------------------------------------------------------===//
59 // Utilities
60 //===--------------------------------------------------------------------===//
61
Chris Lattner9c033562007-08-21 04:25:47 +000062 /// EmitAggLoadOfLValue - Given an expression with aggregate type that
63 /// represents a value lvalue, this method emits the address of the lvalue,
64 /// then loads the result into DestPtr.
65 void EmitAggLoadOfLValue(const Expr *E);
Eli Friedman922696f2008-05-19 17:51:16 +000066
Mike Stump4ac20dd2009-05-23 20:28:01 +000067 /// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
Mike Stump49d1cd52009-05-26 22:03:21 +000068 void EmitFinalDestCopy(const Expr *E, LValue Src, bool Ignore = false);
69 void EmitFinalDestCopy(const Expr *E, RValue Src, bool Ignore = false);
Mike Stump4ac20dd2009-05-23 20:28:01 +000070
John McCallfa037bd2010-05-22 22:13:32 +000071 void EmitGCMove(const Expr *E, RValue Src);
72
73 bool TypeRequiresGCollection(QualType T);
74
Chris Lattneree755f92007-08-21 04:59:27 +000075 //===--------------------------------------------------------------------===//
76 // Visitor Methods
77 //===--------------------------------------------------------------------===//
Mike Stump1eb44332009-09-09 15:08:12 +000078
Chris Lattner9c033562007-08-21 04:25:47 +000079 void VisitStmt(Stmt *S) {
Daniel Dunbar488e9932008-08-16 00:56:44 +000080 CGF.ErrorUnsupported(S, "aggregate expression");
Chris Lattner9c033562007-08-21 04:25:47 +000081 }
82 void VisitParenExpr(ParenExpr *PE) { Visit(PE->getSubExpr()); }
Eli Friedman12444a22009-01-27 09:03:41 +000083 void VisitUnaryExtension(UnaryOperator *E) { Visit(E->getSubExpr()); }
Chris Lattner9c033562007-08-21 04:25:47 +000084
85 // l-values.
Seo Sanghyeon9b73b392007-12-14 02:04:12 +000086 void VisitDeclRefExpr(DeclRefExpr *DRE) { EmitAggLoadOfLValue(DRE); }
87 void VisitMemberExpr(MemberExpr *ME) { EmitAggLoadOfLValue(ME); }
88 void VisitUnaryDeref(UnaryOperator *E) { EmitAggLoadOfLValue(E); }
Daniel Dunbar5be028f2010-01-04 18:47:06 +000089 void VisitStringLiteral(StringLiteral *E) { EmitAggLoadOfLValue(E); }
Chris Lattnerf0a990c2009-04-21 23:00:09 +000090 void VisitCompoundLiteralExpr(CompoundLiteralExpr *E) {
Mike Stump1eb44332009-09-09 15:08:12 +000091 EmitAggLoadOfLValue(E);
Chris Lattnerf0a990c2009-04-21 23:00:09 +000092 }
Seo Sanghyeon9b73b392007-12-14 02:04:12 +000093 void VisitArraySubscriptExpr(ArraySubscriptExpr *E) {
94 EmitAggLoadOfLValue(E);
95 }
Chris Lattnerf0a990c2009-04-21 23:00:09 +000096 void VisitBlockDeclRefExpr(const BlockDeclRefExpr *E) {
Mike Stump1eb44332009-09-09 15:08:12 +000097 EmitAggLoadOfLValue(E);
Chris Lattnerf0a990c2009-04-21 23:00:09 +000098 }
99 void VisitPredefinedExpr(const PredefinedExpr *E) {
Mike Stump1eb44332009-09-09 15:08:12 +0000100 EmitAggLoadOfLValue(E);
Chris Lattnerf0a990c2009-04-21 23:00:09 +0000101 }
Mike Stump1eb44332009-09-09 15:08:12 +0000102
Chris Lattner9c033562007-08-21 04:25:47 +0000103 // Operators.
Anders Carlsson4d8673b2009-08-07 23:22:37 +0000104 void VisitCastExpr(CastExpr *E);
Anders Carlsson148fe672007-10-31 22:04:46 +0000105 void VisitCallExpr(const CallExpr *E);
Chris Lattnerb2d963f2007-08-31 22:54:14 +0000106 void VisitStmtExpr(const StmtExpr *E);
Chris Lattner9c033562007-08-21 04:25:47 +0000107 void VisitBinaryOperator(const BinaryOperator *BO);
Fariborz Jahanian8bfd31f2009-10-22 22:57:31 +0000108 void VisitPointerToDataMemberBinaryOperator(const BinaryOperator *BO);
Chris Lattner03d6fb92007-08-21 04:43:17 +0000109 void VisitBinAssign(const BinaryOperator *E);
Eli Friedman07fa52a2008-05-20 07:56:31 +0000110 void VisitBinComma(const BinaryOperator *E);
Chris Lattner9c033562007-08-21 04:25:47 +0000111
Chris Lattner8fdf3282008-06-24 17:04:18 +0000112 void VisitObjCMessageExpr(ObjCMessageExpr *E);
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000113 void VisitObjCIvarRefExpr(ObjCIvarRefExpr *E) {
114 EmitAggLoadOfLValue(E);
115 }
Daniel Dunbar9c3fc702008-08-27 06:57:25 +0000116 void VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *E);
Fariborz Jahanian09105f52009-08-20 17:02:02 +0000117 void VisitObjCImplicitSetterGetterRefExpr(ObjCImplicitSetterGetterRefExpr *E);
Mike Stump1eb44332009-09-09 15:08:12 +0000118
Chris Lattner9c033562007-08-21 04:25:47 +0000119 void VisitConditionalOperator(const ConditionalOperator *CO);
Anders Carlssona294ca82009-07-08 18:33:14 +0000120 void VisitChooseExpr(const ChooseExpr *CE);
Devang Patel636c3d02007-10-26 17:44:44 +0000121 void VisitInitListExpr(InitListExpr *E);
Anders Carlsson30311fa2009-12-16 06:57:54 +0000122 void VisitImplicitValueInitExpr(ImplicitValueInitExpr *E);
Chris Lattner04421082008-04-08 04:40:51 +0000123 void VisitCXXDefaultArgExpr(CXXDefaultArgExpr *DAE) {
124 Visit(DAE->getExpr());
125 }
Anders Carlssonb58d0172009-05-30 23:23:33 +0000126 void VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E);
Anders Carlsson31ccf372009-05-03 17:47:16 +0000127 void VisitCXXConstructExpr(const CXXConstructExpr *E);
Anders Carlsson7f6ad152009-05-19 04:48:36 +0000128 void VisitCXXExprWithTemporaries(CXXExprWithTemporaries *E);
Douglas Gregored8abf12010-07-08 06:14:04 +0000129 void VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *E);
Mike Stump2710c412009-11-18 00:40:12 +0000130 void VisitCXXTypeidExpr(CXXTypeidExpr *E) { EmitAggLoadOfLValue(E); }
Anders Carlsson7f6ad152009-05-19 04:48:36 +0000131
Eli Friedmanb1851242008-05-27 15:51:49 +0000132 void VisitVAArgExpr(VAArgExpr *E);
Chris Lattnerf81557c2008-04-04 18:42:16 +0000133
Anders Carlsson78e83f82010-02-03 17:33:16 +0000134 void EmitInitializationToLValue(Expr *E, LValue Address, QualType T);
Chris Lattnerf81557c2008-04-04 18:42:16 +0000135 void EmitNullInitializationToLValue(LValue Address, QualType T);
Chris Lattner9c033562007-08-21 04:25:47 +0000136 // case Expr::ChooseExprClass:
Mike Stump39406b12009-12-09 19:24:08 +0000137 void VisitCXXThrowExpr(const CXXThrowExpr *E) { CGF.EmitCXXThrowExpr(E); }
Chris Lattner9c033562007-08-21 04:25:47 +0000138};
139} // end anonymous namespace.
140
Chris Lattneree755f92007-08-21 04:59:27 +0000141//===----------------------------------------------------------------------===//
142// Utilities
143//===----------------------------------------------------------------------===//
Chris Lattner9c033562007-08-21 04:25:47 +0000144
Chris Lattner883f6a72007-08-11 00:04:45 +0000145/// EmitAggLoadOfLValue - Given an expression with aggregate type that
146/// represents a value lvalue, this method emits the address of the lvalue,
147/// then loads the result into DestPtr.
Chris Lattner9c033562007-08-21 04:25:47 +0000148void AggExprEmitter::EmitAggLoadOfLValue(const Expr *E) {
149 LValue LV = CGF.EmitLValue(E);
Mike Stump4ac20dd2009-05-23 20:28:01 +0000150 EmitFinalDestCopy(E, LV);
151}
152
John McCallfa037bd2010-05-22 22:13:32 +0000153/// \brief True if the given aggregate type requires special GC API calls.
154bool AggExprEmitter::TypeRequiresGCollection(QualType T) {
155 // Only record types have members that might require garbage collection.
156 const RecordType *RecordTy = T->getAs<RecordType>();
157 if (!RecordTy) return false;
158
159 // Don't mess with non-trivial C++ types.
160 RecordDecl *Record = RecordTy->getDecl();
161 if (isa<CXXRecordDecl>(Record) &&
162 (!cast<CXXRecordDecl>(Record)->hasTrivialCopyConstructor() ||
163 !cast<CXXRecordDecl>(Record)->hasTrivialDestructor()))
164 return false;
165
166 // Check whether the type has an object member.
167 return Record->hasObjectMember();
168}
169
170/// \brief Perform the final move to DestPtr if RequiresGCollection is set.
171///
172/// The idea is that you do something like this:
173/// RValue Result = EmitSomething(..., getReturnValueSlot());
174/// EmitGCMove(E, Result);
175/// If GC doesn't interfere, this will cause the result to be emitted
176/// directly into the return value slot. If GC does interfere, a final
177/// move will be performed.
178void AggExprEmitter::EmitGCMove(const Expr *E, RValue Src) {
Fariborz Jahanian55bcace2010-06-15 22:44:06 +0000179 if (RequiresGCollection) {
180 std::pair<uint64_t, unsigned> TypeInfo =
181 CGF.getContext().getTypeInfo(E->getType());
182 unsigned long size = TypeInfo.first/8;
183 const llvm::Type *SizeTy = CGF.ConvertType(CGF.getContext().getSizeType());
184 llvm::Value *SizeVal = llvm::ConstantInt::get(SizeTy, size);
185 CGF.CGM.getObjCRuntime().EmitGCMemmoveCollectable(CGF, DestPtr,
John McCallfa037bd2010-05-22 22:13:32 +0000186 Src.getAggregateAddr(),
Fariborz Jahanian55bcace2010-06-15 22:44:06 +0000187 SizeVal);
188 }
John McCallfa037bd2010-05-22 22:13:32 +0000189}
190
Mike Stump4ac20dd2009-05-23 20:28:01 +0000191/// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
Mike Stump49d1cd52009-05-26 22:03:21 +0000192void AggExprEmitter::EmitFinalDestCopy(const Expr *E, RValue Src, bool Ignore) {
Mike Stump4ac20dd2009-05-23 20:28:01 +0000193 assert(Src.isAggregate() && "value must be aggregate value!");
194
John McCalla8f28da2010-08-25 02:50:31 +0000195 // If DestPtr is null, then we're evaluating an aggregate expression
196 // in a context (like an expression statement) that doesn't care
197 // about the result. C says that an lvalue-to-rvalue conversion is
198 // performed in these cases; C++ says that it is not. In either
199 // case, we don't actually need to do anything unless the value is
200 // volatile.
Mike Stump9ccb1032009-05-23 22:01:27 +0000201 if (DestPtr == 0) {
John McCalla8f28da2010-08-25 02:50:31 +0000202 if (!Src.isVolatileQualified() ||
203 CGF.CGM.getLangOptions().CPlusPlus ||
204 (IgnoreResult && Ignore))
Mike Stump9ccb1032009-05-23 22:01:27 +0000205 return;
John McCalla8f28da2010-08-25 02:50:31 +0000206
Mike Stump49d1cd52009-05-26 22:03:21 +0000207 // If the source is volatile, we must read from it; to do that, we need
208 // some place to put it.
Daniel Dunbar195337d2010-02-09 02:48:28 +0000209 DestPtr = CGF.CreateMemTemp(E->getType(), "agg.tmp");
Mike Stump9ccb1032009-05-23 22:01:27 +0000210 }
Chris Lattner883f6a72007-08-11 00:04:45 +0000211
Fariborz Jahanian08c32132009-08-31 19:33:16 +0000212 if (RequiresGCollection) {
Fariborz Jahanian55bcace2010-06-15 22:44:06 +0000213 std::pair<uint64_t, unsigned> TypeInfo =
214 CGF.getContext().getTypeInfo(E->getType());
215 unsigned long size = TypeInfo.first/8;
216 const llvm::Type *SizeTy = CGF.ConvertType(CGF.getContext().getSizeType());
217 llvm::Value *SizeVal = llvm::ConstantInt::get(SizeTy, size);
Fariborz Jahanian08c32132009-08-31 19:33:16 +0000218 CGF.CGM.getObjCRuntime().EmitGCMemmoveCollectable(CGF,
219 DestPtr, Src.getAggregateAddr(),
Fariborz Jahanian55bcace2010-06-15 22:44:06 +0000220 SizeVal);
Fariborz Jahanian08c32132009-08-31 19:33:16 +0000221 return;
222 }
Mike Stump4ac20dd2009-05-23 20:28:01 +0000223 // 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..
Mike Stump27fe2e62009-05-23 22:29:41 +0000227 CGF.EmitAggregateCopy(DestPtr, Src.getAggregateAddr(), E->getType(),
228 VolatileDest|Src.isVolatileQualified());
Mike Stump4ac20dd2009-05-23 20:28:01 +0000229}
230
231/// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
Mike Stump49d1cd52009-05-26 22:03:21 +0000232void AggExprEmitter::EmitFinalDestCopy(const Expr *E, LValue Src, bool Ignore) {
Mike Stump4ac20dd2009-05-23 20:28:01 +0000233 assert(Src.isSimple() && "Can't have aggregate bitfield, vector, etc");
234
235 EmitFinalDestCopy(E, RValue::getAggregate(Src.getAddress(),
Mike Stump49d1cd52009-05-26 22:03:21 +0000236 Src.isVolatileQualified()),
237 Ignore);
Chris Lattner883f6a72007-08-11 00:04:45 +0000238}
239
Chris Lattneree755f92007-08-21 04:59:27 +0000240//===----------------------------------------------------------------------===//
241// Visitor Methods
242//===----------------------------------------------------------------------===//
243
Anders Carlsson4d8673b2009-08-07 23:22:37 +0000244void AggExprEmitter::VisitCastExpr(CastExpr *E) {
Douglas Gregor69cfeb12010-05-14 21:31:02 +0000245 if (!DestPtr && E->getCastKind() != CastExpr::CK_Dynamic) {
Douglas Gregor4ce46c22010-03-07 23:24:59 +0000246 Visit(E->getSubExpr());
247 return;
248 }
249
Anders Carlsson30168422009-09-29 01:23:39 +0000250 switch (E->getCastKind()) {
251 default: assert(0 && "Unhandled cast kind!");
252
Douglas Gregor69cfeb12010-05-14 21:31:02 +0000253 case CastExpr::CK_Dynamic: {
254 assert(isa<CXXDynamicCastExpr>(E) && "CK_Dynamic without a dynamic_cast?");
255 LValue LV = CGF.EmitCheckedLValue(E->getSubExpr());
256 // FIXME: Do we also need to handle property references here?
257 if (LV.isSimple())
258 CGF.EmitDynamicCast(LV.getAddress(), cast<CXXDynamicCastExpr>(E));
259 else
260 CGF.CGM.ErrorUnsupported(E, "non-simple lvalue dynamic_cast");
261
262 if (DestPtr)
263 CGF.CGM.ErrorUnsupported(E, "lvalue dynamic_cast with a destination");
264 break;
265 }
266
Anders Carlsson30168422009-09-29 01:23:39 +0000267 case CastExpr::CK_ToUnion: {
Anders Carlsson4d8673b2009-08-07 23:22:37 +0000268 // GCC union extension
Daniel Dunbar79c39282010-08-21 03:15:20 +0000269 QualType Ty = E->getSubExpr()->getType();
270 QualType PtrTy = CGF.getContext().getPointerType(Ty);
Eli Friedman34ebf4d2009-06-03 20:45:06 +0000271 llvm::Value *CastPtr = Builder.CreateBitCast(DestPtr,
272 CGF.ConvertType(PtrTy));
Daniel Dunbar79c39282010-08-21 03:15:20 +0000273 EmitInitializationToLValue(E->getSubExpr(), CGF.MakeAddrLValue(CastPtr, Ty),
274 Ty);
Anders Carlsson30168422009-09-29 01:23:39 +0000275 break;
Nuno Lopes7e916272009-01-15 20:14:33 +0000276 }
Mike Stump1eb44332009-09-09 15:08:12 +0000277
Douglas Gregor2d6b0e92010-05-22 05:17:18 +0000278 case CastExpr::CK_DerivedToBase:
279 case CastExpr::CK_BaseToDerived:
280 case CastExpr::CK_UncheckedDerivedToBase: {
281 assert(0 && "cannot perform hierarchy conversion in EmitAggExpr: "
282 "should have been unpacked before we got here");
283 break;
284 }
285
Anders Carlsson4d8673b2009-08-07 23:22:37 +0000286 // FIXME: Remove the CK_Unknown check here.
Anders Carlsson30168422009-09-29 01:23:39 +0000287 case CastExpr::CK_Unknown:
288 case CastExpr::CK_NoOp:
289 case CastExpr::CK_UserDefinedConversion:
290 case CastExpr::CK_ConstructorConversion:
291 assert(CGF.getContext().hasSameUnqualifiedType(E->getSubExpr()->getType(),
292 E->getType()) &&
293 "Implicit cast types must be compatible");
294 Visit(E->getSubExpr());
295 break;
Anders Carlssone9d34dc2009-09-29 02:09:01 +0000296
Douglas Gregore39a3892010-07-13 23:17:26 +0000297 case CastExpr::CK_LValueBitCast:
298 llvm_unreachable("there are no lvalue bit-casts on aggregates");
299 break;
Anders Carlsson30168422009-09-29 01:23:39 +0000300 }
Anders Carlssone4707ff2008-01-14 06:28:57 +0000301}
302
Chris Lattner96196622008-07-26 22:37:01 +0000303void AggExprEmitter::VisitCallExpr(const CallExpr *E) {
Anders Carlssone70e8f72009-05-27 16:45:02 +0000304 if (E->getCallReturnType()->isReferenceType()) {
305 EmitAggLoadOfLValue(E);
306 return;
307 }
Mike Stump1eb44332009-09-09 15:08:12 +0000308
John McCallfa037bd2010-05-22 22:13:32 +0000309 RValue RV = CGF.EmitCallExpr(E, getReturnValueSlot());
310 EmitGCMove(E, RV);
Anders Carlsson148fe672007-10-31 22:04:46 +0000311}
Chris Lattner96196622008-07-26 22:37:01 +0000312
313void AggExprEmitter::VisitObjCMessageExpr(ObjCMessageExpr *E) {
John McCallfa037bd2010-05-22 22:13:32 +0000314 RValue RV = CGF.EmitObjCMessageExpr(E, getReturnValueSlot());
315 EmitGCMove(E, RV);
Chris Lattner8fdf3282008-06-24 17:04:18 +0000316}
Anders Carlsson148fe672007-10-31 22:04:46 +0000317
Daniel Dunbar9c3fc702008-08-27 06:57:25 +0000318void AggExprEmitter::VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *E) {
John McCallfa037bd2010-05-22 22:13:32 +0000319 RValue RV = CGF.EmitObjCPropertyGet(E, getReturnValueSlot());
320 EmitGCMove(E, RV);
Daniel Dunbar9c3fc702008-08-27 06:57:25 +0000321}
322
Fariborz Jahanian09105f52009-08-20 17:02:02 +0000323void AggExprEmitter::VisitObjCImplicitSetterGetterRefExpr(
324 ObjCImplicitSetterGetterRefExpr *E) {
John McCallfa037bd2010-05-22 22:13:32 +0000325 RValue RV = CGF.EmitObjCPropertyGet(E, getReturnValueSlot());
326 EmitGCMove(E, RV);
Fariborz Jahanian5daf5702008-11-22 18:39:36 +0000327}
328
Chris Lattner96196622008-07-26 22:37:01 +0000329void AggExprEmitter::VisitBinComma(const BinaryOperator *E) {
Mike Stump7f79f9b2009-05-29 15:46:01 +0000330 CGF.EmitAnyExpr(E->getLHS(), 0, false, true);
Anders Carlsson14c5cbf2009-08-16 07:36:22 +0000331 CGF.EmitAggExpr(E->getRHS(), DestPtr, VolatileDest,
332 /*IgnoreResult=*/false, IsInitializer);
Eli Friedman07fa52a2008-05-20 07:56:31 +0000333}
334
Chris Lattnerb2d963f2007-08-31 22:54:14 +0000335void AggExprEmitter::VisitStmtExpr(const StmtExpr *E) {
336 CGF.EmitCompoundStmt(*E->getSubStmt(), true, DestPtr, VolatileDest);
337}
338
Chris Lattner9c033562007-08-21 04:25:47 +0000339void AggExprEmitter::VisitBinaryOperator(const BinaryOperator *E) {
Fariborz Jahanian52f08bc2009-10-26 21:58:25 +0000340 if (E->getOpcode() == BinaryOperator::PtrMemD ||
341 E->getOpcode() == BinaryOperator::PtrMemI)
Fariborz Jahanian8bfd31f2009-10-22 22:57:31 +0000342 VisitPointerToDataMemberBinaryOperator(E);
343 else
344 CGF.ErrorUnsupported(E, "aggregate binary expression");
345}
346
347void AggExprEmitter::VisitPointerToDataMemberBinaryOperator(
348 const BinaryOperator *E) {
349 LValue LV = CGF.EmitPointerToDataMemberBinaryExpr(E);
350 EmitFinalDestCopy(E, LV);
Chris Lattneree755f92007-08-21 04:59:27 +0000351}
352
Chris Lattner03d6fb92007-08-21 04:43:17 +0000353void AggExprEmitter::VisitBinAssign(const BinaryOperator *E) {
Eli Friedmanff6e2b72008-02-11 01:09:17 +0000354 // For an assignment to work, the value on the right has
355 // to be compatible with the value on the left.
Eli Friedman2dce5f82009-05-28 23:04:00 +0000356 assert(CGF.getContext().hasSameUnqualifiedType(E->getLHS()->getType(),
357 E->getRHS()->getType())
Eli Friedmanff6e2b72008-02-11 01:09:17 +0000358 && "Invalid assignment");
Chris Lattner9c033562007-08-21 04:25:47 +0000359 LValue LHS = CGF.EmitLValue(E->getLHS());
Chris Lattner883f6a72007-08-11 00:04:45 +0000360
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000361 // We have to special case property setters, otherwise we must have
362 // a simple lvalue (no aggregates inside vectors, bitfields).
363 if (LHS.isPropertyRef()) {
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000364 llvm::Value *AggLoc = DestPtr;
365 if (!AggLoc)
Daniel Dunbar195337d2010-02-09 02:48:28 +0000366 AggLoc = CGF.CreateMemTemp(E->getRHS()->getType());
Mike Stump240993d2009-05-23 23:48:13 +0000367 CGF.EmitAggExpr(E->getRHS(), AggLoc, VolatileDest);
Mike Stump1eb44332009-09-09 15:08:12 +0000368 CGF.EmitObjCPropertySet(LHS.getPropertyRefExpr(),
Mike Stump240993d2009-05-23 23:48:13 +0000369 RValue::getAggregate(AggLoc, VolatileDest));
Mike Stumpb3589f42009-07-30 22:28:39 +0000370 } else if (LHS.isKVCRef()) {
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000371 llvm::Value *AggLoc = DestPtr;
372 if (!AggLoc)
Daniel Dunbar195337d2010-02-09 02:48:28 +0000373 AggLoc = CGF.CreateMemTemp(E->getRHS()->getType());
Mike Stumpa49af1a2009-05-23 23:52:31 +0000374 CGF.EmitAggExpr(E->getRHS(), AggLoc, VolatileDest);
Mike Stump1eb44332009-09-09 15:08:12 +0000375 CGF.EmitObjCPropertySet(LHS.getKVCRefExpr(),
Mike Stumpa49af1a2009-05-23 23:52:31 +0000376 RValue::getAggregate(AggLoc, VolatileDest));
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000377 } else {
Fariborz Jahanian08c32132009-08-31 19:33:16 +0000378 bool RequiresGCollection = false;
John McCallfa037bd2010-05-22 22:13:32 +0000379 if (CGF.getContext().getLangOptions().getGCMode())
380 RequiresGCollection = TypeRequiresGCollection(E->getLHS()->getType());
381
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000382 // Codegen the RHS so that it stores directly into the LHS.
Fariborz Jahanian08c32132009-08-31 19:33:16 +0000383 CGF.EmitAggExpr(E->getRHS(), LHS.getAddress(), LHS.isVolatileQualified(),
384 false, false, RequiresGCollection);
Mike Stump49d1cd52009-05-26 22:03:21 +0000385 EmitFinalDestCopy(E, LHS, true);
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000386 }
Chris Lattner883f6a72007-08-11 00:04:45 +0000387}
388
Chris Lattner9c033562007-08-21 04:25:47 +0000389void AggExprEmitter::VisitConditionalOperator(const ConditionalOperator *E) {
Eli Friedman8e274bd2009-12-25 06:17:05 +0000390 if (!E->getLHS()) {
391 CGF.ErrorUnsupported(E, "conditional operator with missing LHS");
392 return;
393 }
394
Daniel Dunbar9615ecb2008-11-13 01:38:36 +0000395 llvm::BasicBlock *LHSBlock = CGF.createBasicBlock("cond.true");
396 llvm::BasicBlock *RHSBlock = CGF.createBasicBlock("cond.false");
397 llvm::BasicBlock *ContBlock = CGF.createBasicBlock("cond.end");
Mike Stump1eb44332009-09-09 15:08:12 +0000398
Eli Friedman8e274bd2009-12-25 06:17:05 +0000399 CGF.EmitBranchOnBoolExpr(E->getCond(), LHSBlock, RHSBlock);
Mike Stump1eb44332009-09-09 15:08:12 +0000400
Anders Carlsson72119a82010-02-04 17:18:07 +0000401 CGF.BeginConditionalBranch();
Chris Lattner9c033562007-08-21 04:25:47 +0000402 CGF.EmitBlock(LHSBlock);
Mike Stump1eb44332009-09-09 15:08:12 +0000403
Chris Lattner883f6a72007-08-11 00:04:45 +0000404 // Handle the GNU extension for missing LHS.
405 assert(E->getLHS() && "Must have LHS for aggregate value");
406
Chris Lattnerc748f272007-08-21 05:02:10 +0000407 Visit(E->getLHS());
Anders Carlsson72119a82010-02-04 17:18:07 +0000408 CGF.EndConditionalBranch();
Daniel Dunbard57a8712008-11-11 09:41:28 +0000409 CGF.EmitBranch(ContBlock);
Mike Stump1eb44332009-09-09 15:08:12 +0000410
Anders Carlsson72119a82010-02-04 17:18:07 +0000411 CGF.BeginConditionalBranch();
Chris Lattner9c033562007-08-21 04:25:47 +0000412 CGF.EmitBlock(RHSBlock);
Mike Stump1eb44332009-09-09 15:08:12 +0000413
Chris Lattnerc748f272007-08-21 05:02:10 +0000414 Visit(E->getRHS());
Anders Carlsson72119a82010-02-04 17:18:07 +0000415 CGF.EndConditionalBranch();
Daniel Dunbard57a8712008-11-11 09:41:28 +0000416 CGF.EmitBranch(ContBlock);
Mike Stump1eb44332009-09-09 15:08:12 +0000417
Chris Lattner9c033562007-08-21 04:25:47 +0000418 CGF.EmitBlock(ContBlock);
Chris Lattner883f6a72007-08-11 00:04:45 +0000419}
Chris Lattneree755f92007-08-21 04:59:27 +0000420
Anders Carlssona294ca82009-07-08 18:33:14 +0000421void AggExprEmitter::VisitChooseExpr(const ChooseExpr *CE) {
422 Visit(CE->getChosenSubExpr(CGF.getContext()));
423}
424
Eli Friedmanb1851242008-05-27 15:51:49 +0000425void AggExprEmitter::VisitVAArgExpr(VAArgExpr *VE) {
Daniel Dunbar07855702009-02-11 22:25:55 +0000426 llvm::Value *ArgValue = CGF.EmitVAListRef(VE->getSubExpr());
Anders Carlssonddf7cac2008-11-04 05:30:00 +0000427 llvm::Value *ArgPtr = CGF.EmitVAArg(ArgValue, VE->getType());
428
Sebastian Redl0262f022009-01-09 21:09:38 +0000429 if (!ArgPtr) {
Anders Carlssonddf7cac2008-11-04 05:30:00 +0000430 CGF.ErrorUnsupported(VE, "aggregate va_arg expression");
Sebastian Redl0262f022009-01-09 21:09:38 +0000431 return;
432 }
433
Daniel Dunbar79c39282010-08-21 03:15:20 +0000434 EmitFinalDestCopy(VE, CGF.MakeAddrLValue(ArgPtr, VE->getType()));
Eli Friedmanb1851242008-05-27 15:51:49 +0000435}
436
Anders Carlssonb58d0172009-05-30 23:23:33 +0000437void AggExprEmitter::VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E) {
438 llvm::Value *Val = DestPtr;
Mike Stump1eb44332009-09-09 15:08:12 +0000439
Anders Carlssonb58d0172009-05-30 23:23:33 +0000440 if (!Val) {
441 // Create a temporary variable.
Daniel Dunbar195337d2010-02-09 02:48:28 +0000442 Val = CGF.CreateMemTemp(E->getType(), "tmp");
Anders Carlssonb58d0172009-05-30 23:23:33 +0000443
444 // FIXME: volatile
445 CGF.EmitAggExpr(E->getSubExpr(), Val, false);
Mike Stump1eb44332009-09-09 15:08:12 +0000446 } else
Anders Carlssonb58d0172009-05-30 23:23:33 +0000447 Visit(E->getSubExpr());
Mike Stump1eb44332009-09-09 15:08:12 +0000448
Anders Carlsson14c5cbf2009-08-16 07:36:22 +0000449 // Don't make this a live temporary if we're emitting an initializer expr.
450 if (!IsInitializer)
John McCallf1549f62010-07-06 01:34:17 +0000451 CGF.EmitCXXTemporary(E->getTemporary(), Val);
Anders Carlssonb58d0172009-05-30 23:23:33 +0000452}
453
Anders Carlssonb14095a2009-04-17 00:06:03 +0000454void
Anders Carlsson31ccf372009-05-03 17:47:16 +0000455AggExprEmitter::VisitCXXConstructExpr(const CXXConstructExpr *E) {
Anders Carlssonb58d0172009-05-30 23:23:33 +0000456 llvm::Value *Val = DestPtr;
Mike Stump1eb44332009-09-09 15:08:12 +0000457
Chris Lattnerfbe02ff2010-06-27 07:40:06 +0000458 if (!Val) // Create a temporary variable.
Daniel Dunbar195337d2010-02-09 02:48:28 +0000459 Val = CGF.CreateMemTemp(E->getType(), "tmp");
Anders Carlsson8e587a12009-05-30 20:56:46 +0000460
Anders Carlssonb58d0172009-05-30 23:23:33 +0000461 CGF.EmitCXXConstructExpr(Val, E);
Anders Carlsson7f6ad152009-05-19 04:48:36 +0000462}
463
464void AggExprEmitter::VisitCXXExprWithTemporaries(CXXExprWithTemporaries *E) {
Mike Stumpdd5614b2009-12-18 02:14:27 +0000465 llvm::Value *Val = DestPtr;
466
Mike Stumpdd5614b2009-12-18 02:14:27 +0000467 CGF.EmitCXXExprWithTemporaries(E, Val, VolatileDest, IsInitializer);
Anders Carlssonb14095a2009-04-17 00:06:03 +0000468}
469
Douglas Gregored8abf12010-07-08 06:14:04 +0000470void AggExprEmitter::VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *E) {
Mike Stumpdd5614b2009-12-18 02:14:27 +0000471 llvm::Value *Val = DestPtr;
472
473 if (!Val) {
474 // Create a temporary variable.
Daniel Dunbar195337d2010-02-09 02:48:28 +0000475 Val = CGF.CreateMemTemp(E->getType(), "tmp");
Mike Stumpdd5614b2009-12-18 02:14:27 +0000476 }
Daniel Dunbar79c39282010-08-21 03:15:20 +0000477 EmitNullInitializationToLValue(CGF.MakeAddrLValue(Val, E->getType()),
478 E->getType());
Anders Carlsson30311fa2009-12-16 06:57:54 +0000479}
480
481void AggExprEmitter::VisitImplicitValueInitExpr(ImplicitValueInitExpr *E) {
Mike Stumpdd5614b2009-12-18 02:14:27 +0000482 llvm::Value *Val = DestPtr;
483
484 if (!Val) {
485 // Create a temporary variable.
Daniel Dunbar195337d2010-02-09 02:48:28 +0000486 Val = CGF.CreateMemTemp(E->getType(), "tmp");
Mike Stumpdd5614b2009-12-18 02:14:27 +0000487 }
Daniel Dunbar79c39282010-08-21 03:15:20 +0000488 EmitNullInitializationToLValue(CGF.MakeAddrLValue(Val, E->getType()),
489 E->getType());
Nuno Lopes329763b2009-10-18 15:18:11 +0000490}
491
Anders Carlsson78e83f82010-02-03 17:33:16 +0000492void
493AggExprEmitter::EmitInitializationToLValue(Expr* E, LValue LV, QualType T) {
Mike Stump7f79f9b2009-05-29 15:46:01 +0000494 // FIXME: Ignore result?
Chris Lattnerf81557c2008-04-04 18:42:16 +0000495 // FIXME: Are initializers affected by volatile?
Douglas Gregor3498bdb2009-01-29 17:44:32 +0000496 if (isa<ImplicitValueInitExpr>(E)) {
Anders Carlsson78e83f82010-02-03 17:33:16 +0000497 EmitNullInitializationToLValue(LV, T);
Anders Carlssone78ccb42010-02-03 19:13:55 +0000498 } else if (T->isReferenceType()) {
Anders Carlsson32f36ba2010-06-26 16:35:32 +0000499 RValue RV = CGF.EmitReferenceBindingToExpr(E, /*InitializedDecl=*/0);
Anders Carlssone78ccb42010-02-03 19:13:55 +0000500 CGF.EmitStoreThroughLValue(RV, LV, T);
Anders Carlsson78e83f82010-02-03 17:33:16 +0000501 } else if (T->isAnyComplexType()) {
Douglas Gregor3498bdb2009-01-29 17:44:32 +0000502 CGF.EmitComplexExprIntoAddr(E, LV.getAddress(), false);
Anders Carlsson78e83f82010-02-03 17:33:16 +0000503 } else if (CGF.hasAggregateLLVMType(T)) {
Eli Friedmanc8ba9612008-05-12 15:06:05 +0000504 CGF.EmitAnyExpr(E, LV.getAddress(), false);
505 } else {
Anders Carlsson78e83f82010-02-03 17:33:16 +0000506 CGF.EmitStoreThroughLValue(CGF.EmitAnyExpr(E), LV, T);
Chris Lattnerf81557c2008-04-04 18:42:16 +0000507 }
Chris Lattnerf81557c2008-04-04 18:42:16 +0000508}
509
510void AggExprEmitter::EmitNullInitializationToLValue(LValue LV, QualType T) {
511 if (!CGF.hasAggregateLLVMType(T)) {
512 // For non-aggregates, we can store zero
Owen Andersonc9c88b42009-07-31 20:28:54 +0000513 llvm::Value *Null = llvm::Constant::getNullValue(CGF.ConvertType(T));
Daniel Dunbar82397132008-08-06 05:32:55 +0000514 CGF.EmitStoreThroughLValue(RValue::get(Null), LV, T);
Lauro Ramos Venancio145cd892008-02-19 19:27:31 +0000515 } else {
Chris Lattnerf81557c2008-04-04 18:42:16 +0000516 // There's a potential optimization opportunity in combining
517 // memsets; that would be easy for arrays, but relatively
518 // difficult for structures with the current code.
Anders Carlsson1884eb02010-05-22 17:35:42 +0000519 CGF.EmitNullInitialization(LV.getAddress(), T);
Chris Lattnerf81557c2008-04-04 18:42:16 +0000520 }
521}
522
Chris Lattnerf81557c2008-04-04 18:42:16 +0000523void AggExprEmitter::VisitInitListExpr(InitListExpr *E) {
Eli Friedmana385b3c2008-12-02 01:17:45 +0000524#if 0
Eli Friedman13a5be12009-12-04 01:30:56 +0000525 // FIXME: Assess perf here? Figure out what cases are worth optimizing here
526 // (Length of globals? Chunks of zeroed-out space?).
Eli Friedmana385b3c2008-12-02 01:17:45 +0000527 //
Mike Stumpf5408fe2009-05-16 07:57:57 +0000528 // If we can, prefer a copy from a global; this is a lot less code for long
529 // globals, and it's easier for the current optimizers to analyze.
Eli Friedman13a5be12009-12-04 01:30:56 +0000530 if (llvm::Constant* C = CGF.CGM.EmitConstantExpr(E, E->getType(), &CGF)) {
Eli Friedman994ffef2008-11-30 02:11:09 +0000531 llvm::GlobalVariable* GV =
Eli Friedman13a5be12009-12-04 01:30:56 +0000532 new llvm::GlobalVariable(CGF.CGM.getModule(), C->getType(), true,
533 llvm::GlobalValue::InternalLinkage, C, "");
Daniel Dunbar79c39282010-08-21 03:15:20 +0000534 EmitFinalDestCopy(E, CGF.MakeAddrLValue(GV, E->getType()));
Eli Friedman994ffef2008-11-30 02:11:09 +0000535 return;
536 }
Eli Friedmana385b3c2008-12-02 01:17:45 +0000537#endif
Douglas Gregora9c87802009-01-29 19:42:23 +0000538 if (E->hadArrayRangeDesignator()) {
539 CGF.ErrorUnsupported(E, "GNU array range designator extension");
540 }
541
Chris Lattnerf81557c2008-04-04 18:42:16 +0000542 // Handle initialization of an array.
543 if (E->getType()->isArrayType()) {
544 const llvm::PointerType *APType =
545 cast<llvm::PointerType>(DestPtr->getType());
546 const llvm::ArrayType *AType =
547 cast<llvm::ArrayType>(APType->getElementType());
Mike Stump1eb44332009-09-09 15:08:12 +0000548
Chris Lattnerf81557c2008-04-04 18:42:16 +0000549 uint64_t NumInitElements = E->getNumInits();
Eli Friedman922696f2008-05-19 17:51:16 +0000550
Chris Lattner96196622008-07-26 22:37:01 +0000551 if (E->getNumInits() > 0) {
552 QualType T1 = E->getType();
553 QualType T2 = E->getInit(0)->getType();
Eli Friedman2dce5f82009-05-28 23:04:00 +0000554 if (CGF.getContext().hasSameUnqualifiedType(T1, T2)) {
Chris Lattner96196622008-07-26 22:37:01 +0000555 EmitAggLoadOfLValue(E->getInit(0));
556 return;
557 }
Eli Friedman922696f2008-05-19 17:51:16 +0000558 }
559
Chris Lattnerf81557c2008-04-04 18:42:16 +0000560 uint64_t NumArrayElements = AType->getNumElements();
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000561 QualType ElementType = CGF.getContext().getCanonicalType(E->getType());
Douglas Gregor4c678342009-01-28 21:54:33 +0000562 ElementType = CGF.getContext().getAsArrayType(ElementType)->getElementType();
Mike Stump1eb44332009-09-09 15:08:12 +0000563
John McCall0953e762009-09-24 19:53:00 +0000564 // FIXME: were we intentionally ignoring address spaces and GC attributes?
Eli Friedman1e692ac2008-06-13 23:01:12 +0000565
Chris Lattnerf81557c2008-04-04 18:42:16 +0000566 for (uint64_t i = 0; i != NumArrayElements; ++i) {
567 llvm::Value *NextVal = Builder.CreateStructGEP(DestPtr, i, ".array");
Daniel Dunbar9f553f52010-08-21 03:08:16 +0000568 LValue LV = CGF.MakeAddrLValue(NextVal, ElementType);
Chris Lattnerf81557c2008-04-04 18:42:16 +0000569 if (i < NumInitElements)
Daniel Dunbar9f553f52010-08-21 03:08:16 +0000570 EmitInitializationToLValue(E->getInit(i), LV, ElementType);
571
Chris Lattnerf81557c2008-04-04 18:42:16 +0000572 else
Daniel Dunbar9f553f52010-08-21 03:08:16 +0000573 EmitNullInitializationToLValue(LV, ElementType);
Lauro Ramos Venancio145cd892008-02-19 19:27:31 +0000574 }
Chris Lattnerf81557c2008-04-04 18:42:16 +0000575 return;
576 }
Mike Stump1eb44332009-09-09 15:08:12 +0000577
Chris Lattnerf81557c2008-04-04 18:42:16 +0000578 assert(E->getType()->isRecordType() && "Only support structs/unions here!");
Mike Stump1eb44332009-09-09 15:08:12 +0000579
Chris Lattnerf81557c2008-04-04 18:42:16 +0000580 // Do struct initialization; this code just sets each individual member
581 // to the approprate value. This makes bitfield support automatic;
582 // the disadvantage is that the generated code is more difficult for
583 // the optimizer, especially with bitfields.
584 unsigned NumInitElements = E->getNumInits();
Ted Kremenek6217b802009-07-29 21:53:49 +0000585 RecordDecl *SD = E->getType()->getAs<RecordType>()->getDecl();
Chris Lattnerf81557c2008-04-04 18:42:16 +0000586 unsigned CurInitVal = 0;
Douglas Gregor0bb76892009-01-29 16:53:55 +0000587
588 if (E->getType()->isUnionType()) {
589 // Only initialize one field of a union. The field itself is
590 // specified by the initializer list.
591 if (!E->getInitializedFieldInUnion()) {
592 // Empty union; we have nothing to do.
Mike Stump1eb44332009-09-09 15:08:12 +0000593
Douglas Gregor0bb76892009-01-29 16:53:55 +0000594#ifndef NDEBUG
595 // Make sure that it's really an empty and not a failure of
596 // semantic analysis.
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000597 for (RecordDecl::field_iterator Field = SD->field_begin(),
598 FieldEnd = SD->field_end();
Douglas Gregor0bb76892009-01-29 16:53:55 +0000599 Field != FieldEnd; ++Field)
600 assert(Field->isUnnamedBitfield() && "Only unnamed bitfields allowed");
601#endif
602 return;
603 }
604
605 // FIXME: volatility
606 FieldDecl *Field = E->getInitializedFieldInUnion();
Anders Carlssone78ccb42010-02-03 19:13:55 +0000607 LValue FieldLoc = CGF.EmitLValueForFieldInitialization(DestPtr, Field, 0);
Douglas Gregor0bb76892009-01-29 16:53:55 +0000608
609 if (NumInitElements) {
610 // Store the initializer into the field
Anders Carlsson78e83f82010-02-03 17:33:16 +0000611 EmitInitializationToLValue(E->getInit(0), FieldLoc, Field->getType());
Douglas Gregor0bb76892009-01-29 16:53:55 +0000612 } else {
613 // Default-initialize to null
614 EmitNullInitializationToLValue(FieldLoc, Field->getType());
615 }
616
617 return;
618 }
Chris Lattnerb35baae2010-03-08 21:08:07 +0000619
620 // If we're initializing the whole aggregate, just do it in place.
621 // FIXME: This is a hack around an AST bug (PR6537).
622 if (NumInitElements == 1 && E->getType() == E->getInit(0)->getType()) {
623 EmitInitializationToLValue(E->getInit(0),
Daniel Dunbar79c39282010-08-21 03:15:20 +0000624 CGF.MakeAddrLValue(DestPtr, E->getType()),
Chris Lattnerb35baae2010-03-08 21:08:07 +0000625 E->getType());
626 return;
627 }
628
Mike Stump1eb44332009-09-09 15:08:12 +0000629
Chris Lattnerf81557c2008-04-04 18:42:16 +0000630 // Here we iterate over the fields; this makes it simpler to both
631 // default-initialize fields and skip over unnamed fields.
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000632 for (RecordDecl::field_iterator Field = SD->field_begin(),
633 FieldEnd = SD->field_end();
Douglas Gregor44b43212008-12-11 16:49:14 +0000634 Field != FieldEnd; ++Field) {
635 // We're done once we hit the flexible array member
636 if (Field->getType()->isIncompleteArrayType())
637 break;
638
Douglas Gregor34e79462009-01-28 23:36:17 +0000639 if (Field->isUnnamedBitfield())
Chris Lattnerf81557c2008-04-04 18:42:16 +0000640 continue;
Douglas Gregor34e79462009-01-28 23:36:17 +0000641
Eli Friedman1e692ac2008-06-13 23:01:12 +0000642 // FIXME: volatility
Anders Carlssone78ccb42010-02-03 19:13:55 +0000643 LValue FieldLoc = CGF.EmitLValueForFieldInitialization(DestPtr, *Field, 0);
Fariborz Jahanian14674ff2009-05-27 19:54:11 +0000644 // We never generate write-barries for initialized fields.
Daniel Dunbarea619172010-08-21 03:22:38 +0000645 FieldLoc.setNonGC(true);
Chris Lattnerf81557c2008-04-04 18:42:16 +0000646 if (CurInitVal < NumInitElements) {
Chris Lattnerb35baae2010-03-08 21:08:07 +0000647 // Store the initializer into the field.
648 EmitInitializationToLValue(E->getInit(CurInitVal++), FieldLoc,
Anders Carlsson78e83f82010-02-03 17:33:16 +0000649 Field->getType());
Chris Lattnerf81557c2008-04-04 18:42:16 +0000650 } else {
651 // We're out of initalizers; default-initialize to null
Douglas Gregor44b43212008-12-11 16:49:14 +0000652 EmitNullInitializationToLValue(FieldLoc, Field->getType());
Chris Lattnerf81557c2008-04-04 18:42:16 +0000653 }
Lauro Ramos Venancio145cd892008-02-19 19:27:31 +0000654 }
Devang Patel636c3d02007-10-26 17:44:44 +0000655}
656
Chris Lattneree755f92007-08-21 04:59:27 +0000657//===----------------------------------------------------------------------===//
658// Entry Points into this File
659//===----------------------------------------------------------------------===//
660
Mike Stumpe1129a92009-05-26 18:57:45 +0000661/// EmitAggExpr - Emit the computation of the specified expression of aggregate
662/// type. The result is computed into DestPtr. Note that if DestPtr is null,
663/// the value of the aggregate expression is not needed. If VolatileDest is
664/// true, DestPtr cannot be 0.
Daniel Dunbar18aba0d2010-02-05 19:38:31 +0000665//
666// FIXME: Take Qualifiers object.
Chris Lattneree755f92007-08-21 04:59:27 +0000667void CodeGenFunction::EmitAggExpr(const Expr *E, llvm::Value *DestPtr,
Anders Carlsson14c5cbf2009-08-16 07:36:22 +0000668 bool VolatileDest, bool IgnoreResult,
Mike Stump1eb44332009-09-09 15:08:12 +0000669 bool IsInitializer,
Fariborz Jahanian08c32132009-08-31 19:33:16 +0000670 bool RequiresGCollection) {
Chris Lattneree755f92007-08-21 04:59:27 +0000671 assert(E && hasAggregateLLVMType(E->getType()) &&
672 "Invalid aggregate expression to emit");
Mike Stumpe1129a92009-05-26 18:57:45 +0000673 assert ((DestPtr != 0 || VolatileDest == false)
674 && "volatile aggregate can't be 0");
Mike Stump1eb44332009-09-09 15:08:12 +0000675
Fariborz Jahanian08c32132009-08-31 19:33:16 +0000676 AggExprEmitter(*this, DestPtr, VolatileDest, IgnoreResult, IsInitializer,
677 RequiresGCollection)
Mike Stump49d1cd52009-05-26 22:03:21 +0000678 .Visit(const_cast<Expr*>(E));
Chris Lattneree755f92007-08-21 04:59:27 +0000679}
Daniel Dunbar7482d122008-09-09 20:49:46 +0000680
Daniel Dunbar18aba0d2010-02-05 19:38:31 +0000681LValue CodeGenFunction::EmitAggExprToLValue(const Expr *E) {
682 assert(hasAggregateLLVMType(E->getType()) && "Invalid argument!");
Daniel Dunbar195337d2010-02-09 02:48:28 +0000683 llvm::Value *Temp = CreateMemTemp(E->getType());
Daniel Dunbar79c39282010-08-21 03:15:20 +0000684 LValue LV = MakeAddrLValue(Temp, E->getType());
685 EmitAggExpr(E, Temp, LV.isVolatileQualified());
686 return LV;
Daniel Dunbar18aba0d2010-02-05 19:38:31 +0000687}
688
Daniel Dunbar7482d122008-09-09 20:49:46 +0000689void CodeGenFunction::EmitAggregateCopy(llvm::Value *DestPtr,
Mike Stump27fe2e62009-05-23 22:29:41 +0000690 llvm::Value *SrcPtr, QualType Ty,
691 bool isVolatile) {
Daniel Dunbar7482d122008-09-09 20:49:46 +0000692 assert(!Ty->isAnyComplexType() && "Shouldn't happen for complex");
Mike Stump1eb44332009-09-09 15:08:12 +0000693
Anders Carlsson0d7c5832010-05-03 01:20:20 +0000694 if (getContext().getLangOptions().CPlusPlus) {
695 if (const RecordType *RT = Ty->getAs<RecordType>()) {
Douglas Gregore9979482010-05-20 15:39:01 +0000696 CXXRecordDecl *Record = cast<CXXRecordDecl>(RT->getDecl());
697 assert((Record->hasTrivialCopyConstructor() ||
Fariborz Jahanian1d49f212010-05-20 16:46:55 +0000698 Record->hasTrivialCopyAssignment()) &&
Douglas Gregore9979482010-05-20 15:39:01 +0000699 "Trying to aggregate-copy a type without a trivial copy "
700 "constructor or assignment operator");
Douglas Gregor419aa962010-05-20 15:48:29 +0000701 // Ignore empty classes in C++.
Douglas Gregore9979482010-05-20 15:39:01 +0000702 if (Record->isEmpty())
Anders Carlsson0d7c5832010-05-03 01:20:20 +0000703 return;
704 }
705 }
706
Chris Lattner83c96292009-02-28 18:31:01 +0000707 // Aggregate assignment turns into llvm.memcpy. This is almost valid per
Chris Lattnerca4fc2c2009-02-28 18:18:58 +0000708 // C99 6.5.16.1p3, which states "If the value being stored in an object is
709 // read from another object that overlaps in anyway the storage of the first
710 // object, then the overlap shall be exact and the two objects shall have
711 // qualified or unqualified versions of a compatible type."
712 //
Chris Lattner83c96292009-02-28 18:31:01 +0000713 // memcpy is not defined if the source and destination pointers are exactly
Chris Lattnerca4fc2c2009-02-28 18:18:58 +0000714 // equal, but other compilers do this optimization, and almost every memcpy
715 // implementation handles this case safely. If there is a libc that does not
716 // safely handle this, we can add a target hook.
Mike Stump1eb44332009-09-09 15:08:12 +0000717
Daniel Dunbar7482d122008-09-09 20:49:46 +0000718 // Get size and alignment info for this aggregate.
719 std::pair<uint64_t, unsigned> TypeInfo = getContext().getTypeInfo(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +0000720
Daniel Dunbar7482d122008-09-09 20:49:46 +0000721 // FIXME: Handle variable sized types.
Mike Stump1eb44332009-09-09 15:08:12 +0000722
Mike Stumpfde64202009-05-23 04:13:59 +0000723 // FIXME: If we have a volatile struct, the optimizer can remove what might
724 // appear to be `extra' memory ops:
725 //
726 // volatile struct { int i; } a, b;
727 //
728 // int main() {
729 // a = b;
730 // a = b;
731 // }
732 //
Mon P Wang3ecd7852010-04-04 03:10:52 +0000733 // we need to use a different call here. We use isVolatile to indicate when
Mike Stump49d1cd52009-05-26 22:03:21 +0000734 // either the source or the destination is volatile.
Mon P Wang3ecd7852010-04-04 03:10:52 +0000735
736 const llvm::PointerType *DPT = cast<llvm::PointerType>(DestPtr->getType());
Chris Lattner098432c2010-07-08 00:07:45 +0000737 const llvm::Type *DBP =
738 llvm::Type::getInt8PtrTy(VMContext, DPT->getAddressSpace());
739 DestPtr = Builder.CreateBitCast(DestPtr, DBP, "tmp");
Mon P Wang3ecd7852010-04-04 03:10:52 +0000740
741 const llvm::PointerType *SPT = cast<llvm::PointerType>(SrcPtr->getType());
Chris Lattner098432c2010-07-08 00:07:45 +0000742 const llvm::Type *SBP =
743 llvm::Type::getInt8PtrTy(VMContext, SPT->getAddressSpace());
744 SrcPtr = Builder.CreateBitCast(SrcPtr, SBP, "tmp");
Mon P Wang3ecd7852010-04-04 03:10:52 +0000745
Fariborz Jahanian55bcace2010-06-15 22:44:06 +0000746 if (const RecordType *RecordTy = Ty->getAs<RecordType>()) {
747 RecordDecl *Record = RecordTy->getDecl();
748 if (Record->hasObjectMember()) {
749 unsigned long size = TypeInfo.first/8;
750 const llvm::Type *SizeTy = ConvertType(getContext().getSizeType());
751 llvm::Value *SizeVal = llvm::ConstantInt::get(SizeTy, size);
752 CGM.getObjCRuntime().EmitGCMemmoveCollectable(*this, DestPtr, SrcPtr,
753 SizeVal);
754 return;
755 }
756 } else if (getContext().getAsArrayType(Ty)) {
757 QualType BaseType = getContext().getBaseElementType(Ty);
758 if (const RecordType *RecordTy = BaseType->getAs<RecordType>()) {
759 if (RecordTy->getDecl()->hasObjectMember()) {
760 unsigned long size = TypeInfo.first/8;
761 const llvm::Type *SizeTy = ConvertType(getContext().getSizeType());
762 llvm::Value *SizeVal = llvm::ConstantInt::get(SizeTy, size);
763 CGM.getObjCRuntime().EmitGCMemmoveCollectable(*this, DestPtr, SrcPtr,
764 SizeVal);
765 return;
766 }
767 }
768 }
769
Mon P Wang3ecd7852010-04-04 03:10:52 +0000770 Builder.CreateCall5(CGM.getMemCpyFn(DestPtr->getType(), SrcPtr->getType(),
Chris Lattner77b89b82010-06-27 07:15:29 +0000771 IntPtrTy),
Daniel Dunbar7482d122008-09-09 20:49:46 +0000772 DestPtr, SrcPtr,
773 // TypeInfo.first describes size in bits.
Chris Lattner77b89b82010-06-27 07:15:29 +0000774 llvm::ConstantInt::get(IntPtrTy, TypeInfo.first/8),
Chris Lattner098432c2010-07-08 00:07:45 +0000775 Builder.getInt32(TypeInfo.second/8),
776 Builder.getInt1(isVolatile));
Daniel Dunbar7482d122008-09-09 20:49:46 +0000777}