blob: c558d137e2c8edaaa932c756704149e0a53b35f2 [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
Mike Stump4ac20dd2009-05-23 20:28:01 +000052 /// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
53 void EmitFinalDestCopy(const Expr *E, LValue Src);
54 void EmitFinalDestCopy(const Expr *E, RValue Src);
55
Chris Lattneree755f92007-08-21 04:59:27 +000056 //===--------------------------------------------------------------------===//
57 // Visitor Methods
58 //===--------------------------------------------------------------------===//
59
Chris Lattner9c033562007-08-21 04:25:47 +000060 void VisitStmt(Stmt *S) {
Daniel Dunbar488e9932008-08-16 00:56:44 +000061 CGF.ErrorUnsupported(S, "aggregate expression");
Chris Lattner9c033562007-08-21 04:25:47 +000062 }
63 void VisitParenExpr(ParenExpr *PE) { Visit(PE->getSubExpr()); }
Eli Friedman12444a22009-01-27 09:03:41 +000064 void VisitUnaryExtension(UnaryOperator *E) { Visit(E->getSubExpr()); }
Chris Lattner9c033562007-08-21 04:25:47 +000065
66 // l-values.
Seo Sanghyeon9b73b392007-12-14 02:04:12 +000067 void VisitDeclRefExpr(DeclRefExpr *DRE) { EmitAggLoadOfLValue(DRE); }
68 void VisitMemberExpr(MemberExpr *ME) { EmitAggLoadOfLValue(ME); }
69 void VisitUnaryDeref(UnaryOperator *E) { EmitAggLoadOfLValue(E); }
Seo Sanghyeonad6ebd62007-12-23 03:11:58 +000070 void VisitStringLiteral(StringLiteral *E) { EmitAggLoadOfLValue(E); }
Chris Lattnerf0a990c2009-04-21 23:00:09 +000071 void VisitCompoundLiteralExpr(CompoundLiteralExpr *E) {
72 EmitAggLoadOfLValue(E);
73 }
Seo Sanghyeon9b73b392007-12-14 02:04:12 +000074 void VisitArraySubscriptExpr(ArraySubscriptExpr *E) {
75 EmitAggLoadOfLValue(E);
76 }
Chris Lattnerf0a990c2009-04-21 23:00:09 +000077 void VisitBlockDeclRefExpr(const BlockDeclRefExpr *E) {
78 EmitAggLoadOfLValue(E);
79 }
80 void VisitPredefinedExpr(const PredefinedExpr *E) {
81 EmitAggLoadOfLValue(E);
82 }
Douglas Gregor4c678342009-01-28 21:54:33 +000083
Chris Lattner9c033562007-08-21 04:25:47 +000084 // Operators.
Nuno Lopes7e916272009-01-15 20:14:33 +000085 void VisitCStyleCastExpr(CStyleCastExpr *E);
Anders Carlssone4707ff2008-01-14 06:28:57 +000086 void VisitImplicitCastExpr(ImplicitCastExpr *E);
Anders Carlsson148fe672007-10-31 22:04:46 +000087 void VisitCallExpr(const CallExpr *E);
Chris Lattnerb2d963f2007-08-31 22:54:14 +000088 void VisitStmtExpr(const StmtExpr *E);
Chris Lattner9c033562007-08-21 04:25:47 +000089 void VisitBinaryOperator(const BinaryOperator *BO);
Chris Lattner03d6fb92007-08-21 04:43:17 +000090 void VisitBinAssign(const BinaryOperator *E);
Eli Friedman07fa52a2008-05-20 07:56:31 +000091 void VisitBinComma(const BinaryOperator *E);
Chris Lattner9c033562007-08-21 04:25:47 +000092
Chris Lattner8fdf3282008-06-24 17:04:18 +000093 void VisitObjCMessageExpr(ObjCMessageExpr *E);
Daniel Dunbar0a04d772008-08-23 10:51:21 +000094 void VisitObjCIvarRefExpr(ObjCIvarRefExpr *E) {
95 EmitAggLoadOfLValue(E);
96 }
Daniel Dunbar9c3fc702008-08-27 06:57:25 +000097 void VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *E);
Fariborz Jahanian5daf5702008-11-22 18:39:36 +000098 void VisitObjCKVCRefExpr(ObjCKVCRefExpr *E);
Chris Lattner9c033562007-08-21 04:25:47 +000099
100 void VisitConditionalOperator(const ConditionalOperator *CO);
Devang Patel636c3d02007-10-26 17:44:44 +0000101 void VisitInitListExpr(InitListExpr *E);
Chris Lattner04421082008-04-08 04:40:51 +0000102 void VisitCXXDefaultArgExpr(CXXDefaultArgExpr *DAE) {
103 Visit(DAE->getExpr());
104 }
Anders Carlsson31ccf372009-05-03 17:47:16 +0000105 void VisitCXXConstructExpr(const CXXConstructExpr *E);
Anders Carlsson7f6ad152009-05-19 04:48:36 +0000106 void VisitCXXExprWithTemporaries(CXXExprWithTemporaries *E);
107
Eli Friedmanb1851242008-05-27 15:51:49 +0000108 void VisitVAArgExpr(VAArgExpr *E);
Chris Lattnerf81557c2008-04-04 18:42:16 +0000109
110 void EmitInitializationToLValue(Expr *E, LValue Address);
111 void EmitNullInitializationToLValue(LValue Address, QualType T);
Chris Lattner9c033562007-08-21 04:25:47 +0000112 // case Expr::ChooseExprClass:
Lauro Ramos Venancio305762c2008-02-18 22:44:02 +0000113
Chris Lattner9c033562007-08-21 04:25:47 +0000114};
115} // end anonymous namespace.
116
Chris Lattneree755f92007-08-21 04:59:27 +0000117//===----------------------------------------------------------------------===//
118// Utilities
119//===----------------------------------------------------------------------===//
Chris Lattner9c033562007-08-21 04:25:47 +0000120
Chris Lattner883f6a72007-08-11 00:04:45 +0000121/// EmitAggLoadOfLValue - Given an expression with aggregate type that
122/// represents a value lvalue, this method emits the address of the lvalue,
123/// then loads the result into DestPtr.
Chris Lattner9c033562007-08-21 04:25:47 +0000124void AggExprEmitter::EmitAggLoadOfLValue(const Expr *E) {
125 LValue LV = CGF.EmitLValue(E);
Mike Stump4ac20dd2009-05-23 20:28:01 +0000126 EmitFinalDestCopy(E, LV);
127}
128
129/// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
130void AggExprEmitter::EmitFinalDestCopy(const Expr *E, RValue Src) {
131 assert(Src.isAggregate() && "value must be aggregate value!");
132
Chris Lattner883f6a72007-08-11 00:04:45 +0000133 // If the result is ignored, don't copy from the value.
Mike Stump9ccb1032009-05-23 22:01:27 +0000134 if (DestPtr == 0) {
135 if (Src.isVolatileQualified())
136 // If the source is volatile, we must read from it; to do that, we need
137 // some place to put it.
138 DestPtr = CGF.CreateTempAlloca(CGF.ConvertType(E->getType()), "agg.tmp");
139 else
140 return;
141 }
Chris Lattner883f6a72007-08-11 00:04:45 +0000142
Mike Stump4ac20dd2009-05-23 20:28:01 +0000143 // If the result of the assignment is used, copy the LHS there also.
144 // FIXME: Pass VolatileDest as well. I think we also need to merge volatile
145 // from the source as well, as we can't eliminate it if either operand
146 // is volatile, unless copy has volatile for both source and destination..
Mike Stump27fe2e62009-05-23 22:29:41 +0000147 CGF.EmitAggregateCopy(DestPtr, Src.getAggregateAddr(), E->getType(),
148 VolatileDest|Src.isVolatileQualified());
Mike Stump4ac20dd2009-05-23 20:28:01 +0000149}
150
151/// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
152void AggExprEmitter::EmitFinalDestCopy(const Expr *E, LValue Src) {
153 assert(Src.isSimple() && "Can't have aggregate bitfield, vector, etc");
154
155 EmitFinalDestCopy(E, RValue::getAggregate(Src.getAddress(),
156 Src.isVolatileQualified()));
Chris Lattner883f6a72007-08-11 00:04:45 +0000157}
158
Chris Lattneree755f92007-08-21 04:59:27 +0000159//===----------------------------------------------------------------------===//
160// Visitor Methods
161//===----------------------------------------------------------------------===//
162
Nuno Lopes7e916272009-01-15 20:14:33 +0000163void AggExprEmitter::VisitCStyleCastExpr(CStyleCastExpr *E) {
164 // GCC union extension
165 if (E->getType()->isUnionType()) {
166 RecordDecl *SD = E->getType()->getAsRecordType()->getDecl();
Douglas Gregor6ab35242009-04-09 21:40:53 +0000167 LValue FieldLoc = CGF.EmitLValueForField(DestPtr,
168 *SD->field_begin(CGF.getContext()),
169 true, 0);
Nuno Lopes7e916272009-01-15 20:14:33 +0000170 EmitInitializationToLValue(E->getSubExpr(), FieldLoc);
171 return;
172 }
173
174 Visit(E->getSubExpr());
175}
176
Chris Lattner96196622008-07-26 22:37:01 +0000177void AggExprEmitter::VisitImplicitCastExpr(ImplicitCastExpr *E) {
Eli Friedmanff6e2b72008-02-11 01:09:17 +0000178 assert(CGF.getContext().typesAreCompatible(
Chris Lattner96196622008-07-26 22:37:01 +0000179 E->getSubExpr()->getType().getUnqualifiedType(),
180 E->getType().getUnqualifiedType()) &&
181 "Implicit cast types must be compatible");
Anders Carlssone4707ff2008-01-14 06:28:57 +0000182 Visit(E->getSubExpr());
183}
184
Chris Lattner96196622008-07-26 22:37:01 +0000185void AggExprEmitter::VisitCallExpr(const CallExpr *E) {
Anders Carlsson148fe672007-10-31 22:04:46 +0000186 RValue RV = CGF.EmitCallExpr(E);
Mike Stump4ac20dd2009-05-23 20:28:01 +0000187 EmitFinalDestCopy(E, RV);
Anders Carlsson148fe672007-10-31 22:04:46 +0000188}
Chris Lattner96196622008-07-26 22:37:01 +0000189
190void AggExprEmitter::VisitObjCMessageExpr(ObjCMessageExpr *E) {
Daniel Dunbar8f2926b2008-08-23 03:46:30 +0000191 RValue RV = CGF.EmitObjCMessageExpr(E);
Mike Stump4ac20dd2009-05-23 20:28:01 +0000192 EmitFinalDestCopy(E, RV);
Chris Lattner8fdf3282008-06-24 17:04:18 +0000193}
Anders Carlsson148fe672007-10-31 22:04:46 +0000194
Daniel Dunbar9c3fc702008-08-27 06:57:25 +0000195void AggExprEmitter::VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *E) {
196 RValue RV = CGF.EmitObjCPropertyGet(E);
Mike Stump4ac20dd2009-05-23 20:28:01 +0000197 EmitFinalDestCopy(E, RV);
Daniel Dunbar9c3fc702008-08-27 06:57:25 +0000198}
199
Fariborz Jahanian5daf5702008-11-22 18:39:36 +0000200void AggExprEmitter::VisitObjCKVCRefExpr(ObjCKVCRefExpr *E) {
201 RValue RV = CGF.EmitObjCPropertyGet(E);
Mike Stump4ac20dd2009-05-23 20:28:01 +0000202 EmitFinalDestCopy(E, RV);
Fariborz Jahanian5daf5702008-11-22 18:39:36 +0000203}
204
Chris Lattner96196622008-07-26 22:37:01 +0000205void AggExprEmitter::VisitBinComma(const BinaryOperator *E) {
Mike Stump9ccb1032009-05-23 22:01:27 +0000206 CGF.EmitAnyExpr(E->getLHS());
Mike Stumpf1b97f22009-05-23 21:40:07 +0000207 CGF.EmitAggExpr(E->getRHS(), DestPtr, VolatileDest);
Eli Friedman07fa52a2008-05-20 07:56:31 +0000208}
209
Chris Lattnerb2d963f2007-08-31 22:54:14 +0000210void AggExprEmitter::VisitStmtExpr(const StmtExpr *E) {
211 CGF.EmitCompoundStmt(*E->getSubStmt(), true, DestPtr, VolatileDest);
212}
213
Chris Lattner9c033562007-08-21 04:25:47 +0000214void AggExprEmitter::VisitBinaryOperator(const BinaryOperator *E) {
Daniel Dunbar488e9932008-08-16 00:56:44 +0000215 CGF.ErrorUnsupported(E, "aggregate binary expression");
Chris Lattneree755f92007-08-21 04:59:27 +0000216}
217
Chris Lattner03d6fb92007-08-21 04:43:17 +0000218void AggExprEmitter::VisitBinAssign(const BinaryOperator *E) {
Eli Friedmanff6e2b72008-02-11 01:09:17 +0000219 // For an assignment to work, the value on the right has
220 // to be compatible with the value on the left.
221 assert(CGF.getContext().typesAreCompatible(
222 E->getLHS()->getType().getUnqualifiedType(),
223 E->getRHS()->getType().getUnqualifiedType())
224 && "Invalid assignment");
Chris Lattner9c033562007-08-21 04:25:47 +0000225 LValue LHS = CGF.EmitLValue(E->getLHS());
Chris Lattner883f6a72007-08-11 00:04:45 +0000226
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000227 // We have to special case property setters, otherwise we must have
228 // a simple lvalue (no aggregates inside vectors, bitfields).
229 if (LHS.isPropertyRef()) {
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000230 llvm::Value *AggLoc = DestPtr;
231 if (!AggLoc)
232 AggLoc = CGF.CreateTempAlloca(CGF.ConvertType(E->getRHS()->getType()));
Mike Stump240993d2009-05-23 23:48:13 +0000233 CGF.EmitAggExpr(E->getRHS(), AggLoc, VolatileDest);
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000234 CGF.EmitObjCPropertySet(LHS.getPropertyRefExpr(),
Mike Stump240993d2009-05-23 23:48:13 +0000235 RValue::getAggregate(AggLoc, VolatileDest));
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000236 }
237 else if (LHS.isKVCRef()) {
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000238 llvm::Value *AggLoc = DestPtr;
239 if (!AggLoc)
240 AggLoc = CGF.CreateTempAlloca(CGF.ConvertType(E->getRHS()->getType()));
Mike Stumpa49af1a2009-05-23 23:52:31 +0000241 CGF.EmitAggExpr(E->getRHS(), AggLoc, VolatileDest);
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000242 CGF.EmitObjCPropertySet(LHS.getKVCRefExpr(),
Mike Stumpa49af1a2009-05-23 23:52:31 +0000243 RValue::getAggregate(AggLoc, VolatileDest));
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000244 } else {
245 // Codegen the RHS so that it stores directly into the LHS.
Mike Stumpfde64202009-05-23 04:13:59 +0000246 CGF.EmitAggExpr(E->getRHS(), LHS.getAddress(), LHS.isVolatileQualified());
Mike Stump4ac20dd2009-05-23 20:28:01 +0000247 EmitFinalDestCopy(E, LHS);
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000248 }
Chris Lattner883f6a72007-08-11 00:04:45 +0000249}
250
Chris Lattner9c033562007-08-21 04:25:47 +0000251void AggExprEmitter::VisitConditionalOperator(const ConditionalOperator *E) {
Daniel Dunbar9615ecb2008-11-13 01:38:36 +0000252 llvm::BasicBlock *LHSBlock = CGF.createBasicBlock("cond.true");
253 llvm::BasicBlock *RHSBlock = CGF.createBasicBlock("cond.false");
254 llvm::BasicBlock *ContBlock = CGF.createBasicBlock("cond.end");
Chris Lattner883f6a72007-08-11 00:04:45 +0000255
Chris Lattner9c033562007-08-21 04:25:47 +0000256 llvm::Value *Cond = CGF.EvaluateExprAsBool(E->getCond());
Chris Lattnerbfc0c1a2007-08-26 23:13:56 +0000257 Builder.CreateCondBr(Cond, LHSBlock, RHSBlock);
Chris Lattner883f6a72007-08-11 00:04:45 +0000258
Chris Lattner9c033562007-08-21 04:25:47 +0000259 CGF.EmitBlock(LHSBlock);
Chris Lattner883f6a72007-08-11 00:04:45 +0000260
261 // Handle the GNU extension for missing LHS.
262 assert(E->getLHS() && "Must have LHS for aggregate value");
263
Chris Lattnerc748f272007-08-21 05:02:10 +0000264 Visit(E->getLHS());
Daniel Dunbard57a8712008-11-11 09:41:28 +0000265 CGF.EmitBranch(ContBlock);
Chris Lattner883f6a72007-08-11 00:04:45 +0000266
Chris Lattner9c033562007-08-21 04:25:47 +0000267 CGF.EmitBlock(RHSBlock);
Chris Lattner883f6a72007-08-11 00:04:45 +0000268
Chris Lattnerc748f272007-08-21 05:02:10 +0000269 Visit(E->getRHS());
Daniel Dunbard57a8712008-11-11 09:41:28 +0000270 CGF.EmitBranch(ContBlock);
Chris Lattner883f6a72007-08-11 00:04:45 +0000271
Chris Lattner9c033562007-08-21 04:25:47 +0000272 CGF.EmitBlock(ContBlock);
Chris Lattner883f6a72007-08-11 00:04:45 +0000273}
Chris Lattneree755f92007-08-21 04:59:27 +0000274
Eli Friedmanb1851242008-05-27 15:51:49 +0000275void AggExprEmitter::VisitVAArgExpr(VAArgExpr *VE) {
Daniel Dunbar07855702009-02-11 22:25:55 +0000276 llvm::Value *ArgValue = CGF.EmitVAListRef(VE->getSubExpr());
Anders Carlssonddf7cac2008-11-04 05:30:00 +0000277 llvm::Value *ArgPtr = CGF.EmitVAArg(ArgValue, VE->getType());
278
Sebastian Redl0262f022009-01-09 21:09:38 +0000279 if (!ArgPtr) {
Anders Carlssonddf7cac2008-11-04 05:30:00 +0000280 CGF.ErrorUnsupported(VE, "aggregate va_arg expression");
Sebastian Redl0262f022009-01-09 21:09:38 +0000281 return;
282 }
283
Mike Stump4ac20dd2009-05-23 20:28:01 +0000284 EmitFinalDestCopy(VE, LValue::MakeAddr(ArgPtr, 0));
Eli Friedmanb1851242008-05-27 15:51:49 +0000285}
286
Anders Carlssonb14095a2009-04-17 00:06:03 +0000287void
Anders Carlsson31ccf372009-05-03 17:47:16 +0000288AggExprEmitter::VisitCXXConstructExpr(const CXXConstructExpr *E) {
Anders Carlsson7f6ad152009-05-19 04:48:36 +0000289 llvm::Value *V = DestPtr;
Anders Carlssonb14095a2009-04-17 00:06:03 +0000290
Anders Carlsson7f6ad152009-05-19 04:48:36 +0000291 if (!V) {
292 assert(isa<CXXTempVarDecl>(E->getVarDecl()) &&
293 "Must have a temp var decl when there's no destination!");
294
295 V = CGF.CreateTempAlloca(CGF.ConvertType(E->getVarDecl()->getType()),
296 "tmpvar");
297 }
298
299 CGF.EmitCXXConstructExpr(V, E);
300}
301
302void AggExprEmitter::VisitCXXExprWithTemporaries(CXXExprWithTemporaries *E) {
303 // FIXME: Do something with the temporaries!
304 Visit(E->getSubExpr());
Anders Carlssonb14095a2009-04-17 00:06:03 +0000305}
306
Chris Lattnerf81557c2008-04-04 18:42:16 +0000307void AggExprEmitter::EmitInitializationToLValue(Expr* E, LValue LV) {
308 // FIXME: Are initializers affected by volatile?
Douglas Gregor3498bdb2009-01-29 17:44:32 +0000309 if (isa<ImplicitValueInitExpr>(E)) {
Douglas Gregor4c678342009-01-28 21:54:33 +0000310 EmitNullInitializationToLValue(LV, E->getType());
Douglas Gregor3498bdb2009-01-29 17:44:32 +0000311 } else if (E->getType()->isComplexType()) {
312 CGF.EmitComplexExprIntoAddr(E, LV.getAddress(), false);
Eli Friedmanc8ba9612008-05-12 15:06:05 +0000313 } else if (CGF.hasAggregateLLVMType(E->getType())) {
314 CGF.EmitAnyExpr(E, LV.getAddress(), false);
315 } else {
316 CGF.EmitStoreThroughLValue(CGF.EmitAnyExpr(E), LV, E->getType());
Chris Lattnerf81557c2008-04-04 18:42:16 +0000317 }
Chris Lattnerf81557c2008-04-04 18:42:16 +0000318}
319
320void AggExprEmitter::EmitNullInitializationToLValue(LValue LV, QualType T) {
321 if (!CGF.hasAggregateLLVMType(T)) {
322 // For non-aggregates, we can store zero
Daniel Dunbar82397132008-08-06 05:32:55 +0000323 llvm::Value *Null = llvm::Constant::getNullValue(CGF.ConvertType(T));
324 CGF.EmitStoreThroughLValue(RValue::get(Null), LV, T);
Lauro Ramos Venancio145cd892008-02-19 19:27:31 +0000325 } else {
Chris Lattnerf81557c2008-04-04 18:42:16 +0000326 // Otherwise, just memset the whole thing to zero. This is legal
327 // because in LLVM, all default initializers are guaranteed to have a
328 // bit pattern of all zeros.
Eli Friedman0f593122009-04-13 21:47:26 +0000329 // FIXME: That isn't true for member pointers!
Chris Lattnerf81557c2008-04-04 18:42:16 +0000330 // There's a potential optimization opportunity in combining
331 // memsets; that would be easy for arrays, but relatively
332 // difficult for structures with the current code.
Eli Friedmanccf0ed82009-03-28 03:10:45 +0000333 CGF.EmitMemSetToZero(LV.getAddress(), T);
Chris Lattnerf81557c2008-04-04 18:42:16 +0000334 }
335}
336
Chris Lattnerf81557c2008-04-04 18:42:16 +0000337void AggExprEmitter::VisitInitListExpr(InitListExpr *E) {
Eli Friedmana385b3c2008-12-02 01:17:45 +0000338#if 0
339 // FIXME: Disabled while we figure out what to do about
340 // test/CodeGen/bitfield.c
341 //
Mike Stumpf5408fe2009-05-16 07:57:57 +0000342 // If we can, prefer a copy from a global; this is a lot less code for long
343 // globals, and it's easier for the current optimizers to analyze.
344 // FIXME: Should we really be doing this? Should we try to avoid cases where
345 // we emit a global with a lot of zeros? Should we try to avoid short
346 // globals?
Eli Friedmanc9e8f602009-01-25 02:32:41 +0000347 if (E->isConstantInitializer(CGF.getContext(), 0)) {
Eli Friedman994ffef2008-11-30 02:11:09 +0000348 llvm::Constant* C = CGF.CGM.EmitConstantExpr(E, &CGF);
349 llvm::GlobalVariable* GV =
350 new llvm::GlobalVariable(C->getType(), true,
351 llvm::GlobalValue::InternalLinkage,
352 C, "", &CGF.CGM.getModule(), 0);
Mike Stump4ac20dd2009-05-23 20:28:01 +0000353 EmitFinalDestCopy(E, LValue::MakeAddr(GV, 0));
Eli Friedman994ffef2008-11-30 02:11:09 +0000354 return;
355 }
Eli Friedmana385b3c2008-12-02 01:17:45 +0000356#endif
Douglas Gregora9c87802009-01-29 19:42:23 +0000357 if (E->hadArrayRangeDesignator()) {
358 CGF.ErrorUnsupported(E, "GNU array range designator extension");
359 }
360
Chris Lattnerf81557c2008-04-04 18:42:16 +0000361 // Handle initialization of an array.
362 if (E->getType()->isArrayType()) {
363 const llvm::PointerType *APType =
364 cast<llvm::PointerType>(DestPtr->getType());
365 const llvm::ArrayType *AType =
366 cast<llvm::ArrayType>(APType->getElementType());
367
368 uint64_t NumInitElements = E->getNumInits();
Eli Friedman922696f2008-05-19 17:51:16 +0000369
Chris Lattner96196622008-07-26 22:37:01 +0000370 if (E->getNumInits() > 0) {
371 QualType T1 = E->getType();
372 QualType T2 = E->getInit(0)->getType();
373 if (CGF.getContext().getCanonicalType(T1).getUnqualifiedType() ==
374 CGF.getContext().getCanonicalType(T2).getUnqualifiedType()) {
375 EmitAggLoadOfLValue(E->getInit(0));
376 return;
377 }
Eli Friedman922696f2008-05-19 17:51:16 +0000378 }
379
Chris Lattnerf81557c2008-04-04 18:42:16 +0000380 uint64_t NumArrayElements = AType->getNumElements();
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000381 QualType ElementType = CGF.getContext().getCanonicalType(E->getType());
Douglas Gregor4c678342009-01-28 21:54:33 +0000382 ElementType = CGF.getContext().getAsArrayType(ElementType)->getElementType();
Chris Lattnerf81557c2008-04-04 18:42:16 +0000383
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000384 unsigned CVRqualifier = ElementType.getCVRQualifiers();
Eli Friedman1e692ac2008-06-13 23:01:12 +0000385
Chris Lattnerf81557c2008-04-04 18:42:16 +0000386 for (uint64_t i = 0; i != NumArrayElements; ++i) {
387 llvm::Value *NextVal = Builder.CreateStructGEP(DestPtr, i, ".array");
388 if (i < NumInitElements)
Eli Friedman1e692ac2008-06-13 23:01:12 +0000389 EmitInitializationToLValue(E->getInit(i),
390 LValue::MakeAddr(NextVal, CVRqualifier));
Chris Lattnerf81557c2008-04-04 18:42:16 +0000391 else
Eli Friedman1e692ac2008-06-13 23:01:12 +0000392 EmitNullInitializationToLValue(LValue::MakeAddr(NextVal, CVRqualifier),
Chris Lattnerf81557c2008-04-04 18:42:16 +0000393 ElementType);
Lauro Ramos Venancio145cd892008-02-19 19:27:31 +0000394 }
Chris Lattnerf81557c2008-04-04 18:42:16 +0000395 return;
396 }
397
398 assert(E->getType()->isRecordType() && "Only support structs/unions here!");
399
400 // Do struct initialization; this code just sets each individual member
401 // to the approprate value. This makes bitfield support automatic;
402 // the disadvantage is that the generated code is more difficult for
403 // the optimizer, especially with bitfields.
404 unsigned NumInitElements = E->getNumInits();
405 RecordDecl *SD = E->getType()->getAsRecordType()->getDecl();
Chris Lattnerf81557c2008-04-04 18:42:16 +0000406 unsigned CurInitVal = 0;
Douglas Gregor0bb76892009-01-29 16:53:55 +0000407
408 if (E->getType()->isUnionType()) {
409 // Only initialize one field of a union. The field itself is
410 // specified by the initializer list.
411 if (!E->getInitializedFieldInUnion()) {
412 // Empty union; we have nothing to do.
413
414#ifndef NDEBUG
415 // Make sure that it's really an empty and not a failure of
416 // semantic analysis.
Douglas Gregor6ab35242009-04-09 21:40:53 +0000417 for (RecordDecl::field_iterator Field = SD->field_begin(CGF.getContext()),
418 FieldEnd = SD->field_end(CGF.getContext());
Douglas Gregor0bb76892009-01-29 16:53:55 +0000419 Field != FieldEnd; ++Field)
420 assert(Field->isUnnamedBitfield() && "Only unnamed bitfields allowed");
421#endif
422 return;
423 }
424
425 // FIXME: volatility
426 FieldDecl *Field = E->getInitializedFieldInUnion();
427 LValue FieldLoc = CGF.EmitLValueForField(DestPtr, Field, true, 0);
428
429 if (NumInitElements) {
430 // Store the initializer into the field
431 EmitInitializationToLValue(E->getInit(0), FieldLoc);
432 } else {
433 // Default-initialize to null
434 EmitNullInitializationToLValue(FieldLoc, Field->getType());
435 }
436
437 return;
438 }
Chris Lattnerf81557c2008-04-04 18:42:16 +0000439
440 // Here we iterate over the fields; this makes it simpler to both
441 // default-initialize fields and skip over unnamed fields.
Douglas Gregor6ab35242009-04-09 21:40:53 +0000442 for (RecordDecl::field_iterator Field = SD->field_begin(CGF.getContext()),
443 FieldEnd = SD->field_end(CGF.getContext());
Douglas Gregor44b43212008-12-11 16:49:14 +0000444 Field != FieldEnd; ++Field) {
445 // We're done once we hit the flexible array member
446 if (Field->getType()->isIncompleteArrayType())
447 break;
448
Douglas Gregor34e79462009-01-28 23:36:17 +0000449 if (Field->isUnnamedBitfield())
Chris Lattnerf81557c2008-04-04 18:42:16 +0000450 continue;
Douglas Gregor34e79462009-01-28 23:36:17 +0000451
Eli Friedman1e692ac2008-06-13 23:01:12 +0000452 // FIXME: volatility
Douglas Gregor0bb76892009-01-29 16:53:55 +0000453 LValue FieldLoc = CGF.EmitLValueForField(DestPtr, *Field, false, 0);
Chris Lattnerf81557c2008-04-04 18:42:16 +0000454 if (CurInitVal < NumInitElements) {
455 // Store the initializer into the field
Chris Lattnerf81557c2008-04-04 18:42:16 +0000456 EmitInitializationToLValue(E->getInit(CurInitVal++), FieldLoc);
457 } else {
458 // We're out of initalizers; default-initialize to null
Douglas Gregor44b43212008-12-11 16:49:14 +0000459 EmitNullInitializationToLValue(FieldLoc, Field->getType());
Chris Lattnerf81557c2008-04-04 18:42:16 +0000460 }
Lauro Ramos Venancio145cd892008-02-19 19:27:31 +0000461 }
Devang Patel636c3d02007-10-26 17:44:44 +0000462}
463
Chris Lattneree755f92007-08-21 04:59:27 +0000464//===----------------------------------------------------------------------===//
465// Entry Points into this File
466//===----------------------------------------------------------------------===//
467
Mike Stumpe1129a92009-05-26 18:57:45 +0000468/// EmitAggExpr - Emit the computation of the specified expression of aggregate
469/// type. The result is computed into DestPtr. Note that if DestPtr is null,
470/// the value of the aggregate expression is not needed. If VolatileDest is
471/// true, DestPtr cannot be 0.
Chris Lattneree755f92007-08-21 04:59:27 +0000472void CodeGenFunction::EmitAggExpr(const Expr *E, llvm::Value *DestPtr,
473 bool VolatileDest) {
474 assert(E && hasAggregateLLVMType(E->getType()) &&
475 "Invalid aggregate expression to emit");
Mike Stumpe1129a92009-05-26 18:57:45 +0000476 assert ((DestPtr != 0 || VolatileDest == false)
477 && "volatile aggregate can't be 0");
Chris Lattneree755f92007-08-21 04:59:27 +0000478
479 AggExprEmitter(*this, DestPtr, VolatileDest).Visit(const_cast<Expr*>(E));
480}
Daniel Dunbar7482d122008-09-09 20:49:46 +0000481
482void CodeGenFunction::EmitAggregateClear(llvm::Value *DestPtr, QualType Ty) {
483 assert(!Ty->isAnyComplexType() && "Shouldn't happen for complex");
484
485 EmitMemSetToZero(DestPtr, Ty);
486}
487
488void CodeGenFunction::EmitAggregateCopy(llvm::Value *DestPtr,
Mike Stump27fe2e62009-05-23 22:29:41 +0000489 llvm::Value *SrcPtr, QualType Ty,
490 bool isVolatile) {
Daniel Dunbar7482d122008-09-09 20:49:46 +0000491 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
Mike Stumpfde64202009-05-23 04:13:59 +0000515 // FIXME: If we have a volatile struct, the optimizer can remove what might
516 // appear to be `extra' memory ops:
517 //
518 // volatile struct { int i; } a, b;
519 //
520 // int main() {
521 // a = b;
522 // a = b;
523 // }
524 //
525 // either, we need to use a differnt call here, or the backend needs to be
Mike Stump27fe2e62009-05-23 22:29:41 +0000526 // taught to not do this. We use isVolatile to indicate when either the
527 // source or the destination is volatile.
Chris Lattnerca4fc2c2009-02-28 18:18:58 +0000528 Builder.CreateCall4(CGM.getMemCpyFn(),
Daniel Dunbar7482d122008-09-09 20:49:46 +0000529 DestPtr, SrcPtr,
530 // TypeInfo.first describes size in bits.
531 llvm::ConstantInt::get(IntPtr, TypeInfo.first/8),
532 llvm::ConstantInt::get(llvm::Type::Int32Ty,
533 TypeInfo.second/8));
534}