blob: 1f8964d0b625c91f1d3cf5907a8674d74abff4a5 [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);
Anders Carlssona024d172009-10-03 15:43:24 +0000111 void VisitUnaryAddrOf(const UnaryOperator *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 Jahanian55bcace2010-06-15 22:44:06 +0000180 if (RequiresGCollection) {
181 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);
186 CGF.CGM.getObjCRuntime().EmitGCMemmoveCollectable(CGF, DestPtr,
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
Chris Lattner883f6a72007-08-11 00:04:45 +0000196 // If the result is ignored, don't copy from the value.
Mike Stump9ccb1032009-05-23 22:01:27 +0000197 if (DestPtr == 0) {
Mike Stump49d1cd52009-05-26 22:03:21 +0000198 if (!Src.isVolatileQualified() || (IgnoreResult && Ignore))
Mike Stump9ccb1032009-05-23 22:01:27 +0000199 return;
Mike Stump49d1cd52009-05-26 22:03:21 +0000200 // If the source is volatile, we must read from it; to do that, we need
201 // some place to put it.
Daniel Dunbar195337d2010-02-09 02:48:28 +0000202 DestPtr = CGF.CreateMemTemp(E->getType(), "agg.tmp");
Mike Stump9ccb1032009-05-23 22:01:27 +0000203 }
Chris Lattner883f6a72007-08-11 00:04:45 +0000204
Fariborz Jahanian08c32132009-08-31 19:33:16 +0000205 if (RequiresGCollection) {
Fariborz Jahanian55bcace2010-06-15 22:44:06 +0000206 std::pair<uint64_t, unsigned> TypeInfo =
207 CGF.getContext().getTypeInfo(E->getType());
208 unsigned long size = TypeInfo.first/8;
209 const llvm::Type *SizeTy = CGF.ConvertType(CGF.getContext().getSizeType());
210 llvm::Value *SizeVal = llvm::ConstantInt::get(SizeTy, size);
Fariborz Jahanian08c32132009-08-31 19:33:16 +0000211 CGF.CGM.getObjCRuntime().EmitGCMemmoveCollectable(CGF,
212 DestPtr, Src.getAggregateAddr(),
Fariborz Jahanian55bcace2010-06-15 22:44:06 +0000213 SizeVal);
Fariborz Jahanian08c32132009-08-31 19:33:16 +0000214 return;
215 }
Mike Stump4ac20dd2009-05-23 20:28:01 +0000216 // If the result of the assignment is used, copy the LHS there also.
217 // FIXME: Pass VolatileDest as well. I think we also need to merge volatile
218 // from the source as well, as we can't eliminate it if either operand
219 // is volatile, unless copy has volatile for both source and destination..
Mike Stump27fe2e62009-05-23 22:29:41 +0000220 CGF.EmitAggregateCopy(DestPtr, Src.getAggregateAddr(), E->getType(),
221 VolatileDest|Src.isVolatileQualified());
Mike Stump4ac20dd2009-05-23 20:28:01 +0000222}
223
224/// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
Mike Stump49d1cd52009-05-26 22:03:21 +0000225void AggExprEmitter::EmitFinalDestCopy(const Expr *E, LValue Src, bool Ignore) {
Mike Stump4ac20dd2009-05-23 20:28:01 +0000226 assert(Src.isSimple() && "Can't have aggregate bitfield, vector, etc");
227
228 EmitFinalDestCopy(E, RValue::getAggregate(Src.getAddress(),
Mike Stump49d1cd52009-05-26 22:03:21 +0000229 Src.isVolatileQualified()),
230 Ignore);
Chris Lattner883f6a72007-08-11 00:04:45 +0000231}
232
Chris Lattneree755f92007-08-21 04:59:27 +0000233//===----------------------------------------------------------------------===//
234// Visitor Methods
235//===----------------------------------------------------------------------===//
236
Anders Carlsson4d8673b2009-08-07 23:22:37 +0000237void AggExprEmitter::VisitCastExpr(CastExpr *E) {
Douglas Gregor69cfeb12010-05-14 21:31:02 +0000238 if (!DestPtr && E->getCastKind() != CastExpr::CK_Dynamic) {
Douglas Gregor4ce46c22010-03-07 23:24:59 +0000239 Visit(E->getSubExpr());
240 return;
241 }
242
Anders Carlsson30168422009-09-29 01:23:39 +0000243 switch (E->getCastKind()) {
244 default: assert(0 && "Unhandled cast kind!");
245
Douglas Gregor69cfeb12010-05-14 21:31:02 +0000246 case CastExpr::CK_Dynamic: {
247 assert(isa<CXXDynamicCastExpr>(E) && "CK_Dynamic without a dynamic_cast?");
248 LValue LV = CGF.EmitCheckedLValue(E->getSubExpr());
249 // FIXME: Do we also need to handle property references here?
250 if (LV.isSimple())
251 CGF.EmitDynamicCast(LV.getAddress(), cast<CXXDynamicCastExpr>(E));
252 else
253 CGF.CGM.ErrorUnsupported(E, "non-simple lvalue dynamic_cast");
254
255 if (DestPtr)
256 CGF.CGM.ErrorUnsupported(E, "lvalue dynamic_cast with a destination");
257 break;
258 }
259
Anders Carlsson30168422009-09-29 01:23:39 +0000260 case CastExpr::CK_ToUnion: {
Anders Carlsson4d8673b2009-08-07 23:22:37 +0000261 // GCC union extension
Daniel Dunbar79c39282010-08-21 03:15:20 +0000262 QualType Ty = E->getSubExpr()->getType();
263 QualType PtrTy = CGF.getContext().getPointerType(Ty);
Eli Friedman34ebf4d2009-06-03 20:45:06 +0000264 llvm::Value *CastPtr = Builder.CreateBitCast(DestPtr,
265 CGF.ConvertType(PtrTy));
Daniel Dunbar79c39282010-08-21 03:15:20 +0000266 EmitInitializationToLValue(E->getSubExpr(), CGF.MakeAddrLValue(CastPtr, Ty),
267 Ty);
Anders Carlsson30168422009-09-29 01:23:39 +0000268 break;
Nuno Lopes7e916272009-01-15 20:14:33 +0000269 }
Mike Stump1eb44332009-09-09 15:08:12 +0000270
Douglas Gregor2d6b0e92010-05-22 05:17:18 +0000271 case CastExpr::CK_DerivedToBase:
272 case CastExpr::CK_BaseToDerived:
273 case CastExpr::CK_UncheckedDerivedToBase: {
274 assert(0 && "cannot perform hierarchy conversion in EmitAggExpr: "
275 "should have been unpacked before we got here");
276 break;
277 }
278
Anders Carlsson4d8673b2009-08-07 23:22:37 +0000279 // FIXME: Remove the CK_Unknown check here.
Anders Carlsson30168422009-09-29 01:23:39 +0000280 case CastExpr::CK_Unknown:
281 case CastExpr::CK_NoOp:
282 case CastExpr::CK_UserDefinedConversion:
283 case CastExpr::CK_ConstructorConversion:
284 assert(CGF.getContext().hasSameUnqualifiedType(E->getSubExpr()->getType(),
285 E->getType()) &&
286 "Implicit cast types must be compatible");
287 Visit(E->getSubExpr());
288 break;
Anders Carlssone9d34dc2009-09-29 02:09:01 +0000289
290 case CastExpr::CK_NullToMemberPointer: {
Douglas Gregor4ce46c22010-03-07 23:24:59 +0000291 // If the subexpression's type is the C++0x nullptr_t, emit the
292 // subexpression, which may have side effects.
293 if (E->getSubExpr()->getType()->isNullPtrType())
294 Visit(E->getSubExpr());
295
John McCallcf2c85e2010-08-22 04:16:24 +0000296 CGF.CGM.getCXXABI().EmitNullMemberFunctionPointer(CGF,
297 E->getType()->getAs<MemberPointerType>(),
298 DestPtr, VolatileDest);
Anders Carlssone9d34dc2009-09-29 02:09:01 +0000299
300 break;
301 }
Anders Carlsson84080ec2009-09-29 03:13:20 +0000302
Douglas Gregore39a3892010-07-13 23:17:26 +0000303 case CastExpr::CK_LValueBitCast:
304 llvm_unreachable("there are no lvalue bit-casts on aggregates");
305 break;
306
Anders Carlssonbb378cb2009-10-18 20:31:03 +0000307 case CastExpr::CK_BitCast: {
308 // This must be a member function pointer cast.
309 Visit(E->getSubExpr());
310 break;
311 }
312
Eli Friedmanc6fdb7762009-11-27 04:46:20 +0000313 case CastExpr::CK_DerivedToBaseMemberPointer:
Anders Carlsson84080ec2009-09-29 03:13:20 +0000314 case CastExpr::CK_BaseToDerivedMemberPointer: {
315 QualType SrcType = E->getSubExpr()->getType();
316
Daniel Dunbar195337d2010-02-09 02:48:28 +0000317 llvm::Value *Src = CGF.CreateMemTemp(SrcType, "tmp");
Anders Carlsson84080ec2009-09-29 03:13:20 +0000318 CGF.EmitAggExpr(E->getSubExpr(), Src, SrcType.isVolatileQualified());
Eli Friedmanc6fdb7762009-11-27 04:46:20 +0000319
John McCall3023def2010-08-22 03:04:22 +0000320 // Note that the AST doesn't distinguish between checked and
321 // unchecked member pointer conversions, so we always have to
322 // implement checked conversions here. This is inefficient for
323 // ABIs where an actual null check is thus required; fortunately,
324 // the Itanium and ARM ABIs ignore the adjustment value when
325 // considering null-ness.
John McCallcf2c85e2010-08-22 04:16:24 +0000326 CGF.CGM.getCXXABI().EmitMemberFunctionPointerConversion(CGF, E, Src,
327 DestPtr, VolatileDest);
Anders Carlsson84080ec2009-09-29 03:13:20 +0000328 break;
329 }
Anders Carlsson30168422009-09-29 01:23:39 +0000330 }
Anders Carlssone4707ff2008-01-14 06:28:57 +0000331}
332
Chris Lattner96196622008-07-26 22:37:01 +0000333void AggExprEmitter::VisitCallExpr(const CallExpr *E) {
Anders Carlssone70e8f72009-05-27 16:45:02 +0000334 if (E->getCallReturnType()->isReferenceType()) {
335 EmitAggLoadOfLValue(E);
336 return;
337 }
Mike Stump1eb44332009-09-09 15:08:12 +0000338
John McCallfa037bd2010-05-22 22:13:32 +0000339 RValue RV = CGF.EmitCallExpr(E, getReturnValueSlot());
340 EmitGCMove(E, RV);
Anders Carlsson148fe672007-10-31 22:04:46 +0000341}
Chris Lattner96196622008-07-26 22:37:01 +0000342
343void AggExprEmitter::VisitObjCMessageExpr(ObjCMessageExpr *E) {
John McCallfa037bd2010-05-22 22:13:32 +0000344 RValue RV = CGF.EmitObjCMessageExpr(E, getReturnValueSlot());
345 EmitGCMove(E, RV);
Chris Lattner8fdf3282008-06-24 17:04:18 +0000346}
Anders Carlsson148fe672007-10-31 22:04:46 +0000347
Daniel Dunbar9c3fc702008-08-27 06:57:25 +0000348void AggExprEmitter::VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *E) {
John McCallfa037bd2010-05-22 22:13:32 +0000349 RValue RV = CGF.EmitObjCPropertyGet(E, getReturnValueSlot());
350 EmitGCMove(E, RV);
Daniel Dunbar9c3fc702008-08-27 06:57:25 +0000351}
352
Fariborz Jahanian09105f52009-08-20 17:02:02 +0000353void AggExprEmitter::VisitObjCImplicitSetterGetterRefExpr(
354 ObjCImplicitSetterGetterRefExpr *E) {
John McCallfa037bd2010-05-22 22:13:32 +0000355 RValue RV = CGF.EmitObjCPropertyGet(E, getReturnValueSlot());
356 EmitGCMove(E, RV);
Fariborz Jahanian5daf5702008-11-22 18:39:36 +0000357}
358
Chris Lattner96196622008-07-26 22:37:01 +0000359void AggExprEmitter::VisitBinComma(const BinaryOperator *E) {
Mike Stump7f79f9b2009-05-29 15:46:01 +0000360 CGF.EmitAnyExpr(E->getLHS(), 0, false, true);
Anders Carlsson14c5cbf2009-08-16 07:36:22 +0000361 CGF.EmitAggExpr(E->getRHS(), DestPtr, VolatileDest,
362 /*IgnoreResult=*/false, IsInitializer);
Eli Friedman07fa52a2008-05-20 07:56:31 +0000363}
364
Anders Carlssona024d172009-10-03 15:43:24 +0000365void AggExprEmitter::VisitUnaryAddrOf(const UnaryOperator *E) {
366 // We have a member function pointer.
367 const MemberPointerType *MPT = E->getType()->getAs<MemberPointerType>();
Daniel Dunbarbabac132009-10-17 09:39:30 +0000368 (void) MPT;
Anders Carlssona024d172009-10-03 15:43:24 +0000369 assert(MPT->getPointeeType()->isFunctionProtoType() &&
370 "Unexpected member pointer type!");
Douglas Gregore174bd02010-05-03 20:00:27 +0000371
372 // The creation of member function pointers has no side effects; if
373 // there is no destination pointer, we have nothing to do.
374 if (!DestPtr)
375 return;
Anders Carlssona024d172009-10-03 15:43:24 +0000376
Douglas Gregora2813ce2009-10-23 18:54:35 +0000377 const DeclRefExpr *DRE = cast<DeclRefExpr>(E->getSubExpr());
Anders Carlsson7af4ec72010-01-05 05:04:05 +0000378 const CXXMethodDecl *MD =
379 cast<CXXMethodDecl>(DRE->getDecl())->getCanonicalDecl();
Anders Carlssona024d172009-10-03 15:43:24 +0000380
381 const llvm::Type *PtrDiffTy =
382 CGF.ConvertType(CGF.getContext().getPointerDiffType());
383
384 llvm::Value *DstPtr = Builder.CreateStructGEP(DestPtr, 0, "dst.ptr");
Eli Friedmanc00129a2010-05-30 06:03:20 +0000385 llvm::Value *FuncPtr = CGF.CGM.GetCXXMemberFunctionPointerValue(MD);
Anders Carlssona024d172009-10-03 15:43:24 +0000386 Builder.CreateStore(FuncPtr, DstPtr, VolatileDest);
387
388 llvm::Value *AdjPtr = Builder.CreateStructGEP(DestPtr, 1, "dst.adj");
Anders Carlssona024d172009-10-03 15:43:24 +0000389 // The adjustment will always be 0.
390 Builder.CreateStore(llvm::ConstantInt::get(PtrDiffTy, 0), AdjPtr,
391 VolatileDest);
392}
393
Chris Lattnerb2d963f2007-08-31 22:54:14 +0000394void AggExprEmitter::VisitStmtExpr(const StmtExpr *E) {
395 CGF.EmitCompoundStmt(*E->getSubStmt(), true, DestPtr, VolatileDest);
396}
397
Chris Lattner9c033562007-08-21 04:25:47 +0000398void AggExprEmitter::VisitBinaryOperator(const BinaryOperator *E) {
Fariborz Jahanian52f08bc2009-10-26 21:58:25 +0000399 if (E->getOpcode() == BinaryOperator::PtrMemD ||
400 E->getOpcode() == BinaryOperator::PtrMemI)
Fariborz Jahanian8bfd31f2009-10-22 22:57:31 +0000401 VisitPointerToDataMemberBinaryOperator(E);
402 else
403 CGF.ErrorUnsupported(E, "aggregate binary expression");
404}
405
406void AggExprEmitter::VisitPointerToDataMemberBinaryOperator(
407 const BinaryOperator *E) {
408 LValue LV = CGF.EmitPointerToDataMemberBinaryExpr(E);
409 EmitFinalDestCopy(E, LV);
Chris Lattneree755f92007-08-21 04:59:27 +0000410}
411
Chris Lattner03d6fb92007-08-21 04:43:17 +0000412void AggExprEmitter::VisitBinAssign(const BinaryOperator *E) {
Eli Friedmanff6e2b72008-02-11 01:09:17 +0000413 // For an assignment to work, the value on the right has
414 // to be compatible with the value on the left.
Eli Friedman2dce5f82009-05-28 23:04:00 +0000415 assert(CGF.getContext().hasSameUnqualifiedType(E->getLHS()->getType(),
416 E->getRHS()->getType())
Eli Friedmanff6e2b72008-02-11 01:09:17 +0000417 && "Invalid assignment");
Chris Lattner9c033562007-08-21 04:25:47 +0000418 LValue LHS = CGF.EmitLValue(E->getLHS());
Chris Lattner883f6a72007-08-11 00:04:45 +0000419
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000420 // We have to special case property setters, otherwise we must have
421 // a simple lvalue (no aggregates inside vectors, bitfields).
422 if (LHS.isPropertyRef()) {
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000423 llvm::Value *AggLoc = DestPtr;
424 if (!AggLoc)
Daniel Dunbar195337d2010-02-09 02:48:28 +0000425 AggLoc = CGF.CreateMemTemp(E->getRHS()->getType());
Mike Stump240993d2009-05-23 23:48:13 +0000426 CGF.EmitAggExpr(E->getRHS(), AggLoc, VolatileDest);
Mike Stump1eb44332009-09-09 15:08:12 +0000427 CGF.EmitObjCPropertySet(LHS.getPropertyRefExpr(),
Mike Stump240993d2009-05-23 23:48:13 +0000428 RValue::getAggregate(AggLoc, VolatileDest));
Mike Stumpb3589f42009-07-30 22:28:39 +0000429 } else if (LHS.isKVCRef()) {
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000430 llvm::Value *AggLoc = DestPtr;
431 if (!AggLoc)
Daniel Dunbar195337d2010-02-09 02:48:28 +0000432 AggLoc = CGF.CreateMemTemp(E->getRHS()->getType());
Mike Stumpa49af1a2009-05-23 23:52:31 +0000433 CGF.EmitAggExpr(E->getRHS(), AggLoc, VolatileDest);
Mike Stump1eb44332009-09-09 15:08:12 +0000434 CGF.EmitObjCPropertySet(LHS.getKVCRefExpr(),
Mike Stumpa49af1a2009-05-23 23:52:31 +0000435 RValue::getAggregate(AggLoc, VolatileDest));
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000436 } else {
Fariborz Jahanian08c32132009-08-31 19:33:16 +0000437 bool RequiresGCollection = false;
John McCallfa037bd2010-05-22 22:13:32 +0000438 if (CGF.getContext().getLangOptions().getGCMode())
439 RequiresGCollection = TypeRequiresGCollection(E->getLHS()->getType());
440
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000441 // Codegen the RHS so that it stores directly into the LHS.
Fariborz Jahanian08c32132009-08-31 19:33:16 +0000442 CGF.EmitAggExpr(E->getRHS(), LHS.getAddress(), LHS.isVolatileQualified(),
443 false, false, RequiresGCollection);
Mike Stump49d1cd52009-05-26 22:03:21 +0000444 EmitFinalDestCopy(E, LHS, true);
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000445 }
Chris Lattner883f6a72007-08-11 00:04:45 +0000446}
447
Chris Lattner9c033562007-08-21 04:25:47 +0000448void AggExprEmitter::VisitConditionalOperator(const ConditionalOperator *E) {
Eli Friedman8e274bd2009-12-25 06:17:05 +0000449 if (!E->getLHS()) {
450 CGF.ErrorUnsupported(E, "conditional operator with missing LHS");
451 return;
452 }
453
Daniel Dunbar9615ecb2008-11-13 01:38:36 +0000454 llvm::BasicBlock *LHSBlock = CGF.createBasicBlock("cond.true");
455 llvm::BasicBlock *RHSBlock = CGF.createBasicBlock("cond.false");
456 llvm::BasicBlock *ContBlock = CGF.createBasicBlock("cond.end");
Mike Stump1eb44332009-09-09 15:08:12 +0000457
Eli Friedman8e274bd2009-12-25 06:17:05 +0000458 CGF.EmitBranchOnBoolExpr(E->getCond(), LHSBlock, RHSBlock);
Mike Stump1eb44332009-09-09 15:08:12 +0000459
Anders Carlsson72119a82010-02-04 17:18:07 +0000460 CGF.BeginConditionalBranch();
Chris Lattner9c033562007-08-21 04:25:47 +0000461 CGF.EmitBlock(LHSBlock);
Mike Stump1eb44332009-09-09 15:08:12 +0000462
Chris Lattner883f6a72007-08-11 00:04:45 +0000463 // Handle the GNU extension for missing LHS.
464 assert(E->getLHS() && "Must have LHS for aggregate value");
465
Chris Lattnerc748f272007-08-21 05:02:10 +0000466 Visit(E->getLHS());
Anders Carlsson72119a82010-02-04 17:18:07 +0000467 CGF.EndConditionalBranch();
Daniel Dunbard57a8712008-11-11 09:41:28 +0000468 CGF.EmitBranch(ContBlock);
Mike Stump1eb44332009-09-09 15:08:12 +0000469
Anders Carlsson72119a82010-02-04 17:18:07 +0000470 CGF.BeginConditionalBranch();
Chris Lattner9c033562007-08-21 04:25:47 +0000471 CGF.EmitBlock(RHSBlock);
Mike Stump1eb44332009-09-09 15:08:12 +0000472
Chris Lattnerc748f272007-08-21 05:02:10 +0000473 Visit(E->getRHS());
Anders Carlsson72119a82010-02-04 17:18:07 +0000474 CGF.EndConditionalBranch();
Daniel Dunbard57a8712008-11-11 09:41:28 +0000475 CGF.EmitBranch(ContBlock);
Mike Stump1eb44332009-09-09 15:08:12 +0000476
Chris Lattner9c033562007-08-21 04:25:47 +0000477 CGF.EmitBlock(ContBlock);
Chris Lattner883f6a72007-08-11 00:04:45 +0000478}
Chris Lattneree755f92007-08-21 04:59:27 +0000479
Anders Carlssona294ca82009-07-08 18:33:14 +0000480void AggExprEmitter::VisitChooseExpr(const ChooseExpr *CE) {
481 Visit(CE->getChosenSubExpr(CGF.getContext()));
482}
483
Eli Friedmanb1851242008-05-27 15:51:49 +0000484void AggExprEmitter::VisitVAArgExpr(VAArgExpr *VE) {
Daniel Dunbar07855702009-02-11 22:25:55 +0000485 llvm::Value *ArgValue = CGF.EmitVAListRef(VE->getSubExpr());
Anders Carlssonddf7cac2008-11-04 05:30:00 +0000486 llvm::Value *ArgPtr = CGF.EmitVAArg(ArgValue, VE->getType());
487
Sebastian Redl0262f022009-01-09 21:09:38 +0000488 if (!ArgPtr) {
Anders Carlssonddf7cac2008-11-04 05:30:00 +0000489 CGF.ErrorUnsupported(VE, "aggregate va_arg expression");
Sebastian Redl0262f022009-01-09 21:09:38 +0000490 return;
491 }
492
Daniel Dunbar79c39282010-08-21 03:15:20 +0000493 EmitFinalDestCopy(VE, CGF.MakeAddrLValue(ArgPtr, VE->getType()));
Eli Friedmanb1851242008-05-27 15:51:49 +0000494}
495
Anders Carlssonb58d0172009-05-30 23:23:33 +0000496void AggExprEmitter::VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E) {
497 llvm::Value *Val = DestPtr;
Mike Stump1eb44332009-09-09 15:08:12 +0000498
Anders Carlssonb58d0172009-05-30 23:23:33 +0000499 if (!Val) {
500 // Create a temporary variable.
Daniel Dunbar195337d2010-02-09 02:48:28 +0000501 Val = CGF.CreateMemTemp(E->getType(), "tmp");
Anders Carlssonb58d0172009-05-30 23:23:33 +0000502
503 // FIXME: volatile
504 CGF.EmitAggExpr(E->getSubExpr(), Val, false);
Mike Stump1eb44332009-09-09 15:08:12 +0000505 } else
Anders Carlssonb58d0172009-05-30 23:23:33 +0000506 Visit(E->getSubExpr());
Mike Stump1eb44332009-09-09 15:08:12 +0000507
Anders Carlsson14c5cbf2009-08-16 07:36:22 +0000508 // Don't make this a live temporary if we're emitting an initializer expr.
509 if (!IsInitializer)
John McCallf1549f62010-07-06 01:34:17 +0000510 CGF.EmitCXXTemporary(E->getTemporary(), Val);
Anders Carlssonb58d0172009-05-30 23:23:33 +0000511}
512
Anders Carlssonb14095a2009-04-17 00:06:03 +0000513void
Anders Carlsson31ccf372009-05-03 17:47:16 +0000514AggExprEmitter::VisitCXXConstructExpr(const CXXConstructExpr *E) {
Anders Carlssonb58d0172009-05-30 23:23:33 +0000515 llvm::Value *Val = DestPtr;
Mike Stump1eb44332009-09-09 15:08:12 +0000516
Chris Lattnerfbe02ff2010-06-27 07:40:06 +0000517 if (!Val) // Create a temporary variable.
Daniel Dunbar195337d2010-02-09 02:48:28 +0000518 Val = CGF.CreateMemTemp(E->getType(), "tmp");
Anders Carlsson8e587a12009-05-30 20:56:46 +0000519
Douglas Gregor16006c92009-12-16 18:50:27 +0000520 if (E->requiresZeroInitialization())
Daniel Dunbar79c39282010-08-21 03:15:20 +0000521 EmitNullInitializationToLValue(CGF.MakeAddrLValue(Val, E->getType()),
Douglas Gregor16006c92009-12-16 18:50:27 +0000522 E->getType());
523
Anders Carlssonb58d0172009-05-30 23:23:33 +0000524 CGF.EmitCXXConstructExpr(Val, E);
Anders Carlsson7f6ad152009-05-19 04:48:36 +0000525}
526
527void AggExprEmitter::VisitCXXExprWithTemporaries(CXXExprWithTemporaries *E) {
Mike Stumpdd5614b2009-12-18 02:14:27 +0000528 llvm::Value *Val = DestPtr;
529
Mike Stumpdd5614b2009-12-18 02:14:27 +0000530 CGF.EmitCXXExprWithTemporaries(E, Val, VolatileDest, IsInitializer);
Anders Carlssonb14095a2009-04-17 00:06:03 +0000531}
532
Douglas Gregored8abf12010-07-08 06:14:04 +0000533void AggExprEmitter::VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *E) {
Mike Stumpdd5614b2009-12-18 02:14:27 +0000534 llvm::Value *Val = DestPtr;
535
536 if (!Val) {
537 // Create a temporary variable.
Daniel Dunbar195337d2010-02-09 02:48:28 +0000538 Val = CGF.CreateMemTemp(E->getType(), "tmp");
Mike Stumpdd5614b2009-12-18 02:14:27 +0000539 }
Daniel Dunbar79c39282010-08-21 03:15:20 +0000540 EmitNullInitializationToLValue(CGF.MakeAddrLValue(Val, E->getType()),
541 E->getType());
Anders Carlsson30311fa2009-12-16 06:57:54 +0000542}
543
544void AggExprEmitter::VisitImplicitValueInitExpr(ImplicitValueInitExpr *E) {
Mike Stumpdd5614b2009-12-18 02:14:27 +0000545 llvm::Value *Val = DestPtr;
546
547 if (!Val) {
548 // Create a temporary variable.
Daniel Dunbar195337d2010-02-09 02:48:28 +0000549 Val = CGF.CreateMemTemp(E->getType(), "tmp");
Mike Stumpdd5614b2009-12-18 02:14:27 +0000550 }
Daniel Dunbar79c39282010-08-21 03:15:20 +0000551 EmitNullInitializationToLValue(CGF.MakeAddrLValue(Val, E->getType()),
552 E->getType());
Nuno Lopes329763b2009-10-18 15:18:11 +0000553}
554
Anders Carlsson78e83f82010-02-03 17:33:16 +0000555void
556AggExprEmitter::EmitInitializationToLValue(Expr* E, LValue LV, QualType T) {
Mike Stump7f79f9b2009-05-29 15:46:01 +0000557 // FIXME: Ignore result?
Chris Lattnerf81557c2008-04-04 18:42:16 +0000558 // FIXME: Are initializers affected by volatile?
Douglas Gregor3498bdb2009-01-29 17:44:32 +0000559 if (isa<ImplicitValueInitExpr>(E)) {
Anders Carlsson78e83f82010-02-03 17:33:16 +0000560 EmitNullInitializationToLValue(LV, T);
Anders Carlssone78ccb42010-02-03 19:13:55 +0000561 } else if (T->isReferenceType()) {
Anders Carlsson32f36ba2010-06-26 16:35:32 +0000562 RValue RV = CGF.EmitReferenceBindingToExpr(E, /*InitializedDecl=*/0);
Anders Carlssone78ccb42010-02-03 19:13:55 +0000563 CGF.EmitStoreThroughLValue(RV, LV, T);
Anders Carlsson78e83f82010-02-03 17:33:16 +0000564 } else if (T->isAnyComplexType()) {
Douglas Gregor3498bdb2009-01-29 17:44:32 +0000565 CGF.EmitComplexExprIntoAddr(E, LV.getAddress(), false);
Anders Carlsson78e83f82010-02-03 17:33:16 +0000566 } else if (CGF.hasAggregateLLVMType(T)) {
Eli Friedmanc8ba9612008-05-12 15:06:05 +0000567 CGF.EmitAnyExpr(E, LV.getAddress(), false);
568 } else {
Anders Carlsson78e83f82010-02-03 17:33:16 +0000569 CGF.EmitStoreThroughLValue(CGF.EmitAnyExpr(E), LV, T);
Chris Lattnerf81557c2008-04-04 18:42:16 +0000570 }
Chris Lattnerf81557c2008-04-04 18:42:16 +0000571}
572
573void AggExprEmitter::EmitNullInitializationToLValue(LValue LV, QualType T) {
574 if (!CGF.hasAggregateLLVMType(T)) {
575 // For non-aggregates, we can store zero
Owen Andersonc9c88b42009-07-31 20:28:54 +0000576 llvm::Value *Null = llvm::Constant::getNullValue(CGF.ConvertType(T));
Daniel Dunbar82397132008-08-06 05:32:55 +0000577 CGF.EmitStoreThroughLValue(RValue::get(Null), LV, T);
Lauro Ramos Venancio145cd892008-02-19 19:27:31 +0000578 } else {
Chris Lattnerf81557c2008-04-04 18:42:16 +0000579 // There's a potential optimization opportunity in combining
580 // memsets; that would be easy for arrays, but relatively
581 // difficult for structures with the current code.
Anders Carlsson1884eb02010-05-22 17:35:42 +0000582 CGF.EmitNullInitialization(LV.getAddress(), T);
Chris Lattnerf81557c2008-04-04 18:42:16 +0000583 }
584}
585
Chris Lattnerf81557c2008-04-04 18:42:16 +0000586void AggExprEmitter::VisitInitListExpr(InitListExpr *E) {
Eli Friedmana385b3c2008-12-02 01:17:45 +0000587#if 0
Eli Friedman13a5be12009-12-04 01:30:56 +0000588 // FIXME: Assess perf here? Figure out what cases are worth optimizing here
589 // (Length of globals? Chunks of zeroed-out space?).
Eli Friedmana385b3c2008-12-02 01:17:45 +0000590 //
Mike Stumpf5408fe2009-05-16 07:57:57 +0000591 // If we can, prefer a copy from a global; this is a lot less code for long
592 // globals, and it's easier for the current optimizers to analyze.
Eli Friedman13a5be12009-12-04 01:30:56 +0000593 if (llvm::Constant* C = CGF.CGM.EmitConstantExpr(E, E->getType(), &CGF)) {
Eli Friedman994ffef2008-11-30 02:11:09 +0000594 llvm::GlobalVariable* GV =
Eli Friedman13a5be12009-12-04 01:30:56 +0000595 new llvm::GlobalVariable(CGF.CGM.getModule(), C->getType(), true,
596 llvm::GlobalValue::InternalLinkage, C, "");
Daniel Dunbar79c39282010-08-21 03:15:20 +0000597 EmitFinalDestCopy(E, CGF.MakeAddrLValue(GV, E->getType()));
Eli Friedman994ffef2008-11-30 02:11:09 +0000598 return;
599 }
Eli Friedmana385b3c2008-12-02 01:17:45 +0000600#endif
Douglas Gregora9c87802009-01-29 19:42:23 +0000601 if (E->hadArrayRangeDesignator()) {
602 CGF.ErrorUnsupported(E, "GNU array range designator extension");
603 }
604
Chris Lattnerf81557c2008-04-04 18:42:16 +0000605 // Handle initialization of an array.
606 if (E->getType()->isArrayType()) {
607 const llvm::PointerType *APType =
608 cast<llvm::PointerType>(DestPtr->getType());
609 const llvm::ArrayType *AType =
610 cast<llvm::ArrayType>(APType->getElementType());
Mike Stump1eb44332009-09-09 15:08:12 +0000611
Chris Lattnerf81557c2008-04-04 18:42:16 +0000612 uint64_t NumInitElements = E->getNumInits();
Eli Friedman922696f2008-05-19 17:51:16 +0000613
Chris Lattner96196622008-07-26 22:37:01 +0000614 if (E->getNumInits() > 0) {
615 QualType T1 = E->getType();
616 QualType T2 = E->getInit(0)->getType();
Eli Friedman2dce5f82009-05-28 23:04:00 +0000617 if (CGF.getContext().hasSameUnqualifiedType(T1, T2)) {
Chris Lattner96196622008-07-26 22:37:01 +0000618 EmitAggLoadOfLValue(E->getInit(0));
619 return;
620 }
Eli Friedman922696f2008-05-19 17:51:16 +0000621 }
622
Chris Lattnerf81557c2008-04-04 18:42:16 +0000623 uint64_t NumArrayElements = AType->getNumElements();
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000624 QualType ElementType = CGF.getContext().getCanonicalType(E->getType());
Douglas Gregor4c678342009-01-28 21:54:33 +0000625 ElementType = CGF.getContext().getAsArrayType(ElementType)->getElementType();
Mike Stump1eb44332009-09-09 15:08:12 +0000626
John McCall0953e762009-09-24 19:53:00 +0000627 // FIXME: were we intentionally ignoring address spaces and GC attributes?
Eli Friedman1e692ac2008-06-13 23:01:12 +0000628
Chris Lattnerf81557c2008-04-04 18:42:16 +0000629 for (uint64_t i = 0; i != NumArrayElements; ++i) {
630 llvm::Value *NextVal = Builder.CreateStructGEP(DestPtr, i, ".array");
Daniel Dunbar9f553f52010-08-21 03:08:16 +0000631 LValue LV = CGF.MakeAddrLValue(NextVal, ElementType);
Chris Lattnerf81557c2008-04-04 18:42:16 +0000632 if (i < NumInitElements)
Daniel Dunbar9f553f52010-08-21 03:08:16 +0000633 EmitInitializationToLValue(E->getInit(i), LV, ElementType);
634
Chris Lattnerf81557c2008-04-04 18:42:16 +0000635 else
Daniel Dunbar9f553f52010-08-21 03:08:16 +0000636 EmitNullInitializationToLValue(LV, ElementType);
Lauro Ramos Venancio145cd892008-02-19 19:27:31 +0000637 }
Chris Lattnerf81557c2008-04-04 18:42:16 +0000638 return;
639 }
Mike Stump1eb44332009-09-09 15:08:12 +0000640
Chris Lattnerf81557c2008-04-04 18:42:16 +0000641 assert(E->getType()->isRecordType() && "Only support structs/unions here!");
Mike Stump1eb44332009-09-09 15:08:12 +0000642
Chris Lattnerf81557c2008-04-04 18:42:16 +0000643 // Do struct initialization; this code just sets each individual member
644 // to the approprate value. This makes bitfield support automatic;
645 // the disadvantage is that the generated code is more difficult for
646 // the optimizer, especially with bitfields.
647 unsigned NumInitElements = E->getNumInits();
Ted Kremenek6217b802009-07-29 21:53:49 +0000648 RecordDecl *SD = E->getType()->getAs<RecordType>()->getDecl();
Chris Lattnerf81557c2008-04-04 18:42:16 +0000649 unsigned CurInitVal = 0;
Douglas Gregor0bb76892009-01-29 16:53:55 +0000650
651 if (E->getType()->isUnionType()) {
652 // Only initialize one field of a union. The field itself is
653 // specified by the initializer list.
654 if (!E->getInitializedFieldInUnion()) {
655 // Empty union; we have nothing to do.
Mike Stump1eb44332009-09-09 15:08:12 +0000656
Douglas Gregor0bb76892009-01-29 16:53:55 +0000657#ifndef NDEBUG
658 // Make sure that it's really an empty and not a failure of
659 // semantic analysis.
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000660 for (RecordDecl::field_iterator Field = SD->field_begin(),
661 FieldEnd = SD->field_end();
Douglas Gregor0bb76892009-01-29 16:53:55 +0000662 Field != FieldEnd; ++Field)
663 assert(Field->isUnnamedBitfield() && "Only unnamed bitfields allowed");
664#endif
665 return;
666 }
667
668 // FIXME: volatility
669 FieldDecl *Field = E->getInitializedFieldInUnion();
Anders Carlssone78ccb42010-02-03 19:13:55 +0000670 LValue FieldLoc = CGF.EmitLValueForFieldInitialization(DestPtr, Field, 0);
Douglas Gregor0bb76892009-01-29 16:53:55 +0000671
672 if (NumInitElements) {
673 // Store the initializer into the field
Anders Carlsson78e83f82010-02-03 17:33:16 +0000674 EmitInitializationToLValue(E->getInit(0), FieldLoc, Field->getType());
Douglas Gregor0bb76892009-01-29 16:53:55 +0000675 } else {
676 // Default-initialize to null
677 EmitNullInitializationToLValue(FieldLoc, Field->getType());
678 }
679
680 return;
681 }
Chris Lattnerb35baae2010-03-08 21:08:07 +0000682
683 // If we're initializing the whole aggregate, just do it in place.
684 // FIXME: This is a hack around an AST bug (PR6537).
685 if (NumInitElements == 1 && E->getType() == E->getInit(0)->getType()) {
686 EmitInitializationToLValue(E->getInit(0),
Daniel Dunbar79c39282010-08-21 03:15:20 +0000687 CGF.MakeAddrLValue(DestPtr, E->getType()),
Chris Lattnerb35baae2010-03-08 21:08:07 +0000688 E->getType());
689 return;
690 }
691
Mike Stump1eb44332009-09-09 15:08:12 +0000692
Chris Lattnerf81557c2008-04-04 18:42:16 +0000693 // Here we iterate over the fields; this makes it simpler to both
694 // default-initialize fields and skip over unnamed fields.
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000695 for (RecordDecl::field_iterator Field = SD->field_begin(),
696 FieldEnd = SD->field_end();
Douglas Gregor44b43212008-12-11 16:49:14 +0000697 Field != FieldEnd; ++Field) {
698 // We're done once we hit the flexible array member
699 if (Field->getType()->isIncompleteArrayType())
700 break;
701
Douglas Gregor34e79462009-01-28 23:36:17 +0000702 if (Field->isUnnamedBitfield())
Chris Lattnerf81557c2008-04-04 18:42:16 +0000703 continue;
Douglas Gregor34e79462009-01-28 23:36:17 +0000704
Eli Friedman1e692ac2008-06-13 23:01:12 +0000705 // FIXME: volatility
Anders Carlssone78ccb42010-02-03 19:13:55 +0000706 LValue FieldLoc = CGF.EmitLValueForFieldInitialization(DestPtr, *Field, 0);
Fariborz Jahanian14674ff2009-05-27 19:54:11 +0000707 // We never generate write-barries for initialized fields.
Daniel Dunbarea619172010-08-21 03:22:38 +0000708 FieldLoc.setNonGC(true);
Chris Lattnerf81557c2008-04-04 18:42:16 +0000709 if (CurInitVal < NumInitElements) {
Chris Lattnerb35baae2010-03-08 21:08:07 +0000710 // Store the initializer into the field.
711 EmitInitializationToLValue(E->getInit(CurInitVal++), FieldLoc,
Anders Carlsson78e83f82010-02-03 17:33:16 +0000712 Field->getType());
Chris Lattnerf81557c2008-04-04 18:42:16 +0000713 } else {
714 // We're out of initalizers; default-initialize to null
Douglas Gregor44b43212008-12-11 16:49:14 +0000715 EmitNullInitializationToLValue(FieldLoc, Field->getType());
Chris Lattnerf81557c2008-04-04 18:42:16 +0000716 }
Lauro Ramos Venancio145cd892008-02-19 19:27:31 +0000717 }
Devang Patel636c3d02007-10-26 17:44:44 +0000718}
719
Chris Lattneree755f92007-08-21 04:59:27 +0000720//===----------------------------------------------------------------------===//
721// Entry Points into this File
722//===----------------------------------------------------------------------===//
723
Mike Stumpe1129a92009-05-26 18:57:45 +0000724/// EmitAggExpr - Emit the computation of the specified expression of aggregate
725/// type. The result is computed into DestPtr. Note that if DestPtr is null,
726/// the value of the aggregate expression is not needed. If VolatileDest is
727/// true, DestPtr cannot be 0.
Daniel Dunbar18aba0d2010-02-05 19:38:31 +0000728//
729// FIXME: Take Qualifiers object.
Chris Lattneree755f92007-08-21 04:59:27 +0000730void CodeGenFunction::EmitAggExpr(const Expr *E, llvm::Value *DestPtr,
Anders Carlsson14c5cbf2009-08-16 07:36:22 +0000731 bool VolatileDest, bool IgnoreResult,
Mike Stump1eb44332009-09-09 15:08:12 +0000732 bool IsInitializer,
Fariborz Jahanian08c32132009-08-31 19:33:16 +0000733 bool RequiresGCollection) {
Chris Lattneree755f92007-08-21 04:59:27 +0000734 assert(E && hasAggregateLLVMType(E->getType()) &&
735 "Invalid aggregate expression to emit");
Mike Stumpe1129a92009-05-26 18:57:45 +0000736 assert ((DestPtr != 0 || VolatileDest == false)
737 && "volatile aggregate can't be 0");
Mike Stump1eb44332009-09-09 15:08:12 +0000738
Fariborz Jahanian08c32132009-08-31 19:33:16 +0000739 AggExprEmitter(*this, DestPtr, VolatileDest, IgnoreResult, IsInitializer,
740 RequiresGCollection)
Mike Stump49d1cd52009-05-26 22:03:21 +0000741 .Visit(const_cast<Expr*>(E));
Chris Lattneree755f92007-08-21 04:59:27 +0000742}
Daniel Dunbar7482d122008-09-09 20:49:46 +0000743
Daniel Dunbar18aba0d2010-02-05 19:38:31 +0000744LValue CodeGenFunction::EmitAggExprToLValue(const Expr *E) {
745 assert(hasAggregateLLVMType(E->getType()) && "Invalid argument!");
Daniel Dunbar195337d2010-02-09 02:48:28 +0000746 llvm::Value *Temp = CreateMemTemp(E->getType());
Daniel Dunbar79c39282010-08-21 03:15:20 +0000747 LValue LV = MakeAddrLValue(Temp, E->getType());
748 EmitAggExpr(E, Temp, LV.isVolatileQualified());
749 return LV;
Daniel Dunbar18aba0d2010-02-05 19:38:31 +0000750}
751
Daniel Dunbar7482d122008-09-09 20:49:46 +0000752void CodeGenFunction::EmitAggregateCopy(llvm::Value *DestPtr,
Mike Stump27fe2e62009-05-23 22:29:41 +0000753 llvm::Value *SrcPtr, QualType Ty,
754 bool isVolatile) {
Daniel Dunbar7482d122008-09-09 20:49:46 +0000755 assert(!Ty->isAnyComplexType() && "Shouldn't happen for complex");
Mike Stump1eb44332009-09-09 15:08:12 +0000756
Anders Carlsson0d7c5832010-05-03 01:20:20 +0000757 if (getContext().getLangOptions().CPlusPlus) {
758 if (const RecordType *RT = Ty->getAs<RecordType>()) {
Douglas Gregore9979482010-05-20 15:39:01 +0000759 CXXRecordDecl *Record = cast<CXXRecordDecl>(RT->getDecl());
760 assert((Record->hasTrivialCopyConstructor() ||
Fariborz Jahanian1d49f212010-05-20 16:46:55 +0000761 Record->hasTrivialCopyAssignment()) &&
Douglas Gregore9979482010-05-20 15:39:01 +0000762 "Trying to aggregate-copy a type without a trivial copy "
763 "constructor or assignment operator");
Douglas Gregor419aa962010-05-20 15:48:29 +0000764 // Ignore empty classes in C++.
Douglas Gregore9979482010-05-20 15:39:01 +0000765 if (Record->isEmpty())
Anders Carlsson0d7c5832010-05-03 01:20:20 +0000766 return;
767 }
768 }
769
Chris Lattner83c96292009-02-28 18:31:01 +0000770 // Aggregate assignment turns into llvm.memcpy. This is almost valid per
Chris Lattnerca4fc2c2009-02-28 18:18:58 +0000771 // C99 6.5.16.1p3, which states "If the value being stored in an object is
772 // read from another object that overlaps in anyway the storage of the first
773 // object, then the overlap shall be exact and the two objects shall have
774 // qualified or unqualified versions of a compatible type."
775 //
Chris Lattner83c96292009-02-28 18:31:01 +0000776 // memcpy is not defined if the source and destination pointers are exactly
Chris Lattnerca4fc2c2009-02-28 18:18:58 +0000777 // equal, but other compilers do this optimization, and almost every memcpy
778 // implementation handles this case safely. If there is a libc that does not
779 // safely handle this, we can add a target hook.
Mike Stump1eb44332009-09-09 15:08:12 +0000780
Daniel Dunbar7482d122008-09-09 20:49:46 +0000781 // Get size and alignment info for this aggregate.
782 std::pair<uint64_t, unsigned> TypeInfo = getContext().getTypeInfo(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +0000783
Daniel Dunbar7482d122008-09-09 20:49:46 +0000784 // FIXME: Handle variable sized types.
Mike Stump1eb44332009-09-09 15:08:12 +0000785
Mike Stumpfde64202009-05-23 04:13:59 +0000786 // FIXME: If we have a volatile struct, the optimizer can remove what might
787 // appear to be `extra' memory ops:
788 //
789 // volatile struct { int i; } a, b;
790 //
791 // int main() {
792 // a = b;
793 // a = b;
794 // }
795 //
Mon P Wang3ecd7852010-04-04 03:10:52 +0000796 // we need to use a different call here. We use isVolatile to indicate when
Mike Stump49d1cd52009-05-26 22:03:21 +0000797 // either the source or the destination is volatile.
Mon P Wang3ecd7852010-04-04 03:10:52 +0000798
799 const llvm::PointerType *DPT = cast<llvm::PointerType>(DestPtr->getType());
Chris Lattner098432c2010-07-08 00:07:45 +0000800 const llvm::Type *DBP =
801 llvm::Type::getInt8PtrTy(VMContext, DPT->getAddressSpace());
802 DestPtr = Builder.CreateBitCast(DestPtr, DBP, "tmp");
Mon P Wang3ecd7852010-04-04 03:10:52 +0000803
804 const llvm::PointerType *SPT = cast<llvm::PointerType>(SrcPtr->getType());
Chris Lattner098432c2010-07-08 00:07:45 +0000805 const llvm::Type *SBP =
806 llvm::Type::getInt8PtrTy(VMContext, SPT->getAddressSpace());
807 SrcPtr = Builder.CreateBitCast(SrcPtr, SBP, "tmp");
Mon P Wang3ecd7852010-04-04 03:10:52 +0000808
Fariborz Jahanian55bcace2010-06-15 22:44:06 +0000809 if (const RecordType *RecordTy = Ty->getAs<RecordType>()) {
810 RecordDecl *Record = RecordTy->getDecl();
811 if (Record->hasObjectMember()) {
812 unsigned long size = TypeInfo.first/8;
813 const llvm::Type *SizeTy = ConvertType(getContext().getSizeType());
814 llvm::Value *SizeVal = llvm::ConstantInt::get(SizeTy, size);
815 CGM.getObjCRuntime().EmitGCMemmoveCollectable(*this, DestPtr, SrcPtr,
816 SizeVal);
817 return;
818 }
819 } else if (getContext().getAsArrayType(Ty)) {
820 QualType BaseType = getContext().getBaseElementType(Ty);
821 if (const RecordType *RecordTy = BaseType->getAs<RecordType>()) {
822 if (RecordTy->getDecl()->hasObjectMember()) {
823 unsigned long size = TypeInfo.first/8;
824 const llvm::Type *SizeTy = ConvertType(getContext().getSizeType());
825 llvm::Value *SizeVal = llvm::ConstantInt::get(SizeTy, size);
826 CGM.getObjCRuntime().EmitGCMemmoveCollectable(*this, DestPtr, SrcPtr,
827 SizeVal);
828 return;
829 }
830 }
831 }
832
Mon P Wang3ecd7852010-04-04 03:10:52 +0000833 Builder.CreateCall5(CGM.getMemCpyFn(DestPtr->getType(), SrcPtr->getType(),
Chris Lattner77b89b82010-06-27 07:15:29 +0000834 IntPtrTy),
Daniel Dunbar7482d122008-09-09 20:49:46 +0000835 DestPtr, SrcPtr,
836 // TypeInfo.first describes size in bits.
Chris Lattner77b89b82010-06-27 07:15:29 +0000837 llvm::ConstantInt::get(IntPtrTy, TypeInfo.first/8),
Chris Lattner098432c2010-07-08 00:07:45 +0000838 Builder.getInt32(TypeInfo.second/8),
839 Builder.getInt1(isVolatile));
Daniel Dunbar7482d122008-09-09 20:49:46 +0000840}