17a51313dSChris Lattner //===--- CGExprAgg.cpp - Emit LLVM Code from Aggregate Expressions --------===// 27a51313dSChris Lattner // 32946cd70SChandler Carruth // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 42946cd70SChandler Carruth // See https://llvm.org/LICENSE.txt for license information. 52946cd70SChandler Carruth // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 67a51313dSChris Lattner // 77a51313dSChris Lattner //===----------------------------------------------------------------------===// 87a51313dSChris Lattner // 97a51313dSChris Lattner // This contains code to emit Aggregate Expr nodes as LLVM code. 107a51313dSChris Lattner // 117a51313dSChris Lattner //===----------------------------------------------------------------------===// 127a51313dSChris Lattner 130683c0e6SEric Fiselier #include "CGCXXABI.h" 145f21d2f6SFariborz Jahanian #include "CGObjCRuntime.h" 159803178aSReid Kleckner #include "CodeGenFunction.h" 163a02247dSChandler Carruth #include "CodeGenModule.h" 17e0ef348cSIvan A. Kosarev #include "ConstantEmitter.h" 185be9b8cbSMichael Liao #include "TargetInfo.h" 19ad319a73SDaniel Dunbar #include "clang/AST/ASTContext.h" 209803178aSReid Kleckner #include "clang/AST/Attr.h" 21b7f8f594SAnders Carlsson #include "clang/AST/DeclCXX.h" 22c83ed824SSebastian Redl #include "clang/AST/DeclTemplate.h" 23ad319a73SDaniel Dunbar #include "clang/AST/StmtVisitor.h" 24ffd5551bSChandler Carruth #include "llvm/IR/Constants.h" 25ffd5551bSChandler Carruth #include "llvm/IR/Function.h" 26ffd5551bSChandler Carruth #include "llvm/IR/GlobalVariable.h" 274deb75d2SGeorge Burgess IV #include "llvm/IR/IntrinsicInst.h" 289803178aSReid Kleckner #include "llvm/IR/Intrinsics.h" 297a51313dSChris Lattner using namespace clang; 307a51313dSChris Lattner using namespace CodeGen; 317a51313dSChris Lattner 327a51313dSChris Lattner //===----------------------------------------------------------------------===// 337a51313dSChris Lattner // Aggregate Expression Emitter 347a51313dSChris Lattner //===----------------------------------------------------------------------===// 357a51313dSChris Lattner 367a51313dSChris Lattner namespace { 37337e3a5fSBenjamin Kramer class AggExprEmitter : public StmtVisitor<AggExprEmitter> { 387a51313dSChris Lattner CodeGenFunction &CGF; 39cb463859SDaniel Dunbar CGBuilderTy &Builder; 407a626f63SJohn McCall AggValueSlot Dest; 416aab1117SLeny Kholodov bool IsResultUnused; 4278a15113SJohn McCall 437a626f63SJohn McCall AggValueSlot EnsureSlot(QualType T) { 447a626f63SJohn McCall if (!Dest.isIgnored()) return Dest; 457a626f63SJohn McCall return CGF.CreateAggTemp(T, "agg.tmp.ensured"); 4678a15113SJohn McCall } 474e8ca4faSJohn McCall void EnsureDest(QualType T) { 484e8ca4faSJohn McCall if (!Dest.isIgnored()) return; 494e8ca4faSJohn McCall Dest = CGF.CreateAggTemp(T, "agg.tmp.ensured"); 504e8ca4faSJohn McCall } 51cc04e9f6SJohn McCall 5256e5a2e1SGeorge Burgess IV // Calls `Fn` with a valid return value slot, potentially creating a temporary 5356e5a2e1SGeorge Burgess IV // to do so. If a temporary is created, an appropriate copy into `Dest` will 544deb75d2SGeorge Burgess IV // be emitted, as will lifetime markers. 5556e5a2e1SGeorge Burgess IV // 5656e5a2e1SGeorge Burgess IV // The given function should take a ReturnValueSlot, and return an RValue that 5756e5a2e1SGeorge Burgess IV // points to said slot. 5856e5a2e1SGeorge Burgess IV void withReturnValueSlot(const Expr *E, 5956e5a2e1SGeorge Burgess IV llvm::function_ref<RValue(ReturnValueSlot)> Fn); 6056e5a2e1SGeorge Burgess IV 617a51313dSChris Lattner public: 626aab1117SLeny Kholodov AggExprEmitter(CodeGenFunction &cgf, AggValueSlot Dest, bool IsResultUnused) 636aab1117SLeny Kholodov : CGF(cgf), Builder(CGF.Builder), Dest(Dest), 646aab1117SLeny Kholodov IsResultUnused(IsResultUnused) { } 657a51313dSChris Lattner 667a51313dSChris Lattner //===--------------------------------------------------------------------===// 677a51313dSChris Lattner // Utilities 687a51313dSChris Lattner //===--------------------------------------------------------------------===// 697a51313dSChris Lattner 707a51313dSChris Lattner /// EmitAggLoadOfLValue - Given an expression with aggregate type that 717a51313dSChris Lattner /// represents a value lvalue, this method emits the address of the lvalue, 727a51313dSChris Lattner /// then loads the result into DestPtr. 737a51313dSChris Lattner void EmitAggLoadOfLValue(const Expr *E); 747a51313dSChris Lattner 757275da0fSAkira Hatanaka enum ExprValueKind { 767275da0fSAkira Hatanaka EVK_RValue, 777275da0fSAkira Hatanaka EVK_NonRValue 787275da0fSAkira Hatanaka }; 797275da0fSAkira Hatanaka 80ca9fc09cSMike Stump /// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired. 817275da0fSAkira Hatanaka /// SrcIsRValue is true if source comes from an RValue. 827275da0fSAkira Hatanaka void EmitFinalDestCopy(QualType type, const LValue &src, 837275da0fSAkira Hatanaka ExprValueKind SrcValueKind = EVK_NonRValue); 847f416cc4SJohn McCall void EmitFinalDestCopy(QualType type, RValue src); 854e8ca4faSJohn McCall void EmitCopy(QualType type, const AggValueSlot &dest, 864e8ca4faSJohn McCall const AggValueSlot &src); 87ca9fc09cSMike Stump 88a5efa738SJohn McCall void EmitMoveFromReturnSlot(const Expr *E, RValue Src); 89cc04e9f6SJohn McCall 907f416cc4SJohn McCall void EmitArrayInit(Address DestPtr, llvm::ArrayType *AType, 91e0ef348cSIvan A. Kosarev QualType ArrayQTy, InitListExpr *E); 92c83ed824SSebastian Redl 938d6fc958SJohn McCall AggValueSlot::NeedsGCBarriers_t needsGC(QualType T) { 94bbafb8a7SDavid Blaikie if (CGF.getLangOpts().getGC() && TypeRequiresGCollection(T)) 958d6fc958SJohn McCall return AggValueSlot::NeedsGCBarriers; 968d6fc958SJohn McCall return AggValueSlot::DoesNotNeedGCBarriers; 978d6fc958SJohn McCall } 988d6fc958SJohn McCall 99cc04e9f6SJohn McCall bool TypeRequiresGCollection(QualType T); 100cc04e9f6SJohn McCall 1017a51313dSChris Lattner //===--------------------------------------------------------------------===// 1027a51313dSChris Lattner // Visitor Methods 1037a51313dSChris Lattner //===--------------------------------------------------------------------===// 1047a51313dSChris Lattner 10501fb5fb1SDavid Blaikie void Visit(Expr *E) { 1069b479666SDavid Blaikie ApplyDebugLocation DL(CGF, E); 10701fb5fb1SDavid Blaikie StmtVisitor<AggExprEmitter>::Visit(E); 10801fb5fb1SDavid Blaikie } 10901fb5fb1SDavid Blaikie 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 } 1175eb58583SGor Nishanov void VisitCoawaitExpr(CoawaitExpr *E) { 1185eb58583SGor Nishanov CGF.EmitCoawaitExpr(*E, Dest, IsResultUnused); 1195eb58583SGor Nishanov } 1205eb58583SGor Nishanov void VisitCoyieldExpr(CoyieldExpr *E) { 1215eb58583SGor Nishanov CGF.EmitCoyieldExpr(*E, Dest, IsResultUnused); 1225eb58583SGor Nishanov } 1235eb58583SGor Nishanov void VisitUnaryCoawait(UnaryOperator *E) { Visit(E->getSubExpr()); } 1243f66b84cSEli Friedman void VisitUnaryExtension(UnaryOperator *E) { Visit(E->getSubExpr()); } 1257c454bb8SJohn McCall void VisitSubstNonTypeTemplateParmExpr(SubstNonTypeTemplateParmExpr *E) { 1267c454bb8SJohn McCall return Visit(E->getReplacement()); 1277c454bb8SJohn McCall } 1287a51313dSChris Lattner 1298003edc9SBill Wendling void VisitConstantExpr(ConstantExpr *E) { 130c524f1a0SAaron Ballman EnsureDest(E->getType()); 131c524f1a0SAaron Ballman 13251e4aa87STyker if (llvm::Value *Result = ConstantEmitter(CGF).tryEmitConstantExpr(E)) { 13351e4aa87STyker CGF.EmitAggregateStore(Result, Dest.getAddress(), 13451e4aa87STyker E->getType().isVolatileQualified()); 13551e4aa87STyker return; 13651e4aa87STyker } 1378003edc9SBill Wendling return Visit(E->getSubExpr()); 1388003edc9SBill Wendling } 1398003edc9SBill Wendling 1407a51313dSChris Lattner // l-values. 1416cc8317cSAlex Lorenz void VisitDeclRefExpr(DeclRefExpr *E) { EmitAggLoadOfLValue(E); } 1427a51313dSChris Lattner void VisitMemberExpr(MemberExpr *ME) { EmitAggLoadOfLValue(ME); } 1437a51313dSChris Lattner void VisitUnaryDeref(UnaryOperator *E) { EmitAggLoadOfLValue(E); } 144d443c0a0SDaniel Dunbar void VisitStringLiteral(StringLiteral *E) { EmitAggLoadOfLValue(E); } 1459b71f0cfSDouglas Gregor void VisitCompoundLiteralExpr(CompoundLiteralExpr *E); 1467a51313dSChris Lattner void VisitArraySubscriptExpr(ArraySubscriptExpr *E) { 1477a51313dSChris Lattner EmitAggLoadOfLValue(E); 1487a51313dSChris Lattner } 1492f343dd5SChris Lattner void VisitPredefinedExpr(const PredefinedExpr *E) { 1502f343dd5SChris Lattner EmitAggLoadOfLValue(E); 1512f343dd5SChris Lattner } 152bc7d67ceSMike Stump 1537a51313dSChris Lattner // Operators. 154ec143777SAnders Carlsson void VisitCastExpr(CastExpr *E); 1557a51313dSChris Lattner void VisitCallExpr(const CallExpr *E); 1567a51313dSChris Lattner void VisitStmtExpr(const StmtExpr *E); 1577a51313dSChris Lattner void VisitBinaryOperator(const BinaryOperator *BO); 158ffba662dSFariborz Jahanian void VisitPointerToDataMemberBinaryOperator(const BinaryOperator *BO); 1597a51313dSChris Lattner void VisitBinAssign(const BinaryOperator *E); 1604b0e2a30SEli Friedman void VisitBinComma(const BinaryOperator *E); 1610683c0e6SEric Fiselier void VisitBinCmp(const BinaryOperator *E); 162778dc0f1SRichard Smith void VisitCXXRewrittenBinaryOperator(CXXRewrittenBinaryOperator *E) { 163778dc0f1SRichard Smith Visit(E->getSemanticForm()); 164778dc0f1SRichard Smith } 1657a51313dSChris Lattner 166b1d329daSChris Lattner void VisitObjCMessageExpr(ObjCMessageExpr *E); 167c8317a44SDaniel Dunbar void VisitObjCIvarRefExpr(ObjCIvarRefExpr *E) { 168c8317a44SDaniel Dunbar EmitAggLoadOfLValue(E); 169c8317a44SDaniel Dunbar } 1707a51313dSChris Lattner 171cb77930dSYunzhong Gao void VisitDesignatedInitUpdateExpr(DesignatedInitUpdateExpr *E); 172c07a0c7eSJohn McCall void VisitAbstractConditionalOperator(const AbstractConditionalOperator *CO); 1735b2095ceSAnders Carlsson void VisitChooseExpr(const ChooseExpr *CE); 1747a51313dSChris Lattner void VisitInitListExpr(InitListExpr *E); 175939b6880SRichard Smith void VisitArrayInitLoopExpr(const ArrayInitLoopExpr *E, 176939b6880SRichard Smith llvm::Value *outerBegin = nullptr); 17718ada985SAnders Carlsson void VisitImplicitValueInitExpr(ImplicitValueInitExpr *E); 178cb77930dSYunzhong Gao void VisitNoInitExpr(NoInitExpr *E) { } // Do nothing. 179aa9c7aedSChris Lattner void VisitCXXDefaultArgExpr(CXXDefaultArgExpr *DAE) { 180708afb56SEric Fiselier CodeGenFunction::CXXDefaultArgExprScope Scope(CGF, DAE); 181aa9c7aedSChris Lattner Visit(DAE->getExpr()); 182aa9c7aedSChris Lattner } 183852c9db7SRichard Smith void VisitCXXDefaultInitExpr(CXXDefaultInitExpr *DIE) { 184708afb56SEric Fiselier CodeGenFunction::CXXDefaultInitExprScope Scope(CGF, DIE); 185852c9db7SRichard Smith Visit(DIE->getExpr()); 186852c9db7SRichard Smith } 1873be22e27SAnders Carlsson void VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E); 1881619a504SAnders Carlsson void VisitCXXConstructExpr(const CXXConstructExpr *E); 1895179eb78SRichard Smith void VisitCXXInheritedCtorInitExpr(const CXXInheritedCtorInitExpr *E); 190c370a7eeSEli Friedman void VisitLambdaExpr(LambdaExpr *E); 191cc1b96d3SRichard Smith void VisitCXXStdInitializerListExpr(CXXStdInitializerListExpr *E); 1925d413781SJohn McCall void VisitExprWithCleanups(ExprWithCleanups *E); 193747eb784SDouglas Gregor void VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *E); 1945bbbb137SMike Stump void VisitCXXTypeidExpr(CXXTypeidExpr *E) { EmitAggLoadOfLValue(E); } 195fe31481fSDouglas Gregor void VisitMaterializeTemporaryExpr(MaterializeTemporaryExpr *E); 1961bf5846aSJohn McCall void VisitOpaqueValueExpr(OpaqueValueExpr *E); 1971bf5846aSJohn McCall 198fe96e0b6SJohn McCall void VisitPseudoObjectExpr(PseudoObjectExpr *E) { 199fe96e0b6SJohn McCall if (E->isGLValue()) { 200fe96e0b6SJohn McCall LValue LV = CGF.EmitPseudoObjectLValue(E); 2014e8ca4faSJohn McCall return EmitFinalDestCopy(E->getType(), LV); 202fe96e0b6SJohn McCall } 203fe96e0b6SJohn McCall 204fe96e0b6SJohn McCall CGF.EmitPseudoObjectRValue(E, EnsureSlot(E->getType())); 205fe96e0b6SJohn McCall } 206fe96e0b6SJohn McCall 20721911e89SEli Friedman void VisitVAArgExpr(VAArgExpr *E); 208579a05d7SChris Lattner 209615ed1a3SChad Rosier void EmitInitializationToLValue(Expr *E, LValue Address); 2101553b190SJohn McCall void EmitNullInitializationToLValue(LValue Address); 2117a51313dSChris Lattner // case Expr::ChooseExprClass: 212f16b8c30SMike Stump void VisitCXXThrowExpr(const CXXThrowExpr *E) { CGF.EmitCXXThrowExpr(E); } 213df14b3a8SEli Friedman void VisitAtomicExpr(AtomicExpr *E) { 214cc2a6e06STim Northover RValue Res = CGF.EmitAtomicExpr(E); 215cc2a6e06STim Northover EmitFinalDestCopy(E->getType(), Res); 216df14b3a8SEli Friedman } 2177a51313dSChris Lattner }; 2187a51313dSChris Lattner } // end anonymous namespace. 2197a51313dSChris Lattner 2207a51313dSChris Lattner //===----------------------------------------------------------------------===// 2217a51313dSChris Lattner // Utilities 2227a51313dSChris Lattner //===----------------------------------------------------------------------===// 2237a51313dSChris Lattner 2247a51313dSChris Lattner /// EmitAggLoadOfLValue - Given an expression with aggregate type that 2257a51313dSChris Lattner /// represents a value lvalue, this method emits the address of the lvalue, 2267a51313dSChris Lattner /// then loads the result into DestPtr. 2277a51313dSChris Lattner void AggExprEmitter::EmitAggLoadOfLValue(const Expr *E) { 2287a51313dSChris Lattner LValue LV = CGF.EmitLValue(E); 229a8ec7eb9SJohn McCall 230a8ec7eb9SJohn McCall // If the type of the l-value is atomic, then do an atomic load. 231a5b195a1SDavid Majnemer if (LV.getType()->isAtomicType() || CGF.LValueIsSuitableForInlineAtomic(LV)) { 2322d84e842SNick Lewycky CGF.EmitAtomicLoad(LV, E->getExprLoc(), Dest); 233a8ec7eb9SJohn McCall return; 234a8ec7eb9SJohn McCall } 235a8ec7eb9SJohn McCall 2364e8ca4faSJohn McCall EmitFinalDestCopy(E->getType(), LV); 237ca9fc09cSMike Stump } 238ca9fc09cSMike Stump 2399fc8faf9SAdrian Prantl /// True if the given aggregate type requires special GC API calls. 240cc04e9f6SJohn McCall bool AggExprEmitter::TypeRequiresGCollection(QualType T) { 241cc04e9f6SJohn McCall // Only record types have members that might require garbage collection. 242cc04e9f6SJohn McCall const RecordType *RecordTy = T->getAs<RecordType>(); 243cc04e9f6SJohn McCall if (!RecordTy) return false; 244cc04e9f6SJohn McCall 245cc04e9f6SJohn McCall // Don't mess with non-trivial C++ types. 246cc04e9f6SJohn McCall RecordDecl *Record = RecordTy->getDecl(); 247cc04e9f6SJohn McCall if (isa<CXXRecordDecl>(Record) && 24816488472SRichard Smith (cast<CXXRecordDecl>(Record)->hasNonTrivialCopyConstructor() || 249cc04e9f6SJohn McCall !cast<CXXRecordDecl>(Record)->hasTrivialDestructor())) 250cc04e9f6SJohn McCall return false; 251cc04e9f6SJohn McCall 252cc04e9f6SJohn McCall // Check whether the type has an object member. 253cc04e9f6SJohn McCall return Record->hasObjectMember(); 254cc04e9f6SJohn McCall } 255cc04e9f6SJohn McCall 25656e5a2e1SGeorge Burgess IV void AggExprEmitter::withReturnValueSlot( 25756e5a2e1SGeorge Burgess IV const Expr *E, llvm::function_ref<RValue(ReturnValueSlot)> EmitCall) { 25856e5a2e1SGeorge Burgess IV QualType RetTy = E->getType(); 25956e5a2e1SGeorge Burgess IV bool RequiresDestruction = 260d35a4541SAkira Hatanaka !Dest.isExternallyDestructed() && 26156e5a2e1SGeorge Burgess IV RetTy.isDestructedType() == QualType::DK_nontrivial_c_struct; 2627275da0fSAkira Hatanaka 26356e5a2e1SGeorge Burgess IV // If it makes no observable difference, save a memcpy + temporary. 26456e5a2e1SGeorge Burgess IV // 26556e5a2e1SGeorge Burgess IV // We need to always provide our own temporary if destruction is required. 26656e5a2e1SGeorge Burgess IV // Otherwise, EmitCall will emit its own, notice that it's "unused", and end 26756e5a2e1SGeorge Burgess IV // its lifetime before we have the chance to emit a proper destructor call. 26856e5a2e1SGeorge Burgess IV bool UseTemp = Dest.isPotentiallyAliased() || Dest.requiresGCollection() || 26956e5a2e1SGeorge Burgess IV (RequiresDestruction && !Dest.getAddress().isValid()); 27056e5a2e1SGeorge Burgess IV 27156e5a2e1SGeorge Burgess IV Address RetAddr = Address::invalid(); 272a2a9cfabSYaxun Liu Address RetAllocaAddr = Address::invalid(); 2734deb75d2SGeorge Burgess IV 2744deb75d2SGeorge Burgess IV EHScopeStack::stable_iterator LifetimeEndBlock; 2754deb75d2SGeorge Burgess IV llvm::Value *LifetimeSizePtr = nullptr; 2764deb75d2SGeorge Burgess IV llvm::IntrinsicInst *LifetimeStartInst = nullptr; 27756e5a2e1SGeorge Burgess IV if (!UseTemp) { 27856e5a2e1SGeorge Burgess IV RetAddr = Dest.getAddress(); 27956e5a2e1SGeorge Burgess IV } else { 280a2a9cfabSYaxun Liu RetAddr = CGF.CreateMemTemp(RetTy, "tmp", &RetAllocaAddr); 2812b13ff69SHsiangkai Wang llvm::TypeSize Size = 28256e5a2e1SGeorge Burgess IV CGF.CGM.getDataLayout().getTypeAllocSize(CGF.ConvertTypeForMem(RetTy)); 283a2a9cfabSYaxun Liu LifetimeSizePtr = CGF.EmitLifetimeStart(Size, RetAllocaAddr.getPointer()); 2844deb75d2SGeorge Burgess IV if (LifetimeSizePtr) { 2854deb75d2SGeorge Burgess IV LifetimeStartInst = 2864deb75d2SGeorge Burgess IV cast<llvm::IntrinsicInst>(std::prev(Builder.GetInsertPoint())); 2874deb75d2SGeorge Burgess IV assert(LifetimeStartInst->getIntrinsicID() == 2884deb75d2SGeorge Burgess IV llvm::Intrinsic::lifetime_start && 2894deb75d2SGeorge Burgess IV "Last insertion wasn't a lifetime.start?"); 2904deb75d2SGeorge Burgess IV 29156e5a2e1SGeorge Burgess IV CGF.pushFullExprCleanup<CodeGenFunction::CallLifetimeEnd>( 292a2a9cfabSYaxun Liu NormalEHLifetimeMarker, RetAllocaAddr, LifetimeSizePtr); 2934deb75d2SGeorge Burgess IV LifetimeEndBlock = CGF.EHStack.stable_begin(); 2944deb75d2SGeorge Burgess IV } 295021510e9SFariborz Jahanian } 296a5efa738SJohn McCall 29756e5a2e1SGeorge Burgess IV RValue Src = 298d35a4541SAkira Hatanaka EmitCall(ReturnValueSlot(RetAddr, Dest.isVolatile(), IsResultUnused, 299d35a4541SAkira Hatanaka Dest.isExternallyDestructed())); 30056e5a2e1SGeorge Burgess IV 3014deb75d2SGeorge Burgess IV if (!UseTemp) 3024deb75d2SGeorge Burgess IV return; 3034deb75d2SGeorge Burgess IV 304*b8d121ebSNikita Popov assert(Dest.isIgnored() || Dest.getPointer() != Src.getAggregatePointer()); 30556e5a2e1SGeorge Burgess IV EmitFinalDestCopy(E->getType(), Src); 3064deb75d2SGeorge Burgess IV 3074deb75d2SGeorge Burgess IV if (!RequiresDestruction && LifetimeStartInst) { 3084deb75d2SGeorge Burgess IV // If there's no dtor to run, the copy was the last use of our temporary. 3094deb75d2SGeorge Burgess IV // Since we're not guaranteed to be in an ExprWithCleanups, clean up 3104deb75d2SGeorge Burgess IV // eagerly. 3114deb75d2SGeorge Burgess IV CGF.DeactivateCleanupBlock(LifetimeEndBlock, LifetimeStartInst); 312a2a9cfabSYaxun Liu CGF.EmitLifetimeEnd(LifetimeSizePtr, RetAllocaAddr.getPointer()); 31356e5a2e1SGeorge Burgess IV } 314cc04e9f6SJohn McCall } 315cc04e9f6SJohn McCall 316ca9fc09cSMike Stump /// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired. 3177f416cc4SJohn McCall void AggExprEmitter::EmitFinalDestCopy(QualType type, RValue src) { 3184e8ca4faSJohn McCall assert(src.isAggregate() && "value must be aggregate value!"); 3197f416cc4SJohn McCall LValue srcLV = CGF.MakeAddrLValue(src.getAggregateAddress(), type); 3207275da0fSAkira Hatanaka EmitFinalDestCopy(type, srcLV, EVK_RValue); 3214e8ca4faSJohn McCall } 3227a51313dSChris Lattner 3234e8ca4faSJohn McCall /// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired. 3247275da0fSAkira Hatanaka void AggExprEmitter::EmitFinalDestCopy(QualType type, const LValue &src, 3257275da0fSAkira Hatanaka ExprValueKind SrcValueKind) { 3267a626f63SJohn McCall // If Dest is ignored, then we're evaluating an aggregate expression 3274e8ca4faSJohn McCall // in a context that doesn't care about the result. Note that loads 3284e8ca4faSJohn McCall // from volatile l-values force the existence of a non-ignored 3294e8ca4faSJohn McCall // destination. 3304e8ca4faSJohn McCall if (Dest.isIgnored()) 331ec3cbfe8SMike Stump return; 332c123623dSFariborz Jahanian 3337275da0fSAkira Hatanaka // Copy non-trivial C structs here. 3347275da0fSAkira Hatanaka LValue DstLV = CGF.MakeAddrLValue( 3357275da0fSAkira Hatanaka Dest.getAddress(), Dest.isVolatile() ? type.withVolatile() : type); 3367275da0fSAkira Hatanaka 3377275da0fSAkira Hatanaka if (SrcValueKind == EVK_RValue) { 3387275da0fSAkira Hatanaka if (type.isNonTrivialToPrimitiveDestructiveMove() == QualType::PCK_Struct) { 3397275da0fSAkira Hatanaka if (Dest.isPotentiallyAliased()) 3407275da0fSAkira Hatanaka CGF.callCStructMoveAssignmentOperator(DstLV, src); 3417275da0fSAkira Hatanaka else 3427275da0fSAkira Hatanaka CGF.callCStructMoveConstructor(DstLV, src); 3437275da0fSAkira Hatanaka return; 3447275da0fSAkira Hatanaka } 3457275da0fSAkira Hatanaka } else { 3467275da0fSAkira Hatanaka if (type.isNonTrivialToPrimitiveCopy() == QualType::PCK_Struct) { 3477275da0fSAkira Hatanaka if (Dest.isPotentiallyAliased()) 3487275da0fSAkira Hatanaka CGF.callCStructCopyAssignmentOperator(DstLV, src); 3497275da0fSAkira Hatanaka else 3507275da0fSAkira Hatanaka CGF.callCStructCopyConstructor(DstLV, src); 3517275da0fSAkira Hatanaka return; 3527275da0fSAkira Hatanaka } 3537275da0fSAkira Hatanaka } 3547275da0fSAkira Hatanaka 355f139ae3dSAkira Hatanaka AggValueSlot srcAgg = AggValueSlot::forLValue( 356f139ae3dSAkira Hatanaka src, CGF, AggValueSlot::IsDestructed, needsGC(type), 357f139ae3dSAkira Hatanaka AggValueSlot::IsAliased, AggValueSlot::MayOverlap); 3584e8ca4faSJohn McCall EmitCopy(type, Dest, srcAgg); 359332ec2ceSMike Stump } 3607a51313dSChris Lattner 3614e8ca4faSJohn McCall /// Perform a copy from the source into the destination. 3624e8ca4faSJohn McCall /// 3634e8ca4faSJohn McCall /// \param type - the type of the aggregate being copied; qualifiers are 3644e8ca4faSJohn McCall /// ignored 3654e8ca4faSJohn McCall void AggExprEmitter::EmitCopy(QualType type, const AggValueSlot &dest, 3664e8ca4faSJohn McCall const AggValueSlot &src) { 3674e8ca4faSJohn McCall if (dest.requiresGCollection()) { 368e78fac51SRichard Smith CharUnits sz = dest.getPreferredSize(CGF.getContext(), type); 3694e8ca4faSJohn McCall llvm::Value *size = llvm::ConstantInt::get(CGF.SizeTy, sz.getQuantity()); 370879d7266SFariborz Jahanian CGF.CGM.getObjCRuntime().EmitGCMemmoveCollectable(CGF, 3717f416cc4SJohn McCall dest.getAddress(), 3727f416cc4SJohn McCall src.getAddress(), 3734e8ca4faSJohn McCall size); 374879d7266SFariborz Jahanian return; 375879d7266SFariborz Jahanian } 3764e8ca4faSJohn McCall 377ca9fc09cSMike Stump // If the result of the assignment is used, copy the LHS there also. 3784e8ca4faSJohn McCall // It's volatile if either side is. Use the minimum alignment of 3794e8ca4faSJohn McCall // the two sides. 3801860b520SIvan A. Kosarev LValue DestLV = CGF.MakeAddrLValue(dest.getAddress(), type); 3811860b520SIvan A. Kosarev LValue SrcLV = CGF.MakeAddrLValue(src.getAddress(), type); 382e78fac51SRichard Smith CGF.EmitAggregateCopy(DestLV, SrcLV, type, dest.mayOverlap(), 3837f416cc4SJohn McCall dest.isVolatile() || src.isVolatile()); 3847a51313dSChris Lattner } 3857a51313dSChris Lattner 3869fc8faf9SAdrian Prantl /// Emit the initializer for a std::initializer_list initialized with a 387c83ed824SSebastian Redl /// real initializer list. 388cc1b96d3SRichard Smith void 389cc1b96d3SRichard Smith AggExprEmitter::VisitCXXStdInitializerListExpr(CXXStdInitializerListExpr *E) { 390cc1b96d3SRichard Smith // Emit an array containing the elements. The array is externally destructed 391cc1b96d3SRichard Smith // if the std::initializer_list object is. 392cc1b96d3SRichard Smith ASTContext &Ctx = CGF.getContext(); 393cc1b96d3SRichard Smith LValue Array = CGF.EmitLValue(E->getSubExpr()); 394cc1b96d3SRichard Smith assert(Array.isSimple() && "initializer_list array not a simple lvalue"); 395f139ae3dSAkira Hatanaka Address ArrayPtr = Array.getAddress(CGF); 396c83ed824SSebastian Redl 397cc1b96d3SRichard Smith const ConstantArrayType *ArrayType = 398cc1b96d3SRichard Smith Ctx.getAsConstantArrayType(E->getSubExpr()->getType()); 399cc1b96d3SRichard Smith assert(ArrayType && "std::initializer_list constructed from non-array"); 400c83ed824SSebastian Redl 401cc1b96d3SRichard Smith // FIXME: Perform the checks on the field types in SemaInit. 402cc1b96d3SRichard Smith RecordDecl *Record = E->getType()->castAs<RecordType>()->getDecl(); 403cc1b96d3SRichard Smith RecordDecl::field_iterator Field = Record->field_begin(); 404cc1b96d3SRichard Smith if (Field == Record->field_end()) { 405cc1b96d3SRichard Smith CGF.ErrorUnsupported(E, "weird std::initializer_list"); 406f2e0a307SSebastian Redl return; 407c83ed824SSebastian Redl } 408c83ed824SSebastian Redl 409c83ed824SSebastian Redl // Start pointer. 410cc1b96d3SRichard Smith if (!Field->getType()->isPointerType() || 411cc1b96d3SRichard Smith !Ctx.hasSameType(Field->getType()->getPointeeType(), 412cc1b96d3SRichard Smith ArrayType->getElementType())) { 413cc1b96d3SRichard Smith CGF.ErrorUnsupported(E, "weird std::initializer_list"); 414f2e0a307SSebastian Redl return; 415c83ed824SSebastian Redl } 416c83ed824SSebastian Redl 417cc1b96d3SRichard Smith AggValueSlot Dest = EnsureSlot(E->getType()); 4187f416cc4SJohn McCall LValue DestLV = CGF.MakeAddrLValue(Dest.getAddress(), E->getType()); 419cc1b96d3SRichard Smith LValue Start = CGF.EmitLValueForFieldInitialization(DestLV, *Field); 420cc1b96d3SRichard Smith llvm::Value *Zero = llvm::ConstantInt::get(CGF.PtrDiffTy, 0); 421cc1b96d3SRichard Smith llvm::Value *IdxStart[] = { Zero, Zero }; 4226225d0ccSNikita Popov llvm::Value *ArrayStart = Builder.CreateInBoundsGEP( 4236225d0ccSNikita Popov ArrayPtr.getElementType(), ArrayPtr.getPointer(), IdxStart, "arraystart"); 424cc1b96d3SRichard Smith CGF.EmitStoreThroughLValue(RValue::get(ArrayStart), Start); 425cc1b96d3SRichard Smith ++Field; 426cc1b96d3SRichard Smith 427cc1b96d3SRichard Smith if (Field == Record->field_end()) { 428cc1b96d3SRichard Smith CGF.ErrorUnsupported(E, "weird std::initializer_list"); 429f2e0a307SSebastian Redl return; 430c83ed824SSebastian Redl } 431cc1b96d3SRichard Smith 432cc1b96d3SRichard Smith llvm::Value *Size = Builder.getInt(ArrayType->getSize()); 433cc1b96d3SRichard Smith LValue EndOrLength = CGF.EmitLValueForFieldInitialization(DestLV, *Field); 434cc1b96d3SRichard Smith if (Field->getType()->isPointerType() && 435cc1b96d3SRichard Smith Ctx.hasSameType(Field->getType()->getPointeeType(), 436cc1b96d3SRichard Smith ArrayType->getElementType())) { 437c83ed824SSebastian Redl // End pointer. 438cc1b96d3SRichard Smith llvm::Value *IdxEnd[] = { Zero, Size }; 4396225d0ccSNikita Popov llvm::Value *ArrayEnd = Builder.CreateInBoundsGEP( 4406225d0ccSNikita Popov ArrayPtr.getElementType(), ArrayPtr.getPointer(), IdxEnd, "arrayend"); 441cc1b96d3SRichard Smith CGF.EmitStoreThroughLValue(RValue::get(ArrayEnd), EndOrLength); 442cc1b96d3SRichard Smith } else if (Ctx.hasSameType(Field->getType(), Ctx.getSizeType())) { 443c83ed824SSebastian Redl // Length. 444cc1b96d3SRichard Smith CGF.EmitStoreThroughLValue(RValue::get(Size), EndOrLength); 445c83ed824SSebastian Redl } else { 446cc1b96d3SRichard Smith CGF.ErrorUnsupported(E, "weird std::initializer_list"); 447f2e0a307SSebastian Redl return; 448c83ed824SSebastian Redl } 449c83ed824SSebastian Redl } 450c83ed824SSebastian Redl 4519fc8faf9SAdrian Prantl /// Determine if E is a trivial array filler, that is, one that is 4528edda962SRichard Smith /// equivalent to zero-initialization. 4538edda962SRichard Smith static bool isTrivialFiller(Expr *E) { 4548edda962SRichard Smith if (!E) 4558edda962SRichard Smith return true; 4568edda962SRichard Smith 4578edda962SRichard Smith if (isa<ImplicitValueInitExpr>(E)) 4588edda962SRichard Smith return true; 4598edda962SRichard Smith 4608edda962SRichard Smith if (auto *ILE = dyn_cast<InitListExpr>(E)) { 4618edda962SRichard Smith if (ILE->getNumInits()) 4628edda962SRichard Smith return false; 4638edda962SRichard Smith return isTrivialFiller(ILE->getArrayFiller()); 4648edda962SRichard Smith } 4658edda962SRichard Smith 4668edda962SRichard Smith if (auto *Cons = dyn_cast_or_null<CXXConstructExpr>(E)) 4678edda962SRichard Smith return Cons->getConstructor()->isDefaultConstructor() && 4688edda962SRichard Smith Cons->getConstructor()->isTrivial(); 4698edda962SRichard Smith 4708edda962SRichard Smith // FIXME: Are there other cases where we can avoid emitting an initializer? 4718edda962SRichard Smith return false; 4728edda962SRichard Smith } 4738edda962SRichard Smith 4749fc8faf9SAdrian Prantl /// Emit initialization of an array from an initializer list. 4757f416cc4SJohn McCall void AggExprEmitter::EmitArrayInit(Address DestPtr, llvm::ArrayType *AType, 476e0ef348cSIvan A. Kosarev QualType ArrayQTy, InitListExpr *E) { 477c83ed824SSebastian Redl uint64_t NumInitElements = E->getNumInits(); 478c83ed824SSebastian Redl 479c83ed824SSebastian Redl uint64_t NumArrayElements = AType->getNumElements(); 480c83ed824SSebastian Redl assert(NumInitElements <= NumArrayElements); 481c83ed824SSebastian Redl 482e0ef348cSIvan A. Kosarev QualType elementType = 483e0ef348cSIvan A. Kosarev CGF.getContext().getAsArrayType(ArrayQTy)->getElementType(); 484e0ef348cSIvan A. Kosarev 485c83ed824SSebastian Redl // DestPtr is an array*. Construct an elementType* by drilling 486c83ed824SSebastian Redl // down a level. 487c83ed824SSebastian Redl llvm::Value *zero = llvm::ConstantInt::get(CGF.SizeTy, 0); 488c83ed824SSebastian Redl llvm::Value *indices[] = { zero, zero }; 4896225d0ccSNikita Popov llvm::Value *begin = Builder.CreateInBoundsGEP( 4906225d0ccSNikita Popov DestPtr.getElementType(), DestPtr.getPointer(), indices, 4916225d0ccSNikita Popov "arrayinit.begin"); 4927f416cc4SJohn McCall 4937f416cc4SJohn McCall CharUnits elementSize = CGF.getContext().getTypeSizeInChars(elementType); 4947f416cc4SJohn McCall CharUnits elementAlign = 4957f416cc4SJohn McCall DestPtr.getAlignment().alignmentOfArrayElement(elementSize); 4966225d0ccSNikita Popov llvm::Type *llvmElementType = begin->getType()->getPointerElementType(); 497c83ed824SSebastian Redl 498e0ef348cSIvan A. Kosarev // Consider initializing the array by copying from a global. For this to be 499e0ef348cSIvan A. Kosarev // more efficient than per-element initialization, the size of the elements 500e0ef348cSIvan A. Kosarev // with explicit initializers should be large enough. 501e0ef348cSIvan A. Kosarev if (NumInitElements * elementSize.getQuantity() > 16 && 502e0ef348cSIvan A. Kosarev elementType.isTriviallyCopyableType(CGF.getContext())) { 503e0ef348cSIvan A. Kosarev CodeGen::CodeGenModule &CGM = CGF.CGM; 5041ac700cdSJohannes Altmanninger ConstantEmitter Emitter(CGF); 505e0ef348cSIvan A. Kosarev LangAS AS = ArrayQTy.getAddressSpace(); 506e0ef348cSIvan A. Kosarev if (llvm::Constant *C = Emitter.tryEmitForInitializer(E, AS, ArrayQTy)) { 507e0ef348cSIvan A. Kosarev auto GV = new llvm::GlobalVariable( 508e0ef348cSIvan A. Kosarev CGM.getModule(), C->getType(), 509e0ef348cSIvan A. Kosarev CGM.isTypeConstant(ArrayQTy, /* ExcludeCtorDtor= */ true), 510e0ef348cSIvan A. Kosarev llvm::GlobalValue::PrivateLinkage, C, "constinit", 511e0ef348cSIvan A. Kosarev /* InsertBefore= */ nullptr, llvm::GlobalVariable::NotThreadLocal, 512e0ef348cSIvan A. Kosarev CGM.getContext().getTargetAddressSpace(AS)); 513e0ef348cSIvan A. Kosarev Emitter.finalize(GV); 514e0ef348cSIvan A. Kosarev CharUnits Align = CGM.getContext().getTypeAlignInChars(ArrayQTy); 515c79099e0SGuillaume Chatelet GV->setAlignment(Align.getAsAlign()); 516e0ef348cSIvan A. Kosarev EmitFinalDestCopy(ArrayQTy, CGF.MakeAddrLValue(GV, ArrayQTy, Align)); 517e0ef348cSIvan A. Kosarev return; 518e0ef348cSIvan A. Kosarev } 519e0ef348cSIvan A. Kosarev } 520e0ef348cSIvan A. Kosarev 521c83ed824SSebastian Redl // Exception safety requires us to destroy all the 522c83ed824SSebastian Redl // already-constructed members if an initializer throws. 523c83ed824SSebastian Redl // For that, we'll need an EH cleanup. 524c83ed824SSebastian Redl QualType::DestructionKind dtorKind = elementType.isDestructedType(); 5257f416cc4SJohn McCall Address endOfInit = Address::invalid(); 526c83ed824SSebastian Redl EHScopeStack::stable_iterator cleanup; 5278a13c418SCraig Topper llvm::Instruction *cleanupDominator = nullptr; 528c83ed824SSebastian Redl if (CGF.needsEHCleanup(dtorKind)) { 529c83ed824SSebastian Redl // In principle we could tell the cleanup where we are more 530c83ed824SSebastian Redl // directly, but the control flow can get so varied here that it 531c83ed824SSebastian Redl // would actually be quite complex. Therefore we go through an 532c83ed824SSebastian Redl // alloca. 5337f416cc4SJohn McCall endOfInit = CGF.CreateTempAlloca(begin->getType(), CGF.getPointerAlign(), 534c83ed824SSebastian Redl "arrayinit.endOfInit"); 535c83ed824SSebastian Redl cleanupDominator = Builder.CreateStore(begin, endOfInit); 536c83ed824SSebastian Redl CGF.pushIrregularPartialArrayCleanup(begin, endOfInit, elementType, 5377f416cc4SJohn McCall elementAlign, 538c83ed824SSebastian Redl CGF.getDestroyer(dtorKind)); 539c83ed824SSebastian Redl cleanup = CGF.EHStack.stable_begin(); 540c83ed824SSebastian Redl 541c83ed824SSebastian Redl // Otherwise, remember that we didn't need a cleanup. 542c83ed824SSebastian Redl } else { 543c83ed824SSebastian Redl dtorKind = QualType::DK_none; 544c83ed824SSebastian Redl } 545c83ed824SSebastian Redl 546c83ed824SSebastian Redl llvm::Value *one = llvm::ConstantInt::get(CGF.SizeTy, 1); 547c83ed824SSebastian Redl 548c83ed824SSebastian Redl // The 'current element to initialize'. The invariants on this 549c83ed824SSebastian Redl // variable are complicated. Essentially, after each iteration of 550c83ed824SSebastian Redl // the loop, it points to the last initialized element, except 551c83ed824SSebastian Redl // that it points to the beginning of the array before any 552c83ed824SSebastian Redl // elements have been initialized. 553c83ed824SSebastian Redl llvm::Value *element = begin; 554c83ed824SSebastian Redl 555c83ed824SSebastian Redl // Emit the explicit initializers. 556c83ed824SSebastian Redl for (uint64_t i = 0; i != NumInitElements; ++i) { 557c83ed824SSebastian Redl // Advance to the next element. 558c83ed824SSebastian Redl if (i > 0) { 5596225d0ccSNikita Popov element = Builder.CreateInBoundsGEP( 5606225d0ccSNikita Popov llvmElementType, element, one, "arrayinit.element"); 561c83ed824SSebastian Redl 562c83ed824SSebastian Redl // Tell the cleanup that it needs to destroy up to this 563c83ed824SSebastian Redl // element. TODO: some of these stores can be trivially 564c83ed824SSebastian Redl // observed to be unnecessary. 5657f416cc4SJohn McCall if (endOfInit.isValid()) Builder.CreateStore(element, endOfInit); 566c83ed824SSebastian Redl } 567c83ed824SSebastian Redl 5687f416cc4SJohn McCall LValue elementLV = 5697f416cc4SJohn McCall CGF.MakeAddrLValue(Address(element, elementAlign), elementType); 570615ed1a3SChad Rosier EmitInitializationToLValue(E->getInit(i), elementLV); 571c83ed824SSebastian Redl } 572c83ed824SSebastian Redl 573c83ed824SSebastian Redl // Check whether there's a non-trivial array-fill expression. 574c83ed824SSebastian Redl Expr *filler = E->getArrayFiller(); 5758edda962SRichard Smith bool hasTrivialFiller = isTrivialFiller(filler); 576c83ed824SSebastian Redl 577c83ed824SSebastian Redl // Any remaining elements need to be zero-initialized, possibly 578c83ed824SSebastian Redl // using the filler expression. We can skip this if the we're 579c83ed824SSebastian Redl // emitting to zeroed memory. 580c83ed824SSebastian Redl if (NumInitElements != NumArrayElements && 581c83ed824SSebastian Redl !(Dest.isZeroed() && hasTrivialFiller && 582c83ed824SSebastian Redl CGF.getTypes().isZeroInitializable(elementType))) { 583c83ed824SSebastian Redl 584c83ed824SSebastian Redl // Use an actual loop. This is basically 585c83ed824SSebastian Redl // do { *array++ = filler; } while (array != end); 586c83ed824SSebastian Redl 587c83ed824SSebastian Redl // Advance to the start of the rest of the array. 588c83ed824SSebastian Redl if (NumInitElements) { 5896225d0ccSNikita Popov element = Builder.CreateInBoundsGEP( 5906225d0ccSNikita Popov llvmElementType, element, one, "arrayinit.start"); 5917f416cc4SJohn McCall if (endOfInit.isValid()) Builder.CreateStore(element, endOfInit); 592c83ed824SSebastian Redl } 593c83ed824SSebastian Redl 594c83ed824SSebastian Redl // Compute the end of the array. 5956225d0ccSNikita Popov llvm::Value *end = Builder.CreateInBoundsGEP( 5966225d0ccSNikita Popov llvmElementType, begin, 5976225d0ccSNikita Popov llvm::ConstantInt::get(CGF.SizeTy, NumArrayElements), "arrayinit.end"); 598c83ed824SSebastian Redl 599c83ed824SSebastian Redl llvm::BasicBlock *entryBB = Builder.GetInsertBlock(); 600c83ed824SSebastian Redl llvm::BasicBlock *bodyBB = CGF.createBasicBlock("arrayinit.body"); 601c83ed824SSebastian Redl 602c83ed824SSebastian Redl // Jump into the body. 603c83ed824SSebastian Redl CGF.EmitBlock(bodyBB); 604c83ed824SSebastian Redl llvm::PHINode *currentElement = 605c83ed824SSebastian Redl Builder.CreatePHI(element->getType(), 2, "arrayinit.cur"); 606c83ed824SSebastian Redl currentElement->addIncoming(element, entryBB); 607c83ed824SSebastian Redl 608c83ed824SSebastian Redl // Emit the actual filler expression. 60972236372SRichard Smith { 61072236372SRichard Smith // C++1z [class.temporary]p5: 61172236372SRichard Smith // when a default constructor is called to initialize an element of 61272236372SRichard Smith // an array with no corresponding initializer [...] the destruction of 61372236372SRichard Smith // every temporary created in a default argument is sequenced before 61472236372SRichard Smith // the construction of the next array element, if any 61572236372SRichard Smith CodeGenFunction::RunCleanupsScope CleanupsScope(CGF); 6167f416cc4SJohn McCall LValue elementLV = 6177f416cc4SJohn McCall CGF.MakeAddrLValue(Address(currentElement, elementAlign), elementType); 618c83ed824SSebastian Redl if (filler) 619615ed1a3SChad Rosier EmitInitializationToLValue(filler, elementLV); 620c83ed824SSebastian Redl else 621c83ed824SSebastian Redl EmitNullInitializationToLValue(elementLV); 62272236372SRichard Smith } 623c83ed824SSebastian Redl 624c83ed824SSebastian Redl // Move on to the next element. 6256225d0ccSNikita Popov llvm::Value *nextElement = Builder.CreateInBoundsGEP( 6266225d0ccSNikita Popov llvmElementType, currentElement, one, "arrayinit.next"); 627c83ed824SSebastian Redl 628c83ed824SSebastian Redl // Tell the EH cleanup that we finished with the last element. 6297f416cc4SJohn McCall if (endOfInit.isValid()) Builder.CreateStore(nextElement, endOfInit); 630c83ed824SSebastian Redl 631c83ed824SSebastian Redl // Leave the loop if we're done. 632c83ed824SSebastian Redl llvm::Value *done = Builder.CreateICmpEQ(nextElement, end, 633c83ed824SSebastian Redl "arrayinit.done"); 634c83ed824SSebastian Redl llvm::BasicBlock *endBB = CGF.createBasicBlock("arrayinit.end"); 635c83ed824SSebastian Redl Builder.CreateCondBr(done, endBB, bodyBB); 636c83ed824SSebastian Redl currentElement->addIncoming(nextElement, Builder.GetInsertBlock()); 637c83ed824SSebastian Redl 638c83ed824SSebastian Redl CGF.EmitBlock(endBB); 639c83ed824SSebastian Redl } 640c83ed824SSebastian Redl 641c83ed824SSebastian Redl // Leave the partial-array cleanup if we entered one. 642c83ed824SSebastian Redl if (dtorKind) CGF.DeactivateCleanupBlock(cleanup, cleanupDominator); 643c83ed824SSebastian Redl } 644c83ed824SSebastian Redl 6457a51313dSChris Lattner //===----------------------------------------------------------------------===// 6467a51313dSChris Lattner // Visitor Methods 6477a51313dSChris Lattner //===----------------------------------------------------------------------===// 6487a51313dSChris Lattner 649fe31481fSDouglas Gregor void AggExprEmitter::VisitMaterializeTemporaryExpr(MaterializeTemporaryExpr *E){ 650b0561b33STyker Visit(E->getSubExpr()); 651fe31481fSDouglas Gregor } 652fe31481fSDouglas Gregor 6531bf5846aSJohn McCall void AggExprEmitter::VisitOpaqueValueExpr(OpaqueValueExpr *e) { 654797afe3aSAkira Hatanaka // If this is a unique OVE, just visit its source expression. 655797afe3aSAkira Hatanaka if (e->isUnique()) 656797afe3aSAkira Hatanaka Visit(e->getSourceExpr()); 657797afe3aSAkira Hatanaka else 658797afe3aSAkira Hatanaka EmitFinalDestCopy(e->getType(), CGF.getOrCreateOpaqueLValueMapping(e)); 6591bf5846aSJohn McCall } 6601bf5846aSJohn McCall 6619b71f0cfSDouglas Gregor void 6629b71f0cfSDouglas Gregor AggExprEmitter::VisitCompoundLiteralExpr(CompoundLiteralExpr *E) { 663bea4c3d8SJohn McCall if (Dest.isPotentiallyAliased() && 664bea4c3d8SJohn McCall E->getType().isPODType(CGF.getContext())) { 6656c9d31ebSDouglas Gregor // For a POD type, just emit a load of the lvalue + a copy, because our 6666c9d31ebSDouglas Gregor // compound literal might alias the destination. 6676c9d31ebSDouglas Gregor EmitAggLoadOfLValue(E); 6686c9d31ebSDouglas Gregor return; 6696c9d31ebSDouglas Gregor } 6706c9d31ebSDouglas Gregor 6719b71f0cfSDouglas Gregor AggValueSlot Slot = EnsureSlot(E->getType()); 67240568fecSAkira Hatanaka 67340568fecSAkira Hatanaka // Block-scope compound literals are destroyed at the end of the enclosing 67440568fecSAkira Hatanaka // scope in C. 67540568fecSAkira Hatanaka bool Destruct = 67640568fecSAkira Hatanaka !CGF.getLangOpts().CPlusPlus && !Slot.isExternallyDestructed(); 67740568fecSAkira Hatanaka if (Destruct) 67840568fecSAkira Hatanaka Slot.setExternallyDestructed(); 67940568fecSAkira Hatanaka 6809b71f0cfSDouglas Gregor CGF.EmitAggExpr(E->getInitializer(), Slot); 68140568fecSAkira Hatanaka 68240568fecSAkira Hatanaka if (Destruct) 68340568fecSAkira Hatanaka if (QualType::DestructionKind DtorKind = E->getType().isDestructedType()) 68440568fecSAkira Hatanaka CGF.pushLifetimeExtendedDestroy( 68540568fecSAkira Hatanaka CGF.getCleanupKind(DtorKind), Slot.getAddress(), E->getType(), 68640568fecSAkira Hatanaka CGF.getDestroyer(DtorKind), DtorKind & EHCleanup); 6879b71f0cfSDouglas Gregor } 6889b71f0cfSDouglas Gregor 689a8ec7eb9SJohn McCall /// Attempt to look through various unimportant expressions to find a 690a8ec7eb9SJohn McCall /// cast of the given kind. 69103a9526fSEhud Katz static Expr *findPeephole(Expr *op, CastKind kind, const ASTContext &ctx) { 69203a9526fSEhud Katz op = op->IgnoreParenNoopCasts(ctx); 69303a9526fSEhud Katz if (auto castE = dyn_cast<CastExpr>(op)) { 694a8ec7eb9SJohn McCall if (castE->getCastKind() == kind) 695a8ec7eb9SJohn McCall return castE->getSubExpr(); 696a8ec7eb9SJohn McCall } 6978a13c418SCraig Topper return nullptr; 698a8ec7eb9SJohn McCall } 6999b71f0cfSDouglas Gregor 700ec143777SAnders Carlsson void AggExprEmitter::VisitCastExpr(CastExpr *E) { 7012bf9b4c0SAlexey Bataev if (const auto *ECE = dyn_cast<ExplicitCastExpr>(E)) 7022bf9b4c0SAlexey Bataev CGF.CGM.EmitExplicitCastExprType(ECE, &CGF); 7031fb7ae9eSAnders Carlsson switch (E->getCastKind()) { 7048a01a751SAnders Carlsson case CK_Dynamic: { 70569d0d262SRichard Smith // FIXME: Can this actually happen? We have no test coverage for it. 7061c073f47SDouglas Gregor assert(isa<CXXDynamicCastExpr>(E) && "CK_Dynamic without a dynamic_cast?"); 70769d0d262SRichard Smith LValue LV = CGF.EmitCheckedLValue(E->getSubExpr(), 7084d1458edSRichard Smith CodeGenFunction::TCK_Load); 7091c073f47SDouglas Gregor // FIXME: Do we also need to handle property references here? 7101c073f47SDouglas Gregor if (LV.isSimple()) 711f139ae3dSAkira Hatanaka CGF.EmitDynamicCast(LV.getAddress(CGF), cast<CXXDynamicCastExpr>(E)); 7121c073f47SDouglas Gregor else 7131c073f47SDouglas Gregor CGF.CGM.ErrorUnsupported(E, "non-simple lvalue dynamic_cast"); 7141c073f47SDouglas Gregor 7157a626f63SJohn McCall if (!Dest.isIgnored()) 7161c073f47SDouglas Gregor CGF.CGM.ErrorUnsupported(E, "lvalue dynamic_cast with a destination"); 7171c073f47SDouglas Gregor break; 7181c073f47SDouglas Gregor } 7191c073f47SDouglas Gregor 720e302792bSJohn McCall case CK_ToUnion: { 721892bb0caSReid Kleckner // Evaluate even if the destination is ignored. 722892bb0caSReid Kleckner if (Dest.isIgnored()) { 723892bb0caSReid Kleckner CGF.EmitAnyExpr(E->getSubExpr(), AggValueSlot::ignored(), 724892bb0caSReid Kleckner /*ignoreResult=*/true); 725892bb0caSReid Kleckner break; 726892bb0caSReid Kleckner } 72758989b71SJohn McCall 7287ffcf93bSNuno Lopes // GCC union extension 7292e442a00SDaniel Dunbar QualType Ty = E->getSubExpr()->getType(); 7307f416cc4SJohn McCall Address CastPtr = 7317f416cc4SJohn McCall Builder.CreateElementBitCast(Dest.getAddress(), CGF.ConvertType(Ty)); 7321553b190SJohn McCall EmitInitializationToLValue(E->getSubExpr(), 733615ed1a3SChad Rosier CGF.MakeAddrLValue(CastPtr, Ty)); 7341fb7ae9eSAnders Carlsson break; 7357ffcf93bSNuno Lopes } 7367ffcf93bSNuno Lopes 737eee944e7SErik Pilkington case CK_LValueToRValueBitCast: { 738eee944e7SErik Pilkington if (Dest.isIgnored()) { 739eee944e7SErik Pilkington CGF.EmitAnyExpr(E->getSubExpr(), AggValueSlot::ignored(), 740eee944e7SErik Pilkington /*ignoreResult=*/true); 741eee944e7SErik Pilkington break; 742eee944e7SErik Pilkington } 743eee944e7SErik Pilkington 744eee944e7SErik Pilkington LValue SourceLV = CGF.EmitLValue(E->getSubExpr()); 745eee944e7SErik Pilkington Address SourceAddress = 746f139ae3dSAkira Hatanaka Builder.CreateElementBitCast(SourceLV.getAddress(CGF), CGF.Int8Ty); 747eee944e7SErik Pilkington Address DestAddress = 748eee944e7SErik Pilkington Builder.CreateElementBitCast(Dest.getAddress(), CGF.Int8Ty); 749eee944e7SErik Pilkington llvm::Value *SizeVal = llvm::ConstantInt::get( 750eee944e7SErik Pilkington CGF.SizeTy, 751eee944e7SErik Pilkington CGF.getContext().getTypeSizeInChars(E->getType()).getQuantity()); 752eee944e7SErik Pilkington Builder.CreateMemCpy(DestAddress, SourceAddress, SizeVal); 753eee944e7SErik Pilkington break; 754eee944e7SErik Pilkington } 755eee944e7SErik Pilkington 756e302792bSJohn McCall case CK_DerivedToBase: 757e302792bSJohn McCall case CK_BaseToDerived: 758e302792bSJohn McCall case CK_UncheckedDerivedToBase: { 75983d382b1SDavid Blaikie llvm_unreachable("cannot perform hierarchy conversion in EmitAggExpr: " 760aae38d66SDouglas Gregor "should have been unpacked before we got here"); 761aae38d66SDouglas Gregor } 762aae38d66SDouglas Gregor 763a8ec7eb9SJohn McCall case CK_NonAtomicToAtomic: 764a8ec7eb9SJohn McCall case CK_AtomicToNonAtomic: { 765a8ec7eb9SJohn McCall bool isToAtomic = (E->getCastKind() == CK_NonAtomicToAtomic); 766a8ec7eb9SJohn McCall 767a8ec7eb9SJohn McCall // Determine the atomic and value types. 768a8ec7eb9SJohn McCall QualType atomicType = E->getSubExpr()->getType(); 769a8ec7eb9SJohn McCall QualType valueType = E->getType(); 770a8ec7eb9SJohn McCall if (isToAtomic) std::swap(atomicType, valueType); 771a8ec7eb9SJohn McCall 772a8ec7eb9SJohn McCall assert(atomicType->isAtomicType()); 773a8ec7eb9SJohn McCall assert(CGF.getContext().hasSameUnqualifiedType(valueType, 774a8ec7eb9SJohn McCall atomicType->castAs<AtomicType>()->getValueType())); 775a8ec7eb9SJohn McCall 776a8ec7eb9SJohn McCall // Just recurse normally if we're ignoring the result or the 777a8ec7eb9SJohn McCall // atomic type doesn't change representation. 778a8ec7eb9SJohn McCall if (Dest.isIgnored() || !CGF.CGM.isPaddedAtomicType(atomicType)) { 779a8ec7eb9SJohn McCall return Visit(E->getSubExpr()); 780a8ec7eb9SJohn McCall } 781a8ec7eb9SJohn McCall 782a8ec7eb9SJohn McCall CastKind peepholeTarget = 783a8ec7eb9SJohn McCall (isToAtomic ? CK_AtomicToNonAtomic : CK_NonAtomicToAtomic); 784a8ec7eb9SJohn McCall 785a8ec7eb9SJohn McCall // These two cases are reverses of each other; try to peephole them. 78603a9526fSEhud Katz if (Expr *op = 78703a9526fSEhud Katz findPeephole(E->getSubExpr(), peepholeTarget, CGF.getContext())) { 788a8ec7eb9SJohn McCall assert(CGF.getContext().hasSameUnqualifiedType(op->getType(), 789a8ec7eb9SJohn McCall E->getType()) && 790a8ec7eb9SJohn McCall "peephole significantly changed types?"); 791a8ec7eb9SJohn McCall return Visit(op); 792a8ec7eb9SJohn McCall } 793a8ec7eb9SJohn McCall 794a8ec7eb9SJohn McCall // If we're converting an r-value of non-atomic type to an r-value 795be4504dfSEli Friedman // of atomic type, just emit directly into the relevant sub-object. 796a8ec7eb9SJohn McCall if (isToAtomic) { 797be4504dfSEli Friedman AggValueSlot valueDest = Dest; 798be4504dfSEli Friedman if (!valueDest.isIgnored() && CGF.CGM.isPaddedAtomicType(atomicType)) { 7992a8c18d9SAlexander Kornienko // Zero-initialize. (Strictly speaking, we only need to initialize 800be4504dfSEli Friedman // the padding at the end, but this is simpler.) 801be4504dfSEli Friedman if (!Dest.isZeroed()) 8027f416cc4SJohn McCall CGF.EmitNullInitialization(Dest.getAddress(), atomicType); 803be4504dfSEli Friedman 804be4504dfSEli Friedman // Build a GEP to refer to the subobject. 8057f416cc4SJohn McCall Address valueAddr = 806751fe286SJames Y Knight CGF.Builder.CreateStructGEP(valueDest.getAddress(), 0); 807be4504dfSEli Friedman valueDest = AggValueSlot::forAddr(valueAddr, 808be4504dfSEli Friedman valueDest.getQualifiers(), 809be4504dfSEli Friedman valueDest.isExternallyDestructed(), 810be4504dfSEli Friedman valueDest.requiresGCollection(), 811be4504dfSEli Friedman valueDest.isPotentiallyAliased(), 812e78fac51SRichard Smith AggValueSlot::DoesNotOverlap, 813be4504dfSEli Friedman AggValueSlot::IsZeroed); 814be4504dfSEli Friedman } 815be4504dfSEli Friedman 816035b39e3SEli Friedman CGF.EmitAggExpr(E->getSubExpr(), valueDest); 817a8ec7eb9SJohn McCall return; 818a8ec7eb9SJohn McCall } 819a8ec7eb9SJohn McCall 820a8ec7eb9SJohn McCall // Otherwise, we're converting an atomic type to a non-atomic type. 821be4504dfSEli Friedman // Make an atomic temporary, emit into that, and then copy the value out. 822a8ec7eb9SJohn McCall AggValueSlot atomicSlot = 823a8ec7eb9SJohn McCall CGF.CreateAggTemp(atomicType, "atomic-to-nonatomic.temp"); 824a8ec7eb9SJohn McCall CGF.EmitAggExpr(E->getSubExpr(), atomicSlot); 825a8ec7eb9SJohn McCall 826751fe286SJames Y Knight Address valueAddr = Builder.CreateStructGEP(atomicSlot.getAddress(), 0); 827a8ec7eb9SJohn McCall RValue rvalue = RValue::getAggregate(valueAddr, atomicSlot.isVolatile()); 828a8ec7eb9SJohn McCall return EmitFinalDestCopy(valueType, rvalue); 829a8ec7eb9SJohn McCall } 830094c7266SAnastasia Stulova case CK_AddressSpaceConversion: 831094c7266SAnastasia Stulova return Visit(E->getSubExpr()); 832a8ec7eb9SJohn McCall 8334e8ca4faSJohn McCall case CK_LValueToRValue: 8344e8ca4faSJohn McCall // If we're loading from a volatile type, force the destination 8354e8ca4faSJohn McCall // into existence. 8364e8ca4faSJohn McCall if (E->getSubExpr()->getType().isVolatileQualified()) { 837d35a4541SAkira Hatanaka bool Destruct = 838d35a4541SAkira Hatanaka !Dest.isExternallyDestructed() && 839d35a4541SAkira Hatanaka E->getType().isDestructedType() == QualType::DK_nontrivial_c_struct; 840d35a4541SAkira Hatanaka if (Destruct) 841d35a4541SAkira Hatanaka Dest.setExternallyDestructed(); 8424e8ca4faSJohn McCall EnsureDest(E->getType()); 843d35a4541SAkira Hatanaka Visit(E->getSubExpr()); 844d35a4541SAkira Hatanaka 845d35a4541SAkira Hatanaka if (Destruct) 846d35a4541SAkira Hatanaka CGF.pushDestroy(QualType::DK_nontrivial_c_struct, Dest.getAddress(), 847d35a4541SAkira Hatanaka E->getType()); 848d35a4541SAkira Hatanaka 849d35a4541SAkira Hatanaka return; 8504e8ca4faSJohn McCall } 851a8ec7eb9SJohn McCall 852f3b3ccdaSAdrian Prantl LLVM_FALLTHROUGH; 8534e8ca4faSJohn McCall 854094c7266SAnastasia Stulova 855e302792bSJohn McCall case CK_NoOp: 856e302792bSJohn McCall case CK_UserDefinedConversion: 857e302792bSJohn McCall case CK_ConstructorConversion: 8582a69547fSEli Friedman assert(CGF.getContext().hasSameUnqualifiedType(E->getSubExpr()->getType(), 8592a69547fSEli Friedman E->getType()) && 8600f398c44SChris Lattner "Implicit cast types must be compatible"); 8617a51313dSChris Lattner Visit(E->getSubExpr()); 8621fb7ae9eSAnders Carlsson break; 863b05a3e55SAnders Carlsson 864e302792bSJohn McCall case CK_LValueBitCast: 865f3735e01SJohn McCall llvm_unreachable("should not be emitting lvalue bitcast as rvalue"); 86631996343SJohn McCall 867f3735e01SJohn McCall case CK_Dependent: 868f3735e01SJohn McCall case CK_BitCast: 869f3735e01SJohn McCall case CK_ArrayToPointerDecay: 870f3735e01SJohn McCall case CK_FunctionToPointerDecay: 871f3735e01SJohn McCall case CK_NullToPointer: 872f3735e01SJohn McCall case CK_NullToMemberPointer: 873f3735e01SJohn McCall case CK_BaseToDerivedMemberPointer: 874f3735e01SJohn McCall case CK_DerivedToBaseMemberPointer: 875f3735e01SJohn McCall case CK_MemberPointerToBoolean: 876c62bb391SJohn McCall case CK_ReinterpretMemberPointer: 877f3735e01SJohn McCall case CK_IntegralToPointer: 878f3735e01SJohn McCall case CK_PointerToIntegral: 879f3735e01SJohn McCall case CK_PointerToBoolean: 880f3735e01SJohn McCall case CK_ToVoid: 881f3735e01SJohn McCall case CK_VectorSplat: 882f3735e01SJohn McCall case CK_IntegralCast: 883df1ed009SGeorge Burgess IV case CK_BooleanToSignedIntegral: 884f3735e01SJohn McCall case CK_IntegralToBoolean: 885f3735e01SJohn McCall case CK_IntegralToFloating: 886f3735e01SJohn McCall case CK_FloatingToIntegral: 887f3735e01SJohn McCall case CK_FloatingToBoolean: 888f3735e01SJohn McCall case CK_FloatingCast: 8899320b87cSJohn McCall case CK_CPointerToObjCPointerCast: 8909320b87cSJohn McCall case CK_BlockPointerToObjCPointerCast: 891f3735e01SJohn McCall case CK_AnyPointerToBlockPointerCast: 892f3735e01SJohn McCall case CK_ObjCObjectLValueCast: 893f3735e01SJohn McCall case CK_FloatingRealToComplex: 894f3735e01SJohn McCall case CK_FloatingComplexToReal: 895f3735e01SJohn McCall case CK_FloatingComplexToBoolean: 896f3735e01SJohn McCall case CK_FloatingComplexCast: 897f3735e01SJohn McCall case CK_FloatingComplexToIntegralComplex: 898f3735e01SJohn McCall case CK_IntegralRealToComplex: 899f3735e01SJohn McCall case CK_IntegralComplexToReal: 900f3735e01SJohn McCall case CK_IntegralComplexToBoolean: 901f3735e01SJohn McCall case CK_IntegralComplexCast: 902f3735e01SJohn McCall case CK_IntegralComplexToFloatingComplex: 9032d637d2eSJohn McCall case CK_ARCProduceObject: 9042d637d2eSJohn McCall case CK_ARCConsumeObject: 9052d637d2eSJohn McCall case CK_ARCReclaimReturnedObject: 9062d637d2eSJohn McCall case CK_ARCExtendBlockObject: 907ed90df38SDouglas Gregor case CK_CopyAndAutoreleaseBlockObject: 90834866c77SEli Friedman case CK_BuiltinFnToFnPtr: 909b555b76eSAndrew Savonichev case CK_ZeroToOCLOpaqueType: 91071ab6c98SSaurabh Jha case CK_MatrixCast: 911094c7266SAnastasia Stulova 9120bc4b2d3SYaxun Liu case CK_IntToOCLSampler: 9139fa7f484SBevin Hansson case CK_FloatingToFixedPoint: 9149fa7f484SBevin Hansson case CK_FixedPointToFloating: 91599bda375SLeonard Chan case CK_FixedPointCast: 916b4ba467dSLeonard Chan case CK_FixedPointToBoolean: 9178f7caae0SLeonard Chan case CK_FixedPointToIntegral: 9188f7caae0SLeonard Chan case CK_IntegralToFixedPoint: 919f3735e01SJohn McCall llvm_unreachable("cast kind invalid for aggregate types"); 9201fb7ae9eSAnders Carlsson } 9217a51313dSChris Lattner } 9227a51313dSChris Lattner 9230f398c44SChris Lattner void AggExprEmitter::VisitCallExpr(const CallExpr *E) { 924ced8bdf7SDavid Majnemer if (E->getCallReturnType(CGF.getContext())->isReferenceType()) { 925ddcbfe7bSAnders Carlsson EmitAggLoadOfLValue(E); 926ddcbfe7bSAnders Carlsson return; 927ddcbfe7bSAnders Carlsson } 928ddcbfe7bSAnders Carlsson 92956e5a2e1SGeorge Burgess IV withReturnValueSlot(E, [&](ReturnValueSlot Slot) { 93056e5a2e1SGeorge Burgess IV return CGF.EmitCallExpr(E, Slot); 93156e5a2e1SGeorge Burgess IV }); 9327a51313dSChris Lattner } 9330f398c44SChris Lattner 9340f398c44SChris Lattner void AggExprEmitter::VisitObjCMessageExpr(ObjCMessageExpr *E) { 93556e5a2e1SGeorge Burgess IV withReturnValueSlot(E, [&](ReturnValueSlot Slot) { 93656e5a2e1SGeorge Burgess IV return CGF.EmitObjCMessageExpr(E, Slot); 93756e5a2e1SGeorge Burgess IV }); 938b1d329daSChris Lattner } 9397a51313dSChris Lattner 9400f398c44SChris Lattner void AggExprEmitter::VisitBinComma(const BinaryOperator *E) { 941a2342eb8SJohn McCall CGF.EmitIgnoredExpr(E->getLHS()); 9427a626f63SJohn McCall Visit(E->getRHS()); 9434b0e2a30SEli Friedman } 9444b0e2a30SEli Friedman 9457a51313dSChris Lattner void AggExprEmitter::VisitStmtExpr(const StmtExpr *E) { 946ce1de617SJohn McCall CodeGenFunction::StmtExprEvaluation eval(CGF); 9477a626f63SJohn McCall CGF.EmitCompoundStmt(*E->getSubStmt(), true, Dest); 9487a51313dSChris Lattner } 9497a51313dSChris Lattner 9500683c0e6SEric Fiselier enum CompareKind { 9510683c0e6SEric Fiselier CK_Less, 9520683c0e6SEric Fiselier CK_Greater, 9530683c0e6SEric Fiselier CK_Equal, 9540683c0e6SEric Fiselier }; 9550683c0e6SEric Fiselier 9560683c0e6SEric Fiselier static llvm::Value *EmitCompare(CGBuilderTy &Builder, CodeGenFunction &CGF, 9570683c0e6SEric Fiselier const BinaryOperator *E, llvm::Value *LHS, 9580683c0e6SEric Fiselier llvm::Value *RHS, CompareKind Kind, 9590683c0e6SEric Fiselier const char *NameSuffix = "") { 9600683c0e6SEric Fiselier QualType ArgTy = E->getLHS()->getType(); 9610683c0e6SEric Fiselier if (const ComplexType *CT = ArgTy->getAs<ComplexType>()) 9620683c0e6SEric Fiselier ArgTy = CT->getElementType(); 9630683c0e6SEric Fiselier 9640683c0e6SEric Fiselier if (const auto *MPT = ArgTy->getAs<MemberPointerType>()) { 9650683c0e6SEric Fiselier assert(Kind == CK_Equal && 9660683c0e6SEric Fiselier "member pointers may only be compared for equality"); 9670683c0e6SEric Fiselier return CGF.CGM.getCXXABI().EmitMemberPointerComparison( 9680683c0e6SEric Fiselier CGF, LHS, RHS, MPT, /*IsInequality*/ false); 9690683c0e6SEric Fiselier } 9700683c0e6SEric Fiselier 9710683c0e6SEric Fiselier // Compute the comparison instructions for the specified comparison kind. 9720683c0e6SEric Fiselier struct CmpInstInfo { 9730683c0e6SEric Fiselier const char *Name; 9740683c0e6SEric Fiselier llvm::CmpInst::Predicate FCmp; 9750683c0e6SEric Fiselier llvm::CmpInst::Predicate SCmp; 9760683c0e6SEric Fiselier llvm::CmpInst::Predicate UCmp; 9770683c0e6SEric Fiselier }; 9780683c0e6SEric Fiselier CmpInstInfo InstInfo = [&]() -> CmpInstInfo { 9790683c0e6SEric Fiselier using FI = llvm::FCmpInst; 9800683c0e6SEric Fiselier using II = llvm::ICmpInst; 9810683c0e6SEric Fiselier switch (Kind) { 9820683c0e6SEric Fiselier case CK_Less: 9830683c0e6SEric Fiselier return {"cmp.lt", FI::FCMP_OLT, II::ICMP_SLT, II::ICMP_ULT}; 9840683c0e6SEric Fiselier case CK_Greater: 9850683c0e6SEric Fiselier return {"cmp.gt", FI::FCMP_OGT, II::ICMP_SGT, II::ICMP_UGT}; 9860683c0e6SEric Fiselier case CK_Equal: 9870683c0e6SEric Fiselier return {"cmp.eq", FI::FCMP_OEQ, II::ICMP_EQ, II::ICMP_EQ}; 9880683c0e6SEric Fiselier } 9893366dcfeSSimon Pilgrim llvm_unreachable("Unrecognised CompareKind enum"); 9900683c0e6SEric Fiselier }(); 9910683c0e6SEric Fiselier 9920683c0e6SEric Fiselier if (ArgTy->hasFloatingRepresentation()) 9930683c0e6SEric Fiselier return Builder.CreateFCmp(InstInfo.FCmp, LHS, RHS, 9940683c0e6SEric Fiselier llvm::Twine(InstInfo.Name) + NameSuffix); 9950683c0e6SEric Fiselier if (ArgTy->isIntegralOrEnumerationType() || ArgTy->isPointerType()) { 9960683c0e6SEric Fiselier auto Inst = 9970683c0e6SEric Fiselier ArgTy->hasSignedIntegerRepresentation() ? InstInfo.SCmp : InstInfo.UCmp; 9980683c0e6SEric Fiselier return Builder.CreateICmp(Inst, LHS, RHS, 9990683c0e6SEric Fiselier llvm::Twine(InstInfo.Name) + NameSuffix); 10000683c0e6SEric Fiselier } 10010683c0e6SEric Fiselier 10020683c0e6SEric Fiselier llvm_unreachable("unsupported aggregate binary expression should have " 10030683c0e6SEric Fiselier "already been handled"); 10040683c0e6SEric Fiselier } 10050683c0e6SEric Fiselier 10060683c0e6SEric Fiselier void AggExprEmitter::VisitBinCmp(const BinaryOperator *E) { 10070683c0e6SEric Fiselier using llvm::BasicBlock; 10080683c0e6SEric Fiselier using llvm::PHINode; 10090683c0e6SEric Fiselier using llvm::Value; 10100683c0e6SEric Fiselier assert(CGF.getContext().hasSameType(E->getLHS()->getType(), 10110683c0e6SEric Fiselier E->getRHS()->getType())); 10120683c0e6SEric Fiselier const ComparisonCategoryInfo &CmpInfo = 10130683c0e6SEric Fiselier CGF.getContext().CompCategories.getInfoForType(E->getType()); 10140683c0e6SEric Fiselier assert(CmpInfo.Record->isTriviallyCopyable() && 10150683c0e6SEric Fiselier "cannot copy non-trivially copyable aggregate"); 10160683c0e6SEric Fiselier 10170683c0e6SEric Fiselier QualType ArgTy = E->getLHS()->getType(); 10180683c0e6SEric Fiselier 10190683c0e6SEric Fiselier if (!ArgTy->isIntegralOrEnumerationType() && !ArgTy->isRealFloatingType() && 10200683c0e6SEric Fiselier !ArgTy->isNullPtrType() && !ArgTy->isPointerType() && 10210683c0e6SEric Fiselier !ArgTy->isMemberPointerType() && !ArgTy->isAnyComplexType()) { 1022c5fb8580SEric Fiselier return CGF.ErrorUnsupported(E, "aggregate three-way comparison"); 10230683c0e6SEric Fiselier } 10240683c0e6SEric Fiselier bool IsComplex = ArgTy->isAnyComplexType(); 10250683c0e6SEric Fiselier 10260683c0e6SEric Fiselier // Evaluate the operands to the expression and extract their values. 10270683c0e6SEric Fiselier auto EmitOperand = [&](Expr *E) -> std::pair<Value *, Value *> { 10280683c0e6SEric Fiselier RValue RV = CGF.EmitAnyExpr(E); 10290683c0e6SEric Fiselier if (RV.isScalar()) 10300683c0e6SEric Fiselier return {RV.getScalarVal(), nullptr}; 10310683c0e6SEric Fiselier if (RV.isAggregate()) 10320683c0e6SEric Fiselier return {RV.getAggregatePointer(), nullptr}; 10330683c0e6SEric Fiselier assert(RV.isComplex()); 10340683c0e6SEric Fiselier return RV.getComplexVal(); 10350683c0e6SEric Fiselier }; 10360683c0e6SEric Fiselier auto LHSValues = EmitOperand(E->getLHS()), 10370683c0e6SEric Fiselier RHSValues = EmitOperand(E->getRHS()); 10380683c0e6SEric Fiselier 10390683c0e6SEric Fiselier auto EmitCmp = [&](CompareKind K) { 10400683c0e6SEric Fiselier Value *Cmp = EmitCompare(Builder, CGF, E, LHSValues.first, RHSValues.first, 10410683c0e6SEric Fiselier K, IsComplex ? ".r" : ""); 10420683c0e6SEric Fiselier if (!IsComplex) 10430683c0e6SEric Fiselier return Cmp; 10440683c0e6SEric Fiselier assert(K == CompareKind::CK_Equal); 10450683c0e6SEric Fiselier Value *CmpImag = EmitCompare(Builder, CGF, E, LHSValues.second, 10460683c0e6SEric Fiselier RHSValues.second, K, ".i"); 10470683c0e6SEric Fiselier return Builder.CreateAnd(Cmp, CmpImag, "and.eq"); 10480683c0e6SEric Fiselier }; 10490683c0e6SEric Fiselier auto EmitCmpRes = [&](const ComparisonCategoryInfo::ValueInfo *VInfo) { 10500683c0e6SEric Fiselier return Builder.getInt(VInfo->getIntValue()); 10510683c0e6SEric Fiselier }; 10520683c0e6SEric Fiselier 10530683c0e6SEric Fiselier Value *Select; 10540683c0e6SEric Fiselier if (ArgTy->isNullPtrType()) { 10550683c0e6SEric Fiselier Select = EmitCmpRes(CmpInfo.getEqualOrEquiv()); 10560683c0e6SEric Fiselier } else if (!CmpInfo.isPartial()) { 10570683c0e6SEric Fiselier Value *SelectOne = 10580683c0e6SEric Fiselier Builder.CreateSelect(EmitCmp(CK_Less), EmitCmpRes(CmpInfo.getLess()), 10590683c0e6SEric Fiselier EmitCmpRes(CmpInfo.getGreater()), "sel.lt"); 10600683c0e6SEric Fiselier Select = Builder.CreateSelect(EmitCmp(CK_Equal), 10610683c0e6SEric Fiselier EmitCmpRes(CmpInfo.getEqualOrEquiv()), 10620683c0e6SEric Fiselier SelectOne, "sel.eq"); 10630683c0e6SEric Fiselier } else { 10640683c0e6SEric Fiselier Value *SelectEq = Builder.CreateSelect( 10650683c0e6SEric Fiselier EmitCmp(CK_Equal), EmitCmpRes(CmpInfo.getEqualOrEquiv()), 10660683c0e6SEric Fiselier EmitCmpRes(CmpInfo.getUnordered()), "sel.eq"); 10670683c0e6SEric Fiselier Value *SelectGT = Builder.CreateSelect(EmitCmp(CK_Greater), 10680683c0e6SEric Fiselier EmitCmpRes(CmpInfo.getGreater()), 10690683c0e6SEric Fiselier SelectEq, "sel.gt"); 10700683c0e6SEric Fiselier Select = Builder.CreateSelect( 10710683c0e6SEric Fiselier EmitCmp(CK_Less), EmitCmpRes(CmpInfo.getLess()), SelectGT, "sel.lt"); 10720683c0e6SEric Fiselier } 10730683c0e6SEric Fiselier // Create the return value in the destination slot. 10740683c0e6SEric Fiselier EnsureDest(E->getType()); 10750683c0e6SEric Fiselier LValue DestLV = CGF.MakeAddrLValue(Dest.getAddress(), E->getType()); 10760683c0e6SEric Fiselier 10770683c0e6SEric Fiselier // Emit the address of the first (and only) field in the comparison category 10780683c0e6SEric Fiselier // type, and initialize it from the constant integer value selected above. 10790683c0e6SEric Fiselier LValue FieldLV = CGF.EmitLValueForFieldInitialization( 10800683c0e6SEric Fiselier DestLV, *CmpInfo.Record->field_begin()); 10810683c0e6SEric Fiselier CGF.EmitStoreThroughLValue(RValue::get(Select), FieldLV, /*IsInit*/ true); 10820683c0e6SEric Fiselier 10830683c0e6SEric Fiselier // All done! The result is in the Dest slot. 10840683c0e6SEric Fiselier } 10850683c0e6SEric Fiselier 10867a51313dSChris Lattner void AggExprEmitter::VisitBinaryOperator(const BinaryOperator *E) { 1087e302792bSJohn McCall if (E->getOpcode() == BO_PtrMemD || E->getOpcode() == BO_PtrMemI) 1088ffba662dSFariborz Jahanian VisitPointerToDataMemberBinaryOperator(E); 1089ffba662dSFariborz Jahanian else 1090a7c8cf62SDaniel Dunbar CGF.ErrorUnsupported(E, "aggregate binary expression"); 10917a51313dSChris Lattner } 10927a51313dSChris Lattner 1093ffba662dSFariborz Jahanian void AggExprEmitter::VisitPointerToDataMemberBinaryOperator( 1094ffba662dSFariborz Jahanian const BinaryOperator *E) { 1095ffba662dSFariborz Jahanian LValue LV = CGF.EmitPointerToDataMemberBinaryExpr(E); 10964e8ca4faSJohn McCall EmitFinalDestCopy(E->getType(), LV); 10974e8ca4faSJohn McCall } 10984e8ca4faSJohn McCall 10994e8ca4faSJohn McCall /// Is the value of the given expression possibly a reference to or 11004e8ca4faSJohn McCall /// into a __block variable? 11014e8ca4faSJohn McCall static bool isBlockVarRef(const Expr *E) { 11024e8ca4faSJohn McCall // Make sure we look through parens. 11034e8ca4faSJohn McCall E = E->IgnoreParens(); 11044e8ca4faSJohn McCall 11054e8ca4faSJohn McCall // Check for a direct reference to a __block variable. 11064e8ca4faSJohn McCall if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) { 11074e8ca4faSJohn McCall const VarDecl *var = dyn_cast<VarDecl>(DRE->getDecl()); 11084e8ca4faSJohn McCall return (var && var->hasAttr<BlocksAttr>()); 11094e8ca4faSJohn McCall } 11104e8ca4faSJohn McCall 11114e8ca4faSJohn McCall // More complicated stuff. 11124e8ca4faSJohn McCall 11134e8ca4faSJohn McCall // Binary operators. 11144e8ca4faSJohn McCall if (const BinaryOperator *op = dyn_cast<BinaryOperator>(E)) { 11154e8ca4faSJohn McCall // For an assignment or pointer-to-member operation, just care 11164e8ca4faSJohn McCall // about the LHS. 11174e8ca4faSJohn McCall if (op->isAssignmentOp() || op->isPtrMemOp()) 11184e8ca4faSJohn McCall return isBlockVarRef(op->getLHS()); 11194e8ca4faSJohn McCall 11204e8ca4faSJohn McCall // For a comma, just care about the RHS. 11214e8ca4faSJohn McCall if (op->getOpcode() == BO_Comma) 11224e8ca4faSJohn McCall return isBlockVarRef(op->getRHS()); 11234e8ca4faSJohn McCall 11244e8ca4faSJohn McCall // FIXME: pointer arithmetic? 11254e8ca4faSJohn McCall return false; 11264e8ca4faSJohn McCall 11274e8ca4faSJohn McCall // Check both sides of a conditional operator. 11284e8ca4faSJohn McCall } else if (const AbstractConditionalOperator *op 11294e8ca4faSJohn McCall = dyn_cast<AbstractConditionalOperator>(E)) { 11304e8ca4faSJohn McCall return isBlockVarRef(op->getTrueExpr()) 11314e8ca4faSJohn McCall || isBlockVarRef(op->getFalseExpr()); 11324e8ca4faSJohn McCall 11334e8ca4faSJohn McCall // OVEs are required to support BinaryConditionalOperators. 11344e8ca4faSJohn McCall } else if (const OpaqueValueExpr *op 11354e8ca4faSJohn McCall = dyn_cast<OpaqueValueExpr>(E)) { 11364e8ca4faSJohn McCall if (const Expr *src = op->getSourceExpr()) 11374e8ca4faSJohn McCall return isBlockVarRef(src); 11384e8ca4faSJohn McCall 11394e8ca4faSJohn McCall // Casts are necessary to get things like (*(int*)&var) = foo(). 11404e8ca4faSJohn McCall // We don't really care about the kind of cast here, except 11414e8ca4faSJohn McCall // we don't want to look through l2r casts, because it's okay 11424e8ca4faSJohn McCall // to get the *value* in a __block variable. 11434e8ca4faSJohn McCall } else if (const CastExpr *cast = dyn_cast<CastExpr>(E)) { 11444e8ca4faSJohn McCall if (cast->getCastKind() == CK_LValueToRValue) 11454e8ca4faSJohn McCall return false; 11464e8ca4faSJohn McCall return isBlockVarRef(cast->getSubExpr()); 11474e8ca4faSJohn McCall 11484e8ca4faSJohn McCall // Handle unary operators. Again, just aggressively look through 11494e8ca4faSJohn McCall // it, ignoring the operation. 11504e8ca4faSJohn McCall } else if (const UnaryOperator *uop = dyn_cast<UnaryOperator>(E)) { 11514e8ca4faSJohn McCall return isBlockVarRef(uop->getSubExpr()); 11524e8ca4faSJohn McCall 11534e8ca4faSJohn McCall // Look into the base of a field access. 11544e8ca4faSJohn McCall } else if (const MemberExpr *mem = dyn_cast<MemberExpr>(E)) { 11554e8ca4faSJohn McCall return isBlockVarRef(mem->getBase()); 11564e8ca4faSJohn McCall 11574e8ca4faSJohn McCall // Look into the base of a subscript. 11584e8ca4faSJohn McCall } else if (const ArraySubscriptExpr *sub = dyn_cast<ArraySubscriptExpr>(E)) { 11594e8ca4faSJohn McCall return isBlockVarRef(sub->getBase()); 11604e8ca4faSJohn McCall } 11614e8ca4faSJohn McCall 11624e8ca4faSJohn McCall return false; 1163ffba662dSFariborz Jahanian } 1164ffba662dSFariborz Jahanian 11657a51313dSChris Lattner void AggExprEmitter::VisitBinAssign(const BinaryOperator *E) { 11667a51313dSChris Lattner // For an assignment to work, the value on the right has 11677a51313dSChris Lattner // to be compatible with the value on the left. 11682a69547fSEli Friedman assert(CGF.getContext().hasSameUnqualifiedType(E->getLHS()->getType(), 11692a69547fSEli Friedman E->getRHS()->getType()) 11707a51313dSChris Lattner && "Invalid assignment"); 1171d0a30016SJohn McCall 11724e8ca4faSJohn McCall // If the LHS might be a __block variable, and the RHS can 11734e8ca4faSJohn McCall // potentially cause a block copy, we need to evaluate the RHS first 11744e8ca4faSJohn McCall // so that the assignment goes the right place. 11754e8ca4faSJohn McCall // This is pretty semantically fragile. 11764e8ca4faSJohn McCall if (isBlockVarRef(E->getLHS()) && 117799514b91SFariborz Jahanian E->getRHS()->HasSideEffects(CGF.getContext())) { 11784e8ca4faSJohn McCall // Ensure that we have a destination, and evaluate the RHS into that. 11794e8ca4faSJohn McCall EnsureDest(E->getRHS()->getType()); 11804e8ca4faSJohn McCall Visit(E->getRHS()); 11814e8ca4faSJohn McCall 11824e8ca4faSJohn McCall // Now emit the LHS and copy into it. 1183e30752c9SRichard Smith LValue LHS = CGF.EmitCheckedLValue(E->getLHS(), CodeGenFunction::TCK_Store); 11844e8ca4faSJohn McCall 1185a8ec7eb9SJohn McCall // That copy is an atomic copy if the LHS is atomic. 1186a5b195a1SDavid Majnemer if (LHS.getType()->isAtomicType() || 1187a5b195a1SDavid Majnemer CGF.LValueIsSuitableForInlineAtomic(LHS)) { 1188a8ec7eb9SJohn McCall CGF.EmitAtomicStore(Dest.asRValue(), LHS, /*isInit*/ false); 1189a8ec7eb9SJohn McCall return; 1190a8ec7eb9SJohn McCall } 1191a8ec7eb9SJohn McCall 11924e8ca4faSJohn McCall EmitCopy(E->getLHS()->getType(), 1193f139ae3dSAkira Hatanaka AggValueSlot::forLValue(LHS, CGF, AggValueSlot::IsDestructed, 119446759f4fSJohn McCall needsGC(E->getLHS()->getType()), 1195e78fac51SRichard Smith AggValueSlot::IsAliased, 1196e78fac51SRichard Smith AggValueSlot::MayOverlap), 11974e8ca4faSJohn McCall Dest); 119899514b91SFariborz Jahanian return; 119999514b91SFariborz Jahanian } 120099514b91SFariborz Jahanian 12017a51313dSChris Lattner LValue LHS = CGF.EmitLValue(E->getLHS()); 12027a51313dSChris Lattner 1203a8ec7eb9SJohn McCall // If we have an atomic type, evaluate into the destination and then 1204a8ec7eb9SJohn McCall // do an atomic copy. 1205a5b195a1SDavid Majnemer if (LHS.getType()->isAtomicType() || 1206a5b195a1SDavid Majnemer CGF.LValueIsSuitableForInlineAtomic(LHS)) { 1207a8ec7eb9SJohn McCall EnsureDest(E->getRHS()->getType()); 1208a8ec7eb9SJohn McCall Visit(E->getRHS()); 1209a8ec7eb9SJohn McCall CGF.EmitAtomicStore(Dest.asRValue(), LHS, /*isInit*/ false); 1210a8ec7eb9SJohn McCall return; 1211a8ec7eb9SJohn McCall } 1212a8ec7eb9SJohn McCall 12137a51313dSChris Lattner // Codegen the RHS so that it stores directly into the LHS. 1214f139ae3dSAkira Hatanaka AggValueSlot LHSSlot = AggValueSlot::forLValue( 1215f139ae3dSAkira Hatanaka LHS, CGF, AggValueSlot::IsDestructed, needsGC(E->getLHS()->getType()), 1216f139ae3dSAkira Hatanaka AggValueSlot::IsAliased, AggValueSlot::MayOverlap); 12177865220dSFariborz Jahanian // A non-volatile aggregate destination might have volatile member. 12187865220dSFariborz Jahanian if (!LHSSlot.isVolatile() && 12197865220dSFariborz Jahanian CGF.hasVolatileMember(E->getLHS()->getType())) 12207865220dSFariborz Jahanian LHSSlot.setVolatile(true); 12217865220dSFariborz Jahanian 12224e8ca4faSJohn McCall CGF.EmitAggExpr(E->getRHS(), LHSSlot); 12234e8ca4faSJohn McCall 12244e8ca4faSJohn McCall // Copy into the destination if the assignment isn't ignored. 12254e8ca4faSJohn McCall EmitFinalDestCopy(E->getType(), LHS); 122671e1a56dSAkira Hatanaka 122771e1a56dSAkira Hatanaka if (!Dest.isIgnored() && !Dest.isExternallyDestructed() && 122871e1a56dSAkira Hatanaka E->getType().isDestructedType() == QualType::DK_nontrivial_c_struct) 122971e1a56dSAkira Hatanaka CGF.pushDestroy(QualType::DK_nontrivial_c_struct, Dest.getAddress(), 123071e1a56dSAkira Hatanaka E->getType()); 12317a51313dSChris Lattner } 12327a51313dSChris Lattner 1233c07a0c7eSJohn McCall void AggExprEmitter:: 1234c07a0c7eSJohn McCall VisitAbstractConditionalOperator(const AbstractConditionalOperator *E) { 1235a612e79bSDaniel Dunbar llvm::BasicBlock *LHSBlock = CGF.createBasicBlock("cond.true"); 1236a612e79bSDaniel Dunbar llvm::BasicBlock *RHSBlock = CGF.createBasicBlock("cond.false"); 1237a612e79bSDaniel Dunbar llvm::BasicBlock *ContBlock = CGF.createBasicBlock("cond.end"); 12387a51313dSChris Lattner 1239c07a0c7eSJohn McCall // Bind the common expression if necessary. 124048fd89adSEli Friedman CodeGenFunction::OpaqueValueMapping binding(CGF, E); 1241c07a0c7eSJohn McCall 1242ce1de617SJohn McCall CodeGenFunction::ConditionalEvaluation eval(CGF); 124366242d6cSJustin Bogner CGF.EmitBranchOnBoolExpr(E->getCond(), LHSBlock, RHSBlock, 124466242d6cSJustin Bogner CGF.getProfileCount(E)); 12457a51313dSChris Lattner 12465b26f65bSJohn McCall // Save whether the destination's lifetime is externally managed. 1247cac93853SJohn McCall bool isExternallyDestructed = Dest.isExternallyDestructed(); 124871e1a56dSAkira Hatanaka bool destructNonTrivialCStruct = 124971e1a56dSAkira Hatanaka !isExternallyDestructed && 125071e1a56dSAkira Hatanaka E->getType().isDestructedType() == QualType::DK_nontrivial_c_struct; 125171e1a56dSAkira Hatanaka isExternallyDestructed |= destructNonTrivialCStruct; 125271e1a56dSAkira Hatanaka Dest.setExternallyDestructed(isExternallyDestructed); 12537a51313dSChris Lattner 1254ce1de617SJohn McCall eval.begin(CGF); 1255ce1de617SJohn McCall CGF.EmitBlock(LHSBlock); 125666242d6cSJustin Bogner CGF.incrementProfileCounter(E); 1257c07a0c7eSJohn McCall Visit(E->getTrueExpr()); 1258ce1de617SJohn McCall eval.end(CGF); 12597a51313dSChris Lattner 1260ce1de617SJohn McCall assert(CGF.HaveInsertPoint() && "expression evaluation ended with no IP!"); 1261ce1de617SJohn McCall CGF.Builder.CreateBr(ContBlock); 12627a51313dSChris Lattner 12635b26f65bSJohn McCall // If the result of an agg expression is unused, then the emission 12645b26f65bSJohn McCall // of the LHS might need to create a destination slot. That's fine 12655b26f65bSJohn McCall // with us, and we can safely emit the RHS into the same slot, but 1266cac93853SJohn McCall // we shouldn't claim that it's already being destructed. 1267cac93853SJohn McCall Dest.setExternallyDestructed(isExternallyDestructed); 12685b26f65bSJohn McCall 1269ce1de617SJohn McCall eval.begin(CGF); 1270ce1de617SJohn McCall CGF.EmitBlock(RHSBlock); 1271c07a0c7eSJohn McCall Visit(E->getFalseExpr()); 1272ce1de617SJohn McCall eval.end(CGF); 12737a51313dSChris Lattner 127471e1a56dSAkira Hatanaka if (destructNonTrivialCStruct) 127571e1a56dSAkira Hatanaka CGF.pushDestroy(QualType::DK_nontrivial_c_struct, Dest.getAddress(), 127671e1a56dSAkira Hatanaka E->getType()); 127771e1a56dSAkira Hatanaka 12787a51313dSChris Lattner CGF.EmitBlock(ContBlock); 12797a51313dSChris Lattner } 12807a51313dSChris Lattner 12815b2095ceSAnders Carlsson void AggExprEmitter::VisitChooseExpr(const ChooseExpr *CE) { 128275807f23SEli Friedman Visit(CE->getChosenSubExpr()); 12835b2095ceSAnders Carlsson } 12845b2095ceSAnders Carlsson 128521911e89SEli Friedman void AggExprEmitter::VisitVAArgExpr(VAArgExpr *VE) { 1286c7d5c94fSCharles Davis Address ArgValue = Address::invalid(); 1287c7d5c94fSCharles Davis Address ArgPtr = CGF.EmitVAArg(VE, ArgValue); 128813abd7e9SAnders Carlsson 128929b5f086SJames Y Knight // If EmitVAArg fails, emit an error. 12907f416cc4SJohn McCall if (!ArgPtr.isValid()) { 129129b5f086SJames Y Knight CGF.ErrorUnsupported(VE, "aggregate va_arg expression"); 1292020cddcfSSebastian Redl return; 1293020cddcfSSebastian Redl } 129413abd7e9SAnders Carlsson 12954e8ca4faSJohn McCall EmitFinalDestCopy(VE->getType(), CGF.MakeAddrLValue(ArgPtr, VE->getType())); 129621911e89SEli Friedman } 129721911e89SEli Friedman 12983be22e27SAnders Carlsson void AggExprEmitter::VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E) { 12997a626f63SJohn McCall // Ensure that we have a slot, but if we already do, remember 1300cac93853SJohn McCall // whether it was externally destructed. 1301cac93853SJohn McCall bool wasExternallyDestructed = Dest.isExternallyDestructed(); 13024e8ca4faSJohn McCall EnsureDest(E->getType()); 1303cac93853SJohn McCall 1304cac93853SJohn McCall // We're going to push a destructor if there isn't already one. 1305cac93853SJohn McCall Dest.setExternallyDestructed(); 13063be22e27SAnders Carlsson 13073be22e27SAnders Carlsson Visit(E->getSubExpr()); 13083be22e27SAnders Carlsson 1309cac93853SJohn McCall // Push that destructor we promised. 1310cac93853SJohn McCall if (!wasExternallyDestructed) 13117f416cc4SJohn McCall CGF.EmitCXXTemporary(E->getTemporary(), E->getType(), Dest.getAddress()); 13123be22e27SAnders Carlsson } 13133be22e27SAnders Carlsson 1314b7f8f594SAnders Carlsson void 13151619a504SAnders Carlsson AggExprEmitter::VisitCXXConstructExpr(const CXXConstructExpr *E) { 13167a626f63SJohn McCall AggValueSlot Slot = EnsureSlot(E->getType()); 13177a626f63SJohn McCall CGF.EmitCXXConstructExpr(E, Slot); 1318c82b86dfSAnders Carlsson } 1319c82b86dfSAnders Carlsson 13205179eb78SRichard Smith void AggExprEmitter::VisitCXXInheritedCtorInitExpr( 13215179eb78SRichard Smith const CXXInheritedCtorInitExpr *E) { 13225179eb78SRichard Smith AggValueSlot Slot = EnsureSlot(E->getType()); 13235179eb78SRichard Smith CGF.EmitInheritedCXXConstructorCall( 13245179eb78SRichard Smith E->getConstructor(), E->constructsVBase(), Slot.getAddress(), 13255179eb78SRichard Smith E->inheritedFromVBase(), E); 13265179eb78SRichard Smith } 13275179eb78SRichard Smith 1328c370a7eeSEli Friedman void 1329c370a7eeSEli Friedman AggExprEmitter::VisitLambdaExpr(LambdaExpr *E) { 1330c370a7eeSEli Friedman AggValueSlot Slot = EnsureSlot(E->getType()); 13310444006fSRichard Smith LValue SlotLV = CGF.MakeAddrLValue(Slot.getAddress(), E->getType()); 13320444006fSRichard Smith 13330444006fSRichard Smith // We'll need to enter cleanup scopes in case any of the element 13340444006fSRichard Smith // initializers throws an exception. 13350444006fSRichard Smith SmallVector<EHScopeStack::stable_iterator, 16> Cleanups; 13360444006fSRichard Smith llvm::Instruction *CleanupDominator = nullptr; 13370444006fSRichard Smith 13380444006fSRichard Smith CXXRecordDecl::field_iterator CurField = E->getLambdaClass()->field_begin(); 13390444006fSRichard Smith for (LambdaExpr::const_capture_init_iterator i = E->capture_init_begin(), 13400444006fSRichard Smith e = E->capture_init_end(); 13410444006fSRichard Smith i != e; ++i, ++CurField) { 13420444006fSRichard Smith // Emit initialization 13430444006fSRichard Smith LValue LV = CGF.EmitLValueForFieldInitialization(SlotLV, *CurField); 13440444006fSRichard Smith if (CurField->hasCapturedVLAType()) { 13450444006fSRichard Smith CGF.EmitLambdaVLACapture(CurField->getCapturedVLAType(), LV); 13460444006fSRichard Smith continue; 13470444006fSRichard Smith } 13480444006fSRichard Smith 13490444006fSRichard Smith EmitInitializationToLValue(*i, LV); 13500444006fSRichard Smith 13510444006fSRichard Smith // Push a destructor if necessary. 13520444006fSRichard Smith if (QualType::DestructionKind DtorKind = 13530444006fSRichard Smith CurField->getType().isDestructedType()) { 13540444006fSRichard Smith assert(LV.isSimple()); 13550444006fSRichard Smith if (CGF.needsEHCleanup(DtorKind)) { 13560444006fSRichard Smith if (!CleanupDominator) 13570444006fSRichard Smith CleanupDominator = CGF.Builder.CreateAlignedLoad( 13580444006fSRichard Smith CGF.Int8Ty, 13590444006fSRichard Smith llvm::Constant::getNullValue(CGF.Int8PtrTy), 13600444006fSRichard Smith CharUnits::One()); // placeholder 13610444006fSRichard Smith 1362f139ae3dSAkira Hatanaka CGF.pushDestroy(EHCleanup, LV.getAddress(CGF), CurField->getType(), 13630444006fSRichard Smith CGF.getDestroyer(DtorKind), false); 13640444006fSRichard Smith Cleanups.push_back(CGF.EHStack.stable_begin()); 13650444006fSRichard Smith } 13660444006fSRichard Smith } 13670444006fSRichard Smith } 13680444006fSRichard Smith 13690444006fSRichard Smith // Deactivate all the partial cleanups in reverse order, which 13700444006fSRichard Smith // generally means popping them. 13710444006fSRichard Smith for (unsigned i = Cleanups.size(); i != 0; --i) 13720444006fSRichard Smith CGF.DeactivateCleanupBlock(Cleanups[i-1], CleanupDominator); 13730444006fSRichard Smith 13740444006fSRichard Smith // Destroy the placeholder if we made one. 13750444006fSRichard Smith if (CleanupDominator) 13760444006fSRichard Smith CleanupDominator->eraseFromParent(); 1377c370a7eeSEli Friedman } 1378c370a7eeSEli Friedman 13795d413781SJohn McCall void AggExprEmitter::VisitExprWithCleanups(ExprWithCleanups *E) { 138008ef4660SJohn McCall CodeGenFunction::RunCleanupsScope cleanups(CGF); 138108ef4660SJohn McCall Visit(E->getSubExpr()); 1382b7f8f594SAnders Carlsson } 1383b7f8f594SAnders Carlsson 1384747eb784SDouglas Gregor void AggExprEmitter::VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *E) { 13857a626f63SJohn McCall QualType T = E->getType(); 13867a626f63SJohn McCall AggValueSlot Slot = EnsureSlot(T); 13877f416cc4SJohn McCall EmitNullInitializationToLValue(CGF.MakeAddrLValue(Slot.getAddress(), T)); 138818ada985SAnders Carlsson } 138918ada985SAnders Carlsson 139018ada985SAnders Carlsson void AggExprEmitter::VisitImplicitValueInitExpr(ImplicitValueInitExpr *E) { 13917a626f63SJohn McCall QualType T = E->getType(); 13927a626f63SJohn McCall AggValueSlot Slot = EnsureSlot(T); 13937f416cc4SJohn McCall EmitNullInitializationToLValue(CGF.MakeAddrLValue(Slot.getAddress(), T)); 1394ff3507b9SNuno Lopes } 1395ff3507b9SNuno Lopes 1396d4aac678SRichard Smith /// Determine whether the given cast kind is known to always convert values 1397d4aac678SRichard Smith /// with all zero bits in their value representation to values with all zero 1398d4aac678SRichard Smith /// bits in their value representation. 1399d4aac678SRichard Smith static bool castPreservesZero(const CastExpr *CE) { 1400d4aac678SRichard Smith switch (CE->getCastKind()) { 1401d4aac678SRichard Smith // No-ops. 1402d4aac678SRichard Smith case CK_NoOp: 1403d4aac678SRichard Smith case CK_UserDefinedConversion: 1404d4aac678SRichard Smith case CK_ConstructorConversion: 1405d4aac678SRichard Smith case CK_BitCast: 1406d4aac678SRichard Smith case CK_ToUnion: 1407d4aac678SRichard Smith case CK_ToVoid: 1408d4aac678SRichard Smith // Conversions between (possibly-complex) integral, (possibly-complex) 1409d4aac678SRichard Smith // floating-point, and bool. 1410d4aac678SRichard Smith case CK_BooleanToSignedIntegral: 1411d4aac678SRichard Smith case CK_FloatingCast: 1412d4aac678SRichard Smith case CK_FloatingComplexCast: 1413d4aac678SRichard Smith case CK_FloatingComplexToBoolean: 1414d4aac678SRichard Smith case CK_FloatingComplexToIntegralComplex: 1415d4aac678SRichard Smith case CK_FloatingComplexToReal: 1416d4aac678SRichard Smith case CK_FloatingRealToComplex: 1417d4aac678SRichard Smith case CK_FloatingToBoolean: 1418d4aac678SRichard Smith case CK_FloatingToIntegral: 1419d4aac678SRichard Smith case CK_IntegralCast: 1420d4aac678SRichard Smith case CK_IntegralComplexCast: 1421d4aac678SRichard Smith case CK_IntegralComplexToBoolean: 1422d4aac678SRichard Smith case CK_IntegralComplexToFloatingComplex: 1423d4aac678SRichard Smith case CK_IntegralComplexToReal: 1424d4aac678SRichard Smith case CK_IntegralRealToComplex: 1425d4aac678SRichard Smith case CK_IntegralToBoolean: 1426d4aac678SRichard Smith case CK_IntegralToFloating: 1427d4aac678SRichard Smith // Reinterpreting integers as pointers and vice versa. 1428d4aac678SRichard Smith case CK_IntegralToPointer: 1429d4aac678SRichard Smith case CK_PointerToIntegral: 1430d4aac678SRichard Smith // Language extensions. 1431d4aac678SRichard Smith case CK_VectorSplat: 143271ab6c98SSaurabh Jha case CK_MatrixCast: 1433d4aac678SRichard Smith case CK_NonAtomicToAtomic: 1434d4aac678SRichard Smith case CK_AtomicToNonAtomic: 1435d4aac678SRichard Smith return true; 1436d4aac678SRichard Smith 1437d4aac678SRichard Smith case CK_BaseToDerivedMemberPointer: 1438d4aac678SRichard Smith case CK_DerivedToBaseMemberPointer: 1439d4aac678SRichard Smith case CK_MemberPointerToBoolean: 1440d4aac678SRichard Smith case CK_NullToMemberPointer: 1441d4aac678SRichard Smith case CK_ReinterpretMemberPointer: 1442d4aac678SRichard Smith // FIXME: ABI-dependent. 1443d4aac678SRichard Smith return false; 1444d4aac678SRichard Smith 1445d4aac678SRichard Smith case CK_AnyPointerToBlockPointerCast: 1446d4aac678SRichard Smith case CK_BlockPointerToObjCPointerCast: 1447d4aac678SRichard Smith case CK_CPointerToObjCPointerCast: 1448d4aac678SRichard Smith case CK_ObjCObjectLValueCast: 1449d4aac678SRichard Smith case CK_IntToOCLSampler: 1450d4aac678SRichard Smith case CK_ZeroToOCLOpaqueType: 1451d4aac678SRichard Smith // FIXME: Check these. 1452d4aac678SRichard Smith return false; 1453d4aac678SRichard Smith 1454d4aac678SRichard Smith case CK_FixedPointCast: 1455d4aac678SRichard Smith case CK_FixedPointToBoolean: 1456d4aac678SRichard Smith case CK_FixedPointToFloating: 1457d4aac678SRichard Smith case CK_FixedPointToIntegral: 1458d4aac678SRichard Smith case CK_FloatingToFixedPoint: 1459d4aac678SRichard Smith case CK_IntegralToFixedPoint: 1460d4aac678SRichard Smith // FIXME: Do all fixed-point types represent zero as all 0 bits? 1461d4aac678SRichard Smith return false; 1462d4aac678SRichard Smith 1463d4aac678SRichard Smith case CK_AddressSpaceConversion: 1464d4aac678SRichard Smith case CK_BaseToDerived: 1465d4aac678SRichard Smith case CK_DerivedToBase: 1466d4aac678SRichard Smith case CK_Dynamic: 1467d4aac678SRichard Smith case CK_NullToPointer: 1468d4aac678SRichard Smith case CK_PointerToBoolean: 1469d4aac678SRichard Smith // FIXME: Preserves zeroes only if zero pointers and null pointers have the 1470d4aac678SRichard Smith // same representation in all involved address spaces. 1471d4aac678SRichard Smith return false; 1472d4aac678SRichard Smith 1473d4aac678SRichard Smith case CK_ARCConsumeObject: 1474d4aac678SRichard Smith case CK_ARCExtendBlockObject: 1475d4aac678SRichard Smith case CK_ARCProduceObject: 1476d4aac678SRichard Smith case CK_ARCReclaimReturnedObject: 1477d4aac678SRichard Smith case CK_CopyAndAutoreleaseBlockObject: 1478d4aac678SRichard Smith case CK_ArrayToPointerDecay: 1479d4aac678SRichard Smith case CK_FunctionToPointerDecay: 1480d4aac678SRichard Smith case CK_BuiltinFnToFnPtr: 1481d4aac678SRichard Smith case CK_Dependent: 1482d4aac678SRichard Smith case CK_LValueBitCast: 1483d4aac678SRichard Smith case CK_LValueToRValue: 1484d4aac678SRichard Smith case CK_LValueToRValueBitCast: 1485d4aac678SRichard Smith case CK_UncheckedDerivedToBase: 1486d4aac678SRichard Smith return false; 1487d4aac678SRichard Smith } 14887fe7d9b1SSimon Pilgrim llvm_unreachable("Unhandled clang::CastKind enum"); 1489d4aac678SRichard Smith } 1490d4aac678SRichard Smith 149127a3631bSChris Lattner /// isSimpleZero - If emitting this value will obviously just cause a store of 149227a3631bSChris Lattner /// zero to memory, return true. This can return false if uncertain, so it just 149327a3631bSChris Lattner /// handles simple cases. 149427a3631bSChris Lattner static bool isSimpleZero(const Expr *E, CodeGenFunction &CGF) { 149591147596SPeter Collingbourne E = E->IgnoreParens(); 1496d4aac678SRichard Smith while (auto *CE = dyn_cast<CastExpr>(E)) { 1497d4aac678SRichard Smith if (!castPreservesZero(CE)) 1498d4aac678SRichard Smith break; 1499d4aac678SRichard Smith E = CE->getSubExpr()->IgnoreParens(); 1500d4aac678SRichard Smith } 150191147596SPeter Collingbourne 150227a3631bSChris Lattner // 0 150327a3631bSChris Lattner if (const IntegerLiteral *IL = dyn_cast<IntegerLiteral>(E)) 150427a3631bSChris Lattner return IL->getValue() == 0; 150527a3631bSChris Lattner // +0.0 150627a3631bSChris Lattner if (const FloatingLiteral *FL = dyn_cast<FloatingLiteral>(E)) 150727a3631bSChris Lattner return FL->getValue().isPosZero(); 150827a3631bSChris Lattner // int() 150927a3631bSChris Lattner if ((isa<ImplicitValueInitExpr>(E) || isa<CXXScalarValueInitExpr>(E)) && 151027a3631bSChris Lattner CGF.getTypes().isZeroInitializable(E->getType())) 151127a3631bSChris Lattner return true; 151227a3631bSChris Lattner // (int*)0 - Null pointer expressions. 151327a3631bSChris Lattner if (const CastExpr *ICE = dyn_cast<CastExpr>(E)) 1514402804b6SYaxun Liu return ICE->getCastKind() == CK_NullToPointer && 151527252a1fSRichard Smith CGF.getTypes().isPointerZeroInitializable(E->getType()) && 151627252a1fSRichard Smith !E->HasSideEffects(CGF.getContext()); 151727a3631bSChris Lattner // '\0' 151827a3631bSChris Lattner if (const CharacterLiteral *CL = dyn_cast<CharacterLiteral>(E)) 151927a3631bSChris Lattner return CL->getValue() == 0; 152027a3631bSChris Lattner 152127a3631bSChris Lattner // Otherwise, hard case: conservatively return false. 152227a3631bSChris Lattner return false; 152327a3631bSChris Lattner } 152427a3631bSChris Lattner 152527a3631bSChris Lattner 1526b247350eSAnders Carlsson void 1527615ed1a3SChad Rosier AggExprEmitter::EmitInitializationToLValue(Expr *E, LValue LV) { 15281553b190SJohn McCall QualType type = LV.getType(); 1529df0fe27bSMike Stump // FIXME: Ignore result? 1530579a05d7SChris Lattner // FIXME: Are initializers affected by volatile? 153127a3631bSChris Lattner if (Dest.isZeroed() && isSimpleZero(E, CGF)) { 153227a3631bSChris Lattner // Storing "i32 0" to a zero'd memory location is a noop. 153347fb9508SJohn McCall return; 1534d82a2ce3SRichard Smith } else if (isa<ImplicitValueInitExpr>(E) || isa<CXXScalarValueInitExpr>(E)) { 153547fb9508SJohn McCall return EmitNullInitializationToLValue(LV); 1536cb77930dSYunzhong Gao } else if (isa<NoInitExpr>(E)) { 1537cb77930dSYunzhong Gao // Do nothing. 1538cb77930dSYunzhong Gao return; 15391553b190SJohn McCall } else if (type->isReferenceType()) { 1540a1c9d4d9SRichard Smith RValue RV = CGF.EmitReferenceBindingToExpr(E); 154147fb9508SJohn McCall return CGF.EmitStoreThroughLValue(RV, LV); 154247fb9508SJohn McCall } 154347fb9508SJohn McCall 154447fb9508SJohn McCall switch (CGF.getEvaluationKind(type)) { 154547fb9508SJohn McCall case TEK_Complex: 154647fb9508SJohn McCall CGF.EmitComplexExprIntoLValue(E, LV, /*isInit*/ true); 154747fb9508SJohn McCall return; 154847fb9508SJohn McCall case TEK_Aggregate: 1549f139ae3dSAkira Hatanaka CGF.EmitAggExpr( 1550f139ae3dSAkira Hatanaka E, AggValueSlot::forLValue(LV, CGF, AggValueSlot::IsDestructed, 15518d6fc958SJohn McCall AggValueSlot::DoesNotNeedGCBarriers, 1552a5efa738SJohn McCall AggValueSlot::IsNotAliased, 1553f139ae3dSAkira Hatanaka AggValueSlot::MayOverlap, Dest.isZeroed())); 155447fb9508SJohn McCall return; 155547fb9508SJohn McCall case TEK_Scalar: 155647fb9508SJohn McCall if (LV.isSimple()) { 15578a13c418SCraig Topper CGF.EmitScalarInit(E, /*D=*/nullptr, LV, /*Captured=*/false); 15586e313210SEli Friedman } else { 155955e1fbc8SJohn McCall CGF.EmitStoreThroughLValue(RValue::get(CGF.EmitScalarExpr(E)), LV); 15607a51313dSChris Lattner } 156147fb9508SJohn McCall return; 156247fb9508SJohn McCall } 156347fb9508SJohn McCall llvm_unreachable("bad evaluation kind"); 1564579a05d7SChris Lattner } 1565579a05d7SChris Lattner 15661553b190SJohn McCall void AggExprEmitter::EmitNullInitializationToLValue(LValue lv) { 15671553b190SJohn McCall QualType type = lv.getType(); 15681553b190SJohn McCall 156927a3631bSChris Lattner // If the destination slot is already zeroed out before the aggregate is 157027a3631bSChris Lattner // copied into it, we don't have to emit any zeros here. 15711553b190SJohn McCall if (Dest.isZeroed() && CGF.getTypes().isZeroInitializable(type)) 157227a3631bSChris Lattner return; 157327a3631bSChris Lattner 157447fb9508SJohn McCall if (CGF.hasScalarEvaluationKind(type)) { 1575d82a2ce3SRichard Smith // For non-aggregates, we can store the appropriate null constant. 1576d82a2ce3SRichard Smith llvm::Value *null = CGF.CGM.EmitNullConstant(type); 157791d5bb1eSEli Friedman // Note that the following is not equivalent to 157891d5bb1eSEli Friedman // EmitStoreThroughBitfieldLValue for ARC types. 1579cb3785e4SEli Friedman if (lv.isBitField()) { 158091d5bb1eSEli Friedman CGF.EmitStoreThroughBitfieldLValue(RValue::get(null), lv); 1581cb3785e4SEli Friedman } else { 158291d5bb1eSEli Friedman assert(lv.isSimple()); 158391d5bb1eSEli Friedman CGF.EmitStoreOfScalar(null, lv, /* isInitialization */ true); 1584cb3785e4SEli Friedman } 1585579a05d7SChris Lattner } else { 1586579a05d7SChris Lattner // There's a potential optimization opportunity in combining 1587579a05d7SChris Lattner // memsets; that would be easy for arrays, but relatively 1588579a05d7SChris Lattner // difficult for structures with the current code. 1589f139ae3dSAkira Hatanaka CGF.EmitNullInitialization(lv.getAddress(CGF), lv.getType()); 1590579a05d7SChris Lattner } 1591579a05d7SChris Lattner } 1592579a05d7SChris Lattner 1593579a05d7SChris Lattner void AggExprEmitter::VisitInitListExpr(InitListExpr *E) { 1594f5d08c9eSEli Friedman #if 0 15956d11ec8cSEli Friedman // FIXME: Assess perf here? Figure out what cases are worth optimizing here 15966d11ec8cSEli Friedman // (Length of globals? Chunks of zeroed-out space?). 1597f5d08c9eSEli Friedman // 159818bb9284SMike Stump // If we can, prefer a copy from a global; this is a lot less code for long 159918bb9284SMike Stump // globals, and it's easier for the current optimizers to analyze. 16006d11ec8cSEli Friedman if (llvm::Constant* C = CGF.CGM.EmitConstantExpr(E, E->getType(), &CGF)) { 1601c59bb48eSEli Friedman llvm::GlobalVariable* GV = 16026d11ec8cSEli Friedman new llvm::GlobalVariable(CGF.CGM.getModule(), C->getType(), true, 16036d11ec8cSEli Friedman llvm::GlobalValue::InternalLinkage, C, ""); 16044e8ca4faSJohn McCall EmitFinalDestCopy(E->getType(), CGF.MakeAddrLValue(GV, E->getType())); 1605c59bb48eSEli Friedman return; 1606c59bb48eSEli Friedman } 1607f5d08c9eSEli Friedman #endif 1608f53c0968SChris Lattner if (E->hadArrayRangeDesignator()) 1609bf7207a1SDouglas Gregor CGF.ErrorUnsupported(E, "GNU array range designator extension"); 1610bf7207a1SDouglas Gregor 1611122f88d4SRichard Smith if (E->isTransparent()) 1612122f88d4SRichard Smith return Visit(E->getInit(0)); 1613122f88d4SRichard Smith 1614be93c00aSRichard Smith AggValueSlot Dest = EnsureSlot(E->getType()); 1615be93c00aSRichard Smith 16167f416cc4SJohn McCall LValue DestLV = CGF.MakeAddrLValue(Dest.getAddress(), E->getType()); 16177a626f63SJohn McCall 1618579a05d7SChris Lattner // Handle initialization of an array. 1619579a05d7SChris Lattner if (E->getType()->isArrayType()) { 16207f416cc4SJohn McCall auto AType = cast<llvm::ArrayType>(Dest.getAddress().getElementType()); 1621e0ef348cSIvan A. Kosarev EmitArrayInit(Dest.getAddress(), AType, E->getType(), E); 1622579a05d7SChris Lattner return; 1623579a05d7SChris Lattner } 1624579a05d7SChris Lattner 1625579a05d7SChris Lattner assert(E->getType()->isRecordType() && "Only support structs/unions here!"); 1626579a05d7SChris Lattner 1627579a05d7SChris Lattner // Do struct initialization; this code just sets each individual member 1628579a05d7SChris Lattner // to the approprate value. This makes bitfield support automatic; 1629579a05d7SChris Lattner // the disadvantage is that the generated code is more difficult for 1630579a05d7SChris Lattner // the optimizer, especially with bitfields. 1631579a05d7SChris Lattner unsigned NumInitElements = E->getNumInits(); 16323b935d33SJohn McCall RecordDecl *record = E->getType()->castAs<RecordType>()->getDecl(); 163352bcf963SChris Lattner 1634872307e2SRichard Smith // We'll need to enter cleanup scopes in case any of the element 1635872307e2SRichard Smith // initializers throws an exception. 1636872307e2SRichard Smith SmallVector<EHScopeStack::stable_iterator, 16> cleanups; 1637872307e2SRichard Smith llvm::Instruction *cleanupDominator = nullptr; 16383bdb7a90SSaleem Abdulrasool auto addCleanup = [&](const EHScopeStack::stable_iterator &cleanup) { 16393bdb7a90SSaleem Abdulrasool cleanups.push_back(cleanup); 16403bdb7a90SSaleem Abdulrasool if (!cleanupDominator) // create placeholder once needed 16413bdb7a90SSaleem Abdulrasool cleanupDominator = CGF.Builder.CreateAlignedLoad( 16423bdb7a90SSaleem Abdulrasool CGF.Int8Ty, llvm::Constant::getNullValue(CGF.Int8PtrTy), 16433bdb7a90SSaleem Abdulrasool CharUnits::One()); 16443bdb7a90SSaleem Abdulrasool }; 1645872307e2SRichard Smith 1646872307e2SRichard Smith unsigned curInitIndex = 0; 1647872307e2SRichard Smith 1648872307e2SRichard Smith // Emit initialization of base classes. 1649872307e2SRichard Smith if (auto *CXXRD = dyn_cast<CXXRecordDecl>(record)) { 1650872307e2SRichard Smith assert(E->getNumInits() >= CXXRD->getNumBases() && 1651872307e2SRichard Smith "missing initializer for base class"); 1652872307e2SRichard Smith for (auto &Base : CXXRD->bases()) { 1653872307e2SRichard Smith assert(!Base.isVirtual() && "should not see vbases here"); 1654872307e2SRichard Smith auto *BaseRD = Base.getType()->getAsCXXRecordDecl(); 1655872307e2SRichard Smith Address V = CGF.GetAddressOfDirectBaseInCompleteClass( 1656872307e2SRichard Smith Dest.getAddress(), CXXRD, BaseRD, 1657872307e2SRichard Smith /*isBaseVirtual*/ false); 1658e78fac51SRichard Smith AggValueSlot AggSlot = AggValueSlot::forAddr( 1659e78fac51SRichard Smith V, Qualifiers(), 1660872307e2SRichard Smith AggValueSlot::IsDestructed, 1661872307e2SRichard Smith AggValueSlot::DoesNotNeedGCBarriers, 1662e78fac51SRichard Smith AggValueSlot::IsNotAliased, 16638cca3a5aSRichard Smith CGF.getOverlapForBaseInit(CXXRD, BaseRD, Base.isVirtual())); 1664872307e2SRichard Smith CGF.EmitAggExpr(E->getInit(curInitIndex++), AggSlot); 1665872307e2SRichard Smith 1666872307e2SRichard Smith if (QualType::DestructionKind dtorKind = 1667872307e2SRichard Smith Base.getType().isDestructedType()) { 1668872307e2SRichard Smith CGF.pushDestroy(dtorKind, V, Base.getType()); 16693bdb7a90SSaleem Abdulrasool addCleanup(CGF.EHStack.stable_begin()); 1670872307e2SRichard Smith } 1671872307e2SRichard Smith } 1672872307e2SRichard Smith } 1673872307e2SRichard Smith 1674852c9db7SRichard Smith // Prepare a 'this' for CXXDefaultInitExprs. 16757f416cc4SJohn McCall CodeGenFunction::FieldConstructionScope FCS(CGF, Dest.getAddress()); 1676852c9db7SRichard Smith 16773b935d33SJohn McCall if (record->isUnion()) { 16785169570eSDouglas Gregor // Only initialize one field of a union. The field itself is 16795169570eSDouglas Gregor // specified by the initializer list. 16805169570eSDouglas Gregor if (!E->getInitializedFieldInUnion()) { 16815169570eSDouglas Gregor // Empty union; we have nothing to do. 16825169570eSDouglas Gregor 16835169570eSDouglas Gregor #ifndef NDEBUG 16845169570eSDouglas Gregor // Make sure that it's really an empty and not a failure of 16855169570eSDouglas Gregor // semantic analysis. 1686e8a8baefSAaron Ballman for (const auto *Field : record->fields()) 16875169570eSDouglas Gregor assert(Field->isUnnamedBitfield() && "Only unnamed bitfields allowed"); 16885169570eSDouglas Gregor #endif 16895169570eSDouglas Gregor return; 16905169570eSDouglas Gregor } 16915169570eSDouglas Gregor 16925169570eSDouglas Gregor // FIXME: volatility 16935169570eSDouglas Gregor FieldDecl *Field = E->getInitializedFieldInUnion(); 16945169570eSDouglas Gregor 16957f1ff600SEli Friedman LValue FieldLoc = CGF.EmitLValueForFieldInitialization(DestLV, Field); 16965169570eSDouglas Gregor if (NumInitElements) { 16975169570eSDouglas Gregor // Store the initializer into the field 1698615ed1a3SChad Rosier EmitInitializationToLValue(E->getInit(0), FieldLoc); 16995169570eSDouglas Gregor } else { 170027a3631bSChris Lattner // Default-initialize to null. 17011553b190SJohn McCall EmitNullInitializationToLValue(FieldLoc); 17025169570eSDouglas Gregor } 17035169570eSDouglas Gregor 17045169570eSDouglas Gregor return; 17055169570eSDouglas Gregor } 1706579a05d7SChris Lattner 1707579a05d7SChris Lattner // Here we iterate over the fields; this makes it simpler to both 1708579a05d7SChris Lattner // default-initialize fields and skip over unnamed fields. 1709e8a8baefSAaron Ballman for (const auto *field : record->fields()) { 17103b935d33SJohn McCall // We're done once we hit the flexible array member. 17113b935d33SJohn McCall if (field->getType()->isIncompleteArrayType()) 171291f84216SDouglas Gregor break; 171391f84216SDouglas Gregor 17143b935d33SJohn McCall // Always skip anonymous bitfields. 17153b935d33SJohn McCall if (field->isUnnamedBitfield()) 1716579a05d7SChris Lattner continue; 171717bd094aSDouglas Gregor 17183b935d33SJohn McCall // We're done if we reach the end of the explicit initializers, we 17193b935d33SJohn McCall // have a zeroed object, and the rest of the fields are 17203b935d33SJohn McCall // zero-initializable. 17213b935d33SJohn McCall if (curInitIndex == NumInitElements && Dest.isZeroed() && 172227a3631bSChris Lattner CGF.getTypes().isZeroInitializable(E->getType())) 172327a3631bSChris Lattner break; 172427a3631bSChris Lattner 17257f1ff600SEli Friedman 1726e8a8baefSAaron Ballman LValue LV = CGF.EmitLValueForFieldInitialization(DestLV, field); 17277c1baf46SFariborz Jahanian // We never generate write-barries for initialized fields. 17283b935d33SJohn McCall LV.setNonGC(true); 172927a3631bSChris Lattner 17303b935d33SJohn McCall if (curInitIndex < NumInitElements) { 1731e18aaf2cSChris Lattner // Store the initializer into the field. 1732615ed1a3SChad Rosier EmitInitializationToLValue(E->getInit(curInitIndex++), LV); 1733579a05d7SChris Lattner } else { 17342c51880aSSimon Pilgrim // We're out of initializers; default-initialize to null 17353b935d33SJohn McCall EmitNullInitializationToLValue(LV); 17363b935d33SJohn McCall } 17373b935d33SJohn McCall 17383b935d33SJohn McCall // Push a destructor if necessary. 17393b935d33SJohn McCall // FIXME: if we have an array of structures, all explicitly 17403b935d33SJohn McCall // initialized, we can end up pushing a linear number of cleanups. 17413b935d33SJohn McCall bool pushedCleanup = false; 17423b935d33SJohn McCall if (QualType::DestructionKind dtorKind 17433b935d33SJohn McCall = field->getType().isDestructedType()) { 17443b935d33SJohn McCall assert(LV.isSimple()); 17453b935d33SJohn McCall if (CGF.needsEHCleanup(dtorKind)) { 1746f139ae3dSAkira Hatanaka CGF.pushDestroy(EHCleanup, LV.getAddress(CGF), field->getType(), 17473b935d33SJohn McCall CGF.getDestroyer(dtorKind), false); 17483bdb7a90SSaleem Abdulrasool addCleanup(CGF.EHStack.stable_begin()); 17493b935d33SJohn McCall pushedCleanup = true; 17503b935d33SJohn McCall } 1751579a05d7SChris Lattner } 175227a3631bSChris Lattner 175327a3631bSChris Lattner // If the GEP didn't get used because of a dead zero init or something 175427a3631bSChris Lattner // else, clean it up for -O0 builds and general tidiness. 17553b935d33SJohn McCall if (!pushedCleanup && LV.isSimple()) 175627a3631bSChris Lattner if (llvm::GetElementPtrInst *GEP = 1757f139ae3dSAkira Hatanaka dyn_cast<llvm::GetElementPtrInst>(LV.getPointer(CGF))) 175827a3631bSChris Lattner if (GEP->use_empty()) 175927a3631bSChris Lattner GEP->eraseFromParent(); 17607a51313dSChris Lattner } 17613b935d33SJohn McCall 17623b935d33SJohn McCall // Deactivate all the partial cleanups in reverse order, which 17633b935d33SJohn McCall // generally means popping them. 17643bdb7a90SSaleem Abdulrasool assert((cleanupDominator || cleanups.empty()) && 17653bdb7a90SSaleem Abdulrasool "Missing cleanupDominator before deactivating cleanup blocks"); 17663b935d33SJohn McCall for (unsigned i = cleanups.size(); i != 0; --i) 1767f4beacd0SJohn McCall CGF.DeactivateCleanupBlock(cleanups[i-1], cleanupDominator); 1768f4beacd0SJohn McCall 1769f4beacd0SJohn McCall // Destroy the placeholder if we made one. 1770f4beacd0SJohn McCall if (cleanupDominator) 1771f4beacd0SJohn McCall cleanupDominator->eraseFromParent(); 17727a51313dSChris Lattner } 17737a51313dSChris Lattner 1774939b6880SRichard Smith void AggExprEmitter::VisitArrayInitLoopExpr(const ArrayInitLoopExpr *E, 1775939b6880SRichard Smith llvm::Value *outerBegin) { 1776410306bfSRichard Smith // Emit the common subexpression. 1777410306bfSRichard Smith CodeGenFunction::OpaqueValueMapping binding(CGF, E->getCommonExpr()); 1778410306bfSRichard Smith 1779410306bfSRichard Smith Address destPtr = EnsureSlot(E->getType()).getAddress(); 1780410306bfSRichard Smith uint64_t numElements = E->getArraySize().getZExtValue(); 1781410306bfSRichard Smith 1782410306bfSRichard Smith if (!numElements) 1783410306bfSRichard Smith return; 1784410306bfSRichard Smith 1785410306bfSRichard Smith // destPtr is an array*. Construct an elementType* by drilling down a level. 1786410306bfSRichard Smith llvm::Value *zero = llvm::ConstantInt::get(CGF.SizeTy, 0); 1787410306bfSRichard Smith llvm::Value *indices[] = {zero, zero}; 17886225d0ccSNikita Popov llvm::Value *begin = Builder.CreateInBoundsGEP( 17896225d0ccSNikita Popov destPtr.getElementType(), destPtr.getPointer(), indices, 1790410306bfSRichard Smith "arrayinit.begin"); 1791410306bfSRichard Smith 1792939b6880SRichard Smith // Prepare to special-case multidimensional array initialization: we avoid 1793939b6880SRichard Smith // emitting multiple destructor loops in that case. 1794939b6880SRichard Smith if (!outerBegin) 1795939b6880SRichard Smith outerBegin = begin; 1796939b6880SRichard Smith ArrayInitLoopExpr *InnerLoop = dyn_cast<ArrayInitLoopExpr>(E->getSubExpr()); 1797939b6880SRichard Smith 179830e304e2SRichard Smith QualType elementType = 179930e304e2SRichard Smith CGF.getContext().getAsArrayType(E->getType())->getElementType(); 1800410306bfSRichard Smith CharUnits elementSize = CGF.getContext().getTypeSizeInChars(elementType); 1801410306bfSRichard Smith CharUnits elementAlign = 1802410306bfSRichard Smith destPtr.getAlignment().alignmentOfArrayElement(elementSize); 1803410306bfSRichard Smith 1804410306bfSRichard Smith llvm::BasicBlock *entryBB = Builder.GetInsertBlock(); 1805410306bfSRichard Smith llvm::BasicBlock *bodyBB = CGF.createBasicBlock("arrayinit.body"); 1806410306bfSRichard Smith 1807410306bfSRichard Smith // Jump into the body. 1808410306bfSRichard Smith CGF.EmitBlock(bodyBB); 1809410306bfSRichard Smith llvm::PHINode *index = 1810410306bfSRichard Smith Builder.CreatePHI(zero->getType(), 2, "arrayinit.index"); 1811410306bfSRichard Smith index->addIncoming(zero, entryBB); 18126225d0ccSNikita Popov llvm::Value *element = Builder.CreateInBoundsGEP( 18136225d0ccSNikita Popov begin->getType()->getPointerElementType(), begin, index); 1814410306bfSRichard Smith 181530e304e2SRichard Smith // Prepare for a cleanup. 181630e304e2SRichard Smith QualType::DestructionKind dtorKind = elementType.isDestructedType(); 181730e304e2SRichard Smith EHScopeStack::stable_iterator cleanup; 1818939b6880SRichard Smith if (CGF.needsEHCleanup(dtorKind) && !InnerLoop) { 1819939b6880SRichard Smith if (outerBegin->getType() != element->getType()) 1820939b6880SRichard Smith outerBegin = Builder.CreateBitCast(outerBegin, element->getType()); 1821939b6880SRichard Smith CGF.pushRegularPartialArrayCleanup(outerBegin, element, elementType, 1822939b6880SRichard Smith elementAlign, 1823939b6880SRichard Smith CGF.getDestroyer(dtorKind)); 182430e304e2SRichard Smith cleanup = CGF.EHStack.stable_begin(); 182530e304e2SRichard Smith } else { 182630e304e2SRichard Smith dtorKind = QualType::DK_none; 182730e304e2SRichard Smith } 1828410306bfSRichard Smith 1829410306bfSRichard Smith // Emit the actual filler expression. 1830410306bfSRichard Smith { 183130e304e2SRichard Smith // Temporaries created in an array initialization loop are destroyed 183230e304e2SRichard Smith // at the end of each iteration. 183330e304e2SRichard Smith CodeGenFunction::RunCleanupsScope CleanupsScope(CGF); 1834410306bfSRichard Smith CodeGenFunction::ArrayInitLoopExprScope Scope(CGF, index); 1835410306bfSRichard Smith LValue elementLV = 1836410306bfSRichard Smith CGF.MakeAddrLValue(Address(element, elementAlign), elementType); 1837939b6880SRichard Smith 1838939b6880SRichard Smith if (InnerLoop) { 1839939b6880SRichard Smith // If the subexpression is an ArrayInitLoopExpr, share its cleanup. 1840939b6880SRichard Smith auto elementSlot = AggValueSlot::forLValue( 1841f139ae3dSAkira Hatanaka elementLV, CGF, AggValueSlot::IsDestructed, 1842f139ae3dSAkira Hatanaka AggValueSlot::DoesNotNeedGCBarriers, AggValueSlot::IsNotAliased, 1843e78fac51SRichard Smith AggValueSlot::DoesNotOverlap); 1844939b6880SRichard Smith AggExprEmitter(CGF, elementSlot, false) 1845939b6880SRichard Smith .VisitArrayInitLoopExpr(InnerLoop, outerBegin); 1846939b6880SRichard Smith } else 1847410306bfSRichard Smith EmitInitializationToLValue(E->getSubExpr(), elementLV); 1848410306bfSRichard Smith } 1849410306bfSRichard Smith 1850410306bfSRichard Smith // Move on to the next element. 1851410306bfSRichard Smith llvm::Value *nextIndex = Builder.CreateNUWAdd( 1852410306bfSRichard Smith index, llvm::ConstantInt::get(CGF.SizeTy, 1), "arrayinit.next"); 1853410306bfSRichard Smith index->addIncoming(nextIndex, Builder.GetInsertBlock()); 1854410306bfSRichard Smith 1855410306bfSRichard Smith // Leave the loop if we're done. 1856410306bfSRichard Smith llvm::Value *done = Builder.CreateICmpEQ( 1857410306bfSRichard Smith nextIndex, llvm::ConstantInt::get(CGF.SizeTy, numElements), 1858410306bfSRichard Smith "arrayinit.done"); 1859410306bfSRichard Smith llvm::BasicBlock *endBB = CGF.createBasicBlock("arrayinit.end"); 1860410306bfSRichard Smith Builder.CreateCondBr(done, endBB, bodyBB); 1861410306bfSRichard Smith 1862410306bfSRichard Smith CGF.EmitBlock(endBB); 1863410306bfSRichard Smith 1864410306bfSRichard Smith // Leave the partial-array cleanup if we entered one. 186530e304e2SRichard Smith if (dtorKind) 186630e304e2SRichard Smith CGF.DeactivateCleanupBlock(cleanup, index); 1867410306bfSRichard Smith } 1868410306bfSRichard Smith 1869cb77930dSYunzhong Gao void AggExprEmitter::VisitDesignatedInitUpdateExpr(DesignatedInitUpdateExpr *E) { 1870cb77930dSYunzhong Gao AggValueSlot Dest = EnsureSlot(E->getType()); 1871cb77930dSYunzhong Gao 18727f416cc4SJohn McCall LValue DestLV = CGF.MakeAddrLValue(Dest.getAddress(), E->getType()); 1873cb77930dSYunzhong Gao EmitInitializationToLValue(E->getBase(), DestLV); 1874cb77930dSYunzhong Gao VisitInitListExpr(E->getUpdater()); 1875cb77930dSYunzhong Gao } 1876cb77930dSYunzhong Gao 18777a51313dSChris Lattner //===----------------------------------------------------------------------===// 18787a51313dSChris Lattner // Entry Points into this File 18797a51313dSChris Lattner //===----------------------------------------------------------------------===// 18807a51313dSChris Lattner 188127a3631bSChris Lattner /// GetNumNonZeroBytesInInit - Get an approximate count of the number of 188227a3631bSChris Lattner /// non-zero bytes that will be stored when outputting the initializer for the 188327a3631bSChris Lattner /// specified initializer expression. 1884df94cb7dSKen Dyck static CharUnits GetNumNonZeroBytesInInit(const Expr *E, CodeGenFunction &CGF) { 188548c70c16SRichard Smith if (auto *MTE = dyn_cast<MaterializeTemporaryExpr>(E)) 188648c70c16SRichard Smith E = MTE->getSubExpr(); 188748c70c16SRichard Smith E = E->IgnoreParenNoopCasts(CGF.getContext()); 188827a3631bSChris Lattner 188927a3631bSChris Lattner // 0 and 0.0 won't require any non-zero stores! 1890df94cb7dSKen Dyck if (isSimpleZero(E, CGF)) return CharUnits::Zero(); 189127a3631bSChris Lattner 189227a3631bSChris Lattner // If this is an initlist expr, sum up the size of sizes of the (present) 189327a3631bSChris Lattner // elements. If this is something weird, assume the whole thing is non-zero. 189427a3631bSChris Lattner const InitListExpr *ILE = dyn_cast<InitListExpr>(E); 18958fa638aeSRichard Smith while (ILE && ILE->isTransparent()) 18968fa638aeSRichard Smith ILE = dyn_cast<InitListExpr>(ILE->getInit(0)); 18978a13c418SCraig Topper if (!ILE || !CGF.getTypes().isZeroInitializable(ILE->getType())) 1898df94cb7dSKen Dyck return CGF.getContext().getTypeSizeInChars(E->getType()); 189927a3631bSChris Lattner 1900c5cc2fb9SChris Lattner // InitListExprs for structs have to be handled carefully. If there are 1901c5cc2fb9SChris Lattner // reference members, we need to consider the size of the reference, not the 1902c5cc2fb9SChris Lattner // referencee. InitListExprs for unions and arrays can't have references. 19035cd84755SChris Lattner if (const RecordType *RT = E->getType()->getAs<RecordType>()) { 19045cd84755SChris Lattner if (!RT->isUnionType()) { 1905f7133b79SSimon Pilgrim RecordDecl *SD = RT->getDecl(); 1906df94cb7dSKen Dyck CharUnits NumNonZeroBytes = CharUnits::Zero(); 1907c5cc2fb9SChris Lattner 1908c5cc2fb9SChris Lattner unsigned ILEElement = 0; 1909872307e2SRichard Smith if (auto *CXXRD = dyn_cast<CXXRecordDecl>(SD)) 19106365e464SRichard Smith while (ILEElement != CXXRD->getNumBases()) 1911872307e2SRichard Smith NumNonZeroBytes += 1912872307e2SRichard Smith GetNumNonZeroBytesInInit(ILE->getInit(ILEElement++), CGF); 1913e8a8baefSAaron Ballman for (const auto *Field : SD->fields()) { 1914c5cc2fb9SChris Lattner // We're done once we hit the flexible array member or run out of 1915c5cc2fb9SChris Lattner // InitListExpr elements. 1916c5cc2fb9SChris Lattner if (Field->getType()->isIncompleteArrayType() || 1917c5cc2fb9SChris Lattner ILEElement == ILE->getNumInits()) 1918c5cc2fb9SChris Lattner break; 1919c5cc2fb9SChris Lattner if (Field->isUnnamedBitfield()) 1920c5cc2fb9SChris Lattner continue; 1921c5cc2fb9SChris Lattner 1922c5cc2fb9SChris Lattner const Expr *E = ILE->getInit(ILEElement++); 1923c5cc2fb9SChris Lattner 1924c5cc2fb9SChris Lattner // Reference values are always non-null and have the width of a pointer. 19255cd84755SChris Lattner if (Field->getType()->isReferenceType()) 1926df94cb7dSKen Dyck NumNonZeroBytes += CGF.getContext().toCharUnitsFromBits( 1927c8e01705SJohn McCall CGF.getTarget().getPointerWidth(0)); 19285cd84755SChris Lattner else 1929c5cc2fb9SChris Lattner NumNonZeroBytes += GetNumNonZeroBytesInInit(E, CGF); 1930c5cc2fb9SChris Lattner } 1931c5cc2fb9SChris Lattner 1932c5cc2fb9SChris Lattner return NumNonZeroBytes; 1933c5cc2fb9SChris Lattner } 19345cd84755SChris Lattner } 1935c5cc2fb9SChris Lattner 193648c70c16SRichard Smith // FIXME: This overestimates the number of non-zero bytes for bit-fields. 1937df94cb7dSKen Dyck CharUnits NumNonZeroBytes = CharUnits::Zero(); 193827a3631bSChris Lattner for (unsigned i = 0, e = ILE->getNumInits(); i != e; ++i) 193927a3631bSChris Lattner NumNonZeroBytes += GetNumNonZeroBytesInInit(ILE->getInit(i), CGF); 194027a3631bSChris Lattner return NumNonZeroBytes; 194127a3631bSChris Lattner } 194227a3631bSChris Lattner 194327a3631bSChris Lattner /// CheckAggExprForMemSetUse - If the initializer is large and has a lot of 194427a3631bSChris Lattner /// zeros in it, emit a memset and avoid storing the individual zeros. 194527a3631bSChris Lattner /// 194627a3631bSChris Lattner static void CheckAggExprForMemSetUse(AggValueSlot &Slot, const Expr *E, 194727a3631bSChris Lattner CodeGenFunction &CGF) { 194827a3631bSChris Lattner // If the slot is already known to be zeroed, nothing to do. Don't mess with 194927a3631bSChris Lattner // volatile stores. 19507f416cc4SJohn McCall if (Slot.isZeroed() || Slot.isVolatile() || !Slot.getAddress().isValid()) 19518a13c418SCraig Topper return; 195227a3631bSChris Lattner 195303535265SArgyrios Kyrtzidis // C++ objects with a user-declared constructor don't need zero'ing. 19549c6890a7SRichard Smith if (CGF.getLangOpts().CPlusPlus) 195503535265SArgyrios Kyrtzidis if (const RecordType *RT = CGF.getContext() 195603535265SArgyrios Kyrtzidis .getBaseElementType(E->getType())->getAs<RecordType>()) { 195703535265SArgyrios Kyrtzidis const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl()); 195803535265SArgyrios Kyrtzidis if (RD->hasUserDeclaredConstructor()) 195903535265SArgyrios Kyrtzidis return; 196003535265SArgyrios Kyrtzidis } 196103535265SArgyrios Kyrtzidis 196227a3631bSChris Lattner // If the type is 16-bytes or smaller, prefer individual stores over memset. 1963e78fac51SRichard Smith CharUnits Size = Slot.getPreferredSize(CGF.getContext(), E->getType()); 19647f416cc4SJohn McCall if (Size <= CharUnits::fromQuantity(16)) 196527a3631bSChris Lattner return; 196627a3631bSChris Lattner 196727a3631bSChris Lattner // Check to see if over 3/4 of the initializer are known to be zero. If so, 196827a3631bSChris Lattner // we prefer to emit memset + individual stores for the rest. 1969239a3357SKen Dyck CharUnits NumNonZeroBytes = GetNumNonZeroBytesInInit(E, CGF); 19707f416cc4SJohn McCall if (NumNonZeroBytes*4 > Size) 197127a3631bSChris Lattner return; 197227a3631bSChris Lattner 197327a3631bSChris Lattner // Okay, it seems like a good idea to use an initial memset, emit the call. 19747f416cc4SJohn McCall llvm::Constant *SizeVal = CGF.Builder.getInt64(Size.getQuantity()); 197527a3631bSChris Lattner 19767f416cc4SJohn McCall Address Loc = Slot.getAddress(); 19777f416cc4SJohn McCall Loc = CGF.Builder.CreateElementBitCast(Loc, CGF.Int8Ty); 19787f416cc4SJohn McCall CGF.Builder.CreateMemSet(Loc, CGF.Builder.getInt8(0), SizeVal, false); 197927a3631bSChris Lattner 198027a3631bSChris Lattner // Tell the AggExprEmitter that the slot is known zero. 198127a3631bSChris Lattner Slot.setZeroed(); 198227a3631bSChris Lattner } 198327a3631bSChris Lattner 198427a3631bSChris Lattner 198527a3631bSChris Lattner 198627a3631bSChris Lattner 198725306cacSMike Stump /// EmitAggExpr - Emit the computation of the specified expression of aggregate 198825306cacSMike Stump /// type. The result is computed into DestPtr. Note that if DestPtr is null, 198925306cacSMike Stump /// the value of the aggregate expression is not needed. If VolatileDest is 199025306cacSMike Stump /// true, DestPtr cannot be 0. 19914e8ca4faSJohn McCall void CodeGenFunction::EmitAggExpr(const Expr *E, AggValueSlot Slot) { 199247fb9508SJohn McCall assert(E && hasAggregateEvaluationKind(E->getType()) && 19937a51313dSChris Lattner "Invalid aggregate expression to emit"); 19947f416cc4SJohn McCall assert((Slot.getAddress().isValid() || Slot.isIgnored()) && 199527a3631bSChris Lattner "slot has bits but no address"); 19967a51313dSChris Lattner 199727a3631bSChris Lattner // Optimize the slot if possible. 199827a3631bSChris Lattner CheckAggExprForMemSetUse(Slot, E, *this); 199927a3631bSChris Lattner 20006aab1117SLeny Kholodov AggExprEmitter(*this, Slot, Slot.isIgnored()).Visit(const_cast<Expr*>(E)); 20017a51313dSChris Lattner } 20020bc8e86dSDaniel Dunbar 2003d0bc7b9dSDaniel Dunbar LValue CodeGenFunction::EmitAggExprToLValue(const Expr *E) { 200447fb9508SJohn McCall assert(hasAggregateEvaluationKind(E->getType()) && "Invalid argument!"); 20057f416cc4SJohn McCall Address Temp = CreateMemTemp(E->getType()); 20062e442a00SDaniel Dunbar LValue LV = MakeAddrLValue(Temp, E->getType()); 2007f139ae3dSAkira Hatanaka EmitAggExpr(E, AggValueSlot::forLValue( 2008f139ae3dSAkira Hatanaka LV, *this, AggValueSlot::IsNotDestructed, 200946759f4fSJohn McCall AggValueSlot::DoesNotNeedGCBarriers, 2010f139ae3dSAkira Hatanaka AggValueSlot::IsNotAliased, AggValueSlot::DoesNotOverlap)); 20112e442a00SDaniel Dunbar return LV; 2012d0bc7b9dSDaniel Dunbar } 2013d0bc7b9dSDaniel Dunbar 201478b239eaSRichard Smith AggValueSlot::Overlap_t 20158cca3a5aSRichard Smith CodeGenFunction::getOverlapForFieldInit(const FieldDecl *FD) { 201678b239eaSRichard Smith if (!FD->hasAttr<NoUniqueAddressAttr>() || !FD->getType()->isRecordType()) 201778b239eaSRichard Smith return AggValueSlot::DoesNotOverlap; 201878b239eaSRichard Smith 201978b239eaSRichard Smith // If the field lies entirely within the enclosing class's nvsize, its tail 202078b239eaSRichard Smith // padding cannot overlap any already-initialized object. (The only subobjects 202178b239eaSRichard Smith // with greater addresses that might already be initialized are vbases.) 202278b239eaSRichard Smith const RecordDecl *ClassRD = FD->getParent(); 202378b239eaSRichard Smith const ASTRecordLayout &Layout = getContext().getASTRecordLayout(ClassRD); 202478b239eaSRichard Smith if (Layout.getFieldOffset(FD->getFieldIndex()) + 202578b239eaSRichard Smith getContext().getTypeSize(FD->getType()) <= 202678b239eaSRichard Smith (uint64_t)getContext().toBits(Layout.getNonVirtualSize())) 202778b239eaSRichard Smith return AggValueSlot::DoesNotOverlap; 202878b239eaSRichard Smith 202978b239eaSRichard Smith // The tail padding may contain values we need to preserve. 203078b239eaSRichard Smith return AggValueSlot::MayOverlap; 203178b239eaSRichard Smith } 203278b239eaSRichard Smith 20338cca3a5aSRichard Smith AggValueSlot::Overlap_t CodeGenFunction::getOverlapForBaseInit( 2034e78fac51SRichard Smith const CXXRecordDecl *RD, const CXXRecordDecl *BaseRD, bool IsVirtual) { 203578b239eaSRichard Smith // If the most-derived object is a field declared with [[no_unique_address]], 203678b239eaSRichard Smith // the tail padding of any virtual base could be reused for other subobjects 203778b239eaSRichard Smith // of that field's class. 2038e78fac51SRichard Smith if (IsVirtual) 203978b239eaSRichard Smith return AggValueSlot::MayOverlap; 2040e78fac51SRichard Smith 2041e78fac51SRichard Smith // If the base class is laid out entirely within the nvsize of the derived 2042e78fac51SRichard Smith // class, its tail padding cannot yet be initialized, so we can issue 2043e78fac51SRichard Smith // stores at the full width of the base class. 2044e78fac51SRichard Smith const ASTRecordLayout &Layout = getContext().getASTRecordLayout(RD); 2045e78fac51SRichard Smith if (Layout.getBaseClassOffset(BaseRD) + 2046e78fac51SRichard Smith getContext().getASTRecordLayout(BaseRD).getSize() <= 2047e78fac51SRichard Smith Layout.getNonVirtualSize()) 2048e78fac51SRichard Smith return AggValueSlot::DoesNotOverlap; 2049e78fac51SRichard Smith 2050e78fac51SRichard Smith // The tail padding may contain values we need to preserve. 2051e78fac51SRichard Smith return AggValueSlot::MayOverlap; 2052e78fac51SRichard Smith } 2053e78fac51SRichard Smith 2054e78fac51SRichard Smith void CodeGenFunction::EmitAggregateCopy(LValue Dest, LValue Src, QualType Ty, 2055e78fac51SRichard Smith AggValueSlot::Overlap_t MayOverlap, 2056e78fac51SRichard Smith bool isVolatile) { 2057615ed1a3SChad Rosier assert(!Ty->isAnyComplexType() && "Shouldn't happen for complex"); 20580bc8e86dSDaniel Dunbar 2059f139ae3dSAkira Hatanaka Address DestPtr = Dest.getAddress(*this); 2060f139ae3dSAkira Hatanaka Address SrcPtr = Src.getAddress(*this); 20611860b520SIvan A. Kosarev 20629c6890a7SRichard Smith if (getLangOpts().CPlusPlus) { 2063615ed1a3SChad Rosier if (const RecordType *RT = Ty->getAs<RecordType>()) { 2064615ed1a3SChad Rosier CXXRecordDecl *Record = cast<CXXRecordDecl>(RT->getDecl()); 2065615ed1a3SChad Rosier assert((Record->hasTrivialCopyConstructor() || 2066615ed1a3SChad Rosier Record->hasTrivialCopyAssignment() || 2067615ed1a3SChad Rosier Record->hasTrivialMoveConstructor() || 2068419bd094SRichard Smith Record->hasTrivialMoveAssignment() || 2069c8227f06SArthur Eubanks Record->hasAttr<TrivialABIAttr>() || Record->isUnion()) && 207016488472SRichard Smith "Trying to aggregate-copy a type without a trivial copy/move " 2071f22101a0SDouglas Gregor "constructor or assignment operator"); 2072615ed1a3SChad Rosier // Ignore empty classes in C++. 2073615ed1a3SChad Rosier if (Record->isEmpty()) 207416e94af6SAnders Carlsson return; 207516e94af6SAnders Carlsson } 207616e94af6SAnders Carlsson } 207716e94af6SAnders Carlsson 20785be9b8cbSMichael Liao if (getLangOpts().CUDAIsDevice) { 20795be9b8cbSMichael Liao if (Ty->isCUDADeviceBuiltinSurfaceType()) { 20805be9b8cbSMichael Liao if (getTargetHooks().emitCUDADeviceBuiltinSurfaceDeviceCopy(*this, Dest, 20815be9b8cbSMichael Liao Src)) 20825be9b8cbSMichael Liao return; 20835be9b8cbSMichael Liao } else if (Ty->isCUDADeviceBuiltinTextureType()) { 20845be9b8cbSMichael Liao if (getTargetHooks().emitCUDADeviceBuiltinTextureDeviceCopy(*this, Dest, 20855be9b8cbSMichael Liao Src)) 20865be9b8cbSMichael Liao return; 20875be9b8cbSMichael Liao } 20885be9b8cbSMichael Liao } 20895be9b8cbSMichael Liao 2090ca05dfefSChris Lattner // Aggregate assignment turns into llvm.memcpy. This is almost valid per 20913ef668c2SChris Lattner // C99 6.5.16.1p3, which states "If the value being stored in an object is 20923ef668c2SChris Lattner // read from another object that overlaps in anyway the storage of the first 20933ef668c2SChris Lattner // object, then the overlap shall be exact and the two objects shall have 20943ef668c2SChris Lattner // qualified or unqualified versions of a compatible type." 20953ef668c2SChris Lattner // 2096ca05dfefSChris Lattner // memcpy is not defined if the source and destination pointers are exactly 20973ef668c2SChris Lattner // equal, but other compilers do this optimization, and almost every memcpy 20983ef668c2SChris Lattner // implementation handles this case safely. If there is a libc that does not 20993ef668c2SChris Lattner // safely handle this, we can add a target hook. 21000bc8e86dSDaniel Dunbar 2101e78fac51SRichard Smith // Get data size info for this aggregate. Don't copy the tail padding if this 2102e78fac51SRichard Smith // might be a potentially-overlapping subobject, since the tail padding might 2103e78fac51SRichard Smith // be occupied by a different object. Otherwise, copying it is fine. 2104101309feSBevin Hansson TypeInfoChars TypeInfo; 2105e78fac51SRichard Smith if (MayOverlap) 21061ca66919SBenjamin Kramer TypeInfo = getContext().getTypeInfoDataSizeInChars(Ty); 21071ca66919SBenjamin Kramer else 21081ca66919SBenjamin Kramer TypeInfo = getContext().getTypeInfoInChars(Ty); 2109615ed1a3SChad Rosier 211016dc7b68SAlexey Bataev llvm::Value *SizeVal = nullptr; 2111101309feSBevin Hansson if (TypeInfo.Width.isZero()) { 211216dc7b68SAlexey Bataev // But note that getTypeInfo returns 0 for a VLA. 211316dc7b68SAlexey Bataev if (auto *VAT = dyn_cast_or_null<VariableArrayType>( 211416dc7b68SAlexey Bataev getContext().getAsArrayType(Ty))) { 211516dc7b68SAlexey Bataev QualType BaseEltTy; 211616dc7b68SAlexey Bataev SizeVal = emitArrayLength(VAT, BaseEltTy, DestPtr); 2117e78fac51SRichard Smith TypeInfo = getContext().getTypeInfoInChars(BaseEltTy); 2118101309feSBevin Hansson assert(!TypeInfo.Width.isZero()); 211916dc7b68SAlexey Bataev SizeVal = Builder.CreateNUWMul( 212016dc7b68SAlexey Bataev SizeVal, 2121101309feSBevin Hansson llvm::ConstantInt::get(SizeTy, TypeInfo.Width.getQuantity())); 212216dc7b68SAlexey Bataev } 212316dc7b68SAlexey Bataev } 212416dc7b68SAlexey Bataev if (!SizeVal) { 2125101309feSBevin Hansson SizeVal = llvm::ConstantInt::get(SizeTy, TypeInfo.Width.getQuantity()); 212616dc7b68SAlexey Bataev } 2127615ed1a3SChad Rosier 2128615ed1a3SChad Rosier // FIXME: If we have a volatile struct, the optimizer can remove what might 2129615ed1a3SChad Rosier // appear to be `extra' memory ops: 2130615ed1a3SChad Rosier // 2131615ed1a3SChad Rosier // volatile struct { int i; } a, b; 2132615ed1a3SChad Rosier // 2133615ed1a3SChad Rosier // int main() { 2134615ed1a3SChad Rosier // a = b; 2135615ed1a3SChad Rosier // a = b; 2136615ed1a3SChad Rosier // } 2137615ed1a3SChad Rosier // 2138615ed1a3SChad Rosier // we need to use a different call here. We use isVolatile to indicate when 2139615ed1a3SChad Rosier // either the source or the destination is volatile. 2140615ed1a3SChad Rosier 21417f416cc4SJohn McCall DestPtr = Builder.CreateElementBitCast(DestPtr, Int8Ty); 21427f416cc4SJohn McCall SrcPtr = Builder.CreateElementBitCast(SrcPtr, Int8Ty); 2143615ed1a3SChad Rosier 2144615ed1a3SChad Rosier // Don't do any of the memmove_collectable tests if GC isn't set. 2145615ed1a3SChad Rosier if (CGM.getLangOpts().getGC() == LangOptions::NonGC) { 2146615ed1a3SChad Rosier // fall through 2147615ed1a3SChad Rosier } else if (const RecordType *RecordTy = Ty->getAs<RecordType>()) { 2148615ed1a3SChad Rosier RecordDecl *Record = RecordTy->getDecl(); 2149615ed1a3SChad Rosier if (Record->hasObjectMember()) { 2150615ed1a3SChad Rosier CGM.getObjCRuntime().EmitGCMemmoveCollectable(*this, DestPtr, SrcPtr, 2151615ed1a3SChad Rosier SizeVal); 2152615ed1a3SChad Rosier return; 2153615ed1a3SChad Rosier } 2154615ed1a3SChad Rosier } else if (Ty->isArrayType()) { 2155615ed1a3SChad Rosier QualType BaseType = getContext().getBaseElementType(Ty); 2156615ed1a3SChad Rosier if (const RecordType *RecordTy = BaseType->getAs<RecordType>()) { 2157615ed1a3SChad Rosier if (RecordTy->getDecl()->hasObjectMember()) { 2158615ed1a3SChad Rosier CGM.getObjCRuntime().EmitGCMemmoveCollectable(*this, DestPtr, SrcPtr, 2159615ed1a3SChad Rosier SizeVal); 2160615ed1a3SChad Rosier return; 2161615ed1a3SChad Rosier } 2162615ed1a3SChad Rosier } 2163615ed1a3SChad Rosier } 2164615ed1a3SChad Rosier 21657f416cc4SJohn McCall auto Inst = Builder.CreateMemCpy(DestPtr, SrcPtr, SizeVal, isVolatile); 21667f416cc4SJohn McCall 216722695fceSDan Gohman // Determine the metadata to describe the position of any padding in this 216822695fceSDan Gohman // memcpy, as well as the TBAA tags for the members of the struct, in case 216922695fceSDan Gohman // the optimizer wishes to expand it in to scalar memory operations. 21707f416cc4SJohn McCall if (llvm::MDNode *TBAAStructTag = CGM.getTBAAStructInfo(Ty)) 21717f416cc4SJohn McCall Inst->setMetadata(llvm::LLVMContext::MD_tbaa_struct, TBAAStructTag); 21721860b520SIvan A. Kosarev 21731860b520SIvan A. Kosarev if (CGM.getCodeGenOpts().NewStructPathTBAA) { 21741860b520SIvan A. Kosarev TBAAAccessInfo TBAAInfo = CGM.mergeTBAAInfoForMemoryTransfer( 21751860b520SIvan A. Kosarev Dest.getTBAAInfo(), Src.getTBAAInfo()); 21761860b520SIvan A. Kosarev CGM.DecorateInstructionWithTBAA(Inst, TBAAInfo); 21771860b520SIvan A. Kosarev } 21780bc8e86dSDaniel Dunbar } 2179