blob: d28071197c0b17973234d9f507c3ff539ba4f5e7 [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;
John McCall558d2ab2010-09-15 10:14:12 +000035 AggValueSlot Dest;
Mike Stump49d1cd52009-05-26 22:03:21 +000036 bool IgnoreResult;
John McCallef072fd2010-05-22 01:48:05 +000037
38 ReturnValueSlot getReturnValueSlot() const {
John McCallfa037bd2010-05-22 22:13:32 +000039 // 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.
Fariborz Jahanian474e2fe2010-09-16 00:20:07 +000042 if (Dest.isRequiresGCollection()) return ReturnValueSlot();
John McCallfa037bd2010-05-22 22:13:32 +000043
John McCall558d2ab2010-09-15 10:14:12 +000044 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 McCallef072fd2010-05-22 01:48:05 +000050 }
John McCallfa037bd2010-05-22 22:13:32 +000051
Chris Lattner9c033562007-08-21 04:25:47 +000052public:
John McCall558d2ab2010-09-15 10:14:12 +000053 AggExprEmitter(CodeGenFunction &cgf, AggValueSlot Dest,
Fariborz Jahanian474e2fe2010-09-16 00:20:07 +000054 bool ignore)
John McCall558d2ab2010-09-15 10:14:12 +000055 : CGF(cgf), Builder(CGF.Builder), Dest(Dest),
Fariborz Jahanian474e2fe2010-09-16 00:20:07 +000056 IgnoreResult(ignore) {
Chris Lattner9c033562007-08-21 04:25:47 +000057 }
58
Chris Lattneree755f92007-08-21 04:59:27 +000059 //===--------------------------------------------------------------------===//
60 // Utilities
61 //===--------------------------------------------------------------------===//
62
Chris Lattner9c033562007-08-21 04:25:47 +000063 /// 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 Friedman922696f2008-05-19 17:51:16 +000067
Mike Stump4ac20dd2009-05-23 20:28:01 +000068 /// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
Mike Stump49d1cd52009-05-26 22:03:21 +000069 void EmitFinalDestCopy(const Expr *E, LValue Src, bool Ignore = false);
70 void EmitFinalDestCopy(const Expr *E, RValue Src, bool Ignore = false);
Mike Stump4ac20dd2009-05-23 20:28:01 +000071
John McCallfa037bd2010-05-22 22:13:32 +000072 void EmitGCMove(const Expr *E, RValue Src);
73
74 bool TypeRequiresGCollection(QualType T);
75
Chris Lattneree755f92007-08-21 04:59:27 +000076 //===--------------------------------------------------------------------===//
77 // Visitor Methods
78 //===--------------------------------------------------------------------===//
Mike Stump1eb44332009-09-09 15:08:12 +000079
Chris Lattner9c033562007-08-21 04:25:47 +000080 void VisitStmt(Stmt *S) {
Daniel Dunbar488e9932008-08-16 00:56:44 +000081 CGF.ErrorUnsupported(S, "aggregate expression");
Chris Lattner9c033562007-08-21 04:25:47 +000082 }
83 void VisitParenExpr(ParenExpr *PE) { Visit(PE->getSubExpr()); }
Eli Friedman12444a22009-01-27 09:03:41 +000084 void VisitUnaryExtension(UnaryOperator *E) { Visit(E->getSubExpr()); }
Chris Lattner9c033562007-08-21 04:25:47 +000085
86 // l-values.
Seo Sanghyeon9b73b392007-12-14 02:04:12 +000087 void VisitDeclRefExpr(DeclRefExpr *DRE) { EmitAggLoadOfLValue(DRE); }
88 void VisitMemberExpr(MemberExpr *ME) { EmitAggLoadOfLValue(ME); }
89 void VisitUnaryDeref(UnaryOperator *E) { EmitAggLoadOfLValue(E); }
Daniel Dunbar5be028f2010-01-04 18:47:06 +000090 void VisitStringLiteral(StringLiteral *E) { EmitAggLoadOfLValue(E); }
Chris Lattnerf0a990c2009-04-21 23:00:09 +000091 void VisitCompoundLiteralExpr(CompoundLiteralExpr *E) {
Mike Stump1eb44332009-09-09 15:08:12 +000092 EmitAggLoadOfLValue(E);
Chris Lattnerf0a990c2009-04-21 23:00:09 +000093 }
Seo Sanghyeon9b73b392007-12-14 02:04:12 +000094 void VisitArraySubscriptExpr(ArraySubscriptExpr *E) {
95 EmitAggLoadOfLValue(E);
96 }
Chris Lattnerf0a990c2009-04-21 23:00:09 +000097 void VisitBlockDeclRefExpr(const BlockDeclRefExpr *E) {
Mike Stump1eb44332009-09-09 15:08:12 +000098 EmitAggLoadOfLValue(E);
Chris Lattnerf0a990c2009-04-21 23:00:09 +000099 }
100 void VisitPredefinedExpr(const PredefinedExpr *E) {
Mike Stump1eb44332009-09-09 15:08:12 +0000101 EmitAggLoadOfLValue(E);
Chris Lattnerf0a990c2009-04-21 23:00:09 +0000102 }
Mike Stump1eb44332009-09-09 15:08:12 +0000103
Chris Lattner9c033562007-08-21 04:25:47 +0000104 // Operators.
Anders Carlsson4d8673b2009-08-07 23:22:37 +0000105 void VisitCastExpr(CastExpr *E);
Anders Carlsson148fe672007-10-31 22:04:46 +0000106 void VisitCallExpr(const CallExpr *E);
Chris Lattnerb2d963f2007-08-31 22:54:14 +0000107 void VisitStmtExpr(const StmtExpr *E);
Chris Lattner9c033562007-08-21 04:25:47 +0000108 void VisitBinaryOperator(const BinaryOperator *BO);
Fariborz Jahanian8bfd31f2009-10-22 22:57:31 +0000109 void VisitPointerToDataMemberBinaryOperator(const BinaryOperator *BO);
Chris Lattner03d6fb92007-08-21 04:43:17 +0000110 void VisitBinAssign(const BinaryOperator *E);
Eli Friedman07fa52a2008-05-20 07:56:31 +0000111 void VisitBinComma(const BinaryOperator *E);
Chris Lattner9c033562007-08-21 04:25:47 +0000112
Chris Lattner8fdf3282008-06-24 17:04:18 +0000113 void VisitObjCMessageExpr(ObjCMessageExpr *E);
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000114 void VisitObjCIvarRefExpr(ObjCIvarRefExpr *E) {
115 EmitAggLoadOfLValue(E);
116 }
Daniel Dunbar9c3fc702008-08-27 06:57:25 +0000117 void VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *E);
Fariborz Jahanian09105f52009-08-20 17:02:02 +0000118 void VisitObjCImplicitSetterGetterRefExpr(ObjCImplicitSetterGetterRefExpr *E);
Mike Stump1eb44332009-09-09 15:08:12 +0000119
Chris Lattner9c033562007-08-21 04:25:47 +0000120 void VisitConditionalOperator(const ConditionalOperator *CO);
Anders Carlssona294ca82009-07-08 18:33:14 +0000121 void VisitChooseExpr(const ChooseExpr *CE);
Devang Patel636c3d02007-10-26 17:44:44 +0000122 void VisitInitListExpr(InitListExpr *E);
Anders Carlsson30311fa2009-12-16 06:57:54 +0000123 void VisitImplicitValueInitExpr(ImplicitValueInitExpr *E);
Chris Lattner04421082008-04-08 04:40:51 +0000124 void VisitCXXDefaultArgExpr(CXXDefaultArgExpr *DAE) {
125 Visit(DAE->getExpr());
126 }
Anders Carlssonb58d0172009-05-30 23:23:33 +0000127 void VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E);
Anders Carlsson31ccf372009-05-03 17:47:16 +0000128 void VisitCXXConstructExpr(const CXXConstructExpr *E);
Anders Carlsson7f6ad152009-05-19 04:48:36 +0000129 void VisitCXXExprWithTemporaries(CXXExprWithTemporaries *E);
Douglas Gregored8abf12010-07-08 06:14:04 +0000130 void VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *E);
Mike Stump2710c412009-11-18 00:40:12 +0000131 void VisitCXXTypeidExpr(CXXTypeidExpr *E) { EmitAggLoadOfLValue(E); }
Anders Carlsson7f6ad152009-05-19 04:48:36 +0000132
Eli Friedmanb1851242008-05-27 15:51:49 +0000133 void VisitVAArgExpr(VAArgExpr *E);
Chris Lattnerf81557c2008-04-04 18:42:16 +0000134
Anders Carlsson78e83f82010-02-03 17:33:16 +0000135 void EmitInitializationToLValue(Expr *E, LValue Address, QualType T);
Chris Lattnerf81557c2008-04-04 18:42:16 +0000136 void EmitNullInitializationToLValue(LValue Address, QualType T);
Chris Lattner9c033562007-08-21 04:25:47 +0000137 // case Expr::ChooseExprClass:
Mike Stump39406b12009-12-09 19:24:08 +0000138 void VisitCXXThrowExpr(const CXXThrowExpr *E) { CGF.EmitCXXThrowExpr(E); }
Chris Lattner9c033562007-08-21 04:25:47 +0000139};
140} // end anonymous namespace.
141
Chris Lattneree755f92007-08-21 04:59:27 +0000142//===----------------------------------------------------------------------===//
143// Utilities
144//===----------------------------------------------------------------------===//
Chris Lattner9c033562007-08-21 04:25:47 +0000145
Chris Lattner883f6a72007-08-11 00:04:45 +0000146/// EmitAggLoadOfLValue - Given an expression with aggregate type that
147/// represents a value lvalue, this method emits the address of the lvalue,
148/// then loads the result into DestPtr.
Chris Lattner9c033562007-08-21 04:25:47 +0000149void AggExprEmitter::EmitAggLoadOfLValue(const Expr *E) {
150 LValue LV = CGF.EmitLValue(E);
Mike Stump4ac20dd2009-05-23 20:28:01 +0000151 EmitFinalDestCopy(E, LV);
152}
153
John McCallfa037bd2010-05-22 22:13:32 +0000154/// \brief True if the given aggregate type requires special GC API calls.
155bool AggExprEmitter::TypeRequiresGCollection(QualType T) {
156 // Only record types have members that might require garbage collection.
157 const RecordType *RecordTy = T->getAs<RecordType>();
158 if (!RecordTy) return false;
159
160 // Don't mess with non-trivial C++ types.
161 RecordDecl *Record = RecordTy->getDecl();
162 if (isa<CXXRecordDecl>(Record) &&
163 (!cast<CXXRecordDecl>(Record)->hasTrivialCopyConstructor() ||
164 !cast<CXXRecordDecl>(Record)->hasTrivialDestructor()))
165 return false;
166
167 // Check whether the type has an object member.
168 return Record->hasObjectMember();
169}
170
171/// \brief Perform the final move to DestPtr if RequiresGCollection is set.
172///
173/// The idea is that you do something like this:
174/// RValue Result = EmitSomething(..., getReturnValueSlot());
175/// EmitGCMove(E, Result);
176/// If GC doesn't interfere, this will cause the result to be emitted
177/// directly into the return value slot. If GC does interfere, a final
178/// move will be performed.
179void AggExprEmitter::EmitGCMove(const Expr *E, RValue Src) {
Fariborz Jahanian474e2fe2010-09-16 00:20:07 +0000180 if (Dest.isRequiresGCollection()) {
Fariborz Jahanian55bcace2010-06-15 22:44:06 +0000181 std::pair<uint64_t, unsigned> TypeInfo =
182 CGF.getContext().getTypeInfo(E->getType());
183 unsigned long size = TypeInfo.first/8;
184 const llvm::Type *SizeTy = CGF.ConvertType(CGF.getContext().getSizeType());
185 llvm::Value *SizeVal = llvm::ConstantInt::get(SizeTy, size);
John McCall558d2ab2010-09-15 10:14:12 +0000186 CGF.CGM.getObjCRuntime().EmitGCMemmoveCollectable(CGF, Dest.getAddr(),
John McCallfa037bd2010-05-22 22:13:32 +0000187 Src.getAggregateAddr(),
Fariborz Jahanian55bcace2010-06-15 22:44:06 +0000188 SizeVal);
189 }
John McCallfa037bd2010-05-22 22:13:32 +0000190}
191
Mike Stump4ac20dd2009-05-23 20:28:01 +0000192/// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
Mike Stump49d1cd52009-05-26 22:03:21 +0000193void AggExprEmitter::EmitFinalDestCopy(const Expr *E, RValue Src, bool Ignore) {
Mike Stump4ac20dd2009-05-23 20:28:01 +0000194 assert(Src.isAggregate() && "value must be aggregate value!");
195
John McCall558d2ab2010-09-15 10:14:12 +0000196 // If Dest is ignored, then we're evaluating an aggregate expression
John McCalla8f28da2010-08-25 02:50:31 +0000197 // in a context (like an expression statement) that doesn't care
198 // about the result. C says that an lvalue-to-rvalue conversion is
199 // performed in these cases; C++ says that it is not. In either
200 // case, we don't actually need to do anything unless the value is
201 // volatile.
John McCall558d2ab2010-09-15 10:14:12 +0000202 if (Dest.isIgnored()) {
John McCalla8f28da2010-08-25 02:50:31 +0000203 if (!Src.isVolatileQualified() ||
204 CGF.CGM.getLangOptions().CPlusPlus ||
205 (IgnoreResult && Ignore))
Mike Stump9ccb1032009-05-23 22:01:27 +0000206 return;
John McCalla8f28da2010-08-25 02:50:31 +0000207
Mike Stump49d1cd52009-05-26 22:03:21 +0000208 // If the source is volatile, we must read from it; to do that, we need
209 // some place to put it.
John McCall558d2ab2010-09-15 10:14:12 +0000210 Dest = CGF.CreateAggTemp(E->getType(), "agg.tmp");
Mike Stump9ccb1032009-05-23 22:01:27 +0000211 }
Chris Lattner883f6a72007-08-11 00:04:45 +0000212
Fariborz Jahanian474e2fe2010-09-16 00:20:07 +0000213 if (Dest.isRequiresGCollection()) {
Fariborz Jahanian55bcace2010-06-15 22:44:06 +0000214 std::pair<uint64_t, unsigned> TypeInfo =
215 CGF.getContext().getTypeInfo(E->getType());
216 unsigned long size = TypeInfo.first/8;
217 const llvm::Type *SizeTy = CGF.ConvertType(CGF.getContext().getSizeType());
218 llvm::Value *SizeVal = llvm::ConstantInt::get(SizeTy, size);
Fariborz Jahanian08c32132009-08-31 19:33:16 +0000219 CGF.CGM.getObjCRuntime().EmitGCMemmoveCollectable(CGF,
John McCall558d2ab2010-09-15 10:14:12 +0000220 Dest.getAddr(),
221 Src.getAggregateAddr(),
222 SizeVal);
Fariborz Jahanian08c32132009-08-31 19:33:16 +0000223 return;
224 }
Mike Stump4ac20dd2009-05-23 20:28:01 +0000225 // If the result of the assignment is used, copy the LHS there also.
226 // FIXME: Pass VolatileDest as well. I think we also need to merge volatile
227 // from the source as well, as we can't eliminate it if either operand
228 // is volatile, unless copy has volatile for both source and destination..
John McCall558d2ab2010-09-15 10:14:12 +0000229 CGF.EmitAggregateCopy(Dest.getAddr(), Src.getAggregateAddr(), E->getType(),
230 Dest.isVolatile()|Src.isVolatileQualified());
Mike Stump4ac20dd2009-05-23 20:28:01 +0000231}
232
233/// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
Mike Stump49d1cd52009-05-26 22:03:21 +0000234void AggExprEmitter::EmitFinalDestCopy(const Expr *E, LValue Src, bool Ignore) {
Mike Stump4ac20dd2009-05-23 20:28:01 +0000235 assert(Src.isSimple() && "Can't have aggregate bitfield, vector, etc");
236
237 EmitFinalDestCopy(E, RValue::getAggregate(Src.getAddress(),
Mike Stump49d1cd52009-05-26 22:03:21 +0000238 Src.isVolatileQualified()),
239 Ignore);
Chris Lattner883f6a72007-08-11 00:04:45 +0000240}
241
Chris Lattneree755f92007-08-21 04:59:27 +0000242//===----------------------------------------------------------------------===//
243// Visitor Methods
244//===----------------------------------------------------------------------===//
245
Anders Carlsson4d8673b2009-08-07 23:22:37 +0000246void AggExprEmitter::VisitCastExpr(CastExpr *E) {
John McCall558d2ab2010-09-15 10:14:12 +0000247 if (Dest.isIgnored() && E->getCastKind() != CK_Dynamic) {
Douglas Gregor4ce46c22010-03-07 23:24:59 +0000248 Visit(E->getSubExpr());
249 return;
250 }
251
Anders Carlsson30168422009-09-29 01:23:39 +0000252 switch (E->getCastKind()) {
253 default: assert(0 && "Unhandled cast kind!");
254
John McCall2de56d12010-08-25 11:45:40 +0000255 case CK_Dynamic: {
Douglas Gregor69cfeb12010-05-14 21:31:02 +0000256 assert(isa<CXXDynamicCastExpr>(E) && "CK_Dynamic without a dynamic_cast?");
257 LValue LV = CGF.EmitCheckedLValue(E->getSubExpr());
258 // FIXME: Do we also need to handle property references here?
259 if (LV.isSimple())
260 CGF.EmitDynamicCast(LV.getAddress(), cast<CXXDynamicCastExpr>(E));
261 else
262 CGF.CGM.ErrorUnsupported(E, "non-simple lvalue dynamic_cast");
263
John McCall558d2ab2010-09-15 10:14:12 +0000264 if (!Dest.isIgnored())
265 CGF.CGM.ErrorUnsupported(E, "lvalue dynamic_cast with a destination");
Douglas Gregor69cfeb12010-05-14 21:31:02 +0000266 break;
267 }
268
John McCall2de56d12010-08-25 11:45:40 +0000269 case CK_ToUnion: {
Anders Carlsson4d8673b2009-08-07 23:22:37 +0000270 // GCC union extension
Daniel Dunbar79c39282010-08-21 03:15:20 +0000271 QualType Ty = E->getSubExpr()->getType();
272 QualType PtrTy = CGF.getContext().getPointerType(Ty);
John McCall558d2ab2010-09-15 10:14:12 +0000273 llvm::Value *CastPtr = Builder.CreateBitCast(Dest.getAddr(),
Eli Friedman34ebf4d2009-06-03 20:45:06 +0000274 CGF.ConvertType(PtrTy));
Daniel Dunbar79c39282010-08-21 03:15:20 +0000275 EmitInitializationToLValue(E->getSubExpr(), CGF.MakeAddrLValue(CastPtr, Ty),
276 Ty);
Anders Carlsson30168422009-09-29 01:23:39 +0000277 break;
Nuno Lopes7e916272009-01-15 20:14:33 +0000278 }
Mike Stump1eb44332009-09-09 15:08:12 +0000279
John McCall2de56d12010-08-25 11:45:40 +0000280 case CK_DerivedToBase:
281 case CK_BaseToDerived:
282 case CK_UncheckedDerivedToBase: {
Douglas Gregor2d6b0e92010-05-22 05:17:18 +0000283 assert(0 && "cannot perform hierarchy conversion in EmitAggExpr: "
284 "should have been unpacked before we got here");
285 break;
286 }
287
Anders Carlsson4d8673b2009-08-07 23:22:37 +0000288 // FIXME: Remove the CK_Unknown check here.
John McCall2de56d12010-08-25 11:45:40 +0000289 case CK_Unknown:
290 case CK_NoOp:
291 case CK_UserDefinedConversion:
292 case CK_ConstructorConversion:
Anders Carlsson30168422009-09-29 01:23:39 +0000293 assert(CGF.getContext().hasSameUnqualifiedType(E->getSubExpr()->getType(),
294 E->getType()) &&
295 "Implicit cast types must be compatible");
296 Visit(E->getSubExpr());
297 break;
Anders Carlssone9d34dc2009-09-29 02:09:01 +0000298
John McCall2de56d12010-08-25 11:45:40 +0000299 case CK_LValueBitCast:
Douglas Gregore39a3892010-07-13 23:17:26 +0000300 llvm_unreachable("there are no lvalue bit-casts on aggregates");
301 break;
Anders Carlsson30168422009-09-29 01:23:39 +0000302 }
Anders Carlssone4707ff2008-01-14 06:28:57 +0000303}
304
Chris Lattner96196622008-07-26 22:37:01 +0000305void AggExprEmitter::VisitCallExpr(const CallExpr *E) {
Anders Carlssone70e8f72009-05-27 16:45:02 +0000306 if (E->getCallReturnType()->isReferenceType()) {
307 EmitAggLoadOfLValue(E);
308 return;
309 }
Mike Stump1eb44332009-09-09 15:08:12 +0000310
John McCallfa037bd2010-05-22 22:13:32 +0000311 RValue RV = CGF.EmitCallExpr(E, getReturnValueSlot());
312 EmitGCMove(E, RV);
Anders Carlsson148fe672007-10-31 22:04:46 +0000313}
Chris Lattner96196622008-07-26 22:37:01 +0000314
315void AggExprEmitter::VisitObjCMessageExpr(ObjCMessageExpr *E) {
John McCallfa037bd2010-05-22 22:13:32 +0000316 RValue RV = CGF.EmitObjCMessageExpr(E, getReturnValueSlot());
317 EmitGCMove(E, RV);
Chris Lattner8fdf3282008-06-24 17:04:18 +0000318}
Anders Carlsson148fe672007-10-31 22:04:46 +0000319
Daniel Dunbar9c3fc702008-08-27 06:57:25 +0000320void AggExprEmitter::VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *E) {
John McCallfa037bd2010-05-22 22:13:32 +0000321 RValue RV = CGF.EmitObjCPropertyGet(E, getReturnValueSlot());
322 EmitGCMove(E, RV);
Daniel Dunbar9c3fc702008-08-27 06:57:25 +0000323}
324
Fariborz Jahanian09105f52009-08-20 17:02:02 +0000325void AggExprEmitter::VisitObjCImplicitSetterGetterRefExpr(
326 ObjCImplicitSetterGetterRefExpr *E) {
John McCallfa037bd2010-05-22 22:13:32 +0000327 RValue RV = CGF.EmitObjCPropertyGet(E, getReturnValueSlot());
328 EmitGCMove(E, RV);
Fariborz Jahanian5daf5702008-11-22 18:39:36 +0000329}
330
Chris Lattner96196622008-07-26 22:37:01 +0000331void AggExprEmitter::VisitBinComma(const BinaryOperator *E) {
John McCall558d2ab2010-09-15 10:14:12 +0000332 CGF.EmitAnyExpr(E->getLHS(), AggValueSlot::ignored(), true);
333 Visit(E->getRHS());
Eli Friedman07fa52a2008-05-20 07:56:31 +0000334}
335
Chris Lattnerb2d963f2007-08-31 22:54:14 +0000336void AggExprEmitter::VisitStmtExpr(const StmtExpr *E) {
John McCall558d2ab2010-09-15 10:14:12 +0000337 CGF.EmitCompoundStmt(*E->getSubStmt(), true, Dest);
Chris Lattnerb2d963f2007-08-31 22:54:14 +0000338}
339
Chris Lattner9c033562007-08-21 04:25:47 +0000340void AggExprEmitter::VisitBinaryOperator(const BinaryOperator *E) {
John McCall2de56d12010-08-25 11:45:40 +0000341 if (E->getOpcode() == BO_PtrMemD || E->getOpcode() == BO_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()) {
John McCall558d2ab2010-09-15 10:14:12 +0000364 AggValueSlot Slot = EnsureSlot(E->getRHS()->getType());
365 CGF.EmitAggExpr(E->getRHS(), Slot);
366 CGF.EmitObjCPropertySet(LHS.getPropertyRefExpr(), Slot.asRValue());
Mike Stumpb3589f42009-07-30 22:28:39 +0000367 } else if (LHS.isKVCRef()) {
John McCall558d2ab2010-09-15 10:14:12 +0000368 AggValueSlot Slot = EnsureSlot(E->getRHS()->getType());
369 CGF.EmitAggExpr(E->getRHS(), Slot);
370 CGF.EmitObjCPropertySet(LHS.getKVCRefExpr(), Slot.asRValue());
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000371 } else {
Fariborz Jahanian474e2fe2010-09-16 00:20:07 +0000372 bool GCollection = false;
John McCallfa037bd2010-05-22 22:13:32 +0000373 if (CGF.getContext().getLangOptions().getGCMode())
Fariborz Jahanian474e2fe2010-09-16 00:20:07 +0000374 GCollection = TypeRequiresGCollection(E->getLHS()->getType());
John McCallfa037bd2010-05-22 22:13:32 +0000375
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000376 // Codegen the RHS so that it stores directly into the LHS.
Fariborz Jahanian474e2fe2010-09-16 00:20:07 +0000377 AggValueSlot LHSSlot = AggValueSlot::forLValue(LHS, true,
378 GCollection);
379 CGF.EmitAggExpr(E->getRHS(), LHSSlot, false);
Mike Stump49d1cd52009-05-26 22:03:21 +0000380 EmitFinalDestCopy(E, LHS, true);
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000381 }
Chris Lattner883f6a72007-08-11 00:04:45 +0000382}
383
Chris Lattner9c033562007-08-21 04:25:47 +0000384void AggExprEmitter::VisitConditionalOperator(const ConditionalOperator *E) {
Eli Friedman8e274bd2009-12-25 06:17:05 +0000385 if (!E->getLHS()) {
386 CGF.ErrorUnsupported(E, "conditional operator with missing LHS");
387 return;
388 }
389
Daniel Dunbar9615ecb2008-11-13 01:38:36 +0000390 llvm::BasicBlock *LHSBlock = CGF.createBasicBlock("cond.true");
391 llvm::BasicBlock *RHSBlock = CGF.createBasicBlock("cond.false");
392 llvm::BasicBlock *ContBlock = CGF.createBasicBlock("cond.end");
Mike Stump1eb44332009-09-09 15:08:12 +0000393
Eli Friedman8e274bd2009-12-25 06:17:05 +0000394 CGF.EmitBranchOnBoolExpr(E->getCond(), LHSBlock, RHSBlock);
Mike Stump1eb44332009-09-09 15:08:12 +0000395
Anders Carlsson72119a82010-02-04 17:18:07 +0000396 CGF.BeginConditionalBranch();
Chris Lattner9c033562007-08-21 04:25:47 +0000397 CGF.EmitBlock(LHSBlock);
Mike Stump1eb44332009-09-09 15:08:12 +0000398
Chris Lattner883f6a72007-08-11 00:04:45 +0000399 // Handle the GNU extension for missing LHS.
400 assert(E->getLHS() && "Must have LHS for aggregate value");
401
Chris Lattnerc748f272007-08-21 05:02:10 +0000402 Visit(E->getLHS());
Anders Carlsson72119a82010-02-04 17:18:07 +0000403 CGF.EndConditionalBranch();
Daniel Dunbard57a8712008-11-11 09:41:28 +0000404 CGF.EmitBranch(ContBlock);
Mike Stump1eb44332009-09-09 15:08:12 +0000405
Anders Carlsson72119a82010-02-04 17:18:07 +0000406 CGF.BeginConditionalBranch();
Chris Lattner9c033562007-08-21 04:25:47 +0000407 CGF.EmitBlock(RHSBlock);
Mike Stump1eb44332009-09-09 15:08:12 +0000408
Chris Lattnerc748f272007-08-21 05:02:10 +0000409 Visit(E->getRHS());
Anders Carlsson72119a82010-02-04 17:18:07 +0000410 CGF.EndConditionalBranch();
Daniel Dunbard57a8712008-11-11 09:41:28 +0000411 CGF.EmitBranch(ContBlock);
Mike Stump1eb44332009-09-09 15:08:12 +0000412
Chris Lattner9c033562007-08-21 04:25:47 +0000413 CGF.EmitBlock(ContBlock);
Chris Lattner883f6a72007-08-11 00:04:45 +0000414}
Chris Lattneree755f92007-08-21 04:59:27 +0000415
Anders Carlssona294ca82009-07-08 18:33:14 +0000416void AggExprEmitter::VisitChooseExpr(const ChooseExpr *CE) {
417 Visit(CE->getChosenSubExpr(CGF.getContext()));
418}
419
Eli Friedmanb1851242008-05-27 15:51:49 +0000420void AggExprEmitter::VisitVAArgExpr(VAArgExpr *VE) {
Daniel Dunbar07855702009-02-11 22:25:55 +0000421 llvm::Value *ArgValue = CGF.EmitVAListRef(VE->getSubExpr());
Anders Carlssonddf7cac2008-11-04 05:30:00 +0000422 llvm::Value *ArgPtr = CGF.EmitVAArg(ArgValue, VE->getType());
423
Sebastian Redl0262f022009-01-09 21:09:38 +0000424 if (!ArgPtr) {
Anders Carlssonddf7cac2008-11-04 05:30:00 +0000425 CGF.ErrorUnsupported(VE, "aggregate va_arg expression");
Sebastian Redl0262f022009-01-09 21:09:38 +0000426 return;
427 }
428
Daniel Dunbar79c39282010-08-21 03:15:20 +0000429 EmitFinalDestCopy(VE, CGF.MakeAddrLValue(ArgPtr, VE->getType()));
Eli Friedmanb1851242008-05-27 15:51:49 +0000430}
431
Anders Carlssonb58d0172009-05-30 23:23:33 +0000432void AggExprEmitter::VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E) {
John McCall558d2ab2010-09-15 10:14:12 +0000433 // Ensure that we have a slot, but if we already do, remember
434 // whether its lifetime was externally managed.
435 bool WasManaged = Dest.isLifetimeExternallyManaged();
436 Dest = EnsureSlot(E->getType());
437 Dest.setLifetimeExternallyManaged();
Mike Stump1eb44332009-09-09 15:08:12 +0000438
John McCall558d2ab2010-09-15 10:14:12 +0000439 Visit(E->getSubExpr());
Anders Carlssonb58d0172009-05-30 23:23:33 +0000440
John McCall558d2ab2010-09-15 10:14:12 +0000441 // Set up the temporary's destructor if its lifetime wasn't already
442 // being managed.
443 if (!WasManaged)
444 CGF.EmitCXXTemporary(E->getTemporary(), Dest.getAddr());
Anders Carlssonb58d0172009-05-30 23:23:33 +0000445}
446
Anders Carlssonb14095a2009-04-17 00:06:03 +0000447void
Anders Carlsson31ccf372009-05-03 17:47:16 +0000448AggExprEmitter::VisitCXXConstructExpr(const CXXConstructExpr *E) {
John McCall558d2ab2010-09-15 10:14:12 +0000449 AggValueSlot Slot = EnsureSlot(E->getType());
450 CGF.EmitCXXConstructExpr(E, Slot);
Anders Carlsson7f6ad152009-05-19 04:48:36 +0000451}
452
453void AggExprEmitter::VisitCXXExprWithTemporaries(CXXExprWithTemporaries *E) {
John McCall558d2ab2010-09-15 10:14:12 +0000454 CGF.EmitCXXExprWithTemporaries(E, Dest);
Anders Carlssonb14095a2009-04-17 00:06:03 +0000455}
456
Douglas Gregored8abf12010-07-08 06:14:04 +0000457void AggExprEmitter::VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *E) {
John McCall558d2ab2010-09-15 10:14:12 +0000458 QualType T = E->getType();
459 AggValueSlot Slot = EnsureSlot(T);
460 EmitNullInitializationToLValue(CGF.MakeAddrLValue(Slot.getAddr(), T), T);
Anders Carlsson30311fa2009-12-16 06:57:54 +0000461}
462
463void AggExprEmitter::VisitImplicitValueInitExpr(ImplicitValueInitExpr *E) {
John McCall558d2ab2010-09-15 10:14:12 +0000464 QualType T = E->getType();
465 AggValueSlot Slot = EnsureSlot(T);
466 EmitNullInitializationToLValue(CGF.MakeAddrLValue(Slot.getAddr(), T), T);
Nuno Lopes329763b2009-10-18 15:18:11 +0000467}
468
Anders Carlsson78e83f82010-02-03 17:33:16 +0000469void
470AggExprEmitter::EmitInitializationToLValue(Expr* E, LValue LV, QualType T) {
Mike Stump7f79f9b2009-05-29 15:46:01 +0000471 // FIXME: Ignore result?
Chris Lattnerf81557c2008-04-04 18:42:16 +0000472 // FIXME: Are initializers affected by volatile?
Douglas Gregor3498bdb2009-01-29 17:44:32 +0000473 if (isa<ImplicitValueInitExpr>(E)) {
Anders Carlsson78e83f82010-02-03 17:33:16 +0000474 EmitNullInitializationToLValue(LV, T);
Anders Carlssone78ccb42010-02-03 19:13:55 +0000475 } else if (T->isReferenceType()) {
Anders Carlsson32f36ba2010-06-26 16:35:32 +0000476 RValue RV = CGF.EmitReferenceBindingToExpr(E, /*InitializedDecl=*/0);
Anders Carlssone78ccb42010-02-03 19:13:55 +0000477 CGF.EmitStoreThroughLValue(RV, LV, T);
Anders Carlsson78e83f82010-02-03 17:33:16 +0000478 } else if (T->isAnyComplexType()) {
Douglas Gregor3498bdb2009-01-29 17:44:32 +0000479 CGF.EmitComplexExprIntoAddr(E, LV.getAddress(), false);
Anders Carlsson78e83f82010-02-03 17:33:16 +0000480 } else if (CGF.hasAggregateLLVMType(T)) {
John McCall558d2ab2010-09-15 10:14:12 +0000481 CGF.EmitAggExpr(E, AggValueSlot::forAddr(LV.getAddress(), false, true));
Eli Friedmanc8ba9612008-05-12 15:06:05 +0000482 } else {
Anders Carlsson78e83f82010-02-03 17:33:16 +0000483 CGF.EmitStoreThroughLValue(CGF.EmitAnyExpr(E), LV, T);
Chris Lattnerf81557c2008-04-04 18:42:16 +0000484 }
Chris Lattnerf81557c2008-04-04 18:42:16 +0000485}
486
487void AggExprEmitter::EmitNullInitializationToLValue(LValue LV, QualType T) {
488 if (!CGF.hasAggregateLLVMType(T)) {
489 // For non-aggregates, we can store zero
Owen Andersonc9c88b42009-07-31 20:28:54 +0000490 llvm::Value *Null = llvm::Constant::getNullValue(CGF.ConvertType(T));
Daniel Dunbar82397132008-08-06 05:32:55 +0000491 CGF.EmitStoreThroughLValue(RValue::get(Null), LV, T);
Lauro Ramos Venancio145cd892008-02-19 19:27:31 +0000492 } else {
Chris Lattnerf81557c2008-04-04 18:42:16 +0000493 // There's a potential optimization opportunity in combining
494 // memsets; that would be easy for arrays, but relatively
495 // difficult for structures with the current code.
Anders Carlsson1884eb02010-05-22 17:35:42 +0000496 CGF.EmitNullInitialization(LV.getAddress(), T);
Chris Lattnerf81557c2008-04-04 18:42:16 +0000497 }
498}
499
Chris Lattnerf81557c2008-04-04 18:42:16 +0000500void AggExprEmitter::VisitInitListExpr(InitListExpr *E) {
Eli Friedmana385b3c2008-12-02 01:17:45 +0000501#if 0
Eli Friedman13a5be12009-12-04 01:30:56 +0000502 // FIXME: Assess perf here? Figure out what cases are worth optimizing here
503 // (Length of globals? Chunks of zeroed-out space?).
Eli Friedmana385b3c2008-12-02 01:17:45 +0000504 //
Mike Stumpf5408fe2009-05-16 07:57:57 +0000505 // If we can, prefer a copy from a global; this is a lot less code for long
506 // globals, and it's easier for the current optimizers to analyze.
Eli Friedman13a5be12009-12-04 01:30:56 +0000507 if (llvm::Constant* C = CGF.CGM.EmitConstantExpr(E, E->getType(), &CGF)) {
Eli Friedman994ffef2008-11-30 02:11:09 +0000508 llvm::GlobalVariable* GV =
Eli Friedman13a5be12009-12-04 01:30:56 +0000509 new llvm::GlobalVariable(CGF.CGM.getModule(), C->getType(), true,
510 llvm::GlobalValue::InternalLinkage, C, "");
Daniel Dunbar79c39282010-08-21 03:15:20 +0000511 EmitFinalDestCopy(E, CGF.MakeAddrLValue(GV, E->getType()));
Eli Friedman994ffef2008-11-30 02:11:09 +0000512 return;
513 }
Eli Friedmana385b3c2008-12-02 01:17:45 +0000514#endif
Chris Lattnerd0db03a2010-09-06 00:11:41 +0000515 if (E->hadArrayRangeDesignator())
Douglas Gregora9c87802009-01-29 19:42:23 +0000516 CGF.ErrorUnsupported(E, "GNU array range designator extension");
Douglas Gregora9c87802009-01-29 19:42:23 +0000517
John McCall558d2ab2010-09-15 10:14:12 +0000518 llvm::Value *DestPtr = Dest.getAddr();
519
Chris Lattnerf81557c2008-04-04 18:42:16 +0000520 // Handle initialization of an array.
521 if (E->getType()->isArrayType()) {
522 const llvm::PointerType *APType =
523 cast<llvm::PointerType>(DestPtr->getType());
524 const llvm::ArrayType *AType =
525 cast<llvm::ArrayType>(APType->getElementType());
Mike Stump1eb44332009-09-09 15:08:12 +0000526
Chris Lattnerf81557c2008-04-04 18:42:16 +0000527 uint64_t NumInitElements = E->getNumInits();
Eli Friedman922696f2008-05-19 17:51:16 +0000528
Chris Lattner96196622008-07-26 22:37:01 +0000529 if (E->getNumInits() > 0) {
530 QualType T1 = E->getType();
531 QualType T2 = E->getInit(0)->getType();
Eli Friedman2dce5f82009-05-28 23:04:00 +0000532 if (CGF.getContext().hasSameUnqualifiedType(T1, T2)) {
Chris Lattner96196622008-07-26 22:37:01 +0000533 EmitAggLoadOfLValue(E->getInit(0));
534 return;
535 }
Eli Friedman922696f2008-05-19 17:51:16 +0000536 }
537
Chris Lattnerf81557c2008-04-04 18:42:16 +0000538 uint64_t NumArrayElements = AType->getNumElements();
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000539 QualType ElementType = CGF.getContext().getCanonicalType(E->getType());
Douglas Gregor4c678342009-01-28 21:54:33 +0000540 ElementType = CGF.getContext().getAsArrayType(ElementType)->getElementType();
Mike Stump1eb44332009-09-09 15:08:12 +0000541
John McCall0953e762009-09-24 19:53:00 +0000542 // FIXME: were we intentionally ignoring address spaces and GC attributes?
Eli Friedman1e692ac2008-06-13 23:01:12 +0000543
Chris Lattnerf81557c2008-04-04 18:42:16 +0000544 for (uint64_t i = 0; i != NumArrayElements; ++i) {
545 llvm::Value *NextVal = Builder.CreateStructGEP(DestPtr, i, ".array");
Daniel Dunbar9f553f52010-08-21 03:08:16 +0000546 LValue LV = CGF.MakeAddrLValue(NextVal, ElementType);
Chris Lattnerf81557c2008-04-04 18:42:16 +0000547 if (i < NumInitElements)
Daniel Dunbar9f553f52010-08-21 03:08:16 +0000548 EmitInitializationToLValue(E->getInit(i), LV, ElementType);
549
Chris Lattnerf81557c2008-04-04 18:42:16 +0000550 else
Daniel Dunbar9f553f52010-08-21 03:08:16 +0000551 EmitNullInitializationToLValue(LV, ElementType);
Lauro Ramos Venancio145cd892008-02-19 19:27:31 +0000552 }
Chris Lattnerf81557c2008-04-04 18:42:16 +0000553 return;
554 }
Mike Stump1eb44332009-09-09 15:08:12 +0000555
Chris Lattnerf81557c2008-04-04 18:42:16 +0000556 assert(E->getType()->isRecordType() && "Only support structs/unions here!");
Mike Stump1eb44332009-09-09 15:08:12 +0000557
Chris Lattnerf81557c2008-04-04 18:42:16 +0000558 // Do struct initialization; this code just sets each individual member
559 // to the approprate value. This makes bitfield support automatic;
560 // the disadvantage is that the generated code is more difficult for
561 // the optimizer, especially with bitfields.
562 unsigned NumInitElements = E->getNumInits();
Ted Kremenek6217b802009-07-29 21:53:49 +0000563 RecordDecl *SD = E->getType()->getAs<RecordType>()->getDecl();
Chris Lattnerbd7de382010-09-06 00:13:11 +0000564
565 // If we're initializing the whole aggregate, just do it in place.
566 // FIXME: This is a hack around an AST bug (PR6537).
567 if (NumInitElements == 1 && E->getType() == E->getInit(0)->getType()) {
568 EmitInitializationToLValue(E->getInit(0),
569 CGF.MakeAddrLValue(DestPtr, E->getType()),
570 E->getType());
571 return;
572 }
573
574
Douglas Gregor0bb76892009-01-29 16:53:55 +0000575 if (E->getType()->isUnionType()) {
576 // Only initialize one field of a union. The field itself is
577 // specified by the initializer list.
578 if (!E->getInitializedFieldInUnion()) {
579 // Empty union; we have nothing to do.
Mike Stump1eb44332009-09-09 15:08:12 +0000580
Douglas Gregor0bb76892009-01-29 16:53:55 +0000581#ifndef NDEBUG
582 // Make sure that it's really an empty and not a failure of
583 // semantic analysis.
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000584 for (RecordDecl::field_iterator Field = SD->field_begin(),
585 FieldEnd = SD->field_end();
Douglas Gregor0bb76892009-01-29 16:53:55 +0000586 Field != FieldEnd; ++Field)
587 assert(Field->isUnnamedBitfield() && "Only unnamed bitfields allowed");
588#endif
589 return;
590 }
591
592 // FIXME: volatility
593 FieldDecl *Field = E->getInitializedFieldInUnion();
Anders Carlssone78ccb42010-02-03 19:13:55 +0000594 LValue FieldLoc = CGF.EmitLValueForFieldInitialization(DestPtr, Field, 0);
Douglas Gregor0bb76892009-01-29 16:53:55 +0000595
596 if (NumInitElements) {
597 // Store the initializer into the field
Anders Carlsson78e83f82010-02-03 17:33:16 +0000598 EmitInitializationToLValue(E->getInit(0), FieldLoc, Field->getType());
Douglas Gregor0bb76892009-01-29 16:53:55 +0000599 } else {
600 // Default-initialize to null
601 EmitNullInitializationToLValue(FieldLoc, Field->getType());
602 }
603
604 return;
605 }
Mike Stump1eb44332009-09-09 15:08:12 +0000606
Chris Lattnerf81557c2008-04-04 18:42:16 +0000607 // Here we iterate over the fields; this makes it simpler to both
608 // default-initialize fields and skip over unnamed fields.
Chris Lattnerbd7de382010-09-06 00:13:11 +0000609 unsigned CurInitVal = 0;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000610 for (RecordDecl::field_iterator Field = SD->field_begin(),
611 FieldEnd = SD->field_end();
Douglas Gregor44b43212008-12-11 16:49:14 +0000612 Field != FieldEnd; ++Field) {
613 // We're done once we hit the flexible array member
614 if (Field->getType()->isIncompleteArrayType())
615 break;
616
Douglas Gregor34e79462009-01-28 23:36:17 +0000617 if (Field->isUnnamedBitfield())
Chris Lattnerf81557c2008-04-04 18:42:16 +0000618 continue;
Douglas Gregor34e79462009-01-28 23:36:17 +0000619
Eli Friedman1e692ac2008-06-13 23:01:12 +0000620 // FIXME: volatility
Anders Carlssone78ccb42010-02-03 19:13:55 +0000621 LValue FieldLoc = CGF.EmitLValueForFieldInitialization(DestPtr, *Field, 0);
Fariborz Jahanian14674ff2009-05-27 19:54:11 +0000622 // We never generate write-barries for initialized fields.
Daniel Dunbarea619172010-08-21 03:22:38 +0000623 FieldLoc.setNonGC(true);
Chris Lattnerf81557c2008-04-04 18:42:16 +0000624 if (CurInitVal < NumInitElements) {
Chris Lattnerb35baae2010-03-08 21:08:07 +0000625 // Store the initializer into the field.
626 EmitInitializationToLValue(E->getInit(CurInitVal++), FieldLoc,
Anders Carlsson78e83f82010-02-03 17:33:16 +0000627 Field->getType());
Chris Lattnerf81557c2008-04-04 18:42:16 +0000628 } else {
629 // We're out of initalizers; default-initialize to null
Douglas Gregor44b43212008-12-11 16:49:14 +0000630 EmitNullInitializationToLValue(FieldLoc, Field->getType());
Chris Lattnerf81557c2008-04-04 18:42:16 +0000631 }
Lauro Ramos Venancio145cd892008-02-19 19:27:31 +0000632 }
Devang Patel636c3d02007-10-26 17:44:44 +0000633}
634
Chris Lattneree755f92007-08-21 04:59:27 +0000635//===----------------------------------------------------------------------===//
636// Entry Points into this File
637//===----------------------------------------------------------------------===//
638
Mike Stumpe1129a92009-05-26 18:57:45 +0000639/// EmitAggExpr - Emit the computation of the specified expression of aggregate
640/// type. The result is computed into DestPtr. Note that if DestPtr is null,
641/// the value of the aggregate expression is not needed. If VolatileDest is
642/// true, DestPtr cannot be 0.
John McCall558d2ab2010-09-15 10:14:12 +0000643///
644/// \param IsInitializer - true if this evaluation is initializing an
645/// object whose lifetime is already being managed.
Daniel Dunbar18aba0d2010-02-05 19:38:31 +0000646//
647// FIXME: Take Qualifiers object.
John McCall558d2ab2010-09-15 10:14:12 +0000648void CodeGenFunction::EmitAggExpr(const Expr *E, AggValueSlot Slot,
Fariborz Jahanian474e2fe2010-09-16 00:20:07 +0000649 bool IgnoreResult) {
Chris Lattneree755f92007-08-21 04:59:27 +0000650 assert(E && hasAggregateLLVMType(E->getType()) &&
651 "Invalid aggregate expression to emit");
John McCall558d2ab2010-09-15 10:14:12 +0000652 assert((Slot.getAddr() != 0 || Slot.isIgnored())
653 && "slot has bits but no address");
Mike Stump1eb44332009-09-09 15:08:12 +0000654
Fariborz Jahanian474e2fe2010-09-16 00:20:07 +0000655 AggExprEmitter(*this, Slot, IgnoreResult)
Mike Stump49d1cd52009-05-26 22:03:21 +0000656 .Visit(const_cast<Expr*>(E));
Chris Lattneree755f92007-08-21 04:59:27 +0000657}
Daniel Dunbar7482d122008-09-09 20:49:46 +0000658
Daniel Dunbar18aba0d2010-02-05 19:38:31 +0000659LValue CodeGenFunction::EmitAggExprToLValue(const Expr *E) {
660 assert(hasAggregateLLVMType(E->getType()) && "Invalid argument!");
Daniel Dunbar195337d2010-02-09 02:48:28 +0000661 llvm::Value *Temp = CreateMemTemp(E->getType());
Daniel Dunbar79c39282010-08-21 03:15:20 +0000662 LValue LV = MakeAddrLValue(Temp, E->getType());
John McCall558d2ab2010-09-15 10:14:12 +0000663 AggValueSlot Slot
664 = AggValueSlot::forAddr(Temp, LV.isVolatileQualified(), false);
665 EmitAggExpr(E, Slot);
Daniel Dunbar79c39282010-08-21 03:15:20 +0000666 return LV;
Daniel Dunbar18aba0d2010-02-05 19:38:31 +0000667}
668
Daniel Dunbar7482d122008-09-09 20:49:46 +0000669void CodeGenFunction::EmitAggregateCopy(llvm::Value *DestPtr,
Mike Stump27fe2e62009-05-23 22:29:41 +0000670 llvm::Value *SrcPtr, QualType Ty,
671 bool isVolatile) {
Daniel Dunbar7482d122008-09-09 20:49:46 +0000672 assert(!Ty->isAnyComplexType() && "Shouldn't happen for complex");
Mike Stump1eb44332009-09-09 15:08:12 +0000673
Anders Carlsson0d7c5832010-05-03 01:20:20 +0000674 if (getContext().getLangOptions().CPlusPlus) {
675 if (const RecordType *RT = Ty->getAs<RecordType>()) {
Douglas Gregore9979482010-05-20 15:39:01 +0000676 CXXRecordDecl *Record = cast<CXXRecordDecl>(RT->getDecl());
677 assert((Record->hasTrivialCopyConstructor() ||
Fariborz Jahanian1d49f212010-05-20 16:46:55 +0000678 Record->hasTrivialCopyAssignment()) &&
Douglas Gregore9979482010-05-20 15:39:01 +0000679 "Trying to aggregate-copy a type without a trivial copy "
680 "constructor or assignment operator");
Douglas Gregor419aa962010-05-20 15:48:29 +0000681 // Ignore empty classes in C++.
Douglas Gregore9979482010-05-20 15:39:01 +0000682 if (Record->isEmpty())
Anders Carlsson0d7c5832010-05-03 01:20:20 +0000683 return;
684 }
685 }
686
Chris Lattner83c96292009-02-28 18:31:01 +0000687 // Aggregate assignment turns into llvm.memcpy. This is almost valid per
Chris Lattnerca4fc2c2009-02-28 18:18:58 +0000688 // C99 6.5.16.1p3, which states "If the value being stored in an object is
689 // read from another object that overlaps in anyway the storage of the first
690 // object, then the overlap shall be exact and the two objects shall have
691 // qualified or unqualified versions of a compatible type."
692 //
Chris Lattner83c96292009-02-28 18:31:01 +0000693 // memcpy is not defined if the source and destination pointers are exactly
Chris Lattnerca4fc2c2009-02-28 18:18:58 +0000694 // equal, but other compilers do this optimization, and almost every memcpy
695 // implementation handles this case safely. If there is a libc that does not
696 // safely handle this, we can add a target hook.
Mike Stump1eb44332009-09-09 15:08:12 +0000697
Daniel Dunbar7482d122008-09-09 20:49:46 +0000698 // Get size and alignment info for this aggregate.
699 std::pair<uint64_t, unsigned> TypeInfo = getContext().getTypeInfo(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +0000700
Daniel Dunbar7482d122008-09-09 20:49:46 +0000701 // FIXME: Handle variable sized types.
Mike Stump1eb44332009-09-09 15:08:12 +0000702
Mike Stumpfde64202009-05-23 04:13:59 +0000703 // FIXME: If we have a volatile struct, the optimizer can remove what might
704 // appear to be `extra' memory ops:
705 //
706 // volatile struct { int i; } a, b;
707 //
708 // int main() {
709 // a = b;
710 // a = b;
711 // }
712 //
Mon P Wang3ecd7852010-04-04 03:10:52 +0000713 // we need to use a different call here. We use isVolatile to indicate when
Mike Stump49d1cd52009-05-26 22:03:21 +0000714 // either the source or the destination is volatile.
Mon P Wang3ecd7852010-04-04 03:10:52 +0000715
716 const llvm::PointerType *DPT = cast<llvm::PointerType>(DestPtr->getType());
Chris Lattner098432c2010-07-08 00:07:45 +0000717 const llvm::Type *DBP =
718 llvm::Type::getInt8PtrTy(VMContext, DPT->getAddressSpace());
719 DestPtr = Builder.CreateBitCast(DestPtr, DBP, "tmp");
Mon P Wang3ecd7852010-04-04 03:10:52 +0000720
721 const llvm::PointerType *SPT = cast<llvm::PointerType>(SrcPtr->getType());
Chris Lattner098432c2010-07-08 00:07:45 +0000722 const llvm::Type *SBP =
723 llvm::Type::getInt8PtrTy(VMContext, SPT->getAddressSpace());
724 SrcPtr = Builder.CreateBitCast(SrcPtr, SBP, "tmp");
Mon P Wang3ecd7852010-04-04 03:10:52 +0000725
Fariborz Jahanian55bcace2010-06-15 22:44:06 +0000726 if (const RecordType *RecordTy = Ty->getAs<RecordType>()) {
727 RecordDecl *Record = RecordTy->getDecl();
728 if (Record->hasObjectMember()) {
729 unsigned long size = TypeInfo.first/8;
730 const llvm::Type *SizeTy = ConvertType(getContext().getSizeType());
731 llvm::Value *SizeVal = llvm::ConstantInt::get(SizeTy, size);
732 CGM.getObjCRuntime().EmitGCMemmoveCollectable(*this, DestPtr, SrcPtr,
733 SizeVal);
734 return;
735 }
736 } else if (getContext().getAsArrayType(Ty)) {
737 QualType BaseType = getContext().getBaseElementType(Ty);
738 if (const RecordType *RecordTy = BaseType->getAs<RecordType>()) {
739 if (RecordTy->getDecl()->hasObjectMember()) {
740 unsigned long size = TypeInfo.first/8;
741 const llvm::Type *SizeTy = ConvertType(getContext().getSizeType());
742 llvm::Value *SizeVal = llvm::ConstantInt::get(SizeTy, size);
743 CGM.getObjCRuntime().EmitGCMemmoveCollectable(*this, DestPtr, SrcPtr,
744 SizeVal);
745 return;
746 }
747 }
748 }
749
Mon P Wang3ecd7852010-04-04 03:10:52 +0000750 Builder.CreateCall5(CGM.getMemCpyFn(DestPtr->getType(), SrcPtr->getType(),
Chris Lattner77b89b82010-06-27 07:15:29 +0000751 IntPtrTy),
Daniel Dunbar7482d122008-09-09 20:49:46 +0000752 DestPtr, SrcPtr,
753 // TypeInfo.first describes size in bits.
Chris Lattner77b89b82010-06-27 07:15:29 +0000754 llvm::ConstantInt::get(IntPtrTy, TypeInfo.first/8),
Chris Lattner098432c2010-07-08 00:07:45 +0000755 Builder.getInt32(TypeInfo.second/8),
756 Builder.getInt1(isVolatile));
Daniel Dunbar7482d122008-09-09 20:49:46 +0000757}