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   AggValueSlot Dest;
36   bool IgnoreResult;
37 
38   ReturnValueSlot getReturnValueSlot() const {
39     // If the destination slot requires garbage collection, we can't
40     // use the real return value slot, because we have to use the GC
41     // API.
42     if (Dest.requiresGCollection()) return ReturnValueSlot();
43 
44     return ReturnValueSlot(Dest.getAddr(), Dest.isVolatile());
45   }
46 
47   AggValueSlot EnsureSlot(QualType T) {
48     if (!Dest.isIgnored()) return Dest;
49     return CGF.CreateAggTemp(T, "agg.tmp.ensured");
50   }
51 
52 public:
53   AggExprEmitter(CodeGenFunction &cgf, AggValueSlot Dest,
54                  bool ignore)
55     : CGF(cgf), Builder(CGF.Builder), Dest(Dest),
56       IgnoreResult(ignore) {
57   }
58 
59   //===--------------------------------------------------------------------===//
60   //                               Utilities
61   //===--------------------------------------------------------------------===//
62 
63   /// EmitAggLoadOfLValue - Given an expression with aggregate type that
64   /// represents a value lvalue, this method emits the address of the lvalue,
65   /// then loads the result into DestPtr.
66   void EmitAggLoadOfLValue(const Expr *E);
67 
68   /// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
69   void EmitFinalDestCopy(const Expr *E, LValue Src, bool Ignore = false);
70   void EmitFinalDestCopy(const Expr *E, RValue Src, bool Ignore = false);
71 
72   void EmitGCMove(const Expr *E, RValue Src);
73 
74   bool TypeRequiresGCollection(QualType T);
75 
76   //===--------------------------------------------------------------------===//
77   //                            Visitor Methods
78   //===--------------------------------------------------------------------===//
79 
80   void VisitStmt(Stmt *S) {
81     CGF.ErrorUnsupported(S, "aggregate expression");
82   }
83   void VisitParenExpr(ParenExpr *PE) { Visit(PE->getSubExpr()); }
84   void VisitGenericSelectionExpr(GenericSelectionExpr *GE) {
85     Visit(GE->getResultExpr());
86   }
87   void VisitUnaryExtension(UnaryOperator *E) { Visit(E->getSubExpr()); }
88 
89   // l-values.
90   void VisitDeclRefExpr(DeclRefExpr *DRE) { EmitAggLoadOfLValue(DRE); }
91   void VisitMemberExpr(MemberExpr *ME) { EmitAggLoadOfLValue(ME); }
92   void VisitUnaryDeref(UnaryOperator *E) { EmitAggLoadOfLValue(E); }
93   void VisitStringLiteral(StringLiteral *E) { EmitAggLoadOfLValue(E); }
94   void VisitCompoundLiteralExpr(CompoundLiteralExpr *E) {
95     EmitAggLoadOfLValue(E);
96   }
97   void VisitArraySubscriptExpr(ArraySubscriptExpr *E) {
98     EmitAggLoadOfLValue(E);
99   }
100   void VisitBlockDeclRefExpr(const BlockDeclRefExpr *E) {
101     EmitAggLoadOfLValue(E);
102   }
103   void VisitPredefinedExpr(const PredefinedExpr *E) {
104     EmitAggLoadOfLValue(E);
105   }
106 
107   // Operators.
108   void VisitCastExpr(CastExpr *E);
109   void VisitCallExpr(const CallExpr *E);
110   void VisitStmtExpr(const StmtExpr *E);
111   void VisitBinaryOperator(const BinaryOperator *BO);
112   void VisitPointerToDataMemberBinaryOperator(const BinaryOperator *BO);
113   void VisitBinAssign(const BinaryOperator *E);
114   void VisitBinComma(const BinaryOperator *E);
115 
116   void VisitObjCMessageExpr(ObjCMessageExpr *E);
117   void VisitObjCIvarRefExpr(ObjCIvarRefExpr *E) {
118     EmitAggLoadOfLValue(E);
119   }
120   void VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *E);
121 
122   void VisitAbstractConditionalOperator(const AbstractConditionalOperator *CO);
123   void VisitChooseExpr(const ChooseExpr *CE);
124   void VisitInitListExpr(InitListExpr *E);
125   void VisitImplicitValueInitExpr(ImplicitValueInitExpr *E);
126   void VisitCXXDefaultArgExpr(CXXDefaultArgExpr *DAE) {
127     Visit(DAE->getExpr());
128   }
129   void VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E);
130   void VisitCXXConstructExpr(const CXXConstructExpr *E);
131   void VisitExprWithCleanups(ExprWithCleanups *E);
132   void VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *E);
133   void VisitCXXTypeidExpr(CXXTypeidExpr *E) { EmitAggLoadOfLValue(E); }
134 
135   void VisitOpaqueValueExpr(OpaqueValueExpr *E);
136 
137   void VisitVAArgExpr(VAArgExpr *E);
138 
139   void EmitInitializationToLValue(Expr *E, LValue Address, QualType T);
140   void EmitNullInitializationToLValue(LValue Address, QualType T);
141   //  case Expr::ChooseExprClass:
142   void VisitCXXThrowExpr(const CXXThrowExpr *E) { CGF.EmitCXXThrowExpr(E); }
143 };
144 }  // end anonymous namespace.
145 
146 //===----------------------------------------------------------------------===//
147 //                                Utilities
148 //===----------------------------------------------------------------------===//
149 
150 /// EmitAggLoadOfLValue - Given an expression with aggregate type that
151 /// represents a value lvalue, this method emits the address of the lvalue,
152 /// then loads the result into DestPtr.
153 void AggExprEmitter::EmitAggLoadOfLValue(const Expr *E) {
154   LValue LV = CGF.EmitLValue(E);
155   EmitFinalDestCopy(E, LV);
156 }
157 
158 /// \brief True if the given aggregate type requires special GC API calls.
159 bool AggExprEmitter::TypeRequiresGCollection(QualType T) {
160   // Only record types have members that might require garbage collection.
161   const RecordType *RecordTy = T->getAs<RecordType>();
162   if (!RecordTy) return false;
163 
164   // Don't mess with non-trivial C++ types.
165   RecordDecl *Record = RecordTy->getDecl();
166   if (isa<CXXRecordDecl>(Record) &&
167       (!cast<CXXRecordDecl>(Record)->hasTrivialCopyConstructor() ||
168        !cast<CXXRecordDecl>(Record)->hasTrivialDestructor()))
169     return false;
170 
171   // Check whether the type has an object member.
172   return Record->hasObjectMember();
173 }
174 
175 /// \brief Perform the final move to DestPtr if RequiresGCollection is set.
176 ///
177 /// The idea is that you do something like this:
178 ///   RValue Result = EmitSomething(..., getReturnValueSlot());
179 ///   EmitGCMove(E, Result);
180 /// If GC doesn't interfere, this will cause the result to be emitted
181 /// directly into the return value slot.  If GC does interfere, a final
182 /// move will be performed.
183 void AggExprEmitter::EmitGCMove(const Expr *E, RValue Src) {
184   if (Dest.requiresGCollection()) {
185     CharUnits size = CGF.getContext().getTypeSizeInChars(E->getType());
186     const llvm::Type *SizeTy = CGF.ConvertType(CGF.getContext().getSizeType());
187     llvm::Value *SizeVal = llvm::ConstantInt::get(SizeTy, size.getQuantity());
188     CGF.CGM.getObjCRuntime().EmitGCMemmoveCollectable(CGF, Dest.getAddr(),
189                                                     Src.getAggregateAddr(),
190                                                     SizeVal);
191   }
192 }
193 
194 /// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
195 void AggExprEmitter::EmitFinalDestCopy(const Expr *E, RValue Src, bool Ignore) {
196   assert(Src.isAggregate() && "value must be aggregate value!");
197 
198   // If Dest is ignored, then we're evaluating an aggregate expression
199   // in a context (like an expression statement) that doesn't care
200   // about the result.  C says that an lvalue-to-rvalue conversion is
201   // performed in these cases; C++ says that it is not.  In either
202   // case, we don't actually need to do anything unless the value is
203   // volatile.
204   if (Dest.isIgnored()) {
205     if (!Src.isVolatileQualified() ||
206         CGF.CGM.getLangOptions().CPlusPlus ||
207         (IgnoreResult && Ignore))
208       return;
209 
210     // If the source is volatile, we must read from it; to do that, we need
211     // some place to put it.
212     Dest = CGF.CreateAggTemp(E->getType(), "agg.tmp");
213   }
214 
215   if (Dest.requiresGCollection()) {
216     CharUnits size = CGF.getContext().getTypeSizeInChars(E->getType());
217     const llvm::Type *SizeTy = CGF.ConvertType(CGF.getContext().getSizeType());
218     llvm::Value *SizeVal = llvm::ConstantInt::get(SizeTy, size.getQuantity());
219     CGF.CGM.getObjCRuntime().EmitGCMemmoveCollectable(CGF,
220                                                       Dest.getAddr(),
221                                                       Src.getAggregateAddr(),
222                                                       SizeVal);
223     return;
224   }
225   // If the result of the assignment is used, copy the LHS there also.
226   // FIXME: Pass VolatileDest as well.  I think we also need to merge volatile
227   // from the source as well, as we can't eliminate it if either operand
228   // is volatile, unless copy has volatile for both source and destination..
229   CGF.EmitAggregateCopy(Dest.getAddr(), Src.getAggregateAddr(), E->getType(),
230                         Dest.isVolatile()|Src.isVolatileQualified());
231 }
232 
233 /// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired.
234 void AggExprEmitter::EmitFinalDestCopy(const Expr *E, LValue Src, bool Ignore) {
235   assert(Src.isSimple() && "Can't have aggregate bitfield, vector, etc");
236 
237   EmitFinalDestCopy(E, RValue::getAggregate(Src.getAddress(),
238                                             Src.isVolatileQualified()),
239                     Ignore);
240 }
241 
242 //===----------------------------------------------------------------------===//
243 //                            Visitor Methods
244 //===----------------------------------------------------------------------===//
245 
246 void AggExprEmitter::VisitOpaqueValueExpr(OpaqueValueExpr *e) {
247   EmitFinalDestCopy(e, CGF.getOpaqueLValueMapping(e));
248 }
249 
250 void AggExprEmitter::VisitCastExpr(CastExpr *E) {
251   switch (E->getCastKind()) {
252   case CK_Dynamic: {
253     assert(isa<CXXDynamicCastExpr>(E) && "CK_Dynamic without a dynamic_cast?");
254     LValue LV = CGF.EmitCheckedLValue(E->getSubExpr());
255     // FIXME: Do we also need to handle property references here?
256     if (LV.isSimple())
257       CGF.EmitDynamicCast(LV.getAddress(), cast<CXXDynamicCastExpr>(E));
258     else
259       CGF.CGM.ErrorUnsupported(E, "non-simple lvalue dynamic_cast");
260 
261     if (!Dest.isIgnored())
262       CGF.CGM.ErrorUnsupported(E, "lvalue dynamic_cast with a destination");
263     break;
264   }
265 
266   case CK_ToUnion: {
267     if (Dest.isIgnored()) break;
268 
269     // GCC union extension
270     QualType Ty = E->getSubExpr()->getType();
271     QualType PtrTy = CGF.getContext().getPointerType(Ty);
272     llvm::Value *CastPtr = Builder.CreateBitCast(Dest.getAddr(),
273                                                  CGF.ConvertType(PtrTy));
274     EmitInitializationToLValue(E->getSubExpr(), CGF.MakeAddrLValue(CastPtr, Ty),
275                                Ty);
276     break;
277   }
278 
279   case CK_DerivedToBase:
280   case CK_BaseToDerived:
281   case CK_UncheckedDerivedToBase: {
282     assert(0 && "cannot perform hierarchy conversion in EmitAggExpr: "
283                 "should have been unpacked before we got here");
284     break;
285   }
286 
287   case CK_GetObjCProperty: {
288     LValue LV = CGF.EmitLValue(E->getSubExpr());
289     assert(LV.isPropertyRef());
290     RValue RV = CGF.EmitLoadOfPropertyRefLValue(LV, getReturnValueSlot());
291     EmitGCMove(E, RV);
292     break;
293   }
294 
295   case CK_LValueToRValue: // hope for downstream optimization
296   case CK_NoOp:
297   case CK_UserDefinedConversion:
298   case CK_ConstructorConversion:
299     assert(CGF.getContext().hasSameUnqualifiedType(E->getSubExpr()->getType(),
300                                                    E->getType()) &&
301            "Implicit cast types must be compatible");
302     Visit(E->getSubExpr());
303     break;
304 
305   case CK_LValueBitCast:
306     llvm_unreachable("should not be emitting lvalue bitcast as rvalue");
307     break;
308 
309   case CK_Dependent:
310   case CK_BitCast:
311   case CK_ArrayToPointerDecay:
312   case CK_FunctionToPointerDecay:
313   case CK_NullToPointer:
314   case CK_NullToMemberPointer:
315   case CK_BaseToDerivedMemberPointer:
316   case CK_DerivedToBaseMemberPointer:
317   case CK_MemberPointerToBoolean:
318   case CK_IntegralToPointer:
319   case CK_PointerToIntegral:
320   case CK_PointerToBoolean:
321   case CK_ToVoid:
322   case CK_VectorSplat:
323   case CK_IntegralCast:
324   case CK_IntegralToBoolean:
325   case CK_IntegralToFloating:
326   case CK_FloatingToIntegral:
327   case CK_FloatingToBoolean:
328   case CK_FloatingCast:
329   case CK_AnyPointerToObjCPointerCast:
330   case CK_AnyPointerToBlockPointerCast:
331   case CK_ObjCObjectLValueCast:
332   case CK_FloatingRealToComplex:
333   case CK_FloatingComplexToReal:
334   case CK_FloatingComplexToBoolean:
335   case CK_FloatingComplexCast:
336   case CK_FloatingComplexToIntegralComplex:
337   case CK_IntegralRealToComplex:
338   case CK_IntegralComplexToReal:
339   case CK_IntegralComplexToBoolean:
340   case CK_IntegralComplexCast:
341   case CK_IntegralComplexToFloatingComplex:
342     llvm_unreachable("cast kind invalid for aggregate types");
343   }
344 }
345 
346 void AggExprEmitter::VisitCallExpr(const CallExpr *E) {
347   if (E->getCallReturnType()->isReferenceType()) {
348     EmitAggLoadOfLValue(E);
349     return;
350   }
351 
352   RValue RV = CGF.EmitCallExpr(E, getReturnValueSlot());
353   EmitGCMove(E, RV);
354 }
355 
356 void AggExprEmitter::VisitObjCMessageExpr(ObjCMessageExpr *E) {
357   RValue RV = CGF.EmitObjCMessageExpr(E, getReturnValueSlot());
358   EmitGCMove(E, RV);
359 }
360 
361 void AggExprEmitter::VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *E) {
362   llvm_unreachable("direct property access not surrounded by "
363                    "lvalue-to-rvalue cast");
364 }
365 
366 void AggExprEmitter::VisitBinComma(const BinaryOperator *E) {
367   CGF.EmitIgnoredExpr(E->getLHS());
368   Visit(E->getRHS());
369 }
370 
371 void AggExprEmitter::VisitStmtExpr(const StmtExpr *E) {
372   CodeGenFunction::StmtExprEvaluation eval(CGF);
373   CGF.EmitCompoundStmt(*E->getSubStmt(), true, Dest);
374 }
375 
376 void AggExprEmitter::VisitBinaryOperator(const BinaryOperator *E) {
377   if (E->getOpcode() == BO_PtrMemD || E->getOpcode() == BO_PtrMemI)
378     VisitPointerToDataMemberBinaryOperator(E);
379   else
380     CGF.ErrorUnsupported(E, "aggregate binary expression");
381 }
382 
383 void AggExprEmitter::VisitPointerToDataMemberBinaryOperator(
384                                                     const BinaryOperator *E) {
385   LValue LV = CGF.EmitPointerToDataMemberBinaryExpr(E);
386   EmitFinalDestCopy(E, LV);
387 }
388 
389 void AggExprEmitter::VisitBinAssign(const BinaryOperator *E) {
390   // For an assignment to work, the value on the right has
391   // to be compatible with the value on the left.
392   assert(CGF.getContext().hasSameUnqualifiedType(E->getLHS()->getType(),
393                                                  E->getRHS()->getType())
394          && "Invalid assignment");
395 
396   if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E->getLHS()))
397     if (const VarDecl *VD = dyn_cast<VarDecl>(DRE->getDecl())) {
398       if (VD->hasAttr<BlocksAttr>() &&
399           E->getRHS()->HasSideEffects(CGF.getContext())) {
400         // When __block variable on LHS, the RHS must be evaluated first
401         // as it may change the 'forwarding' field via call to Block_copy.
402         LValue RHS = CGF.EmitLValue(E->getRHS());
403         LValue LHS = CGF.EmitLValue(E->getLHS());
404         bool GCollection = false;
405         if (CGF.getContext().getLangOptions().getGCMode())
406           GCollection = TypeRequiresGCollection(E->getLHS()->getType());
407         // Codegen the RHS so that it stores directly into the LHS.
408         Dest = AggValueSlot::forLValue(LHS, true, GCollection);
409         EmitFinalDestCopy(E, RHS, true);
410         return;
411       }
412     }
413 
414   LValue LHS = CGF.EmitLValue(E->getLHS());
415 
416   // We have to special case property setters, otherwise we must have
417   // a simple lvalue (no aggregates inside vectors, bitfields).
418   if (LHS.isPropertyRef()) {
419     const ObjCPropertyRefExpr *RE = LHS.getPropertyRefExpr();
420     QualType ArgType = RE->getSetterArgType();
421     RValue Src;
422     if (ArgType->isReferenceType())
423       Src = CGF.EmitReferenceBindingToExpr(E->getRHS(), 0);
424     else {
425       AggValueSlot Slot = EnsureSlot(E->getRHS()->getType());
426       CGF.EmitAggExpr(E->getRHS(), Slot);
427       Src = Slot.asRValue();
428     }
429     CGF.EmitStoreThroughPropertyRefLValue(Src, LHS);
430   } else {
431     bool GCollection = false;
432     if (CGF.getContext().getLangOptions().getGCMode())
433       GCollection = TypeRequiresGCollection(E->getLHS()->getType());
434 
435     // Codegen the RHS so that it stores directly into the LHS.
436     AggValueSlot LHSSlot = AggValueSlot::forLValue(LHS, true,
437                                                    GCollection);
438     CGF.EmitAggExpr(E->getRHS(), LHSSlot, false);
439     EmitFinalDestCopy(E, LHS, true);
440   }
441 }
442 
443 void AggExprEmitter::
444 VisitAbstractConditionalOperator(const AbstractConditionalOperator *E) {
445   llvm::BasicBlock *LHSBlock = CGF.createBasicBlock("cond.true");
446   llvm::BasicBlock *RHSBlock = CGF.createBasicBlock("cond.false");
447   llvm::BasicBlock *ContBlock = CGF.createBasicBlock("cond.end");
448 
449   // Bind the common expression if necessary.
450   CodeGenFunction::OpaqueValueMapping binding(CGF, E);
451 
452   CodeGenFunction::ConditionalEvaluation eval(CGF);
453   CGF.EmitBranchOnBoolExpr(E->getCond(), LHSBlock, RHSBlock);
454 
455   // Save whether the destination's lifetime is externally managed.
456   bool DestLifetimeManaged = Dest.isLifetimeExternallyManaged();
457 
458   eval.begin(CGF);
459   CGF.EmitBlock(LHSBlock);
460   Visit(E->getTrueExpr());
461   eval.end(CGF);
462 
463   assert(CGF.HaveInsertPoint() && "expression evaluation ended with no IP!");
464   CGF.Builder.CreateBr(ContBlock);
465 
466   // If the result of an agg expression is unused, then the emission
467   // of the LHS might need to create a destination slot.  That's fine
468   // with us, and we can safely emit the RHS into the same slot, but
469   // we shouldn't claim that its lifetime is externally managed.
470   Dest.setLifetimeExternallyManaged(DestLifetimeManaged);
471 
472   eval.begin(CGF);
473   CGF.EmitBlock(RHSBlock);
474   Visit(E->getFalseExpr());
475   eval.end(CGF);
476 
477   CGF.EmitBlock(ContBlock);
478 }
479 
480 void AggExprEmitter::VisitChooseExpr(const ChooseExpr *CE) {
481   Visit(CE->getChosenSubExpr(CGF.getContext()));
482 }
483 
484 void AggExprEmitter::VisitVAArgExpr(VAArgExpr *VE) {
485   llvm::Value *ArgValue = CGF.EmitVAListRef(VE->getSubExpr());
486   llvm::Value *ArgPtr = CGF.EmitVAArg(ArgValue, VE->getType());
487 
488   if (!ArgPtr) {
489     CGF.ErrorUnsupported(VE, "aggregate va_arg expression");
490     return;
491   }
492 
493   EmitFinalDestCopy(VE, CGF.MakeAddrLValue(ArgPtr, VE->getType()));
494 }
495 
496 void AggExprEmitter::VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E) {
497   // Ensure that we have a slot, but if we already do, remember
498   // whether its lifetime was externally managed.
499   bool WasManaged = Dest.isLifetimeExternallyManaged();
500   Dest = EnsureSlot(E->getType());
501   Dest.setLifetimeExternallyManaged();
502 
503   Visit(E->getSubExpr());
504 
505   // Set up the temporary's destructor if its lifetime wasn't already
506   // being managed.
507   if (!WasManaged)
508     CGF.EmitCXXTemporary(E->getTemporary(), Dest.getAddr());
509 }
510 
511 void
512 AggExprEmitter::VisitCXXConstructExpr(const CXXConstructExpr *E) {
513   AggValueSlot Slot = EnsureSlot(E->getType());
514   CGF.EmitCXXConstructExpr(E, Slot);
515 }
516 
517 void AggExprEmitter::VisitExprWithCleanups(ExprWithCleanups *E) {
518   CGF.EmitExprWithCleanups(E, Dest);
519 }
520 
521 void AggExprEmitter::VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *E) {
522   QualType T = E->getType();
523   AggValueSlot Slot = EnsureSlot(T);
524   EmitNullInitializationToLValue(CGF.MakeAddrLValue(Slot.getAddr(), T), T);
525 }
526 
527 void AggExprEmitter::VisitImplicitValueInitExpr(ImplicitValueInitExpr *E) {
528   QualType T = E->getType();
529   AggValueSlot Slot = EnsureSlot(T);
530   EmitNullInitializationToLValue(CGF.MakeAddrLValue(Slot.getAddr(), T), T);
531 }
532 
533 /// isSimpleZero - If emitting this value will obviously just cause a store of
534 /// zero to memory, return true.  This can return false if uncertain, so it just
535 /// handles simple cases.
536 static bool isSimpleZero(const Expr *E, CodeGenFunction &CGF) {
537   E = E->IgnoreParens();
538 
539   // 0
540   if (const IntegerLiteral *IL = dyn_cast<IntegerLiteral>(E))
541     return IL->getValue() == 0;
542   // +0.0
543   if (const FloatingLiteral *FL = dyn_cast<FloatingLiteral>(E))
544     return FL->getValue().isPosZero();
545   // int()
546   if ((isa<ImplicitValueInitExpr>(E) || isa<CXXScalarValueInitExpr>(E)) &&
547       CGF.getTypes().isZeroInitializable(E->getType()))
548     return true;
549   // (int*)0 - Null pointer expressions.
550   if (const CastExpr *ICE = dyn_cast<CastExpr>(E))
551     return ICE->getCastKind() == CK_NullToPointer;
552   // '\0'
553   if (const CharacterLiteral *CL = dyn_cast<CharacterLiteral>(E))
554     return CL->getValue() == 0;
555 
556   // Otherwise, hard case: conservatively return false.
557   return false;
558 }
559 
560 
561 void
562 AggExprEmitter::EmitInitializationToLValue(Expr* E, LValue LV, QualType T) {
563   // FIXME: Ignore result?
564   // FIXME: Are initializers affected by volatile?
565   if (Dest.isZeroed() && isSimpleZero(E, CGF)) {
566     // Storing "i32 0" to a zero'd memory location is a noop.
567   } else if (isa<ImplicitValueInitExpr>(E)) {
568     EmitNullInitializationToLValue(LV, T);
569   } else if (T->isReferenceType()) {
570     RValue RV = CGF.EmitReferenceBindingToExpr(E, /*InitializedDecl=*/0);
571     CGF.EmitStoreThroughLValue(RV, LV, T);
572   } else if (T->isAnyComplexType()) {
573     CGF.EmitComplexExprIntoAddr(E, LV.getAddress(), false);
574   } else if (CGF.hasAggregateLLVMType(T)) {
575     CGF.EmitAggExpr(E, AggValueSlot::forAddr(LV.getAddress(), false, true,
576                                              false, Dest.isZeroed()));
577   } else {
578     CGF.EmitStoreThroughLValue(RValue::get(CGF.EmitScalarExpr(E)), LV, T);
579   }
580 }
581 
582 void AggExprEmitter::EmitNullInitializationToLValue(LValue LV, QualType T) {
583   // If the destination slot is already zeroed out before the aggregate is
584   // copied into it, we don't have to emit any zeros here.
585   if (Dest.isZeroed() && CGF.getTypes().isZeroInitializable(T))
586     return;
587 
588   if (!CGF.hasAggregateLLVMType(T)) {
589     // For non-aggregates, we can store zero
590     llvm::Value *Null = llvm::Constant::getNullValue(CGF.ConvertType(T));
591     CGF.EmitStoreThroughLValue(RValue::get(Null), LV, T);
592   } else {
593     // There's a potential optimization opportunity in combining
594     // memsets; that would be easy for arrays, but relatively
595     // difficult for structures with the current code.
596     CGF.EmitNullInitialization(LV.getAddress(), T);
597   }
598 }
599 
600 void AggExprEmitter::VisitInitListExpr(InitListExpr *E) {
601 #if 0
602   // FIXME: Assess perf here?  Figure out what cases are worth optimizing here
603   // (Length of globals? Chunks of zeroed-out space?).
604   //
605   // If we can, prefer a copy from a global; this is a lot less code for long
606   // globals, and it's easier for the current optimizers to analyze.
607   if (llvm::Constant* C = CGF.CGM.EmitConstantExpr(E, E->getType(), &CGF)) {
608     llvm::GlobalVariable* GV =
609     new llvm::GlobalVariable(CGF.CGM.getModule(), C->getType(), true,
610                              llvm::GlobalValue::InternalLinkage, C, "");
611     EmitFinalDestCopy(E, CGF.MakeAddrLValue(GV, E->getType()));
612     return;
613   }
614 #endif
615   if (E->hadArrayRangeDesignator())
616     CGF.ErrorUnsupported(E, "GNU array range designator extension");
617 
618   llvm::Value *DestPtr = Dest.getAddr();
619 
620   // Handle initialization of an array.
621   if (E->getType()->isArrayType()) {
622     const llvm::PointerType *APType =
623       cast<llvm::PointerType>(DestPtr->getType());
624     const llvm::ArrayType *AType =
625       cast<llvm::ArrayType>(APType->getElementType());
626 
627     uint64_t NumInitElements = E->getNumInits();
628 
629     if (E->getNumInits() > 0) {
630       QualType T1 = E->getType();
631       QualType T2 = E->getInit(0)->getType();
632       if (CGF.getContext().hasSameUnqualifiedType(T1, T2)) {
633         EmitAggLoadOfLValue(E->getInit(0));
634         return;
635       }
636     }
637 
638     uint64_t NumArrayElements = AType->getNumElements();
639     QualType ElementType = CGF.getContext().getCanonicalType(E->getType());
640     ElementType = CGF.getContext().getAsArrayType(ElementType)->getElementType();
641 
642     bool hasNonTrivialCXXConstructor = false;
643     if (CGF.getContext().getLangOptions().CPlusPlus)
644       if (const RecordType *RT = CGF.getContext()
645                         .getBaseElementType(ElementType)->getAs<RecordType>()) {
646         const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
647         hasNonTrivialCXXConstructor = !RD->hasTrivialConstructor();
648       }
649 
650     // FIXME: were we intentionally ignoring address spaces and GC attributes?
651 
652     for (uint64_t i = 0; i != NumArrayElements; ++i) {
653       // If we're done emitting initializers and the destination is known-zeroed
654       // then we're done.
655       if (i == NumInitElements &&
656           Dest.isZeroed() &&
657           CGF.getTypes().isZeroInitializable(ElementType) &&
658           !hasNonTrivialCXXConstructor)
659         break;
660 
661       llvm::Value *NextVal = Builder.CreateStructGEP(DestPtr, i, ".array");
662       LValue LV = CGF.MakeAddrLValue(NextVal, ElementType);
663 
664       if (i < NumInitElements)
665         EmitInitializationToLValue(E->getInit(i), LV, ElementType);
666       else if (Expr *filler = E->getArrayFiller())
667         EmitInitializationToLValue(filler, LV, ElementType);
668       else
669         EmitNullInitializationToLValue(LV, ElementType);
670 
671       // If the GEP didn't get used because of a dead zero init or something
672       // else, clean it up for -O0 builds and general tidiness.
673       if (llvm::GetElementPtrInst *GEP =
674             dyn_cast<llvm::GetElementPtrInst>(NextVal))
675         if (GEP->use_empty())
676           GEP->eraseFromParent();
677     }
678     return;
679   }
680 
681   assert(E->getType()->isRecordType() && "Only support structs/unions here!");
682 
683   // Do struct initialization; this code just sets each individual member
684   // to the approprate value.  This makes bitfield support automatic;
685   // the disadvantage is that the generated code is more difficult for
686   // the optimizer, especially with bitfields.
687   unsigned NumInitElements = E->getNumInits();
688   RecordDecl *SD = E->getType()->getAs<RecordType>()->getDecl();
689 
690   if (E->getType()->isUnionType()) {
691     // Only initialize one field of a union. The field itself is
692     // specified by the initializer list.
693     if (!E->getInitializedFieldInUnion()) {
694       // Empty union; we have nothing to do.
695 
696 #ifndef NDEBUG
697       // Make sure that it's really an empty and not a failure of
698       // semantic analysis.
699       for (RecordDecl::field_iterator Field = SD->field_begin(),
700                                    FieldEnd = SD->field_end();
701            Field != FieldEnd; ++Field)
702         assert(Field->isUnnamedBitfield() && "Only unnamed bitfields allowed");
703 #endif
704       return;
705     }
706 
707     // FIXME: volatility
708     FieldDecl *Field = E->getInitializedFieldInUnion();
709 
710     LValue FieldLoc = CGF.EmitLValueForFieldInitialization(DestPtr, Field, 0);
711     if (NumInitElements) {
712       // Store the initializer into the field
713       EmitInitializationToLValue(E->getInit(0), FieldLoc, Field->getType());
714     } else {
715       // Default-initialize to null.
716       EmitNullInitializationToLValue(FieldLoc, Field->getType());
717     }
718 
719     return;
720   }
721 
722   // Here we iterate over the fields; this makes it simpler to both
723   // default-initialize fields and skip over unnamed fields.
724   unsigned CurInitVal = 0;
725   for (RecordDecl::field_iterator Field = SD->field_begin(),
726                                FieldEnd = SD->field_end();
727        Field != FieldEnd; ++Field) {
728     // We're done once we hit the flexible array member
729     if (Field->getType()->isIncompleteArrayType())
730       break;
731 
732     if (Field->isUnnamedBitfield())
733       continue;
734 
735     // Don't emit GEP before a noop store of zero.
736     if (CurInitVal == NumInitElements && Dest.isZeroed() &&
737         CGF.getTypes().isZeroInitializable(E->getType()))
738       break;
739 
740     // FIXME: volatility
741     LValue FieldLoc = CGF.EmitLValueForFieldInitialization(DestPtr, *Field, 0);
742     // We never generate write-barries for initialized fields.
743     FieldLoc.setNonGC(true);
744 
745     if (CurInitVal < NumInitElements) {
746       // Store the initializer into the field.
747       EmitInitializationToLValue(E->getInit(CurInitVal++), FieldLoc,
748                                  Field->getType());
749     } else {
750       // We're out of initalizers; default-initialize to null
751       EmitNullInitializationToLValue(FieldLoc, Field->getType());
752     }
753 
754     // If the GEP didn't get used because of a dead zero init or something
755     // else, clean it up for -O0 builds and general tidiness.
756     if (FieldLoc.isSimple())
757       if (llvm::GetElementPtrInst *GEP =
758             dyn_cast<llvm::GetElementPtrInst>(FieldLoc.getAddress()))
759         if (GEP->use_empty())
760           GEP->eraseFromParent();
761   }
762 }
763 
764 //===----------------------------------------------------------------------===//
765 //                        Entry Points into this File
766 //===----------------------------------------------------------------------===//
767 
768 /// GetNumNonZeroBytesInInit - Get an approximate count of the number of
769 /// non-zero bytes that will be stored when outputting the initializer for the
770 /// specified initializer expression.
771 static CharUnits GetNumNonZeroBytesInInit(const Expr *E, CodeGenFunction &CGF) {
772   E = E->IgnoreParens();
773 
774   // 0 and 0.0 won't require any non-zero stores!
775   if (isSimpleZero(E, CGF)) return CharUnits::Zero();
776 
777   // If this is an initlist expr, sum up the size of sizes of the (present)
778   // elements.  If this is something weird, assume the whole thing is non-zero.
779   const InitListExpr *ILE = dyn_cast<InitListExpr>(E);
780   if (ILE == 0 || !CGF.getTypes().isZeroInitializable(ILE->getType()))
781     return CGF.getContext().getTypeSizeInChars(E->getType());
782 
783   // InitListExprs for structs have to be handled carefully.  If there are
784   // reference members, we need to consider the size of the reference, not the
785   // referencee.  InitListExprs for unions and arrays can't have references.
786   if (const RecordType *RT = E->getType()->getAs<RecordType>()) {
787     if (!RT->isUnionType()) {
788       RecordDecl *SD = E->getType()->getAs<RecordType>()->getDecl();
789       CharUnits NumNonZeroBytes = CharUnits::Zero();
790 
791       unsigned ILEElement = 0;
792       for (RecordDecl::field_iterator Field = SD->field_begin(),
793            FieldEnd = SD->field_end(); Field != FieldEnd; ++Field) {
794         // We're done once we hit the flexible array member or run out of
795         // InitListExpr elements.
796         if (Field->getType()->isIncompleteArrayType() ||
797             ILEElement == ILE->getNumInits())
798           break;
799         if (Field->isUnnamedBitfield())
800           continue;
801 
802         const Expr *E = ILE->getInit(ILEElement++);
803 
804         // Reference values are always non-null and have the width of a pointer.
805         if (Field->getType()->isReferenceType())
806           NumNonZeroBytes += CGF.getContext().toCharUnitsFromBits(
807               CGF.getContext().Target.getPointerWidth(0));
808         else
809           NumNonZeroBytes += GetNumNonZeroBytesInInit(E, CGF);
810       }
811 
812       return NumNonZeroBytes;
813     }
814   }
815 
816 
817   CharUnits NumNonZeroBytes = CharUnits::Zero();
818   for (unsigned i = 0, e = ILE->getNumInits(); i != e; ++i)
819     NumNonZeroBytes += GetNumNonZeroBytesInInit(ILE->getInit(i), CGF);
820   return NumNonZeroBytes;
821 }
822 
823 /// CheckAggExprForMemSetUse - If the initializer is large and has a lot of
824 /// zeros in it, emit a memset and avoid storing the individual zeros.
825 ///
826 static void CheckAggExprForMemSetUse(AggValueSlot &Slot, const Expr *E,
827                                      CodeGenFunction &CGF) {
828   // If the slot is already known to be zeroed, nothing to do.  Don't mess with
829   // volatile stores.
830   if (Slot.isZeroed() || Slot.isVolatile() || Slot.getAddr() == 0) return;
831 
832   // C++ objects with a user-declared constructor don't need zero'ing.
833   if (CGF.getContext().getLangOptions().CPlusPlus)
834     if (const RecordType *RT = CGF.getContext()
835                        .getBaseElementType(E->getType())->getAs<RecordType>()) {
836       const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
837       if (RD->hasUserDeclaredConstructor())
838         return;
839     }
840 
841   // If the type is 16-bytes or smaller, prefer individual stores over memset.
842   std::pair<CharUnits, CharUnits> TypeInfo =
843     CGF.getContext().getTypeInfoInChars(E->getType());
844   if (TypeInfo.first <= CharUnits::fromQuantity(16))
845     return;
846 
847   // Check to see if over 3/4 of the initializer are known to be zero.  If so,
848   // we prefer to emit memset + individual stores for the rest.
849   CharUnits NumNonZeroBytes = GetNumNonZeroBytesInInit(E, CGF);
850   if (NumNonZeroBytes*4 > TypeInfo.first)
851     return;
852 
853   // Okay, it seems like a good idea to use an initial memset, emit the call.
854   llvm::Constant *SizeVal = CGF.Builder.getInt64(TypeInfo.first.getQuantity());
855   CharUnits Align = TypeInfo.second;
856 
857   llvm::Value *Loc = Slot.getAddr();
858   const llvm::Type *BP = llvm::Type::getInt8PtrTy(CGF.getLLVMContext());
859 
860   Loc = CGF.Builder.CreateBitCast(Loc, BP);
861   CGF.Builder.CreateMemSet(Loc, CGF.Builder.getInt8(0), SizeVal,
862                            Align.getQuantity(), false);
863 
864   // Tell the AggExprEmitter that the slot is known zero.
865   Slot.setZeroed();
866 }
867 
868 
869 
870 
871 /// EmitAggExpr - Emit the computation of the specified expression of aggregate
872 /// type.  The result is computed into DestPtr.  Note that if DestPtr is null,
873 /// the value of the aggregate expression is not needed.  If VolatileDest is
874 /// true, DestPtr cannot be 0.
875 ///
876 /// \param IsInitializer - true if this evaluation is initializing an
877 /// object whose lifetime is already being managed.
878 //
879 // FIXME: Take Qualifiers object.
880 void CodeGenFunction::EmitAggExpr(const Expr *E, AggValueSlot Slot,
881                                   bool IgnoreResult) {
882   assert(E && hasAggregateLLVMType(E->getType()) &&
883          "Invalid aggregate expression to emit");
884   assert((Slot.getAddr() != 0 || Slot.isIgnored()) &&
885          "slot has bits but no address");
886 
887   // Optimize the slot if possible.
888   CheckAggExprForMemSetUse(Slot, E, *this);
889 
890   AggExprEmitter(*this, Slot, IgnoreResult).Visit(const_cast<Expr*>(E));
891 }
892 
893 LValue CodeGenFunction::EmitAggExprToLValue(const Expr *E) {
894   assert(hasAggregateLLVMType(E->getType()) && "Invalid argument!");
895   llvm::Value *Temp = CreateMemTemp(E->getType());
896   LValue LV = MakeAddrLValue(Temp, E->getType());
897   EmitAggExpr(E, AggValueSlot::forAddr(Temp, LV.isVolatileQualified(), false));
898   return LV;
899 }
900 
901 void CodeGenFunction::EmitAggregateCopy(llvm::Value *DestPtr,
902                                         llvm::Value *SrcPtr, QualType Ty,
903                                         bool isVolatile) {
904   assert(!Ty->isAnyComplexType() && "Shouldn't happen for complex");
905 
906   if (getContext().getLangOptions().CPlusPlus) {
907     if (const RecordType *RT = Ty->getAs<RecordType>()) {
908       CXXRecordDecl *Record = cast<CXXRecordDecl>(RT->getDecl());
909       assert((Record->hasTrivialCopyConstructor() ||
910               Record->hasTrivialCopyAssignment()) &&
911              "Trying to aggregate-copy a type without a trivial copy "
912              "constructor or assignment operator");
913       // Ignore empty classes in C++.
914       if (Record->isEmpty())
915         return;
916     }
917   }
918 
919   // Aggregate assignment turns into llvm.memcpy.  This is almost valid per
920   // C99 6.5.16.1p3, which states "If the value being stored in an object is
921   // read from another object that overlaps in anyway the storage of the first
922   // object, then the overlap shall be exact and the two objects shall have
923   // qualified or unqualified versions of a compatible type."
924   //
925   // memcpy is not defined if the source and destination pointers are exactly
926   // equal, but other compilers do this optimization, and almost every memcpy
927   // implementation handles this case safely.  If there is a libc that does not
928   // safely handle this, we can add a target hook.
929 
930   // Get size and alignment info for this aggregate.
931   std::pair<CharUnits, CharUnits> TypeInfo =
932     getContext().getTypeInfoInChars(Ty);
933 
934   // FIXME: Handle variable sized types.
935 
936   // FIXME: If we have a volatile struct, the optimizer can remove what might
937   // appear to be `extra' memory ops:
938   //
939   // volatile struct { int i; } a, b;
940   //
941   // int main() {
942   //   a = b;
943   //   a = b;
944   // }
945   //
946   // we need to use a different call here.  We use isVolatile to indicate when
947   // either the source or the destination is volatile.
948 
949   const llvm::PointerType *DPT = cast<llvm::PointerType>(DestPtr->getType());
950   const llvm::Type *DBP =
951     llvm::Type::getInt8PtrTy(getLLVMContext(), DPT->getAddressSpace());
952   DestPtr = Builder.CreateBitCast(DestPtr, DBP, "tmp");
953 
954   const llvm::PointerType *SPT = cast<llvm::PointerType>(SrcPtr->getType());
955   const llvm::Type *SBP =
956     llvm::Type::getInt8PtrTy(getLLVMContext(), SPT->getAddressSpace());
957   SrcPtr = Builder.CreateBitCast(SrcPtr, SBP, "tmp");
958 
959   if (const RecordType *RecordTy = Ty->getAs<RecordType>()) {
960     RecordDecl *Record = RecordTy->getDecl();
961     if (Record->hasObjectMember()) {
962       CharUnits size = TypeInfo.first;
963       const llvm::Type *SizeTy = ConvertType(getContext().getSizeType());
964       llvm::Value *SizeVal = llvm::ConstantInt::get(SizeTy, size.getQuantity());
965       CGM.getObjCRuntime().EmitGCMemmoveCollectable(*this, DestPtr, SrcPtr,
966                                                     SizeVal);
967       return;
968     }
969   } else if (getContext().getAsArrayType(Ty)) {
970     QualType BaseType = getContext().getBaseElementType(Ty);
971     if (const RecordType *RecordTy = BaseType->getAs<RecordType>()) {
972       if (RecordTy->getDecl()->hasObjectMember()) {
973         CharUnits size = TypeInfo.first;
974         const llvm::Type *SizeTy = ConvertType(getContext().getSizeType());
975         llvm::Value *SizeVal =
976           llvm::ConstantInt::get(SizeTy, size.getQuantity());
977         CGM.getObjCRuntime().EmitGCMemmoveCollectable(*this, DestPtr, SrcPtr,
978                                                       SizeVal);
979         return;
980       }
981     }
982   }
983 
984   Builder.CreateMemCpy(DestPtr, SrcPtr,
985                        llvm::ConstantInt::get(IntPtrTy,
986                                               TypeInfo.first.getQuantity()),
987                        TypeInfo.second.getQuantity(), isVolatile);
988 }
989