blob: 2e45f2017b422717fc5d45736ca55e729b2139e9 [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"
Daniel Dunbarde7fb842008-08-11 05:00:27 +000016#include "clang/AST/ASTContext.h"
Anders Carlssonb14095a2009-04-17 00:06:03 +000017#include "clang/AST/DeclCXX.h"
Daniel Dunbarde7fb842008-08-11 05:00:27 +000018#include "clang/AST/StmtVisitor.h"
Chris Lattner883f6a72007-08-11 00:04:45 +000019#include "llvm/Constants.h"
20#include "llvm/Function.h"
Devang Patel636c3d02007-10-26 17:44:44 +000021#include "llvm/GlobalVariable.h"
Chris Lattner9c033562007-08-21 04:25:47 +000022#include "llvm/Support/Compiler.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 {
32class VISIBILITY_HIDDEN AggExprEmitter : public StmtVisitor<AggExprEmitter> {
33 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;
37public:
38 AggExprEmitter(CodeGenFunction &cgf, llvm::Value *destPtr, bool volatileDest)
Chris Lattnerbfc0c1a2007-08-26 23:13:56 +000039 : CGF(cgf), Builder(CGF.Builder),
40 DestPtr(destPtr), VolatileDest(volatileDest) {
Chris Lattner9c033562007-08-21 04:25:47 +000041 }
42
Chris Lattneree755f92007-08-21 04:59:27 +000043 //===--------------------------------------------------------------------===//
44 // Utilities
45 //===--------------------------------------------------------------------===//
46
Chris Lattner9c033562007-08-21 04:25:47 +000047 /// EmitAggLoadOfLValue - Given an expression with aggregate type that
48 /// represents a value lvalue, this method emits the address of the lvalue,
49 /// then loads the result into DestPtr.
50 void EmitAggLoadOfLValue(const Expr *E);
Eli Friedman922696f2008-05-19 17:51:16 +000051
Chris Lattneree755f92007-08-21 04:59:27 +000052 //===--------------------------------------------------------------------===//
53 // Visitor Methods
54 //===--------------------------------------------------------------------===//
55
Chris Lattner9c033562007-08-21 04:25:47 +000056 void VisitStmt(Stmt *S) {
Daniel Dunbar488e9932008-08-16 00:56:44 +000057 CGF.ErrorUnsupported(S, "aggregate expression");
Chris Lattner9c033562007-08-21 04:25:47 +000058 }
59 void VisitParenExpr(ParenExpr *PE) { Visit(PE->getSubExpr()); }
Eli Friedman12444a22009-01-27 09:03:41 +000060 void VisitUnaryExtension(UnaryOperator *E) { Visit(E->getSubExpr()); }
Chris Lattner9c033562007-08-21 04:25:47 +000061
62 // l-values.
Seo Sanghyeon9b73b392007-12-14 02:04:12 +000063 void VisitDeclRefExpr(DeclRefExpr *DRE) { EmitAggLoadOfLValue(DRE); }
64 void VisitMemberExpr(MemberExpr *ME) { EmitAggLoadOfLValue(ME); }
65 void VisitUnaryDeref(UnaryOperator *E) { EmitAggLoadOfLValue(E); }
Seo Sanghyeonad6ebd62007-12-23 03:11:58 +000066 void VisitStringLiteral(StringLiteral *E) { EmitAggLoadOfLValue(E); }
Chris Lattnerf0a990c2009-04-21 23:00:09 +000067 void VisitCompoundLiteralExpr(CompoundLiteralExpr *E) {
68 EmitAggLoadOfLValue(E);
69 }
Seo Sanghyeon9b73b392007-12-14 02:04:12 +000070 void VisitArraySubscriptExpr(ArraySubscriptExpr *E) {
71 EmitAggLoadOfLValue(E);
72 }
Chris Lattnerf0a990c2009-04-21 23:00:09 +000073 void VisitBlockDeclRefExpr(const BlockDeclRefExpr *E) {
74 EmitAggLoadOfLValue(E);
75 }
76 void VisitPredefinedExpr(const PredefinedExpr *E) {
77 EmitAggLoadOfLValue(E);
78 }
Douglas Gregor4c678342009-01-28 21:54:33 +000079
Chris Lattner9c033562007-08-21 04:25:47 +000080 // Operators.
81 // case Expr::UnaryOperatorClass:
Chris Lattner9c033562007-08-21 04:25:47 +000082 // case Expr::CastExprClass:
Nuno Lopes7e916272009-01-15 20:14:33 +000083 void VisitCStyleCastExpr(CStyleCastExpr *E);
Anders Carlssone4707ff2008-01-14 06:28:57 +000084 void VisitImplicitCastExpr(ImplicitCastExpr *E);
Anders Carlsson148fe672007-10-31 22:04:46 +000085 void VisitCallExpr(const CallExpr *E);
Chris Lattnerb2d963f2007-08-31 22:54:14 +000086 void VisitStmtExpr(const StmtExpr *E);
Chris Lattner9c033562007-08-21 04:25:47 +000087 void VisitBinaryOperator(const BinaryOperator *BO);
Chris Lattner03d6fb92007-08-21 04:43:17 +000088 void VisitBinAssign(const BinaryOperator *E);
Eli Friedman07fa52a2008-05-20 07:56:31 +000089 void VisitBinComma(const BinaryOperator *E);
Chris Lattner9c033562007-08-21 04:25:47 +000090
Chris Lattner8fdf3282008-06-24 17:04:18 +000091 void VisitObjCMessageExpr(ObjCMessageExpr *E);
Daniel Dunbar0a04d772008-08-23 10:51:21 +000092 void VisitObjCIvarRefExpr(ObjCIvarRefExpr *E) {
93 EmitAggLoadOfLValue(E);
94 }
Daniel Dunbar9c3fc702008-08-27 06:57:25 +000095 void VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *E);
Fariborz Jahanian5daf5702008-11-22 18:39:36 +000096 void VisitObjCKVCRefExpr(ObjCKVCRefExpr *E);
Chris Lattner9c033562007-08-21 04:25:47 +000097
98 void VisitConditionalOperator(const ConditionalOperator *CO);
Devang Patel636c3d02007-10-26 17:44:44 +000099 void VisitInitListExpr(InitListExpr *E);
Chris Lattner04421082008-04-08 04:40:51 +0000100 void VisitCXXDefaultArgExpr(CXXDefaultArgExpr *DAE) {
101 Visit(DAE->getExpr());
102 }
Anders Carlssonb14095a2009-04-17 00:06:03 +0000103 void VisitCXXTemporaryObjectExpr(const CXXTemporaryObjectExpr *E);
Eli Friedmanb1851242008-05-27 15:51:49 +0000104 void VisitVAArgExpr(VAArgExpr *E);
Chris Lattnerf81557c2008-04-04 18:42:16 +0000105
106 void EmitInitializationToLValue(Expr *E, LValue Address);
107 void EmitNullInitializationToLValue(LValue Address, QualType T);
Chris Lattner9c033562007-08-21 04:25:47 +0000108 // case Expr::ChooseExprClass:
Lauro Ramos Venancio305762c2008-02-18 22:44:02 +0000109
Chris Lattner9c033562007-08-21 04:25:47 +0000110};
111} // end anonymous namespace.
112
Chris Lattneree755f92007-08-21 04:59:27 +0000113//===----------------------------------------------------------------------===//
114// Utilities
115//===----------------------------------------------------------------------===//
Chris Lattner9c033562007-08-21 04:25:47 +0000116
Chris Lattner883f6a72007-08-11 00:04:45 +0000117/// EmitAggLoadOfLValue - Given an expression with aggregate type that
118/// represents a value lvalue, this method emits the address of the lvalue,
119/// then loads the result into DestPtr.
Chris Lattner9c033562007-08-21 04:25:47 +0000120void AggExprEmitter::EmitAggLoadOfLValue(const Expr *E) {
121 LValue LV = CGF.EmitLValue(E);
Chris Lattner883f6a72007-08-11 00:04:45 +0000122 assert(LV.isSimple() && "Can't have aggregate bitfield, vector, etc");
123 llvm::Value *SrcPtr = LV.getAddress();
124
125 // If the result is ignored, don't copy from the value.
126 if (DestPtr == 0)
127 // FIXME: If the source is volatile, we must read from it.
128 return;
129
Daniel Dunbar7482d122008-09-09 20:49:46 +0000130 CGF.EmitAggregateCopy(DestPtr, SrcPtr, E->getType());
Chris Lattner883f6a72007-08-11 00:04:45 +0000131}
132
Chris Lattneree755f92007-08-21 04:59:27 +0000133//===----------------------------------------------------------------------===//
134// Visitor Methods
135//===----------------------------------------------------------------------===//
136
Nuno Lopes7e916272009-01-15 20:14:33 +0000137void AggExprEmitter::VisitCStyleCastExpr(CStyleCastExpr *E) {
138 // GCC union extension
139 if (E->getType()->isUnionType()) {
140 RecordDecl *SD = E->getType()->getAsRecordType()->getDecl();
Douglas Gregor6ab35242009-04-09 21:40:53 +0000141 LValue FieldLoc = CGF.EmitLValueForField(DestPtr,
142 *SD->field_begin(CGF.getContext()),
143 true, 0);
Nuno Lopes7e916272009-01-15 20:14:33 +0000144 EmitInitializationToLValue(E->getSubExpr(), FieldLoc);
145 return;
146 }
147
148 Visit(E->getSubExpr());
149}
150
Chris Lattner96196622008-07-26 22:37:01 +0000151void AggExprEmitter::VisitImplicitCastExpr(ImplicitCastExpr *E) {
Eli Friedmanff6e2b72008-02-11 01:09:17 +0000152 assert(CGF.getContext().typesAreCompatible(
Chris Lattner96196622008-07-26 22:37:01 +0000153 E->getSubExpr()->getType().getUnqualifiedType(),
154 E->getType().getUnqualifiedType()) &&
155 "Implicit cast types must be compatible");
Anders Carlssone4707ff2008-01-14 06:28:57 +0000156 Visit(E->getSubExpr());
157}
158
Chris Lattner96196622008-07-26 22:37:01 +0000159void AggExprEmitter::VisitCallExpr(const CallExpr *E) {
Anders Carlsson148fe672007-10-31 22:04:46 +0000160 RValue RV = CGF.EmitCallExpr(E);
161 assert(RV.isAggregate() && "Return value must be aggregate value!");
162
163 // If the result is ignored, don't copy from the value.
164 if (DestPtr == 0)
165 // FIXME: If the source is volatile, we must read from it.
166 return;
167
Daniel Dunbar7482d122008-09-09 20:49:46 +0000168 CGF.EmitAggregateCopy(DestPtr, RV.getAggregateAddr(), E->getType());
Anders Carlsson148fe672007-10-31 22:04:46 +0000169}
Chris Lattner96196622008-07-26 22:37:01 +0000170
171void AggExprEmitter::VisitObjCMessageExpr(ObjCMessageExpr *E) {
Daniel Dunbar8f2926b2008-08-23 03:46:30 +0000172 RValue RV = CGF.EmitObjCMessageExpr(E);
173 assert(RV.isAggregate() && "Return value must be aggregate value!");
Chris Lattner8fdf3282008-06-24 17:04:18 +0000174
175 // If the result is ignored, don't copy from the value.
176 if (DestPtr == 0)
Daniel Dunbar8f2926b2008-08-23 03:46:30 +0000177 // FIXME: If the source is volatile, we must read from it.
Chris Lattner8fdf3282008-06-24 17:04:18 +0000178 return;
179
Daniel Dunbar7482d122008-09-09 20:49:46 +0000180 CGF.EmitAggregateCopy(DestPtr, RV.getAggregateAddr(), E->getType());
Chris Lattner8fdf3282008-06-24 17:04:18 +0000181}
Anders Carlsson148fe672007-10-31 22:04:46 +0000182
Daniel Dunbar9c3fc702008-08-27 06:57:25 +0000183void AggExprEmitter::VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *E) {
184 RValue RV = CGF.EmitObjCPropertyGet(E);
185 assert(RV.isAggregate() && "Return value must be aggregate value!");
186
187 // If the result is ignored, don't copy from the value.
188 if (DestPtr == 0)
189 // FIXME: If the source is volatile, we must read from it.
190 return;
191
Daniel Dunbar7482d122008-09-09 20:49:46 +0000192 CGF.EmitAggregateCopy(DestPtr, RV.getAggregateAddr(), E->getType());
Daniel Dunbar9c3fc702008-08-27 06:57:25 +0000193}
194
Fariborz Jahanian5daf5702008-11-22 18:39:36 +0000195void AggExprEmitter::VisitObjCKVCRefExpr(ObjCKVCRefExpr *E) {
196 RValue RV = CGF.EmitObjCPropertyGet(E);
197 assert(RV.isAggregate() && "Return value must be aggregate value!");
198
199 // If the result is ignored, don't copy from the value.
200 if (DestPtr == 0)
201 // FIXME: If the source is volatile, we must read from it.
202 return;
203
204 CGF.EmitAggregateCopy(DestPtr, RV.getAggregateAddr(), E->getType());
205}
206
Chris Lattner96196622008-07-26 22:37:01 +0000207void AggExprEmitter::VisitBinComma(const BinaryOperator *E) {
Eli Friedman07fa52a2008-05-20 07:56:31 +0000208 CGF.EmitAnyExpr(E->getLHS());
209 CGF.EmitAggExpr(E->getRHS(), DestPtr, false);
210}
211
Chris Lattnerb2d963f2007-08-31 22:54:14 +0000212void AggExprEmitter::VisitStmtExpr(const StmtExpr *E) {
213 CGF.EmitCompoundStmt(*E->getSubStmt(), true, DestPtr, VolatileDest);
214}
215
Chris Lattner9c033562007-08-21 04:25:47 +0000216void AggExprEmitter::VisitBinaryOperator(const BinaryOperator *E) {
Daniel Dunbar488e9932008-08-16 00:56:44 +0000217 CGF.ErrorUnsupported(E, "aggregate binary expression");
Chris Lattneree755f92007-08-21 04:59:27 +0000218}
219
Chris Lattner03d6fb92007-08-21 04:43:17 +0000220void AggExprEmitter::VisitBinAssign(const BinaryOperator *E) {
Eli Friedmanff6e2b72008-02-11 01:09:17 +0000221 // For an assignment to work, the value on the right has
222 // to be compatible with the value on the left.
223 assert(CGF.getContext().typesAreCompatible(
224 E->getLHS()->getType().getUnqualifiedType(),
225 E->getRHS()->getType().getUnqualifiedType())
226 && "Invalid assignment");
Chris Lattner9c033562007-08-21 04:25:47 +0000227 LValue LHS = CGF.EmitLValue(E->getLHS());
Chris Lattner883f6a72007-08-11 00:04:45 +0000228
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000229 // We have to special case property setters, otherwise we must have
230 // a simple lvalue (no aggregates inside vectors, bitfields).
231 if (LHS.isPropertyRef()) {
232 // FIXME: Volatility?
233 llvm::Value *AggLoc = DestPtr;
234 if (!AggLoc)
235 AggLoc = CGF.CreateTempAlloca(CGF.ConvertType(E->getRHS()->getType()));
236 CGF.EmitAggExpr(E->getRHS(), AggLoc, false);
237 CGF.EmitObjCPropertySet(LHS.getPropertyRefExpr(),
238 RValue::getAggregate(AggLoc));
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000239 }
240 else if (LHS.isKVCRef()) {
241 // FIXME: Volatility?
242 llvm::Value *AggLoc = DestPtr;
243 if (!AggLoc)
244 AggLoc = CGF.CreateTempAlloca(CGF.ConvertType(E->getRHS()->getType()));
245 CGF.EmitAggExpr(E->getRHS(), AggLoc, false);
246 CGF.EmitObjCPropertySet(LHS.getKVCRefExpr(),
247 RValue::getAggregate(AggLoc));
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000248 } else {
249 // Codegen the RHS so that it stores directly into the LHS.
250 CGF.EmitAggExpr(E->getRHS(), LHS.getAddress(), false /*FIXME: VOLATILE LHS*/);
251
252 if (DestPtr == 0)
253 return;
254
255 // If the result of the assignment is used, copy the RHS there also.
Daniel Dunbar7482d122008-09-09 20:49:46 +0000256 CGF.EmitAggregateCopy(DestPtr, LHS.getAddress(), E->getType());
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000257 }
Chris Lattner883f6a72007-08-11 00:04:45 +0000258}
259
Chris Lattner9c033562007-08-21 04:25:47 +0000260void AggExprEmitter::VisitConditionalOperator(const ConditionalOperator *E) {
Daniel Dunbar9615ecb2008-11-13 01:38:36 +0000261 llvm::BasicBlock *LHSBlock = CGF.createBasicBlock("cond.true");
262 llvm::BasicBlock *RHSBlock = CGF.createBasicBlock("cond.false");
263 llvm::BasicBlock *ContBlock = CGF.createBasicBlock("cond.end");
Chris Lattner883f6a72007-08-11 00:04:45 +0000264
Chris Lattner9c033562007-08-21 04:25:47 +0000265 llvm::Value *Cond = CGF.EvaluateExprAsBool(E->getCond());
Chris Lattnerbfc0c1a2007-08-26 23:13:56 +0000266 Builder.CreateCondBr(Cond, LHSBlock, RHSBlock);
Chris Lattner883f6a72007-08-11 00:04:45 +0000267
Chris Lattner9c033562007-08-21 04:25:47 +0000268 CGF.EmitBlock(LHSBlock);
Chris Lattner883f6a72007-08-11 00:04:45 +0000269
270 // Handle the GNU extension for missing LHS.
271 assert(E->getLHS() && "Must have LHS for aggregate value");
272
Chris Lattnerc748f272007-08-21 05:02:10 +0000273 Visit(E->getLHS());
Daniel Dunbard57a8712008-11-11 09:41:28 +0000274 CGF.EmitBranch(ContBlock);
Chris Lattner883f6a72007-08-11 00:04:45 +0000275
Chris Lattner9c033562007-08-21 04:25:47 +0000276 CGF.EmitBlock(RHSBlock);
Chris Lattner883f6a72007-08-11 00:04:45 +0000277
Chris Lattnerc748f272007-08-21 05:02:10 +0000278 Visit(E->getRHS());
Daniel Dunbard57a8712008-11-11 09:41:28 +0000279 CGF.EmitBranch(ContBlock);
Chris Lattner883f6a72007-08-11 00:04:45 +0000280
Chris Lattner9c033562007-08-21 04:25:47 +0000281 CGF.EmitBlock(ContBlock);
Chris Lattner883f6a72007-08-11 00:04:45 +0000282}
Chris Lattneree755f92007-08-21 04:59:27 +0000283
Eli Friedmanb1851242008-05-27 15:51:49 +0000284void AggExprEmitter::VisitVAArgExpr(VAArgExpr *VE) {
Daniel Dunbar07855702009-02-11 22:25:55 +0000285 llvm::Value *ArgValue = CGF.EmitVAListRef(VE->getSubExpr());
Anders Carlssonddf7cac2008-11-04 05:30:00 +0000286 llvm::Value *ArgPtr = CGF.EmitVAArg(ArgValue, VE->getType());
287
Sebastian Redl0262f022009-01-09 21:09:38 +0000288 if (!ArgPtr) {
Anders Carlssonddf7cac2008-11-04 05:30:00 +0000289 CGF.ErrorUnsupported(VE, "aggregate va_arg expression");
Sebastian Redl0262f022009-01-09 21:09:38 +0000290 return;
291 }
292
Eli Friedmanb1851242008-05-27 15:51:49 +0000293 if (DestPtr)
Eli Friedman1e692ac2008-06-13 23:01:12 +0000294 // FIXME: volatility
Anders Carlssonddf7cac2008-11-04 05:30:00 +0000295 CGF.EmitAggregateCopy(DestPtr, ArgPtr, VE->getType());
Eli Friedmanb1851242008-05-27 15:51:49 +0000296}
297
Anders Carlssonb14095a2009-04-17 00:06:03 +0000298void
299AggExprEmitter::VisitCXXTemporaryObjectExpr(const CXXTemporaryObjectExpr *E) {
300 llvm::Value *This = 0;
301
302 if (DestPtr)
303 This = DestPtr;
304 else
305 This = CGF.CreateTempAlloca(CGF.ConvertType(E->getType()), "tmp");
306
307 CGF.EmitCXXTemporaryObjectExpr(This, E);
308}
309
Chris Lattnerf81557c2008-04-04 18:42:16 +0000310void AggExprEmitter::EmitInitializationToLValue(Expr* E, LValue LV) {
311 // FIXME: Are initializers affected by volatile?
Douglas Gregor3498bdb2009-01-29 17:44:32 +0000312 if (isa<ImplicitValueInitExpr>(E)) {
Douglas Gregor4c678342009-01-28 21:54:33 +0000313 EmitNullInitializationToLValue(LV, E->getType());
Douglas Gregor3498bdb2009-01-29 17:44:32 +0000314 } else if (E->getType()->isComplexType()) {
315 CGF.EmitComplexExprIntoAddr(E, LV.getAddress(), false);
Eli Friedmanc8ba9612008-05-12 15:06:05 +0000316 } else if (CGF.hasAggregateLLVMType(E->getType())) {
317 CGF.EmitAnyExpr(E, LV.getAddress(), false);
318 } else {
319 CGF.EmitStoreThroughLValue(CGF.EmitAnyExpr(E), LV, E->getType());
Chris Lattnerf81557c2008-04-04 18:42:16 +0000320 }
Chris Lattnerf81557c2008-04-04 18:42:16 +0000321}
322
323void AggExprEmitter::EmitNullInitializationToLValue(LValue LV, QualType T) {
324 if (!CGF.hasAggregateLLVMType(T)) {
325 // For non-aggregates, we can store zero
Daniel Dunbar82397132008-08-06 05:32:55 +0000326 llvm::Value *Null = llvm::Constant::getNullValue(CGF.ConvertType(T));
327 CGF.EmitStoreThroughLValue(RValue::get(Null), LV, T);
Lauro Ramos Venancio145cd892008-02-19 19:27:31 +0000328 } else {
Chris Lattnerf81557c2008-04-04 18:42:16 +0000329 // Otherwise, just memset the whole thing to zero. This is legal
330 // because in LLVM, all default initializers are guaranteed to have a
331 // bit pattern of all zeros.
Eli Friedman0f593122009-04-13 21:47:26 +0000332 // FIXME: That isn't true for member pointers!
Chris Lattnerf81557c2008-04-04 18:42:16 +0000333 // There's a potential optimization opportunity in combining
334 // memsets; that would be easy for arrays, but relatively
335 // difficult for structures with the current code.
Eli Friedmanccf0ed82009-03-28 03:10:45 +0000336 CGF.EmitMemSetToZero(LV.getAddress(), T);
Chris Lattnerf81557c2008-04-04 18:42:16 +0000337 }
338}
339
Chris Lattnerf81557c2008-04-04 18:42:16 +0000340void AggExprEmitter::VisitInitListExpr(InitListExpr *E) {
Eli Friedmana385b3c2008-12-02 01:17:45 +0000341#if 0
342 // FIXME: Disabled while we figure out what to do about
343 // test/CodeGen/bitfield.c
344 //
Eli Friedman994ffef2008-11-30 02:11:09 +0000345 // If we can, prefer a copy from a global; this is a lot less
346 // code for long globals, and it's easier for the current optimizers
347 // to analyze.
348 // FIXME: Should we really be doing this? Should we try to avoid
349 // cases where we emit a global with a lot of zeros? Should
350 // we try to avoid short globals?
Eli Friedmanc9e8f602009-01-25 02:32:41 +0000351 if (E->isConstantInitializer(CGF.getContext(), 0)) {
Eli Friedman994ffef2008-11-30 02:11:09 +0000352 llvm::Constant* C = CGF.CGM.EmitConstantExpr(E, &CGF);
353 llvm::GlobalVariable* GV =
354 new llvm::GlobalVariable(C->getType(), true,
355 llvm::GlobalValue::InternalLinkage,
356 C, "", &CGF.CGM.getModule(), 0);
357 CGF.EmitAggregateCopy(DestPtr, GV, E->getType());
358 return;
359 }
Eli Friedmana385b3c2008-12-02 01:17:45 +0000360#endif
Douglas Gregora9c87802009-01-29 19:42:23 +0000361 if (E->hadArrayRangeDesignator()) {
362 CGF.ErrorUnsupported(E, "GNU array range designator extension");
363 }
364
Chris Lattnerf81557c2008-04-04 18:42:16 +0000365 // Handle initialization of an array.
366 if (E->getType()->isArrayType()) {
367 const llvm::PointerType *APType =
368 cast<llvm::PointerType>(DestPtr->getType());
369 const llvm::ArrayType *AType =
370 cast<llvm::ArrayType>(APType->getElementType());
371
372 uint64_t NumInitElements = E->getNumInits();
Eli Friedman922696f2008-05-19 17:51:16 +0000373
Chris Lattner96196622008-07-26 22:37:01 +0000374 if (E->getNumInits() > 0) {
375 QualType T1 = E->getType();
376 QualType T2 = E->getInit(0)->getType();
377 if (CGF.getContext().getCanonicalType(T1).getUnqualifiedType() ==
378 CGF.getContext().getCanonicalType(T2).getUnqualifiedType()) {
379 EmitAggLoadOfLValue(E->getInit(0));
380 return;
381 }
Eli Friedman922696f2008-05-19 17:51:16 +0000382 }
383
Chris Lattnerf81557c2008-04-04 18:42:16 +0000384 uint64_t NumArrayElements = AType->getNumElements();
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000385 QualType ElementType = CGF.getContext().getCanonicalType(E->getType());
Douglas Gregor4c678342009-01-28 21:54:33 +0000386 ElementType = CGF.getContext().getAsArrayType(ElementType)->getElementType();
Chris Lattnerf81557c2008-04-04 18:42:16 +0000387
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000388 unsigned CVRqualifier = ElementType.getCVRQualifiers();
Eli Friedman1e692ac2008-06-13 23:01:12 +0000389
Chris Lattnerf81557c2008-04-04 18:42:16 +0000390 for (uint64_t i = 0; i != NumArrayElements; ++i) {
391 llvm::Value *NextVal = Builder.CreateStructGEP(DestPtr, i, ".array");
392 if (i < NumInitElements)
Eli Friedman1e692ac2008-06-13 23:01:12 +0000393 EmitInitializationToLValue(E->getInit(i),
394 LValue::MakeAddr(NextVal, CVRqualifier));
Chris Lattnerf81557c2008-04-04 18:42:16 +0000395 else
Eli Friedman1e692ac2008-06-13 23:01:12 +0000396 EmitNullInitializationToLValue(LValue::MakeAddr(NextVal, CVRqualifier),
Chris Lattnerf81557c2008-04-04 18:42:16 +0000397 ElementType);
Lauro Ramos Venancio145cd892008-02-19 19:27:31 +0000398 }
Chris Lattnerf81557c2008-04-04 18:42:16 +0000399 return;
400 }
401
402 assert(E->getType()->isRecordType() && "Only support structs/unions here!");
403
404 // Do struct initialization; this code just sets each individual member
405 // to the approprate value. This makes bitfield support automatic;
406 // the disadvantage is that the generated code is more difficult for
407 // the optimizer, especially with bitfields.
408 unsigned NumInitElements = E->getNumInits();
409 RecordDecl *SD = E->getType()->getAsRecordType()->getDecl();
Chris Lattnerf81557c2008-04-04 18:42:16 +0000410 unsigned CurInitVal = 0;
Douglas Gregor0bb76892009-01-29 16:53:55 +0000411
412 if (E->getType()->isUnionType()) {
413 // Only initialize one field of a union. The field itself is
414 // specified by the initializer list.
415 if (!E->getInitializedFieldInUnion()) {
416 // Empty union; we have nothing to do.
417
418#ifndef NDEBUG
419 // Make sure that it's really an empty and not a failure of
420 // semantic analysis.
Douglas Gregor6ab35242009-04-09 21:40:53 +0000421 for (RecordDecl::field_iterator Field = SD->field_begin(CGF.getContext()),
422 FieldEnd = SD->field_end(CGF.getContext());
Douglas Gregor0bb76892009-01-29 16:53:55 +0000423 Field != FieldEnd; ++Field)
424 assert(Field->isUnnamedBitfield() && "Only unnamed bitfields allowed");
425#endif
426 return;
427 }
428
429 // FIXME: volatility
430 FieldDecl *Field = E->getInitializedFieldInUnion();
431 LValue FieldLoc = CGF.EmitLValueForField(DestPtr, Field, true, 0);
432
433 if (NumInitElements) {
434 // Store the initializer into the field
435 EmitInitializationToLValue(E->getInit(0), FieldLoc);
436 } else {
437 // Default-initialize to null
438 EmitNullInitializationToLValue(FieldLoc, Field->getType());
439 }
440
441 return;
442 }
Chris Lattnerf81557c2008-04-04 18:42:16 +0000443
444 // Here we iterate over the fields; this makes it simpler to both
445 // default-initialize fields and skip over unnamed fields.
Douglas Gregor6ab35242009-04-09 21:40:53 +0000446 for (RecordDecl::field_iterator Field = SD->field_begin(CGF.getContext()),
447 FieldEnd = SD->field_end(CGF.getContext());
Douglas Gregor44b43212008-12-11 16:49:14 +0000448 Field != FieldEnd; ++Field) {
449 // We're done once we hit the flexible array member
450 if (Field->getType()->isIncompleteArrayType())
451 break;
452
Douglas Gregor34e79462009-01-28 23:36:17 +0000453 if (Field->isUnnamedBitfield())
Chris Lattnerf81557c2008-04-04 18:42:16 +0000454 continue;
Douglas Gregor34e79462009-01-28 23:36:17 +0000455
Eli Friedman1e692ac2008-06-13 23:01:12 +0000456 // FIXME: volatility
Douglas Gregor0bb76892009-01-29 16:53:55 +0000457 LValue FieldLoc = CGF.EmitLValueForField(DestPtr, *Field, false, 0);
Chris Lattnerf81557c2008-04-04 18:42:16 +0000458 if (CurInitVal < NumInitElements) {
459 // Store the initializer into the field
Chris Lattnerf81557c2008-04-04 18:42:16 +0000460 EmitInitializationToLValue(E->getInit(CurInitVal++), FieldLoc);
461 } else {
462 // We're out of initalizers; default-initialize to null
Douglas Gregor44b43212008-12-11 16:49:14 +0000463 EmitNullInitializationToLValue(FieldLoc, Field->getType());
Chris Lattnerf81557c2008-04-04 18:42:16 +0000464 }
Lauro Ramos Venancio145cd892008-02-19 19:27:31 +0000465 }
Devang Patel636c3d02007-10-26 17:44:44 +0000466}
467
Chris Lattneree755f92007-08-21 04:59:27 +0000468//===----------------------------------------------------------------------===//
469// Entry Points into this File
470//===----------------------------------------------------------------------===//
471
472/// EmitAggExpr - Emit the computation of the specified expression of
473/// aggregate type. The result is computed into DestPtr. Note that if
474/// DestPtr is null, the value of the aggregate expression is not needed.
475void CodeGenFunction::EmitAggExpr(const Expr *E, llvm::Value *DestPtr,
476 bool VolatileDest) {
477 assert(E && hasAggregateLLVMType(E->getType()) &&
478 "Invalid aggregate expression to emit");
479
480 AggExprEmitter(*this, DestPtr, VolatileDest).Visit(const_cast<Expr*>(E));
481}
Daniel Dunbar7482d122008-09-09 20:49:46 +0000482
483void CodeGenFunction::EmitAggregateClear(llvm::Value *DestPtr, QualType Ty) {
484 assert(!Ty->isAnyComplexType() && "Shouldn't happen for complex");
485
486 EmitMemSetToZero(DestPtr, Ty);
487}
488
489void CodeGenFunction::EmitAggregateCopy(llvm::Value *DestPtr,
490 llvm::Value *SrcPtr, QualType Ty) {
491 assert(!Ty->isAnyComplexType() && "Shouldn't happen for complex");
492
Chris Lattner83c96292009-02-28 18:31:01 +0000493 // Aggregate assignment turns into llvm.memcpy. This is almost valid per
Chris Lattnerca4fc2c2009-02-28 18:18:58 +0000494 // C99 6.5.16.1p3, which states "If the value being stored in an object is
495 // read from another object that overlaps in anyway the storage of the first
496 // object, then the overlap shall be exact and the two objects shall have
497 // qualified or unqualified versions of a compatible type."
498 //
Chris Lattner83c96292009-02-28 18:31:01 +0000499 // memcpy is not defined if the source and destination pointers are exactly
Chris Lattnerca4fc2c2009-02-28 18:18:58 +0000500 // equal, but other compilers do this optimization, and almost every memcpy
501 // implementation handles this case safely. If there is a libc that does not
502 // safely handle this, we can add a target hook.
Daniel Dunbar7482d122008-09-09 20:49:46 +0000503 const llvm::Type *BP = llvm::PointerType::getUnqual(llvm::Type::Int8Ty);
504 if (DestPtr->getType() != BP)
505 DestPtr = Builder.CreateBitCast(DestPtr, BP, "tmp");
506 if (SrcPtr->getType() != BP)
507 SrcPtr = Builder.CreateBitCast(SrcPtr, BP, "tmp");
508
509 // Get size and alignment info for this aggregate.
510 std::pair<uint64_t, unsigned> TypeInfo = getContext().getTypeInfo(Ty);
511
512 // FIXME: Handle variable sized types.
513 const llvm::Type *IntPtr = llvm::IntegerType::get(LLVMPointerWidth);
514
Chris Lattnerca4fc2c2009-02-28 18:18:58 +0000515 Builder.CreateCall4(CGM.getMemCpyFn(),
Daniel Dunbar7482d122008-09-09 20:49:46 +0000516 DestPtr, SrcPtr,
517 // TypeInfo.first describes size in bits.
518 llvm::ConstantInt::get(IntPtr, TypeInfo.first/8),
519 llvm::ConstantInt::get(llvm::Type::Int32Ty,
520 TypeInfo.second/8));
521}