]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/CodeGen/CGExprAgg.cpp
Update clang to r98164.
[FreeBSD/FreeBSD.git] / lib / CodeGen / CGExprAgg.cpp
1 //===--- CGExprAgg.cpp - Emit LLVM Code from Aggregate Expressions --------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This contains code to emit Aggregate Expr nodes as LLVM code.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "CodeGenFunction.h"
15 #include "CodeGenModule.h"
16 #include "CGObjCRuntime.h"
17 #include "clang/AST/ASTContext.h"
18 #include "clang/AST/DeclCXX.h"
19 #include "clang/AST/StmtVisitor.h"
20 #include "llvm/Constants.h"
21 #include "llvm/Function.h"
22 #include "llvm/GlobalVariable.h"
23 #include "llvm/Intrinsics.h"
24 using namespace clang;
25 using namespace CodeGen;
26
27 //===----------------------------------------------------------------------===//
28 //                        Aggregate Expression Emitter
29 //===----------------------------------------------------------------------===//
30
31 namespace  {
32 class AggExprEmitter : public StmtVisitor<AggExprEmitter> {
33   CodeGenFunction &CGF;
34   CGBuilderTy &Builder;
35   llvm::Value *DestPtr;
36   bool VolatileDest;
37   bool IgnoreResult;
38   bool IsInitializer;
39   bool RequiresGCollection;
40 public:
41   AggExprEmitter(CodeGenFunction &cgf, llvm::Value *destPtr, bool v,
42                  bool ignore, bool isinit, bool requiresGCollection)
43     : CGF(cgf), Builder(CGF.Builder),
44       DestPtr(destPtr), VolatileDest(v), IgnoreResult(ignore),
45       IsInitializer(isinit), RequiresGCollection(requiresGCollection) {
46   }
47
48   //===--------------------------------------------------------------------===//
49   //                               Utilities
50   //===--------------------------------------------------------------------===//
51
52   /// EmitAggLoadOfLValue - Given an expression with aggregate type that
53   /// represents a value lvalue, this method emits the address of the lvalue,
54   /// then loads the result into DestPtr.
55   void EmitAggLoadOfLValue(const Expr *E);
56
57   /// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
58   void EmitFinalDestCopy(const Expr *E, LValue Src, bool Ignore = false);
59   void EmitFinalDestCopy(const Expr *E, RValue Src, bool Ignore = false);
60
61   //===--------------------------------------------------------------------===//
62   //                            Visitor Methods
63   //===--------------------------------------------------------------------===//
64
65   void VisitStmt(Stmt *S) {
66     CGF.ErrorUnsupported(S, "aggregate expression");
67   }
68   void VisitParenExpr(ParenExpr *PE) { Visit(PE->getSubExpr()); }
69   void VisitUnaryExtension(UnaryOperator *E) { Visit(E->getSubExpr()); }
70
71   // l-values.
72   void VisitDeclRefExpr(DeclRefExpr *DRE) { EmitAggLoadOfLValue(DRE); }
73   void VisitMemberExpr(MemberExpr *ME) { EmitAggLoadOfLValue(ME); }
74   void VisitUnaryDeref(UnaryOperator *E) { EmitAggLoadOfLValue(E); }
75   void VisitStringLiteral(StringLiteral *E) { EmitAggLoadOfLValue(E); }
76   void VisitCompoundLiteralExpr(CompoundLiteralExpr *E) {
77     EmitAggLoadOfLValue(E);
78   }
79   void VisitArraySubscriptExpr(ArraySubscriptExpr *E) {
80     EmitAggLoadOfLValue(E);
81   }
82   void VisitBlockDeclRefExpr(const BlockDeclRefExpr *E) {
83     EmitAggLoadOfLValue(E);
84   }
85   void VisitPredefinedExpr(const PredefinedExpr *E) {
86     EmitAggLoadOfLValue(E);
87   }
88
89   // Operators.
90   void VisitCastExpr(CastExpr *E);
91   void VisitCallExpr(const CallExpr *E);
92   void VisitStmtExpr(const StmtExpr *E);
93   void VisitBinaryOperator(const BinaryOperator *BO);
94   void VisitPointerToDataMemberBinaryOperator(const BinaryOperator *BO);
95   void VisitBinAssign(const BinaryOperator *E);
96   void VisitBinComma(const BinaryOperator *E);
97   void VisitUnaryAddrOf(const UnaryOperator *E);
98
99   void VisitObjCMessageExpr(ObjCMessageExpr *E);
100   void VisitObjCIvarRefExpr(ObjCIvarRefExpr *E) {
101     EmitAggLoadOfLValue(E);
102   }
103   void VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *E);
104   void VisitObjCImplicitSetterGetterRefExpr(ObjCImplicitSetterGetterRefExpr *E);
105
106   void VisitConditionalOperator(const ConditionalOperator *CO);
107   void VisitChooseExpr(const ChooseExpr *CE);
108   void VisitInitListExpr(InitListExpr *E);
109   void VisitImplicitValueInitExpr(ImplicitValueInitExpr *E);
110   void VisitCXXDefaultArgExpr(CXXDefaultArgExpr *DAE) {
111     Visit(DAE->getExpr());
112   }
113   void VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E);
114   void VisitCXXConstructExpr(const CXXConstructExpr *E);
115   void VisitCXXExprWithTemporaries(CXXExprWithTemporaries *E);
116   void VisitCXXZeroInitValueExpr(CXXZeroInitValueExpr *E);
117   void VisitCXXTypeidExpr(CXXTypeidExpr *E) { EmitAggLoadOfLValue(E); }
118
119   void VisitVAArgExpr(VAArgExpr *E);
120
121   void EmitInitializationToLValue(Expr *E, LValue Address, QualType T);
122   void EmitNullInitializationToLValue(LValue Address, QualType T);
123   //  case Expr::ChooseExprClass:
124   void VisitCXXThrowExpr(const CXXThrowExpr *E) { CGF.EmitCXXThrowExpr(E); }
125 };
126 }  // end anonymous namespace.
127
128 //===----------------------------------------------------------------------===//
129 //                                Utilities
130 //===----------------------------------------------------------------------===//
131
132 /// EmitAggLoadOfLValue - Given an expression with aggregate type that
133 /// represents a value lvalue, this method emits the address of the lvalue,
134 /// then loads the result into DestPtr.
135 void AggExprEmitter::EmitAggLoadOfLValue(const Expr *E) {
136   LValue LV = CGF.EmitLValue(E);
137   EmitFinalDestCopy(E, LV);
138 }
139
140 /// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
141 void AggExprEmitter::EmitFinalDestCopy(const Expr *E, RValue Src, bool Ignore) {
142   assert(Src.isAggregate() && "value must be aggregate value!");
143
144   // If the result is ignored, don't copy from the value.
145   if (DestPtr == 0) {
146     if (!Src.isVolatileQualified() || (IgnoreResult && Ignore))
147       return;
148     // If the source is volatile, we must read from it; to do that, we need
149     // some place to put it.
150     DestPtr = CGF.CreateMemTemp(E->getType(), "agg.tmp");
151   }
152
153   if (RequiresGCollection) {
154     CGF.CGM.getObjCRuntime().EmitGCMemmoveCollectable(CGF,
155                                               DestPtr, Src.getAggregateAddr(),
156                                               E->getType());
157     return;
158   }
159   // If the result of the assignment is used, copy the LHS there also.
160   // FIXME: Pass VolatileDest as well.  I think we also need to merge volatile
161   // from the source as well, as we can't eliminate it if either operand
162   // is volatile, unless copy has volatile for both source and destination..
163   CGF.EmitAggregateCopy(DestPtr, Src.getAggregateAddr(), E->getType(),
164                         VolatileDest|Src.isVolatileQualified());
165 }
166
167 /// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
168 void AggExprEmitter::EmitFinalDestCopy(const Expr *E, LValue Src, bool Ignore) {
169   assert(Src.isSimple() && "Can't have aggregate bitfield, vector, etc");
170
171   EmitFinalDestCopy(E, RValue::getAggregate(Src.getAddress(),
172                                             Src.isVolatileQualified()),
173                     Ignore);
174 }
175
176 //===----------------------------------------------------------------------===//
177 //                            Visitor Methods
178 //===----------------------------------------------------------------------===//
179
180 void AggExprEmitter::VisitCastExpr(CastExpr *E) {
181   if (!DestPtr) {
182     Visit(E->getSubExpr());
183     return;
184   }
185
186   switch (E->getCastKind()) {
187   default: assert(0 && "Unhandled cast kind!");
188
189   case CastExpr::CK_ToUnion: {
190     // GCC union extension
191     QualType PtrTy =
192     CGF.getContext().getPointerType(E->getSubExpr()->getType());
193     llvm::Value *CastPtr = Builder.CreateBitCast(DestPtr,
194                                                  CGF.ConvertType(PtrTy));
195     EmitInitializationToLValue(E->getSubExpr(),
196                                LValue::MakeAddr(CastPtr, Qualifiers()), 
197                                E->getSubExpr()->getType());
198     break;
199   }
200
201   // FIXME: Remove the CK_Unknown check here.
202   case CastExpr::CK_Unknown:
203   case CastExpr::CK_NoOp:
204   case CastExpr::CK_UserDefinedConversion:
205   case CastExpr::CK_ConstructorConversion:
206     assert(CGF.getContext().hasSameUnqualifiedType(E->getSubExpr()->getType(),
207                                                    E->getType()) &&
208            "Implicit cast types must be compatible");
209     Visit(E->getSubExpr());
210     break;
211
212   case CastExpr::CK_NullToMemberPointer: {
213     // If the subexpression's type is the C++0x nullptr_t, emit the
214     // subexpression, which may have side effects.
215     if (E->getSubExpr()->getType()->isNullPtrType())
216       Visit(E->getSubExpr());
217
218     const llvm::Type *PtrDiffTy = 
219       CGF.ConvertType(CGF.getContext().getPointerDiffType());
220
221     llvm::Value *NullValue = llvm::Constant::getNullValue(PtrDiffTy);
222     llvm::Value *Ptr = Builder.CreateStructGEP(DestPtr, 0, "ptr");
223     Builder.CreateStore(NullValue, Ptr, VolatileDest);
224     
225     llvm::Value *Adj = Builder.CreateStructGEP(DestPtr, 1, "adj");
226     Builder.CreateStore(NullValue, Adj, VolatileDest);
227
228     break;
229   }
230       
231   case CastExpr::CK_BitCast: {
232     // This must be a member function pointer cast.
233     Visit(E->getSubExpr());
234     break;
235   }
236
237   case CastExpr::CK_DerivedToBaseMemberPointer:
238   case CastExpr::CK_BaseToDerivedMemberPointer: {
239     QualType SrcType = E->getSubExpr()->getType();
240     
241     llvm::Value *Src = CGF.CreateMemTemp(SrcType, "tmp");
242     CGF.EmitAggExpr(E->getSubExpr(), Src, SrcType.isVolatileQualified());
243     
244     llvm::Value *SrcPtr = Builder.CreateStructGEP(Src, 0, "src.ptr");
245     SrcPtr = Builder.CreateLoad(SrcPtr);
246     
247     llvm::Value *SrcAdj = Builder.CreateStructGEP(Src, 1, "src.adj");
248     SrcAdj = Builder.CreateLoad(SrcAdj);
249     
250     llvm::Value *DstPtr = Builder.CreateStructGEP(DestPtr, 0, "dst.ptr");
251     Builder.CreateStore(SrcPtr, DstPtr, VolatileDest);
252     
253     llvm::Value *DstAdj = Builder.CreateStructGEP(DestPtr, 1, "dst.adj");
254     
255     // Now See if we need to update the adjustment.
256     const CXXRecordDecl *BaseDecl = 
257       cast<CXXRecordDecl>(SrcType->getAs<MemberPointerType>()->
258                           getClass()->getAs<RecordType>()->getDecl());
259     const CXXRecordDecl *DerivedDecl = 
260       cast<CXXRecordDecl>(E->getType()->getAs<MemberPointerType>()->
261                           getClass()->getAs<RecordType>()->getDecl());
262     if (E->getCastKind() == CastExpr::CK_DerivedToBaseMemberPointer)
263       std::swap(DerivedDecl, BaseDecl);
264
265     if (llvm::Constant *Adj = 
266           CGF.CGM.GetNonVirtualBaseClassOffset(DerivedDecl, BaseDecl)) {
267       if (E->getCastKind() == CastExpr::CK_DerivedToBaseMemberPointer)
268         SrcAdj = Builder.CreateSub(SrcAdj, Adj, "adj");
269       else
270         SrcAdj = Builder.CreateAdd(SrcAdj, Adj, "adj");
271     }
272     
273     Builder.CreateStore(SrcAdj, DstAdj, VolatileDest);
274     break;
275   }
276   }
277 }
278
279 void AggExprEmitter::VisitCallExpr(const CallExpr *E) {
280   if (E->getCallReturnType()->isReferenceType()) {
281     EmitAggLoadOfLValue(E);
282     return;
283   }
284
285   // If the struct doesn't require GC, we can just pass the destination
286   // directly to EmitCall.
287   if (!RequiresGCollection) {
288     CGF.EmitCallExpr(E, ReturnValueSlot(DestPtr, VolatileDest));
289     return;
290   }
291   
292   RValue RV = CGF.EmitCallExpr(E);
293   EmitFinalDestCopy(E, RV);
294 }
295
296 void AggExprEmitter::VisitObjCMessageExpr(ObjCMessageExpr *E) {
297   RValue RV = CGF.EmitObjCMessageExpr(E);
298   EmitFinalDestCopy(E, RV);
299 }
300
301 void AggExprEmitter::VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *E) {
302   RValue RV = CGF.EmitObjCPropertyGet(E);
303   EmitFinalDestCopy(E, RV);
304 }
305
306 void AggExprEmitter::VisitObjCImplicitSetterGetterRefExpr(
307                                    ObjCImplicitSetterGetterRefExpr *E) {
308   RValue RV = CGF.EmitObjCPropertyGet(E);
309   EmitFinalDestCopy(E, RV);
310 }
311
312 void AggExprEmitter::VisitBinComma(const BinaryOperator *E) {
313   CGF.EmitAnyExpr(E->getLHS(), 0, false, true);
314   CGF.EmitAggExpr(E->getRHS(), DestPtr, VolatileDest,
315                   /*IgnoreResult=*/false, IsInitializer);
316 }
317
318 void AggExprEmitter::VisitUnaryAddrOf(const UnaryOperator *E) {
319   // We have a member function pointer.
320   const MemberPointerType *MPT = E->getType()->getAs<MemberPointerType>();
321   (void) MPT;
322   assert(MPT->getPointeeType()->isFunctionProtoType() &&
323          "Unexpected member pointer type!");
324   
325   const DeclRefExpr *DRE = cast<DeclRefExpr>(E->getSubExpr());
326   const CXXMethodDecl *MD = 
327     cast<CXXMethodDecl>(DRE->getDecl())->getCanonicalDecl();
328
329   const llvm::Type *PtrDiffTy = 
330     CGF.ConvertType(CGF.getContext().getPointerDiffType());
331
332   llvm::Value *DstPtr = Builder.CreateStructGEP(DestPtr, 0, "dst.ptr");
333   llvm::Value *FuncPtr;
334   
335   if (MD->isVirtual()) {
336     int64_t Index = 
337       CGF.CGM.getVtableInfo().getMethodVtableIndex(MD);
338     
339     // Itanium C++ ABI 2.3:
340     //   For a non-virtual function, this field is a simple function pointer. 
341     //   For a virtual function, it is 1 plus the virtual table offset 
342     //   (in bytes) of the function, represented as a ptrdiff_t. 
343     FuncPtr = llvm::ConstantInt::get(PtrDiffTy, (Index * 8) + 1);
344   } else {
345     const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>();
346     const llvm::Type *Ty =
347       CGF.CGM.getTypes().GetFunctionType(CGF.CGM.getTypes().getFunctionInfo(MD),
348                                          FPT->isVariadic());
349     llvm::Constant *Fn = CGF.CGM.GetAddrOfFunction(MD, Ty);
350     FuncPtr = llvm::ConstantExpr::getPtrToInt(Fn, PtrDiffTy);
351   }
352   Builder.CreateStore(FuncPtr, DstPtr, VolatileDest);
353
354   llvm::Value *AdjPtr = Builder.CreateStructGEP(DestPtr, 1, "dst.adj");
355   
356   // The adjustment will always be 0.
357   Builder.CreateStore(llvm::ConstantInt::get(PtrDiffTy, 0), AdjPtr,
358                       VolatileDest);
359 }
360
361 void AggExprEmitter::VisitStmtExpr(const StmtExpr *E) {
362   CGF.EmitCompoundStmt(*E->getSubStmt(), true, DestPtr, VolatileDest);
363 }
364
365 void AggExprEmitter::VisitBinaryOperator(const BinaryOperator *E) {
366   if (E->getOpcode() == BinaryOperator::PtrMemD ||
367       E->getOpcode() == BinaryOperator::PtrMemI)
368     VisitPointerToDataMemberBinaryOperator(E);
369   else
370     CGF.ErrorUnsupported(E, "aggregate binary expression");
371 }
372
373 void AggExprEmitter::VisitPointerToDataMemberBinaryOperator(
374                                                     const BinaryOperator *E) {
375   LValue LV = CGF.EmitPointerToDataMemberBinaryExpr(E);
376   EmitFinalDestCopy(E, LV);
377 }
378
379 void AggExprEmitter::VisitBinAssign(const BinaryOperator *E) {
380   // For an assignment to work, the value on the right has
381   // to be compatible with the value on the left.
382   assert(CGF.getContext().hasSameUnqualifiedType(E->getLHS()->getType(),
383                                                  E->getRHS()->getType())
384          && "Invalid assignment");
385   LValue LHS = CGF.EmitLValue(E->getLHS());
386
387   // We have to special case property setters, otherwise we must have
388   // a simple lvalue (no aggregates inside vectors, bitfields).
389   if (LHS.isPropertyRef()) {
390     llvm::Value *AggLoc = DestPtr;
391     if (!AggLoc)
392       AggLoc = CGF.CreateMemTemp(E->getRHS()->getType());
393     CGF.EmitAggExpr(E->getRHS(), AggLoc, VolatileDest);
394     CGF.EmitObjCPropertySet(LHS.getPropertyRefExpr(),
395                             RValue::getAggregate(AggLoc, VolatileDest));
396   } else if (LHS.isKVCRef()) {
397     llvm::Value *AggLoc = DestPtr;
398     if (!AggLoc)
399       AggLoc = CGF.CreateMemTemp(E->getRHS()->getType());
400     CGF.EmitAggExpr(E->getRHS(), AggLoc, VolatileDest);
401     CGF.EmitObjCPropertySet(LHS.getKVCRefExpr(),
402                             RValue::getAggregate(AggLoc, VolatileDest));
403   } else {
404     bool RequiresGCollection = false;
405     if (CGF.getContext().getLangOptions().NeXTRuntime) {
406       QualType LHSTy = E->getLHS()->getType();
407       if (const RecordType *FDTTy = LHSTy.getTypePtr()->getAs<RecordType>())
408         RequiresGCollection = FDTTy->getDecl()->hasObjectMember();
409     }
410     // Codegen the RHS so that it stores directly into the LHS.
411     CGF.EmitAggExpr(E->getRHS(), LHS.getAddress(), LHS.isVolatileQualified(),
412                     false, false, RequiresGCollection);
413     EmitFinalDestCopy(E, LHS, true);
414   }
415 }
416
417 void AggExprEmitter::VisitConditionalOperator(const ConditionalOperator *E) {
418   if (!E->getLHS()) {
419     CGF.ErrorUnsupported(E, "conditional operator with missing LHS");
420     return;
421   }
422
423   llvm::BasicBlock *LHSBlock = CGF.createBasicBlock("cond.true");
424   llvm::BasicBlock *RHSBlock = CGF.createBasicBlock("cond.false");
425   llvm::BasicBlock *ContBlock = CGF.createBasicBlock("cond.end");
426
427   CGF.EmitBranchOnBoolExpr(E->getCond(), LHSBlock, RHSBlock);
428
429   CGF.BeginConditionalBranch();
430   CGF.EmitBlock(LHSBlock);
431
432   // Handle the GNU extension for missing LHS.
433   assert(E->getLHS() && "Must have LHS for aggregate value");
434
435   Visit(E->getLHS());
436   CGF.EndConditionalBranch();
437   CGF.EmitBranch(ContBlock);
438
439   CGF.BeginConditionalBranch();
440   CGF.EmitBlock(RHSBlock);
441
442   Visit(E->getRHS());
443   CGF.EndConditionalBranch();
444   CGF.EmitBranch(ContBlock);
445
446   CGF.EmitBlock(ContBlock);
447 }
448
449 void AggExprEmitter::VisitChooseExpr(const ChooseExpr *CE) {
450   Visit(CE->getChosenSubExpr(CGF.getContext()));
451 }
452
453 void AggExprEmitter::VisitVAArgExpr(VAArgExpr *VE) {
454   llvm::Value *ArgValue = CGF.EmitVAListRef(VE->getSubExpr());
455   llvm::Value *ArgPtr = CGF.EmitVAArg(ArgValue, VE->getType());
456
457   if (!ArgPtr) {
458     CGF.ErrorUnsupported(VE, "aggregate va_arg expression");
459     return;
460   }
461
462   EmitFinalDestCopy(VE, LValue::MakeAddr(ArgPtr, Qualifiers()));
463 }
464
465 void AggExprEmitter::VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E) {
466   llvm::Value *Val = DestPtr;
467
468   if (!Val) {
469     // Create a temporary variable.
470     Val = CGF.CreateMemTemp(E->getType(), "tmp");
471
472     // FIXME: volatile
473     CGF.EmitAggExpr(E->getSubExpr(), Val, false);
474   } else
475     Visit(E->getSubExpr());
476
477   // Don't make this a live temporary if we're emitting an initializer expr.
478   if (!IsInitializer)
479     CGF.PushCXXTemporary(E->getTemporary(), Val);
480 }
481
482 void
483 AggExprEmitter::VisitCXXConstructExpr(const CXXConstructExpr *E) {
484   llvm::Value *Val = DestPtr;
485
486   if (!Val) {
487     // Create a temporary variable.
488     Val = CGF.CreateMemTemp(E->getType(), "tmp");
489   }
490
491   if (E->requiresZeroInitialization())
492     EmitNullInitializationToLValue(LValue::MakeAddr(Val, 
493                                                     // FIXME: Qualifiers()?
494                                                  E->getType().getQualifiers()),
495                                    E->getType());
496
497   CGF.EmitCXXConstructExpr(Val, E);
498 }
499
500 void AggExprEmitter::VisitCXXExprWithTemporaries(CXXExprWithTemporaries *E) {
501   llvm::Value *Val = DestPtr;
502
503   if (!Val) {
504     // Create a temporary variable.
505     Val = CGF.CreateMemTemp(E->getType(), "tmp");
506   }
507   CGF.EmitCXXExprWithTemporaries(E, Val, VolatileDest, IsInitializer);
508 }
509
510 void AggExprEmitter::VisitCXXZeroInitValueExpr(CXXZeroInitValueExpr *E) {
511   llvm::Value *Val = DestPtr;
512
513   if (!Val) {
514     // Create a temporary variable.
515     Val = CGF.CreateMemTemp(E->getType(), "tmp");
516   }
517   LValue LV = LValue::MakeAddr(Val, Qualifiers());
518   EmitNullInitializationToLValue(LV, E->getType());
519 }
520
521 void AggExprEmitter::VisitImplicitValueInitExpr(ImplicitValueInitExpr *E) {
522   llvm::Value *Val = DestPtr;
523
524   if (!Val) {
525     // Create a temporary variable.
526     Val = CGF.CreateMemTemp(E->getType(), "tmp");
527   }
528   LValue LV = LValue::MakeAddr(Val, Qualifiers());
529   EmitNullInitializationToLValue(LV, E->getType());
530 }
531
532 void 
533 AggExprEmitter::EmitInitializationToLValue(Expr* E, LValue LV, QualType T) {
534   // FIXME: Ignore result?
535   // FIXME: Are initializers affected by volatile?
536   if (isa<ImplicitValueInitExpr>(E)) {
537     EmitNullInitializationToLValue(LV, T);
538   } else if (T->isReferenceType()) {
539     RValue RV = CGF.EmitReferenceBindingToExpr(E, /*IsInitializer=*/false);
540     CGF.EmitStoreThroughLValue(RV, LV, T);
541   } else if (T->isAnyComplexType()) {
542     CGF.EmitComplexExprIntoAddr(E, LV.getAddress(), false);
543   } else if (CGF.hasAggregateLLVMType(T)) {
544     CGF.EmitAnyExpr(E, LV.getAddress(), false);
545   } else {
546     CGF.EmitStoreThroughLValue(CGF.EmitAnyExpr(E), LV, T);
547   }
548 }
549
550 void AggExprEmitter::EmitNullInitializationToLValue(LValue LV, QualType T) {
551   if (!CGF.hasAggregateLLVMType(T)) {
552     // For non-aggregates, we can store zero
553     llvm::Value *Null = llvm::Constant::getNullValue(CGF.ConvertType(T));
554     CGF.EmitStoreThroughLValue(RValue::get(Null), LV, T);
555   } else {
556     // Otherwise, just memset the whole thing to zero.  This is legal
557     // because in LLVM, all default initializers are guaranteed to have a
558     // bit pattern of all zeros.
559     // FIXME: That isn't true for member pointers!
560     // There's a potential optimization opportunity in combining
561     // memsets; that would be easy for arrays, but relatively
562     // difficult for structures with the current code.
563     CGF.EmitMemSetToZero(LV.getAddress(), T);
564   }
565 }
566
567 void AggExprEmitter::VisitInitListExpr(InitListExpr *E) {
568 #if 0
569   // FIXME: Assess perf here?  Figure out what cases are worth optimizing here
570   // (Length of globals? Chunks of zeroed-out space?).
571   //
572   // If we can, prefer a copy from a global; this is a lot less code for long
573   // globals, and it's easier for the current optimizers to analyze.
574   if (llvm::Constant* C = CGF.CGM.EmitConstantExpr(E, E->getType(), &CGF)) {
575     llvm::GlobalVariable* GV =
576     new llvm::GlobalVariable(CGF.CGM.getModule(), C->getType(), true,
577                              llvm::GlobalValue::InternalLinkage, C, "");
578     EmitFinalDestCopy(E, LValue::MakeAddr(GV, Qualifiers()));
579     return;
580   }
581 #endif
582   if (E->hadArrayRangeDesignator()) {
583     CGF.ErrorUnsupported(E, "GNU array range designator extension");
584   }
585
586   // Handle initialization of an array.
587   if (E->getType()->isArrayType()) {
588     const llvm::PointerType *APType =
589       cast<llvm::PointerType>(DestPtr->getType());
590     const llvm::ArrayType *AType =
591       cast<llvm::ArrayType>(APType->getElementType());
592
593     uint64_t NumInitElements = E->getNumInits();
594
595     if (E->getNumInits() > 0) {
596       QualType T1 = E->getType();
597       QualType T2 = E->getInit(0)->getType();
598       if (CGF.getContext().hasSameUnqualifiedType(T1, T2)) {
599         EmitAggLoadOfLValue(E->getInit(0));
600         return;
601       }
602     }
603
604     uint64_t NumArrayElements = AType->getNumElements();
605     QualType ElementType = CGF.getContext().getCanonicalType(E->getType());
606     ElementType = CGF.getContext().getAsArrayType(ElementType)->getElementType();
607
608     // FIXME: were we intentionally ignoring address spaces and GC attributes?
609     Qualifiers Quals = CGF.MakeQualifiers(ElementType);
610
611     for (uint64_t i = 0; i != NumArrayElements; ++i) {
612       llvm::Value *NextVal = Builder.CreateStructGEP(DestPtr, i, ".array");
613       if (i < NumInitElements)
614         EmitInitializationToLValue(E->getInit(i),
615                                    LValue::MakeAddr(NextVal, Quals), 
616                                    ElementType);
617       else
618         EmitNullInitializationToLValue(LValue::MakeAddr(NextVal, Quals),
619                                        ElementType);
620     }
621     return;
622   }
623
624   assert(E->getType()->isRecordType() && "Only support structs/unions here!");
625
626   // Do struct initialization; this code just sets each individual member
627   // to the approprate value.  This makes bitfield support automatic;
628   // the disadvantage is that the generated code is more difficult for
629   // the optimizer, especially with bitfields.
630   unsigned NumInitElements = E->getNumInits();
631   RecordDecl *SD = E->getType()->getAs<RecordType>()->getDecl();
632   unsigned CurInitVal = 0;
633
634   if (E->getType()->isUnionType()) {
635     // Only initialize one field of a union. The field itself is
636     // specified by the initializer list.
637     if (!E->getInitializedFieldInUnion()) {
638       // Empty union; we have nothing to do.
639
640 #ifndef NDEBUG
641       // Make sure that it's really an empty and not a failure of
642       // semantic analysis.
643       for (RecordDecl::field_iterator Field = SD->field_begin(),
644                                    FieldEnd = SD->field_end();
645            Field != FieldEnd; ++Field)
646         assert(Field->isUnnamedBitfield() && "Only unnamed bitfields allowed");
647 #endif
648       return;
649     }
650
651     // FIXME: volatility
652     FieldDecl *Field = E->getInitializedFieldInUnion();
653     LValue FieldLoc = CGF.EmitLValueForFieldInitialization(DestPtr, Field, 0);
654
655     if (NumInitElements) {
656       // Store the initializer into the field
657       EmitInitializationToLValue(E->getInit(0), FieldLoc, Field->getType());
658     } else {
659       // Default-initialize to null
660       EmitNullInitializationToLValue(FieldLoc, Field->getType());
661     }
662
663     return;
664   }
665   
666   // If we're initializing the whole aggregate, just do it in place.
667   // FIXME: This is a hack around an AST bug (PR6537).
668   if (NumInitElements == 1 && E->getType() == E->getInit(0)->getType()) {
669     EmitInitializationToLValue(E->getInit(0),
670                                LValue::MakeAddr(DestPtr, Qualifiers()),
671                                E->getType());
672     return;
673   }
674   
675
676   // Here we iterate over the fields; this makes it simpler to both
677   // default-initialize fields and skip over unnamed fields.
678   for (RecordDecl::field_iterator Field = SD->field_begin(),
679                                FieldEnd = SD->field_end();
680        Field != FieldEnd; ++Field) {
681     // We're done once we hit the flexible array member
682     if (Field->getType()->isIncompleteArrayType())
683       break;
684
685     if (Field->isUnnamedBitfield())
686       continue;
687
688     // FIXME: volatility
689     LValue FieldLoc = CGF.EmitLValueForFieldInitialization(DestPtr, *Field, 0);
690     // We never generate write-barries for initialized fields.
691     LValue::SetObjCNonGC(FieldLoc, true);
692     if (CurInitVal < NumInitElements) {
693       // Store the initializer into the field.
694       EmitInitializationToLValue(E->getInit(CurInitVal++), FieldLoc,
695                                  Field->getType());
696     } else {
697       // We're out of initalizers; default-initialize to null
698       EmitNullInitializationToLValue(FieldLoc, Field->getType());
699     }
700   }
701 }
702
703 //===----------------------------------------------------------------------===//
704 //                        Entry Points into this File
705 //===----------------------------------------------------------------------===//
706
707 /// EmitAggExpr - Emit the computation of the specified expression of aggregate
708 /// type.  The result is computed into DestPtr.  Note that if DestPtr is null,
709 /// the value of the aggregate expression is not needed.  If VolatileDest is
710 /// true, DestPtr cannot be 0.
711 //
712 // FIXME: Take Qualifiers object.
713 void CodeGenFunction::EmitAggExpr(const Expr *E, llvm::Value *DestPtr,
714                                   bool VolatileDest, bool IgnoreResult,
715                                   bool IsInitializer,
716                                   bool RequiresGCollection) {
717   assert(E && hasAggregateLLVMType(E->getType()) &&
718          "Invalid aggregate expression to emit");
719   assert ((DestPtr != 0 || VolatileDest == false)
720           && "volatile aggregate can't be 0");
721
722   AggExprEmitter(*this, DestPtr, VolatileDest, IgnoreResult, IsInitializer,
723                  RequiresGCollection)
724     .Visit(const_cast<Expr*>(E));
725 }
726
727 LValue CodeGenFunction::EmitAggExprToLValue(const Expr *E) {
728   assert(hasAggregateLLVMType(E->getType()) && "Invalid argument!");
729   Qualifiers Q = MakeQualifiers(E->getType());
730   llvm::Value *Temp = CreateMemTemp(E->getType());
731   EmitAggExpr(E, Temp, Q.hasVolatile());
732   return LValue::MakeAddr(Temp, Q);
733 }
734
735 void CodeGenFunction::EmitAggregateClear(llvm::Value *DestPtr, QualType Ty) {
736   assert(!Ty->isAnyComplexType() && "Shouldn't happen for complex");
737
738   EmitMemSetToZero(DestPtr, Ty);
739 }
740
741 void CodeGenFunction::EmitAggregateCopy(llvm::Value *DestPtr,
742                                         llvm::Value *SrcPtr, QualType Ty,
743                                         bool isVolatile) {
744   assert(!Ty->isAnyComplexType() && "Shouldn't happen for complex");
745
746   // Aggregate assignment turns into llvm.memcpy.  This is almost valid per
747   // C99 6.5.16.1p3, which states "If the value being stored in an object is
748   // read from another object that overlaps in anyway the storage of the first
749   // object, then the overlap shall be exact and the two objects shall have
750   // qualified or unqualified versions of a compatible type."
751   //
752   // memcpy is not defined if the source and destination pointers are exactly
753   // equal, but other compilers do this optimization, and almost every memcpy
754   // implementation handles this case safely.  If there is a libc that does not
755   // safely handle this, we can add a target hook.
756   const llvm::Type *BP = llvm::Type::getInt8PtrTy(VMContext);
757   if (DestPtr->getType() != BP)
758     DestPtr = Builder.CreateBitCast(DestPtr, BP, "tmp");
759   if (SrcPtr->getType() != BP)
760     SrcPtr = Builder.CreateBitCast(SrcPtr, BP, "tmp");
761
762   // Get size and alignment info for this aggregate.
763   std::pair<uint64_t, unsigned> TypeInfo = getContext().getTypeInfo(Ty);
764
765   // FIXME: Handle variable sized types.
766   const llvm::Type *IntPtr =
767           llvm::IntegerType::get(VMContext, LLVMPointerWidth);
768
769   // FIXME: If we have a volatile struct, the optimizer can remove what might
770   // appear to be `extra' memory ops:
771   //
772   // volatile struct { int i; } a, b;
773   //
774   // int main() {
775   //   a = b;
776   //   a = b;
777   // }
778   //
779   // we need to use a differnt call here.  We use isVolatile to indicate when
780   // either the source or the destination is volatile.
781   Builder.CreateCall4(CGM.getMemCpyFn(),
782                       DestPtr, SrcPtr,
783                       // TypeInfo.first describes size in bits.
784                       llvm::ConstantInt::get(IntPtr, TypeInfo.first/8),
785                       llvm::ConstantInt::get(llvm::Type::getInt32Ty(VMContext),
786                                              TypeInfo.second/8));
787 }