blob: 1b554b2205539e7536fbf7638c016ce336f2736b [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"
17#include "clang/AST/StmtVisitor.h"
Chris Lattner883f6a72007-08-11 00:04:45 +000018#include "llvm/Constants.h"
19#include "llvm/Function.h"
Devang Patel636c3d02007-10-26 17:44:44 +000020#include "llvm/GlobalVariable.h"
Chris Lattner9c033562007-08-21 04:25:47 +000021#include "llvm/Support/Compiler.h"
Chris Lattnerf81557c2008-04-04 18:42:16 +000022#include "llvm/Intrinsics.h"
Chris Lattneraf6f5282007-08-10 20:13:28 +000023using namespace clang;
24using namespace CodeGen;
Chris Lattner883f6a72007-08-11 00:04:45 +000025
Chris Lattner9c033562007-08-21 04:25:47 +000026//===----------------------------------------------------------------------===//
27// Aggregate Expression Emitter
28//===----------------------------------------------------------------------===//
29
30namespace {
31class VISIBILITY_HIDDEN AggExprEmitter : public StmtVisitor<AggExprEmitter> {
32 CodeGenFunction &CGF;
Daniel Dunbar45d196b2008-11-01 01:53:16 +000033 CGBuilderTy &Builder;
Chris Lattner9c033562007-08-21 04:25:47 +000034 llvm::Value *DestPtr;
35 bool VolatileDest;
36public:
37 AggExprEmitter(CodeGenFunction &cgf, llvm::Value *destPtr, bool volatileDest)
Chris Lattnerbfc0c1a2007-08-26 23:13:56 +000038 : CGF(cgf), Builder(CGF.Builder),
39 DestPtr(destPtr), VolatileDest(volatileDest) {
Chris Lattner9c033562007-08-21 04:25:47 +000040 }
41
Chris Lattneree755f92007-08-21 04:59:27 +000042 //===--------------------------------------------------------------------===//
43 // Utilities
44 //===--------------------------------------------------------------------===//
45
Chris Lattner9c033562007-08-21 04:25:47 +000046 /// EmitAggLoadOfLValue - Given an expression with aggregate type that
47 /// represents a value lvalue, this method emits the address of the lvalue,
48 /// then loads the result into DestPtr.
49 void EmitAggLoadOfLValue(const Expr *E);
50
Lauro Ramos Venancio13e22cf2008-02-19 22:04:22 +000051 void EmitNonConstInit(InitListExpr *E);
Eli Friedman922696f2008-05-19 17:51:16 +000052
Chris Lattneree755f92007-08-21 04:59:27 +000053 //===--------------------------------------------------------------------===//
54 // Visitor Methods
55 //===--------------------------------------------------------------------===//
56
Chris Lattner9c033562007-08-21 04:25:47 +000057 void VisitStmt(Stmt *S) {
Daniel Dunbar488e9932008-08-16 00:56:44 +000058 CGF.ErrorUnsupported(S, "aggregate expression");
Chris Lattner9c033562007-08-21 04:25:47 +000059 }
60 void VisitParenExpr(ParenExpr *PE) { Visit(PE->getSubExpr()); }
61
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); }
Eli Friedmanb1851242008-05-27 15:51:49 +000067 void VisitCompoundLiteralExpr(CompoundLiteralExpr *E)
68 { EmitAggLoadOfLValue(E); }
Seo Sanghyeon9b73b392007-12-14 02:04:12 +000069
70 void VisitArraySubscriptExpr(ArraySubscriptExpr *E) {
71 EmitAggLoadOfLValue(E);
72 }
Chris Lattner9c033562007-08-21 04:25:47 +000073
74 // Operators.
75 // case Expr::UnaryOperatorClass:
Chris Lattner9c033562007-08-21 04:25:47 +000076 // case Expr::CastExprClass:
Anders Carlssone4707ff2008-01-14 06:28:57 +000077 void VisitImplicitCastExpr(ImplicitCastExpr *E);
Anders Carlsson148fe672007-10-31 22:04:46 +000078 void VisitCallExpr(const CallExpr *E);
Chris Lattnerb2d963f2007-08-31 22:54:14 +000079 void VisitStmtExpr(const StmtExpr *E);
Chris Lattner9c033562007-08-21 04:25:47 +000080 void VisitBinaryOperator(const BinaryOperator *BO);
Chris Lattner03d6fb92007-08-21 04:43:17 +000081 void VisitBinAssign(const BinaryOperator *E);
Nate Begeman796ef3d2008-01-31 05:38:29 +000082 void VisitOverloadExpr(const OverloadExpr *E);
Eli Friedman07fa52a2008-05-20 07:56:31 +000083 void VisitBinComma(const BinaryOperator *E);
Chris Lattner9c033562007-08-21 04:25:47 +000084
Chris Lattner8fdf3282008-06-24 17:04:18 +000085 void VisitObjCMessageExpr(ObjCMessageExpr *E);
Daniel Dunbar0a04d772008-08-23 10:51:21 +000086 void VisitObjCIvarRefExpr(ObjCIvarRefExpr *E) {
87 EmitAggLoadOfLValue(E);
88 }
Daniel Dunbar9c3fc702008-08-27 06:57:25 +000089 void VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *E);
Chris Lattner9c033562007-08-21 04:25:47 +000090
91 void VisitConditionalOperator(const ConditionalOperator *CO);
Devang Patel636c3d02007-10-26 17:44:44 +000092 void VisitInitListExpr(InitListExpr *E);
Chris Lattner04421082008-04-08 04:40:51 +000093 void VisitCXXDefaultArgExpr(CXXDefaultArgExpr *DAE) {
94 Visit(DAE->getExpr());
95 }
Eli Friedmanb1851242008-05-27 15:51:49 +000096 void VisitVAArgExpr(VAArgExpr *E);
Chris Lattnerf81557c2008-04-04 18:42:16 +000097
98 void EmitInitializationToLValue(Expr *E, LValue Address);
99 void EmitNullInitializationToLValue(LValue Address, QualType T);
Chris Lattner9c033562007-08-21 04:25:47 +0000100 // case Expr::ChooseExprClass:
Lauro Ramos Venancio305762c2008-02-18 22:44:02 +0000101
Chris Lattner9c033562007-08-21 04:25:47 +0000102};
103} // end anonymous namespace.
104
Chris Lattneree755f92007-08-21 04:59:27 +0000105//===----------------------------------------------------------------------===//
106// Utilities
107//===----------------------------------------------------------------------===//
Chris Lattner9c033562007-08-21 04:25:47 +0000108
Chris Lattner883f6a72007-08-11 00:04:45 +0000109/// EmitAggLoadOfLValue - Given an expression with aggregate type that
110/// represents a value lvalue, this method emits the address of the lvalue,
111/// then loads the result into DestPtr.
Chris Lattner9c033562007-08-21 04:25:47 +0000112void AggExprEmitter::EmitAggLoadOfLValue(const Expr *E) {
113 LValue LV = CGF.EmitLValue(E);
Chris Lattner883f6a72007-08-11 00:04:45 +0000114 assert(LV.isSimple() && "Can't have aggregate bitfield, vector, etc");
115 llvm::Value *SrcPtr = LV.getAddress();
116
117 // If the result is ignored, don't copy from the value.
118 if (DestPtr == 0)
119 // FIXME: If the source is volatile, we must read from it.
120 return;
121
Daniel Dunbar7482d122008-09-09 20:49:46 +0000122 CGF.EmitAggregateCopy(DestPtr, SrcPtr, E->getType());
Chris Lattner883f6a72007-08-11 00:04:45 +0000123}
124
Chris Lattneree755f92007-08-21 04:59:27 +0000125//===----------------------------------------------------------------------===//
126// Visitor Methods
127//===----------------------------------------------------------------------===//
128
Chris Lattner96196622008-07-26 22:37:01 +0000129void AggExprEmitter::VisitImplicitCastExpr(ImplicitCastExpr *E) {
Eli Friedmanff6e2b72008-02-11 01:09:17 +0000130 assert(CGF.getContext().typesAreCompatible(
Chris Lattner96196622008-07-26 22:37:01 +0000131 E->getSubExpr()->getType().getUnqualifiedType(),
132 E->getType().getUnqualifiedType()) &&
133 "Implicit cast types must be compatible");
Anders Carlssone4707ff2008-01-14 06:28:57 +0000134 Visit(E->getSubExpr());
135}
136
Chris Lattner96196622008-07-26 22:37:01 +0000137void AggExprEmitter::VisitCallExpr(const CallExpr *E) {
Anders Carlsson148fe672007-10-31 22:04:46 +0000138 RValue RV = CGF.EmitCallExpr(E);
139 assert(RV.isAggregate() && "Return value must be aggregate value!");
140
141 // If the result is ignored, don't copy from the value.
142 if (DestPtr == 0)
143 // FIXME: If the source is volatile, we must read from it.
144 return;
145
Daniel Dunbar7482d122008-09-09 20:49:46 +0000146 CGF.EmitAggregateCopy(DestPtr, RV.getAggregateAddr(), E->getType());
Anders Carlsson148fe672007-10-31 22:04:46 +0000147}
Chris Lattner96196622008-07-26 22:37:01 +0000148
149void AggExprEmitter::VisitObjCMessageExpr(ObjCMessageExpr *E) {
Daniel Dunbar8f2926b2008-08-23 03:46:30 +0000150 RValue RV = CGF.EmitObjCMessageExpr(E);
151 assert(RV.isAggregate() && "Return value must be aggregate value!");
Chris Lattner8fdf3282008-06-24 17:04:18 +0000152
153 // If the result is ignored, don't copy from the value.
154 if (DestPtr == 0)
Daniel Dunbar8f2926b2008-08-23 03:46:30 +0000155 // FIXME: If the source is volatile, we must read from it.
Chris Lattner8fdf3282008-06-24 17:04:18 +0000156 return;
157
Daniel Dunbar7482d122008-09-09 20:49:46 +0000158 CGF.EmitAggregateCopy(DestPtr, RV.getAggregateAddr(), E->getType());
Chris Lattner8fdf3282008-06-24 17:04:18 +0000159}
Anders Carlsson148fe672007-10-31 22:04:46 +0000160
Daniel Dunbar9c3fc702008-08-27 06:57:25 +0000161void AggExprEmitter::VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *E) {
162 RValue RV = CGF.EmitObjCPropertyGet(E);
163 assert(RV.isAggregate() && "Return value must be aggregate value!");
164
165 // If the result is ignored, don't copy from the value.
166 if (DestPtr == 0)
167 // FIXME: If the source is volatile, we must read from it.
168 return;
169
Daniel Dunbar7482d122008-09-09 20:49:46 +0000170 CGF.EmitAggregateCopy(DestPtr, RV.getAggregateAddr(), E->getType());
Daniel Dunbar9c3fc702008-08-27 06:57:25 +0000171}
172
Chris Lattner96196622008-07-26 22:37:01 +0000173void AggExprEmitter::VisitOverloadExpr(const OverloadExpr *E) {
Nate Begeman796ef3d2008-01-31 05:38:29 +0000174 RValue RV = CGF.EmitCallExpr(E->getFn(), E->arg_begin(),
Ted Kremenek55499762008-06-17 02:43:46 +0000175 E->arg_end(CGF.getContext()));
176
Nate Begeman796ef3d2008-01-31 05:38:29 +0000177 assert(RV.isAggregate() && "Return value must be aggregate value!");
178
179 // If the result is ignored, don't copy from the value.
180 if (DestPtr == 0)
181 // FIXME: If the source is volatile, we must read from it.
182 return;
183
Daniel Dunbar7482d122008-09-09 20:49:46 +0000184 CGF.EmitAggregateCopy(DestPtr, RV.getAggregateAddr(), E->getType());
Nate Begeman796ef3d2008-01-31 05:38:29 +0000185}
186
Chris Lattner96196622008-07-26 22:37:01 +0000187void AggExprEmitter::VisitBinComma(const BinaryOperator *E) {
Eli Friedman07fa52a2008-05-20 07:56:31 +0000188 CGF.EmitAnyExpr(E->getLHS());
189 CGF.EmitAggExpr(E->getRHS(), DestPtr, false);
190}
191
Chris Lattnerb2d963f2007-08-31 22:54:14 +0000192void AggExprEmitter::VisitStmtExpr(const StmtExpr *E) {
193 CGF.EmitCompoundStmt(*E->getSubStmt(), true, DestPtr, VolatileDest);
194}
195
Chris Lattner9c033562007-08-21 04:25:47 +0000196void AggExprEmitter::VisitBinaryOperator(const BinaryOperator *E) {
Daniel Dunbar488e9932008-08-16 00:56:44 +0000197 CGF.ErrorUnsupported(E, "aggregate binary expression");
Chris Lattneree755f92007-08-21 04:59:27 +0000198}
199
Chris Lattner03d6fb92007-08-21 04:43:17 +0000200void AggExprEmitter::VisitBinAssign(const BinaryOperator *E) {
Eli Friedmanff6e2b72008-02-11 01:09:17 +0000201 // For an assignment to work, the value on the right has
202 // to be compatible with the value on the left.
203 assert(CGF.getContext().typesAreCompatible(
204 E->getLHS()->getType().getUnqualifiedType(),
205 E->getRHS()->getType().getUnqualifiedType())
206 && "Invalid assignment");
Chris Lattner9c033562007-08-21 04:25:47 +0000207 LValue LHS = CGF.EmitLValue(E->getLHS());
Chris Lattner883f6a72007-08-11 00:04:45 +0000208
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000209 // We have to special case property setters, otherwise we must have
210 // a simple lvalue (no aggregates inside vectors, bitfields).
211 if (LHS.isPropertyRef()) {
212 // FIXME: Volatility?
213 llvm::Value *AggLoc = DestPtr;
214 if (!AggLoc)
215 AggLoc = CGF.CreateTempAlloca(CGF.ConvertType(E->getRHS()->getType()));
216 CGF.EmitAggExpr(E->getRHS(), AggLoc, false);
217 CGF.EmitObjCPropertySet(LHS.getPropertyRefExpr(),
218 RValue::getAggregate(AggLoc));
219 } else {
220 // Codegen the RHS so that it stores directly into the LHS.
221 CGF.EmitAggExpr(E->getRHS(), LHS.getAddress(), false /*FIXME: VOLATILE LHS*/);
222
223 if (DestPtr == 0)
224 return;
225
226 // If the result of the assignment is used, copy the RHS there also.
Daniel Dunbar7482d122008-09-09 20:49:46 +0000227 CGF.EmitAggregateCopy(DestPtr, LHS.getAddress(), E->getType());
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000228 }
Chris Lattner883f6a72007-08-11 00:04:45 +0000229}
230
Chris Lattner9c033562007-08-21 04:25:47 +0000231void AggExprEmitter::VisitConditionalOperator(const ConditionalOperator *E) {
Daniel Dunbar9615ecb2008-11-13 01:38:36 +0000232 llvm::BasicBlock *LHSBlock = CGF.createBasicBlock("cond.true");
233 llvm::BasicBlock *RHSBlock = CGF.createBasicBlock("cond.false");
234 llvm::BasicBlock *ContBlock = CGF.createBasicBlock("cond.end");
Chris Lattner883f6a72007-08-11 00:04:45 +0000235
Chris Lattner9c033562007-08-21 04:25:47 +0000236 llvm::Value *Cond = CGF.EvaluateExprAsBool(E->getCond());
Chris Lattnerbfc0c1a2007-08-26 23:13:56 +0000237 Builder.CreateCondBr(Cond, LHSBlock, RHSBlock);
Chris Lattner883f6a72007-08-11 00:04:45 +0000238
Chris Lattner9c033562007-08-21 04:25:47 +0000239 CGF.EmitBlock(LHSBlock);
Chris Lattner883f6a72007-08-11 00:04:45 +0000240
241 // Handle the GNU extension for missing LHS.
242 assert(E->getLHS() && "Must have LHS for aggregate value");
243
Chris Lattnerc748f272007-08-21 05:02:10 +0000244 Visit(E->getLHS());
Daniel Dunbard57a8712008-11-11 09:41:28 +0000245 CGF.EmitBranch(ContBlock);
Chris Lattner883f6a72007-08-11 00:04:45 +0000246
Chris Lattner9c033562007-08-21 04:25:47 +0000247 CGF.EmitBlock(RHSBlock);
Chris Lattner883f6a72007-08-11 00:04:45 +0000248
Chris Lattnerc748f272007-08-21 05:02:10 +0000249 Visit(E->getRHS());
Daniel Dunbard57a8712008-11-11 09:41:28 +0000250 CGF.EmitBranch(ContBlock);
Chris Lattner883f6a72007-08-11 00:04:45 +0000251
Chris Lattner9c033562007-08-21 04:25:47 +0000252 CGF.EmitBlock(ContBlock);
Chris Lattner883f6a72007-08-11 00:04:45 +0000253}
Chris Lattneree755f92007-08-21 04:59:27 +0000254
Eli Friedmanb1851242008-05-27 15:51:49 +0000255void AggExprEmitter::VisitVAArgExpr(VAArgExpr *VE) {
256 llvm::Value *ArgValue = CGF.EmitLValue(VE->getSubExpr()).getAddress();
Anders Carlssonddf7cac2008-11-04 05:30:00 +0000257 llvm::Value *ArgPtr = CGF.EmitVAArg(ArgValue, VE->getType());
258
259 if (!ArgPtr)
260 CGF.ErrorUnsupported(VE, "aggregate va_arg expression");
261
Eli Friedmanb1851242008-05-27 15:51:49 +0000262 if (DestPtr)
Eli Friedman1e692ac2008-06-13 23:01:12 +0000263 // FIXME: volatility
Anders Carlssonddf7cac2008-11-04 05:30:00 +0000264 CGF.EmitAggregateCopy(DestPtr, ArgPtr, VE->getType());
Eli Friedmanb1851242008-05-27 15:51:49 +0000265}
266
Lauro Ramos Venancio13e22cf2008-02-19 22:04:22 +0000267void AggExprEmitter::EmitNonConstInit(InitListExpr *E) {
Chris Lattnerbe20bb52008-10-26 23:53:12 +0000268 if (E->hadDesignators()) {
269 CGF.ErrorUnsupported(E, "initializer list with designators");
270 return;
271 }
272
Lauro Ramos Venancio13e22cf2008-02-19 22:04:22 +0000273 const llvm::PointerType *APType =
274 cast<llvm::PointerType>(DestPtr->getType());
275 const llvm::Type *DestType = APType->getElementType();
Lauro Ramos Venancio305762c2008-02-18 22:44:02 +0000276
277 if (const llvm::ArrayType *AType = dyn_cast<llvm::ArrayType>(DestType)) {
Lauro Ramos Venancio13e22cf2008-02-19 22:04:22 +0000278 unsigned NumInitElements = E->getNumInits();
Lauro Ramos Venancio305762c2008-02-18 22:44:02 +0000279
Lauro Ramos Venancio305762c2008-02-18 22:44:02 +0000280 unsigned i;
281 for (i = 0; i != NumInitElements; ++i) {
Chris Lattner36b6a0a2008-03-19 05:19:41 +0000282 llvm::Value *NextVal = Builder.CreateStructGEP(DestPtr, i, ".array");
Lauro Ramos Venancio13e22cf2008-02-19 22:04:22 +0000283 Expr *Init = E->getInit(i);
284 if (isa<InitListExpr>(Init))
285 CGF.EmitAggExpr(Init, NextVal, VolatileDest);
286 else
Eli Friedman1e692ac2008-06-13 23:01:12 +0000287 // FIXME: volatility
Lauro Ramos Venancio13e22cf2008-02-19 22:04:22 +0000288 Builder.CreateStore(CGF.EmitScalarExpr(Init), NextVal);
Lauro Ramos Venancio305762c2008-02-18 22:44:02 +0000289 }
290
291 // Emit remaining default initializers
292 unsigned NumArrayElements = AType->getNumElements();
Lauro Ramos Venancio13e22cf2008-02-19 22:04:22 +0000293 QualType QType = E->getInit(0)->getType();
294 const llvm::Type *EType = AType->getElementType();
Lauro Ramos Venancio305762c2008-02-18 22:44:02 +0000295 for (/*Do not initialize i*/; i < NumArrayElements; ++i) {
Chris Lattner36b6a0a2008-03-19 05:19:41 +0000296 llvm::Value *NextVal = Builder.CreateStructGEP(DestPtr, i, ".array");
Dan Gohmand79a7262008-05-22 22:12:56 +0000297 if (EType->isSingleValueType())
Eli Friedman1e692ac2008-06-13 23:01:12 +0000298 // FIXME: volatility
Lauro Ramos Venancio13e22cf2008-02-19 22:04:22 +0000299 Builder.CreateStore(llvm::Constant::getNullValue(EType), NextVal);
300 else
Daniel Dunbar7482d122008-09-09 20:49:46 +0000301 CGF.EmitAggregateClear(NextVal, QType);
Lauro Ramos Venancio305762c2008-02-18 22:44:02 +0000302 }
Lauro Ramos Venancio13e22cf2008-02-19 22:04:22 +0000303 } else
304 assert(false && "Invalid initializer");
Lauro Ramos Venancio305762c2008-02-18 22:44:02 +0000305}
306
Chris Lattnerf81557c2008-04-04 18:42:16 +0000307void AggExprEmitter::EmitInitializationToLValue(Expr* E, LValue LV) {
308 // FIXME: Are initializers affected by volatile?
309 if (E->getType()->isComplexType()) {
310 CGF.EmitComplexExprIntoAddr(E, LV.getAddress(), false);
Eli Friedmanc8ba9612008-05-12 15:06:05 +0000311 } else if (CGF.hasAggregateLLVMType(E->getType())) {
312 CGF.EmitAnyExpr(E, LV.getAddress(), false);
313 } else {
314 CGF.EmitStoreThroughLValue(CGF.EmitAnyExpr(E), LV, E->getType());
Chris Lattnerf81557c2008-04-04 18:42:16 +0000315 }
Chris Lattnerf81557c2008-04-04 18:42:16 +0000316}
317
318void AggExprEmitter::EmitNullInitializationToLValue(LValue LV, QualType T) {
319 if (!CGF.hasAggregateLLVMType(T)) {
320 // For non-aggregates, we can store zero
Daniel Dunbar82397132008-08-06 05:32:55 +0000321 llvm::Value *Null = llvm::Constant::getNullValue(CGF.ConvertType(T));
322 CGF.EmitStoreThroughLValue(RValue::get(Null), LV, T);
Lauro Ramos Venancio145cd892008-02-19 19:27:31 +0000323 } else {
Chris Lattnerf81557c2008-04-04 18:42:16 +0000324 // Otherwise, just memset the whole thing to zero. This is legal
325 // because in LLVM, all default initializers are guaranteed to have a
326 // bit pattern of all zeros.
327 // There's a potential optimization opportunity in combining
328 // memsets; that would be easy for arrays, but relatively
329 // difficult for structures with the current code.
Chris Lattnerd6777762008-11-21 16:26:37 +0000330 llvm::Value *MemSet = CGF.CGM.getIntrinsic(llvm::Intrinsic::memset_i64);
Chris Lattnerf81557c2008-04-04 18:42:16 +0000331 uint64_t Size = CGF.getContext().getTypeSize(T);
332
333 const llvm::Type *BP = llvm::PointerType::getUnqual(llvm::Type::Int8Ty);
334 llvm::Value* DestPtr = Builder.CreateBitCast(LV.getAddress(), BP, "tmp");
Chris Lattner3eae03e2008-05-06 00:56:42 +0000335 Builder.CreateCall4(MemSet, DestPtr,
336 llvm::ConstantInt::get(llvm::Type::Int8Ty, 0),
337 llvm::ConstantInt::get(llvm::Type::Int64Ty, Size/8),
338 llvm::ConstantInt::get(llvm::Type::Int32Ty, 0));
Chris Lattnerf81557c2008-04-04 18:42:16 +0000339 }
340}
341
Chris Lattnerf81557c2008-04-04 18:42:16 +0000342void AggExprEmitter::VisitInitListExpr(InitListExpr *E) {
Chris Lattnerbe20bb52008-10-26 23:53:12 +0000343 if (E->hadDesignators()) {
344 CGF.ErrorUnsupported(E, "initializer list with designators");
345 return;
346 }
347
Daniel Dunbarbe38d022008-08-23 18:44:10 +0000348 // FIXME: For constant expressions, call into const expr emitter so
349 // that we can emit a memcpy instead of storing the individual
350 // members. This is purely for perf; both codepaths lead to
351 // equivalent (although not necessarily identical) code. It's worth
352 // noting that LLVM keeps on getting smarter, though, so it might
353 // not be worth bothering.
Chris Lattnerf81557c2008-04-04 18:42:16 +0000354
355 // Handle initialization of an array.
356 if (E->getType()->isArrayType()) {
357 const llvm::PointerType *APType =
358 cast<llvm::PointerType>(DestPtr->getType());
359 const llvm::ArrayType *AType =
360 cast<llvm::ArrayType>(APType->getElementType());
361
362 uint64_t NumInitElements = E->getNumInits();
Eli Friedman922696f2008-05-19 17:51:16 +0000363
Chris Lattner96196622008-07-26 22:37:01 +0000364 if (E->getNumInits() > 0) {
365 QualType T1 = E->getType();
366 QualType T2 = E->getInit(0)->getType();
367 if (CGF.getContext().getCanonicalType(T1).getUnqualifiedType() ==
368 CGF.getContext().getCanonicalType(T2).getUnqualifiedType()) {
369 EmitAggLoadOfLValue(E->getInit(0));
370 return;
371 }
Eli Friedman922696f2008-05-19 17:51:16 +0000372 }
373
Chris Lattnerf81557c2008-04-04 18:42:16 +0000374 uint64_t NumArrayElements = AType->getNumElements();
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000375 QualType ElementType = CGF.getContext().getCanonicalType(E->getType());
376 ElementType =CGF.getContext().getAsArrayType(ElementType)->getElementType();
Chris Lattnerf81557c2008-04-04 18:42:16 +0000377
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000378 unsigned CVRqualifier = ElementType.getCVRQualifiers();
Eli Friedman1e692ac2008-06-13 23:01:12 +0000379
Chris Lattnerf81557c2008-04-04 18:42:16 +0000380 for (uint64_t i = 0; i != NumArrayElements; ++i) {
381 llvm::Value *NextVal = Builder.CreateStructGEP(DestPtr, i, ".array");
382 if (i < NumInitElements)
Eli Friedman1e692ac2008-06-13 23:01:12 +0000383 EmitInitializationToLValue(E->getInit(i),
384 LValue::MakeAddr(NextVal, CVRqualifier));
Chris Lattnerf81557c2008-04-04 18:42:16 +0000385 else
Eli Friedman1e692ac2008-06-13 23:01:12 +0000386 EmitNullInitializationToLValue(LValue::MakeAddr(NextVal, CVRqualifier),
Chris Lattnerf81557c2008-04-04 18:42:16 +0000387 ElementType);
Lauro Ramos Venancio145cd892008-02-19 19:27:31 +0000388 }
Chris Lattnerf81557c2008-04-04 18:42:16 +0000389 return;
390 }
391
392 assert(E->getType()->isRecordType() && "Only support structs/unions here!");
393
394 // Do struct initialization; this code just sets each individual member
395 // to the approprate value. This makes bitfield support automatic;
396 // the disadvantage is that the generated code is more difficult for
397 // the optimizer, especially with bitfields.
398 unsigned NumInitElements = E->getNumInits();
399 RecordDecl *SD = E->getType()->getAsRecordType()->getDecl();
400 unsigned NumMembers = SD->getNumMembers() - SD->hasFlexibleArrayMember();
401 unsigned CurInitVal = 0;
402 bool isUnion = E->getType()->isUnionType();
403
404 // Here we iterate over the fields; this makes it simpler to both
405 // default-initialize fields and skip over unnamed fields.
406 for (unsigned CurFieldNo = 0; CurFieldNo != NumMembers; ++CurFieldNo) {
Chris Lattnerf81557c2008-04-04 18:42:16 +0000407 FieldDecl *CurField = SD->getMember(CurFieldNo);
408 if (CurField->getIdentifier() == 0) {
409 // Initializers can't initialize unnamed fields, e.g. "int : 20;"
410 continue;
411 }
Eli Friedman1e692ac2008-06-13 23:01:12 +0000412 // FIXME: volatility
413 LValue FieldLoc = CGF.EmitLValueForField(DestPtr, CurField, isUnion,0);
Chris Lattnerf81557c2008-04-04 18:42:16 +0000414 if (CurInitVal < NumInitElements) {
415 // Store the initializer into the field
416 // This will probably have to get a bit smarter when we support
417 // designators in initializers
418 EmitInitializationToLValue(E->getInit(CurInitVal++), FieldLoc);
419 } else {
420 // We're out of initalizers; default-initialize to null
421 EmitNullInitializationToLValue(FieldLoc, CurField->getType());
422 }
423
424 // Unions only initialize one field.
425 // (things can get weird with designators, but they aren't
426 // supported yet.)
427 if (E->getType()->isUnionType())
428 break;
Lauro Ramos Venancio145cd892008-02-19 19:27:31 +0000429 }
Devang Patel636c3d02007-10-26 17:44:44 +0000430}
431
Chris Lattneree755f92007-08-21 04:59:27 +0000432//===----------------------------------------------------------------------===//
433// Entry Points into this File
434//===----------------------------------------------------------------------===//
435
436/// EmitAggExpr - Emit the computation of the specified expression of
437/// aggregate type. The result is computed into DestPtr. Note that if
438/// DestPtr is null, the value of the aggregate expression is not needed.
439void CodeGenFunction::EmitAggExpr(const Expr *E, llvm::Value *DestPtr,
440 bool VolatileDest) {
441 assert(E && hasAggregateLLVMType(E->getType()) &&
442 "Invalid aggregate expression to emit");
443
444 AggExprEmitter(*this, DestPtr, VolatileDest).Visit(const_cast<Expr*>(E));
445}
Daniel Dunbar7482d122008-09-09 20:49:46 +0000446
447void CodeGenFunction::EmitAggregateClear(llvm::Value *DestPtr, QualType Ty) {
448 assert(!Ty->isAnyComplexType() && "Shouldn't happen for complex");
449
450 EmitMemSetToZero(DestPtr, Ty);
451}
452
453void CodeGenFunction::EmitAggregateCopy(llvm::Value *DestPtr,
454 llvm::Value *SrcPtr, QualType Ty) {
455 assert(!Ty->isAnyComplexType() && "Shouldn't happen for complex");
456
457 // Aggregate assignment turns into llvm.memmove.
458 const llvm::Type *BP = llvm::PointerType::getUnqual(llvm::Type::Int8Ty);
459 if (DestPtr->getType() != BP)
460 DestPtr = Builder.CreateBitCast(DestPtr, BP, "tmp");
461 if (SrcPtr->getType() != BP)
462 SrcPtr = Builder.CreateBitCast(SrcPtr, BP, "tmp");
463
464 // Get size and alignment info for this aggregate.
465 std::pair<uint64_t, unsigned> TypeInfo = getContext().getTypeInfo(Ty);
466
467 // FIXME: Handle variable sized types.
468 const llvm::Type *IntPtr = llvm::IntegerType::get(LLVMPointerWidth);
469
470 Builder.CreateCall4(CGM.getMemMoveFn(),
471 DestPtr, SrcPtr,
472 // TypeInfo.first describes size in bits.
473 llvm::ConstantInt::get(IntPtr, TypeInfo.first/8),
474 llvm::ConstantInt::get(llvm::Type::Int32Ty,
475 TypeInfo.second/8));
476}