blob: 0b3a617be159e6b79113ba2669041bab00cd057d [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.
John McCalld1a5f132010-09-16 03:13:23 +000042 if (Dest.requiresGCollection()) 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);
Mike Stump1eb44332009-09-09 15:08:12 +0000118
Chris Lattner9c033562007-08-21 04:25:47 +0000119 void VisitConditionalOperator(const ConditionalOperator *CO);
Anders Carlssona294ca82009-07-08 18:33:14 +0000120 void VisitChooseExpr(const ChooseExpr *CE);
Devang Patel636c3d02007-10-26 17:44:44 +0000121 void VisitInitListExpr(InitListExpr *E);
Anders Carlsson30311fa2009-12-16 06:57:54 +0000122 void VisitImplicitValueInitExpr(ImplicitValueInitExpr *E);
Chris Lattner04421082008-04-08 04:40:51 +0000123 void VisitCXXDefaultArgExpr(CXXDefaultArgExpr *DAE) {
124 Visit(DAE->getExpr());
125 }
Anders Carlssonb58d0172009-05-30 23:23:33 +0000126 void VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E);
Anders Carlsson31ccf372009-05-03 17:47:16 +0000127 void VisitCXXConstructExpr(const CXXConstructExpr *E);
John McCall4765fa02010-12-06 08:20:24 +0000128 void VisitExprWithCleanups(ExprWithCleanups *E);
Douglas Gregored8abf12010-07-08 06:14:04 +0000129 void VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *E);
Mike Stump2710c412009-11-18 00:40:12 +0000130 void VisitCXXTypeidExpr(CXXTypeidExpr *E) { EmitAggLoadOfLValue(E); }
Anders Carlsson7f6ad152009-05-19 04:48:36 +0000131
John McCalle996ffd2011-02-16 08:02:54 +0000132 void VisitOpaqueValueExpr(OpaqueValueExpr *E);
133
Eli Friedmanb1851242008-05-27 15:51:49 +0000134 void VisitVAArgExpr(VAArgExpr *E);
Chris Lattnerf81557c2008-04-04 18:42:16 +0000135
Anders Carlsson78e83f82010-02-03 17:33:16 +0000136 void EmitInitializationToLValue(Expr *E, LValue Address, QualType T);
Chris Lattnerf81557c2008-04-04 18:42:16 +0000137 void EmitNullInitializationToLValue(LValue Address, QualType T);
Chris Lattner9c033562007-08-21 04:25:47 +0000138 // case Expr::ChooseExprClass:
Mike Stump39406b12009-12-09 19:24:08 +0000139 void VisitCXXThrowExpr(const CXXThrowExpr *E) { CGF.EmitCXXThrowExpr(E); }
Chris Lattner9c033562007-08-21 04:25:47 +0000140};
141} // end anonymous namespace.
142
Chris Lattneree755f92007-08-21 04:59:27 +0000143//===----------------------------------------------------------------------===//
144// Utilities
145//===----------------------------------------------------------------------===//
Chris Lattner9c033562007-08-21 04:25:47 +0000146
Chris Lattner883f6a72007-08-11 00:04:45 +0000147/// EmitAggLoadOfLValue - Given an expression with aggregate type that
148/// represents a value lvalue, this method emits the address of the lvalue,
149/// then loads the result into DestPtr.
Chris Lattner9c033562007-08-21 04:25:47 +0000150void AggExprEmitter::EmitAggLoadOfLValue(const Expr *E) {
151 LValue LV = CGF.EmitLValue(E);
Mike Stump4ac20dd2009-05-23 20:28:01 +0000152 EmitFinalDestCopy(E, LV);
153}
154
John McCallfa037bd2010-05-22 22:13:32 +0000155/// \brief True if the given aggregate type requires special GC API calls.
156bool AggExprEmitter::TypeRequiresGCollection(QualType T) {
157 // Only record types have members that might require garbage collection.
158 const RecordType *RecordTy = T->getAs<RecordType>();
159 if (!RecordTy) return false;
160
161 // Don't mess with non-trivial C++ types.
162 RecordDecl *Record = RecordTy->getDecl();
163 if (isa<CXXRecordDecl>(Record) &&
164 (!cast<CXXRecordDecl>(Record)->hasTrivialCopyConstructor() ||
165 !cast<CXXRecordDecl>(Record)->hasTrivialDestructor()))
166 return false;
167
168 // Check whether the type has an object member.
169 return Record->hasObjectMember();
170}
171
172/// \brief Perform the final move to DestPtr if RequiresGCollection is set.
173///
174/// The idea is that you do something like this:
175/// RValue Result = EmitSomething(..., getReturnValueSlot());
176/// EmitGCMove(E, Result);
177/// If GC doesn't interfere, this will cause the result to be emitted
178/// directly into the return value slot. If GC does interfere, a final
179/// move will be performed.
180void AggExprEmitter::EmitGCMove(const Expr *E, RValue Src) {
John McCalld1a5f132010-09-16 03:13:23 +0000181 if (Dest.requiresGCollection()) {
Fariborz Jahanian55bcace2010-06-15 22:44:06 +0000182 std::pair<uint64_t, unsigned> TypeInfo =
183 CGF.getContext().getTypeInfo(E->getType());
184 unsigned long size = TypeInfo.first/8;
185 const llvm::Type *SizeTy = CGF.ConvertType(CGF.getContext().getSizeType());
186 llvm::Value *SizeVal = llvm::ConstantInt::get(SizeTy, size);
John McCall558d2ab2010-09-15 10:14:12 +0000187 CGF.CGM.getObjCRuntime().EmitGCMemmoveCollectable(CGF, Dest.getAddr(),
John McCallfa037bd2010-05-22 22:13:32 +0000188 Src.getAggregateAddr(),
Fariborz Jahanian55bcace2010-06-15 22:44:06 +0000189 SizeVal);
190 }
John McCallfa037bd2010-05-22 22:13:32 +0000191}
192
Mike Stump4ac20dd2009-05-23 20:28:01 +0000193/// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
Mike Stump49d1cd52009-05-26 22:03:21 +0000194void AggExprEmitter::EmitFinalDestCopy(const Expr *E, RValue Src, bool Ignore) {
Mike Stump4ac20dd2009-05-23 20:28:01 +0000195 assert(Src.isAggregate() && "value must be aggregate value!");
196
John McCall558d2ab2010-09-15 10:14:12 +0000197 // If Dest is ignored, then we're evaluating an aggregate expression
John McCalla8f28da2010-08-25 02:50:31 +0000198 // in a context (like an expression statement) that doesn't care
199 // about the result. C says that an lvalue-to-rvalue conversion is
200 // performed in these cases; C++ says that it is not. In either
201 // case, we don't actually need to do anything unless the value is
202 // volatile.
John McCall558d2ab2010-09-15 10:14:12 +0000203 if (Dest.isIgnored()) {
John McCalla8f28da2010-08-25 02:50:31 +0000204 if (!Src.isVolatileQualified() ||
205 CGF.CGM.getLangOptions().CPlusPlus ||
206 (IgnoreResult && Ignore))
Mike Stump9ccb1032009-05-23 22:01:27 +0000207 return;
Fariborz Jahanian8a970052010-10-22 22:05:03 +0000208
Mike Stump49d1cd52009-05-26 22:03:21 +0000209 // If the source is volatile, we must read from it; to do that, we need
210 // some place to put it.
John McCall558d2ab2010-09-15 10:14:12 +0000211 Dest = CGF.CreateAggTemp(E->getType(), "agg.tmp");
Mike Stump9ccb1032009-05-23 22:01:27 +0000212 }
Chris Lattner883f6a72007-08-11 00:04:45 +0000213
John McCalld1a5f132010-09-16 03:13:23 +0000214 if (Dest.requiresGCollection()) {
Fariborz Jahanian55bcace2010-06-15 22:44:06 +0000215 std::pair<uint64_t, unsigned> TypeInfo =
216 CGF.getContext().getTypeInfo(E->getType());
217 unsigned long size = TypeInfo.first/8;
218 const llvm::Type *SizeTy = CGF.ConvertType(CGF.getContext().getSizeType());
219 llvm::Value *SizeVal = llvm::ConstantInt::get(SizeTy, size);
Fariborz Jahanian08c32132009-08-31 19:33:16 +0000220 CGF.CGM.getObjCRuntime().EmitGCMemmoveCollectable(CGF,
John McCall558d2ab2010-09-15 10:14:12 +0000221 Dest.getAddr(),
222 Src.getAggregateAddr(),
223 SizeVal);
Fariborz Jahanian08c32132009-08-31 19:33:16 +0000224 return;
225 }
Mike Stump4ac20dd2009-05-23 20:28:01 +0000226 // If the result of the assignment is used, copy the LHS there also.
227 // FIXME: Pass VolatileDest as well. I think we also need to merge volatile
228 // from the source as well, as we can't eliminate it if either operand
229 // is volatile, unless copy has volatile for both source and destination..
John McCall558d2ab2010-09-15 10:14:12 +0000230 CGF.EmitAggregateCopy(Dest.getAddr(), Src.getAggregateAddr(), E->getType(),
231 Dest.isVolatile()|Src.isVolatileQualified());
Mike Stump4ac20dd2009-05-23 20:28:01 +0000232}
233
234/// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
Mike Stump49d1cd52009-05-26 22:03:21 +0000235void AggExprEmitter::EmitFinalDestCopy(const Expr *E, LValue Src, bool Ignore) {
Mike Stump4ac20dd2009-05-23 20:28:01 +0000236 assert(Src.isSimple() && "Can't have aggregate bitfield, vector, etc");
237
238 EmitFinalDestCopy(E, RValue::getAggregate(Src.getAddress(),
Mike Stump49d1cd52009-05-26 22:03:21 +0000239 Src.isVolatileQualified()),
240 Ignore);
Chris Lattner883f6a72007-08-11 00:04:45 +0000241}
242
Chris Lattneree755f92007-08-21 04:59:27 +0000243//===----------------------------------------------------------------------===//
244// Visitor Methods
245//===----------------------------------------------------------------------===//
246
John McCalle996ffd2011-02-16 08:02:54 +0000247void AggExprEmitter::VisitOpaqueValueExpr(OpaqueValueExpr *e) {
248 EmitFinalDestCopy(e, CGF.EmitOpaqueValueLValue(e));
249}
250
Anders Carlsson4d8673b2009-08-07 23:22:37 +0000251void AggExprEmitter::VisitCastExpr(CastExpr *E) {
John McCall558d2ab2010-09-15 10:14:12 +0000252 if (Dest.isIgnored() && E->getCastKind() != CK_Dynamic) {
Douglas Gregor4ce46c22010-03-07 23:24:59 +0000253 Visit(E->getSubExpr());
254 return;
255 }
256
Anders Carlsson30168422009-09-29 01:23:39 +0000257 switch (E->getCastKind()) {
John McCall2de56d12010-08-25 11:45:40 +0000258 case CK_Dynamic: {
Douglas Gregor69cfeb12010-05-14 21:31:02 +0000259 assert(isa<CXXDynamicCastExpr>(E) && "CK_Dynamic without a dynamic_cast?");
260 LValue LV = CGF.EmitCheckedLValue(E->getSubExpr());
261 // FIXME: Do we also need to handle property references here?
262 if (LV.isSimple())
263 CGF.EmitDynamicCast(LV.getAddress(), cast<CXXDynamicCastExpr>(E));
264 else
265 CGF.CGM.ErrorUnsupported(E, "non-simple lvalue dynamic_cast");
266
John McCall558d2ab2010-09-15 10:14:12 +0000267 if (!Dest.isIgnored())
268 CGF.CGM.ErrorUnsupported(E, "lvalue dynamic_cast with a destination");
Douglas Gregor69cfeb12010-05-14 21:31:02 +0000269 break;
270 }
271
John McCall2de56d12010-08-25 11:45:40 +0000272 case CK_ToUnion: {
Anders Carlsson4d8673b2009-08-07 23:22:37 +0000273 // GCC union extension
Daniel Dunbar79c39282010-08-21 03:15:20 +0000274 QualType Ty = E->getSubExpr()->getType();
275 QualType PtrTy = CGF.getContext().getPointerType(Ty);
John McCall558d2ab2010-09-15 10:14:12 +0000276 llvm::Value *CastPtr = Builder.CreateBitCast(Dest.getAddr(),
Eli Friedman34ebf4d2009-06-03 20:45:06 +0000277 CGF.ConvertType(PtrTy));
Daniel Dunbar79c39282010-08-21 03:15:20 +0000278 EmitInitializationToLValue(E->getSubExpr(), CGF.MakeAddrLValue(CastPtr, Ty),
279 Ty);
Anders Carlsson30168422009-09-29 01:23:39 +0000280 break;
Nuno Lopes7e916272009-01-15 20:14:33 +0000281 }
Mike Stump1eb44332009-09-09 15:08:12 +0000282
John McCall2de56d12010-08-25 11:45:40 +0000283 case CK_DerivedToBase:
284 case CK_BaseToDerived:
285 case CK_UncheckedDerivedToBase: {
Douglas Gregor2d6b0e92010-05-22 05:17:18 +0000286 assert(0 && "cannot perform hierarchy conversion in EmitAggExpr: "
287 "should have been unpacked before we got here");
288 break;
289 }
290
John McCallf6a16482010-12-04 03:47:34 +0000291 case CK_GetObjCProperty: {
292 LValue LV = CGF.EmitLValue(E->getSubExpr());
293 assert(LV.isPropertyRef());
294 RValue RV = CGF.EmitLoadOfPropertyRefLValue(LV, getReturnValueSlot());
295 EmitGCMove(E, RV);
296 break;
297 }
298
299 case CK_LValueToRValue: // hope for downstream optimization
John McCall2de56d12010-08-25 11:45:40 +0000300 case CK_NoOp:
301 case CK_UserDefinedConversion:
302 case CK_ConstructorConversion:
Anders Carlsson30168422009-09-29 01:23:39 +0000303 assert(CGF.getContext().hasSameUnqualifiedType(E->getSubExpr()->getType(),
304 E->getType()) &&
305 "Implicit cast types must be compatible");
306 Visit(E->getSubExpr());
307 break;
John McCall0ae287a2010-12-01 04:43:34 +0000308
John McCall2de56d12010-08-25 11:45:40 +0000309 case CK_LValueBitCast:
John McCall0ae287a2010-12-01 04:43:34 +0000310 llvm_unreachable("should not be emitting lvalue bitcast as rvalue");
Douglas Gregore39a3892010-07-13 23:17:26 +0000311 break;
John McCall0ae287a2010-12-01 04:43:34 +0000312
313 case CK_Dependent:
314 case CK_BitCast:
315 case CK_ArrayToPointerDecay:
316 case CK_FunctionToPointerDecay:
317 case CK_NullToPointer:
318 case CK_NullToMemberPointer:
319 case CK_BaseToDerivedMemberPointer:
320 case CK_DerivedToBaseMemberPointer:
321 case CK_MemberPointerToBoolean:
322 case CK_IntegralToPointer:
323 case CK_PointerToIntegral:
324 case CK_PointerToBoolean:
325 case CK_ToVoid:
326 case CK_VectorSplat:
327 case CK_IntegralCast:
328 case CK_IntegralToBoolean:
329 case CK_IntegralToFloating:
330 case CK_FloatingToIntegral:
331 case CK_FloatingToBoolean:
332 case CK_FloatingCast:
333 case CK_AnyPointerToObjCPointerCast:
334 case CK_AnyPointerToBlockPointerCast:
335 case CK_ObjCObjectLValueCast:
336 case CK_FloatingRealToComplex:
337 case CK_FloatingComplexToReal:
338 case CK_FloatingComplexToBoolean:
339 case CK_FloatingComplexCast:
340 case CK_FloatingComplexToIntegralComplex:
341 case CK_IntegralRealToComplex:
342 case CK_IntegralComplexToReal:
343 case CK_IntegralComplexToBoolean:
344 case CK_IntegralComplexCast:
345 case CK_IntegralComplexToFloatingComplex:
346 llvm_unreachable("cast kind invalid for aggregate types");
Anders Carlsson30168422009-09-29 01:23:39 +0000347 }
Anders Carlssone4707ff2008-01-14 06:28:57 +0000348}
349
Chris Lattner96196622008-07-26 22:37:01 +0000350void AggExprEmitter::VisitCallExpr(const CallExpr *E) {
Anders Carlssone70e8f72009-05-27 16:45:02 +0000351 if (E->getCallReturnType()->isReferenceType()) {
352 EmitAggLoadOfLValue(E);
353 return;
354 }
Mike Stump1eb44332009-09-09 15:08:12 +0000355
John McCallfa037bd2010-05-22 22:13:32 +0000356 RValue RV = CGF.EmitCallExpr(E, getReturnValueSlot());
357 EmitGCMove(E, RV);
Anders Carlsson148fe672007-10-31 22:04:46 +0000358}
Chris Lattner96196622008-07-26 22:37:01 +0000359
360void AggExprEmitter::VisitObjCMessageExpr(ObjCMessageExpr *E) {
John McCallfa037bd2010-05-22 22:13:32 +0000361 RValue RV = CGF.EmitObjCMessageExpr(E, getReturnValueSlot());
362 EmitGCMove(E, RV);
Chris Lattner8fdf3282008-06-24 17:04:18 +0000363}
Anders Carlsson148fe672007-10-31 22:04:46 +0000364
Daniel Dunbar9c3fc702008-08-27 06:57:25 +0000365void AggExprEmitter::VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *E) {
John McCallf6a16482010-12-04 03:47:34 +0000366 llvm_unreachable("direct property access not surrounded by "
367 "lvalue-to-rvalue cast");
Daniel Dunbar9c3fc702008-08-27 06:57:25 +0000368}
369
Chris Lattner96196622008-07-26 22:37:01 +0000370void AggExprEmitter::VisitBinComma(const BinaryOperator *E) {
John McCall2a416372010-12-05 02:00:02 +0000371 CGF.EmitIgnoredExpr(E->getLHS());
John McCall558d2ab2010-09-15 10:14:12 +0000372 Visit(E->getRHS());
Eli Friedman07fa52a2008-05-20 07:56:31 +0000373}
374
Chris Lattnerb2d963f2007-08-31 22:54:14 +0000375void AggExprEmitter::VisitStmtExpr(const StmtExpr *E) {
John McCall150b4622011-01-26 04:00:11 +0000376 CodeGenFunction::StmtExprEvaluation eval(CGF);
John McCall558d2ab2010-09-15 10:14:12 +0000377 CGF.EmitCompoundStmt(*E->getSubStmt(), true, Dest);
Chris Lattnerb2d963f2007-08-31 22:54:14 +0000378}
379
Chris Lattner9c033562007-08-21 04:25:47 +0000380void AggExprEmitter::VisitBinaryOperator(const BinaryOperator *E) {
John McCall2de56d12010-08-25 11:45:40 +0000381 if (E->getOpcode() == BO_PtrMemD || E->getOpcode() == BO_PtrMemI)
Fariborz Jahanian8bfd31f2009-10-22 22:57:31 +0000382 VisitPointerToDataMemberBinaryOperator(E);
383 else
384 CGF.ErrorUnsupported(E, "aggregate binary expression");
385}
386
387void AggExprEmitter::VisitPointerToDataMemberBinaryOperator(
388 const BinaryOperator *E) {
389 LValue LV = CGF.EmitPointerToDataMemberBinaryExpr(E);
390 EmitFinalDestCopy(E, LV);
Chris Lattneree755f92007-08-21 04:59:27 +0000391}
392
Chris Lattner03d6fb92007-08-21 04:43:17 +0000393void AggExprEmitter::VisitBinAssign(const BinaryOperator *E) {
Eli Friedmanff6e2b72008-02-11 01:09:17 +0000394 // For an assignment to work, the value on the right has
395 // to be compatible with the value on the left.
Eli Friedman2dce5f82009-05-28 23:04:00 +0000396 assert(CGF.getContext().hasSameUnqualifiedType(E->getLHS()->getType(),
397 E->getRHS()->getType())
Eli Friedmanff6e2b72008-02-11 01:09:17 +0000398 && "Invalid assignment");
John McCallcd940a12010-12-06 06:10:02 +0000399
400 // FIXME: __block variables need the RHS evaluated first!
Chris Lattner9c033562007-08-21 04:25:47 +0000401 LValue LHS = CGF.EmitLValue(E->getLHS());
Chris Lattner883f6a72007-08-11 00:04:45 +0000402
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000403 // We have to special case property setters, otherwise we must have
404 // a simple lvalue (no aggregates inside vectors, bitfields).
405 if (LHS.isPropertyRef()) {
John McCall558d2ab2010-09-15 10:14:12 +0000406 AggValueSlot Slot = EnsureSlot(E->getRHS()->getType());
407 CGF.EmitAggExpr(E->getRHS(), Slot);
John McCall119a1c62010-12-04 02:32:38 +0000408 CGF.EmitStoreThroughPropertyRefLValue(Slot.asRValue(), LHS);
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000409 } else {
Fariborz Jahanian474e2fe2010-09-16 00:20:07 +0000410 bool GCollection = false;
John McCallfa037bd2010-05-22 22:13:32 +0000411 if (CGF.getContext().getLangOptions().getGCMode())
Fariborz Jahanian474e2fe2010-09-16 00:20:07 +0000412 GCollection = TypeRequiresGCollection(E->getLHS()->getType());
John McCallfa037bd2010-05-22 22:13:32 +0000413
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000414 // Codegen the RHS so that it stores directly into the LHS.
Fariborz Jahanian474e2fe2010-09-16 00:20:07 +0000415 AggValueSlot LHSSlot = AggValueSlot::forLValue(LHS, true,
416 GCollection);
417 CGF.EmitAggExpr(E->getRHS(), LHSSlot, false);
Mike Stump49d1cd52009-05-26 22:03:21 +0000418 EmitFinalDestCopy(E, LHS, true);
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000419 }
Chris Lattner883f6a72007-08-11 00:04:45 +0000420}
421
Chris Lattner9c033562007-08-21 04:25:47 +0000422void AggExprEmitter::VisitConditionalOperator(const ConditionalOperator *E) {
Eli Friedman8e274bd2009-12-25 06:17:05 +0000423 if (!E->getLHS()) {
424 CGF.ErrorUnsupported(E, "conditional operator with missing LHS");
425 return;
426 }
427
Daniel Dunbar9615ecb2008-11-13 01:38:36 +0000428 llvm::BasicBlock *LHSBlock = CGF.createBasicBlock("cond.true");
429 llvm::BasicBlock *RHSBlock = CGF.createBasicBlock("cond.false");
430 llvm::BasicBlock *ContBlock = CGF.createBasicBlock("cond.end");
Mike Stump1eb44332009-09-09 15:08:12 +0000431
John McCall150b4622011-01-26 04:00:11 +0000432 CodeGenFunction::ConditionalEvaluation eval(CGF);
Eli Friedman8e274bd2009-12-25 06:17:05 +0000433 CGF.EmitBranchOnBoolExpr(E->getCond(), LHSBlock, RHSBlock);
Mike Stump1eb44332009-09-09 15:08:12 +0000434
John McCall74fb0ed2010-11-17 00:07:33 +0000435 // Save whether the destination's lifetime is externally managed.
436 bool DestLifetimeManaged = Dest.isLifetimeExternallyManaged();
Chris Lattner883f6a72007-08-11 00:04:45 +0000437
John McCall150b4622011-01-26 04:00:11 +0000438 eval.begin(CGF);
439 CGF.EmitBlock(LHSBlock);
Chris Lattnerc748f272007-08-21 05:02:10 +0000440 Visit(E->getLHS());
John McCall150b4622011-01-26 04:00:11 +0000441 eval.end(CGF);
Mike Stump1eb44332009-09-09 15:08:12 +0000442
John McCall150b4622011-01-26 04:00:11 +0000443 assert(CGF.HaveInsertPoint() && "expression evaluation ended with no IP!");
444 CGF.Builder.CreateBr(ContBlock);
Mike Stump1eb44332009-09-09 15:08:12 +0000445
John McCall74fb0ed2010-11-17 00:07:33 +0000446 // If the result of an agg expression is unused, then the emission
447 // of the LHS might need to create a destination slot. That's fine
448 // with us, and we can safely emit the RHS into the same slot, but
449 // we shouldn't claim that its lifetime is externally managed.
450 Dest.setLifetimeExternallyManaged(DestLifetimeManaged);
451
John McCall150b4622011-01-26 04:00:11 +0000452 eval.begin(CGF);
453 CGF.EmitBlock(RHSBlock);
Chris Lattnerc748f272007-08-21 05:02:10 +0000454 Visit(E->getRHS());
John McCall150b4622011-01-26 04:00:11 +0000455 eval.end(CGF);
Mike Stump1eb44332009-09-09 15:08:12 +0000456
Chris Lattner9c033562007-08-21 04:25:47 +0000457 CGF.EmitBlock(ContBlock);
Chris Lattner883f6a72007-08-11 00:04:45 +0000458}
Chris Lattneree755f92007-08-21 04:59:27 +0000459
Anders Carlssona294ca82009-07-08 18:33:14 +0000460void AggExprEmitter::VisitChooseExpr(const ChooseExpr *CE) {
461 Visit(CE->getChosenSubExpr(CGF.getContext()));
462}
463
Eli Friedmanb1851242008-05-27 15:51:49 +0000464void AggExprEmitter::VisitVAArgExpr(VAArgExpr *VE) {
Daniel Dunbar07855702009-02-11 22:25:55 +0000465 llvm::Value *ArgValue = CGF.EmitVAListRef(VE->getSubExpr());
Anders Carlssonddf7cac2008-11-04 05:30:00 +0000466 llvm::Value *ArgPtr = CGF.EmitVAArg(ArgValue, VE->getType());
467
Sebastian Redl0262f022009-01-09 21:09:38 +0000468 if (!ArgPtr) {
Anders Carlssonddf7cac2008-11-04 05:30:00 +0000469 CGF.ErrorUnsupported(VE, "aggregate va_arg expression");
Sebastian Redl0262f022009-01-09 21:09:38 +0000470 return;
471 }
472
Daniel Dunbar79c39282010-08-21 03:15:20 +0000473 EmitFinalDestCopy(VE, CGF.MakeAddrLValue(ArgPtr, VE->getType()));
Eli Friedmanb1851242008-05-27 15:51:49 +0000474}
475
Anders Carlssonb58d0172009-05-30 23:23:33 +0000476void AggExprEmitter::VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E) {
John McCall558d2ab2010-09-15 10:14:12 +0000477 // Ensure that we have a slot, but if we already do, remember
478 // whether its lifetime was externally managed.
479 bool WasManaged = Dest.isLifetimeExternallyManaged();
480 Dest = EnsureSlot(E->getType());
481 Dest.setLifetimeExternallyManaged();
Mike Stump1eb44332009-09-09 15:08:12 +0000482
John McCall558d2ab2010-09-15 10:14:12 +0000483 Visit(E->getSubExpr());
Anders Carlssonb58d0172009-05-30 23:23:33 +0000484
John McCall558d2ab2010-09-15 10:14:12 +0000485 // Set up the temporary's destructor if its lifetime wasn't already
486 // being managed.
487 if (!WasManaged)
488 CGF.EmitCXXTemporary(E->getTemporary(), Dest.getAddr());
Anders Carlssonb58d0172009-05-30 23:23:33 +0000489}
490
Anders Carlssonb14095a2009-04-17 00:06:03 +0000491void
Anders Carlsson31ccf372009-05-03 17:47:16 +0000492AggExprEmitter::VisitCXXConstructExpr(const CXXConstructExpr *E) {
John McCall558d2ab2010-09-15 10:14:12 +0000493 AggValueSlot Slot = EnsureSlot(E->getType());
494 CGF.EmitCXXConstructExpr(E, Slot);
Anders Carlsson7f6ad152009-05-19 04:48:36 +0000495}
496
John McCall4765fa02010-12-06 08:20:24 +0000497void AggExprEmitter::VisitExprWithCleanups(ExprWithCleanups *E) {
498 CGF.EmitExprWithCleanups(E, Dest);
Anders Carlssonb14095a2009-04-17 00:06:03 +0000499}
500
Douglas Gregored8abf12010-07-08 06:14:04 +0000501void AggExprEmitter::VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *E) {
John McCall558d2ab2010-09-15 10:14:12 +0000502 QualType T = E->getType();
503 AggValueSlot Slot = EnsureSlot(T);
504 EmitNullInitializationToLValue(CGF.MakeAddrLValue(Slot.getAddr(), T), T);
Anders Carlsson30311fa2009-12-16 06:57:54 +0000505}
506
507void AggExprEmitter::VisitImplicitValueInitExpr(ImplicitValueInitExpr *E) {
John McCall558d2ab2010-09-15 10:14:12 +0000508 QualType T = E->getType();
509 AggValueSlot Slot = EnsureSlot(T);
510 EmitNullInitializationToLValue(CGF.MakeAddrLValue(Slot.getAddr(), T), T);
Nuno Lopes329763b2009-10-18 15:18:11 +0000511}
512
Chris Lattner1b726772010-12-02 07:07:26 +0000513/// isSimpleZero - If emitting this value will obviously just cause a store of
514/// zero to memory, return true. This can return false if uncertain, so it just
515/// handles simple cases.
516static bool isSimpleZero(const Expr *E, CodeGenFunction &CGF) {
517 // (0)
518 if (const ParenExpr *PE = dyn_cast<ParenExpr>(E))
519 return isSimpleZero(PE->getSubExpr(), CGF);
520 // 0
521 if (const IntegerLiteral *IL = dyn_cast<IntegerLiteral>(E))
522 return IL->getValue() == 0;
523 // +0.0
524 if (const FloatingLiteral *FL = dyn_cast<FloatingLiteral>(E))
525 return FL->getValue().isPosZero();
526 // int()
527 if ((isa<ImplicitValueInitExpr>(E) || isa<CXXScalarValueInitExpr>(E)) &&
528 CGF.getTypes().isZeroInitializable(E->getType()))
529 return true;
530 // (int*)0 - Null pointer expressions.
531 if (const CastExpr *ICE = dyn_cast<CastExpr>(E))
532 return ICE->getCastKind() == CK_NullToPointer;
533 // '\0'
534 if (const CharacterLiteral *CL = dyn_cast<CharacterLiteral>(E))
535 return CL->getValue() == 0;
536
537 // Otherwise, hard case: conservatively return false.
538 return false;
539}
540
541
Anders Carlsson78e83f82010-02-03 17:33:16 +0000542void
543AggExprEmitter::EmitInitializationToLValue(Expr* E, LValue LV, QualType T) {
Mike Stump7f79f9b2009-05-29 15:46:01 +0000544 // FIXME: Ignore result?
Chris Lattnerf81557c2008-04-04 18:42:16 +0000545 // FIXME: Are initializers affected by volatile?
Chris Lattner1b726772010-12-02 07:07:26 +0000546 if (Dest.isZeroed() && isSimpleZero(E, CGF)) {
547 // Storing "i32 0" to a zero'd memory location is a noop.
548 } else if (isa<ImplicitValueInitExpr>(E)) {
Anders Carlsson78e83f82010-02-03 17:33:16 +0000549 EmitNullInitializationToLValue(LV, T);
Anders Carlssone78ccb42010-02-03 19:13:55 +0000550 } else if (T->isReferenceType()) {
Anders Carlsson32f36ba2010-06-26 16:35:32 +0000551 RValue RV = CGF.EmitReferenceBindingToExpr(E, /*InitializedDecl=*/0);
Anders Carlssone78ccb42010-02-03 19:13:55 +0000552 CGF.EmitStoreThroughLValue(RV, LV, T);
Anders Carlsson78e83f82010-02-03 17:33:16 +0000553 } else if (T->isAnyComplexType()) {
Douglas Gregor3498bdb2009-01-29 17:44:32 +0000554 CGF.EmitComplexExprIntoAddr(E, LV.getAddress(), false);
Anders Carlsson78e83f82010-02-03 17:33:16 +0000555 } else if (CGF.hasAggregateLLVMType(T)) {
Chris Lattner1b726772010-12-02 07:07:26 +0000556 CGF.EmitAggExpr(E, AggValueSlot::forAddr(LV.getAddress(), false, true,
557 false, Dest.isZeroed()));
Eli Friedmanc8ba9612008-05-12 15:06:05 +0000558 } else {
John McCall2a416372010-12-05 02:00:02 +0000559 CGF.EmitStoreThroughLValue(RValue::get(CGF.EmitScalarExpr(E)), LV, T);
Chris Lattnerf81557c2008-04-04 18:42:16 +0000560 }
Chris Lattnerf81557c2008-04-04 18:42:16 +0000561}
562
563void AggExprEmitter::EmitNullInitializationToLValue(LValue LV, QualType T) {
Chris Lattner1b726772010-12-02 07:07:26 +0000564 // If the destination slot is already zeroed out before the aggregate is
565 // copied into it, we don't have to emit any zeros here.
566 if (Dest.isZeroed() && CGF.getTypes().isZeroInitializable(T))
567 return;
568
Chris Lattnerf81557c2008-04-04 18:42:16 +0000569 if (!CGF.hasAggregateLLVMType(T)) {
570 // For non-aggregates, we can store zero
Owen Andersonc9c88b42009-07-31 20:28:54 +0000571 llvm::Value *Null = llvm::Constant::getNullValue(CGF.ConvertType(T));
Daniel Dunbar82397132008-08-06 05:32:55 +0000572 CGF.EmitStoreThroughLValue(RValue::get(Null), LV, T);
Lauro Ramos Venancio145cd892008-02-19 19:27:31 +0000573 } else {
Chris Lattnerf81557c2008-04-04 18:42:16 +0000574 // There's a potential optimization opportunity in combining
575 // memsets; that would be easy for arrays, but relatively
576 // difficult for structures with the current code.
Anders Carlsson1884eb02010-05-22 17:35:42 +0000577 CGF.EmitNullInitialization(LV.getAddress(), T);
Chris Lattnerf81557c2008-04-04 18:42:16 +0000578 }
579}
580
Chris Lattnerf81557c2008-04-04 18:42:16 +0000581void AggExprEmitter::VisitInitListExpr(InitListExpr *E) {
Eli Friedmana385b3c2008-12-02 01:17:45 +0000582#if 0
Eli Friedman13a5be12009-12-04 01:30:56 +0000583 // FIXME: Assess perf here? Figure out what cases are worth optimizing here
584 // (Length of globals? Chunks of zeroed-out space?).
Eli Friedmana385b3c2008-12-02 01:17:45 +0000585 //
Mike Stumpf5408fe2009-05-16 07:57:57 +0000586 // If we can, prefer a copy from a global; this is a lot less code for long
587 // globals, and it's easier for the current optimizers to analyze.
Eli Friedman13a5be12009-12-04 01:30:56 +0000588 if (llvm::Constant* C = CGF.CGM.EmitConstantExpr(E, E->getType(), &CGF)) {
Eli Friedman994ffef2008-11-30 02:11:09 +0000589 llvm::GlobalVariable* GV =
Eli Friedman13a5be12009-12-04 01:30:56 +0000590 new llvm::GlobalVariable(CGF.CGM.getModule(), C->getType(), true,
591 llvm::GlobalValue::InternalLinkage, C, "");
Daniel Dunbar79c39282010-08-21 03:15:20 +0000592 EmitFinalDestCopy(E, CGF.MakeAddrLValue(GV, E->getType()));
Eli Friedman994ffef2008-11-30 02:11:09 +0000593 return;
594 }
Eli Friedmana385b3c2008-12-02 01:17:45 +0000595#endif
Chris Lattnerd0db03a2010-09-06 00:11:41 +0000596 if (E->hadArrayRangeDesignator())
Douglas Gregora9c87802009-01-29 19:42:23 +0000597 CGF.ErrorUnsupported(E, "GNU array range designator extension");
Douglas Gregora9c87802009-01-29 19:42:23 +0000598
John McCall558d2ab2010-09-15 10:14:12 +0000599 llvm::Value *DestPtr = Dest.getAddr();
600
Chris Lattnerf81557c2008-04-04 18:42:16 +0000601 // Handle initialization of an array.
602 if (E->getType()->isArrayType()) {
603 const llvm::PointerType *APType =
604 cast<llvm::PointerType>(DestPtr->getType());
605 const llvm::ArrayType *AType =
606 cast<llvm::ArrayType>(APType->getElementType());
Mike Stump1eb44332009-09-09 15:08:12 +0000607
Chris Lattnerf81557c2008-04-04 18:42:16 +0000608 uint64_t NumInitElements = E->getNumInits();
Eli Friedman922696f2008-05-19 17:51:16 +0000609
Chris Lattner96196622008-07-26 22:37:01 +0000610 if (E->getNumInits() > 0) {
611 QualType T1 = E->getType();
612 QualType T2 = E->getInit(0)->getType();
Eli Friedman2dce5f82009-05-28 23:04:00 +0000613 if (CGF.getContext().hasSameUnqualifiedType(T1, T2)) {
Chris Lattner96196622008-07-26 22:37:01 +0000614 EmitAggLoadOfLValue(E->getInit(0));
615 return;
616 }
Eli Friedman922696f2008-05-19 17:51:16 +0000617 }
618
Chris Lattnerf81557c2008-04-04 18:42:16 +0000619 uint64_t NumArrayElements = AType->getNumElements();
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000620 QualType ElementType = CGF.getContext().getCanonicalType(E->getType());
Douglas Gregor4c678342009-01-28 21:54:33 +0000621 ElementType = CGF.getContext().getAsArrayType(ElementType)->getElementType();
Mike Stump1eb44332009-09-09 15:08:12 +0000622
John McCall0953e762009-09-24 19:53:00 +0000623 // FIXME: were we intentionally ignoring address spaces and GC attributes?
Eli Friedman1e692ac2008-06-13 23:01:12 +0000624
Chris Lattnerf81557c2008-04-04 18:42:16 +0000625 for (uint64_t i = 0; i != NumArrayElements; ++i) {
Chris Lattner1b726772010-12-02 07:07:26 +0000626 // If we're done emitting initializers and the destination is known-zeroed
627 // then we're done.
628 if (i == NumInitElements &&
629 Dest.isZeroed() &&
630 CGF.getTypes().isZeroInitializable(ElementType))
631 break;
632
Chris Lattnerf81557c2008-04-04 18:42:16 +0000633 llvm::Value *NextVal = Builder.CreateStructGEP(DestPtr, i, ".array");
Daniel Dunbar9f553f52010-08-21 03:08:16 +0000634 LValue LV = CGF.MakeAddrLValue(NextVal, ElementType);
Chris Lattner1b726772010-12-02 07:07:26 +0000635
Chris Lattnerf81557c2008-04-04 18:42:16 +0000636 if (i < NumInitElements)
Daniel Dunbar9f553f52010-08-21 03:08:16 +0000637 EmitInitializationToLValue(E->getInit(i), LV, ElementType);
Chris Lattnerf81557c2008-04-04 18:42:16 +0000638 else
Daniel Dunbar9f553f52010-08-21 03:08:16 +0000639 EmitNullInitializationToLValue(LV, ElementType);
Chris Lattner1b726772010-12-02 07:07:26 +0000640
641 // If the GEP didn't get used because of a dead zero init or something
642 // else, clean it up for -O0 builds and general tidiness.
643 if (llvm::GetElementPtrInst *GEP =
644 dyn_cast<llvm::GetElementPtrInst>(NextVal))
645 if (GEP->use_empty())
646 GEP->eraseFromParent();
Lauro Ramos Venancio145cd892008-02-19 19:27:31 +0000647 }
Chris Lattnerf81557c2008-04-04 18:42:16 +0000648 return;
649 }
Mike Stump1eb44332009-09-09 15:08:12 +0000650
Chris Lattnerf81557c2008-04-04 18:42:16 +0000651 assert(E->getType()->isRecordType() && "Only support structs/unions here!");
Mike Stump1eb44332009-09-09 15:08:12 +0000652
Chris Lattnerf81557c2008-04-04 18:42:16 +0000653 // Do struct initialization; this code just sets each individual member
654 // to the approprate value. This makes bitfield support automatic;
655 // the disadvantage is that the generated code is more difficult for
656 // the optimizer, especially with bitfields.
657 unsigned NumInitElements = E->getNumInits();
Ted Kremenek6217b802009-07-29 21:53:49 +0000658 RecordDecl *SD = E->getType()->getAs<RecordType>()->getDecl();
Chris Lattnerbd7de382010-09-06 00:13:11 +0000659
Douglas Gregor0bb76892009-01-29 16:53:55 +0000660 if (E->getType()->isUnionType()) {
661 // Only initialize one field of a union. The field itself is
662 // specified by the initializer list.
663 if (!E->getInitializedFieldInUnion()) {
664 // Empty union; we have nothing to do.
Mike Stump1eb44332009-09-09 15:08:12 +0000665
Douglas Gregor0bb76892009-01-29 16:53:55 +0000666#ifndef NDEBUG
667 // Make sure that it's really an empty and not a failure of
668 // semantic analysis.
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000669 for (RecordDecl::field_iterator Field = SD->field_begin(),
670 FieldEnd = SD->field_end();
Douglas Gregor0bb76892009-01-29 16:53:55 +0000671 Field != FieldEnd; ++Field)
672 assert(Field->isUnnamedBitfield() && "Only unnamed bitfields allowed");
673#endif
674 return;
675 }
676
677 // FIXME: volatility
678 FieldDecl *Field = E->getInitializedFieldInUnion();
Douglas Gregor0bb76892009-01-29 16:53:55 +0000679
Chris Lattner1b726772010-12-02 07:07:26 +0000680 LValue FieldLoc = CGF.EmitLValueForFieldInitialization(DestPtr, Field, 0);
Douglas Gregor0bb76892009-01-29 16:53:55 +0000681 if (NumInitElements) {
682 // Store the initializer into the field
Anders Carlsson78e83f82010-02-03 17:33:16 +0000683 EmitInitializationToLValue(E->getInit(0), FieldLoc, Field->getType());
Douglas Gregor0bb76892009-01-29 16:53:55 +0000684 } else {
Chris Lattner1b726772010-12-02 07:07:26 +0000685 // Default-initialize to null.
Douglas Gregor0bb76892009-01-29 16:53:55 +0000686 EmitNullInitializationToLValue(FieldLoc, Field->getType());
687 }
688
689 return;
690 }
Mike Stump1eb44332009-09-09 15:08:12 +0000691
Chris Lattnerf81557c2008-04-04 18:42:16 +0000692 // Here we iterate over the fields; this makes it simpler to both
693 // default-initialize fields and skip over unnamed fields.
Chris Lattnerbd7de382010-09-06 00:13:11 +0000694 unsigned CurInitVal = 0;
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
Chris Lattner1b726772010-12-02 07:07:26 +0000705 // Don't emit GEP before a noop store of zero.
706 if (CurInitVal == NumInitElements && Dest.isZeroed() &&
707 CGF.getTypes().isZeroInitializable(E->getType()))
708 break;
709
Eli Friedman1e692ac2008-06-13 23:01:12 +0000710 // FIXME: volatility
Anders Carlssone78ccb42010-02-03 19:13:55 +0000711 LValue FieldLoc = CGF.EmitLValueForFieldInitialization(DestPtr, *Field, 0);
Fariborz Jahanian14674ff2009-05-27 19:54:11 +0000712 // We never generate write-barries for initialized fields.
Daniel Dunbarea619172010-08-21 03:22:38 +0000713 FieldLoc.setNonGC(true);
Chris Lattner1b726772010-12-02 07:07:26 +0000714
Chris Lattnerf81557c2008-04-04 18:42:16 +0000715 if (CurInitVal < NumInitElements) {
Chris Lattnerb35baae2010-03-08 21:08:07 +0000716 // Store the initializer into the field.
717 EmitInitializationToLValue(E->getInit(CurInitVal++), FieldLoc,
Anders Carlsson78e83f82010-02-03 17:33:16 +0000718 Field->getType());
Chris Lattnerf81557c2008-04-04 18:42:16 +0000719 } else {
720 // We're out of initalizers; default-initialize to null
Douglas Gregor44b43212008-12-11 16:49:14 +0000721 EmitNullInitializationToLValue(FieldLoc, Field->getType());
Chris Lattnerf81557c2008-04-04 18:42:16 +0000722 }
Chris Lattner1b726772010-12-02 07:07:26 +0000723
724 // If the GEP didn't get used because of a dead zero init or something
725 // else, clean it up for -O0 builds and general tidiness.
726 if (FieldLoc.isSimple())
727 if (llvm::GetElementPtrInst *GEP =
728 dyn_cast<llvm::GetElementPtrInst>(FieldLoc.getAddress()))
729 if (GEP->use_empty())
730 GEP->eraseFromParent();
Lauro Ramos Venancio145cd892008-02-19 19:27:31 +0000731 }
Devang Patel636c3d02007-10-26 17:44:44 +0000732}
733
Chris Lattneree755f92007-08-21 04:59:27 +0000734//===----------------------------------------------------------------------===//
735// Entry Points into this File
736//===----------------------------------------------------------------------===//
737
Chris Lattner1b726772010-12-02 07:07:26 +0000738/// GetNumNonZeroBytesInInit - Get an approximate count of the number of
739/// non-zero bytes that will be stored when outputting the initializer for the
740/// specified initializer expression.
741static uint64_t GetNumNonZeroBytesInInit(const Expr *E, CodeGenFunction &CGF) {
742 if (const ParenExpr *PE = dyn_cast<ParenExpr>(E))
743 return GetNumNonZeroBytesInInit(PE->getSubExpr(), CGF);
744
745 // 0 and 0.0 won't require any non-zero stores!
746 if (isSimpleZero(E, CGF)) return 0;
747
748 // If this is an initlist expr, sum up the size of sizes of the (present)
749 // elements. If this is something weird, assume the whole thing is non-zero.
750 const InitListExpr *ILE = dyn_cast<InitListExpr>(E);
751 if (ILE == 0 || !CGF.getTypes().isZeroInitializable(ILE->getType()))
752 return CGF.getContext().getTypeSize(E->getType())/8;
753
Chris Lattnerd1d56df2010-12-02 18:29:00 +0000754 // InitListExprs for structs have to be handled carefully. If there are
755 // reference members, we need to consider the size of the reference, not the
756 // referencee. InitListExprs for unions and arrays can't have references.
Chris Lattner8c00ad12010-12-02 22:52:04 +0000757 if (const RecordType *RT = E->getType()->getAs<RecordType>()) {
758 if (!RT->isUnionType()) {
759 RecordDecl *SD = E->getType()->getAs<RecordType>()->getDecl();
760 uint64_t NumNonZeroBytes = 0;
761
762 unsigned ILEElement = 0;
763 for (RecordDecl::field_iterator Field = SD->field_begin(),
764 FieldEnd = SD->field_end(); Field != FieldEnd; ++Field) {
765 // We're done once we hit the flexible array member or run out of
766 // InitListExpr elements.
767 if (Field->getType()->isIncompleteArrayType() ||
768 ILEElement == ILE->getNumInits())
769 break;
770 if (Field->isUnnamedBitfield())
771 continue;
Chris Lattnerd1d56df2010-12-02 18:29:00 +0000772
Chris Lattner8c00ad12010-12-02 22:52:04 +0000773 const Expr *E = ILE->getInit(ILEElement++);
774
775 // Reference values are always non-null and have the width of a pointer.
776 if (Field->getType()->isReferenceType())
777 NumNonZeroBytes += CGF.getContext().Target.getPointerWidth(0);
778 else
779 NumNonZeroBytes += GetNumNonZeroBytesInInit(E, CGF);
780 }
Chris Lattnerd1d56df2010-12-02 18:29:00 +0000781
Chris Lattner8c00ad12010-12-02 22:52:04 +0000782 return NumNonZeroBytes;
Chris Lattnerd1d56df2010-12-02 18:29:00 +0000783 }
Chris Lattnerd1d56df2010-12-02 18:29:00 +0000784 }
785
786
Chris Lattner1b726772010-12-02 07:07:26 +0000787 uint64_t NumNonZeroBytes = 0;
788 for (unsigned i = 0, e = ILE->getNumInits(); i != e; ++i)
789 NumNonZeroBytes += GetNumNonZeroBytesInInit(ILE->getInit(i), CGF);
790 return NumNonZeroBytes;
791}
792
793/// CheckAggExprForMemSetUse - If the initializer is large and has a lot of
794/// zeros in it, emit a memset and avoid storing the individual zeros.
795///
796static void CheckAggExprForMemSetUse(AggValueSlot &Slot, const Expr *E,
797 CodeGenFunction &CGF) {
798 // If the slot is already known to be zeroed, nothing to do. Don't mess with
799 // volatile stores.
800 if (Slot.isZeroed() || Slot.isVolatile() || Slot.getAddr() == 0) return;
801
802 // If the type is 16-bytes or smaller, prefer individual stores over memset.
803 std::pair<uint64_t, unsigned> TypeInfo =
804 CGF.getContext().getTypeInfo(E->getType());
805 if (TypeInfo.first/8 <= 16)
806 return;
807
808 // Check to see if over 3/4 of the initializer are known to be zero. If so,
809 // we prefer to emit memset + individual stores for the rest.
810 uint64_t NumNonZeroBytes = GetNumNonZeroBytesInInit(E, CGF);
811 if (NumNonZeroBytes*4 > TypeInfo.first/8)
812 return;
813
814 // Okay, it seems like a good idea to use an initial memset, emit the call.
815 llvm::Constant *SizeVal = CGF.Builder.getInt64(TypeInfo.first/8);
Benjamin Kramer9f0c7cc2010-12-30 00:13:21 +0000816 unsigned Align = TypeInfo.second/8;
Chris Lattner1b726772010-12-02 07:07:26 +0000817
818 llvm::Value *Loc = Slot.getAddr();
819 const llvm::Type *BP = llvm::Type::getInt8PtrTy(CGF.getLLVMContext());
820
821 Loc = CGF.Builder.CreateBitCast(Loc, BP);
Benjamin Kramer9f0c7cc2010-12-30 00:13:21 +0000822 CGF.Builder.CreateMemSet(Loc, CGF.Builder.getInt8(0), SizeVal, Align, false);
Chris Lattner1b726772010-12-02 07:07:26 +0000823
824 // Tell the AggExprEmitter that the slot is known zero.
825 Slot.setZeroed();
826}
827
828
829
830
Mike Stumpe1129a92009-05-26 18:57:45 +0000831/// EmitAggExpr - Emit the computation of the specified expression of aggregate
832/// type. The result is computed into DestPtr. Note that if DestPtr is null,
833/// the value of the aggregate expression is not needed. If VolatileDest is
834/// true, DestPtr cannot be 0.
John McCall558d2ab2010-09-15 10:14:12 +0000835///
836/// \param IsInitializer - true if this evaluation is initializing an
837/// object whose lifetime is already being managed.
Daniel Dunbar18aba0d2010-02-05 19:38:31 +0000838//
839// FIXME: Take Qualifiers object.
John McCall558d2ab2010-09-15 10:14:12 +0000840void CodeGenFunction::EmitAggExpr(const Expr *E, AggValueSlot Slot,
Fariborz Jahanian474e2fe2010-09-16 00:20:07 +0000841 bool IgnoreResult) {
Chris Lattneree755f92007-08-21 04:59:27 +0000842 assert(E && hasAggregateLLVMType(E->getType()) &&
843 "Invalid aggregate expression to emit");
Chris Lattner1b726772010-12-02 07:07:26 +0000844 assert((Slot.getAddr() != 0 || Slot.isIgnored()) &&
845 "slot has bits but no address");
Mike Stump1eb44332009-09-09 15:08:12 +0000846
Chris Lattner1b726772010-12-02 07:07:26 +0000847 // Optimize the slot if possible.
848 CheckAggExprForMemSetUse(Slot, E, *this);
849
850 AggExprEmitter(*this, Slot, IgnoreResult).Visit(const_cast<Expr*>(E));
Chris Lattneree755f92007-08-21 04:59:27 +0000851}
Daniel Dunbar7482d122008-09-09 20:49:46 +0000852
Daniel Dunbar18aba0d2010-02-05 19:38:31 +0000853LValue CodeGenFunction::EmitAggExprToLValue(const Expr *E) {
854 assert(hasAggregateLLVMType(E->getType()) && "Invalid argument!");
Daniel Dunbar195337d2010-02-09 02:48:28 +0000855 llvm::Value *Temp = CreateMemTemp(E->getType());
Daniel Dunbar79c39282010-08-21 03:15:20 +0000856 LValue LV = MakeAddrLValue(Temp, E->getType());
Chris Lattner1b726772010-12-02 07:07:26 +0000857 EmitAggExpr(E, AggValueSlot::forAddr(Temp, LV.isVolatileQualified(), false));
Daniel Dunbar79c39282010-08-21 03:15:20 +0000858 return LV;
Daniel Dunbar18aba0d2010-02-05 19:38:31 +0000859}
860
Daniel Dunbar7482d122008-09-09 20:49:46 +0000861void CodeGenFunction::EmitAggregateCopy(llvm::Value *DestPtr,
Mike Stump27fe2e62009-05-23 22:29:41 +0000862 llvm::Value *SrcPtr, QualType Ty,
863 bool isVolatile) {
Daniel Dunbar7482d122008-09-09 20:49:46 +0000864 assert(!Ty->isAnyComplexType() && "Shouldn't happen for complex");
Mike Stump1eb44332009-09-09 15:08:12 +0000865
Anders Carlsson0d7c5832010-05-03 01:20:20 +0000866 if (getContext().getLangOptions().CPlusPlus) {
867 if (const RecordType *RT = Ty->getAs<RecordType>()) {
Douglas Gregore9979482010-05-20 15:39:01 +0000868 CXXRecordDecl *Record = cast<CXXRecordDecl>(RT->getDecl());
869 assert((Record->hasTrivialCopyConstructor() ||
Fariborz Jahanian1d49f212010-05-20 16:46:55 +0000870 Record->hasTrivialCopyAssignment()) &&
Douglas Gregore9979482010-05-20 15:39:01 +0000871 "Trying to aggregate-copy a type without a trivial copy "
872 "constructor or assignment operator");
Douglas Gregor419aa962010-05-20 15:48:29 +0000873 // Ignore empty classes in C++.
Douglas Gregore9979482010-05-20 15:39:01 +0000874 if (Record->isEmpty())
Anders Carlsson0d7c5832010-05-03 01:20:20 +0000875 return;
876 }
877 }
878
Chris Lattner83c96292009-02-28 18:31:01 +0000879 // Aggregate assignment turns into llvm.memcpy. This is almost valid per
Chris Lattnerca4fc2c2009-02-28 18:18:58 +0000880 // C99 6.5.16.1p3, which states "If the value being stored in an object is
881 // read from another object that overlaps in anyway the storage of the first
882 // object, then the overlap shall be exact and the two objects shall have
883 // qualified or unqualified versions of a compatible type."
884 //
Chris Lattner83c96292009-02-28 18:31:01 +0000885 // memcpy is not defined if the source and destination pointers are exactly
Chris Lattnerca4fc2c2009-02-28 18:18:58 +0000886 // equal, but other compilers do this optimization, and almost every memcpy
887 // implementation handles this case safely. If there is a libc that does not
888 // safely handle this, we can add a target hook.
Mike Stump1eb44332009-09-09 15:08:12 +0000889
Daniel Dunbar7482d122008-09-09 20:49:46 +0000890 // Get size and alignment info for this aggregate.
891 std::pair<uint64_t, unsigned> TypeInfo = getContext().getTypeInfo(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +0000892
Daniel Dunbar7482d122008-09-09 20:49:46 +0000893 // FIXME: Handle variable sized types.
Mike Stump1eb44332009-09-09 15:08:12 +0000894
Mike Stumpfde64202009-05-23 04:13:59 +0000895 // FIXME: If we have a volatile struct, the optimizer can remove what might
896 // appear to be `extra' memory ops:
897 //
898 // volatile struct { int i; } a, b;
899 //
900 // int main() {
901 // a = b;
902 // a = b;
903 // }
904 //
Mon P Wang3ecd7852010-04-04 03:10:52 +0000905 // we need to use a different call here. We use isVolatile to indicate when
Mike Stump49d1cd52009-05-26 22:03:21 +0000906 // either the source or the destination is volatile.
Mon P Wang3ecd7852010-04-04 03:10:52 +0000907
908 const llvm::PointerType *DPT = cast<llvm::PointerType>(DestPtr->getType());
Chris Lattner098432c2010-07-08 00:07:45 +0000909 const llvm::Type *DBP =
John McCalld16c2cf2011-02-08 08:22:06 +0000910 llvm::Type::getInt8PtrTy(getLLVMContext(), DPT->getAddressSpace());
Chris Lattner098432c2010-07-08 00:07:45 +0000911 DestPtr = Builder.CreateBitCast(DestPtr, DBP, "tmp");
Mon P Wang3ecd7852010-04-04 03:10:52 +0000912
913 const llvm::PointerType *SPT = cast<llvm::PointerType>(SrcPtr->getType());
Chris Lattner098432c2010-07-08 00:07:45 +0000914 const llvm::Type *SBP =
John McCalld16c2cf2011-02-08 08:22:06 +0000915 llvm::Type::getInt8PtrTy(getLLVMContext(), SPT->getAddressSpace());
Chris Lattner098432c2010-07-08 00:07:45 +0000916 SrcPtr = Builder.CreateBitCast(SrcPtr, SBP, "tmp");
Mon P Wang3ecd7852010-04-04 03:10:52 +0000917
Fariborz Jahanian55bcace2010-06-15 22:44:06 +0000918 if (const RecordType *RecordTy = Ty->getAs<RecordType>()) {
919 RecordDecl *Record = RecordTy->getDecl();
920 if (Record->hasObjectMember()) {
921 unsigned long size = TypeInfo.first/8;
922 const llvm::Type *SizeTy = ConvertType(getContext().getSizeType());
923 llvm::Value *SizeVal = llvm::ConstantInt::get(SizeTy, size);
924 CGM.getObjCRuntime().EmitGCMemmoveCollectable(*this, DestPtr, SrcPtr,
925 SizeVal);
926 return;
927 }
928 } else if (getContext().getAsArrayType(Ty)) {
929 QualType BaseType = getContext().getBaseElementType(Ty);
930 if (const RecordType *RecordTy = BaseType->getAs<RecordType>()) {
931 if (RecordTy->getDecl()->hasObjectMember()) {
932 unsigned long size = TypeInfo.first/8;
933 const llvm::Type *SizeTy = ConvertType(getContext().getSizeType());
934 llvm::Value *SizeVal = llvm::ConstantInt::get(SizeTy, size);
935 CGM.getObjCRuntime().EmitGCMemmoveCollectable(*this, DestPtr, SrcPtr,
936 SizeVal);
937 return;
938 }
939 }
940 }
941
Benjamin Kramer9f0c7cc2010-12-30 00:13:21 +0000942 Builder.CreateMemCpy(DestPtr, SrcPtr,
943 llvm::ConstantInt::get(IntPtrTy, TypeInfo.first/8),
944 TypeInfo.second/8, isVolatile);
Daniel Dunbar7482d122008-09-09 20:49:46 +0000945}