blob: 13c07c959655d81d1f4070149e4b00ce60ccff01 [file] [log] [blame]
Chris Lattner820dce82007-08-24 02:22:53 +00001//===--- CGExprAgg.cpp - Emit LLVM Code from Aggregate Expressions --------===//
Chris Lattner78ed8402007-08-10 20:13:28 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner959e5be2007-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 Lattner78ed8402007-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 Lattnerbdb8ffb2007-08-11 00:04:45 +000015#include "CodeGenModule.h"
Daniel Dunbareee5cd12008-08-11 05:00:27 +000016#include "clang/AST/ASTContext.h"
17#include "clang/AST/StmtVisitor.h"
Chris Lattnerbdb8ffb2007-08-11 00:04:45 +000018#include "llvm/Constants.h"
19#include "llvm/Function.h"
Devang Patelddde6d52007-10-26 17:44:44 +000020#include "llvm/GlobalVariable.h"
Chris Lattnerb50e3902007-08-21 04:25:47 +000021#include "llvm/Support/Compiler.h"
Chris Lattner6ee6ab02008-04-04 18:42:16 +000022#include "llvm/Intrinsics.h"
Chris Lattner78ed8402007-08-10 20:13:28 +000023using namespace clang;
24using namespace CodeGen;
Chris Lattnerbdb8ffb2007-08-11 00:04:45 +000025
Chris Lattnerb50e3902007-08-21 04:25:47 +000026//===----------------------------------------------------------------------===//
27// Aggregate Expression Emitter
28//===----------------------------------------------------------------------===//
29
30namespace {
31class VISIBILITY_HIDDEN AggExprEmitter : public StmtVisitor<AggExprEmitter> {
32 CodeGenFunction &CGF;
Chris Lattnerfaf23db2008-08-08 19:57:58 +000033 llvm::IRBuilder<> &Builder;
Chris Lattnerb50e3902007-08-21 04:25:47 +000034 llvm::Value *DestPtr;
35 bool VolatileDest;
36public:
37 AggExprEmitter(CodeGenFunction &cgf, llvm::Value *destPtr, bool volatileDest)
Chris Lattner41b1fca2007-08-26 23:13:56 +000038 : CGF(cgf), Builder(CGF.Builder),
39 DestPtr(destPtr), VolatileDest(volatileDest) {
Chris Lattnerb50e3902007-08-21 04:25:47 +000040 }
41
Chris Lattnera7300102007-08-21 04:59:27 +000042 //===--------------------------------------------------------------------===//
43 // Utilities
44 //===--------------------------------------------------------------------===//
45
Chris Lattnerb50e3902007-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 Lattner41b1fca2007-08-26 23:13:56 +000051 void EmitAggregateCopy(llvm::Value *DestPtr, llvm::Value *SrcPtr,
52 QualType EltTy);
Lauro Ramos Venancio97b09572008-02-19 22:04:22 +000053
54 void EmitAggregateClear(llvm::Value *DestPtr, QualType Ty);
55
56 void EmitNonConstInit(InitListExpr *E);
Eli Friedman48ec5622008-05-19 17:51:16 +000057
Chris Lattnera7300102007-08-21 04:59:27 +000058 //===--------------------------------------------------------------------===//
59 // Visitor Methods
60 //===--------------------------------------------------------------------===//
61
Chris Lattnerb50e3902007-08-21 04:25:47 +000062 void VisitStmt(Stmt *S) {
Daniel Dunbar9503b782008-08-16 00:56:44 +000063 CGF.ErrorUnsupported(S, "aggregate expression");
Chris Lattnerb50e3902007-08-21 04:25:47 +000064 }
65 void VisitParenExpr(ParenExpr *PE) { Visit(PE->getSubExpr()); }
66
67 // l-values.
Seo Sanghyeon32666c52007-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 Sanghyeon3c2d5fb2007-12-23 03:11:58 +000071 void VisitStringLiteral(StringLiteral *E) { EmitAggLoadOfLValue(E); }
Eli Friedman42af3972008-05-27 15:51:49 +000072 void VisitCompoundLiteralExpr(CompoundLiteralExpr *E)
73 { EmitAggLoadOfLValue(E); }
Seo Sanghyeon32666c52007-12-14 02:04:12 +000074
75 void VisitArraySubscriptExpr(ArraySubscriptExpr *E) {
76 EmitAggLoadOfLValue(E);
77 }
Chris Lattnerb50e3902007-08-21 04:25:47 +000078
79 // Operators.
80 // case Expr::UnaryOperatorClass:
Chris Lattnerb50e3902007-08-21 04:25:47 +000081 // case Expr::CastExprClass:
Anders Carlssonf2712ac2008-01-14 06:28:57 +000082 void VisitImplicitCastExpr(ImplicitCastExpr *E);
Anders Carlsson0ae15412007-10-31 22:04:46 +000083 void VisitCallExpr(const CallExpr *E);
Chris Lattnerbab0bfb2007-08-31 22:54:14 +000084 void VisitStmtExpr(const StmtExpr *E);
Chris Lattnerb50e3902007-08-21 04:25:47 +000085 void VisitBinaryOperator(const BinaryOperator *BO);
Chris Lattner76cb1892007-08-21 04:43:17 +000086 void VisitBinAssign(const BinaryOperator *E);
Nate Begemanc6078c92008-01-31 05:38:29 +000087 void VisitOverloadExpr(const OverloadExpr *E);
Eli Friedman91fc7802008-05-20 07:56:31 +000088 void VisitBinComma(const BinaryOperator *E);
Chris Lattnerb50e3902007-08-21 04:25:47 +000089
Chris Lattner6ee20e32008-06-24 17:04:18 +000090 void VisitObjCMessageExpr(ObjCMessageExpr *E);
Daniel Dunbar5e105892008-08-23 10:51:21 +000091 void VisitObjCIvarRefExpr(ObjCIvarRefExpr *E) {
92 EmitAggLoadOfLValue(E);
93 }
Daniel Dunbar91cc4022008-08-27 06:57:25 +000094 void VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *E);
Chris Lattnerb50e3902007-08-21 04:25:47 +000095
96 void VisitConditionalOperator(const ConditionalOperator *CO);
Devang Patelddde6d52007-10-26 17:44:44 +000097 void VisitInitListExpr(InitListExpr *E);
Chris Lattner3e254fb2008-04-08 04:40:51 +000098 void VisitCXXDefaultArgExpr(CXXDefaultArgExpr *DAE) {
99 Visit(DAE->getExpr());
100 }
Eli Friedman42af3972008-05-27 15:51:49 +0000101 void VisitVAArgExpr(VAArgExpr *E);
Chris Lattner6ee6ab02008-04-04 18:42:16 +0000102
103 void EmitInitializationToLValue(Expr *E, LValue Address);
104 void EmitNullInitializationToLValue(LValue Address, QualType T);
Chris Lattnerb50e3902007-08-21 04:25:47 +0000105 // case Expr::ChooseExprClass:
Lauro Ramos Venancio9eb37a22008-02-18 22:44:02 +0000106
Chris Lattnerb50e3902007-08-21 04:25:47 +0000107};
108} // end anonymous namespace.
109
Chris Lattnera7300102007-08-21 04:59:27 +0000110//===----------------------------------------------------------------------===//
111// Utilities
112//===----------------------------------------------------------------------===//
Chris Lattnerb50e3902007-08-21 04:25:47 +0000113
Lauro Ramos Venancio97b09572008-02-19 22:04:22 +0000114void AggExprEmitter::EmitAggregateClear(llvm::Value *DestPtr, QualType Ty) {
Chris Lattnerde0908b2008-04-04 16:54:41 +0000115 assert(!Ty->isAnyComplexType() && "Shouldn't happen for complex");
Lauro Ramos Venancio97b09572008-02-19 22:04:22 +0000116
117 // Aggregate assignment turns into llvm.memset.
118 const llvm::Type *BP = llvm::PointerType::getUnqual(llvm::Type::Int8Ty);
119 if (DestPtr->getType() != BP)
120 DestPtr = Builder.CreateBitCast(DestPtr, BP, "tmp");
121
122 // Get size and alignment info for this aggregate.
Chris Lattner8cd0e932008-03-05 18:54:05 +0000123 std::pair<uint64_t, unsigned> TypeInfo = CGF.getContext().getTypeInfo(Ty);
Lauro Ramos Venancio97b09572008-02-19 22:04:22 +0000124
125 // FIXME: Handle variable sized types.
126 const llvm::Type *IntPtr = llvm::IntegerType::get(CGF.LLVMPointerWidth);
127
Anders Carlsson014a20e2008-08-30 16:17:45 +0000128 Builder.CreateCall4(CGF.CGM.getMemSetFn(),
129 DestPtr,
130 llvm::ConstantInt::getNullValue(llvm::Type::Int8Ty),
131 // TypeInfo.first describes size in bits.
132 llvm::ConstantInt::get(IntPtr, TypeInfo.first/8),
133 llvm::ConstantInt::get(llvm::Type::Int32Ty,
134 TypeInfo.second/8));
Lauro Ramos Venancio97b09572008-02-19 22:04:22 +0000135}
136
Chris Lattner41b1fca2007-08-26 23:13:56 +0000137void AggExprEmitter::EmitAggregateCopy(llvm::Value *DestPtr,
138 llvm::Value *SrcPtr, QualType Ty) {
Chris Lattnerde0908b2008-04-04 16:54:41 +0000139 assert(!Ty->isAnyComplexType() && "Shouldn't happen for complex");
Chris Lattner41b1fca2007-08-26 23:13:56 +0000140
Eli Friedman8f08a252008-05-26 12:59:39 +0000141 // Aggregate assignment turns into llvm.memmove.
Christopher Lamb4fe5e702007-12-17 01:11:20 +0000142 const llvm::Type *BP = llvm::PointerType::getUnqual(llvm::Type::Int8Ty);
Chris Lattner41b1fca2007-08-26 23:13:56 +0000143 if (DestPtr->getType() != BP)
144 DestPtr = Builder.CreateBitCast(DestPtr, BP, "tmp");
145 if (SrcPtr->getType() != BP)
146 SrcPtr = Builder.CreateBitCast(SrcPtr, BP, "tmp");
147
148 // Get size and alignment info for this aggregate.
Chris Lattner8cd0e932008-03-05 18:54:05 +0000149 std::pair<uint64_t, unsigned> TypeInfo = CGF.getContext().getTypeInfo(Ty);
Chris Lattner41b1fca2007-08-26 23:13:56 +0000150
151 // FIXME: Handle variable sized types.
152 const llvm::Type *IntPtr = llvm::IntegerType::get(CGF.LLVMPointerWidth);
153
Anders Carlsson014a20e2008-08-30 16:17:45 +0000154 Builder.CreateCall4(CGF.CGM.getMemMoveFn(),
155 DestPtr, SrcPtr,
156 // TypeInfo.first describes size in bits.
157 llvm::ConstantInt::get(IntPtr, TypeInfo.first/8),
158 llvm::ConstantInt::get(llvm::Type::Int32Ty,
159 TypeInfo.second/8));
Chris Lattner41b1fca2007-08-26 23:13:56 +0000160}
161
162
Chris Lattnerbdb8ffb2007-08-11 00:04:45 +0000163/// EmitAggLoadOfLValue - Given an expression with aggregate type that
164/// represents a value lvalue, this method emits the address of the lvalue,
165/// then loads the result into DestPtr.
Chris Lattnerb50e3902007-08-21 04:25:47 +0000166void AggExprEmitter::EmitAggLoadOfLValue(const Expr *E) {
167 LValue LV = CGF.EmitLValue(E);
Chris Lattnerbdb8ffb2007-08-11 00:04:45 +0000168 assert(LV.isSimple() && "Can't have aggregate bitfield, vector, etc");
169 llvm::Value *SrcPtr = LV.getAddress();
170
171 // If the result is ignored, don't copy from the value.
172 if (DestPtr == 0)
173 // FIXME: If the source is volatile, we must read from it.
174 return;
175
Chris Lattner41b1fca2007-08-26 23:13:56 +0000176 EmitAggregateCopy(DestPtr, SrcPtr, E->getType());
Chris Lattnerbdb8ffb2007-08-11 00:04:45 +0000177}
178
Chris Lattnera7300102007-08-21 04:59:27 +0000179//===----------------------------------------------------------------------===//
180// Visitor Methods
181//===----------------------------------------------------------------------===//
182
Chris Lattnerc154ac12008-07-26 22:37:01 +0000183void AggExprEmitter::VisitImplicitCastExpr(ImplicitCastExpr *E) {
Eli Friedmanf0217122008-02-11 01:09:17 +0000184 assert(CGF.getContext().typesAreCompatible(
Chris Lattnerc154ac12008-07-26 22:37:01 +0000185 E->getSubExpr()->getType().getUnqualifiedType(),
186 E->getType().getUnqualifiedType()) &&
187 "Implicit cast types must be compatible");
Anders Carlssonf2712ac2008-01-14 06:28:57 +0000188 Visit(E->getSubExpr());
189}
190
Chris Lattnerc154ac12008-07-26 22:37:01 +0000191void AggExprEmitter::VisitCallExpr(const CallExpr *E) {
Anders Carlsson0ae15412007-10-31 22:04:46 +0000192 RValue RV = CGF.EmitCallExpr(E);
193 assert(RV.isAggregate() && "Return value must be aggregate value!");
194
195 // If the result is ignored, don't copy from the value.
196 if (DestPtr == 0)
197 // FIXME: If the source is volatile, we must read from it.
198 return;
199
200 EmitAggregateCopy(DestPtr, RV.getAggregateAddr(), E->getType());
201}
Chris Lattnerc154ac12008-07-26 22:37:01 +0000202
203void AggExprEmitter::VisitObjCMessageExpr(ObjCMessageExpr *E) {
Daniel Dunbara04840b2008-08-23 03:46:30 +0000204 RValue RV = CGF.EmitObjCMessageExpr(E);
205 assert(RV.isAggregate() && "Return value must be aggregate value!");
Chris Lattner6ee20e32008-06-24 17:04:18 +0000206
207 // If the result is ignored, don't copy from the value.
208 if (DestPtr == 0)
Daniel Dunbara04840b2008-08-23 03:46:30 +0000209 // FIXME: If the source is volatile, we must read from it.
Chris Lattner6ee20e32008-06-24 17:04:18 +0000210 return;
211
212 EmitAggregateCopy(DestPtr, RV.getAggregateAddr(), E->getType());
213}
Anders Carlsson0ae15412007-10-31 22:04:46 +0000214
Daniel Dunbar91cc4022008-08-27 06:57:25 +0000215void AggExprEmitter::VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *E) {
216 RValue RV = CGF.EmitObjCPropertyGet(E);
217 assert(RV.isAggregate() && "Return value must be aggregate value!");
218
219 // If the result is ignored, don't copy from the value.
220 if (DestPtr == 0)
221 // FIXME: If the source is volatile, we must read from it.
222 return;
223
224 EmitAggregateCopy(DestPtr, RV.getAggregateAddr(), E->getType());
225}
226
Chris Lattnerc154ac12008-07-26 22:37:01 +0000227void AggExprEmitter::VisitOverloadExpr(const OverloadExpr *E) {
Nate Begemanc6078c92008-01-31 05:38:29 +0000228 RValue RV = CGF.EmitCallExpr(E->getFn(), E->arg_begin(),
Ted Kremenek2719e982008-06-17 02:43:46 +0000229 E->arg_end(CGF.getContext()));
230
Nate Begemanc6078c92008-01-31 05:38:29 +0000231 assert(RV.isAggregate() && "Return value must be aggregate value!");
232
233 // If the result is ignored, don't copy from the value.
234 if (DestPtr == 0)
235 // FIXME: If the source is volatile, we must read from it.
236 return;
237
238 EmitAggregateCopy(DestPtr, RV.getAggregateAddr(), E->getType());
239}
240
Chris Lattnerc154ac12008-07-26 22:37:01 +0000241void AggExprEmitter::VisitBinComma(const BinaryOperator *E) {
Eli Friedman91fc7802008-05-20 07:56:31 +0000242 CGF.EmitAnyExpr(E->getLHS());
243 CGF.EmitAggExpr(E->getRHS(), DestPtr, false);
244}
245
Chris Lattnerbab0bfb2007-08-31 22:54:14 +0000246void AggExprEmitter::VisitStmtExpr(const StmtExpr *E) {
247 CGF.EmitCompoundStmt(*E->getSubStmt(), true, DestPtr, VolatileDest);
248}
249
Chris Lattnerb50e3902007-08-21 04:25:47 +0000250void AggExprEmitter::VisitBinaryOperator(const BinaryOperator *E) {
Daniel Dunbar9503b782008-08-16 00:56:44 +0000251 CGF.ErrorUnsupported(E, "aggregate binary expression");
Chris Lattnera7300102007-08-21 04:59:27 +0000252}
253
Chris Lattner76cb1892007-08-21 04:43:17 +0000254void AggExprEmitter::VisitBinAssign(const BinaryOperator *E) {
Eli Friedmanf0217122008-02-11 01:09:17 +0000255 // For an assignment to work, the value on the right has
256 // to be compatible with the value on the left.
257 assert(CGF.getContext().typesAreCompatible(
258 E->getLHS()->getType().getUnqualifiedType(),
259 E->getRHS()->getType().getUnqualifiedType())
260 && "Invalid assignment");
Chris Lattnerb50e3902007-08-21 04:25:47 +0000261 LValue LHS = CGF.EmitLValue(E->getLHS());
Chris Lattnerbdb8ffb2007-08-11 00:04:45 +0000262
Daniel Dunbardd851282008-08-30 05:35:15 +0000263 // We have to special case property setters, otherwise we must have
264 // a simple lvalue (no aggregates inside vectors, bitfields).
265 if (LHS.isPropertyRef()) {
266 // FIXME: Volatility?
267 llvm::Value *AggLoc = DestPtr;
268 if (!AggLoc)
269 AggLoc = CGF.CreateTempAlloca(CGF.ConvertType(E->getRHS()->getType()));
270 CGF.EmitAggExpr(E->getRHS(), AggLoc, false);
271 CGF.EmitObjCPropertySet(LHS.getPropertyRefExpr(),
272 RValue::getAggregate(AggLoc));
273 } else {
274 // Codegen the RHS so that it stores directly into the LHS.
275 CGF.EmitAggExpr(E->getRHS(), LHS.getAddress(), false /*FIXME: VOLATILE LHS*/);
276
277 if (DestPtr == 0)
278 return;
279
280 // If the result of the assignment is used, copy the RHS there also.
281 EmitAggregateCopy(DestPtr, LHS.getAddress(), E->getType());
282 }
Chris Lattnerbdb8ffb2007-08-11 00:04:45 +0000283}
284
Chris Lattnerb50e3902007-08-21 04:25:47 +0000285void AggExprEmitter::VisitConditionalOperator(const ConditionalOperator *E) {
Gabor Greif815e2c12008-04-06 20:42:52 +0000286 llvm::BasicBlock *LHSBlock = llvm::BasicBlock::Create("cond.?");
287 llvm::BasicBlock *RHSBlock = llvm::BasicBlock::Create("cond.:");
288 llvm::BasicBlock *ContBlock = llvm::BasicBlock::Create("cond.cont");
Chris Lattnerbdb8ffb2007-08-11 00:04:45 +0000289
Chris Lattnerb50e3902007-08-21 04:25:47 +0000290 llvm::Value *Cond = CGF.EvaluateExprAsBool(E->getCond());
Chris Lattner41b1fca2007-08-26 23:13:56 +0000291 Builder.CreateCondBr(Cond, LHSBlock, RHSBlock);
Chris Lattnerbdb8ffb2007-08-11 00:04:45 +0000292
Chris Lattnerb50e3902007-08-21 04:25:47 +0000293 CGF.EmitBlock(LHSBlock);
Chris Lattnerbdb8ffb2007-08-11 00:04:45 +0000294
295 // Handle the GNU extension for missing LHS.
296 assert(E->getLHS() && "Must have LHS for aggregate value");
297
Chris Lattner55165ba2007-08-21 05:02:10 +0000298 Visit(E->getLHS());
Chris Lattner41b1fca2007-08-26 23:13:56 +0000299 Builder.CreateBr(ContBlock);
300 LHSBlock = Builder.GetInsertBlock();
Chris Lattnerbdb8ffb2007-08-11 00:04:45 +0000301
Chris Lattnerb50e3902007-08-21 04:25:47 +0000302 CGF.EmitBlock(RHSBlock);
Chris Lattnerbdb8ffb2007-08-11 00:04:45 +0000303
Chris Lattner55165ba2007-08-21 05:02:10 +0000304 Visit(E->getRHS());
Chris Lattner41b1fca2007-08-26 23:13:56 +0000305 Builder.CreateBr(ContBlock);
306 RHSBlock = Builder.GetInsertBlock();
Chris Lattnerbdb8ffb2007-08-11 00:04:45 +0000307
Chris Lattnerb50e3902007-08-21 04:25:47 +0000308 CGF.EmitBlock(ContBlock);
Chris Lattnerbdb8ffb2007-08-11 00:04:45 +0000309}
Chris Lattnera7300102007-08-21 04:59:27 +0000310
Eli Friedman42af3972008-05-27 15:51:49 +0000311void AggExprEmitter::VisitVAArgExpr(VAArgExpr *VE) {
312 llvm::Value *ArgValue = CGF.EmitLValue(VE->getSubExpr()).getAddress();
313 llvm::Value *V = Builder.CreateVAArg(ArgValue, CGF.ConvertType(VE->getType()));
314 if (DestPtr)
Eli Friedman2e630542008-06-13 23:01:12 +0000315 // FIXME: volatility
Eli Friedman42af3972008-05-27 15:51:49 +0000316 Builder.CreateStore(V, DestPtr);
317}
318
Lauro Ramos Venancio97b09572008-02-19 22:04:22 +0000319void AggExprEmitter::EmitNonConstInit(InitListExpr *E) {
320
321 const llvm::PointerType *APType =
322 cast<llvm::PointerType>(DestPtr->getType());
323 const llvm::Type *DestType = APType->getElementType();
Lauro Ramos Venancio9eb37a22008-02-18 22:44:02 +0000324
325 if (const llvm::ArrayType *AType = dyn_cast<llvm::ArrayType>(DestType)) {
Lauro Ramos Venancio97b09572008-02-19 22:04:22 +0000326 unsigned NumInitElements = E->getNumInits();
Lauro Ramos Venancio9eb37a22008-02-18 22:44:02 +0000327
Lauro Ramos Venancio9eb37a22008-02-18 22:44:02 +0000328 unsigned i;
329 for (i = 0; i != NumInitElements; ++i) {
Chris Lattner07307562008-03-19 05:19:41 +0000330 llvm::Value *NextVal = Builder.CreateStructGEP(DestPtr, i, ".array");
Lauro Ramos Venancio97b09572008-02-19 22:04:22 +0000331 Expr *Init = E->getInit(i);
332 if (isa<InitListExpr>(Init))
333 CGF.EmitAggExpr(Init, NextVal, VolatileDest);
334 else
Eli Friedman2e630542008-06-13 23:01:12 +0000335 // FIXME: volatility
Lauro Ramos Venancio97b09572008-02-19 22:04:22 +0000336 Builder.CreateStore(CGF.EmitScalarExpr(Init), NextVal);
Lauro Ramos Venancio9eb37a22008-02-18 22:44:02 +0000337 }
338
339 // Emit remaining default initializers
340 unsigned NumArrayElements = AType->getNumElements();
Lauro Ramos Venancio97b09572008-02-19 22:04:22 +0000341 QualType QType = E->getInit(0)->getType();
342 const llvm::Type *EType = AType->getElementType();
Lauro Ramos Venancio9eb37a22008-02-18 22:44:02 +0000343 for (/*Do not initialize i*/; i < NumArrayElements; ++i) {
Chris Lattner07307562008-03-19 05:19:41 +0000344 llvm::Value *NextVal = Builder.CreateStructGEP(DestPtr, i, ".array");
Dan Gohman377ba9f2008-05-22 22:12:56 +0000345 if (EType->isSingleValueType())
Eli Friedman2e630542008-06-13 23:01:12 +0000346 // FIXME: volatility
Lauro Ramos Venancio97b09572008-02-19 22:04:22 +0000347 Builder.CreateStore(llvm::Constant::getNullValue(EType), NextVal);
348 else
349 EmitAggregateClear(NextVal, QType);
Lauro Ramos Venancio9eb37a22008-02-18 22:44:02 +0000350 }
Lauro Ramos Venancio97b09572008-02-19 22:04:22 +0000351 } else
352 assert(false && "Invalid initializer");
Lauro Ramos Venancio9eb37a22008-02-18 22:44:02 +0000353}
354
Chris Lattner6ee6ab02008-04-04 18:42:16 +0000355void AggExprEmitter::EmitInitializationToLValue(Expr* E, LValue LV) {
356 // FIXME: Are initializers affected by volatile?
357 if (E->getType()->isComplexType()) {
358 CGF.EmitComplexExprIntoAddr(E, LV.getAddress(), false);
Eli Friedmanbb822fb2008-05-12 15:06:05 +0000359 } else if (CGF.hasAggregateLLVMType(E->getType())) {
360 CGF.EmitAnyExpr(E, LV.getAddress(), false);
361 } else {
362 CGF.EmitStoreThroughLValue(CGF.EmitAnyExpr(E), LV, E->getType());
Chris Lattner6ee6ab02008-04-04 18:42:16 +0000363 }
Chris Lattner6ee6ab02008-04-04 18:42:16 +0000364}
365
366void AggExprEmitter::EmitNullInitializationToLValue(LValue LV, QualType T) {
367 if (!CGF.hasAggregateLLVMType(T)) {
368 // For non-aggregates, we can store zero
Daniel Dunbarde813312008-08-06 05:32:55 +0000369 llvm::Value *Null = llvm::Constant::getNullValue(CGF.ConvertType(T));
370 CGF.EmitStoreThroughLValue(RValue::get(Null), LV, T);
Lauro Ramos Venancioa62b1df2008-02-19 19:27:31 +0000371 } else {
Chris Lattner6ee6ab02008-04-04 18:42:16 +0000372 // Otherwise, just memset the whole thing to zero. This is legal
373 // because in LLVM, all default initializers are guaranteed to have a
374 // bit pattern of all zeros.
375 // There's a potential optimization opportunity in combining
376 // memsets; that would be easy for arrays, but relatively
377 // difficult for structures with the current code.
378 llvm::Value *MemSet = CGF.CGM.getIntrinsic(llvm::Intrinsic::memset_i64);
379 uint64_t Size = CGF.getContext().getTypeSize(T);
380
381 const llvm::Type *BP = llvm::PointerType::getUnqual(llvm::Type::Int8Ty);
382 llvm::Value* DestPtr = Builder.CreateBitCast(LV.getAddress(), BP, "tmp");
Chris Lattner7db5e942008-05-06 00:56:42 +0000383 Builder.CreateCall4(MemSet, DestPtr,
384 llvm::ConstantInt::get(llvm::Type::Int8Ty, 0),
385 llvm::ConstantInt::get(llvm::Type::Int64Ty, Size/8),
386 llvm::ConstantInt::get(llvm::Type::Int32Ty, 0));
Chris Lattner6ee6ab02008-04-04 18:42:16 +0000387 }
388}
389
Chris Lattner6ee6ab02008-04-04 18:42:16 +0000390void AggExprEmitter::VisitInitListExpr(InitListExpr *E) {
Daniel Dunbar182418c2008-08-23 18:44:10 +0000391 // FIXME: For constant expressions, call into const expr emitter so
392 // that we can emit a memcpy instead of storing the individual
393 // members. This is purely for perf; both codepaths lead to
394 // equivalent (although not necessarily identical) code. It's worth
395 // noting that LLVM keeps on getting smarter, though, so it might
396 // not be worth bothering.
Chris Lattner6ee6ab02008-04-04 18:42:16 +0000397
398 // Handle initialization of an array.
399 if (E->getType()->isArrayType()) {
400 const llvm::PointerType *APType =
401 cast<llvm::PointerType>(DestPtr->getType());
402 const llvm::ArrayType *AType =
403 cast<llvm::ArrayType>(APType->getElementType());
404
405 uint64_t NumInitElements = E->getNumInits();
Eli Friedman48ec5622008-05-19 17:51:16 +0000406
Chris Lattnerc154ac12008-07-26 22:37:01 +0000407 if (E->getNumInits() > 0) {
408 QualType T1 = E->getType();
409 QualType T2 = E->getInit(0)->getType();
410 if (CGF.getContext().getCanonicalType(T1).getUnqualifiedType() ==
411 CGF.getContext().getCanonicalType(T2).getUnqualifiedType()) {
412 EmitAggLoadOfLValue(E->getInit(0));
413 return;
414 }
Eli Friedman48ec5622008-05-19 17:51:16 +0000415 }
416
Chris Lattner6ee6ab02008-04-04 18:42:16 +0000417 uint64_t NumArrayElements = AType->getNumElements();
Chris Lattnera1923f62008-08-04 07:31:14 +0000418 QualType ElementType = CGF.getContext().getCanonicalType(E->getType());
419 ElementType =CGF.getContext().getAsArrayType(ElementType)->getElementType();
Chris Lattner6ee6ab02008-04-04 18:42:16 +0000420
Chris Lattnera1923f62008-08-04 07:31:14 +0000421 unsigned CVRqualifier = ElementType.getCVRQualifiers();
Eli Friedman2e630542008-06-13 23:01:12 +0000422
Chris Lattner6ee6ab02008-04-04 18:42:16 +0000423 for (uint64_t i = 0; i != NumArrayElements; ++i) {
424 llvm::Value *NextVal = Builder.CreateStructGEP(DestPtr, i, ".array");
425 if (i < NumInitElements)
Eli Friedman2e630542008-06-13 23:01:12 +0000426 EmitInitializationToLValue(E->getInit(i),
427 LValue::MakeAddr(NextVal, CVRqualifier));
Chris Lattner6ee6ab02008-04-04 18:42:16 +0000428 else
Eli Friedman2e630542008-06-13 23:01:12 +0000429 EmitNullInitializationToLValue(LValue::MakeAddr(NextVal, CVRqualifier),
Chris Lattner6ee6ab02008-04-04 18:42:16 +0000430 ElementType);
Lauro Ramos Venancioa62b1df2008-02-19 19:27:31 +0000431 }
Chris Lattner6ee6ab02008-04-04 18:42:16 +0000432 return;
433 }
434
435 assert(E->getType()->isRecordType() && "Only support structs/unions here!");
436
437 // Do struct initialization; this code just sets each individual member
438 // to the approprate value. This makes bitfield support automatic;
439 // the disadvantage is that the generated code is more difficult for
440 // the optimizer, especially with bitfields.
441 unsigned NumInitElements = E->getNumInits();
442 RecordDecl *SD = E->getType()->getAsRecordType()->getDecl();
443 unsigned NumMembers = SD->getNumMembers() - SD->hasFlexibleArrayMember();
444 unsigned CurInitVal = 0;
445 bool isUnion = E->getType()->isUnionType();
446
447 // Here we iterate over the fields; this makes it simpler to both
448 // default-initialize fields and skip over unnamed fields.
449 for (unsigned CurFieldNo = 0; CurFieldNo != NumMembers; ++CurFieldNo) {
Chris Lattner6ee6ab02008-04-04 18:42:16 +0000450 FieldDecl *CurField = SD->getMember(CurFieldNo);
451 if (CurField->getIdentifier() == 0) {
452 // Initializers can't initialize unnamed fields, e.g. "int : 20;"
453 continue;
454 }
Eli Friedman2e630542008-06-13 23:01:12 +0000455 // FIXME: volatility
456 LValue FieldLoc = CGF.EmitLValueForField(DestPtr, CurField, isUnion,0);
Chris Lattner6ee6ab02008-04-04 18:42:16 +0000457 if (CurInitVal < NumInitElements) {
458 // Store the initializer into the field
459 // This will probably have to get a bit smarter when we support
460 // designators in initializers
461 EmitInitializationToLValue(E->getInit(CurInitVal++), FieldLoc);
462 } else {
463 // We're out of initalizers; default-initialize to null
464 EmitNullInitializationToLValue(FieldLoc, CurField->getType());
465 }
466
467 // Unions only initialize one field.
468 // (things can get weird with designators, but they aren't
469 // supported yet.)
470 if (E->getType()->isUnionType())
471 break;
Lauro Ramos Venancioa62b1df2008-02-19 19:27:31 +0000472 }
Devang Patelddde6d52007-10-26 17:44:44 +0000473}
474
Chris Lattnera7300102007-08-21 04:59:27 +0000475//===----------------------------------------------------------------------===//
476// Entry Points into this File
477//===----------------------------------------------------------------------===//
478
479/// EmitAggExpr - Emit the computation of the specified expression of
480/// aggregate type. The result is computed into DestPtr. Note that if
481/// DestPtr is null, the value of the aggregate expression is not needed.
482void CodeGenFunction::EmitAggExpr(const Expr *E, llvm::Value *DestPtr,
483 bool VolatileDest) {
484 assert(E && hasAggregateLLVMType(E->getType()) &&
485 "Invalid aggregate expression to emit");
486
487 AggExprEmitter(*this, DestPtr, VolatileDest).Visit(const_cast<Expr*>(E));
488}