blob: bc6af1251e5cbba3b6a17271166b21ca69f245a3 [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;
Chris Lattner85e35682008-08-08 19:57:58 +000033 llvm::IRBuilder<> &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
Chris Lattnerbfc0c1a2007-08-26 23:13:56 +000051 void EmitAggregateCopy(llvm::Value *DestPtr, llvm::Value *SrcPtr,
52 QualType EltTy);
Lauro Ramos Venancio13e22cf2008-02-19 22:04:22 +000053
54 void EmitAggregateClear(llvm::Value *DestPtr, QualType Ty);
55
56 void EmitNonConstInit(InitListExpr *E);
Eli Friedman922696f2008-05-19 17:51:16 +000057
Chris Lattneree755f92007-08-21 04:59:27 +000058 //===--------------------------------------------------------------------===//
59 // Visitor Methods
60 //===--------------------------------------------------------------------===//
61
Chris Lattner9c033562007-08-21 04:25:47 +000062 void VisitStmt(Stmt *S) {
Daniel Dunbar488e9932008-08-16 00:56:44 +000063 CGF.ErrorUnsupported(S, "aggregate expression");
Chris Lattner9c033562007-08-21 04:25:47 +000064 }
65 void VisitParenExpr(ParenExpr *PE) { Visit(PE->getSubExpr()); }
66
67 // l-values.
Seo Sanghyeon9b73b392007-12-14 02:04:12 +000068 void VisitDeclRefExpr(DeclRefExpr *DRE) { EmitAggLoadOfLValue(DRE); }
69 void VisitMemberExpr(MemberExpr *ME) { EmitAggLoadOfLValue(ME); }
70 void VisitUnaryDeref(UnaryOperator *E) { EmitAggLoadOfLValue(E); }
Seo Sanghyeonad6ebd62007-12-23 03:11:58 +000071 void VisitStringLiteral(StringLiteral *E) { EmitAggLoadOfLValue(E); }
Eli Friedmanb1851242008-05-27 15:51:49 +000072 void VisitCompoundLiteralExpr(CompoundLiteralExpr *E)
73 { EmitAggLoadOfLValue(E); }
Seo Sanghyeon9b73b392007-12-14 02:04:12 +000074
75 void VisitArraySubscriptExpr(ArraySubscriptExpr *E) {
76 EmitAggLoadOfLValue(E);
77 }
Chris Lattner9c033562007-08-21 04:25:47 +000078
79 // Operators.
80 // case Expr::UnaryOperatorClass:
Chris Lattner9c033562007-08-21 04:25:47 +000081 // case Expr::CastExprClass:
Anders Carlssone4707ff2008-01-14 06:28:57 +000082 void VisitImplicitCastExpr(ImplicitCastExpr *E);
Anders Carlsson148fe672007-10-31 22:04:46 +000083 void VisitCallExpr(const CallExpr *E);
Chris Lattnerb2d963f2007-08-31 22:54:14 +000084 void VisitStmtExpr(const StmtExpr *E);
Chris Lattner9c033562007-08-21 04:25:47 +000085 void VisitBinaryOperator(const BinaryOperator *BO);
Chris Lattner03d6fb92007-08-21 04:43:17 +000086 void VisitBinAssign(const BinaryOperator *E);
Nate Begeman796ef3d2008-01-31 05:38:29 +000087 void VisitOverloadExpr(const OverloadExpr *E);
Eli Friedman07fa52a2008-05-20 07:56:31 +000088 void VisitBinComma(const BinaryOperator *E);
Chris Lattner9c033562007-08-21 04:25:47 +000089
Chris Lattner8fdf3282008-06-24 17:04:18 +000090 void VisitObjCMessageExpr(ObjCMessageExpr *E);
91
Chris Lattner9c033562007-08-21 04:25:47 +000092
93 void VisitConditionalOperator(const ConditionalOperator *CO);
Devang Patel636c3d02007-10-26 17:44:44 +000094 void VisitInitListExpr(InitListExpr *E);
Chris Lattner04421082008-04-08 04:40:51 +000095 void VisitCXXDefaultArgExpr(CXXDefaultArgExpr *DAE) {
96 Visit(DAE->getExpr());
97 }
Eli Friedmanb1851242008-05-27 15:51:49 +000098 void VisitVAArgExpr(VAArgExpr *E);
Chris Lattnerf81557c2008-04-04 18:42:16 +000099
100 void EmitInitializationToLValue(Expr *E, LValue Address);
101 void EmitNullInitializationToLValue(LValue Address, QualType T);
Chris Lattner9c033562007-08-21 04:25:47 +0000102 // case Expr::ChooseExprClass:
Lauro Ramos Venancio305762c2008-02-18 22:44:02 +0000103
Chris Lattner9c033562007-08-21 04:25:47 +0000104};
105} // end anonymous namespace.
106
Chris Lattneree755f92007-08-21 04:59:27 +0000107//===----------------------------------------------------------------------===//
108// Utilities
109//===----------------------------------------------------------------------===//
Chris Lattner9c033562007-08-21 04:25:47 +0000110
Lauro Ramos Venancio13e22cf2008-02-19 22:04:22 +0000111void AggExprEmitter::EmitAggregateClear(llvm::Value *DestPtr, QualType Ty) {
Chris Lattner9b2dc282008-04-04 16:54:41 +0000112 assert(!Ty->isAnyComplexType() && "Shouldn't happen for complex");
Lauro Ramos Venancio13e22cf2008-02-19 22:04:22 +0000113
114 // Aggregate assignment turns into llvm.memset.
115 const llvm::Type *BP = llvm::PointerType::getUnqual(llvm::Type::Int8Ty);
116 if (DestPtr->getType() != BP)
117 DestPtr = Builder.CreateBitCast(DestPtr, BP, "tmp");
118
119 // Get size and alignment info for this aggregate.
Chris Lattner98be4942008-03-05 18:54:05 +0000120 std::pair<uint64_t, unsigned> TypeInfo = CGF.getContext().getTypeInfo(Ty);
Lauro Ramos Venancio13e22cf2008-02-19 22:04:22 +0000121
122 // FIXME: Handle variable sized types.
123 const llvm::Type *IntPtr = llvm::IntegerType::get(CGF.LLVMPointerWidth);
124
125 llvm::Value *MemSetOps[4] = {
126 DestPtr,
127 llvm::ConstantInt::getNullValue(llvm::Type::Int8Ty),
128 // TypeInfo.first describes size in bits.
129 llvm::ConstantInt::get(IntPtr, TypeInfo.first/8),
130 llvm::ConstantInt::get(llvm::Type::Int32Ty, TypeInfo.second/8)
131 };
132
133 Builder.CreateCall(CGF.CGM.getMemSetFn(), MemSetOps, MemSetOps+4);
134}
135
Chris Lattnerbfc0c1a2007-08-26 23:13:56 +0000136void AggExprEmitter::EmitAggregateCopy(llvm::Value *DestPtr,
137 llvm::Value *SrcPtr, QualType Ty) {
Chris Lattner9b2dc282008-04-04 16:54:41 +0000138 assert(!Ty->isAnyComplexType() && "Shouldn't happen for complex");
Chris Lattnerbfc0c1a2007-08-26 23:13:56 +0000139
Eli Friedman0c995092008-05-26 12:59:39 +0000140 // Aggregate assignment turns into llvm.memmove.
Christopher Lambddc23f32007-12-17 01:11:20 +0000141 const llvm::Type *BP = llvm::PointerType::getUnqual(llvm::Type::Int8Ty);
Chris Lattnerbfc0c1a2007-08-26 23:13:56 +0000142 if (DestPtr->getType() != BP)
143 DestPtr = Builder.CreateBitCast(DestPtr, BP, "tmp");
144 if (SrcPtr->getType() != BP)
145 SrcPtr = Builder.CreateBitCast(SrcPtr, BP, "tmp");
146
147 // Get size and alignment info for this aggregate.
Chris Lattner98be4942008-03-05 18:54:05 +0000148 std::pair<uint64_t, unsigned> TypeInfo = CGF.getContext().getTypeInfo(Ty);
Chris Lattnerbfc0c1a2007-08-26 23:13:56 +0000149
150 // FIXME: Handle variable sized types.
151 const llvm::Type *IntPtr = llvm::IntegerType::get(CGF.LLVMPointerWidth);
152
Eli Friedman0c995092008-05-26 12:59:39 +0000153 llvm::Value *MemMoveOps[4] = {
Chris Lattnerbfc0c1a2007-08-26 23:13:56 +0000154 DestPtr, SrcPtr,
Devang Patel636c3d02007-10-26 17:44:44 +0000155 // TypeInfo.first describes size in bits.
156 llvm::ConstantInt::get(IntPtr, TypeInfo.first/8),
Lauro Ramos Venancio13e22cf2008-02-19 22:04:22 +0000157 llvm::ConstantInt::get(llvm::Type::Int32Ty, TypeInfo.second/8)
Chris Lattnerbfc0c1a2007-08-26 23:13:56 +0000158 };
159
Eli Friedman0c995092008-05-26 12:59:39 +0000160 Builder.CreateCall(CGF.CGM.getMemMoveFn(), MemMoveOps, MemMoveOps+4);
Chris Lattnerbfc0c1a2007-08-26 23:13:56 +0000161}
162
163
Chris Lattner883f6a72007-08-11 00:04:45 +0000164/// EmitAggLoadOfLValue - Given an expression with aggregate type that
165/// represents a value lvalue, this method emits the address of the lvalue,
166/// then loads the result into DestPtr.
Chris Lattner9c033562007-08-21 04:25:47 +0000167void AggExprEmitter::EmitAggLoadOfLValue(const Expr *E) {
168 LValue LV = CGF.EmitLValue(E);
Chris Lattner883f6a72007-08-11 00:04:45 +0000169 assert(LV.isSimple() && "Can't have aggregate bitfield, vector, etc");
170 llvm::Value *SrcPtr = LV.getAddress();
171
172 // If the result is ignored, don't copy from the value.
173 if (DestPtr == 0)
174 // FIXME: If the source is volatile, we must read from it.
175 return;
176
Chris Lattnerbfc0c1a2007-08-26 23:13:56 +0000177 EmitAggregateCopy(DestPtr, SrcPtr, E->getType());
Chris Lattner883f6a72007-08-11 00:04:45 +0000178}
179
Chris Lattneree755f92007-08-21 04:59:27 +0000180//===----------------------------------------------------------------------===//
181// Visitor Methods
182//===----------------------------------------------------------------------===//
183
Chris Lattner96196622008-07-26 22:37:01 +0000184void AggExprEmitter::VisitImplicitCastExpr(ImplicitCastExpr *E) {
Eli Friedmanff6e2b72008-02-11 01:09:17 +0000185 assert(CGF.getContext().typesAreCompatible(
Chris Lattner96196622008-07-26 22:37:01 +0000186 E->getSubExpr()->getType().getUnqualifiedType(),
187 E->getType().getUnqualifiedType()) &&
188 "Implicit cast types must be compatible");
Anders Carlssone4707ff2008-01-14 06:28:57 +0000189 Visit(E->getSubExpr());
190}
191
Chris Lattner96196622008-07-26 22:37:01 +0000192void AggExprEmitter::VisitCallExpr(const CallExpr *E) {
Anders Carlsson148fe672007-10-31 22:04:46 +0000193 RValue RV = CGF.EmitCallExpr(E);
194 assert(RV.isAggregate() && "Return value must be aggregate value!");
195
196 // If the result is ignored, don't copy from the value.
197 if (DestPtr == 0)
198 // FIXME: If the source is volatile, we must read from it.
199 return;
200
201 EmitAggregateCopy(DestPtr, RV.getAggregateAddr(), E->getType());
202}
Chris Lattner96196622008-07-26 22:37:01 +0000203
204void AggExprEmitter::VisitObjCMessageExpr(ObjCMessageExpr *E) {
Daniel Dunbar8f2926b2008-08-23 03:46:30 +0000205 RValue RV = CGF.EmitObjCMessageExpr(E);
206 assert(RV.isAggregate() && "Return value must be aggregate value!");
Chris Lattner8fdf3282008-06-24 17:04:18 +0000207
208 // If the result is ignored, don't copy from the value.
209 if (DestPtr == 0)
Daniel Dunbar8f2926b2008-08-23 03:46:30 +0000210 // FIXME: If the source is volatile, we must read from it.
Chris Lattner8fdf3282008-06-24 17:04:18 +0000211 return;
212
213 EmitAggregateCopy(DestPtr, RV.getAggregateAddr(), E->getType());
214}
Anders Carlsson148fe672007-10-31 22:04:46 +0000215
Chris Lattner96196622008-07-26 22:37:01 +0000216void AggExprEmitter::VisitOverloadExpr(const OverloadExpr *E) {
Nate Begeman796ef3d2008-01-31 05:38:29 +0000217 RValue RV = CGF.EmitCallExpr(E->getFn(), E->arg_begin(),
Ted Kremenek55499762008-06-17 02:43:46 +0000218 E->arg_end(CGF.getContext()));
219
Nate Begeman796ef3d2008-01-31 05:38:29 +0000220 assert(RV.isAggregate() && "Return value must be aggregate value!");
221
222 // If the result is ignored, don't copy from the value.
223 if (DestPtr == 0)
224 // FIXME: If the source is volatile, we must read from it.
225 return;
226
227 EmitAggregateCopy(DestPtr, RV.getAggregateAddr(), E->getType());
228}
229
Chris Lattner96196622008-07-26 22:37:01 +0000230void AggExprEmitter::VisitBinComma(const BinaryOperator *E) {
Eli Friedman07fa52a2008-05-20 07:56:31 +0000231 CGF.EmitAnyExpr(E->getLHS());
232 CGF.EmitAggExpr(E->getRHS(), DestPtr, false);
233}
234
Chris Lattnerb2d963f2007-08-31 22:54:14 +0000235void AggExprEmitter::VisitStmtExpr(const StmtExpr *E) {
236 CGF.EmitCompoundStmt(*E->getSubStmt(), true, DestPtr, VolatileDest);
237}
238
Chris Lattner9c033562007-08-21 04:25:47 +0000239void AggExprEmitter::VisitBinaryOperator(const BinaryOperator *E) {
Daniel Dunbar488e9932008-08-16 00:56:44 +0000240 CGF.ErrorUnsupported(E, "aggregate binary expression");
Chris Lattneree755f92007-08-21 04:59:27 +0000241}
242
Chris Lattner03d6fb92007-08-21 04:43:17 +0000243void AggExprEmitter::VisitBinAssign(const BinaryOperator *E) {
Eli Friedmanff6e2b72008-02-11 01:09:17 +0000244 // For an assignment to work, the value on the right has
245 // to be compatible with the value on the left.
246 assert(CGF.getContext().typesAreCompatible(
247 E->getLHS()->getType().getUnqualifiedType(),
248 E->getRHS()->getType().getUnqualifiedType())
249 && "Invalid assignment");
Chris Lattner9c033562007-08-21 04:25:47 +0000250 LValue LHS = CGF.EmitLValue(E->getLHS());
Chris Lattner883f6a72007-08-11 00:04:45 +0000251
252 // Codegen the RHS so that it stores directly into the LHS.
Chris Lattner9c033562007-08-21 04:25:47 +0000253 CGF.EmitAggExpr(E->getRHS(), LHS.getAddress(), false /*FIXME: VOLATILE LHS*/);
Chris Lattner883f6a72007-08-11 00:04:45 +0000254
Eli Friedmanff6e2b72008-02-11 01:09:17 +0000255 if (DestPtr == 0)
256 return;
257
Chris Lattner883f6a72007-08-11 00:04:45 +0000258 // If the result of the assignment is used, copy the RHS there also.
Eli Friedmanff6e2b72008-02-11 01:09:17 +0000259 EmitAggregateCopy(DestPtr, LHS.getAddress(), E->getType());
Chris Lattner883f6a72007-08-11 00:04:45 +0000260}
261
Chris Lattner9c033562007-08-21 04:25:47 +0000262void AggExprEmitter::VisitConditionalOperator(const ConditionalOperator *E) {
Gabor Greif984d0b42008-04-06 20:42:52 +0000263 llvm::BasicBlock *LHSBlock = llvm::BasicBlock::Create("cond.?");
264 llvm::BasicBlock *RHSBlock = llvm::BasicBlock::Create("cond.:");
265 llvm::BasicBlock *ContBlock = llvm::BasicBlock::Create("cond.cont");
Chris Lattner883f6a72007-08-11 00:04:45 +0000266
Chris Lattner9c033562007-08-21 04:25:47 +0000267 llvm::Value *Cond = CGF.EvaluateExprAsBool(E->getCond());
Chris Lattnerbfc0c1a2007-08-26 23:13:56 +0000268 Builder.CreateCondBr(Cond, LHSBlock, RHSBlock);
Chris Lattner883f6a72007-08-11 00:04:45 +0000269
Chris Lattner9c033562007-08-21 04:25:47 +0000270 CGF.EmitBlock(LHSBlock);
Chris Lattner883f6a72007-08-11 00:04:45 +0000271
272 // Handle the GNU extension for missing LHS.
273 assert(E->getLHS() && "Must have LHS for aggregate value");
274
Chris Lattnerc748f272007-08-21 05:02:10 +0000275 Visit(E->getLHS());
Chris Lattnerbfc0c1a2007-08-26 23:13:56 +0000276 Builder.CreateBr(ContBlock);
277 LHSBlock = Builder.GetInsertBlock();
Chris Lattner883f6a72007-08-11 00:04:45 +0000278
Chris Lattner9c033562007-08-21 04:25:47 +0000279 CGF.EmitBlock(RHSBlock);
Chris Lattner883f6a72007-08-11 00:04:45 +0000280
Chris Lattnerc748f272007-08-21 05:02:10 +0000281 Visit(E->getRHS());
Chris Lattnerbfc0c1a2007-08-26 23:13:56 +0000282 Builder.CreateBr(ContBlock);
283 RHSBlock = Builder.GetInsertBlock();
Chris Lattner883f6a72007-08-11 00:04:45 +0000284
Chris Lattner9c033562007-08-21 04:25:47 +0000285 CGF.EmitBlock(ContBlock);
Chris Lattner883f6a72007-08-11 00:04:45 +0000286}
Chris Lattneree755f92007-08-21 04:59:27 +0000287
Eli Friedmanb1851242008-05-27 15:51:49 +0000288void AggExprEmitter::VisitVAArgExpr(VAArgExpr *VE) {
289 llvm::Value *ArgValue = CGF.EmitLValue(VE->getSubExpr()).getAddress();
290 llvm::Value *V = Builder.CreateVAArg(ArgValue, CGF.ConvertType(VE->getType()));
291 if (DestPtr)
Eli Friedman1e692ac2008-06-13 23:01:12 +0000292 // FIXME: volatility
Eli Friedmanb1851242008-05-27 15:51:49 +0000293 Builder.CreateStore(V, DestPtr);
294}
295
Lauro Ramos Venancio13e22cf2008-02-19 22:04:22 +0000296void AggExprEmitter::EmitNonConstInit(InitListExpr *E) {
297
298 const llvm::PointerType *APType =
299 cast<llvm::PointerType>(DestPtr->getType());
300 const llvm::Type *DestType = APType->getElementType();
Lauro Ramos Venancio305762c2008-02-18 22:44:02 +0000301
302 if (const llvm::ArrayType *AType = dyn_cast<llvm::ArrayType>(DestType)) {
Lauro Ramos Venancio13e22cf2008-02-19 22:04:22 +0000303 unsigned NumInitElements = E->getNumInits();
Lauro Ramos Venancio305762c2008-02-18 22:44:02 +0000304
Lauro Ramos Venancio305762c2008-02-18 22:44:02 +0000305 unsigned i;
306 for (i = 0; i != NumInitElements; ++i) {
Chris Lattner36b6a0a2008-03-19 05:19:41 +0000307 llvm::Value *NextVal = Builder.CreateStructGEP(DestPtr, i, ".array");
Lauro Ramos Venancio13e22cf2008-02-19 22:04:22 +0000308 Expr *Init = E->getInit(i);
309 if (isa<InitListExpr>(Init))
310 CGF.EmitAggExpr(Init, NextVal, VolatileDest);
311 else
Eli Friedman1e692ac2008-06-13 23:01:12 +0000312 // FIXME: volatility
Lauro Ramos Venancio13e22cf2008-02-19 22:04:22 +0000313 Builder.CreateStore(CGF.EmitScalarExpr(Init), NextVal);
Lauro Ramos Venancio305762c2008-02-18 22:44:02 +0000314 }
315
316 // Emit remaining default initializers
317 unsigned NumArrayElements = AType->getNumElements();
Lauro Ramos Venancio13e22cf2008-02-19 22:04:22 +0000318 QualType QType = E->getInit(0)->getType();
319 const llvm::Type *EType = AType->getElementType();
Lauro Ramos Venancio305762c2008-02-18 22:44:02 +0000320 for (/*Do not initialize i*/; i < NumArrayElements; ++i) {
Chris Lattner36b6a0a2008-03-19 05:19:41 +0000321 llvm::Value *NextVal = Builder.CreateStructGEP(DestPtr, i, ".array");
Dan Gohmand79a7262008-05-22 22:12:56 +0000322 if (EType->isSingleValueType())
Eli Friedman1e692ac2008-06-13 23:01:12 +0000323 // FIXME: volatility
Lauro Ramos Venancio13e22cf2008-02-19 22:04:22 +0000324 Builder.CreateStore(llvm::Constant::getNullValue(EType), NextVal);
325 else
326 EmitAggregateClear(NextVal, QType);
Lauro Ramos Venancio305762c2008-02-18 22:44:02 +0000327 }
Lauro Ramos Venancio13e22cf2008-02-19 22:04:22 +0000328 } else
329 assert(false && "Invalid initializer");
Lauro Ramos Venancio305762c2008-02-18 22:44:02 +0000330}
331
Chris Lattnerf81557c2008-04-04 18:42:16 +0000332void AggExprEmitter::EmitInitializationToLValue(Expr* E, LValue LV) {
333 // FIXME: Are initializers affected by volatile?
334 if (E->getType()->isComplexType()) {
335 CGF.EmitComplexExprIntoAddr(E, LV.getAddress(), false);
Eli Friedmanc8ba9612008-05-12 15:06:05 +0000336 } else if (CGF.hasAggregateLLVMType(E->getType())) {
337 CGF.EmitAnyExpr(E, LV.getAddress(), false);
338 } else {
339 CGF.EmitStoreThroughLValue(CGF.EmitAnyExpr(E), LV, E->getType());
Chris Lattnerf81557c2008-04-04 18:42:16 +0000340 }
Chris Lattnerf81557c2008-04-04 18:42:16 +0000341}
342
343void AggExprEmitter::EmitNullInitializationToLValue(LValue LV, QualType T) {
344 if (!CGF.hasAggregateLLVMType(T)) {
345 // For non-aggregates, we can store zero
Daniel Dunbar82397132008-08-06 05:32:55 +0000346 llvm::Value *Null = llvm::Constant::getNullValue(CGF.ConvertType(T));
347 CGF.EmitStoreThroughLValue(RValue::get(Null), LV, T);
Lauro Ramos Venancio145cd892008-02-19 19:27:31 +0000348 } else {
Chris Lattnerf81557c2008-04-04 18:42:16 +0000349 // Otherwise, just memset the whole thing to zero. This is legal
350 // because in LLVM, all default initializers are guaranteed to have a
351 // bit pattern of all zeros.
352 // There's a potential optimization opportunity in combining
353 // memsets; that would be easy for arrays, but relatively
354 // difficult for structures with the current code.
355 llvm::Value *MemSet = CGF.CGM.getIntrinsic(llvm::Intrinsic::memset_i64);
356 uint64_t Size = CGF.getContext().getTypeSize(T);
357
358 const llvm::Type *BP = llvm::PointerType::getUnqual(llvm::Type::Int8Ty);
359 llvm::Value* DestPtr = Builder.CreateBitCast(LV.getAddress(), BP, "tmp");
Chris Lattner3eae03e2008-05-06 00:56:42 +0000360 Builder.CreateCall4(MemSet, DestPtr,
361 llvm::ConstantInt::get(llvm::Type::Int8Ty, 0),
362 llvm::ConstantInt::get(llvm::Type::Int64Ty, Size/8),
363 llvm::ConstantInt::get(llvm::Type::Int32Ty, 0));
Chris Lattnerf81557c2008-04-04 18:42:16 +0000364 }
365}
366
Chris Lattnerf81557c2008-04-04 18:42:16 +0000367void AggExprEmitter::VisitInitListExpr(InitListExpr *E) {
368 if (E->isConstantExpr(CGF.getContext(), 0)) {
369 // FIXME: call into const expr emitter so that we can emit
370 // a memcpy instead of storing the individual members.
371 // This is purely for perf; both codepaths lead to equivalent
372 // (although not necessarily identical) code.
373 // It's worth noting that LLVM keeps on getting smarter, though,
374 // so it might not be worth bothering.
375 }
376
377 // Handle initialization of an array.
378 if (E->getType()->isArrayType()) {
379 const llvm::PointerType *APType =
380 cast<llvm::PointerType>(DestPtr->getType());
381 const llvm::ArrayType *AType =
382 cast<llvm::ArrayType>(APType->getElementType());
383
384 uint64_t NumInitElements = E->getNumInits();
Eli Friedman922696f2008-05-19 17:51:16 +0000385
Chris Lattner96196622008-07-26 22:37:01 +0000386 if (E->getNumInits() > 0) {
387 QualType T1 = E->getType();
388 QualType T2 = E->getInit(0)->getType();
389 if (CGF.getContext().getCanonicalType(T1).getUnqualifiedType() ==
390 CGF.getContext().getCanonicalType(T2).getUnqualifiedType()) {
391 EmitAggLoadOfLValue(E->getInit(0));
392 return;
393 }
Eli Friedman922696f2008-05-19 17:51:16 +0000394 }
395
Chris Lattnerf81557c2008-04-04 18:42:16 +0000396 uint64_t NumArrayElements = AType->getNumElements();
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000397 QualType ElementType = CGF.getContext().getCanonicalType(E->getType());
398 ElementType =CGF.getContext().getAsArrayType(ElementType)->getElementType();
Chris Lattnerf81557c2008-04-04 18:42:16 +0000399
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000400 unsigned CVRqualifier = ElementType.getCVRQualifiers();
Eli Friedman1e692ac2008-06-13 23:01:12 +0000401
Chris Lattnerf81557c2008-04-04 18:42:16 +0000402 for (uint64_t i = 0; i != NumArrayElements; ++i) {
403 llvm::Value *NextVal = Builder.CreateStructGEP(DestPtr, i, ".array");
404 if (i < NumInitElements)
Eli Friedman1e692ac2008-06-13 23:01:12 +0000405 EmitInitializationToLValue(E->getInit(i),
406 LValue::MakeAddr(NextVal, CVRqualifier));
Chris Lattnerf81557c2008-04-04 18:42:16 +0000407 else
Eli Friedman1e692ac2008-06-13 23:01:12 +0000408 EmitNullInitializationToLValue(LValue::MakeAddr(NextVal, CVRqualifier),
Chris Lattnerf81557c2008-04-04 18:42:16 +0000409 ElementType);
Lauro Ramos Venancio145cd892008-02-19 19:27:31 +0000410 }
Chris Lattnerf81557c2008-04-04 18:42:16 +0000411 return;
412 }
413
414 assert(E->getType()->isRecordType() && "Only support structs/unions here!");
415
416 // Do struct initialization; this code just sets each individual member
417 // to the approprate value. This makes bitfield support automatic;
418 // the disadvantage is that the generated code is more difficult for
419 // the optimizer, especially with bitfields.
420 unsigned NumInitElements = E->getNumInits();
421 RecordDecl *SD = E->getType()->getAsRecordType()->getDecl();
422 unsigned NumMembers = SD->getNumMembers() - SD->hasFlexibleArrayMember();
423 unsigned CurInitVal = 0;
424 bool isUnion = E->getType()->isUnionType();
425
426 // Here we iterate over the fields; this makes it simpler to both
427 // default-initialize fields and skip over unnamed fields.
428 for (unsigned CurFieldNo = 0; CurFieldNo != NumMembers; ++CurFieldNo) {
Chris Lattnerf81557c2008-04-04 18:42:16 +0000429 FieldDecl *CurField = SD->getMember(CurFieldNo);
430 if (CurField->getIdentifier() == 0) {
431 // Initializers can't initialize unnamed fields, e.g. "int : 20;"
432 continue;
433 }
Eli Friedman1e692ac2008-06-13 23:01:12 +0000434 // FIXME: volatility
435 LValue FieldLoc = CGF.EmitLValueForField(DestPtr, CurField, isUnion,0);
Chris Lattnerf81557c2008-04-04 18:42:16 +0000436 if (CurInitVal < NumInitElements) {
437 // Store the initializer into the field
438 // This will probably have to get a bit smarter when we support
439 // designators in initializers
440 EmitInitializationToLValue(E->getInit(CurInitVal++), FieldLoc);
441 } else {
442 // We're out of initalizers; default-initialize to null
443 EmitNullInitializationToLValue(FieldLoc, CurField->getType());
444 }
445
446 // Unions only initialize one field.
447 // (things can get weird with designators, but they aren't
448 // supported yet.)
449 if (E->getType()->isUnionType())
450 break;
Lauro Ramos Venancio145cd892008-02-19 19:27:31 +0000451 }
Devang Patel636c3d02007-10-26 17:44:44 +0000452}
453
Chris Lattneree755f92007-08-21 04:59:27 +0000454//===----------------------------------------------------------------------===//
455// Entry Points into this File
456//===----------------------------------------------------------------------===//
457
458/// EmitAggExpr - Emit the computation of the specified expression of
459/// aggregate type. The result is computed into DestPtr. Note that if
460/// DestPtr is null, the value of the aggregate expression is not needed.
461void CodeGenFunction::EmitAggExpr(const Expr *E, llvm::Value *DestPtr,
462 bool VolatileDest) {
463 assert(E && hasAggregateLLVMType(E->getType()) &&
464 "Invalid aggregate expression to emit");
465
466 AggExprEmitter(*this, DestPtr, VolatileDest).Visit(const_cast<Expr*>(E));
467}