17a51313dSChris Lattner //===--- CGExprAgg.cpp - Emit LLVM Code from Aggregate Expressions --------===// 27a51313dSChris Lattner // 37a51313dSChris Lattner // The LLVM Compiler Infrastructure 47a51313dSChris Lattner // 57a51313dSChris Lattner // This file is distributed under the University of Illinois Open Source 67a51313dSChris Lattner // License. See LICENSE.TXT for details. 77a51313dSChris Lattner // 87a51313dSChris Lattner //===----------------------------------------------------------------------===// 97a51313dSChris Lattner // 107a51313dSChris Lattner // This contains code to emit Aggregate Expr nodes as LLVM code. 117a51313dSChris Lattner // 127a51313dSChris Lattner //===----------------------------------------------------------------------===// 137a51313dSChris Lattner 147a51313dSChris Lattner #include "CodeGenFunction.h" 155f21d2f6SFariborz Jahanian #include "CGObjCRuntime.h" 163a02247dSChandler Carruth #include "CodeGenModule.h" 17ad319a73SDaniel Dunbar #include "clang/AST/ASTContext.h" 18b7f8f594SAnders Carlsson #include "clang/AST/DeclCXX.h" 19c83ed824SSebastian Redl #include "clang/AST/DeclTemplate.h" 20ad319a73SDaniel Dunbar #include "clang/AST/StmtVisitor.h" 21ffd5551bSChandler Carruth #include "llvm/IR/Constants.h" 22ffd5551bSChandler Carruth #include "llvm/IR/Function.h" 23ffd5551bSChandler Carruth #include "llvm/IR/GlobalVariable.h" 24ffd5551bSChandler Carruth #include "llvm/IR/Intrinsics.h" 257a51313dSChris Lattner using namespace clang; 267a51313dSChris Lattner using namespace CodeGen; 277a51313dSChris Lattner 287a51313dSChris Lattner //===----------------------------------------------------------------------===// 297a51313dSChris Lattner // Aggregate Expression Emitter 307a51313dSChris Lattner //===----------------------------------------------------------------------===// 317a51313dSChris Lattner 32*a8ec7eb9SJohn McCall llvm::Value *AggValueSlot::getPaddedAtomicAddr() const { 33*a8ec7eb9SJohn McCall assert(isValueOfAtomic()); 34*a8ec7eb9SJohn McCall llvm::GEPOperator *op = cast<llvm::GEPOperator>(getAddr()); 35*a8ec7eb9SJohn McCall assert(op->getNumIndices() == 2); 36*a8ec7eb9SJohn McCall assert(op->hasAllZeroIndices()); 37*a8ec7eb9SJohn McCall return op->getPointerOperand(); 38*a8ec7eb9SJohn McCall } 39*a8ec7eb9SJohn McCall 407a51313dSChris Lattner namespace { 41337e3a5fSBenjamin Kramer class AggExprEmitter : public StmtVisitor<AggExprEmitter> { 427a51313dSChris Lattner CodeGenFunction &CGF; 43cb463859SDaniel Dunbar CGBuilderTy &Builder; 447a626f63SJohn McCall AggValueSlot Dest; 4578a15113SJohn McCall 46a5efa738SJohn McCall /// We want to use 'dest' as the return slot except under two 47a5efa738SJohn McCall /// conditions: 48a5efa738SJohn McCall /// - The destination slot requires garbage collection, so we 49a5efa738SJohn McCall /// need to use the GC API. 50a5efa738SJohn McCall /// - The destination slot is potentially aliased. 51a5efa738SJohn McCall bool shouldUseDestForReturnSlot() const { 52a5efa738SJohn McCall return !(Dest.requiresGCollection() || Dest.isPotentiallyAliased()); 53a5efa738SJohn McCall } 54a5efa738SJohn McCall 5578a15113SJohn McCall ReturnValueSlot getReturnValueSlot() const { 56a5efa738SJohn McCall if (!shouldUseDestForReturnSlot()) 57a5efa738SJohn McCall return ReturnValueSlot(); 58cc04e9f6SJohn McCall 597a626f63SJohn McCall return ReturnValueSlot(Dest.getAddr(), Dest.isVolatile()); 607a626f63SJohn McCall } 617a626f63SJohn McCall 627a626f63SJohn McCall AggValueSlot EnsureSlot(QualType T) { 637a626f63SJohn McCall if (!Dest.isIgnored()) return Dest; 647a626f63SJohn McCall return CGF.CreateAggTemp(T, "agg.tmp.ensured"); 6578a15113SJohn McCall } 664e8ca4faSJohn McCall void EnsureDest(QualType T) { 674e8ca4faSJohn McCall if (!Dest.isIgnored()) return; 684e8ca4faSJohn McCall Dest = CGF.CreateAggTemp(T, "agg.tmp.ensured"); 694e8ca4faSJohn McCall } 70cc04e9f6SJohn McCall 717a51313dSChris Lattner public: 724e8ca4faSJohn McCall AggExprEmitter(CodeGenFunction &cgf, AggValueSlot Dest) 734e8ca4faSJohn McCall : CGF(cgf), Builder(CGF.Builder), Dest(Dest) { 747a51313dSChris Lattner } 757a51313dSChris Lattner 767a51313dSChris Lattner //===--------------------------------------------------------------------===// 777a51313dSChris Lattner // Utilities 787a51313dSChris Lattner //===--------------------------------------------------------------------===// 797a51313dSChris Lattner 807a51313dSChris Lattner /// EmitAggLoadOfLValue - Given an expression with aggregate type that 817a51313dSChris Lattner /// represents a value lvalue, this method emits the address of the lvalue, 827a51313dSChris Lattner /// then loads the result into DestPtr. 837a51313dSChris Lattner void EmitAggLoadOfLValue(const Expr *E); 847a51313dSChris Lattner 85ca9fc09cSMike Stump /// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired. 864e8ca4faSJohn McCall void EmitFinalDestCopy(QualType type, const LValue &src); 874e8ca4faSJohn McCall void EmitFinalDestCopy(QualType type, RValue src, 884e8ca4faSJohn McCall CharUnits srcAlignment = CharUnits::Zero()); 894e8ca4faSJohn McCall void EmitCopy(QualType type, const AggValueSlot &dest, 904e8ca4faSJohn McCall const AggValueSlot &src); 91ca9fc09cSMike Stump 92a5efa738SJohn McCall void EmitMoveFromReturnSlot(const Expr *E, RValue Src); 93cc04e9f6SJohn McCall 948eb351d7SSebastian Redl void EmitStdInitializerList(llvm::Value *DestPtr, InitListExpr *InitList); 95c83ed824SSebastian Redl void EmitArrayInit(llvm::Value *DestPtr, llvm::ArrayType *AType, 96c83ed824SSebastian Redl QualType elementType, InitListExpr *E); 97c83ed824SSebastian Redl 988d6fc958SJohn McCall AggValueSlot::NeedsGCBarriers_t needsGC(QualType T) { 99bbafb8a7SDavid Blaikie if (CGF.getLangOpts().getGC() && TypeRequiresGCollection(T)) 1008d6fc958SJohn McCall return AggValueSlot::NeedsGCBarriers; 1018d6fc958SJohn McCall return AggValueSlot::DoesNotNeedGCBarriers; 1028d6fc958SJohn McCall } 1038d6fc958SJohn McCall 104cc04e9f6SJohn McCall bool TypeRequiresGCollection(QualType T); 105cc04e9f6SJohn McCall 1067a51313dSChris Lattner //===--------------------------------------------------------------------===// 1077a51313dSChris Lattner // Visitor Methods 1087a51313dSChris Lattner //===--------------------------------------------------------------------===// 1097a51313dSChris Lattner 1107a51313dSChris Lattner void VisitStmt(Stmt *S) { 111a7c8cf62SDaniel Dunbar CGF.ErrorUnsupported(S, "aggregate expression"); 1127a51313dSChris Lattner } 1137a51313dSChris Lattner void VisitParenExpr(ParenExpr *PE) { Visit(PE->getSubExpr()); } 11491147596SPeter Collingbourne void VisitGenericSelectionExpr(GenericSelectionExpr *GE) { 11591147596SPeter Collingbourne Visit(GE->getResultExpr()); 11691147596SPeter Collingbourne } 1173f66b84cSEli Friedman void VisitUnaryExtension(UnaryOperator *E) { Visit(E->getSubExpr()); } 1187c454bb8SJohn McCall void VisitSubstNonTypeTemplateParmExpr(SubstNonTypeTemplateParmExpr *E) { 1197c454bb8SJohn McCall return Visit(E->getReplacement()); 1207c454bb8SJohn McCall } 1217a51313dSChris Lattner 1227a51313dSChris Lattner // l-values. 123113bee05SJohn McCall void VisitDeclRefExpr(DeclRefExpr *E) { 12471335059SJohn McCall // For aggregates, we should always be able to emit the variable 12571335059SJohn McCall // as an l-value unless it's a reference. This is due to the fact 12671335059SJohn McCall // that we can't actually ever see a normal l2r conversion on an 12771335059SJohn McCall // aggregate in C++, and in C there's no language standard 12871335059SJohn McCall // actively preventing us from listing variables in the captures 12971335059SJohn McCall // list of a block. 130113bee05SJohn McCall if (E->getDecl()->getType()->isReferenceType()) { 13171335059SJohn McCall if (CodeGenFunction::ConstantEmission result 132113bee05SJohn McCall = CGF.tryEmitAsConstant(E)) { 1334e8ca4faSJohn McCall EmitFinalDestCopy(E->getType(), result.getReferenceLValue(CGF, E)); 13471335059SJohn McCall return; 13571335059SJohn McCall } 13671335059SJohn McCall } 13771335059SJohn McCall 138113bee05SJohn McCall EmitAggLoadOfLValue(E); 13971335059SJohn McCall } 14071335059SJohn McCall 1417a51313dSChris Lattner void VisitMemberExpr(MemberExpr *ME) { EmitAggLoadOfLValue(ME); } 1427a51313dSChris Lattner void VisitUnaryDeref(UnaryOperator *E) { EmitAggLoadOfLValue(E); } 143d443c0a0SDaniel Dunbar void VisitStringLiteral(StringLiteral *E) { EmitAggLoadOfLValue(E); } 1449b71f0cfSDouglas Gregor void VisitCompoundLiteralExpr(CompoundLiteralExpr *E); 1457a51313dSChris Lattner void VisitArraySubscriptExpr(ArraySubscriptExpr *E) { 1467a51313dSChris Lattner EmitAggLoadOfLValue(E); 1477a51313dSChris Lattner } 1482f343dd5SChris Lattner void VisitPredefinedExpr(const PredefinedExpr *E) { 1492f343dd5SChris Lattner EmitAggLoadOfLValue(E); 1502f343dd5SChris Lattner } 151bc7d67ceSMike Stump 1527a51313dSChris Lattner // Operators. 153ec143777SAnders Carlsson void VisitCastExpr(CastExpr *E); 1547a51313dSChris Lattner void VisitCallExpr(const CallExpr *E); 1557a51313dSChris Lattner void VisitStmtExpr(const StmtExpr *E); 1567a51313dSChris Lattner void VisitBinaryOperator(const BinaryOperator *BO); 157ffba662dSFariborz Jahanian void VisitPointerToDataMemberBinaryOperator(const BinaryOperator *BO); 1587a51313dSChris Lattner void VisitBinAssign(const BinaryOperator *E); 1594b0e2a30SEli Friedman void VisitBinComma(const BinaryOperator *E); 1607a51313dSChris Lattner 161b1d329daSChris Lattner void VisitObjCMessageExpr(ObjCMessageExpr *E); 162c8317a44SDaniel Dunbar void VisitObjCIvarRefExpr(ObjCIvarRefExpr *E) { 163c8317a44SDaniel Dunbar EmitAggLoadOfLValue(E); 164c8317a44SDaniel Dunbar } 1657a51313dSChris Lattner 166c07a0c7eSJohn McCall void VisitAbstractConditionalOperator(const AbstractConditionalOperator *CO); 1675b2095ceSAnders Carlsson void VisitChooseExpr(const ChooseExpr *CE); 1687a51313dSChris Lattner void VisitInitListExpr(InitListExpr *E); 16918ada985SAnders Carlsson void VisitImplicitValueInitExpr(ImplicitValueInitExpr *E); 170aa9c7aedSChris Lattner void VisitCXXDefaultArgExpr(CXXDefaultArgExpr *DAE) { 171aa9c7aedSChris Lattner Visit(DAE->getExpr()); 172aa9c7aedSChris Lattner } 1733be22e27SAnders Carlsson void VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E); 1741619a504SAnders Carlsson void VisitCXXConstructExpr(const CXXConstructExpr *E); 175c370a7eeSEli Friedman void VisitLambdaExpr(LambdaExpr *E); 1765d413781SJohn McCall void VisitExprWithCleanups(ExprWithCleanups *E); 177747eb784SDouglas Gregor void VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *E); 1785bbbb137SMike Stump void VisitCXXTypeidExpr(CXXTypeidExpr *E) { EmitAggLoadOfLValue(E); } 179fe31481fSDouglas Gregor void VisitMaterializeTemporaryExpr(MaterializeTemporaryExpr *E); 1801bf5846aSJohn McCall void VisitOpaqueValueExpr(OpaqueValueExpr *E); 1811bf5846aSJohn McCall 182fe96e0b6SJohn McCall void VisitPseudoObjectExpr(PseudoObjectExpr *E) { 183fe96e0b6SJohn McCall if (E->isGLValue()) { 184fe96e0b6SJohn McCall LValue LV = CGF.EmitPseudoObjectLValue(E); 1854e8ca4faSJohn McCall return EmitFinalDestCopy(E->getType(), LV); 186fe96e0b6SJohn McCall } 187fe96e0b6SJohn McCall 188fe96e0b6SJohn McCall CGF.EmitPseudoObjectRValue(E, EnsureSlot(E->getType())); 189fe96e0b6SJohn McCall } 190fe96e0b6SJohn McCall 19121911e89SEli Friedman void VisitVAArgExpr(VAArgExpr *E); 192579a05d7SChris Lattner 193615ed1a3SChad Rosier void EmitInitializationToLValue(Expr *E, LValue Address); 1941553b190SJohn McCall void EmitNullInitializationToLValue(LValue Address); 1957a51313dSChris Lattner // case Expr::ChooseExprClass: 196f16b8c30SMike Stump void VisitCXXThrowExpr(const CXXThrowExpr *E) { CGF.EmitCXXThrowExpr(E); } 197df14b3a8SEli Friedman void VisitAtomicExpr(AtomicExpr *E) { 198df14b3a8SEli Friedman CGF.EmitAtomicExpr(E, EnsureSlot(E->getType()).getAddr()); 199df14b3a8SEli Friedman } 2007a51313dSChris Lattner }; 201*a8ec7eb9SJohn McCall 202*a8ec7eb9SJohn McCall /// A helper class for emitting expressions into the value sub-object 203*a8ec7eb9SJohn McCall /// of a padded atomic type. 204*a8ec7eb9SJohn McCall class ValueDestForAtomic { 205*a8ec7eb9SJohn McCall AggValueSlot Dest; 206*a8ec7eb9SJohn McCall public: 207*a8ec7eb9SJohn McCall ValueDestForAtomic(CodeGenFunction &CGF, AggValueSlot dest, QualType type) 208*a8ec7eb9SJohn McCall : Dest(dest) { 209*a8ec7eb9SJohn McCall assert(!Dest.isValueOfAtomic()); 210*a8ec7eb9SJohn McCall if (!Dest.isIgnored() && CGF.CGM.isPaddedAtomicType(type)) { 211*a8ec7eb9SJohn McCall llvm::Value *valueAddr = CGF.Builder.CreateStructGEP(Dest.getAddr(), 0); 212*a8ec7eb9SJohn McCall Dest = AggValueSlot::forAddr(valueAddr, 213*a8ec7eb9SJohn McCall Dest.getAlignment(), 214*a8ec7eb9SJohn McCall Dest.getQualifiers(), 215*a8ec7eb9SJohn McCall Dest.isExternallyDestructed(), 216*a8ec7eb9SJohn McCall Dest.requiresGCollection(), 217*a8ec7eb9SJohn McCall Dest.isPotentiallyAliased(), 218*a8ec7eb9SJohn McCall Dest.isZeroed(), 219*a8ec7eb9SJohn McCall AggValueSlot::IsValueOfAtomic); 220*a8ec7eb9SJohn McCall } 221*a8ec7eb9SJohn McCall } 222*a8ec7eb9SJohn McCall 223*a8ec7eb9SJohn McCall const AggValueSlot &getDest() const { return Dest; } 224*a8ec7eb9SJohn McCall 225*a8ec7eb9SJohn McCall ~ValueDestForAtomic() { 226*a8ec7eb9SJohn McCall // Kill the GEP if we made one and it didn't end up used. 227*a8ec7eb9SJohn McCall if (Dest.isValueOfAtomic()) { 228*a8ec7eb9SJohn McCall llvm::Instruction *addr = cast<llvm::GetElementPtrInst>(Dest.getAddr()); 229*a8ec7eb9SJohn McCall if (addr->use_empty()) addr->eraseFromParent(); 230*a8ec7eb9SJohn McCall } 231*a8ec7eb9SJohn McCall } 232*a8ec7eb9SJohn McCall }; 2337a51313dSChris Lattner } // end anonymous namespace. 2347a51313dSChris Lattner 2357a51313dSChris Lattner //===----------------------------------------------------------------------===// 2367a51313dSChris Lattner // Utilities 2377a51313dSChris Lattner //===----------------------------------------------------------------------===// 2387a51313dSChris Lattner 2397a51313dSChris Lattner /// EmitAggLoadOfLValue - Given an expression with aggregate type that 2407a51313dSChris Lattner /// represents a value lvalue, this method emits the address of the lvalue, 2417a51313dSChris Lattner /// then loads the result into DestPtr. 2427a51313dSChris Lattner void AggExprEmitter::EmitAggLoadOfLValue(const Expr *E) { 2437a51313dSChris Lattner LValue LV = CGF.EmitLValue(E); 244*a8ec7eb9SJohn McCall 245*a8ec7eb9SJohn McCall // If the type of the l-value is atomic, then do an atomic load. 246*a8ec7eb9SJohn McCall if (LV.getType()->isAtomicType()) { 247*a8ec7eb9SJohn McCall ValueDestForAtomic valueDest(CGF, Dest, LV.getType()); 248*a8ec7eb9SJohn McCall CGF.EmitAtomicLoad(LV, valueDest.getDest()); 249*a8ec7eb9SJohn McCall return; 250*a8ec7eb9SJohn McCall } 251*a8ec7eb9SJohn McCall 2524e8ca4faSJohn McCall EmitFinalDestCopy(E->getType(), LV); 253ca9fc09cSMike Stump } 254ca9fc09cSMike Stump 255cc04e9f6SJohn McCall /// \brief True if the given aggregate type requires special GC API calls. 256cc04e9f6SJohn McCall bool AggExprEmitter::TypeRequiresGCollection(QualType T) { 257cc04e9f6SJohn McCall // Only record types have members that might require garbage collection. 258cc04e9f6SJohn McCall const RecordType *RecordTy = T->getAs<RecordType>(); 259cc04e9f6SJohn McCall if (!RecordTy) return false; 260cc04e9f6SJohn McCall 261cc04e9f6SJohn McCall // Don't mess with non-trivial C++ types. 262cc04e9f6SJohn McCall RecordDecl *Record = RecordTy->getDecl(); 263cc04e9f6SJohn McCall if (isa<CXXRecordDecl>(Record) && 26416488472SRichard Smith (cast<CXXRecordDecl>(Record)->hasNonTrivialCopyConstructor() || 265cc04e9f6SJohn McCall !cast<CXXRecordDecl>(Record)->hasTrivialDestructor())) 266cc04e9f6SJohn McCall return false; 267cc04e9f6SJohn McCall 268cc04e9f6SJohn McCall // Check whether the type has an object member. 269cc04e9f6SJohn McCall return Record->hasObjectMember(); 270cc04e9f6SJohn McCall } 271cc04e9f6SJohn McCall 272a5efa738SJohn McCall /// \brief Perform the final move to DestPtr if for some reason 273a5efa738SJohn McCall /// getReturnValueSlot() didn't use it directly. 274cc04e9f6SJohn McCall /// 275cc04e9f6SJohn McCall /// The idea is that you do something like this: 276cc04e9f6SJohn McCall /// RValue Result = EmitSomething(..., getReturnValueSlot()); 277a5efa738SJohn McCall /// EmitMoveFromReturnSlot(E, Result); 278a5efa738SJohn McCall /// 279a5efa738SJohn McCall /// If nothing interferes, this will cause the result to be emitted 280a5efa738SJohn McCall /// directly into the return value slot. Otherwise, a final move 281a5efa738SJohn McCall /// will be performed. 2824e8ca4faSJohn McCall void AggExprEmitter::EmitMoveFromReturnSlot(const Expr *E, RValue src) { 283a5efa738SJohn McCall if (shouldUseDestForReturnSlot()) { 284a5efa738SJohn McCall // Logically, Dest.getAddr() should equal Src.getAggregateAddr(). 285a5efa738SJohn McCall // The possibility of undef rvalues complicates that a lot, 286a5efa738SJohn McCall // though, so we can't really assert. 287a5efa738SJohn McCall return; 288021510e9SFariborz Jahanian } 289a5efa738SJohn McCall 2904e8ca4faSJohn McCall // Otherwise, copy from there to the destination. 2914e8ca4faSJohn McCall assert(Dest.getAddr() != src.getAggregateAddr()); 2924e8ca4faSJohn McCall std::pair<CharUnits, CharUnits> typeInfo = 2931e303eefSChad Rosier CGF.getContext().getTypeInfoInChars(E->getType()); 2944e8ca4faSJohn McCall EmitFinalDestCopy(E->getType(), src, typeInfo.second); 295cc04e9f6SJohn McCall } 296cc04e9f6SJohn McCall 297ca9fc09cSMike Stump /// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired. 2984e8ca4faSJohn McCall void AggExprEmitter::EmitFinalDestCopy(QualType type, RValue src, 2994e8ca4faSJohn McCall CharUnits srcAlign) { 3004e8ca4faSJohn McCall assert(src.isAggregate() && "value must be aggregate value!"); 3014e8ca4faSJohn McCall LValue srcLV = CGF.MakeAddrLValue(src.getAggregateAddr(), type, srcAlign); 3024e8ca4faSJohn McCall EmitFinalDestCopy(type, srcLV); 3034e8ca4faSJohn McCall } 3047a51313dSChris Lattner 3054e8ca4faSJohn McCall /// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired. 3064e8ca4faSJohn McCall void AggExprEmitter::EmitFinalDestCopy(QualType type, const LValue &src) { 3077a626f63SJohn McCall // If Dest is ignored, then we're evaluating an aggregate expression 3084e8ca4faSJohn McCall // in a context that doesn't care about the result. Note that loads 3094e8ca4faSJohn McCall // from volatile l-values force the existence of a non-ignored 3104e8ca4faSJohn McCall // destination. 3114e8ca4faSJohn McCall if (Dest.isIgnored()) 312ec3cbfe8SMike Stump return; 313c123623dSFariborz Jahanian 3144e8ca4faSJohn McCall AggValueSlot srcAgg = 3154e8ca4faSJohn McCall AggValueSlot::forLValue(src, AggValueSlot::IsDestructed, 3164e8ca4faSJohn McCall needsGC(type), AggValueSlot::IsAliased); 3174e8ca4faSJohn McCall EmitCopy(type, Dest, srcAgg); 318332ec2ceSMike Stump } 3197a51313dSChris Lattner 3204e8ca4faSJohn McCall /// Perform a copy from the source into the destination. 3214e8ca4faSJohn McCall /// 3224e8ca4faSJohn McCall /// \param type - the type of the aggregate being copied; qualifiers are 3234e8ca4faSJohn McCall /// ignored 3244e8ca4faSJohn McCall void AggExprEmitter::EmitCopy(QualType type, const AggValueSlot &dest, 3254e8ca4faSJohn McCall const AggValueSlot &src) { 3264e8ca4faSJohn McCall if (dest.requiresGCollection()) { 3274e8ca4faSJohn McCall CharUnits sz = CGF.getContext().getTypeSizeInChars(type); 3284e8ca4faSJohn McCall llvm::Value *size = llvm::ConstantInt::get(CGF.SizeTy, sz.getQuantity()); 329879d7266SFariborz Jahanian CGF.CGM.getObjCRuntime().EmitGCMemmoveCollectable(CGF, 3304e8ca4faSJohn McCall dest.getAddr(), 3314e8ca4faSJohn McCall src.getAddr(), 3324e8ca4faSJohn McCall size); 333879d7266SFariborz Jahanian return; 334879d7266SFariborz Jahanian } 3354e8ca4faSJohn McCall 336ca9fc09cSMike Stump // If the result of the assignment is used, copy the LHS there also. 3374e8ca4faSJohn McCall // It's volatile if either side is. Use the minimum alignment of 3384e8ca4faSJohn McCall // the two sides. 3394e8ca4faSJohn McCall CGF.EmitAggregateCopy(dest.getAddr(), src.getAddr(), type, 3404e8ca4faSJohn McCall dest.isVolatile() || src.isVolatile(), 3414e8ca4faSJohn McCall std::min(dest.getAlignment(), src.getAlignment())); 3427a51313dSChris Lattner } 3437a51313dSChris Lattner 344c83ed824SSebastian Redl static QualType GetStdInitializerListElementType(QualType T) { 345c83ed824SSebastian Redl // Just assume that this is really std::initializer_list. 346c83ed824SSebastian Redl ClassTemplateSpecializationDecl *specialization = 347c83ed824SSebastian Redl cast<ClassTemplateSpecializationDecl>(T->castAs<RecordType>()->getDecl()); 348c83ed824SSebastian Redl return specialization->getTemplateArgs()[0].getAsType(); 349c83ed824SSebastian Redl } 350c83ed824SSebastian Redl 351c83ed824SSebastian Redl /// \brief Prepare cleanup for the temporary array. 352c83ed824SSebastian Redl static void EmitStdInitializerListCleanup(CodeGenFunction &CGF, 353c83ed824SSebastian Redl QualType arrayType, 354c83ed824SSebastian Redl llvm::Value *addr, 355c83ed824SSebastian Redl const InitListExpr *initList) { 356c83ed824SSebastian Redl QualType::DestructionKind dtorKind = arrayType.isDestructedType(); 357c83ed824SSebastian Redl if (!dtorKind) 358c83ed824SSebastian Redl return; // Type doesn't need destroying. 359c83ed824SSebastian Redl if (dtorKind != QualType::DK_cxx_destructor) { 360c83ed824SSebastian Redl CGF.ErrorUnsupported(initList, "ObjC ARC type in initializer_list"); 361c83ed824SSebastian Redl return; 362c83ed824SSebastian Redl } 363c83ed824SSebastian Redl 364c83ed824SSebastian Redl CodeGenFunction::Destroyer *destroyer = CGF.getDestroyer(dtorKind); 365c83ed824SSebastian Redl CGF.pushDestroy(NormalAndEHCleanup, addr, arrayType, destroyer, 366c83ed824SSebastian Redl /*EHCleanup=*/true); 367c83ed824SSebastian Redl } 368c83ed824SSebastian Redl 369c83ed824SSebastian Redl /// \brief Emit the initializer for a std::initializer_list initialized with a 370c83ed824SSebastian Redl /// real initializer list. 3718eb351d7SSebastian Redl void AggExprEmitter::EmitStdInitializerList(llvm::Value *destPtr, 3728eb351d7SSebastian Redl InitListExpr *initList) { 373c83ed824SSebastian Redl // We emit an array containing the elements, then have the init list point 374c83ed824SSebastian Redl // at the array. 375c83ed824SSebastian Redl ASTContext &ctx = CGF.getContext(); 376c83ed824SSebastian Redl unsigned numInits = initList->getNumInits(); 377c83ed824SSebastian Redl QualType element = GetStdInitializerListElementType(initList->getType()); 378c83ed824SSebastian Redl llvm::APInt size(ctx.getTypeSize(ctx.getSizeType()), numInits); 379c83ed824SSebastian Redl QualType array = ctx.getConstantArrayType(element, size, ArrayType::Normal,0); 380c83ed824SSebastian Redl llvm::Type *LTy = CGF.ConvertTypeForMem(array); 381c83ed824SSebastian Redl llvm::AllocaInst *alloc = CGF.CreateTempAlloca(LTy); 382c83ed824SSebastian Redl alloc->setAlignment(ctx.getTypeAlignInChars(array).getQuantity()); 383c83ed824SSebastian Redl alloc->setName(".initlist."); 384c83ed824SSebastian Redl 385c83ed824SSebastian Redl EmitArrayInit(alloc, cast<llvm::ArrayType>(LTy), element, initList); 386c83ed824SSebastian Redl 387c83ed824SSebastian Redl // FIXME: The diagnostics are somewhat out of place here. 388c83ed824SSebastian Redl RecordDecl *record = initList->getType()->castAs<RecordType>()->getDecl(); 389c83ed824SSebastian Redl RecordDecl::field_iterator field = record->field_begin(); 390c83ed824SSebastian Redl if (field == record->field_end()) { 391c83ed824SSebastian Redl CGF.ErrorUnsupported(initList, "weird std::initializer_list"); 392f2e0a307SSebastian Redl return; 393c83ed824SSebastian Redl } 394c83ed824SSebastian Redl 395c83ed824SSebastian Redl QualType elementPtr = ctx.getPointerType(element.withConst()); 396c83ed824SSebastian Redl 397c83ed824SSebastian Redl // Start pointer. 398c83ed824SSebastian Redl if (!ctx.hasSameType(field->getType(), elementPtr)) { 399c83ed824SSebastian Redl CGF.ErrorUnsupported(initList, "weird std::initializer_list"); 400f2e0a307SSebastian Redl return; 401c83ed824SSebastian Redl } 4027f1ff600SEli Friedman LValue DestLV = CGF.MakeNaturalAlignAddrLValue(destPtr, initList->getType()); 40340ed2973SDavid Blaikie LValue start = CGF.EmitLValueForFieldInitialization(DestLV, *field); 404c83ed824SSebastian Redl llvm::Value *arrayStart = Builder.CreateStructGEP(alloc, 0, "arraystart"); 405c83ed824SSebastian Redl CGF.EmitStoreThroughLValue(RValue::get(arrayStart), start); 406c83ed824SSebastian Redl ++field; 407c83ed824SSebastian Redl 408c83ed824SSebastian Redl if (field == record->field_end()) { 409c83ed824SSebastian Redl CGF.ErrorUnsupported(initList, "weird std::initializer_list"); 410f2e0a307SSebastian Redl return; 411c83ed824SSebastian Redl } 41240ed2973SDavid Blaikie LValue endOrLength = CGF.EmitLValueForFieldInitialization(DestLV, *field); 413c83ed824SSebastian Redl if (ctx.hasSameType(field->getType(), elementPtr)) { 414c83ed824SSebastian Redl // End pointer. 415c83ed824SSebastian Redl llvm::Value *arrayEnd = Builder.CreateStructGEP(alloc,numInits, "arrayend"); 416c83ed824SSebastian Redl CGF.EmitStoreThroughLValue(RValue::get(arrayEnd), endOrLength); 417c83ed824SSebastian Redl } else if(ctx.hasSameType(field->getType(), ctx.getSizeType())) { 418c83ed824SSebastian Redl // Length. 419c83ed824SSebastian Redl CGF.EmitStoreThroughLValue(RValue::get(Builder.getInt(size)), endOrLength); 420c83ed824SSebastian Redl } else { 421c83ed824SSebastian Redl CGF.ErrorUnsupported(initList, "weird std::initializer_list"); 422f2e0a307SSebastian Redl return; 423c83ed824SSebastian Redl } 424c83ed824SSebastian Redl 425c83ed824SSebastian Redl if (!Dest.isExternallyDestructed()) 426c83ed824SSebastian Redl EmitStdInitializerListCleanup(CGF, array, alloc, initList); 427c83ed824SSebastian Redl } 428c83ed824SSebastian Redl 429c83ed824SSebastian Redl /// \brief Emit initialization of an array from an initializer list. 430c83ed824SSebastian Redl void AggExprEmitter::EmitArrayInit(llvm::Value *DestPtr, llvm::ArrayType *AType, 431c83ed824SSebastian Redl QualType elementType, InitListExpr *E) { 432c83ed824SSebastian Redl uint64_t NumInitElements = E->getNumInits(); 433c83ed824SSebastian Redl 434c83ed824SSebastian Redl uint64_t NumArrayElements = AType->getNumElements(); 435c83ed824SSebastian Redl assert(NumInitElements <= NumArrayElements); 436c83ed824SSebastian Redl 437c83ed824SSebastian Redl // DestPtr is an array*. Construct an elementType* by drilling 438c83ed824SSebastian Redl // down a level. 439c83ed824SSebastian Redl llvm::Value *zero = llvm::ConstantInt::get(CGF.SizeTy, 0); 440c83ed824SSebastian Redl llvm::Value *indices[] = { zero, zero }; 441c83ed824SSebastian Redl llvm::Value *begin = 442c83ed824SSebastian Redl Builder.CreateInBoundsGEP(DestPtr, indices, "arrayinit.begin"); 443c83ed824SSebastian Redl 444c83ed824SSebastian Redl // Exception safety requires us to destroy all the 445c83ed824SSebastian Redl // already-constructed members if an initializer throws. 446c83ed824SSebastian Redl // For that, we'll need an EH cleanup. 447c83ed824SSebastian Redl QualType::DestructionKind dtorKind = elementType.isDestructedType(); 448c83ed824SSebastian Redl llvm::AllocaInst *endOfInit = 0; 449c83ed824SSebastian Redl EHScopeStack::stable_iterator cleanup; 450c83ed824SSebastian Redl llvm::Instruction *cleanupDominator = 0; 451c83ed824SSebastian Redl if (CGF.needsEHCleanup(dtorKind)) { 452c83ed824SSebastian Redl // In principle we could tell the cleanup where we are more 453c83ed824SSebastian Redl // directly, but the control flow can get so varied here that it 454c83ed824SSebastian Redl // would actually be quite complex. Therefore we go through an 455c83ed824SSebastian Redl // alloca. 456c83ed824SSebastian Redl endOfInit = CGF.CreateTempAlloca(begin->getType(), 457c83ed824SSebastian Redl "arrayinit.endOfInit"); 458c83ed824SSebastian Redl cleanupDominator = Builder.CreateStore(begin, endOfInit); 459c83ed824SSebastian Redl CGF.pushIrregularPartialArrayCleanup(begin, endOfInit, elementType, 460c83ed824SSebastian Redl CGF.getDestroyer(dtorKind)); 461c83ed824SSebastian Redl cleanup = CGF.EHStack.stable_begin(); 462c83ed824SSebastian Redl 463c83ed824SSebastian Redl // Otherwise, remember that we didn't need a cleanup. 464c83ed824SSebastian Redl } else { 465c83ed824SSebastian Redl dtorKind = QualType::DK_none; 466c83ed824SSebastian Redl } 467c83ed824SSebastian Redl 468c83ed824SSebastian Redl llvm::Value *one = llvm::ConstantInt::get(CGF.SizeTy, 1); 469c83ed824SSebastian Redl 470c83ed824SSebastian Redl // The 'current element to initialize'. The invariants on this 471c83ed824SSebastian Redl // variable are complicated. Essentially, after each iteration of 472c83ed824SSebastian Redl // the loop, it points to the last initialized element, except 473c83ed824SSebastian Redl // that it points to the beginning of the array before any 474c83ed824SSebastian Redl // elements have been initialized. 475c83ed824SSebastian Redl llvm::Value *element = begin; 476c83ed824SSebastian Redl 477c83ed824SSebastian Redl // Emit the explicit initializers. 478c83ed824SSebastian Redl for (uint64_t i = 0; i != NumInitElements; ++i) { 479c83ed824SSebastian Redl // Advance to the next element. 480c83ed824SSebastian Redl if (i > 0) { 481c83ed824SSebastian Redl element = Builder.CreateInBoundsGEP(element, one, "arrayinit.element"); 482c83ed824SSebastian Redl 483c83ed824SSebastian Redl // Tell the cleanup that it needs to destroy up to this 484c83ed824SSebastian Redl // element. TODO: some of these stores can be trivially 485c83ed824SSebastian Redl // observed to be unnecessary. 486c83ed824SSebastian Redl if (endOfInit) Builder.CreateStore(element, endOfInit); 487c83ed824SSebastian Redl } 488c83ed824SSebastian Redl 4898eb351d7SSebastian Redl // If these are nested std::initializer_list inits, do them directly, 4908eb351d7SSebastian Redl // because they are conceptually the same "location". 4918eb351d7SSebastian Redl InitListExpr *initList = dyn_cast<InitListExpr>(E->getInit(i)); 4928eb351d7SSebastian Redl if (initList && initList->initializesStdInitializerList()) { 4938eb351d7SSebastian Redl EmitStdInitializerList(element, initList); 4948eb351d7SSebastian Redl } else { 495c83ed824SSebastian Redl LValue elementLV = CGF.MakeAddrLValue(element, elementType); 496615ed1a3SChad Rosier EmitInitializationToLValue(E->getInit(i), elementLV); 497c83ed824SSebastian Redl } 4988eb351d7SSebastian Redl } 499c83ed824SSebastian Redl 500c83ed824SSebastian Redl // Check whether there's a non-trivial array-fill expression. 501c83ed824SSebastian Redl // Note that this will be a CXXConstructExpr even if the element 502c83ed824SSebastian Redl // type is an array (or array of array, etc.) of class type. 503c83ed824SSebastian Redl Expr *filler = E->getArrayFiller(); 504c83ed824SSebastian Redl bool hasTrivialFiller = true; 505c83ed824SSebastian Redl if (CXXConstructExpr *cons = dyn_cast_or_null<CXXConstructExpr>(filler)) { 506c83ed824SSebastian Redl assert(cons->getConstructor()->isDefaultConstructor()); 507c83ed824SSebastian Redl hasTrivialFiller = cons->getConstructor()->isTrivial(); 508c83ed824SSebastian Redl } 509c83ed824SSebastian Redl 510c83ed824SSebastian Redl // Any remaining elements need to be zero-initialized, possibly 511c83ed824SSebastian Redl // using the filler expression. We can skip this if the we're 512c83ed824SSebastian Redl // emitting to zeroed memory. 513c83ed824SSebastian Redl if (NumInitElements != NumArrayElements && 514c83ed824SSebastian Redl !(Dest.isZeroed() && hasTrivialFiller && 515c83ed824SSebastian Redl CGF.getTypes().isZeroInitializable(elementType))) { 516c83ed824SSebastian Redl 517c83ed824SSebastian Redl // Use an actual loop. This is basically 518c83ed824SSebastian Redl // do { *array++ = filler; } while (array != end); 519c83ed824SSebastian Redl 520c83ed824SSebastian Redl // Advance to the start of the rest of the array. 521c83ed824SSebastian Redl if (NumInitElements) { 522c83ed824SSebastian Redl element = Builder.CreateInBoundsGEP(element, one, "arrayinit.start"); 523c83ed824SSebastian Redl if (endOfInit) Builder.CreateStore(element, endOfInit); 524c83ed824SSebastian Redl } 525c83ed824SSebastian Redl 526c83ed824SSebastian Redl // Compute the end of the array. 527c83ed824SSebastian Redl llvm::Value *end = Builder.CreateInBoundsGEP(begin, 528c83ed824SSebastian Redl llvm::ConstantInt::get(CGF.SizeTy, NumArrayElements), 529c83ed824SSebastian Redl "arrayinit.end"); 530c83ed824SSebastian Redl 531c83ed824SSebastian Redl llvm::BasicBlock *entryBB = Builder.GetInsertBlock(); 532c83ed824SSebastian Redl llvm::BasicBlock *bodyBB = CGF.createBasicBlock("arrayinit.body"); 533c83ed824SSebastian Redl 534c83ed824SSebastian Redl // Jump into the body. 535c83ed824SSebastian Redl CGF.EmitBlock(bodyBB); 536c83ed824SSebastian Redl llvm::PHINode *currentElement = 537c83ed824SSebastian Redl Builder.CreatePHI(element->getType(), 2, "arrayinit.cur"); 538c83ed824SSebastian Redl currentElement->addIncoming(element, entryBB); 539c83ed824SSebastian Redl 540c83ed824SSebastian Redl // Emit the actual filler expression. 541c83ed824SSebastian Redl LValue elementLV = CGF.MakeAddrLValue(currentElement, elementType); 542c83ed824SSebastian Redl if (filler) 543615ed1a3SChad Rosier EmitInitializationToLValue(filler, elementLV); 544c83ed824SSebastian Redl else 545c83ed824SSebastian Redl EmitNullInitializationToLValue(elementLV); 546c83ed824SSebastian Redl 547c83ed824SSebastian Redl // Move on to the next element. 548c83ed824SSebastian Redl llvm::Value *nextElement = 549c83ed824SSebastian Redl Builder.CreateInBoundsGEP(currentElement, one, "arrayinit.next"); 550c83ed824SSebastian Redl 551c83ed824SSebastian Redl // Tell the EH cleanup that we finished with the last element. 552c83ed824SSebastian Redl if (endOfInit) Builder.CreateStore(nextElement, endOfInit); 553c83ed824SSebastian Redl 554c83ed824SSebastian Redl // Leave the loop if we're done. 555c83ed824SSebastian Redl llvm::Value *done = Builder.CreateICmpEQ(nextElement, end, 556c83ed824SSebastian Redl "arrayinit.done"); 557c83ed824SSebastian Redl llvm::BasicBlock *endBB = CGF.createBasicBlock("arrayinit.end"); 558c83ed824SSebastian Redl Builder.CreateCondBr(done, endBB, bodyBB); 559c83ed824SSebastian Redl currentElement->addIncoming(nextElement, Builder.GetInsertBlock()); 560c83ed824SSebastian Redl 561c83ed824SSebastian Redl CGF.EmitBlock(endBB); 562c83ed824SSebastian Redl } 563c83ed824SSebastian Redl 564c83ed824SSebastian Redl // Leave the partial-array cleanup if we entered one. 565c83ed824SSebastian Redl if (dtorKind) CGF.DeactivateCleanupBlock(cleanup, cleanupDominator); 566c83ed824SSebastian Redl } 567c83ed824SSebastian Redl 5687a51313dSChris Lattner //===----------------------------------------------------------------------===// 5697a51313dSChris Lattner // Visitor Methods 5707a51313dSChris Lattner //===----------------------------------------------------------------------===// 5717a51313dSChris Lattner 572fe31481fSDouglas Gregor void AggExprEmitter::VisitMaterializeTemporaryExpr(MaterializeTemporaryExpr *E){ 573fe31481fSDouglas Gregor Visit(E->GetTemporaryExpr()); 574fe31481fSDouglas Gregor } 575fe31481fSDouglas Gregor 5761bf5846aSJohn McCall void AggExprEmitter::VisitOpaqueValueExpr(OpaqueValueExpr *e) { 5774e8ca4faSJohn McCall EmitFinalDestCopy(e->getType(), CGF.getOpaqueLValueMapping(e)); 5781bf5846aSJohn McCall } 5791bf5846aSJohn McCall 5809b71f0cfSDouglas Gregor void 5819b71f0cfSDouglas Gregor AggExprEmitter::VisitCompoundLiteralExpr(CompoundLiteralExpr *E) { 582bea4c3d8SJohn McCall if (Dest.isPotentiallyAliased() && 583bea4c3d8SJohn McCall E->getType().isPODType(CGF.getContext())) { 5846c9d31ebSDouglas Gregor // For a POD type, just emit a load of the lvalue + a copy, because our 5856c9d31ebSDouglas Gregor // compound literal might alias the destination. 5866c9d31ebSDouglas Gregor EmitAggLoadOfLValue(E); 5876c9d31ebSDouglas Gregor return; 5886c9d31ebSDouglas Gregor } 5896c9d31ebSDouglas Gregor 5909b71f0cfSDouglas Gregor AggValueSlot Slot = EnsureSlot(E->getType()); 5919b71f0cfSDouglas Gregor CGF.EmitAggExpr(E->getInitializer(), Slot); 5929b71f0cfSDouglas Gregor } 5939b71f0cfSDouglas Gregor 594*a8ec7eb9SJohn McCall /// Attempt to look through various unimportant expressions to find a 595*a8ec7eb9SJohn McCall /// cast of the given kind. 596*a8ec7eb9SJohn McCall static Expr *findPeephole(Expr *op, CastKind kind) { 597*a8ec7eb9SJohn McCall while (true) { 598*a8ec7eb9SJohn McCall op = op->IgnoreParens(); 599*a8ec7eb9SJohn McCall if (CastExpr *castE = dyn_cast<CastExpr>(op)) { 600*a8ec7eb9SJohn McCall if (castE->getCastKind() == kind) 601*a8ec7eb9SJohn McCall return castE->getSubExpr(); 602*a8ec7eb9SJohn McCall if (castE->getCastKind() == CK_NoOp) 603*a8ec7eb9SJohn McCall continue; 604*a8ec7eb9SJohn McCall } 605*a8ec7eb9SJohn McCall return 0; 606*a8ec7eb9SJohn McCall } 607*a8ec7eb9SJohn McCall } 6089b71f0cfSDouglas Gregor 609ec143777SAnders Carlsson void AggExprEmitter::VisitCastExpr(CastExpr *E) { 6101fb7ae9eSAnders Carlsson switch (E->getCastKind()) { 6118a01a751SAnders Carlsson case CK_Dynamic: { 61269d0d262SRichard Smith // FIXME: Can this actually happen? We have no test coverage for it. 6131c073f47SDouglas Gregor assert(isa<CXXDynamicCastExpr>(E) && "CK_Dynamic without a dynamic_cast?"); 61469d0d262SRichard Smith LValue LV = CGF.EmitCheckedLValue(E->getSubExpr(), 6154d1458edSRichard Smith CodeGenFunction::TCK_Load); 6161c073f47SDouglas Gregor // FIXME: Do we also need to handle property references here? 6171c073f47SDouglas Gregor if (LV.isSimple()) 6181c073f47SDouglas Gregor CGF.EmitDynamicCast(LV.getAddress(), cast<CXXDynamicCastExpr>(E)); 6191c073f47SDouglas Gregor else 6201c073f47SDouglas Gregor CGF.CGM.ErrorUnsupported(E, "non-simple lvalue dynamic_cast"); 6211c073f47SDouglas Gregor 6227a626f63SJohn McCall if (!Dest.isIgnored()) 6231c073f47SDouglas Gregor CGF.CGM.ErrorUnsupported(E, "lvalue dynamic_cast with a destination"); 6241c073f47SDouglas Gregor break; 6251c073f47SDouglas Gregor } 6261c073f47SDouglas Gregor 627e302792bSJohn McCall case CK_ToUnion: { 62858989b71SJohn McCall if (Dest.isIgnored()) break; 62958989b71SJohn McCall 6307ffcf93bSNuno Lopes // GCC union extension 6312e442a00SDaniel Dunbar QualType Ty = E->getSubExpr()->getType(); 6322e442a00SDaniel Dunbar QualType PtrTy = CGF.getContext().getPointerType(Ty); 6337a626f63SJohn McCall llvm::Value *CastPtr = Builder.CreateBitCast(Dest.getAddr(), 634dd274848SEli Friedman CGF.ConvertType(PtrTy)); 6351553b190SJohn McCall EmitInitializationToLValue(E->getSubExpr(), 636615ed1a3SChad Rosier CGF.MakeAddrLValue(CastPtr, Ty)); 6371fb7ae9eSAnders Carlsson break; 6387ffcf93bSNuno Lopes } 6397ffcf93bSNuno Lopes 640e302792bSJohn McCall case CK_DerivedToBase: 641e302792bSJohn McCall case CK_BaseToDerived: 642e302792bSJohn McCall case CK_UncheckedDerivedToBase: { 64383d382b1SDavid Blaikie llvm_unreachable("cannot perform hierarchy conversion in EmitAggExpr: " 644aae38d66SDouglas Gregor "should have been unpacked before we got here"); 645aae38d66SDouglas Gregor } 646aae38d66SDouglas Gregor 647*a8ec7eb9SJohn McCall case CK_NonAtomicToAtomic: 648*a8ec7eb9SJohn McCall case CK_AtomicToNonAtomic: { 649*a8ec7eb9SJohn McCall bool isToAtomic = (E->getCastKind() == CK_NonAtomicToAtomic); 650*a8ec7eb9SJohn McCall 651*a8ec7eb9SJohn McCall // Determine the atomic and value types. 652*a8ec7eb9SJohn McCall QualType atomicType = E->getSubExpr()->getType(); 653*a8ec7eb9SJohn McCall QualType valueType = E->getType(); 654*a8ec7eb9SJohn McCall if (isToAtomic) std::swap(atomicType, valueType); 655*a8ec7eb9SJohn McCall 656*a8ec7eb9SJohn McCall assert(atomicType->isAtomicType()); 657*a8ec7eb9SJohn McCall assert(CGF.getContext().hasSameUnqualifiedType(valueType, 658*a8ec7eb9SJohn McCall atomicType->castAs<AtomicType>()->getValueType())); 659*a8ec7eb9SJohn McCall 660*a8ec7eb9SJohn McCall // Just recurse normally if we're ignoring the result or the 661*a8ec7eb9SJohn McCall // atomic type doesn't change representation. 662*a8ec7eb9SJohn McCall if (Dest.isIgnored() || !CGF.CGM.isPaddedAtomicType(atomicType)) { 663*a8ec7eb9SJohn McCall return Visit(E->getSubExpr()); 664*a8ec7eb9SJohn McCall } 665*a8ec7eb9SJohn McCall 666*a8ec7eb9SJohn McCall CastKind peepholeTarget = 667*a8ec7eb9SJohn McCall (isToAtomic ? CK_AtomicToNonAtomic : CK_NonAtomicToAtomic); 668*a8ec7eb9SJohn McCall 669*a8ec7eb9SJohn McCall // These two cases are reverses of each other; try to peephole them. 670*a8ec7eb9SJohn McCall if (Expr *op = findPeephole(E->getSubExpr(), peepholeTarget)) { 671*a8ec7eb9SJohn McCall assert(CGF.getContext().hasSameUnqualifiedType(op->getType(), 672*a8ec7eb9SJohn McCall E->getType()) && 673*a8ec7eb9SJohn McCall "peephole significantly changed types?"); 674*a8ec7eb9SJohn McCall return Visit(op); 675*a8ec7eb9SJohn McCall } 676*a8ec7eb9SJohn McCall 677*a8ec7eb9SJohn McCall // If we're converting an r-value of non-atomic type to an r-value 678*a8ec7eb9SJohn McCall // of atomic type, just make an atomic temporary, emit into that, 679*a8ec7eb9SJohn McCall // and then copy the value out. (FIXME: do we need to 680*a8ec7eb9SJohn McCall // zero-initialize it first?) 681*a8ec7eb9SJohn McCall if (isToAtomic) { 682*a8ec7eb9SJohn McCall ValueDestForAtomic valueDest(CGF, Dest, atomicType); 683*a8ec7eb9SJohn McCall CGF.EmitAggExpr(E->getSubExpr(), valueDest.getDest()); 684*a8ec7eb9SJohn McCall return; 685*a8ec7eb9SJohn McCall } 686*a8ec7eb9SJohn McCall 687*a8ec7eb9SJohn McCall // Otherwise, we're converting an atomic type to a non-atomic type. 688*a8ec7eb9SJohn McCall 689*a8ec7eb9SJohn McCall // If the dest is a value-of-atomic subobject, drill back out. 690*a8ec7eb9SJohn McCall if (Dest.isValueOfAtomic()) { 691*a8ec7eb9SJohn McCall AggValueSlot atomicSlot = 692*a8ec7eb9SJohn McCall AggValueSlot::forAddr(Dest.getPaddedAtomicAddr(), 693*a8ec7eb9SJohn McCall Dest.getAlignment(), 694*a8ec7eb9SJohn McCall Dest.getQualifiers(), 695*a8ec7eb9SJohn McCall Dest.isExternallyDestructed(), 696*a8ec7eb9SJohn McCall Dest.requiresGCollection(), 697*a8ec7eb9SJohn McCall Dest.isPotentiallyAliased(), 698*a8ec7eb9SJohn McCall Dest.isZeroed(), 699*a8ec7eb9SJohn McCall AggValueSlot::IsNotValueOfAtomic); 700*a8ec7eb9SJohn McCall CGF.EmitAggExpr(E->getSubExpr(), atomicSlot); 701*a8ec7eb9SJohn McCall return; 702*a8ec7eb9SJohn McCall } 703*a8ec7eb9SJohn McCall 704*a8ec7eb9SJohn McCall // Otherwise, make an atomic temporary, emit into that, and then 705*a8ec7eb9SJohn McCall // copy the value out. 706*a8ec7eb9SJohn McCall AggValueSlot atomicSlot = 707*a8ec7eb9SJohn McCall CGF.CreateAggTemp(atomicType, "atomic-to-nonatomic.temp"); 708*a8ec7eb9SJohn McCall CGF.EmitAggExpr(E->getSubExpr(), atomicSlot); 709*a8ec7eb9SJohn McCall 710*a8ec7eb9SJohn McCall llvm::Value *valueAddr = 711*a8ec7eb9SJohn McCall Builder.CreateStructGEP(atomicSlot.getAddr(), 0); 712*a8ec7eb9SJohn McCall RValue rvalue = RValue::getAggregate(valueAddr, atomicSlot.isVolatile()); 713*a8ec7eb9SJohn McCall return EmitFinalDestCopy(valueType, rvalue); 714*a8ec7eb9SJohn McCall } 715*a8ec7eb9SJohn McCall 7164e8ca4faSJohn McCall case CK_LValueToRValue: 7174e8ca4faSJohn McCall // If we're loading from a volatile type, force the destination 7184e8ca4faSJohn McCall // into existence. 7194e8ca4faSJohn McCall if (E->getSubExpr()->getType().isVolatileQualified()) { 7204e8ca4faSJohn McCall EnsureDest(E->getType()); 7214e8ca4faSJohn McCall return Visit(E->getSubExpr()); 7224e8ca4faSJohn McCall } 723*a8ec7eb9SJohn McCall 7244e8ca4faSJohn McCall // fallthrough 7254e8ca4faSJohn McCall 726e302792bSJohn McCall case CK_NoOp: 727e302792bSJohn McCall case CK_UserDefinedConversion: 728e302792bSJohn McCall case CK_ConstructorConversion: 7292a69547fSEli Friedman assert(CGF.getContext().hasSameUnqualifiedType(E->getSubExpr()->getType(), 7302a69547fSEli Friedman E->getType()) && 7310f398c44SChris Lattner "Implicit cast types must be compatible"); 7327a51313dSChris Lattner Visit(E->getSubExpr()); 7331fb7ae9eSAnders Carlsson break; 734b05a3e55SAnders Carlsson 735e302792bSJohn McCall case CK_LValueBitCast: 736f3735e01SJohn McCall llvm_unreachable("should not be emitting lvalue bitcast as rvalue"); 73731996343SJohn McCall 738f3735e01SJohn McCall case CK_Dependent: 739f3735e01SJohn McCall case CK_BitCast: 740f3735e01SJohn McCall case CK_ArrayToPointerDecay: 741f3735e01SJohn McCall case CK_FunctionToPointerDecay: 742f3735e01SJohn McCall case CK_NullToPointer: 743f3735e01SJohn McCall case CK_NullToMemberPointer: 744f3735e01SJohn McCall case CK_BaseToDerivedMemberPointer: 745f3735e01SJohn McCall case CK_DerivedToBaseMemberPointer: 746f3735e01SJohn McCall case CK_MemberPointerToBoolean: 747c62bb391SJohn McCall case CK_ReinterpretMemberPointer: 748f3735e01SJohn McCall case CK_IntegralToPointer: 749f3735e01SJohn McCall case CK_PointerToIntegral: 750f3735e01SJohn McCall case CK_PointerToBoolean: 751f3735e01SJohn McCall case CK_ToVoid: 752f3735e01SJohn McCall case CK_VectorSplat: 753f3735e01SJohn McCall case CK_IntegralCast: 754f3735e01SJohn McCall case CK_IntegralToBoolean: 755f3735e01SJohn McCall case CK_IntegralToFloating: 756f3735e01SJohn McCall case CK_FloatingToIntegral: 757f3735e01SJohn McCall case CK_FloatingToBoolean: 758f3735e01SJohn McCall case CK_FloatingCast: 7599320b87cSJohn McCall case CK_CPointerToObjCPointerCast: 7609320b87cSJohn McCall case CK_BlockPointerToObjCPointerCast: 761f3735e01SJohn McCall case CK_AnyPointerToBlockPointerCast: 762f3735e01SJohn McCall case CK_ObjCObjectLValueCast: 763f3735e01SJohn McCall case CK_FloatingRealToComplex: 764f3735e01SJohn McCall case CK_FloatingComplexToReal: 765f3735e01SJohn McCall case CK_FloatingComplexToBoolean: 766f3735e01SJohn McCall case CK_FloatingComplexCast: 767f3735e01SJohn McCall case CK_FloatingComplexToIntegralComplex: 768f3735e01SJohn McCall case CK_IntegralRealToComplex: 769f3735e01SJohn McCall case CK_IntegralComplexToReal: 770f3735e01SJohn McCall case CK_IntegralComplexToBoolean: 771f3735e01SJohn McCall case CK_IntegralComplexCast: 772f3735e01SJohn McCall case CK_IntegralComplexToFloatingComplex: 7732d637d2eSJohn McCall case CK_ARCProduceObject: 7742d637d2eSJohn McCall case CK_ARCConsumeObject: 7752d637d2eSJohn McCall case CK_ARCReclaimReturnedObject: 7762d637d2eSJohn McCall case CK_ARCExtendBlockObject: 777ed90df38SDouglas Gregor case CK_CopyAndAutoreleaseBlockObject: 77834866c77SEli Friedman case CK_BuiltinFnToFnPtr: 7791b4fb3e0SGuy Benyei case CK_ZeroToOCLEvent: 780f3735e01SJohn McCall llvm_unreachable("cast kind invalid for aggregate types"); 7811fb7ae9eSAnders Carlsson } 7827a51313dSChris Lattner } 7837a51313dSChris Lattner 7840f398c44SChris Lattner void AggExprEmitter::VisitCallExpr(const CallExpr *E) { 785ddcbfe7bSAnders Carlsson if (E->getCallReturnType()->isReferenceType()) { 786ddcbfe7bSAnders Carlsson EmitAggLoadOfLValue(E); 787ddcbfe7bSAnders Carlsson return; 788ddcbfe7bSAnders Carlsson } 789ddcbfe7bSAnders Carlsson 790cc04e9f6SJohn McCall RValue RV = CGF.EmitCallExpr(E, getReturnValueSlot()); 791a5efa738SJohn McCall EmitMoveFromReturnSlot(E, RV); 7927a51313dSChris Lattner } 7930f398c44SChris Lattner 7940f398c44SChris Lattner void AggExprEmitter::VisitObjCMessageExpr(ObjCMessageExpr *E) { 795cc04e9f6SJohn McCall RValue RV = CGF.EmitObjCMessageExpr(E, getReturnValueSlot()); 796a5efa738SJohn McCall EmitMoveFromReturnSlot(E, RV); 797b1d329daSChris Lattner } 7987a51313dSChris Lattner 7990f398c44SChris Lattner void AggExprEmitter::VisitBinComma(const BinaryOperator *E) { 800a2342eb8SJohn McCall CGF.EmitIgnoredExpr(E->getLHS()); 8017a626f63SJohn McCall Visit(E->getRHS()); 8024b0e2a30SEli Friedman } 8034b0e2a30SEli Friedman 8047a51313dSChris Lattner void AggExprEmitter::VisitStmtExpr(const StmtExpr *E) { 805ce1de617SJohn McCall CodeGenFunction::StmtExprEvaluation eval(CGF); 8067a626f63SJohn McCall CGF.EmitCompoundStmt(*E->getSubStmt(), true, Dest); 8077a51313dSChris Lattner } 8087a51313dSChris Lattner 8097a51313dSChris Lattner void AggExprEmitter::VisitBinaryOperator(const BinaryOperator *E) { 810e302792bSJohn McCall if (E->getOpcode() == BO_PtrMemD || E->getOpcode() == BO_PtrMemI) 811ffba662dSFariborz Jahanian VisitPointerToDataMemberBinaryOperator(E); 812ffba662dSFariborz Jahanian else 813a7c8cf62SDaniel Dunbar CGF.ErrorUnsupported(E, "aggregate binary expression"); 8147a51313dSChris Lattner } 8157a51313dSChris Lattner 816ffba662dSFariborz Jahanian void AggExprEmitter::VisitPointerToDataMemberBinaryOperator( 817ffba662dSFariborz Jahanian const BinaryOperator *E) { 818ffba662dSFariborz Jahanian LValue LV = CGF.EmitPointerToDataMemberBinaryExpr(E); 8194e8ca4faSJohn McCall EmitFinalDestCopy(E->getType(), LV); 8204e8ca4faSJohn McCall } 8214e8ca4faSJohn McCall 8224e8ca4faSJohn McCall /// Is the value of the given expression possibly a reference to or 8234e8ca4faSJohn McCall /// into a __block variable? 8244e8ca4faSJohn McCall static bool isBlockVarRef(const Expr *E) { 8254e8ca4faSJohn McCall // Make sure we look through parens. 8264e8ca4faSJohn McCall E = E->IgnoreParens(); 8274e8ca4faSJohn McCall 8284e8ca4faSJohn McCall // Check for a direct reference to a __block variable. 8294e8ca4faSJohn McCall if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) { 8304e8ca4faSJohn McCall const VarDecl *var = dyn_cast<VarDecl>(DRE->getDecl()); 8314e8ca4faSJohn McCall return (var && var->hasAttr<BlocksAttr>()); 8324e8ca4faSJohn McCall } 8334e8ca4faSJohn McCall 8344e8ca4faSJohn McCall // More complicated stuff. 8354e8ca4faSJohn McCall 8364e8ca4faSJohn McCall // Binary operators. 8374e8ca4faSJohn McCall if (const BinaryOperator *op = dyn_cast<BinaryOperator>(E)) { 8384e8ca4faSJohn McCall // For an assignment or pointer-to-member operation, just care 8394e8ca4faSJohn McCall // about the LHS. 8404e8ca4faSJohn McCall if (op->isAssignmentOp() || op->isPtrMemOp()) 8414e8ca4faSJohn McCall return isBlockVarRef(op->getLHS()); 8424e8ca4faSJohn McCall 8434e8ca4faSJohn McCall // For a comma, just care about the RHS. 8444e8ca4faSJohn McCall if (op->getOpcode() == BO_Comma) 8454e8ca4faSJohn McCall return isBlockVarRef(op->getRHS()); 8464e8ca4faSJohn McCall 8474e8ca4faSJohn McCall // FIXME: pointer arithmetic? 8484e8ca4faSJohn McCall return false; 8494e8ca4faSJohn McCall 8504e8ca4faSJohn McCall // Check both sides of a conditional operator. 8514e8ca4faSJohn McCall } else if (const AbstractConditionalOperator *op 8524e8ca4faSJohn McCall = dyn_cast<AbstractConditionalOperator>(E)) { 8534e8ca4faSJohn McCall return isBlockVarRef(op->getTrueExpr()) 8544e8ca4faSJohn McCall || isBlockVarRef(op->getFalseExpr()); 8554e8ca4faSJohn McCall 8564e8ca4faSJohn McCall // OVEs are required to support BinaryConditionalOperators. 8574e8ca4faSJohn McCall } else if (const OpaqueValueExpr *op 8584e8ca4faSJohn McCall = dyn_cast<OpaqueValueExpr>(E)) { 8594e8ca4faSJohn McCall if (const Expr *src = op->getSourceExpr()) 8604e8ca4faSJohn McCall return isBlockVarRef(src); 8614e8ca4faSJohn McCall 8624e8ca4faSJohn McCall // Casts are necessary to get things like (*(int*)&var) = foo(). 8634e8ca4faSJohn McCall // We don't really care about the kind of cast here, except 8644e8ca4faSJohn McCall // we don't want to look through l2r casts, because it's okay 8654e8ca4faSJohn McCall // to get the *value* in a __block variable. 8664e8ca4faSJohn McCall } else if (const CastExpr *cast = dyn_cast<CastExpr>(E)) { 8674e8ca4faSJohn McCall if (cast->getCastKind() == CK_LValueToRValue) 8684e8ca4faSJohn McCall return false; 8694e8ca4faSJohn McCall return isBlockVarRef(cast->getSubExpr()); 8704e8ca4faSJohn McCall 8714e8ca4faSJohn McCall // Handle unary operators. Again, just aggressively look through 8724e8ca4faSJohn McCall // it, ignoring the operation. 8734e8ca4faSJohn McCall } else if (const UnaryOperator *uop = dyn_cast<UnaryOperator>(E)) { 8744e8ca4faSJohn McCall return isBlockVarRef(uop->getSubExpr()); 8754e8ca4faSJohn McCall 8764e8ca4faSJohn McCall // Look into the base of a field access. 8774e8ca4faSJohn McCall } else if (const MemberExpr *mem = dyn_cast<MemberExpr>(E)) { 8784e8ca4faSJohn McCall return isBlockVarRef(mem->getBase()); 8794e8ca4faSJohn McCall 8804e8ca4faSJohn McCall // Look into the base of a subscript. 8814e8ca4faSJohn McCall } else if (const ArraySubscriptExpr *sub = dyn_cast<ArraySubscriptExpr>(E)) { 8824e8ca4faSJohn McCall return isBlockVarRef(sub->getBase()); 8834e8ca4faSJohn McCall } 8844e8ca4faSJohn McCall 8854e8ca4faSJohn McCall return false; 886ffba662dSFariborz Jahanian } 887ffba662dSFariborz Jahanian 8887a51313dSChris Lattner void AggExprEmitter::VisitBinAssign(const BinaryOperator *E) { 8897a51313dSChris Lattner // For an assignment to work, the value on the right has 8907a51313dSChris Lattner // to be compatible with the value on the left. 8912a69547fSEli Friedman assert(CGF.getContext().hasSameUnqualifiedType(E->getLHS()->getType(), 8922a69547fSEli Friedman E->getRHS()->getType()) 8937a51313dSChris Lattner && "Invalid assignment"); 894d0a30016SJohn McCall 8954e8ca4faSJohn McCall // If the LHS might be a __block variable, and the RHS can 8964e8ca4faSJohn McCall // potentially cause a block copy, we need to evaluate the RHS first 8974e8ca4faSJohn McCall // so that the assignment goes the right place. 8984e8ca4faSJohn McCall // This is pretty semantically fragile. 8994e8ca4faSJohn McCall if (isBlockVarRef(E->getLHS()) && 90099514b91SFariborz Jahanian E->getRHS()->HasSideEffects(CGF.getContext())) { 9014e8ca4faSJohn McCall // Ensure that we have a destination, and evaluate the RHS into that. 9024e8ca4faSJohn McCall EnsureDest(E->getRHS()->getType()); 9034e8ca4faSJohn McCall Visit(E->getRHS()); 9044e8ca4faSJohn McCall 9054e8ca4faSJohn McCall // Now emit the LHS and copy into it. 906e30752c9SRichard Smith LValue LHS = CGF.EmitCheckedLValue(E->getLHS(), CodeGenFunction::TCK_Store); 9074e8ca4faSJohn McCall 908*a8ec7eb9SJohn McCall // That copy is an atomic copy if the LHS is atomic. 909*a8ec7eb9SJohn McCall if (LHS.getType()->isAtomicType()) { 910*a8ec7eb9SJohn McCall CGF.EmitAtomicStore(Dest.asRValue(), LHS, /*isInit*/ false); 911*a8ec7eb9SJohn McCall return; 912*a8ec7eb9SJohn McCall } 913*a8ec7eb9SJohn McCall 9144e8ca4faSJohn McCall EmitCopy(E->getLHS()->getType(), 9154e8ca4faSJohn McCall AggValueSlot::forLValue(LHS, AggValueSlot::IsDestructed, 91646759f4fSJohn McCall needsGC(E->getLHS()->getType()), 9174e8ca4faSJohn McCall AggValueSlot::IsAliased), 9184e8ca4faSJohn McCall Dest); 91999514b91SFariborz Jahanian return; 92099514b91SFariborz Jahanian } 92199514b91SFariborz Jahanian 9227a51313dSChris Lattner LValue LHS = CGF.EmitLValue(E->getLHS()); 9237a51313dSChris Lattner 924*a8ec7eb9SJohn McCall // If we have an atomic type, evaluate into the destination and then 925*a8ec7eb9SJohn McCall // do an atomic copy. 926*a8ec7eb9SJohn McCall if (LHS.getType()->isAtomicType()) { 927*a8ec7eb9SJohn McCall EnsureDest(E->getRHS()->getType()); 928*a8ec7eb9SJohn McCall Visit(E->getRHS()); 929*a8ec7eb9SJohn McCall CGF.EmitAtomicStore(Dest.asRValue(), LHS, /*isInit*/ false); 930*a8ec7eb9SJohn McCall return; 931*a8ec7eb9SJohn McCall } 932*a8ec7eb9SJohn McCall 9337a51313dSChris Lattner // Codegen the RHS so that it stores directly into the LHS. 9348d6fc958SJohn McCall AggValueSlot LHSSlot = 9358d6fc958SJohn McCall AggValueSlot::forLValue(LHS, AggValueSlot::IsDestructed, 93646759f4fSJohn McCall needsGC(E->getLHS()->getType()), 937615ed1a3SChad Rosier AggValueSlot::IsAliased); 9387865220dSFariborz Jahanian // A non-volatile aggregate destination might have volatile member. 9397865220dSFariborz Jahanian if (!LHSSlot.isVolatile() && 9407865220dSFariborz Jahanian CGF.hasVolatileMember(E->getLHS()->getType())) 9417865220dSFariborz Jahanian LHSSlot.setVolatile(true); 9427865220dSFariborz Jahanian 9434e8ca4faSJohn McCall CGF.EmitAggExpr(E->getRHS(), LHSSlot); 9444e8ca4faSJohn McCall 9454e8ca4faSJohn McCall // Copy into the destination if the assignment isn't ignored. 9464e8ca4faSJohn McCall EmitFinalDestCopy(E->getType(), LHS); 9477a51313dSChris Lattner } 9487a51313dSChris Lattner 949c07a0c7eSJohn McCall void AggExprEmitter:: 950c07a0c7eSJohn McCall VisitAbstractConditionalOperator(const AbstractConditionalOperator *E) { 951a612e79bSDaniel Dunbar llvm::BasicBlock *LHSBlock = CGF.createBasicBlock("cond.true"); 952a612e79bSDaniel Dunbar llvm::BasicBlock *RHSBlock = CGF.createBasicBlock("cond.false"); 953a612e79bSDaniel Dunbar llvm::BasicBlock *ContBlock = CGF.createBasicBlock("cond.end"); 9547a51313dSChris Lattner 955c07a0c7eSJohn McCall // Bind the common expression if necessary. 95648fd89adSEli Friedman CodeGenFunction::OpaqueValueMapping binding(CGF, E); 957c07a0c7eSJohn McCall 958ce1de617SJohn McCall CodeGenFunction::ConditionalEvaluation eval(CGF); 959b8841af8SEli Friedman CGF.EmitBranchOnBoolExpr(E->getCond(), LHSBlock, RHSBlock); 9607a51313dSChris Lattner 9615b26f65bSJohn McCall // Save whether the destination's lifetime is externally managed. 962cac93853SJohn McCall bool isExternallyDestructed = Dest.isExternallyDestructed(); 9637a51313dSChris Lattner 964ce1de617SJohn McCall eval.begin(CGF); 965ce1de617SJohn McCall CGF.EmitBlock(LHSBlock); 966c07a0c7eSJohn McCall Visit(E->getTrueExpr()); 967ce1de617SJohn McCall eval.end(CGF); 9687a51313dSChris Lattner 969ce1de617SJohn McCall assert(CGF.HaveInsertPoint() && "expression evaluation ended with no IP!"); 970ce1de617SJohn McCall CGF.Builder.CreateBr(ContBlock); 9717a51313dSChris Lattner 9725b26f65bSJohn McCall // If the result of an agg expression is unused, then the emission 9735b26f65bSJohn McCall // of the LHS might need to create a destination slot. That's fine 9745b26f65bSJohn McCall // with us, and we can safely emit the RHS into the same slot, but 975cac93853SJohn McCall // we shouldn't claim that it's already being destructed. 976cac93853SJohn McCall Dest.setExternallyDestructed(isExternallyDestructed); 9775b26f65bSJohn McCall 978ce1de617SJohn McCall eval.begin(CGF); 979ce1de617SJohn McCall CGF.EmitBlock(RHSBlock); 980c07a0c7eSJohn McCall Visit(E->getFalseExpr()); 981ce1de617SJohn McCall eval.end(CGF); 9827a51313dSChris Lattner 9837a51313dSChris Lattner CGF.EmitBlock(ContBlock); 9847a51313dSChris Lattner } 9857a51313dSChris Lattner 9865b2095ceSAnders Carlsson void AggExprEmitter::VisitChooseExpr(const ChooseExpr *CE) { 9875b2095ceSAnders Carlsson Visit(CE->getChosenSubExpr(CGF.getContext())); 9885b2095ceSAnders Carlsson } 9895b2095ceSAnders Carlsson 99021911e89SEli Friedman void AggExprEmitter::VisitVAArgExpr(VAArgExpr *VE) { 991e9fcadd2SDaniel Dunbar llvm::Value *ArgValue = CGF.EmitVAListRef(VE->getSubExpr()); 99213abd7e9SAnders Carlsson llvm::Value *ArgPtr = CGF.EmitVAArg(ArgValue, VE->getType()); 99313abd7e9SAnders Carlsson 994020cddcfSSebastian Redl if (!ArgPtr) { 99513abd7e9SAnders Carlsson CGF.ErrorUnsupported(VE, "aggregate va_arg expression"); 996020cddcfSSebastian Redl return; 997020cddcfSSebastian Redl } 99813abd7e9SAnders Carlsson 9994e8ca4faSJohn McCall EmitFinalDestCopy(VE->getType(), CGF.MakeAddrLValue(ArgPtr, VE->getType())); 100021911e89SEli Friedman } 100121911e89SEli Friedman 10023be22e27SAnders Carlsson void AggExprEmitter::VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E) { 10037a626f63SJohn McCall // Ensure that we have a slot, but if we already do, remember 1004cac93853SJohn McCall // whether it was externally destructed. 1005cac93853SJohn McCall bool wasExternallyDestructed = Dest.isExternallyDestructed(); 10064e8ca4faSJohn McCall EnsureDest(E->getType()); 1007cac93853SJohn McCall 1008cac93853SJohn McCall // We're going to push a destructor if there isn't already one. 1009cac93853SJohn McCall Dest.setExternallyDestructed(); 10103be22e27SAnders Carlsson 10113be22e27SAnders Carlsson Visit(E->getSubExpr()); 10123be22e27SAnders Carlsson 1013cac93853SJohn McCall // Push that destructor we promised. 1014cac93853SJohn McCall if (!wasExternallyDestructed) 1015702b2841SPeter Collingbourne CGF.EmitCXXTemporary(E->getTemporary(), E->getType(), Dest.getAddr()); 10163be22e27SAnders Carlsson } 10173be22e27SAnders Carlsson 1018b7f8f594SAnders Carlsson void 10191619a504SAnders Carlsson AggExprEmitter::VisitCXXConstructExpr(const CXXConstructExpr *E) { 10207a626f63SJohn McCall AggValueSlot Slot = EnsureSlot(E->getType()); 10217a626f63SJohn McCall CGF.EmitCXXConstructExpr(E, Slot); 1022c82b86dfSAnders Carlsson } 1023c82b86dfSAnders Carlsson 1024c370a7eeSEli Friedman void 1025c370a7eeSEli Friedman AggExprEmitter::VisitLambdaExpr(LambdaExpr *E) { 1026c370a7eeSEli Friedman AggValueSlot Slot = EnsureSlot(E->getType()); 1027c370a7eeSEli Friedman CGF.EmitLambdaExpr(E, Slot); 1028c370a7eeSEli Friedman } 1029c370a7eeSEli Friedman 10305d413781SJohn McCall void AggExprEmitter::VisitExprWithCleanups(ExprWithCleanups *E) { 103108ef4660SJohn McCall CGF.enterFullExpression(E); 103208ef4660SJohn McCall CodeGenFunction::RunCleanupsScope cleanups(CGF); 103308ef4660SJohn McCall Visit(E->getSubExpr()); 1034b7f8f594SAnders Carlsson } 1035b7f8f594SAnders Carlsson 1036747eb784SDouglas Gregor void AggExprEmitter::VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *E) { 10377a626f63SJohn McCall QualType T = E->getType(); 10387a626f63SJohn McCall AggValueSlot Slot = EnsureSlot(T); 10391553b190SJohn McCall EmitNullInitializationToLValue(CGF.MakeAddrLValue(Slot.getAddr(), T)); 104018ada985SAnders Carlsson } 104118ada985SAnders Carlsson 104218ada985SAnders Carlsson void AggExprEmitter::VisitImplicitValueInitExpr(ImplicitValueInitExpr *E) { 10437a626f63SJohn McCall QualType T = E->getType(); 10447a626f63SJohn McCall AggValueSlot Slot = EnsureSlot(T); 10451553b190SJohn McCall EmitNullInitializationToLValue(CGF.MakeAddrLValue(Slot.getAddr(), T)); 1046ff3507b9SNuno Lopes } 1047ff3507b9SNuno Lopes 104827a3631bSChris Lattner /// isSimpleZero - If emitting this value will obviously just cause a store of 104927a3631bSChris Lattner /// zero to memory, return true. This can return false if uncertain, so it just 105027a3631bSChris Lattner /// handles simple cases. 105127a3631bSChris Lattner static bool isSimpleZero(const Expr *E, CodeGenFunction &CGF) { 105291147596SPeter Collingbourne E = E->IgnoreParens(); 105391147596SPeter Collingbourne 105427a3631bSChris Lattner // 0 105527a3631bSChris Lattner if (const IntegerLiteral *IL = dyn_cast<IntegerLiteral>(E)) 105627a3631bSChris Lattner return IL->getValue() == 0; 105727a3631bSChris Lattner // +0.0 105827a3631bSChris Lattner if (const FloatingLiteral *FL = dyn_cast<FloatingLiteral>(E)) 105927a3631bSChris Lattner return FL->getValue().isPosZero(); 106027a3631bSChris Lattner // int() 106127a3631bSChris Lattner if ((isa<ImplicitValueInitExpr>(E) || isa<CXXScalarValueInitExpr>(E)) && 106227a3631bSChris Lattner CGF.getTypes().isZeroInitializable(E->getType())) 106327a3631bSChris Lattner return true; 106427a3631bSChris Lattner // (int*)0 - Null pointer expressions. 106527a3631bSChris Lattner if (const CastExpr *ICE = dyn_cast<CastExpr>(E)) 106627a3631bSChris Lattner return ICE->getCastKind() == CK_NullToPointer; 106727a3631bSChris Lattner // '\0' 106827a3631bSChris Lattner if (const CharacterLiteral *CL = dyn_cast<CharacterLiteral>(E)) 106927a3631bSChris Lattner return CL->getValue() == 0; 107027a3631bSChris Lattner 107127a3631bSChris Lattner // Otherwise, hard case: conservatively return false. 107227a3631bSChris Lattner return false; 107327a3631bSChris Lattner } 107427a3631bSChris Lattner 107527a3631bSChris Lattner 1076b247350eSAnders Carlsson void 1077615ed1a3SChad Rosier AggExprEmitter::EmitInitializationToLValue(Expr* E, LValue LV) { 10781553b190SJohn McCall QualType type = LV.getType(); 1079df0fe27bSMike Stump // FIXME: Ignore result? 1080579a05d7SChris Lattner // FIXME: Are initializers affected by volatile? 108127a3631bSChris Lattner if (Dest.isZeroed() && isSimpleZero(E, CGF)) { 108227a3631bSChris Lattner // Storing "i32 0" to a zero'd memory location is a noop. 108347fb9508SJohn McCall return; 1084d82a2ce3SRichard Smith } else if (isa<ImplicitValueInitExpr>(E) || isa<CXXScalarValueInitExpr>(E)) { 108547fb9508SJohn McCall return EmitNullInitializationToLValue(LV); 10861553b190SJohn McCall } else if (type->isReferenceType()) { 108704775f84SAnders Carlsson RValue RV = CGF.EmitReferenceBindingToExpr(E, /*InitializedDecl=*/0); 108847fb9508SJohn McCall return CGF.EmitStoreThroughLValue(RV, LV); 108947fb9508SJohn McCall } 109047fb9508SJohn McCall 109147fb9508SJohn McCall switch (CGF.getEvaluationKind(type)) { 109247fb9508SJohn McCall case TEK_Complex: 109347fb9508SJohn McCall CGF.EmitComplexExprIntoLValue(E, LV, /*isInit*/ true); 109447fb9508SJohn McCall return; 109547fb9508SJohn McCall case TEK_Aggregate: 10968d6fc958SJohn McCall CGF.EmitAggExpr(E, AggValueSlot::forLValue(LV, 10978d6fc958SJohn McCall AggValueSlot::IsDestructed, 10988d6fc958SJohn McCall AggValueSlot::DoesNotNeedGCBarriers, 1099a5efa738SJohn McCall AggValueSlot::IsNotAliased, 11001553b190SJohn McCall Dest.isZeroed())); 110147fb9508SJohn McCall return; 110247fb9508SJohn McCall case TEK_Scalar: 110347fb9508SJohn McCall if (LV.isSimple()) { 11041553b190SJohn McCall CGF.EmitScalarInit(E, /*D=*/0, LV, /*Captured=*/false); 11056e313210SEli Friedman } else { 110655e1fbc8SJohn McCall CGF.EmitStoreThroughLValue(RValue::get(CGF.EmitScalarExpr(E)), LV); 11077a51313dSChris Lattner } 110847fb9508SJohn McCall return; 110947fb9508SJohn McCall } 111047fb9508SJohn McCall llvm_unreachable("bad evaluation kind"); 1111579a05d7SChris Lattner } 1112579a05d7SChris Lattner 11131553b190SJohn McCall void AggExprEmitter::EmitNullInitializationToLValue(LValue lv) { 11141553b190SJohn McCall QualType type = lv.getType(); 11151553b190SJohn McCall 111627a3631bSChris Lattner // If the destination slot is already zeroed out before the aggregate is 111727a3631bSChris Lattner // copied into it, we don't have to emit any zeros here. 11181553b190SJohn McCall if (Dest.isZeroed() && CGF.getTypes().isZeroInitializable(type)) 111927a3631bSChris Lattner return; 112027a3631bSChris Lattner 112147fb9508SJohn McCall if (CGF.hasScalarEvaluationKind(type)) { 1122d82a2ce3SRichard Smith // For non-aggregates, we can store the appropriate null constant. 1123d82a2ce3SRichard Smith llvm::Value *null = CGF.CGM.EmitNullConstant(type); 112491d5bb1eSEli Friedman // Note that the following is not equivalent to 112591d5bb1eSEli Friedman // EmitStoreThroughBitfieldLValue for ARC types. 1126cb3785e4SEli Friedman if (lv.isBitField()) { 112791d5bb1eSEli Friedman CGF.EmitStoreThroughBitfieldLValue(RValue::get(null), lv); 1128cb3785e4SEli Friedman } else { 112991d5bb1eSEli Friedman assert(lv.isSimple()); 113091d5bb1eSEli Friedman CGF.EmitStoreOfScalar(null, lv, /* isInitialization */ true); 1131cb3785e4SEli Friedman } 1132579a05d7SChris Lattner } else { 1133579a05d7SChris Lattner // There's a potential optimization opportunity in combining 1134579a05d7SChris Lattner // memsets; that would be easy for arrays, but relatively 1135579a05d7SChris Lattner // difficult for structures with the current code. 11361553b190SJohn McCall CGF.EmitNullInitialization(lv.getAddress(), lv.getType()); 1137579a05d7SChris Lattner } 1138579a05d7SChris Lattner } 1139579a05d7SChris Lattner 1140579a05d7SChris Lattner void AggExprEmitter::VisitInitListExpr(InitListExpr *E) { 1141f5d08c9eSEli Friedman #if 0 11426d11ec8cSEli Friedman // FIXME: Assess perf here? Figure out what cases are worth optimizing here 11436d11ec8cSEli Friedman // (Length of globals? Chunks of zeroed-out space?). 1144f5d08c9eSEli Friedman // 114518bb9284SMike Stump // If we can, prefer a copy from a global; this is a lot less code for long 114618bb9284SMike Stump // globals, and it's easier for the current optimizers to analyze. 11476d11ec8cSEli Friedman if (llvm::Constant* C = CGF.CGM.EmitConstantExpr(E, E->getType(), &CGF)) { 1148c59bb48eSEli Friedman llvm::GlobalVariable* GV = 11496d11ec8cSEli Friedman new llvm::GlobalVariable(CGF.CGM.getModule(), C->getType(), true, 11506d11ec8cSEli Friedman llvm::GlobalValue::InternalLinkage, C, ""); 11514e8ca4faSJohn McCall EmitFinalDestCopy(E->getType(), CGF.MakeAddrLValue(GV, E->getType())); 1152c59bb48eSEli Friedman return; 1153c59bb48eSEli Friedman } 1154f5d08c9eSEli Friedman #endif 1155f53c0968SChris Lattner if (E->hadArrayRangeDesignator()) 1156bf7207a1SDouglas Gregor CGF.ErrorUnsupported(E, "GNU array range designator extension"); 1157bf7207a1SDouglas Gregor 1158c83ed824SSebastian Redl if (E->initializesStdInitializerList()) { 11598eb351d7SSebastian Redl EmitStdInitializerList(Dest.getAddr(), E); 1160c83ed824SSebastian Redl return; 1161c83ed824SSebastian Redl } 1162c83ed824SSebastian Redl 11637f1ff600SEli Friedman AggValueSlot Dest = EnsureSlot(E->getType()); 11647f1ff600SEli Friedman LValue DestLV = CGF.MakeAddrLValue(Dest.getAddr(), E->getType(), 11657f1ff600SEli Friedman Dest.getAlignment()); 11667a626f63SJohn McCall 1167579a05d7SChris Lattner // Handle initialization of an array. 1168579a05d7SChris Lattner if (E->getType()->isArrayType()) { 11699ec1e48bSRichard Smith if (E->isStringLiteralInit()) 11709ec1e48bSRichard Smith return Visit(E->getInit(0)); 1171f23b6fa4SEli Friedman 117291f5ae50SEli Friedman QualType elementType = 117391f5ae50SEli Friedman CGF.getContext().getAsArrayType(E->getType())->getElementType(); 117482fe67bbSJohn McCall 1175c83ed824SSebastian Redl llvm::PointerType *APType = 11767f1ff600SEli Friedman cast<llvm::PointerType>(Dest.getAddr()->getType()); 1177c83ed824SSebastian Redl llvm::ArrayType *AType = 1178c83ed824SSebastian Redl cast<llvm::ArrayType>(APType->getElementType()); 117982fe67bbSJohn McCall 11807f1ff600SEli Friedman EmitArrayInit(Dest.getAddr(), AType, elementType, E); 1181579a05d7SChris Lattner return; 1182579a05d7SChris Lattner } 1183579a05d7SChris Lattner 1184579a05d7SChris Lattner assert(E->getType()->isRecordType() && "Only support structs/unions here!"); 1185579a05d7SChris Lattner 1186579a05d7SChris Lattner // Do struct initialization; this code just sets each individual member 1187579a05d7SChris Lattner // to the approprate value. This makes bitfield support automatic; 1188579a05d7SChris Lattner // the disadvantage is that the generated code is more difficult for 1189579a05d7SChris Lattner // the optimizer, especially with bitfields. 1190579a05d7SChris Lattner unsigned NumInitElements = E->getNumInits(); 11913b935d33SJohn McCall RecordDecl *record = E->getType()->castAs<RecordType>()->getDecl(); 119252bcf963SChris Lattner 11933b935d33SJohn McCall if (record->isUnion()) { 11945169570eSDouglas Gregor // Only initialize one field of a union. The field itself is 11955169570eSDouglas Gregor // specified by the initializer list. 11965169570eSDouglas Gregor if (!E->getInitializedFieldInUnion()) { 11975169570eSDouglas Gregor // Empty union; we have nothing to do. 11985169570eSDouglas Gregor 11995169570eSDouglas Gregor #ifndef NDEBUG 12005169570eSDouglas Gregor // Make sure that it's really an empty and not a failure of 12015169570eSDouglas Gregor // semantic analysis. 12023b935d33SJohn McCall for (RecordDecl::field_iterator Field = record->field_begin(), 12033b935d33SJohn McCall FieldEnd = record->field_end(); 12045169570eSDouglas Gregor Field != FieldEnd; ++Field) 12055169570eSDouglas Gregor assert(Field->isUnnamedBitfield() && "Only unnamed bitfields allowed"); 12065169570eSDouglas Gregor #endif 12075169570eSDouglas Gregor return; 12085169570eSDouglas Gregor } 12095169570eSDouglas Gregor 12105169570eSDouglas Gregor // FIXME: volatility 12115169570eSDouglas Gregor FieldDecl *Field = E->getInitializedFieldInUnion(); 12125169570eSDouglas Gregor 12137f1ff600SEli Friedman LValue FieldLoc = CGF.EmitLValueForFieldInitialization(DestLV, Field); 12145169570eSDouglas Gregor if (NumInitElements) { 12155169570eSDouglas Gregor // Store the initializer into the field 1216615ed1a3SChad Rosier EmitInitializationToLValue(E->getInit(0), FieldLoc); 12175169570eSDouglas Gregor } else { 121827a3631bSChris Lattner // Default-initialize to null. 12191553b190SJohn McCall EmitNullInitializationToLValue(FieldLoc); 12205169570eSDouglas Gregor } 12215169570eSDouglas Gregor 12225169570eSDouglas Gregor return; 12235169570eSDouglas Gregor } 1224579a05d7SChris Lattner 12253b935d33SJohn McCall // We'll need to enter cleanup scopes in case any of the member 12263b935d33SJohn McCall // initializers throw an exception. 12270e62c1ccSChris Lattner SmallVector<EHScopeStack::stable_iterator, 16> cleanups; 1228f4beacd0SJohn McCall llvm::Instruction *cleanupDominator = 0; 12293b935d33SJohn McCall 1230579a05d7SChris Lattner // Here we iterate over the fields; this makes it simpler to both 1231579a05d7SChris Lattner // default-initialize fields and skip over unnamed fields. 12323b935d33SJohn McCall unsigned curInitIndex = 0; 12333b935d33SJohn McCall for (RecordDecl::field_iterator field = record->field_begin(), 12343b935d33SJohn McCall fieldEnd = record->field_end(); 12353b935d33SJohn McCall field != fieldEnd; ++field) { 12363b935d33SJohn McCall // We're done once we hit the flexible array member. 12373b935d33SJohn McCall if (field->getType()->isIncompleteArrayType()) 123891f84216SDouglas Gregor break; 123991f84216SDouglas Gregor 12403b935d33SJohn McCall // Always skip anonymous bitfields. 12413b935d33SJohn McCall if (field->isUnnamedBitfield()) 1242579a05d7SChris Lattner continue; 124317bd094aSDouglas Gregor 12443b935d33SJohn McCall // We're done if we reach the end of the explicit initializers, we 12453b935d33SJohn McCall // have a zeroed object, and the rest of the fields are 12463b935d33SJohn McCall // zero-initializable. 12473b935d33SJohn McCall if (curInitIndex == NumInitElements && Dest.isZeroed() && 124827a3631bSChris Lattner CGF.getTypes().isZeroInitializable(E->getType())) 124927a3631bSChris Lattner break; 125027a3631bSChris Lattner 12517f1ff600SEli Friedman 125240ed2973SDavid Blaikie LValue LV = CGF.EmitLValueForFieldInitialization(DestLV, *field); 12537c1baf46SFariborz Jahanian // We never generate write-barries for initialized fields. 12543b935d33SJohn McCall LV.setNonGC(true); 125527a3631bSChris Lattner 12563b935d33SJohn McCall if (curInitIndex < NumInitElements) { 1257e18aaf2cSChris Lattner // Store the initializer into the field. 1258615ed1a3SChad Rosier EmitInitializationToLValue(E->getInit(curInitIndex++), LV); 1259579a05d7SChris Lattner } else { 1260579a05d7SChris Lattner // We're out of initalizers; default-initialize to null 12613b935d33SJohn McCall EmitNullInitializationToLValue(LV); 12623b935d33SJohn McCall } 12633b935d33SJohn McCall 12643b935d33SJohn McCall // Push a destructor if necessary. 12653b935d33SJohn McCall // FIXME: if we have an array of structures, all explicitly 12663b935d33SJohn McCall // initialized, we can end up pushing a linear number of cleanups. 12673b935d33SJohn McCall bool pushedCleanup = false; 12683b935d33SJohn McCall if (QualType::DestructionKind dtorKind 12693b935d33SJohn McCall = field->getType().isDestructedType()) { 12703b935d33SJohn McCall assert(LV.isSimple()); 12713b935d33SJohn McCall if (CGF.needsEHCleanup(dtorKind)) { 1272f4beacd0SJohn McCall if (!cleanupDominator) 1273f4beacd0SJohn McCall cleanupDominator = CGF.Builder.CreateUnreachable(); // placeholder 1274f4beacd0SJohn McCall 12753b935d33SJohn McCall CGF.pushDestroy(EHCleanup, LV.getAddress(), field->getType(), 12763b935d33SJohn McCall CGF.getDestroyer(dtorKind), false); 12773b935d33SJohn McCall cleanups.push_back(CGF.EHStack.stable_begin()); 12783b935d33SJohn McCall pushedCleanup = true; 12793b935d33SJohn McCall } 1280579a05d7SChris Lattner } 128127a3631bSChris Lattner 128227a3631bSChris Lattner // If the GEP didn't get used because of a dead zero init or something 128327a3631bSChris Lattner // else, clean it up for -O0 builds and general tidiness. 12843b935d33SJohn McCall if (!pushedCleanup && LV.isSimple()) 128527a3631bSChris Lattner if (llvm::GetElementPtrInst *GEP = 12863b935d33SJohn McCall dyn_cast<llvm::GetElementPtrInst>(LV.getAddress())) 128727a3631bSChris Lattner if (GEP->use_empty()) 128827a3631bSChris Lattner GEP->eraseFromParent(); 12897a51313dSChris Lattner } 12903b935d33SJohn McCall 12913b935d33SJohn McCall // Deactivate all the partial cleanups in reverse order, which 12923b935d33SJohn McCall // generally means popping them. 12933b935d33SJohn McCall for (unsigned i = cleanups.size(); i != 0; --i) 1294f4beacd0SJohn McCall CGF.DeactivateCleanupBlock(cleanups[i-1], cleanupDominator); 1295f4beacd0SJohn McCall 1296f4beacd0SJohn McCall // Destroy the placeholder if we made one. 1297f4beacd0SJohn McCall if (cleanupDominator) 1298f4beacd0SJohn McCall cleanupDominator->eraseFromParent(); 12997a51313dSChris Lattner } 13007a51313dSChris Lattner 13017a51313dSChris Lattner //===----------------------------------------------------------------------===// 13027a51313dSChris Lattner // Entry Points into this File 13037a51313dSChris Lattner //===----------------------------------------------------------------------===// 13047a51313dSChris Lattner 130527a3631bSChris Lattner /// GetNumNonZeroBytesInInit - Get an approximate count of the number of 130627a3631bSChris Lattner /// non-zero bytes that will be stored when outputting the initializer for the 130727a3631bSChris Lattner /// specified initializer expression. 1308df94cb7dSKen Dyck static CharUnits GetNumNonZeroBytesInInit(const Expr *E, CodeGenFunction &CGF) { 130991147596SPeter Collingbourne E = E->IgnoreParens(); 131027a3631bSChris Lattner 131127a3631bSChris Lattner // 0 and 0.0 won't require any non-zero stores! 1312df94cb7dSKen Dyck if (isSimpleZero(E, CGF)) return CharUnits::Zero(); 131327a3631bSChris Lattner 131427a3631bSChris Lattner // If this is an initlist expr, sum up the size of sizes of the (present) 131527a3631bSChris Lattner // elements. If this is something weird, assume the whole thing is non-zero. 131627a3631bSChris Lattner const InitListExpr *ILE = dyn_cast<InitListExpr>(E); 131727a3631bSChris Lattner if (ILE == 0 || !CGF.getTypes().isZeroInitializable(ILE->getType())) 1318df94cb7dSKen Dyck return CGF.getContext().getTypeSizeInChars(E->getType()); 131927a3631bSChris Lattner 1320c5cc2fb9SChris Lattner // InitListExprs for structs have to be handled carefully. If there are 1321c5cc2fb9SChris Lattner // reference members, we need to consider the size of the reference, not the 1322c5cc2fb9SChris Lattner // referencee. InitListExprs for unions and arrays can't have references. 13235cd84755SChris Lattner if (const RecordType *RT = E->getType()->getAs<RecordType>()) { 13245cd84755SChris Lattner if (!RT->isUnionType()) { 1325c5cc2fb9SChris Lattner RecordDecl *SD = E->getType()->getAs<RecordType>()->getDecl(); 1326df94cb7dSKen Dyck CharUnits NumNonZeroBytes = CharUnits::Zero(); 1327c5cc2fb9SChris Lattner 1328c5cc2fb9SChris Lattner unsigned ILEElement = 0; 1329c5cc2fb9SChris Lattner for (RecordDecl::field_iterator Field = SD->field_begin(), 1330c5cc2fb9SChris Lattner FieldEnd = SD->field_end(); Field != FieldEnd; ++Field) { 1331c5cc2fb9SChris Lattner // We're done once we hit the flexible array member or run out of 1332c5cc2fb9SChris Lattner // InitListExpr elements. 1333c5cc2fb9SChris Lattner if (Field->getType()->isIncompleteArrayType() || 1334c5cc2fb9SChris Lattner ILEElement == ILE->getNumInits()) 1335c5cc2fb9SChris Lattner break; 1336c5cc2fb9SChris Lattner if (Field->isUnnamedBitfield()) 1337c5cc2fb9SChris Lattner continue; 1338c5cc2fb9SChris Lattner 1339c5cc2fb9SChris Lattner const Expr *E = ILE->getInit(ILEElement++); 1340c5cc2fb9SChris Lattner 1341c5cc2fb9SChris Lattner // Reference values are always non-null and have the width of a pointer. 13425cd84755SChris Lattner if (Field->getType()->isReferenceType()) 1343df94cb7dSKen Dyck NumNonZeroBytes += CGF.getContext().toCharUnitsFromBits( 1344e8bbc121SDouglas Gregor CGF.getContext().getTargetInfo().getPointerWidth(0)); 13455cd84755SChris Lattner else 1346c5cc2fb9SChris Lattner NumNonZeroBytes += GetNumNonZeroBytesInInit(E, CGF); 1347c5cc2fb9SChris Lattner } 1348c5cc2fb9SChris Lattner 1349c5cc2fb9SChris Lattner return NumNonZeroBytes; 1350c5cc2fb9SChris Lattner } 13515cd84755SChris Lattner } 1352c5cc2fb9SChris Lattner 1353c5cc2fb9SChris Lattner 1354df94cb7dSKen Dyck CharUnits NumNonZeroBytes = CharUnits::Zero(); 135527a3631bSChris Lattner for (unsigned i = 0, e = ILE->getNumInits(); i != e; ++i) 135627a3631bSChris Lattner NumNonZeroBytes += GetNumNonZeroBytesInInit(ILE->getInit(i), CGF); 135727a3631bSChris Lattner return NumNonZeroBytes; 135827a3631bSChris Lattner } 135927a3631bSChris Lattner 136027a3631bSChris Lattner /// CheckAggExprForMemSetUse - If the initializer is large and has a lot of 136127a3631bSChris Lattner /// zeros in it, emit a memset and avoid storing the individual zeros. 136227a3631bSChris Lattner /// 136327a3631bSChris Lattner static void CheckAggExprForMemSetUse(AggValueSlot &Slot, const Expr *E, 136427a3631bSChris Lattner CodeGenFunction &CGF) { 136527a3631bSChris Lattner // If the slot is already known to be zeroed, nothing to do. Don't mess with 136627a3631bSChris Lattner // volatile stores. 136727a3631bSChris Lattner if (Slot.isZeroed() || Slot.isVolatile() || Slot.getAddr() == 0) return; 136827a3631bSChris Lattner 136903535265SArgyrios Kyrtzidis // C++ objects with a user-declared constructor don't need zero'ing. 13709c6890a7SRichard Smith if (CGF.getLangOpts().CPlusPlus) 137103535265SArgyrios Kyrtzidis if (const RecordType *RT = CGF.getContext() 137203535265SArgyrios Kyrtzidis .getBaseElementType(E->getType())->getAs<RecordType>()) { 137303535265SArgyrios Kyrtzidis const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl()); 137403535265SArgyrios Kyrtzidis if (RD->hasUserDeclaredConstructor()) 137503535265SArgyrios Kyrtzidis return; 137603535265SArgyrios Kyrtzidis } 137703535265SArgyrios Kyrtzidis 137827a3631bSChris Lattner // If the type is 16-bytes or smaller, prefer individual stores over memset. 1379239a3357SKen Dyck std::pair<CharUnits, CharUnits> TypeInfo = 1380239a3357SKen Dyck CGF.getContext().getTypeInfoInChars(E->getType()); 1381239a3357SKen Dyck if (TypeInfo.first <= CharUnits::fromQuantity(16)) 138227a3631bSChris Lattner return; 138327a3631bSChris Lattner 138427a3631bSChris Lattner // Check to see if over 3/4 of the initializer are known to be zero. If so, 138527a3631bSChris Lattner // we prefer to emit memset + individual stores for the rest. 1386239a3357SKen Dyck CharUnits NumNonZeroBytes = GetNumNonZeroBytesInInit(E, CGF); 1387239a3357SKen Dyck if (NumNonZeroBytes*4 > TypeInfo.first) 138827a3631bSChris Lattner return; 138927a3631bSChris Lattner 139027a3631bSChris Lattner // Okay, it seems like a good idea to use an initial memset, emit the call. 1391239a3357SKen Dyck llvm::Constant *SizeVal = CGF.Builder.getInt64(TypeInfo.first.getQuantity()); 1392239a3357SKen Dyck CharUnits Align = TypeInfo.second; 139327a3631bSChris Lattner 139427a3631bSChris Lattner llvm::Value *Loc = Slot.getAddr(); 139527a3631bSChris Lattner 1396ece0409aSChris Lattner Loc = CGF.Builder.CreateBitCast(Loc, CGF.Int8PtrTy); 1397239a3357SKen Dyck CGF.Builder.CreateMemSet(Loc, CGF.Builder.getInt8(0), SizeVal, 1398239a3357SKen Dyck Align.getQuantity(), false); 139927a3631bSChris Lattner 140027a3631bSChris Lattner // Tell the AggExprEmitter that the slot is known zero. 140127a3631bSChris Lattner Slot.setZeroed(); 140227a3631bSChris Lattner } 140327a3631bSChris Lattner 140427a3631bSChris Lattner 140527a3631bSChris Lattner 140627a3631bSChris Lattner 140725306cacSMike Stump /// EmitAggExpr - Emit the computation of the specified expression of aggregate 140825306cacSMike Stump /// type. The result is computed into DestPtr. Note that if DestPtr is null, 140925306cacSMike Stump /// the value of the aggregate expression is not needed. If VolatileDest is 141025306cacSMike Stump /// true, DestPtr cannot be 0. 14114e8ca4faSJohn McCall void CodeGenFunction::EmitAggExpr(const Expr *E, AggValueSlot Slot) { 141247fb9508SJohn McCall assert(E && hasAggregateEvaluationKind(E->getType()) && 14137a51313dSChris Lattner "Invalid aggregate expression to emit"); 141427a3631bSChris Lattner assert((Slot.getAddr() != 0 || Slot.isIgnored()) && 141527a3631bSChris Lattner "slot has bits but no address"); 14167a51313dSChris Lattner 141727a3631bSChris Lattner // Optimize the slot if possible. 141827a3631bSChris Lattner CheckAggExprForMemSetUse(Slot, E, *this); 141927a3631bSChris Lattner 14204e8ca4faSJohn McCall AggExprEmitter(*this, Slot).Visit(const_cast<Expr*>(E)); 14217a51313dSChris Lattner } 14220bc8e86dSDaniel Dunbar 1423d0bc7b9dSDaniel Dunbar LValue CodeGenFunction::EmitAggExprToLValue(const Expr *E) { 142447fb9508SJohn McCall assert(hasAggregateEvaluationKind(E->getType()) && "Invalid argument!"); 1425a7566f16SDaniel Dunbar llvm::Value *Temp = CreateMemTemp(E->getType()); 14262e442a00SDaniel Dunbar LValue LV = MakeAddrLValue(Temp, E->getType()); 14278d6fc958SJohn McCall EmitAggExpr(E, AggValueSlot::forLValue(LV, AggValueSlot::IsNotDestructed, 142846759f4fSJohn McCall AggValueSlot::DoesNotNeedGCBarriers, 1429615ed1a3SChad Rosier AggValueSlot::IsNotAliased)); 14302e442a00SDaniel Dunbar return LV; 1431d0bc7b9dSDaniel Dunbar } 1432d0bc7b9dSDaniel Dunbar 1433615ed1a3SChad Rosier void CodeGenFunction::EmitAggregateCopy(llvm::Value *DestPtr, 1434615ed1a3SChad Rosier llvm::Value *SrcPtr, QualType Ty, 14354e8ca4faSJohn McCall bool isVolatile, 14361ca66919SBenjamin Kramer CharUnits alignment, 14371ca66919SBenjamin Kramer bool isAssignment) { 1438615ed1a3SChad Rosier assert(!Ty->isAnyComplexType() && "Shouldn't happen for complex"); 14390bc8e86dSDaniel Dunbar 14409c6890a7SRichard Smith if (getLangOpts().CPlusPlus) { 1441615ed1a3SChad Rosier if (const RecordType *RT = Ty->getAs<RecordType>()) { 1442615ed1a3SChad Rosier CXXRecordDecl *Record = cast<CXXRecordDecl>(RT->getDecl()); 1443615ed1a3SChad Rosier assert((Record->hasTrivialCopyConstructor() || 1444615ed1a3SChad Rosier Record->hasTrivialCopyAssignment() || 1445615ed1a3SChad Rosier Record->hasTrivialMoveConstructor() || 1446615ed1a3SChad Rosier Record->hasTrivialMoveAssignment()) && 144716488472SRichard Smith "Trying to aggregate-copy a type without a trivial copy/move " 1448f22101a0SDouglas Gregor "constructor or assignment operator"); 1449615ed1a3SChad Rosier // Ignore empty classes in C++. 1450615ed1a3SChad Rosier if (Record->isEmpty()) 145116e94af6SAnders Carlsson return; 145216e94af6SAnders Carlsson } 145316e94af6SAnders Carlsson } 145416e94af6SAnders Carlsson 1455ca05dfefSChris Lattner // Aggregate assignment turns into llvm.memcpy. This is almost valid per 14563ef668c2SChris Lattner // C99 6.5.16.1p3, which states "If the value being stored in an object is 14573ef668c2SChris Lattner // read from another object that overlaps in anyway the storage of the first 14583ef668c2SChris Lattner // object, then the overlap shall be exact and the two objects shall have 14593ef668c2SChris Lattner // qualified or unqualified versions of a compatible type." 14603ef668c2SChris Lattner // 1461ca05dfefSChris Lattner // memcpy is not defined if the source and destination pointers are exactly 14623ef668c2SChris Lattner // equal, but other compilers do this optimization, and almost every memcpy 14633ef668c2SChris Lattner // implementation handles this case safely. If there is a libc that does not 14643ef668c2SChris Lattner // safely handle this, we can add a target hook. 14650bc8e86dSDaniel Dunbar 14661ca66919SBenjamin Kramer // Get data size and alignment info for this aggregate. If this is an 14671ca66919SBenjamin Kramer // assignment don't copy the tail padding. Otherwise copying it is fine. 14681ca66919SBenjamin Kramer std::pair<CharUnits, CharUnits> TypeInfo; 14691ca66919SBenjamin Kramer if (isAssignment) 14701ca66919SBenjamin Kramer TypeInfo = getContext().getTypeInfoDataSizeInChars(Ty); 14711ca66919SBenjamin Kramer else 14721ca66919SBenjamin Kramer TypeInfo = getContext().getTypeInfoInChars(Ty); 1473615ed1a3SChad Rosier 14744e8ca4faSJohn McCall if (alignment.isZero()) 14754e8ca4faSJohn McCall alignment = TypeInfo.second; 1476615ed1a3SChad Rosier 1477615ed1a3SChad Rosier // FIXME: Handle variable sized types. 1478615ed1a3SChad Rosier 1479615ed1a3SChad Rosier // FIXME: If we have a volatile struct, the optimizer can remove what might 1480615ed1a3SChad Rosier // appear to be `extra' memory ops: 1481615ed1a3SChad Rosier // 1482615ed1a3SChad Rosier // volatile struct { int i; } a, b; 1483615ed1a3SChad Rosier // 1484615ed1a3SChad Rosier // int main() { 1485615ed1a3SChad Rosier // a = b; 1486615ed1a3SChad Rosier // a = b; 1487615ed1a3SChad Rosier // } 1488615ed1a3SChad Rosier // 1489615ed1a3SChad Rosier // we need to use a different call here. We use isVolatile to indicate when 1490615ed1a3SChad Rosier // either the source or the destination is volatile. 1491615ed1a3SChad Rosier 1492615ed1a3SChad Rosier llvm::PointerType *DPT = cast<llvm::PointerType>(DestPtr->getType()); 1493615ed1a3SChad Rosier llvm::Type *DBP = 1494615ed1a3SChad Rosier llvm::Type::getInt8PtrTy(getLLVMContext(), DPT->getAddressSpace()); 1495615ed1a3SChad Rosier DestPtr = Builder.CreateBitCast(DestPtr, DBP); 1496615ed1a3SChad Rosier 1497615ed1a3SChad Rosier llvm::PointerType *SPT = cast<llvm::PointerType>(SrcPtr->getType()); 1498615ed1a3SChad Rosier llvm::Type *SBP = 1499615ed1a3SChad Rosier llvm::Type::getInt8PtrTy(getLLVMContext(), SPT->getAddressSpace()); 1500615ed1a3SChad Rosier SrcPtr = Builder.CreateBitCast(SrcPtr, SBP); 1501615ed1a3SChad Rosier 1502615ed1a3SChad Rosier // Don't do any of the memmove_collectable tests if GC isn't set. 1503615ed1a3SChad Rosier if (CGM.getLangOpts().getGC() == LangOptions::NonGC) { 1504615ed1a3SChad Rosier // fall through 1505615ed1a3SChad Rosier } else if (const RecordType *RecordTy = Ty->getAs<RecordType>()) { 1506615ed1a3SChad Rosier RecordDecl *Record = RecordTy->getDecl(); 1507615ed1a3SChad Rosier if (Record->hasObjectMember()) { 1508615ed1a3SChad Rosier CharUnits size = TypeInfo.first; 1509615ed1a3SChad Rosier llvm::Type *SizeTy = ConvertType(getContext().getSizeType()); 1510615ed1a3SChad Rosier llvm::Value *SizeVal = llvm::ConstantInt::get(SizeTy, size.getQuantity()); 1511615ed1a3SChad Rosier CGM.getObjCRuntime().EmitGCMemmoveCollectable(*this, DestPtr, SrcPtr, 1512615ed1a3SChad Rosier SizeVal); 1513615ed1a3SChad Rosier return; 1514615ed1a3SChad Rosier } 1515615ed1a3SChad Rosier } else if (Ty->isArrayType()) { 1516615ed1a3SChad Rosier QualType BaseType = getContext().getBaseElementType(Ty); 1517615ed1a3SChad Rosier if (const RecordType *RecordTy = BaseType->getAs<RecordType>()) { 1518615ed1a3SChad Rosier if (RecordTy->getDecl()->hasObjectMember()) { 1519615ed1a3SChad Rosier CharUnits size = TypeInfo.first; 1520615ed1a3SChad Rosier llvm::Type *SizeTy = ConvertType(getContext().getSizeType()); 1521615ed1a3SChad Rosier llvm::Value *SizeVal = 1522615ed1a3SChad Rosier llvm::ConstantInt::get(SizeTy, size.getQuantity()); 1523615ed1a3SChad Rosier CGM.getObjCRuntime().EmitGCMemmoveCollectable(*this, DestPtr, SrcPtr, 1524615ed1a3SChad Rosier SizeVal); 1525615ed1a3SChad Rosier return; 1526615ed1a3SChad Rosier } 1527615ed1a3SChad Rosier } 1528615ed1a3SChad Rosier } 1529615ed1a3SChad Rosier 153022695fceSDan Gohman // Determine the metadata to describe the position of any padding in this 153122695fceSDan Gohman // memcpy, as well as the TBAA tags for the members of the struct, in case 153222695fceSDan Gohman // the optimizer wishes to expand it in to scalar memory operations. 153322695fceSDan Gohman llvm::MDNode *TBAAStructTag = CGM.getTBAAStructInfo(Ty); 153422695fceSDan Gohman 1535615ed1a3SChad Rosier Builder.CreateMemCpy(DestPtr, SrcPtr, 1536615ed1a3SChad Rosier llvm::ConstantInt::get(IntPtrTy, 1537615ed1a3SChad Rosier TypeInfo.first.getQuantity()), 153822695fceSDan Gohman alignment.getQuantity(), isVolatile, 153922695fceSDan Gohman /*TBAATag=*/0, TBAAStructTag); 15400bc8e86dSDaniel Dunbar } 1541c83ed824SSebastian Redl 1542d026dc49SSebastian Redl void CodeGenFunction::MaybeEmitStdInitializerListCleanup(llvm::Value *loc, 1543c83ed824SSebastian Redl const Expr *init) { 1544c83ed824SSebastian Redl const ExprWithCleanups *cleanups = dyn_cast<ExprWithCleanups>(init); 1545d026dc49SSebastian Redl if (cleanups) 1546c83ed824SSebastian Redl init = cleanups->getSubExpr(); 1547c83ed824SSebastian Redl 1548c83ed824SSebastian Redl if (isa<InitListExpr>(init) && 1549c83ed824SSebastian Redl cast<InitListExpr>(init)->initializesStdInitializerList()) { 1550c83ed824SSebastian Redl // We initialized this std::initializer_list with an initializer list. 1551c83ed824SSebastian Redl // A backing array was created. Push a cleanup for it. 1552d026dc49SSebastian Redl EmitStdInitializerListCleanup(loc, cast<InitListExpr>(init)); 1553c83ed824SSebastian Redl } 1554c83ed824SSebastian Redl } 1555c83ed824SSebastian Redl 15568eb351d7SSebastian Redl static void EmitRecursiveStdInitializerListCleanup(CodeGenFunction &CGF, 15578eb351d7SSebastian Redl llvm::Value *arrayStart, 15588eb351d7SSebastian Redl const InitListExpr *init) { 15598eb351d7SSebastian Redl // Check if there are any recursive cleanups to do, i.e. if we have 15608eb351d7SSebastian Redl // std::initializer_list<std::initializer_list<obj>> list = {{obj()}}; 15618eb351d7SSebastian Redl // then we need to destroy the inner array as well. 15628eb351d7SSebastian Redl for (unsigned i = 0, e = init->getNumInits(); i != e; ++i) { 15638eb351d7SSebastian Redl const InitListExpr *subInit = dyn_cast<InitListExpr>(init->getInit(i)); 15648eb351d7SSebastian Redl if (!subInit || !subInit->initializesStdInitializerList()) 15658eb351d7SSebastian Redl continue; 15668eb351d7SSebastian Redl 15678eb351d7SSebastian Redl // This one needs to be destroyed. Get the address of the std::init_list. 15688eb351d7SSebastian Redl llvm::Value *offset = llvm::ConstantInt::get(CGF.SizeTy, i); 15698eb351d7SSebastian Redl llvm::Value *loc = CGF.Builder.CreateInBoundsGEP(arrayStart, offset, 15708eb351d7SSebastian Redl "std.initlist"); 15718eb351d7SSebastian Redl CGF.EmitStdInitializerListCleanup(loc, subInit); 15728eb351d7SSebastian Redl } 15738eb351d7SSebastian Redl } 15748eb351d7SSebastian Redl 15758eb351d7SSebastian Redl void CodeGenFunction::EmitStdInitializerListCleanup(llvm::Value *loc, 1576c83ed824SSebastian Redl const InitListExpr *init) { 1577c83ed824SSebastian Redl ASTContext &ctx = getContext(); 1578c83ed824SSebastian Redl QualType element = GetStdInitializerListElementType(init->getType()); 1579c83ed824SSebastian Redl unsigned numInits = init->getNumInits(); 1580c83ed824SSebastian Redl llvm::APInt size(ctx.getTypeSize(ctx.getSizeType()), numInits); 1581c83ed824SSebastian Redl QualType array =ctx.getConstantArrayType(element, size, ArrayType::Normal, 0); 1582c83ed824SSebastian Redl QualType arrayPtr = ctx.getPointerType(array); 1583c83ed824SSebastian Redl llvm::Type *arrayPtrType = ConvertType(arrayPtr); 1584c83ed824SSebastian Redl 1585c83ed824SSebastian Redl // lvalue is the location of a std::initializer_list, which as its first 1586c83ed824SSebastian Redl // element has a pointer to the array we want to destroy. 15878eb351d7SSebastian Redl llvm::Value *startPointer = Builder.CreateStructGEP(loc, 0, "startPointer"); 15888eb351d7SSebastian Redl llvm::Value *startAddress = Builder.CreateLoad(startPointer, "startAddress"); 1589c83ed824SSebastian Redl 15908eb351d7SSebastian Redl ::EmitRecursiveStdInitializerListCleanup(*this, startAddress, init); 15918eb351d7SSebastian Redl 15928eb351d7SSebastian Redl llvm::Value *arrayAddress = 15938eb351d7SSebastian Redl Builder.CreateBitCast(startAddress, arrayPtrType, "arrayAddress"); 1594c83ed824SSebastian Redl ::EmitStdInitializerListCleanup(*this, array, arrayAddress, init); 1595c83ed824SSebastian Redl } 1596