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   CGF.EmitCXXExprWithTemporaries(E, Val, VolatileDest, IsInitializer);
504 }
505 
506 void AggExprEmitter::VisitCXXZeroInitValueExpr(CXXZeroInitValueExpr *E) {
507   llvm::Value *Val = DestPtr;
508 
509   if (!Val) {
510     // Create a temporary variable.
511     Val = CGF.CreateMemTemp(E->getType(), "tmp");
512   }
513   LValue LV = LValue::MakeAddr(Val, Qualifiers());
514   EmitNullInitializationToLValue(LV, E->getType());
515 }
516 
517 void AggExprEmitter::VisitImplicitValueInitExpr(ImplicitValueInitExpr *E) {
518   llvm::Value *Val = DestPtr;
519 
520   if (!Val) {
521     // Create a temporary variable.
522     Val = CGF.CreateMemTemp(E->getType(), "tmp");
523   }
524   LValue LV = LValue::MakeAddr(Val, Qualifiers());
525   EmitNullInitializationToLValue(LV, E->getType());
526 }
527 
528 void
529 AggExprEmitter::EmitInitializationToLValue(Expr* E, LValue LV, QualType T) {
530   // FIXME: Ignore result?
531   // FIXME: Are initializers affected by volatile?
532   if (isa<ImplicitValueInitExpr>(E)) {
533     EmitNullInitializationToLValue(LV, T);
534   } else if (T->isReferenceType()) {
535     RValue RV = CGF.EmitReferenceBindingToExpr(E, /*IsInitializer=*/false);
536     CGF.EmitStoreThroughLValue(RV, LV, T);
537   } else if (T->isAnyComplexType()) {
538     CGF.EmitComplexExprIntoAddr(E, LV.getAddress(), false);
539   } else if (CGF.hasAggregateLLVMType(T)) {
540     CGF.EmitAnyExpr(E, LV.getAddress(), false);
541   } else {
542     CGF.EmitStoreThroughLValue(CGF.EmitAnyExpr(E), LV, T);
543   }
544 }
545 
546 void AggExprEmitter::EmitNullInitializationToLValue(LValue LV, QualType T) {
547   if (!CGF.hasAggregateLLVMType(T)) {
548     // For non-aggregates, we can store zero
549     llvm::Value *Null = llvm::Constant::getNullValue(CGF.ConvertType(T));
550     CGF.EmitStoreThroughLValue(RValue::get(Null), LV, T);
551   } else {
552     // Otherwise, just memset the whole thing to zero.  This is legal
553     // because in LLVM, all default initializers are guaranteed to have a
554     // bit pattern of all zeros.
555     // FIXME: That isn't true for member pointers!
556     // There's a potential optimization opportunity in combining
557     // memsets; that would be easy for arrays, but relatively
558     // difficult for structures with the current code.
559     CGF.EmitMemSetToZero(LV.getAddress(), T);
560   }
561 }
562 
563 void AggExprEmitter::VisitInitListExpr(InitListExpr *E) {
564 #if 0
565   // FIXME: Assess perf here?  Figure out what cases are worth optimizing here
566   // (Length of globals? Chunks of zeroed-out space?).
567   //
568   // If we can, prefer a copy from a global; this is a lot less code for long
569   // globals, and it's easier for the current optimizers to analyze.
570   if (llvm::Constant* C = CGF.CGM.EmitConstantExpr(E, E->getType(), &CGF)) {
571     llvm::GlobalVariable* GV =
572     new llvm::GlobalVariable(CGF.CGM.getModule(), C->getType(), true,
573                              llvm::GlobalValue::InternalLinkage, C, "");
574     EmitFinalDestCopy(E, LValue::MakeAddr(GV, Qualifiers()));
575     return;
576   }
577 #endif
578   if (E->hadArrayRangeDesignator()) {
579     CGF.ErrorUnsupported(E, "GNU array range designator extension");
580   }
581 
582   // Handle initialization of an array.
583   if (E->getType()->isArrayType()) {
584     const llvm::PointerType *APType =
585       cast<llvm::PointerType>(DestPtr->getType());
586     const llvm::ArrayType *AType =
587       cast<llvm::ArrayType>(APType->getElementType());
588 
589     uint64_t NumInitElements = E->getNumInits();
590 
591     if (E->getNumInits() > 0) {
592       QualType T1 = E->getType();
593       QualType T2 = E->getInit(0)->getType();
594       if (CGF.getContext().hasSameUnqualifiedType(T1, T2)) {
595         EmitAggLoadOfLValue(E->getInit(0));
596         return;
597       }
598     }
599 
600     uint64_t NumArrayElements = AType->getNumElements();
601     QualType ElementType = CGF.getContext().getCanonicalType(E->getType());
602     ElementType = CGF.getContext().getAsArrayType(ElementType)->getElementType();
603 
604     // FIXME: were we intentionally ignoring address spaces and GC attributes?
605     Qualifiers Quals = CGF.MakeQualifiers(ElementType);
606 
607     for (uint64_t i = 0; i != NumArrayElements; ++i) {
608       llvm::Value *NextVal = Builder.CreateStructGEP(DestPtr, i, ".array");
609       if (i < NumInitElements)
610         EmitInitializationToLValue(E->getInit(i),
611                                    LValue::MakeAddr(NextVal, Quals),
612                                    ElementType);
613       else
614         EmitNullInitializationToLValue(LValue::MakeAddr(NextVal, Quals),
615                                        ElementType);
616     }
617     return;
618   }
619 
620   assert(E->getType()->isRecordType() && "Only support structs/unions here!");
621 
622   // Do struct initialization; this code just sets each individual member
623   // to the approprate value.  This makes bitfield support automatic;
624   // the disadvantage is that the generated code is more difficult for
625   // the optimizer, especially with bitfields.
626   unsigned NumInitElements = E->getNumInits();
627   RecordDecl *SD = E->getType()->getAs<RecordType>()->getDecl();
628   unsigned CurInitVal = 0;
629 
630   if (E->getType()->isUnionType()) {
631     // Only initialize one field of a union. The field itself is
632     // specified by the initializer list.
633     if (!E->getInitializedFieldInUnion()) {
634       // Empty union; we have nothing to do.
635 
636 #ifndef NDEBUG
637       // Make sure that it's really an empty and not a failure of
638       // semantic analysis.
639       for (RecordDecl::field_iterator Field = SD->field_begin(),
640                                    FieldEnd = SD->field_end();
641            Field != FieldEnd; ++Field)
642         assert(Field->isUnnamedBitfield() && "Only unnamed bitfields allowed");
643 #endif
644       return;
645     }
646 
647     // FIXME: volatility
648     FieldDecl *Field = E->getInitializedFieldInUnion();
649     LValue FieldLoc = CGF.EmitLValueForFieldInitialization(DestPtr, Field, 0);
650 
651     if (NumInitElements) {
652       // Store the initializer into the field
653       EmitInitializationToLValue(E->getInit(0), FieldLoc, Field->getType());
654     } else {
655       // Default-initialize to null
656       EmitNullInitializationToLValue(FieldLoc, Field->getType());
657     }
658 
659     return;
660   }
661 
662   // If we're initializing the whole aggregate, just do it in place.
663   // FIXME: This is a hack around an AST bug (PR6537).
664   if (NumInitElements == 1 && E->getType() == E->getInit(0)->getType()) {
665     EmitInitializationToLValue(E->getInit(0),
666                                LValue::MakeAddr(DestPtr, Qualifiers()),
667                                E->getType());
668     return;
669   }
670 
671 
672   // Here we iterate over the fields; this makes it simpler to both
673   // default-initialize fields and skip over unnamed fields.
674   for (RecordDecl::field_iterator Field = SD->field_begin(),
675                                FieldEnd = SD->field_end();
676        Field != FieldEnd; ++Field) {
677     // We're done once we hit the flexible array member
678     if (Field->getType()->isIncompleteArrayType())
679       break;
680 
681     if (Field->isUnnamedBitfield())
682       continue;
683 
684     // FIXME: volatility
685     LValue FieldLoc = CGF.EmitLValueForFieldInitialization(DestPtr, *Field, 0);
686     // We never generate write-barries for initialized fields.
687     LValue::SetObjCNonGC(FieldLoc, true);
688     if (CurInitVal < NumInitElements) {
689       // Store the initializer into the field.
690       EmitInitializationToLValue(E->getInit(CurInitVal++), FieldLoc,
691                                  Field->getType());
692     } else {
693       // We're out of initalizers; default-initialize to null
694       EmitNullInitializationToLValue(FieldLoc, Field->getType());
695     }
696   }
697 }
698 
699 //===----------------------------------------------------------------------===//
700 //                        Entry Points into this File
701 //===----------------------------------------------------------------------===//
702 
703 /// EmitAggExpr - Emit the computation of the specified expression of aggregate
704 /// type.  The result is computed into DestPtr.  Note that if DestPtr is null,
705 /// the value of the aggregate expression is not needed.  If VolatileDest is
706 /// true, DestPtr cannot be 0.
707 //
708 // FIXME: Take Qualifiers object.
709 void CodeGenFunction::EmitAggExpr(const Expr *E, llvm::Value *DestPtr,
710                                   bool VolatileDest, bool IgnoreResult,
711                                   bool IsInitializer,
712                                   bool RequiresGCollection) {
713   assert(E && hasAggregateLLVMType(E->getType()) &&
714          "Invalid aggregate expression to emit");
715   assert ((DestPtr != 0 || VolatileDest == false)
716           && "volatile aggregate can't be 0");
717 
718   AggExprEmitter(*this, DestPtr, VolatileDest, IgnoreResult, IsInitializer,
719                  RequiresGCollection)
720     .Visit(const_cast<Expr*>(E));
721 }
722 
723 LValue CodeGenFunction::EmitAggExprToLValue(const Expr *E) {
724   assert(hasAggregateLLVMType(E->getType()) && "Invalid argument!");
725   Qualifiers Q = MakeQualifiers(E->getType());
726   llvm::Value *Temp = CreateMemTemp(E->getType());
727   EmitAggExpr(E, Temp, Q.hasVolatile());
728   return LValue::MakeAddr(Temp, Q);
729 }
730 
731 void CodeGenFunction::EmitAggregateClear(llvm::Value *DestPtr, QualType Ty) {
732   assert(!Ty->isAnyComplexType() && "Shouldn't happen for complex");
733 
734   EmitMemSetToZero(DestPtr, Ty);
735 }
736 
737 void CodeGenFunction::EmitAggregateCopy(llvm::Value *DestPtr,
738                                         llvm::Value *SrcPtr, QualType Ty,
739                                         bool isVolatile) {
740   assert(!Ty->isAnyComplexType() && "Shouldn't happen for complex");
741 
742   // Aggregate assignment turns into llvm.memcpy.  This is almost valid per
743   // C99 6.5.16.1p3, which states "If the value being stored in an object is
744   // read from another object that overlaps in anyway the storage of the first
745   // object, then the overlap shall be exact and the two objects shall have
746   // qualified or unqualified versions of a compatible type."
747   //
748   // memcpy is not defined if the source and destination pointers are exactly
749   // equal, but other compilers do this optimization, and almost every memcpy
750   // implementation handles this case safely.  If there is a libc that does not
751   // safely handle this, we can add a target hook.
752   const llvm::Type *BP = llvm::Type::getInt8PtrTy(VMContext);
753   if (DestPtr->getType() != BP)
754     DestPtr = Builder.CreateBitCast(DestPtr, BP, "tmp");
755   if (SrcPtr->getType() != BP)
756     SrcPtr = Builder.CreateBitCast(SrcPtr, BP, "tmp");
757 
758   // Get size and alignment info for this aggregate.
759   std::pair<uint64_t, unsigned> TypeInfo = getContext().getTypeInfo(Ty);
760 
761   // FIXME: Handle variable sized types.
762   const llvm::Type *IntPtr =
763           llvm::IntegerType::get(VMContext, LLVMPointerWidth);
764 
765   // FIXME: If we have a volatile struct, the optimizer can remove what might
766   // appear to be `extra' memory ops:
767   //
768   // volatile struct { int i; } a, b;
769   //
770   // int main() {
771   //   a = b;
772   //   a = b;
773   // }
774   //
775   // we need to use a differnt call here.  We use isVolatile to indicate when
776   // either the source or the destination is volatile.
777   Builder.CreateCall4(CGM.getMemCpyFn(),
778                       DestPtr, SrcPtr,
779                       // TypeInfo.first describes size in bits.
780                       llvm::ConstantInt::get(IntPtr, TypeInfo.first/8),
781                       llvm::ConstantInt::get(llvm::Type::getInt32Ty(VMContext),
782                                              TypeInfo.second/8));
783 }
784