1 //===--- CGDecl.cpp - Emit LLVM Code for declarations ---------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This contains code to emit Decl nodes as LLVM code.
10 //
11 //===----------------------------------------------------------------------===//
12 
13 #include "CGBlocks.h"
14 #include "CGCXXABI.h"
15 #include "CGCleanup.h"
16 #include "CGDebugInfo.h"
17 #include "CGOpenCLRuntime.h"
18 #include "CGOpenMPRuntime.h"
19 #include "CodeGenFunction.h"
20 #include "CodeGenModule.h"
21 #include "ConstantEmitter.h"
22 #include "TargetInfo.h"
23 #include "clang/AST/ASTContext.h"
24 #include "clang/AST/CharUnits.h"
25 #include "clang/AST/Decl.h"
26 #include "clang/AST/DeclObjC.h"
27 #include "clang/AST/DeclOpenMP.h"
28 #include "clang/Basic/CodeGenOptions.h"
29 #include "clang/Basic/SourceManager.h"
30 #include "clang/Basic/TargetInfo.h"
31 #include "clang/CodeGen/CGFunctionInfo.h"
32 #include "llvm/Analysis/ValueTracking.h"
33 #include "llvm/IR/DataLayout.h"
34 #include "llvm/IR/GlobalVariable.h"
35 #include "llvm/IR/Intrinsics.h"
36 #include "llvm/IR/Type.h"
37 
38 using namespace clang;
39 using namespace CodeGen;
40 
41 void CodeGenFunction::EmitDecl(const Decl &D) {
42   switch (D.getKind()) {
43   case Decl::BuiltinTemplate:
44   case Decl::TranslationUnit:
45   case Decl::ExternCContext:
46   case Decl::Namespace:
47   case Decl::UnresolvedUsingTypename:
48   case Decl::ClassTemplateSpecialization:
49   case Decl::ClassTemplatePartialSpecialization:
50   case Decl::VarTemplateSpecialization:
51   case Decl::VarTemplatePartialSpecialization:
52   case Decl::TemplateTypeParm:
53   case Decl::UnresolvedUsingValue:
54   case Decl::NonTypeTemplateParm:
55   case Decl::CXXDeductionGuide:
56   case Decl::CXXMethod:
57   case Decl::CXXConstructor:
58   case Decl::CXXDestructor:
59   case Decl::CXXConversion:
60   case Decl::Field:
61   case Decl::MSProperty:
62   case Decl::IndirectField:
63   case Decl::ObjCIvar:
64   case Decl::ObjCAtDefsField:
65   case Decl::ParmVar:
66   case Decl::ImplicitParam:
67   case Decl::ClassTemplate:
68   case Decl::VarTemplate:
69   case Decl::FunctionTemplate:
70   case Decl::TypeAliasTemplate:
71   case Decl::TemplateTemplateParm:
72   case Decl::ObjCMethod:
73   case Decl::ObjCCategory:
74   case Decl::ObjCProtocol:
75   case Decl::ObjCInterface:
76   case Decl::ObjCCategoryImpl:
77   case Decl::ObjCImplementation:
78   case Decl::ObjCProperty:
79   case Decl::ObjCCompatibleAlias:
80   case Decl::PragmaComment:
81   case Decl::PragmaDetectMismatch:
82   case Decl::AccessSpec:
83   case Decl::LinkageSpec:
84   case Decl::Export:
85   case Decl::ObjCPropertyImpl:
86   case Decl::FileScopeAsm:
87   case Decl::Friend:
88   case Decl::FriendTemplate:
89   case Decl::Block:
90   case Decl::Captured:
91   case Decl::ClassScopeFunctionSpecialization:
92   case Decl::UsingShadow:
93   case Decl::ConstructorUsingShadow:
94   case Decl::ObjCTypeParam:
95   case Decl::Binding:
96     llvm_unreachable("Declaration should not be in declstmts!");
97   case Decl::Function:  // void X();
98   case Decl::Record:    // struct/union/class X;
99   case Decl::Enum:      // enum X;
100   case Decl::EnumConstant: // enum ? { X = ? }
101   case Decl::CXXRecord: // struct/union/class X; [C++]
102   case Decl::StaticAssert: // static_assert(X, ""); [C++0x]
103   case Decl::Label:        // __label__ x;
104   case Decl::Import:
105   case Decl::OMPThreadPrivate:
106   case Decl::OMPCapturedExpr:
107   case Decl::OMPRequires:
108   case Decl::Empty:
109     // None of these decls require codegen support.
110     return;
111 
112   case Decl::NamespaceAlias:
113     if (CGDebugInfo *DI = getDebugInfo())
114         DI->EmitNamespaceAlias(cast<NamespaceAliasDecl>(D));
115     return;
116   case Decl::Using:          // using X; [C++]
117     if (CGDebugInfo *DI = getDebugInfo())
118         DI->EmitUsingDecl(cast<UsingDecl>(D));
119     return;
120   case Decl::UsingPack:
121     for (auto *Using : cast<UsingPackDecl>(D).expansions())
122       EmitDecl(*Using);
123     return;
124   case Decl::UsingDirective: // using namespace X; [C++]
125     if (CGDebugInfo *DI = getDebugInfo())
126       DI->EmitUsingDirective(cast<UsingDirectiveDecl>(D));
127     return;
128   case Decl::Var:
129   case Decl::Decomposition: {
130     const VarDecl &VD = cast<VarDecl>(D);
131     assert(VD.isLocalVarDecl() &&
132            "Should not see file-scope variables inside a function!");
133     EmitVarDecl(VD);
134     if (auto *DD = dyn_cast<DecompositionDecl>(&VD))
135       for (auto *B : DD->bindings())
136         if (auto *HD = B->getHoldingVar())
137           EmitVarDecl(*HD);
138     return;
139   }
140 
141   case Decl::OMPDeclareReduction:
142     return CGM.EmitOMPDeclareReduction(cast<OMPDeclareReductionDecl>(&D), this);
143 
144   case Decl::OMPDeclareMapper:
145     return CGM.EmitOMPDeclareMapper(cast<OMPDeclareMapperDecl>(&D), this);
146 
147   case Decl::Typedef:      // typedef int X;
148   case Decl::TypeAlias: {  // using X = int; [C++0x]
149     const TypedefNameDecl &TD = cast<TypedefNameDecl>(D);
150     QualType Ty = TD.getUnderlyingType();
151 
152     if (Ty->isVariablyModifiedType())
153       EmitVariablyModifiedType(Ty);
154   }
155   }
156 }
157 
158 /// EmitVarDecl - This method handles emission of any variable declaration
159 /// inside a function, including static vars etc.
160 void CodeGenFunction::EmitVarDecl(const VarDecl &D) {
161   if (D.hasExternalStorage())
162     // Don't emit it now, allow it to be emitted lazily on its first use.
163     return;
164 
165   // Some function-scope variable does not have static storage but still
166   // needs to be emitted like a static variable, e.g. a function-scope
167   // variable in constant address space in OpenCL.
168   if (D.getStorageDuration() != SD_Automatic) {
169     // Static sampler variables translated to function calls.
170     if (D.getType()->isSamplerT())
171       return;
172 
173     llvm::GlobalValue::LinkageTypes Linkage =
174         CGM.getLLVMLinkageVarDefinition(&D, /*isConstant=*/false);
175 
176     // FIXME: We need to force the emission/use of a guard variable for
177     // some variables even if we can constant-evaluate them because
178     // we can't guarantee every translation unit will constant-evaluate them.
179 
180     return EmitStaticVarDecl(D, Linkage);
181   }
182 
183   if (D.getType().getAddressSpace() == LangAS::opencl_local)
184     return CGM.getOpenCLRuntime().EmitWorkGroupLocalVarDecl(*this, D);
185 
186   assert(D.hasLocalStorage());
187   return EmitAutoVarDecl(D);
188 }
189 
190 static std::string getStaticDeclName(CodeGenModule &CGM, const VarDecl &D) {
191   if (CGM.getLangOpts().CPlusPlus)
192     return CGM.getMangledName(&D).str();
193 
194   // If this isn't C++, we don't need a mangled name, just a pretty one.
195   assert(!D.isExternallyVisible() && "name shouldn't matter");
196   std::string ContextName;
197   const DeclContext *DC = D.getDeclContext();
198   if (auto *CD = dyn_cast<CapturedDecl>(DC))
199     DC = cast<DeclContext>(CD->getNonClosureContext());
200   if (const auto *FD = dyn_cast<FunctionDecl>(DC))
201     ContextName = CGM.getMangledName(FD);
202   else if (const auto *BD = dyn_cast<BlockDecl>(DC))
203     ContextName = CGM.getBlockMangledName(GlobalDecl(), BD);
204   else if (const auto *OMD = dyn_cast<ObjCMethodDecl>(DC))
205     ContextName = OMD->getSelector().getAsString();
206   else
207     llvm_unreachable("Unknown context for static var decl");
208 
209   ContextName += "." + D.getNameAsString();
210   return ContextName;
211 }
212 
213 llvm::Constant *CodeGenModule::getOrCreateStaticVarDecl(
214     const VarDecl &D, llvm::GlobalValue::LinkageTypes Linkage) {
215   // In general, we don't always emit static var decls once before we reference
216   // them. It is possible to reference them before emitting the function that
217   // contains them, and it is possible to emit the containing function multiple
218   // times.
219   if (llvm::Constant *ExistingGV = StaticLocalDeclMap[&D])
220     return ExistingGV;
221 
222   QualType Ty = D.getType();
223   assert(Ty->isConstantSizeType() && "VLAs can't be static");
224 
225   // Use the label if the variable is renamed with the asm-label extension.
226   std::string Name;
227   if (D.hasAttr<AsmLabelAttr>())
228     Name = getMangledName(&D);
229   else
230     Name = getStaticDeclName(*this, D);
231 
232   llvm::Type *LTy = getTypes().ConvertTypeForMem(Ty);
233   LangAS AS = GetGlobalVarAddressSpace(&D);
234   unsigned TargetAS = getContext().getTargetAddressSpace(AS);
235 
236   // OpenCL variables in local address space and CUDA shared
237   // variables cannot have an initializer.
238   llvm::Constant *Init = nullptr;
239   if (Ty.getAddressSpace() == LangAS::opencl_local ||
240       D.hasAttr<CUDASharedAttr>())
241     Init = llvm::UndefValue::get(LTy);
242   else
243     Init = EmitNullConstant(Ty);
244 
245   llvm::GlobalVariable *GV = new llvm::GlobalVariable(
246       getModule(), LTy, Ty.isConstant(getContext()), Linkage, Init, Name,
247       nullptr, llvm::GlobalVariable::NotThreadLocal, TargetAS);
248   GV->setAlignment(getContext().getDeclAlign(&D).getQuantity());
249 
250   if (supportsCOMDAT() && GV->isWeakForLinker())
251     GV->setComdat(TheModule.getOrInsertComdat(GV->getName()));
252 
253   if (D.getTLSKind())
254     setTLSMode(GV, D);
255 
256   setGVProperties(GV, &D);
257 
258   // Make sure the result is of the correct type.
259   LangAS ExpectedAS = Ty.getAddressSpace();
260   llvm::Constant *Addr = GV;
261   if (AS != ExpectedAS) {
262     Addr = getTargetCodeGenInfo().performAddrSpaceCast(
263         *this, GV, AS, ExpectedAS,
264         LTy->getPointerTo(getContext().getTargetAddressSpace(ExpectedAS)));
265   }
266 
267   setStaticLocalDeclAddress(&D, Addr);
268 
269   // Ensure that the static local gets initialized by making sure the parent
270   // function gets emitted eventually.
271   const Decl *DC = cast<Decl>(D.getDeclContext());
272 
273   // We can't name blocks or captured statements directly, so try to emit their
274   // parents.
275   if (isa<BlockDecl>(DC) || isa<CapturedDecl>(DC)) {
276     DC = DC->getNonClosureContext();
277     // FIXME: Ensure that global blocks get emitted.
278     if (!DC)
279       return Addr;
280   }
281 
282   GlobalDecl GD;
283   if (const auto *CD = dyn_cast<CXXConstructorDecl>(DC))
284     GD = GlobalDecl(CD, Ctor_Base);
285   else if (const auto *DD = dyn_cast<CXXDestructorDecl>(DC))
286     GD = GlobalDecl(DD, Dtor_Base);
287   else if (const auto *FD = dyn_cast<FunctionDecl>(DC))
288     GD = GlobalDecl(FD);
289   else {
290     // Don't do anything for Obj-C method decls or global closures. We should
291     // never defer them.
292     assert(isa<ObjCMethodDecl>(DC) && "unexpected parent code decl");
293   }
294   if (GD.getDecl()) {
295     // Disable emission of the parent function for the OpenMP device codegen.
296     CGOpenMPRuntime::DisableAutoDeclareTargetRAII NoDeclTarget(*this);
297     (void)GetAddrOfGlobal(GD);
298   }
299 
300   return Addr;
301 }
302 
303 /// hasNontrivialDestruction - Determine whether a type's destruction is
304 /// non-trivial. If so, and the variable uses static initialization, we must
305 /// register its destructor to run on exit.
306 static bool hasNontrivialDestruction(QualType T) {
307   CXXRecordDecl *RD = T->getBaseElementTypeUnsafe()->getAsCXXRecordDecl();
308   return RD && !RD->hasTrivialDestructor();
309 }
310 
311 /// AddInitializerToStaticVarDecl - Add the initializer for 'D' to the
312 /// global variable that has already been created for it.  If the initializer
313 /// has a different type than GV does, this may free GV and return a different
314 /// one.  Otherwise it just returns GV.
315 llvm::GlobalVariable *
316 CodeGenFunction::AddInitializerToStaticVarDecl(const VarDecl &D,
317                                                llvm::GlobalVariable *GV) {
318   ConstantEmitter emitter(*this);
319   llvm::Constant *Init = emitter.tryEmitForInitializer(D);
320 
321   // If constant emission failed, then this should be a C++ static
322   // initializer.
323   if (!Init) {
324     if (!getLangOpts().CPlusPlus)
325       CGM.ErrorUnsupported(D.getInit(), "constant l-value expression");
326     else if (HaveInsertPoint()) {
327       // Since we have a static initializer, this global variable can't
328       // be constant.
329       GV->setConstant(false);
330 
331       EmitCXXGuardedInit(D, GV, /*PerformInit*/true);
332     }
333     return GV;
334   }
335 
336   // The initializer may differ in type from the global. Rewrite
337   // the global to match the initializer.  (We have to do this
338   // because some types, like unions, can't be completely represented
339   // in the LLVM type system.)
340   if (GV->getType()->getElementType() != Init->getType()) {
341     llvm::GlobalVariable *OldGV = GV;
342 
343     GV = new llvm::GlobalVariable(CGM.getModule(), Init->getType(),
344                                   OldGV->isConstant(),
345                                   OldGV->getLinkage(), Init, "",
346                                   /*InsertBefore*/ OldGV,
347                                   OldGV->getThreadLocalMode(),
348                            CGM.getContext().getTargetAddressSpace(D.getType()));
349     GV->setVisibility(OldGV->getVisibility());
350     GV->setDSOLocal(OldGV->isDSOLocal());
351     GV->setComdat(OldGV->getComdat());
352 
353     // Steal the name of the old global
354     GV->takeName(OldGV);
355 
356     // Replace all uses of the old global with the new global
357     llvm::Constant *NewPtrForOldDecl =
358     llvm::ConstantExpr::getBitCast(GV, OldGV->getType());
359     OldGV->replaceAllUsesWith(NewPtrForOldDecl);
360 
361     // Erase the old global, since it is no longer used.
362     OldGV->eraseFromParent();
363   }
364 
365   GV->setConstant(CGM.isTypeConstant(D.getType(), true));
366   GV->setInitializer(Init);
367 
368   emitter.finalize(GV);
369 
370   if (hasNontrivialDestruction(D.getType()) && HaveInsertPoint()) {
371     // We have a constant initializer, but a nontrivial destructor. We still
372     // need to perform a guarded "initialization" in order to register the
373     // destructor.
374     EmitCXXGuardedInit(D, GV, /*PerformInit*/false);
375   }
376 
377   return GV;
378 }
379 
380 void CodeGenFunction::EmitStaticVarDecl(const VarDecl &D,
381                                       llvm::GlobalValue::LinkageTypes Linkage) {
382   // Check to see if we already have a global variable for this
383   // declaration.  This can happen when double-emitting function
384   // bodies, e.g. with complete and base constructors.
385   llvm::Constant *addr = CGM.getOrCreateStaticVarDecl(D, Linkage);
386   CharUnits alignment = getContext().getDeclAlign(&D);
387 
388   // Store into LocalDeclMap before generating initializer to handle
389   // circular references.
390   setAddrOfLocalVar(&D, Address(addr, alignment));
391 
392   // We can't have a VLA here, but we can have a pointer to a VLA,
393   // even though that doesn't really make any sense.
394   // Make sure to evaluate VLA bounds now so that we have them for later.
395   if (D.getType()->isVariablyModifiedType())
396     EmitVariablyModifiedType(D.getType());
397 
398   // Save the type in case adding the initializer forces a type change.
399   llvm::Type *expectedType = addr->getType();
400 
401   llvm::GlobalVariable *var =
402     cast<llvm::GlobalVariable>(addr->stripPointerCasts());
403 
404   // CUDA's local and local static __shared__ variables should not
405   // have any non-empty initializers. This is ensured by Sema.
406   // Whatever initializer such variable may have when it gets here is
407   // a no-op and should not be emitted.
408   bool isCudaSharedVar = getLangOpts().CUDA && getLangOpts().CUDAIsDevice &&
409                          D.hasAttr<CUDASharedAttr>();
410   // If this value has an initializer, emit it.
411   if (D.getInit() && !isCudaSharedVar)
412     var = AddInitializerToStaticVarDecl(D, var);
413 
414   var->setAlignment(alignment.getQuantity());
415 
416   if (D.hasAttr<AnnotateAttr>())
417     CGM.AddGlobalAnnotations(&D, var);
418 
419   if (auto *SA = D.getAttr<PragmaClangBSSSectionAttr>())
420     var->addAttribute("bss-section", SA->getName());
421   if (auto *SA = D.getAttr<PragmaClangDataSectionAttr>())
422     var->addAttribute("data-section", SA->getName());
423   if (auto *SA = D.getAttr<PragmaClangRodataSectionAttr>())
424     var->addAttribute("rodata-section", SA->getName());
425 
426   if (const SectionAttr *SA = D.getAttr<SectionAttr>())
427     var->setSection(SA->getName());
428 
429   if (D.hasAttr<UsedAttr>())
430     CGM.addUsedGlobal(var);
431 
432   // We may have to cast the constant because of the initializer
433   // mismatch above.
434   //
435   // FIXME: It is really dangerous to store this in the map; if anyone
436   // RAUW's the GV uses of this constant will be invalid.
437   llvm::Constant *castedAddr =
438     llvm::ConstantExpr::getPointerBitCastOrAddrSpaceCast(var, expectedType);
439   if (var != castedAddr)
440     LocalDeclMap.find(&D)->second = Address(castedAddr, alignment);
441   CGM.setStaticLocalDeclAddress(&D, castedAddr);
442 
443   CGM.getSanitizerMetadata()->reportGlobalToASan(var, D);
444 
445   // Emit global variable debug descriptor for static vars.
446   CGDebugInfo *DI = getDebugInfo();
447   if (DI &&
448       CGM.getCodeGenOpts().getDebugInfo() >= codegenoptions::LimitedDebugInfo) {
449     DI->setLocation(D.getLocation());
450     DI->EmitGlobalVariable(var, &D);
451   }
452 }
453 
454 namespace {
455   struct DestroyObject final : EHScopeStack::Cleanup {
456     DestroyObject(Address addr, QualType type,
457                   CodeGenFunction::Destroyer *destroyer,
458                   bool useEHCleanupForArray)
459       : addr(addr), type(type), destroyer(destroyer),
460         useEHCleanupForArray(useEHCleanupForArray) {}
461 
462     Address addr;
463     QualType type;
464     CodeGenFunction::Destroyer *destroyer;
465     bool useEHCleanupForArray;
466 
467     void Emit(CodeGenFunction &CGF, Flags flags) override {
468       // Don't use an EH cleanup recursively from an EH cleanup.
469       bool useEHCleanupForArray =
470         flags.isForNormalCleanup() && this->useEHCleanupForArray;
471 
472       CGF.emitDestroy(addr, type, destroyer, useEHCleanupForArray);
473     }
474   };
475 
476   template <class Derived>
477   struct DestroyNRVOVariable : EHScopeStack::Cleanup {
478     DestroyNRVOVariable(Address addr, llvm::Value *NRVOFlag)
479         : NRVOFlag(NRVOFlag), Loc(addr) {}
480 
481     llvm::Value *NRVOFlag;
482     Address Loc;
483 
484     void Emit(CodeGenFunction &CGF, Flags flags) override {
485       // Along the exceptions path we always execute the dtor.
486       bool NRVO = flags.isForNormalCleanup() && NRVOFlag;
487 
488       llvm::BasicBlock *SkipDtorBB = nullptr;
489       if (NRVO) {
490         // If we exited via NRVO, we skip the destructor call.
491         llvm::BasicBlock *RunDtorBB = CGF.createBasicBlock("nrvo.unused");
492         SkipDtorBB = CGF.createBasicBlock("nrvo.skipdtor");
493         llvm::Value *DidNRVO =
494           CGF.Builder.CreateFlagLoad(NRVOFlag, "nrvo.val");
495         CGF.Builder.CreateCondBr(DidNRVO, SkipDtorBB, RunDtorBB);
496         CGF.EmitBlock(RunDtorBB);
497       }
498 
499       static_cast<Derived *>(this)->emitDestructorCall(CGF);
500 
501       if (NRVO) CGF.EmitBlock(SkipDtorBB);
502     }
503 
504     virtual ~DestroyNRVOVariable() = default;
505   };
506 
507   struct DestroyNRVOVariableCXX final
508       : DestroyNRVOVariable<DestroyNRVOVariableCXX> {
509     DestroyNRVOVariableCXX(Address addr, const CXXDestructorDecl *Dtor,
510                            llvm::Value *NRVOFlag)
511       : DestroyNRVOVariable<DestroyNRVOVariableCXX>(addr, NRVOFlag),
512         Dtor(Dtor) {}
513 
514     const CXXDestructorDecl *Dtor;
515 
516     void emitDestructorCall(CodeGenFunction &CGF) {
517       CGF.EmitCXXDestructorCall(Dtor, Dtor_Complete,
518                                 /*ForVirtualBase=*/false,
519                                 /*Delegating=*/false, Loc);
520     }
521   };
522 
523   struct DestroyNRVOVariableC final
524       : DestroyNRVOVariable<DestroyNRVOVariableC> {
525     DestroyNRVOVariableC(Address addr, llvm::Value *NRVOFlag, QualType Ty)
526         : DestroyNRVOVariable<DestroyNRVOVariableC>(addr, NRVOFlag), Ty(Ty) {}
527 
528     QualType Ty;
529 
530     void emitDestructorCall(CodeGenFunction &CGF) {
531       CGF.destroyNonTrivialCStruct(CGF, Loc, Ty);
532     }
533   };
534 
535   struct CallStackRestore final : EHScopeStack::Cleanup {
536     Address Stack;
537     CallStackRestore(Address Stack) : Stack(Stack) {}
538     void Emit(CodeGenFunction &CGF, Flags flags) override {
539       llvm::Value *V = CGF.Builder.CreateLoad(Stack);
540       llvm::Function *F = CGF.CGM.getIntrinsic(llvm::Intrinsic::stackrestore);
541       CGF.Builder.CreateCall(F, V);
542     }
543   };
544 
545   struct ExtendGCLifetime final : EHScopeStack::Cleanup {
546     const VarDecl &Var;
547     ExtendGCLifetime(const VarDecl *var) : Var(*var) {}
548 
549     void Emit(CodeGenFunction &CGF, Flags flags) override {
550       // Compute the address of the local variable, in case it's a
551       // byref or something.
552       DeclRefExpr DRE(CGF.getContext(), const_cast<VarDecl *>(&Var), false,
553                       Var.getType(), VK_LValue, SourceLocation());
554       llvm::Value *value = CGF.EmitLoadOfScalar(CGF.EmitDeclRefLValue(&DRE),
555                                                 SourceLocation());
556       CGF.EmitExtendGCLifetime(value);
557     }
558   };
559 
560   struct CallCleanupFunction final : EHScopeStack::Cleanup {
561     llvm::Constant *CleanupFn;
562     const CGFunctionInfo &FnInfo;
563     const VarDecl &Var;
564 
565     CallCleanupFunction(llvm::Constant *CleanupFn, const CGFunctionInfo *Info,
566                         const VarDecl *Var)
567       : CleanupFn(CleanupFn), FnInfo(*Info), Var(*Var) {}
568 
569     void Emit(CodeGenFunction &CGF, Flags flags) override {
570       DeclRefExpr DRE(CGF.getContext(), const_cast<VarDecl *>(&Var), false,
571                       Var.getType(), VK_LValue, SourceLocation());
572       // Compute the address of the local variable, in case it's a byref
573       // or something.
574       llvm::Value *Addr = CGF.EmitDeclRefLValue(&DRE).getPointer();
575 
576       // In some cases, the type of the function argument will be different from
577       // the type of the pointer. An example of this is
578       // void f(void* arg);
579       // __attribute__((cleanup(f))) void *g;
580       //
581       // To fix this we insert a bitcast here.
582       QualType ArgTy = FnInfo.arg_begin()->type;
583       llvm::Value *Arg =
584         CGF.Builder.CreateBitCast(Addr, CGF.ConvertType(ArgTy));
585 
586       CallArgList Args;
587       Args.add(RValue::get(Arg),
588                CGF.getContext().getPointerType(Var.getType()));
589       auto Callee = CGCallee::forDirect(CleanupFn);
590       CGF.EmitCall(FnInfo, Callee, ReturnValueSlot(), Args);
591     }
592   };
593 } // end anonymous namespace
594 
595 /// EmitAutoVarWithLifetime - Does the setup required for an automatic
596 /// variable with lifetime.
597 static void EmitAutoVarWithLifetime(CodeGenFunction &CGF, const VarDecl &var,
598                                     Address addr,
599                                     Qualifiers::ObjCLifetime lifetime) {
600   switch (lifetime) {
601   case Qualifiers::OCL_None:
602     llvm_unreachable("present but none");
603 
604   case Qualifiers::OCL_ExplicitNone:
605     // nothing to do
606     break;
607 
608   case Qualifiers::OCL_Strong: {
609     CodeGenFunction::Destroyer *destroyer =
610       (var.hasAttr<ObjCPreciseLifetimeAttr>()
611        ? CodeGenFunction::destroyARCStrongPrecise
612        : CodeGenFunction::destroyARCStrongImprecise);
613 
614     CleanupKind cleanupKind = CGF.getARCCleanupKind();
615     CGF.pushDestroy(cleanupKind, addr, var.getType(), destroyer,
616                     cleanupKind & EHCleanup);
617     break;
618   }
619   case Qualifiers::OCL_Autoreleasing:
620     // nothing to do
621     break;
622 
623   case Qualifiers::OCL_Weak:
624     // __weak objects always get EH cleanups; otherwise, exceptions
625     // could cause really nasty crashes instead of mere leaks.
626     CGF.pushDestroy(NormalAndEHCleanup, addr, var.getType(),
627                     CodeGenFunction::destroyARCWeak,
628                     /*useEHCleanup*/ true);
629     break;
630   }
631 }
632 
633 static bool isAccessedBy(const VarDecl &var, const Stmt *s) {
634   if (const Expr *e = dyn_cast<Expr>(s)) {
635     // Skip the most common kinds of expressions that make
636     // hierarchy-walking expensive.
637     s = e = e->IgnoreParenCasts();
638 
639     if (const DeclRefExpr *ref = dyn_cast<DeclRefExpr>(e))
640       return (ref->getDecl() == &var);
641     if (const BlockExpr *be = dyn_cast<BlockExpr>(e)) {
642       const BlockDecl *block = be->getBlockDecl();
643       for (const auto &I : block->captures()) {
644         if (I.getVariable() == &var)
645           return true;
646       }
647     }
648   }
649 
650   for (const Stmt *SubStmt : s->children())
651     // SubStmt might be null; as in missing decl or conditional of an if-stmt.
652     if (SubStmt && isAccessedBy(var, SubStmt))
653       return true;
654 
655   return false;
656 }
657 
658 static bool isAccessedBy(const ValueDecl *decl, const Expr *e) {
659   if (!decl) return false;
660   if (!isa<VarDecl>(decl)) return false;
661   const VarDecl *var = cast<VarDecl>(decl);
662   return isAccessedBy(*var, e);
663 }
664 
665 static bool tryEmitARCCopyWeakInit(CodeGenFunction &CGF,
666                                    const LValue &destLV, const Expr *init) {
667   bool needsCast = false;
668 
669   while (auto castExpr = dyn_cast<CastExpr>(init->IgnoreParens())) {
670     switch (castExpr->getCastKind()) {
671     // Look through casts that don't require representation changes.
672     case CK_NoOp:
673     case CK_BitCast:
674     case CK_BlockPointerToObjCPointerCast:
675       needsCast = true;
676       break;
677 
678     // If we find an l-value to r-value cast from a __weak variable,
679     // emit this operation as a copy or move.
680     case CK_LValueToRValue: {
681       const Expr *srcExpr = castExpr->getSubExpr();
682       if (srcExpr->getType().getObjCLifetime() != Qualifiers::OCL_Weak)
683         return false;
684 
685       // Emit the source l-value.
686       LValue srcLV = CGF.EmitLValue(srcExpr);
687 
688       // Handle a formal type change to avoid asserting.
689       auto srcAddr = srcLV.getAddress();
690       if (needsCast) {
691         srcAddr = CGF.Builder.CreateElementBitCast(srcAddr,
692                                          destLV.getAddress().getElementType());
693       }
694 
695       // If it was an l-value, use objc_copyWeak.
696       if (srcExpr->getValueKind() == VK_LValue) {
697         CGF.EmitARCCopyWeak(destLV.getAddress(), srcAddr);
698       } else {
699         assert(srcExpr->getValueKind() == VK_XValue);
700         CGF.EmitARCMoveWeak(destLV.getAddress(), srcAddr);
701       }
702       return true;
703     }
704 
705     // Stop at anything else.
706     default:
707       return false;
708     }
709 
710     init = castExpr->getSubExpr();
711   }
712   return false;
713 }
714 
715 static void drillIntoBlockVariable(CodeGenFunction &CGF,
716                                    LValue &lvalue,
717                                    const VarDecl *var) {
718   lvalue.setAddress(CGF.emitBlockByrefAddress(lvalue.getAddress(), var));
719 }
720 
721 void CodeGenFunction::EmitNullabilityCheck(LValue LHS, llvm::Value *RHS,
722                                            SourceLocation Loc) {
723   if (!SanOpts.has(SanitizerKind::NullabilityAssign))
724     return;
725 
726   auto Nullability = LHS.getType()->getNullability(getContext());
727   if (!Nullability || *Nullability != NullabilityKind::NonNull)
728     return;
729 
730   // Check if the right hand side of the assignment is nonnull, if the left
731   // hand side must be nonnull.
732   SanitizerScope SanScope(this);
733   llvm::Value *IsNotNull = Builder.CreateIsNotNull(RHS);
734   llvm::Constant *StaticData[] = {
735       EmitCheckSourceLocation(Loc), EmitCheckTypeDescriptor(LHS.getType()),
736       llvm::ConstantInt::get(Int8Ty, 0), // The LogAlignment info is unused.
737       llvm::ConstantInt::get(Int8Ty, TCK_NonnullAssign)};
738   EmitCheck({{IsNotNull, SanitizerKind::NullabilityAssign}},
739             SanitizerHandler::TypeMismatch, StaticData, RHS);
740 }
741 
742 void CodeGenFunction::EmitScalarInit(const Expr *init, const ValueDecl *D,
743                                      LValue lvalue, bool capturedByInit) {
744   Qualifiers::ObjCLifetime lifetime = lvalue.getObjCLifetime();
745   if (!lifetime) {
746     llvm::Value *value = EmitScalarExpr(init);
747     if (capturedByInit)
748       drillIntoBlockVariable(*this, lvalue, cast<VarDecl>(D));
749     EmitNullabilityCheck(lvalue, value, init->getExprLoc());
750     EmitStoreThroughLValue(RValue::get(value), lvalue, true);
751     return;
752   }
753 
754   if (const CXXDefaultInitExpr *DIE = dyn_cast<CXXDefaultInitExpr>(init))
755     init = DIE->getExpr();
756 
757   // If we're emitting a value with lifetime, we have to do the
758   // initialization *before* we leave the cleanup scopes.
759   if (const FullExpr *fe = dyn_cast<FullExpr>(init)) {
760     enterFullExpression(fe);
761     init = fe->getSubExpr();
762   }
763   CodeGenFunction::RunCleanupsScope Scope(*this);
764 
765   // We have to maintain the illusion that the variable is
766   // zero-initialized.  If the variable might be accessed in its
767   // initializer, zero-initialize before running the initializer, then
768   // actually perform the initialization with an assign.
769   bool accessedByInit = false;
770   if (lifetime != Qualifiers::OCL_ExplicitNone)
771     accessedByInit = (capturedByInit || isAccessedBy(D, init));
772   if (accessedByInit) {
773     LValue tempLV = lvalue;
774     // Drill down to the __block object if necessary.
775     if (capturedByInit) {
776       // We can use a simple GEP for this because it can't have been
777       // moved yet.
778       tempLV.setAddress(emitBlockByrefAddress(tempLV.getAddress(),
779                                               cast<VarDecl>(D),
780                                               /*follow*/ false));
781     }
782 
783     auto ty = cast<llvm::PointerType>(tempLV.getAddress().getElementType());
784     llvm::Value *zero = CGM.getNullPointer(ty, tempLV.getType());
785 
786     // If __weak, we want to use a barrier under certain conditions.
787     if (lifetime == Qualifiers::OCL_Weak)
788       EmitARCInitWeak(tempLV.getAddress(), zero);
789 
790     // Otherwise just do a simple store.
791     else
792       EmitStoreOfScalar(zero, tempLV, /* isInitialization */ true);
793   }
794 
795   // Emit the initializer.
796   llvm::Value *value = nullptr;
797 
798   switch (lifetime) {
799   case Qualifiers::OCL_None:
800     llvm_unreachable("present but none");
801 
802   case Qualifiers::OCL_Strong: {
803     if (!D || !isa<VarDecl>(D) || !cast<VarDecl>(D)->isARCPseudoStrong()) {
804       value = EmitARCRetainScalarExpr(init);
805       break;
806     }
807     // If D is pseudo-strong, treat it like __unsafe_unretained here. This means
808     // that we omit the retain, and causes non-autoreleased return values to be
809     // immediately released.
810     LLVM_FALLTHROUGH;
811   }
812 
813   case Qualifiers::OCL_ExplicitNone:
814     value = EmitARCUnsafeUnretainedScalarExpr(init);
815     break;
816 
817   case Qualifiers::OCL_Weak: {
818     // If it's not accessed by the initializer, try to emit the
819     // initialization with a copy or move.
820     if (!accessedByInit && tryEmitARCCopyWeakInit(*this, lvalue, init)) {
821       return;
822     }
823 
824     // No way to optimize a producing initializer into this.  It's not
825     // worth optimizing for, because the value will immediately
826     // disappear in the common case.
827     value = EmitScalarExpr(init);
828 
829     if (capturedByInit) drillIntoBlockVariable(*this, lvalue, cast<VarDecl>(D));
830     if (accessedByInit)
831       EmitARCStoreWeak(lvalue.getAddress(), value, /*ignored*/ true);
832     else
833       EmitARCInitWeak(lvalue.getAddress(), value);
834     return;
835   }
836 
837   case Qualifiers::OCL_Autoreleasing:
838     value = EmitARCRetainAutoreleaseScalarExpr(init);
839     break;
840   }
841 
842   if (capturedByInit) drillIntoBlockVariable(*this, lvalue, cast<VarDecl>(D));
843 
844   EmitNullabilityCheck(lvalue, value, init->getExprLoc());
845 
846   // If the variable might have been accessed by its initializer, we
847   // might have to initialize with a barrier.  We have to do this for
848   // both __weak and __strong, but __weak got filtered out above.
849   if (accessedByInit && lifetime == Qualifiers::OCL_Strong) {
850     llvm::Value *oldValue = EmitLoadOfScalar(lvalue, init->getExprLoc());
851     EmitStoreOfScalar(value, lvalue, /* isInitialization */ true);
852     EmitARCRelease(oldValue, ARCImpreciseLifetime);
853     return;
854   }
855 
856   EmitStoreOfScalar(value, lvalue, /* isInitialization */ true);
857 }
858 
859 /// Decide whether we can emit the non-zero parts of the specified initializer
860 /// with equal or fewer than NumStores scalar stores.
861 static bool canEmitInitWithFewStoresAfterBZero(llvm::Constant *Init,
862                                                unsigned &NumStores) {
863   // Zero and Undef never requires any extra stores.
864   if (isa<llvm::ConstantAggregateZero>(Init) ||
865       isa<llvm::ConstantPointerNull>(Init) ||
866       isa<llvm::UndefValue>(Init))
867     return true;
868   if (isa<llvm::ConstantInt>(Init) || isa<llvm::ConstantFP>(Init) ||
869       isa<llvm::ConstantVector>(Init) || isa<llvm::BlockAddress>(Init) ||
870       isa<llvm::ConstantExpr>(Init))
871     return Init->isNullValue() || NumStores--;
872 
873   // See if we can emit each element.
874   if (isa<llvm::ConstantArray>(Init) || isa<llvm::ConstantStruct>(Init)) {
875     for (unsigned i = 0, e = Init->getNumOperands(); i != e; ++i) {
876       llvm::Constant *Elt = cast<llvm::Constant>(Init->getOperand(i));
877       if (!canEmitInitWithFewStoresAfterBZero(Elt, NumStores))
878         return false;
879     }
880     return true;
881   }
882 
883   if (llvm::ConstantDataSequential *CDS =
884         dyn_cast<llvm::ConstantDataSequential>(Init)) {
885     for (unsigned i = 0, e = CDS->getNumElements(); i != e; ++i) {
886       llvm::Constant *Elt = CDS->getElementAsConstant(i);
887       if (!canEmitInitWithFewStoresAfterBZero(Elt, NumStores))
888         return false;
889     }
890     return true;
891   }
892 
893   // Anything else is hard and scary.
894   return false;
895 }
896 
897 /// For inits that canEmitInitWithFewStoresAfterBZero returned true for, emit
898 /// the scalar stores that would be required.
899 static void emitStoresForInitAfterBZero(CodeGenModule &CGM,
900                                         llvm::Constant *Init, Address Loc,
901                                         bool isVolatile, CGBuilderTy &Builder) {
902   assert(!Init->isNullValue() && !isa<llvm::UndefValue>(Init) &&
903          "called emitStoresForInitAfterBZero for zero or undef value.");
904 
905   if (isa<llvm::ConstantInt>(Init) || isa<llvm::ConstantFP>(Init) ||
906       isa<llvm::ConstantVector>(Init) || isa<llvm::BlockAddress>(Init) ||
907       isa<llvm::ConstantExpr>(Init)) {
908     Builder.CreateStore(Init, Loc, isVolatile);
909     return;
910   }
911 
912   if (llvm::ConstantDataSequential *CDS =
913           dyn_cast<llvm::ConstantDataSequential>(Init)) {
914     for (unsigned i = 0, e = CDS->getNumElements(); i != e; ++i) {
915       llvm::Constant *Elt = CDS->getElementAsConstant(i);
916 
917       // If necessary, get a pointer to the element and emit it.
918       if (!Elt->isNullValue() && !isa<llvm::UndefValue>(Elt))
919         emitStoresForInitAfterBZero(
920             CGM, Elt, Builder.CreateConstInBoundsGEP2_32(Loc, 0, i), isVolatile,
921             Builder);
922     }
923     return;
924   }
925 
926   assert((isa<llvm::ConstantStruct>(Init) || isa<llvm::ConstantArray>(Init)) &&
927          "Unknown value type!");
928 
929   for (unsigned i = 0, e = Init->getNumOperands(); i != e; ++i) {
930     llvm::Constant *Elt = cast<llvm::Constant>(Init->getOperand(i));
931 
932     // If necessary, get a pointer to the element and emit it.
933     if (!Elt->isNullValue() && !isa<llvm::UndefValue>(Elt))
934       emitStoresForInitAfterBZero(CGM, Elt,
935                                   Builder.CreateConstInBoundsGEP2_32(Loc, 0, i),
936                                   isVolatile, Builder);
937   }
938 }
939 
940 /// Decide whether we should use bzero plus some stores to initialize a local
941 /// variable instead of using a memcpy from a constant global.  It is beneficial
942 /// to use bzero if the global is all zeros, or mostly zeros and large.
943 static bool shouldUseBZeroPlusStoresToInitialize(llvm::Constant *Init,
944                                                  uint64_t GlobalSize) {
945   // If a global is all zeros, always use a bzero.
946   if (isa<llvm::ConstantAggregateZero>(Init)) return true;
947 
948   // If a non-zero global is <= 32 bytes, always use a memcpy.  If it is large,
949   // do it if it will require 6 or fewer scalar stores.
950   // TODO: Should budget depends on the size?  Avoiding a large global warrants
951   // plopping in more stores.
952   unsigned StoreBudget = 6;
953   uint64_t SizeLimit = 32;
954 
955   return GlobalSize > SizeLimit &&
956          canEmitInitWithFewStoresAfterBZero(Init, StoreBudget);
957 }
958 
959 /// Decide whether we should use memset to initialize a local variable instead
960 /// of using a memcpy from a constant global. Assumes we've already decided to
961 /// not user bzero.
962 /// FIXME We could be more clever, as we are for bzero above, and generate
963 ///       memset followed by stores. It's unclear that's worth the effort.
964 static llvm::Value *shouldUseMemSetToInitialize(llvm::Constant *Init,
965                                                 uint64_t GlobalSize) {
966   uint64_t SizeLimit = 32;
967   if (GlobalSize <= SizeLimit)
968     return nullptr;
969   return llvm::isBytewiseValue(Init);
970 }
971 
972 static llvm::Constant *patternFor(CodeGenModule &CGM, llvm::Type *Ty) {
973   // The following value is a guaranteed unmappable pointer value and has a
974   // repeated byte-pattern which makes it easier to synthesize. We use it for
975   // pointers as well as integers so that aggregates are likely to be
976   // initialized with this repeated value.
977   constexpr uint64_t LargeValue = 0xAAAAAAAAAAAAAAAAull;
978   // For 32-bit platforms it's a bit trickier because, across systems, only the
979   // zero page can reasonably be expected to be unmapped, and even then we need
980   // a very low address. We use a smaller value, and that value sadly doesn't
981   // have a repeated byte-pattern. We don't use it for integers.
982   constexpr uint32_t SmallValue = 0x000000AA;
983   // Floating-point values are initialized as NaNs because they propagate. Using
984   // a repeated byte pattern means that it will be easier to initialize
985   // all-floating-point aggregates and arrays with memset. Further, aggregates
986   // which mix integral and a few floats might also initialize with memset
987   // followed by a handful of stores for the floats. Using fairly unique NaNs
988   // also means they'll be easier to distinguish in a crash.
989   constexpr bool NegativeNaN = true;
990   constexpr uint64_t NaNPayload = 0xFFFFFFFFFFFFFFFFull;
991   if (Ty->isIntOrIntVectorTy()) {
992     unsigned BitWidth = cast<llvm::IntegerType>(
993                             Ty->isVectorTy() ? Ty->getVectorElementType() : Ty)
994                             ->getBitWidth();
995     if (BitWidth <= 64)
996       return llvm::ConstantInt::get(Ty, LargeValue);
997     return llvm::ConstantInt::get(
998         Ty, llvm::APInt::getSplat(BitWidth, llvm::APInt(64, LargeValue)));
999   }
1000   if (Ty->isPtrOrPtrVectorTy()) {
1001     auto *PtrTy = cast<llvm::PointerType>(
1002         Ty->isVectorTy() ? Ty->getVectorElementType() : Ty);
1003     unsigned PtrWidth = CGM.getContext().getTargetInfo().getPointerWidth(
1004         PtrTy->getAddressSpace());
1005     llvm::Type *IntTy = llvm::IntegerType::get(CGM.getLLVMContext(), PtrWidth);
1006     uint64_t IntValue;
1007     switch (PtrWidth) {
1008     default:
1009       llvm_unreachable("pattern initialization of unsupported pointer width");
1010     case 64:
1011       IntValue = LargeValue;
1012       break;
1013     case 32:
1014       IntValue = SmallValue;
1015       break;
1016     }
1017     auto *Int = llvm::ConstantInt::get(IntTy, IntValue);
1018     return llvm::ConstantExpr::getIntToPtr(Int, PtrTy);
1019   }
1020   if (Ty->isFPOrFPVectorTy()) {
1021     unsigned BitWidth = llvm::APFloat::semanticsSizeInBits(
1022         (Ty->isVectorTy() ? Ty->getVectorElementType() : Ty)
1023             ->getFltSemantics());
1024     llvm::APInt Payload(64, NaNPayload);
1025     if (BitWidth >= 64)
1026       Payload = llvm::APInt::getSplat(BitWidth, Payload);
1027     return llvm::ConstantFP::getQNaN(Ty, NegativeNaN, &Payload);
1028   }
1029   if (Ty->isArrayTy()) {
1030     // Note: this doesn't touch tail padding (at the end of an object, before
1031     // the next array object). It is instead handled by replaceUndef.
1032     auto *ArrTy = cast<llvm::ArrayType>(Ty);
1033     llvm::SmallVector<llvm::Constant *, 8> Element(
1034         ArrTy->getNumElements(), patternFor(CGM, ArrTy->getElementType()));
1035     return llvm::ConstantArray::get(ArrTy, Element);
1036   }
1037 
1038   // Note: this doesn't touch struct padding. It will initialize as much union
1039   // padding as is required for the largest type in the union. Padding is
1040   // instead handled by replaceUndef. Stores to structs with volatile members
1041   // don't have a volatile qualifier when initialized according to C++. This is
1042   // fine because stack-based volatiles don't really have volatile semantics
1043   // anyways, and the initialization shouldn't be observable.
1044   auto *StructTy = cast<llvm::StructType>(Ty);
1045   llvm::SmallVector<llvm::Constant *, 8> Struct(StructTy->getNumElements());
1046   for (unsigned El = 0; El != Struct.size(); ++El)
1047     Struct[El] = patternFor(CGM, StructTy->getElementType(El));
1048   return llvm::ConstantStruct::get(StructTy, Struct);
1049 }
1050 
1051 static Address createUnnamedGlobalFrom(CodeGenModule &CGM, const VarDecl &D,
1052                                        CGBuilderTy &Builder,
1053                                        llvm::Constant *Constant,
1054                                        CharUnits Align) {
1055   auto FunctionName = [&](const DeclContext *DC) -> std::string {
1056     if (const auto *FD = dyn_cast<FunctionDecl>(DC)) {
1057       if (const auto *CC = dyn_cast<CXXConstructorDecl>(FD))
1058         return CC->getNameAsString();
1059       if (const auto *CD = dyn_cast<CXXDestructorDecl>(FD))
1060         return CD->getNameAsString();
1061       return CGM.getMangledName(FD);
1062     } else if (const auto *OM = dyn_cast<ObjCMethodDecl>(DC)) {
1063       return OM->getNameAsString();
1064     } else if (isa<BlockDecl>(DC)) {
1065       return "<block>";
1066     } else if (isa<CapturedDecl>(DC)) {
1067       return "<captured>";
1068     } else {
1069       llvm::llvm_unreachable_internal("expected a function or method");
1070     }
1071   };
1072 
1073   auto *Ty = Constant->getType();
1074   bool isConstant = true;
1075   llvm::GlobalVariable *InsertBefore = nullptr;
1076   unsigned AS = CGM.getContext().getTargetAddressSpace(
1077       CGM.getStringLiteralAddressSpace());
1078   llvm::GlobalVariable *GV = new llvm::GlobalVariable(
1079       CGM.getModule(), Ty, isConstant, llvm::GlobalValue::PrivateLinkage,
1080       Constant,
1081       "__const." + FunctionName(D.getParentFunctionOrMethod()) + "." +
1082           D.getName(),
1083       InsertBefore, llvm::GlobalValue::NotThreadLocal, AS);
1084   GV->setAlignment(Align.getQuantity());
1085   GV->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global);
1086 
1087   Address SrcPtr = Address(GV, Align);
1088   llvm::Type *BP = llvm::PointerType::getInt8PtrTy(CGM.getLLVMContext(), AS);
1089   if (SrcPtr.getType() != BP)
1090     SrcPtr = Builder.CreateBitCast(SrcPtr, BP);
1091   return SrcPtr;
1092 }
1093 
1094 static void emitStoresForConstant(CodeGenModule &CGM, const VarDecl &D,
1095                                   Address Loc, bool isVolatile,
1096                                   CGBuilderTy &Builder,
1097                                   llvm::Constant *constant) {
1098   auto *Ty = constant->getType();
1099   bool isScalar = Ty->isIntOrIntVectorTy() || Ty->isPtrOrPtrVectorTy() ||
1100                   Ty->isFPOrFPVectorTy();
1101   if (isScalar) {
1102     Builder.CreateStore(constant, Loc, isVolatile);
1103     return;
1104   }
1105 
1106   auto *Int8Ty = llvm::IntegerType::getInt8Ty(CGM.getLLVMContext());
1107   auto *IntPtrTy = CGM.getDataLayout().getIntPtrType(CGM.getLLVMContext());
1108 
1109   // If the initializer is all or mostly the same, codegen with bzero / memset
1110   // then do a few stores afterward.
1111   uint64_t ConstantSize = CGM.getDataLayout().getTypeAllocSize(Ty);
1112   auto *SizeVal = llvm::ConstantInt::get(IntPtrTy, ConstantSize);
1113   if (shouldUseBZeroPlusStoresToInitialize(constant, ConstantSize)) {
1114     Builder.CreateMemSet(Loc, llvm::ConstantInt::get(Int8Ty, 0), SizeVal,
1115                          isVolatile);
1116 
1117     bool valueAlreadyCorrect =
1118         constant->isNullValue() || isa<llvm::UndefValue>(constant);
1119     if (!valueAlreadyCorrect) {
1120       Loc = Builder.CreateBitCast(Loc, Ty->getPointerTo(Loc.getAddressSpace()));
1121       emitStoresForInitAfterBZero(CGM, constant, Loc, isVolatile, Builder);
1122     }
1123     return;
1124   }
1125 
1126   llvm::Value *Pattern = shouldUseMemSetToInitialize(constant, ConstantSize);
1127   if (Pattern) {
1128     uint64_t Value = 0x00;
1129     if (!isa<llvm::UndefValue>(Pattern)) {
1130       const llvm::APInt &AP = cast<llvm::ConstantInt>(Pattern)->getValue();
1131       assert(AP.getBitWidth() <= 8);
1132       Value = AP.getLimitedValue();
1133     }
1134     Builder.CreateMemSet(Loc, llvm::ConstantInt::get(Int8Ty, Value), SizeVal,
1135                          isVolatile);
1136     return;
1137   }
1138 
1139   Builder.CreateMemCpy(
1140       Loc,
1141       createUnnamedGlobalFrom(CGM, D, Builder, constant, Loc.getAlignment()),
1142       SizeVal, isVolatile);
1143 }
1144 
1145 static void emitStoresForZeroInit(CodeGenModule &CGM, const VarDecl &D,
1146                                   Address Loc, bool isVolatile,
1147                                   CGBuilderTy &Builder) {
1148   llvm::Type *ElTy = Loc.getElementType();
1149   llvm::Constant *constant = llvm::Constant::getNullValue(ElTy);
1150   emitStoresForConstant(CGM, D, Loc, isVolatile, Builder, constant);
1151 }
1152 
1153 static void emitStoresForPatternInit(CodeGenModule &CGM, const VarDecl &D,
1154                                      Address Loc, bool isVolatile,
1155                                      CGBuilderTy &Builder) {
1156   llvm::Type *ElTy = Loc.getElementType();
1157   llvm::Constant *constant = patternFor(CGM, ElTy);
1158   assert(!isa<llvm::UndefValue>(constant));
1159   emitStoresForConstant(CGM, D, Loc, isVolatile, Builder, constant);
1160 }
1161 
1162 static bool containsUndef(llvm::Constant *constant) {
1163   auto *Ty = constant->getType();
1164   if (isa<llvm::UndefValue>(constant))
1165     return true;
1166   if (Ty->isStructTy() || Ty->isArrayTy() || Ty->isVectorTy())
1167     for (llvm::Use &Op : constant->operands())
1168       if (containsUndef(cast<llvm::Constant>(Op)))
1169         return true;
1170   return false;
1171 }
1172 
1173 static llvm::Constant *replaceUndef(llvm::Constant *constant) {
1174   // FIXME: when doing pattern initialization, replace undef with 0xAA instead.
1175   // FIXME: also replace padding between values by creating a new struct type
1176   //        which has no padding.
1177   auto *Ty = constant->getType();
1178   if (isa<llvm::UndefValue>(constant))
1179     return llvm::Constant::getNullValue(Ty);
1180   if (!(Ty->isStructTy() || Ty->isArrayTy() || Ty->isVectorTy()))
1181     return constant;
1182   if (!containsUndef(constant))
1183     return constant;
1184   llvm::SmallVector<llvm::Constant *, 8> Values(constant->getNumOperands());
1185   for (unsigned Op = 0, NumOp = constant->getNumOperands(); Op != NumOp; ++Op) {
1186     auto *OpValue = cast<llvm::Constant>(constant->getOperand(Op));
1187     Values[Op] = replaceUndef(OpValue);
1188   }
1189   if (Ty->isStructTy())
1190     return llvm::ConstantStruct::get(cast<llvm::StructType>(Ty), Values);
1191   if (Ty->isArrayTy())
1192     return llvm::ConstantArray::get(cast<llvm::ArrayType>(Ty), Values);
1193   assert(Ty->isVectorTy());
1194   return llvm::ConstantVector::get(Values);
1195 }
1196 
1197 /// EmitAutoVarDecl - Emit code and set up an entry in LocalDeclMap for a
1198 /// variable declaration with auto, register, or no storage class specifier.
1199 /// These turn into simple stack objects, or GlobalValues depending on target.
1200 void CodeGenFunction::EmitAutoVarDecl(const VarDecl &D) {
1201   AutoVarEmission emission = EmitAutoVarAlloca(D);
1202   EmitAutoVarInit(emission);
1203   EmitAutoVarCleanups(emission);
1204 }
1205 
1206 /// Emit a lifetime.begin marker if some criteria are satisfied.
1207 /// \return a pointer to the temporary size Value if a marker was emitted, null
1208 /// otherwise
1209 llvm::Value *CodeGenFunction::EmitLifetimeStart(uint64_t Size,
1210                                                 llvm::Value *Addr) {
1211   if (!ShouldEmitLifetimeMarkers)
1212     return nullptr;
1213 
1214   assert(Addr->getType()->getPointerAddressSpace() ==
1215              CGM.getDataLayout().getAllocaAddrSpace() &&
1216          "Pointer should be in alloca address space");
1217   llvm::Value *SizeV = llvm::ConstantInt::get(Int64Ty, Size);
1218   Addr = Builder.CreateBitCast(Addr, AllocaInt8PtrTy);
1219   llvm::CallInst *C =
1220       Builder.CreateCall(CGM.getLLVMLifetimeStartFn(), {SizeV, Addr});
1221   C->setDoesNotThrow();
1222   return SizeV;
1223 }
1224 
1225 void CodeGenFunction::EmitLifetimeEnd(llvm::Value *Size, llvm::Value *Addr) {
1226   assert(Addr->getType()->getPointerAddressSpace() ==
1227              CGM.getDataLayout().getAllocaAddrSpace() &&
1228          "Pointer should be in alloca address space");
1229   Addr = Builder.CreateBitCast(Addr, AllocaInt8PtrTy);
1230   llvm::CallInst *C =
1231       Builder.CreateCall(CGM.getLLVMLifetimeEndFn(), {Size, Addr});
1232   C->setDoesNotThrow();
1233 }
1234 
1235 void CodeGenFunction::EmitAndRegisterVariableArrayDimensions(
1236     CGDebugInfo *DI, const VarDecl &D, bool EmitDebugInfo) {
1237   // For each dimension stores its QualType and corresponding
1238   // size-expression Value.
1239   SmallVector<CodeGenFunction::VlaSizePair, 4> Dimensions;
1240   SmallVector<IdentifierInfo *, 4> VLAExprNames;
1241 
1242   // Break down the array into individual dimensions.
1243   QualType Type1D = D.getType();
1244   while (getContext().getAsVariableArrayType(Type1D)) {
1245     auto VlaSize = getVLAElements1D(Type1D);
1246     if (auto *C = dyn_cast<llvm::ConstantInt>(VlaSize.NumElts))
1247       Dimensions.emplace_back(C, Type1D.getUnqualifiedType());
1248     else {
1249       // Generate a locally unique name for the size expression.
1250       Twine Name = Twine("__vla_expr") + Twine(VLAExprCounter++);
1251       SmallString<12> Buffer;
1252       StringRef NameRef = Name.toStringRef(Buffer);
1253       auto &Ident = getContext().Idents.getOwn(NameRef);
1254       VLAExprNames.push_back(&Ident);
1255       auto SizeExprAddr =
1256           CreateDefaultAlignTempAlloca(VlaSize.NumElts->getType(), NameRef);
1257       Builder.CreateStore(VlaSize.NumElts, SizeExprAddr);
1258       Dimensions.emplace_back(SizeExprAddr.getPointer(),
1259                               Type1D.getUnqualifiedType());
1260     }
1261     Type1D = VlaSize.Type;
1262   }
1263 
1264   if (!EmitDebugInfo)
1265     return;
1266 
1267   // Register each dimension's size-expression with a DILocalVariable,
1268   // so that it can be used by CGDebugInfo when instantiating a DISubrange
1269   // to describe this array.
1270   unsigned NameIdx = 0;
1271   for (auto &VlaSize : Dimensions) {
1272     llvm::Metadata *MD;
1273     if (auto *C = dyn_cast<llvm::ConstantInt>(VlaSize.NumElts))
1274       MD = llvm::ConstantAsMetadata::get(C);
1275     else {
1276       // Create an artificial VarDecl to generate debug info for.
1277       IdentifierInfo *NameIdent = VLAExprNames[NameIdx++];
1278       auto VlaExprTy = VlaSize.NumElts->getType()->getPointerElementType();
1279       auto QT = getContext().getIntTypeForBitwidth(
1280           VlaExprTy->getScalarSizeInBits(), false);
1281       auto *ArtificialDecl = VarDecl::Create(
1282           getContext(), const_cast<DeclContext *>(D.getDeclContext()),
1283           D.getLocation(), D.getLocation(), NameIdent, QT,
1284           getContext().CreateTypeSourceInfo(QT), SC_Auto);
1285       ArtificialDecl->setImplicit();
1286 
1287       MD = DI->EmitDeclareOfAutoVariable(ArtificialDecl, VlaSize.NumElts,
1288                                          Builder);
1289     }
1290     assert(MD && "No Size expression debug node created");
1291     DI->registerVLASizeExpression(VlaSize.Type, MD);
1292   }
1293 }
1294 
1295 /// EmitAutoVarAlloca - Emit the alloca and debug information for a
1296 /// local variable.  Does not emit initialization or destruction.
1297 CodeGenFunction::AutoVarEmission
1298 CodeGenFunction::EmitAutoVarAlloca(const VarDecl &D) {
1299   QualType Ty = D.getType();
1300   assert(
1301       Ty.getAddressSpace() == LangAS::Default ||
1302       (Ty.getAddressSpace() == LangAS::opencl_private && getLangOpts().OpenCL));
1303 
1304   AutoVarEmission emission(D);
1305 
1306   bool isEscapingByRef = D.isEscapingByref();
1307   emission.IsEscapingByRef = isEscapingByRef;
1308 
1309   CharUnits alignment = getContext().getDeclAlign(&D);
1310 
1311   // If the type is variably-modified, emit all the VLA sizes for it.
1312   if (Ty->isVariablyModifiedType())
1313     EmitVariablyModifiedType(Ty);
1314 
1315   auto *DI = getDebugInfo();
1316   bool EmitDebugInfo = DI && CGM.getCodeGenOpts().getDebugInfo() >=
1317                                  codegenoptions::LimitedDebugInfo;
1318 
1319   Address address = Address::invalid();
1320   Address AllocaAddr = Address::invalid();
1321   if (Ty->isConstantSizeType()) {
1322     bool NRVO = getLangOpts().ElideConstructors &&
1323       D.isNRVOVariable();
1324 
1325     // If this value is an array or struct with a statically determinable
1326     // constant initializer, there are optimizations we can do.
1327     //
1328     // TODO: We should constant-evaluate the initializer of any variable,
1329     // as long as it is initialized by a constant expression. Currently,
1330     // isConstantInitializer produces wrong answers for structs with
1331     // reference or bitfield members, and a few other cases, and checking
1332     // for POD-ness protects us from some of these.
1333     if (D.getInit() && (Ty->isArrayType() || Ty->isRecordType()) &&
1334         (D.isConstexpr() ||
1335          ((Ty.isPODType(getContext()) ||
1336            getContext().getBaseElementType(Ty)->isObjCObjectPointerType()) &&
1337           D.getInit()->isConstantInitializer(getContext(), false)))) {
1338 
1339       // If the variable's a const type, and it's neither an NRVO
1340       // candidate nor a __block variable and has no mutable members,
1341       // emit it as a global instead.
1342       // Exception is if a variable is located in non-constant address space
1343       // in OpenCL.
1344       if ((!getLangOpts().OpenCL ||
1345            Ty.getAddressSpace() == LangAS::opencl_constant) &&
1346           (CGM.getCodeGenOpts().MergeAllConstants && !NRVO &&
1347            !isEscapingByRef && CGM.isTypeConstant(Ty, true))) {
1348         EmitStaticVarDecl(D, llvm::GlobalValue::InternalLinkage);
1349 
1350         // Signal this condition to later callbacks.
1351         emission.Addr = Address::invalid();
1352         assert(emission.wasEmittedAsGlobal());
1353         return emission;
1354       }
1355 
1356       // Otherwise, tell the initialization code that we're in this case.
1357       emission.IsConstantAggregate = true;
1358     }
1359 
1360     // A normal fixed sized variable becomes an alloca in the entry block,
1361     // unless:
1362     // - it's an NRVO variable.
1363     // - we are compiling OpenMP and it's an OpenMP local variable.
1364 
1365     Address OpenMPLocalAddr =
1366         getLangOpts().OpenMP
1367             ? CGM.getOpenMPRuntime().getAddressOfLocalVariable(*this, &D)
1368             : Address::invalid();
1369     if (getLangOpts().OpenMP && OpenMPLocalAddr.isValid()) {
1370       address = OpenMPLocalAddr;
1371     } else if (NRVO) {
1372       // The named return value optimization: allocate this variable in the
1373       // return slot, so that we can elide the copy when returning this
1374       // variable (C++0x [class.copy]p34).
1375       address = ReturnValue;
1376 
1377       if (const RecordType *RecordTy = Ty->getAs<RecordType>()) {
1378         const auto *RD = RecordTy->getDecl();
1379         const auto *CXXRD = dyn_cast<CXXRecordDecl>(RD);
1380         if ((CXXRD && !CXXRD->hasTrivialDestructor()) ||
1381             RD->isNonTrivialToPrimitiveDestroy()) {
1382           // Create a flag that is used to indicate when the NRVO was applied
1383           // to this variable. Set it to zero to indicate that NRVO was not
1384           // applied.
1385           llvm::Value *Zero = Builder.getFalse();
1386           Address NRVOFlag =
1387             CreateTempAlloca(Zero->getType(), CharUnits::One(), "nrvo");
1388           EnsureInsertPoint();
1389           Builder.CreateStore(Zero, NRVOFlag);
1390 
1391           // Record the NRVO flag for this variable.
1392           NRVOFlags[&D] = NRVOFlag.getPointer();
1393           emission.NRVOFlag = NRVOFlag.getPointer();
1394         }
1395       }
1396     } else {
1397       CharUnits allocaAlignment;
1398       llvm::Type *allocaTy;
1399       if (isEscapingByRef) {
1400         auto &byrefInfo = getBlockByrefInfo(&D);
1401         allocaTy = byrefInfo.Type;
1402         allocaAlignment = byrefInfo.ByrefAlignment;
1403       } else {
1404         allocaTy = ConvertTypeForMem(Ty);
1405         allocaAlignment = alignment;
1406       }
1407 
1408       // Create the alloca.  Note that we set the name separately from
1409       // building the instruction so that it's there even in no-asserts
1410       // builds.
1411       address = CreateTempAlloca(allocaTy, allocaAlignment, D.getName(),
1412                                  /*ArraySize=*/nullptr, &AllocaAddr);
1413 
1414       // Don't emit lifetime markers for MSVC catch parameters. The lifetime of
1415       // the catch parameter starts in the catchpad instruction, and we can't
1416       // insert code in those basic blocks.
1417       bool IsMSCatchParam =
1418           D.isExceptionVariable() && getTarget().getCXXABI().isMicrosoft();
1419 
1420       // Emit a lifetime intrinsic if meaningful. There's no point in doing this
1421       // if we don't have a valid insertion point (?).
1422       if (HaveInsertPoint() && !IsMSCatchParam) {
1423         // If there's a jump into the lifetime of this variable, its lifetime
1424         // gets broken up into several regions in IR, which requires more work
1425         // to handle correctly. For now, just omit the intrinsics; this is a
1426         // rare case, and it's better to just be conservatively correct.
1427         // PR28267.
1428         //
1429         // We have to do this in all language modes if there's a jump past the
1430         // declaration. We also have to do it in C if there's a jump to an
1431         // earlier point in the current block because non-VLA lifetimes begin as
1432         // soon as the containing block is entered, not when its variables
1433         // actually come into scope; suppressing the lifetime annotations
1434         // completely in this case is unnecessarily pessimistic, but again, this
1435         // is rare.
1436         if (!Bypasses.IsBypassed(&D) &&
1437             !(!getLangOpts().CPlusPlus && hasLabelBeenSeenInCurrentScope())) {
1438           uint64_t size = CGM.getDataLayout().getTypeAllocSize(allocaTy);
1439           emission.SizeForLifetimeMarkers =
1440               EmitLifetimeStart(size, AllocaAddr.getPointer());
1441         }
1442       } else {
1443         assert(!emission.useLifetimeMarkers());
1444       }
1445     }
1446   } else {
1447     EnsureInsertPoint();
1448 
1449     if (!DidCallStackSave) {
1450       // Save the stack.
1451       Address Stack =
1452         CreateTempAlloca(Int8PtrTy, getPointerAlign(), "saved_stack");
1453 
1454       llvm::Function *F = CGM.getIntrinsic(llvm::Intrinsic::stacksave);
1455       llvm::Value *V = Builder.CreateCall(F);
1456       Builder.CreateStore(V, Stack);
1457 
1458       DidCallStackSave = true;
1459 
1460       // Push a cleanup block and restore the stack there.
1461       // FIXME: in general circumstances, this should be an EH cleanup.
1462       pushStackRestore(NormalCleanup, Stack);
1463     }
1464 
1465     auto VlaSize = getVLASize(Ty);
1466     llvm::Type *llvmTy = ConvertTypeForMem(VlaSize.Type);
1467 
1468     // Allocate memory for the array.
1469     address = CreateTempAlloca(llvmTy, alignment, "vla", VlaSize.NumElts,
1470                                &AllocaAddr);
1471 
1472     // If we have debug info enabled, properly describe the VLA dimensions for
1473     // this type by registering the vla size expression for each of the
1474     // dimensions.
1475     EmitAndRegisterVariableArrayDimensions(DI, D, EmitDebugInfo);
1476   }
1477 
1478   setAddrOfLocalVar(&D, address);
1479   emission.Addr = address;
1480   emission.AllocaAddr = AllocaAddr;
1481 
1482   // Emit debug info for local var declaration.
1483   if (EmitDebugInfo && HaveInsertPoint()) {
1484     DI->setLocation(D.getLocation());
1485     (void)DI->EmitDeclareOfAutoVariable(&D, address.getPointer(), Builder);
1486   }
1487 
1488   if (D.hasAttr<AnnotateAttr>())
1489     EmitVarAnnotations(&D, address.getPointer());
1490 
1491   // Make sure we call @llvm.lifetime.end.
1492   if (emission.useLifetimeMarkers())
1493     EHStack.pushCleanup<CallLifetimeEnd>(NormalEHLifetimeMarker,
1494                                          emission.getOriginalAllocatedAddress(),
1495                                          emission.getSizeForLifetimeMarkers());
1496 
1497   return emission;
1498 }
1499 
1500 static bool isCapturedBy(const VarDecl &, const Expr *);
1501 
1502 /// Determines whether the given __block variable is potentially
1503 /// captured by the given statement.
1504 static bool isCapturedBy(const VarDecl &Var, const Stmt *S) {
1505   if (const Expr *E = dyn_cast<Expr>(S))
1506     return isCapturedBy(Var, E);
1507   for (const Stmt *SubStmt : S->children())
1508     if (isCapturedBy(Var, SubStmt))
1509       return true;
1510   return false;
1511 }
1512 
1513 /// Determines whether the given __block variable is potentially
1514 /// captured by the given expression.
1515 static bool isCapturedBy(const VarDecl &Var, const Expr *E) {
1516   // Skip the most common kinds of expressions that make
1517   // hierarchy-walking expensive.
1518   E = E->IgnoreParenCasts();
1519 
1520   if (const BlockExpr *BE = dyn_cast<BlockExpr>(E)) {
1521     const BlockDecl *Block = BE->getBlockDecl();
1522     for (const auto &I : Block->captures()) {
1523       if (I.getVariable() == &Var)
1524         return true;
1525     }
1526 
1527     // No need to walk into the subexpressions.
1528     return false;
1529   }
1530 
1531   if (const StmtExpr *SE = dyn_cast<StmtExpr>(E)) {
1532     const CompoundStmt *CS = SE->getSubStmt();
1533     for (const auto *BI : CS->body())
1534       if (const auto *BIE = dyn_cast<Expr>(BI)) {
1535         if (isCapturedBy(Var, BIE))
1536           return true;
1537       }
1538       else if (const auto *DS = dyn_cast<DeclStmt>(BI)) {
1539           // special case declarations
1540           for (const auto *I : DS->decls()) {
1541               if (const auto *VD = dyn_cast<VarDecl>((I))) {
1542                 const Expr *Init = VD->getInit();
1543                 if (Init && isCapturedBy(Var, Init))
1544                   return true;
1545               }
1546           }
1547       }
1548       else
1549         // FIXME. Make safe assumption assuming arbitrary statements cause capturing.
1550         // Later, provide code to poke into statements for capture analysis.
1551         return true;
1552     return false;
1553   }
1554 
1555   for (const Stmt *SubStmt : E->children())
1556     if (isCapturedBy(Var, SubStmt))
1557       return true;
1558 
1559   return false;
1560 }
1561 
1562 /// Determine whether the given initializer is trivial in the sense
1563 /// that it requires no code to be generated.
1564 bool CodeGenFunction::isTrivialInitializer(const Expr *Init) {
1565   if (!Init)
1566     return true;
1567 
1568   if (const CXXConstructExpr *Construct = dyn_cast<CXXConstructExpr>(Init))
1569     if (CXXConstructorDecl *Constructor = Construct->getConstructor())
1570       if (Constructor->isTrivial() &&
1571           Constructor->isDefaultConstructor() &&
1572           !Construct->requiresZeroInitialization())
1573         return true;
1574 
1575   return false;
1576 }
1577 
1578 void CodeGenFunction::EmitAutoVarInit(const AutoVarEmission &emission) {
1579   assert(emission.Variable && "emission was not valid!");
1580 
1581   // If this was emitted as a global constant, we're done.
1582   if (emission.wasEmittedAsGlobal()) return;
1583 
1584   const VarDecl &D = *emission.Variable;
1585   auto DL = ApplyDebugLocation::CreateDefaultArtificial(*this, D.getLocation());
1586   QualType type = D.getType();
1587 
1588   bool isVolatile = type.isVolatileQualified();
1589 
1590   // If this local has an initializer, emit it now.
1591   const Expr *Init = D.getInit();
1592 
1593   // If we are at an unreachable point, we don't need to emit the initializer
1594   // unless it contains a label.
1595   if (!HaveInsertPoint()) {
1596     if (!Init || !ContainsLabel(Init)) return;
1597     EnsureInsertPoint();
1598   }
1599 
1600   // Initialize the structure of a __block variable.
1601   if (emission.IsEscapingByRef)
1602     emitByrefStructureInit(emission);
1603 
1604   // Initialize the variable here if it doesn't have a initializer and it is a
1605   // C struct that is non-trivial to initialize or an array containing such a
1606   // struct.
1607   if (!Init &&
1608       type.isNonTrivialToPrimitiveDefaultInitialize() ==
1609           QualType::PDIK_Struct) {
1610     LValue Dst = MakeAddrLValue(emission.getAllocatedAddress(), type);
1611     if (emission.IsEscapingByRef)
1612       drillIntoBlockVariable(*this, Dst, &D);
1613     defaultInitNonTrivialCStructVar(Dst);
1614     return;
1615   }
1616 
1617   // Check whether this is a byref variable that's potentially
1618   // captured and moved by its own initializer.  If so, we'll need to
1619   // emit the initializer first, then copy into the variable.
1620   bool capturedByInit =
1621       Init && emission.IsEscapingByRef && isCapturedBy(D, Init);
1622 
1623   Address Loc =
1624       capturedByInit ? emission.Addr : emission.getObjectAddress(*this);
1625 
1626   // Note: constexpr already initializes everything correctly.
1627   LangOptions::TrivialAutoVarInitKind trivialAutoVarInit =
1628       (D.isConstexpr()
1629            ? LangOptions::TrivialAutoVarInitKind::Uninitialized
1630            : (D.getAttr<UninitializedAttr>()
1631                   ? LangOptions::TrivialAutoVarInitKind::Uninitialized
1632                   : getContext().getLangOpts().getTrivialAutoVarInit()));
1633 
1634   auto initializeWhatIsTechnicallyUninitialized = [&](Address Loc) {
1635     if (trivialAutoVarInit ==
1636         LangOptions::TrivialAutoVarInitKind::Uninitialized)
1637       return;
1638 
1639     // Only initialize a __block's storage: we always initialize the header.
1640     if (emission.IsEscapingByRef)
1641       Loc = emitBlockByrefAddress(Loc, &D, /*follow=*/false);
1642 
1643     CharUnits Size = getContext().getTypeSizeInChars(type);
1644     if (!Size.isZero()) {
1645       switch (trivialAutoVarInit) {
1646       case LangOptions::TrivialAutoVarInitKind::Uninitialized:
1647         llvm_unreachable("Uninitialized handled above");
1648       case LangOptions::TrivialAutoVarInitKind::Zero:
1649         emitStoresForZeroInit(CGM, D, Loc, isVolatile, Builder);
1650         break;
1651       case LangOptions::TrivialAutoVarInitKind::Pattern:
1652         emitStoresForPatternInit(CGM, D, Loc, isVolatile, Builder);
1653         break;
1654       }
1655       return;
1656     }
1657 
1658     // VLAs look zero-sized to getTypeInfo. We can't emit constant stores to
1659     // them, so emit a memcpy with the VLA size to initialize each element.
1660     // Technically zero-sized or negative-sized VLAs are undefined, and UBSan
1661     // will catch that code, but there exists code which generates zero-sized
1662     // VLAs. Be nice and initialize whatever they requested.
1663     const auto *VlaType = getContext().getAsVariableArrayType(type);
1664     if (!VlaType)
1665       return;
1666     auto VlaSize = getVLASize(VlaType);
1667     auto SizeVal = VlaSize.NumElts;
1668     CharUnits EltSize = getContext().getTypeSizeInChars(VlaSize.Type);
1669     switch (trivialAutoVarInit) {
1670     case LangOptions::TrivialAutoVarInitKind::Uninitialized:
1671       llvm_unreachable("Uninitialized handled above");
1672 
1673     case LangOptions::TrivialAutoVarInitKind::Zero:
1674       if (!EltSize.isOne())
1675         SizeVal = Builder.CreateNUWMul(SizeVal, CGM.getSize(EltSize));
1676       Builder.CreateMemSet(Loc, llvm::ConstantInt::get(Int8Ty, 0), SizeVal,
1677                            isVolatile);
1678       break;
1679 
1680     case LangOptions::TrivialAutoVarInitKind::Pattern: {
1681       llvm::Type *ElTy = Loc.getElementType();
1682       llvm::Constant *Constant = patternFor(CGM, ElTy);
1683       CharUnits ConstantAlign = getContext().getTypeAlignInChars(VlaSize.Type);
1684       llvm::BasicBlock *SetupBB = createBasicBlock("vla-setup.loop");
1685       llvm::BasicBlock *LoopBB = createBasicBlock("vla-init.loop");
1686       llvm::BasicBlock *ContBB = createBasicBlock("vla-init.cont");
1687       llvm::Value *IsZeroSizedVLA = Builder.CreateICmpEQ(
1688           SizeVal, llvm::ConstantInt::get(SizeVal->getType(), 0),
1689           "vla.iszerosized");
1690       Builder.CreateCondBr(IsZeroSizedVLA, ContBB, SetupBB);
1691       EmitBlock(SetupBB);
1692       if (!EltSize.isOne())
1693         SizeVal = Builder.CreateNUWMul(SizeVal, CGM.getSize(EltSize));
1694       llvm::Value *BaseSizeInChars =
1695           llvm::ConstantInt::get(IntPtrTy, EltSize.getQuantity());
1696       Address Begin = Builder.CreateElementBitCast(Loc, Int8Ty, "vla.begin");
1697       llvm::Value *End =
1698           Builder.CreateInBoundsGEP(Begin.getPointer(), SizeVal, "vla.end");
1699       llvm::BasicBlock *OriginBB = Builder.GetInsertBlock();
1700       EmitBlock(LoopBB);
1701       llvm::PHINode *Cur = Builder.CreatePHI(Begin.getType(), 2, "vla.cur");
1702       Cur->addIncoming(Begin.getPointer(), OriginBB);
1703       CharUnits CurAlign = Loc.getAlignment().alignmentOfArrayElement(EltSize);
1704       Builder.CreateMemCpy(
1705           Address(Cur, CurAlign),
1706           createUnnamedGlobalFrom(CGM, D, Builder, Constant, ConstantAlign),
1707           BaseSizeInChars, isVolatile);
1708       llvm::Value *Next =
1709           Builder.CreateInBoundsGEP(Int8Ty, Cur, BaseSizeInChars, "vla.next");
1710       llvm::Value *Done = Builder.CreateICmpEQ(Next, End, "vla-init.isdone");
1711       Builder.CreateCondBr(Done, ContBB, LoopBB);
1712       Cur->addIncoming(Next, LoopBB);
1713       EmitBlock(ContBB);
1714     } break;
1715     }
1716   };
1717 
1718   if (isTrivialInitializer(Init)) {
1719     initializeWhatIsTechnicallyUninitialized(Loc);
1720     return;
1721   }
1722 
1723   llvm::Constant *constant = nullptr;
1724   if (emission.IsConstantAggregate || D.isConstexpr()) {
1725     assert(!capturedByInit && "constant init contains a capturing block?");
1726     constant = ConstantEmitter(*this).tryEmitAbstractForInitializer(D);
1727     if (constant && trivialAutoVarInit !=
1728                         LangOptions::TrivialAutoVarInitKind::Uninitialized)
1729       constant = replaceUndef(constant);
1730   }
1731 
1732   if (!constant) {
1733     initializeWhatIsTechnicallyUninitialized(Loc);
1734     LValue lv = MakeAddrLValue(Loc, type);
1735     lv.setNonGC(true);
1736     return EmitExprAsInit(Init, &D, lv, capturedByInit);
1737   }
1738 
1739   if (!emission.IsConstantAggregate) {
1740     // For simple scalar/complex initialization, store the value directly.
1741     LValue lv = MakeAddrLValue(Loc, type);
1742     lv.setNonGC(true);
1743     return EmitStoreThroughLValue(RValue::get(constant), lv, true);
1744   }
1745 
1746   llvm::Type *BP = CGM.Int8Ty->getPointerTo(Loc.getAddressSpace());
1747   if (Loc.getType() != BP)
1748     Loc = Builder.CreateBitCast(Loc, BP);
1749 
1750   emitStoresForConstant(CGM, D, Loc, isVolatile, Builder, constant);
1751 }
1752 
1753 /// Emit an expression as an initializer for an object (variable, field, etc.)
1754 /// at the given location.  The expression is not necessarily the normal
1755 /// initializer for the object, and the address is not necessarily
1756 /// its normal location.
1757 ///
1758 /// \param init the initializing expression
1759 /// \param D the object to act as if we're initializing
1760 /// \param loc the address to initialize; its type is a pointer
1761 ///   to the LLVM mapping of the object's type
1762 /// \param alignment the alignment of the address
1763 /// \param capturedByInit true if \p D is a __block variable
1764 ///   whose address is potentially changed by the initializer
1765 void CodeGenFunction::EmitExprAsInit(const Expr *init, const ValueDecl *D,
1766                                      LValue lvalue, bool capturedByInit) {
1767   QualType type = D->getType();
1768 
1769   if (type->isReferenceType()) {
1770     RValue rvalue = EmitReferenceBindingToExpr(init);
1771     if (capturedByInit)
1772       drillIntoBlockVariable(*this, lvalue, cast<VarDecl>(D));
1773     EmitStoreThroughLValue(rvalue, lvalue, true);
1774     return;
1775   }
1776   switch (getEvaluationKind(type)) {
1777   case TEK_Scalar:
1778     EmitScalarInit(init, D, lvalue, capturedByInit);
1779     return;
1780   case TEK_Complex: {
1781     ComplexPairTy complex = EmitComplexExpr(init);
1782     if (capturedByInit)
1783       drillIntoBlockVariable(*this, lvalue, cast<VarDecl>(D));
1784     EmitStoreOfComplex(complex, lvalue, /*init*/ true);
1785     return;
1786   }
1787   case TEK_Aggregate:
1788     if (type->isAtomicType()) {
1789       EmitAtomicInit(const_cast<Expr*>(init), lvalue);
1790     } else {
1791       AggValueSlot::Overlap_t Overlap = AggValueSlot::MayOverlap;
1792       if (isa<VarDecl>(D))
1793         Overlap = AggValueSlot::DoesNotOverlap;
1794       else if (auto *FD = dyn_cast<FieldDecl>(D))
1795         Overlap = overlapForFieldInit(FD);
1796       // TODO: how can we delay here if D is captured by its initializer?
1797       EmitAggExpr(init, AggValueSlot::forLValue(lvalue,
1798                                               AggValueSlot::IsDestructed,
1799                                          AggValueSlot::DoesNotNeedGCBarriers,
1800                                               AggValueSlot::IsNotAliased,
1801                                               Overlap));
1802     }
1803     return;
1804   }
1805   llvm_unreachable("bad evaluation kind");
1806 }
1807 
1808 /// Enter a destroy cleanup for the given local variable.
1809 void CodeGenFunction::emitAutoVarTypeCleanup(
1810                             const CodeGenFunction::AutoVarEmission &emission,
1811                             QualType::DestructionKind dtorKind) {
1812   assert(dtorKind != QualType::DK_none);
1813 
1814   // Note that for __block variables, we want to destroy the
1815   // original stack object, not the possibly forwarded object.
1816   Address addr = emission.getObjectAddress(*this);
1817 
1818   const VarDecl *var = emission.Variable;
1819   QualType type = var->getType();
1820 
1821   CleanupKind cleanupKind = NormalAndEHCleanup;
1822   CodeGenFunction::Destroyer *destroyer = nullptr;
1823 
1824   switch (dtorKind) {
1825   case QualType::DK_none:
1826     llvm_unreachable("no cleanup for trivially-destructible variable");
1827 
1828   case QualType::DK_cxx_destructor:
1829     // If there's an NRVO flag on the emission, we need a different
1830     // cleanup.
1831     if (emission.NRVOFlag) {
1832       assert(!type->isArrayType());
1833       CXXDestructorDecl *dtor = type->getAsCXXRecordDecl()->getDestructor();
1834       EHStack.pushCleanup<DestroyNRVOVariableCXX>(cleanupKind, addr, dtor,
1835                                                   emission.NRVOFlag);
1836       return;
1837     }
1838     break;
1839 
1840   case QualType::DK_objc_strong_lifetime:
1841     // Suppress cleanups for pseudo-strong variables.
1842     if (var->isARCPseudoStrong()) return;
1843 
1844     // Otherwise, consider whether to use an EH cleanup or not.
1845     cleanupKind = getARCCleanupKind();
1846 
1847     // Use the imprecise destroyer by default.
1848     if (!var->hasAttr<ObjCPreciseLifetimeAttr>())
1849       destroyer = CodeGenFunction::destroyARCStrongImprecise;
1850     break;
1851 
1852   case QualType::DK_objc_weak_lifetime:
1853     break;
1854 
1855   case QualType::DK_nontrivial_c_struct:
1856     destroyer = CodeGenFunction::destroyNonTrivialCStruct;
1857     if (emission.NRVOFlag) {
1858       assert(!type->isArrayType());
1859       EHStack.pushCleanup<DestroyNRVOVariableC>(cleanupKind, addr,
1860                                                 emission.NRVOFlag, type);
1861       return;
1862     }
1863     break;
1864   }
1865 
1866   // If we haven't chosen a more specific destroyer, use the default.
1867   if (!destroyer) destroyer = getDestroyer(dtorKind);
1868 
1869   // Use an EH cleanup in array destructors iff the destructor itself
1870   // is being pushed as an EH cleanup.
1871   bool useEHCleanup = (cleanupKind & EHCleanup);
1872   EHStack.pushCleanup<DestroyObject>(cleanupKind, addr, type, destroyer,
1873                                      useEHCleanup);
1874 }
1875 
1876 void CodeGenFunction::EmitAutoVarCleanups(const AutoVarEmission &emission) {
1877   assert(emission.Variable && "emission was not valid!");
1878 
1879   // If this was emitted as a global constant, we're done.
1880   if (emission.wasEmittedAsGlobal()) return;
1881 
1882   // If we don't have an insertion point, we're done.  Sema prevents
1883   // us from jumping into any of these scopes anyway.
1884   if (!HaveInsertPoint()) return;
1885 
1886   const VarDecl &D = *emission.Variable;
1887 
1888   // Check the type for a cleanup.
1889   if (QualType::DestructionKind dtorKind = D.getType().isDestructedType())
1890     emitAutoVarTypeCleanup(emission, dtorKind);
1891 
1892   // In GC mode, honor objc_precise_lifetime.
1893   if (getLangOpts().getGC() != LangOptions::NonGC &&
1894       D.hasAttr<ObjCPreciseLifetimeAttr>()) {
1895     EHStack.pushCleanup<ExtendGCLifetime>(NormalCleanup, &D);
1896   }
1897 
1898   // Handle the cleanup attribute.
1899   if (const CleanupAttr *CA = D.getAttr<CleanupAttr>()) {
1900     const FunctionDecl *FD = CA->getFunctionDecl();
1901 
1902     llvm::Constant *F = CGM.GetAddrOfFunction(FD);
1903     assert(F && "Could not find function!");
1904 
1905     const CGFunctionInfo &Info = CGM.getTypes().arrangeFunctionDeclaration(FD);
1906     EHStack.pushCleanup<CallCleanupFunction>(NormalAndEHCleanup, F, &Info, &D);
1907   }
1908 
1909   // If this is a block variable, call _Block_object_destroy
1910   // (on the unforwarded address). Don't enter this cleanup if we're in pure-GC
1911   // mode.
1912   if (emission.IsEscapingByRef &&
1913       CGM.getLangOpts().getGC() != LangOptions::GCOnly) {
1914     BlockFieldFlags Flags = BLOCK_FIELD_IS_BYREF;
1915     if (emission.Variable->getType().isObjCGCWeak())
1916       Flags |= BLOCK_FIELD_IS_WEAK;
1917     enterByrefCleanup(NormalAndEHCleanup, emission.Addr, Flags,
1918                       /*LoadBlockVarAddr*/ false,
1919                       cxxDestructorCanThrow(emission.Variable->getType()));
1920   }
1921 }
1922 
1923 CodeGenFunction::Destroyer *
1924 CodeGenFunction::getDestroyer(QualType::DestructionKind kind) {
1925   switch (kind) {
1926   case QualType::DK_none: llvm_unreachable("no destroyer for trivial dtor");
1927   case QualType::DK_cxx_destructor:
1928     return destroyCXXObject;
1929   case QualType::DK_objc_strong_lifetime:
1930     return destroyARCStrongPrecise;
1931   case QualType::DK_objc_weak_lifetime:
1932     return destroyARCWeak;
1933   case QualType::DK_nontrivial_c_struct:
1934     return destroyNonTrivialCStruct;
1935   }
1936   llvm_unreachable("Unknown DestructionKind");
1937 }
1938 
1939 /// pushEHDestroy - Push the standard destructor for the given type as
1940 /// an EH-only cleanup.
1941 void CodeGenFunction::pushEHDestroy(QualType::DestructionKind dtorKind,
1942                                     Address addr, QualType type) {
1943   assert(dtorKind && "cannot push destructor for trivial type");
1944   assert(needsEHCleanup(dtorKind));
1945 
1946   pushDestroy(EHCleanup, addr, type, getDestroyer(dtorKind), true);
1947 }
1948 
1949 /// pushDestroy - Push the standard destructor for the given type as
1950 /// at least a normal cleanup.
1951 void CodeGenFunction::pushDestroy(QualType::DestructionKind dtorKind,
1952                                   Address addr, QualType type) {
1953   assert(dtorKind && "cannot push destructor for trivial type");
1954 
1955   CleanupKind cleanupKind = getCleanupKind(dtorKind);
1956   pushDestroy(cleanupKind, addr, type, getDestroyer(dtorKind),
1957               cleanupKind & EHCleanup);
1958 }
1959 
1960 void CodeGenFunction::pushDestroy(CleanupKind cleanupKind, Address addr,
1961                                   QualType type, Destroyer *destroyer,
1962                                   bool useEHCleanupForArray) {
1963   pushFullExprCleanup<DestroyObject>(cleanupKind, addr, type,
1964                                      destroyer, useEHCleanupForArray);
1965 }
1966 
1967 void CodeGenFunction::pushStackRestore(CleanupKind Kind, Address SPMem) {
1968   EHStack.pushCleanup<CallStackRestore>(Kind, SPMem);
1969 }
1970 
1971 void CodeGenFunction::pushLifetimeExtendedDestroy(
1972     CleanupKind cleanupKind, Address addr, QualType type,
1973     Destroyer *destroyer, bool useEHCleanupForArray) {
1974   // Push an EH-only cleanup for the object now.
1975   // FIXME: When popping normal cleanups, we need to keep this EH cleanup
1976   // around in case a temporary's destructor throws an exception.
1977   if (cleanupKind & EHCleanup)
1978     EHStack.pushCleanup<DestroyObject>(
1979         static_cast<CleanupKind>(cleanupKind & ~NormalCleanup), addr, type,
1980         destroyer, useEHCleanupForArray);
1981 
1982   // Remember that we need to push a full cleanup for the object at the
1983   // end of the full-expression.
1984   pushCleanupAfterFullExpr<DestroyObject>(
1985       cleanupKind, addr, type, destroyer, useEHCleanupForArray);
1986 }
1987 
1988 /// emitDestroy - Immediately perform the destruction of the given
1989 /// object.
1990 ///
1991 /// \param addr - the address of the object; a type*
1992 /// \param type - the type of the object; if an array type, all
1993 ///   objects are destroyed in reverse order
1994 /// \param destroyer - the function to call to destroy individual
1995 ///   elements
1996 /// \param useEHCleanupForArray - whether an EH cleanup should be
1997 ///   used when destroying array elements, in case one of the
1998 ///   destructions throws an exception
1999 void CodeGenFunction::emitDestroy(Address addr, QualType type,
2000                                   Destroyer *destroyer,
2001                                   bool useEHCleanupForArray) {
2002   const ArrayType *arrayType = getContext().getAsArrayType(type);
2003   if (!arrayType)
2004     return destroyer(*this, addr, type);
2005 
2006   llvm::Value *length = emitArrayLength(arrayType, type, addr);
2007 
2008   CharUnits elementAlign =
2009     addr.getAlignment()
2010         .alignmentOfArrayElement(getContext().getTypeSizeInChars(type));
2011 
2012   // Normally we have to check whether the array is zero-length.
2013   bool checkZeroLength = true;
2014 
2015   // But if the array length is constant, we can suppress that.
2016   if (llvm::ConstantInt *constLength = dyn_cast<llvm::ConstantInt>(length)) {
2017     // ...and if it's constant zero, we can just skip the entire thing.
2018     if (constLength->isZero()) return;
2019     checkZeroLength = false;
2020   }
2021 
2022   llvm::Value *begin = addr.getPointer();
2023   llvm::Value *end = Builder.CreateInBoundsGEP(begin, length);
2024   emitArrayDestroy(begin, end, type, elementAlign, destroyer,
2025                    checkZeroLength, useEHCleanupForArray);
2026 }
2027 
2028 /// emitArrayDestroy - Destroys all the elements of the given array,
2029 /// beginning from last to first.  The array cannot be zero-length.
2030 ///
2031 /// \param begin - a type* denoting the first element of the array
2032 /// \param end - a type* denoting one past the end of the array
2033 /// \param elementType - the element type of the array
2034 /// \param destroyer - the function to call to destroy elements
2035 /// \param useEHCleanup - whether to push an EH cleanup to destroy
2036 ///   the remaining elements in case the destruction of a single
2037 ///   element throws
2038 void CodeGenFunction::emitArrayDestroy(llvm::Value *begin,
2039                                        llvm::Value *end,
2040                                        QualType elementType,
2041                                        CharUnits elementAlign,
2042                                        Destroyer *destroyer,
2043                                        bool checkZeroLength,
2044                                        bool useEHCleanup) {
2045   assert(!elementType->isArrayType());
2046 
2047   // The basic structure here is a do-while loop, because we don't
2048   // need to check for the zero-element case.
2049   llvm::BasicBlock *bodyBB = createBasicBlock("arraydestroy.body");
2050   llvm::BasicBlock *doneBB = createBasicBlock("arraydestroy.done");
2051 
2052   if (checkZeroLength) {
2053     llvm::Value *isEmpty = Builder.CreateICmpEQ(begin, end,
2054                                                 "arraydestroy.isempty");
2055     Builder.CreateCondBr(isEmpty, doneBB, bodyBB);
2056   }
2057 
2058   // Enter the loop body, making that address the current address.
2059   llvm::BasicBlock *entryBB = Builder.GetInsertBlock();
2060   EmitBlock(bodyBB);
2061   llvm::PHINode *elementPast =
2062     Builder.CreatePHI(begin->getType(), 2, "arraydestroy.elementPast");
2063   elementPast->addIncoming(end, entryBB);
2064 
2065   // Shift the address back by one element.
2066   llvm::Value *negativeOne = llvm::ConstantInt::get(SizeTy, -1, true);
2067   llvm::Value *element = Builder.CreateInBoundsGEP(elementPast, negativeOne,
2068                                                    "arraydestroy.element");
2069 
2070   if (useEHCleanup)
2071     pushRegularPartialArrayCleanup(begin, element, elementType, elementAlign,
2072                                    destroyer);
2073 
2074   // Perform the actual destruction there.
2075   destroyer(*this, Address(element, elementAlign), elementType);
2076 
2077   if (useEHCleanup)
2078     PopCleanupBlock();
2079 
2080   // Check whether we've reached the end.
2081   llvm::Value *done = Builder.CreateICmpEQ(element, begin, "arraydestroy.done");
2082   Builder.CreateCondBr(done, doneBB, bodyBB);
2083   elementPast->addIncoming(element, Builder.GetInsertBlock());
2084 
2085   // Done.
2086   EmitBlock(doneBB);
2087 }
2088 
2089 /// Perform partial array destruction as if in an EH cleanup.  Unlike
2090 /// emitArrayDestroy, the element type here may still be an array type.
2091 static void emitPartialArrayDestroy(CodeGenFunction &CGF,
2092                                     llvm::Value *begin, llvm::Value *end,
2093                                     QualType type, CharUnits elementAlign,
2094                                     CodeGenFunction::Destroyer *destroyer) {
2095   // If the element type is itself an array, drill down.
2096   unsigned arrayDepth = 0;
2097   while (const ArrayType *arrayType = CGF.getContext().getAsArrayType(type)) {
2098     // VLAs don't require a GEP index to walk into.
2099     if (!isa<VariableArrayType>(arrayType))
2100       arrayDepth++;
2101     type = arrayType->getElementType();
2102   }
2103 
2104   if (arrayDepth) {
2105     llvm::Value *zero = llvm::ConstantInt::get(CGF.SizeTy, 0);
2106 
2107     SmallVector<llvm::Value*,4> gepIndices(arrayDepth+1, zero);
2108     begin = CGF.Builder.CreateInBoundsGEP(begin, gepIndices, "pad.arraybegin");
2109     end = CGF.Builder.CreateInBoundsGEP(end, gepIndices, "pad.arrayend");
2110   }
2111 
2112   // Destroy the array.  We don't ever need an EH cleanup because we
2113   // assume that we're in an EH cleanup ourselves, so a throwing
2114   // destructor causes an immediate terminate.
2115   CGF.emitArrayDestroy(begin, end, type, elementAlign, destroyer,
2116                        /*checkZeroLength*/ true, /*useEHCleanup*/ false);
2117 }
2118 
2119 namespace {
2120   /// RegularPartialArrayDestroy - a cleanup which performs a partial
2121   /// array destroy where the end pointer is regularly determined and
2122   /// does not need to be loaded from a local.
2123   class RegularPartialArrayDestroy final : public EHScopeStack::Cleanup {
2124     llvm::Value *ArrayBegin;
2125     llvm::Value *ArrayEnd;
2126     QualType ElementType;
2127     CodeGenFunction::Destroyer *Destroyer;
2128     CharUnits ElementAlign;
2129   public:
2130     RegularPartialArrayDestroy(llvm::Value *arrayBegin, llvm::Value *arrayEnd,
2131                                QualType elementType, CharUnits elementAlign,
2132                                CodeGenFunction::Destroyer *destroyer)
2133       : ArrayBegin(arrayBegin), ArrayEnd(arrayEnd),
2134         ElementType(elementType), Destroyer(destroyer),
2135         ElementAlign(elementAlign) {}
2136 
2137     void Emit(CodeGenFunction &CGF, Flags flags) override {
2138       emitPartialArrayDestroy(CGF, ArrayBegin, ArrayEnd,
2139                               ElementType, ElementAlign, Destroyer);
2140     }
2141   };
2142 
2143   /// IrregularPartialArrayDestroy - a cleanup which performs a
2144   /// partial array destroy where the end pointer is irregularly
2145   /// determined and must be loaded from a local.
2146   class IrregularPartialArrayDestroy final : public EHScopeStack::Cleanup {
2147     llvm::Value *ArrayBegin;
2148     Address ArrayEndPointer;
2149     QualType ElementType;
2150     CodeGenFunction::Destroyer *Destroyer;
2151     CharUnits ElementAlign;
2152   public:
2153     IrregularPartialArrayDestroy(llvm::Value *arrayBegin,
2154                                  Address arrayEndPointer,
2155                                  QualType elementType,
2156                                  CharUnits elementAlign,
2157                                  CodeGenFunction::Destroyer *destroyer)
2158       : ArrayBegin(arrayBegin), ArrayEndPointer(arrayEndPointer),
2159         ElementType(elementType), Destroyer(destroyer),
2160         ElementAlign(elementAlign) {}
2161 
2162     void Emit(CodeGenFunction &CGF, Flags flags) override {
2163       llvm::Value *arrayEnd = CGF.Builder.CreateLoad(ArrayEndPointer);
2164       emitPartialArrayDestroy(CGF, ArrayBegin, arrayEnd,
2165                               ElementType, ElementAlign, Destroyer);
2166     }
2167   };
2168 } // end anonymous namespace
2169 
2170 /// pushIrregularPartialArrayCleanup - Push an EH cleanup to destroy
2171 /// already-constructed elements of the given array.  The cleanup
2172 /// may be popped with DeactivateCleanupBlock or PopCleanupBlock.
2173 ///
2174 /// \param elementType - the immediate element type of the array;
2175 ///   possibly still an array type
2176 void CodeGenFunction::pushIrregularPartialArrayCleanup(llvm::Value *arrayBegin,
2177                                                        Address arrayEndPointer,
2178                                                        QualType elementType,
2179                                                        CharUnits elementAlign,
2180                                                        Destroyer *destroyer) {
2181   pushFullExprCleanup<IrregularPartialArrayDestroy>(EHCleanup,
2182                                                     arrayBegin, arrayEndPointer,
2183                                                     elementType, elementAlign,
2184                                                     destroyer);
2185 }
2186 
2187 /// pushRegularPartialArrayCleanup - Push an EH cleanup to destroy
2188 /// already-constructed elements of the given array.  The cleanup
2189 /// may be popped with DeactivateCleanupBlock or PopCleanupBlock.
2190 ///
2191 /// \param elementType - the immediate element type of the array;
2192 ///   possibly still an array type
2193 void CodeGenFunction::pushRegularPartialArrayCleanup(llvm::Value *arrayBegin,
2194                                                      llvm::Value *arrayEnd,
2195                                                      QualType elementType,
2196                                                      CharUnits elementAlign,
2197                                                      Destroyer *destroyer) {
2198   pushFullExprCleanup<RegularPartialArrayDestroy>(EHCleanup,
2199                                                   arrayBegin, arrayEnd,
2200                                                   elementType, elementAlign,
2201                                                   destroyer);
2202 }
2203 
2204 /// Lazily declare the @llvm.lifetime.start intrinsic.
2205 llvm::Function *CodeGenModule::getLLVMLifetimeStartFn() {
2206   if (LifetimeStartFn)
2207     return LifetimeStartFn;
2208   LifetimeStartFn = llvm::Intrinsic::getDeclaration(&getModule(),
2209     llvm::Intrinsic::lifetime_start, AllocaInt8PtrTy);
2210   return LifetimeStartFn;
2211 }
2212 
2213 /// Lazily declare the @llvm.lifetime.end intrinsic.
2214 llvm::Function *CodeGenModule::getLLVMLifetimeEndFn() {
2215   if (LifetimeEndFn)
2216     return LifetimeEndFn;
2217   LifetimeEndFn = llvm::Intrinsic::getDeclaration(&getModule(),
2218     llvm::Intrinsic::lifetime_end, AllocaInt8PtrTy);
2219   return LifetimeEndFn;
2220 }
2221 
2222 namespace {
2223   /// A cleanup to perform a release of an object at the end of a
2224   /// function.  This is used to balance out the incoming +1 of a
2225   /// ns_consumed argument when we can't reasonably do that just by
2226   /// not doing the initial retain for a __block argument.
2227   struct ConsumeARCParameter final : EHScopeStack::Cleanup {
2228     ConsumeARCParameter(llvm::Value *param,
2229                         ARCPreciseLifetime_t precise)
2230       : Param(param), Precise(precise) {}
2231 
2232     llvm::Value *Param;
2233     ARCPreciseLifetime_t Precise;
2234 
2235     void Emit(CodeGenFunction &CGF, Flags flags) override {
2236       CGF.EmitARCRelease(Param, Precise);
2237     }
2238   };
2239 } // end anonymous namespace
2240 
2241 /// Emit an alloca (or GlobalValue depending on target)
2242 /// for the specified parameter and set up LocalDeclMap.
2243 void CodeGenFunction::EmitParmDecl(const VarDecl &D, ParamValue Arg,
2244                                    unsigned ArgNo) {
2245   // FIXME: Why isn't ImplicitParamDecl a ParmVarDecl?
2246   assert((isa<ParmVarDecl>(D) || isa<ImplicitParamDecl>(D)) &&
2247          "Invalid argument to EmitParmDecl");
2248 
2249   Arg.getAnyValue()->setName(D.getName());
2250 
2251   QualType Ty = D.getType();
2252 
2253   // Use better IR generation for certain implicit parameters.
2254   if (auto IPD = dyn_cast<ImplicitParamDecl>(&D)) {
2255     // The only implicit argument a block has is its literal.
2256     // This may be passed as an inalloca'ed value on Windows x86.
2257     if (BlockInfo) {
2258       llvm::Value *V = Arg.isIndirect()
2259                            ? Builder.CreateLoad(Arg.getIndirectAddress())
2260                            : Arg.getDirectValue();
2261       setBlockContextParameter(IPD, ArgNo, V);
2262       return;
2263     }
2264   }
2265 
2266   Address DeclPtr = Address::invalid();
2267   bool DoStore = false;
2268   bool IsScalar = hasScalarEvaluationKind(Ty);
2269   // If we already have a pointer to the argument, reuse the input pointer.
2270   if (Arg.isIndirect()) {
2271     DeclPtr = Arg.getIndirectAddress();
2272     // If we have a prettier pointer type at this point, bitcast to that.
2273     unsigned AS = DeclPtr.getType()->getAddressSpace();
2274     llvm::Type *IRTy = ConvertTypeForMem(Ty)->getPointerTo(AS);
2275     if (DeclPtr.getType() != IRTy)
2276       DeclPtr = Builder.CreateBitCast(DeclPtr, IRTy, D.getName());
2277     // Indirect argument is in alloca address space, which may be different
2278     // from the default address space.
2279     auto AllocaAS = CGM.getASTAllocaAddressSpace();
2280     auto *V = DeclPtr.getPointer();
2281     auto SrcLangAS = getLangOpts().OpenCL ? LangAS::opencl_private : AllocaAS;
2282     auto DestLangAS =
2283         getLangOpts().OpenCL ? LangAS::opencl_private : LangAS::Default;
2284     if (SrcLangAS != DestLangAS) {
2285       assert(getContext().getTargetAddressSpace(SrcLangAS) ==
2286              CGM.getDataLayout().getAllocaAddrSpace());
2287       auto DestAS = getContext().getTargetAddressSpace(DestLangAS);
2288       auto *T = V->getType()->getPointerElementType()->getPointerTo(DestAS);
2289       DeclPtr = Address(getTargetHooks().performAddrSpaceCast(
2290                             *this, V, SrcLangAS, DestLangAS, T, true),
2291                         DeclPtr.getAlignment());
2292     }
2293 
2294     // Push a destructor cleanup for this parameter if the ABI requires it.
2295     // Don't push a cleanup in a thunk for a method that will also emit a
2296     // cleanup.
2297     if (hasAggregateEvaluationKind(Ty) && !CurFuncIsThunk &&
2298         Ty->getAs<RecordType>()->getDecl()->isParamDestroyedInCallee()) {
2299       if (QualType::DestructionKind DtorKind = Ty.isDestructedType()) {
2300         assert((DtorKind == QualType::DK_cxx_destructor ||
2301                 DtorKind == QualType::DK_nontrivial_c_struct) &&
2302                "unexpected destructor type");
2303         pushDestroy(DtorKind, DeclPtr, Ty);
2304         CalleeDestructedParamCleanups[cast<ParmVarDecl>(&D)] =
2305             EHStack.stable_begin();
2306       }
2307     }
2308   } else {
2309     // Check if the parameter address is controlled by OpenMP runtime.
2310     Address OpenMPLocalAddr =
2311         getLangOpts().OpenMP
2312             ? CGM.getOpenMPRuntime().getAddressOfLocalVariable(*this, &D)
2313             : Address::invalid();
2314     if (getLangOpts().OpenMP && OpenMPLocalAddr.isValid()) {
2315       DeclPtr = OpenMPLocalAddr;
2316     } else {
2317       // Otherwise, create a temporary to hold the value.
2318       DeclPtr = CreateMemTemp(Ty, getContext().getDeclAlign(&D),
2319                               D.getName() + ".addr");
2320     }
2321     DoStore = true;
2322   }
2323 
2324   llvm::Value *ArgVal = (DoStore ? Arg.getDirectValue() : nullptr);
2325 
2326   LValue lv = MakeAddrLValue(DeclPtr, Ty);
2327   if (IsScalar) {
2328     Qualifiers qs = Ty.getQualifiers();
2329     if (Qualifiers::ObjCLifetime lt = qs.getObjCLifetime()) {
2330       // We honor __attribute__((ns_consumed)) for types with lifetime.
2331       // For __strong, it's handled by just skipping the initial retain;
2332       // otherwise we have to balance out the initial +1 with an extra
2333       // cleanup to do the release at the end of the function.
2334       bool isConsumed = D.hasAttr<NSConsumedAttr>();
2335 
2336       // If a parameter is pseudo-strong then we can omit the implicit retain.
2337       if (D.isARCPseudoStrong()) {
2338         assert(lt == Qualifiers::OCL_Strong &&
2339                "pseudo-strong variable isn't strong?");
2340         assert(qs.hasConst() && "pseudo-strong variable should be const!");
2341         lt = Qualifiers::OCL_ExplicitNone;
2342       }
2343 
2344       // Load objects passed indirectly.
2345       if (Arg.isIndirect() && !ArgVal)
2346         ArgVal = Builder.CreateLoad(DeclPtr);
2347 
2348       if (lt == Qualifiers::OCL_Strong) {
2349         if (!isConsumed) {
2350           if (CGM.getCodeGenOpts().OptimizationLevel == 0) {
2351             // use objc_storeStrong(&dest, value) for retaining the
2352             // object. But first, store a null into 'dest' because
2353             // objc_storeStrong attempts to release its old value.
2354             llvm::Value *Null = CGM.EmitNullConstant(D.getType());
2355             EmitStoreOfScalar(Null, lv, /* isInitialization */ true);
2356             EmitARCStoreStrongCall(lv.getAddress(), ArgVal, true);
2357             DoStore = false;
2358           }
2359           else
2360           // Don't use objc_retainBlock for block pointers, because we
2361           // don't want to Block_copy something just because we got it
2362           // as a parameter.
2363             ArgVal = EmitARCRetainNonBlock(ArgVal);
2364         }
2365       } else {
2366         // Push the cleanup for a consumed parameter.
2367         if (isConsumed) {
2368           ARCPreciseLifetime_t precise = (D.hasAttr<ObjCPreciseLifetimeAttr>()
2369                                 ? ARCPreciseLifetime : ARCImpreciseLifetime);
2370           EHStack.pushCleanup<ConsumeARCParameter>(getARCCleanupKind(), ArgVal,
2371                                                    precise);
2372         }
2373 
2374         if (lt == Qualifiers::OCL_Weak) {
2375           EmitARCInitWeak(DeclPtr, ArgVal);
2376           DoStore = false; // The weak init is a store, no need to do two.
2377         }
2378       }
2379 
2380       // Enter the cleanup scope.
2381       EmitAutoVarWithLifetime(*this, D, DeclPtr, lt);
2382     }
2383   }
2384 
2385   // Store the initial value into the alloca.
2386   if (DoStore)
2387     EmitStoreOfScalar(ArgVal, lv, /* isInitialization */ true);
2388 
2389   setAddrOfLocalVar(&D, DeclPtr);
2390 
2391   // Emit debug info for param declaration.
2392   if (CGDebugInfo *DI = getDebugInfo()) {
2393     if (CGM.getCodeGenOpts().getDebugInfo() >=
2394         codegenoptions::LimitedDebugInfo) {
2395       DI->EmitDeclareOfArgVariable(&D, DeclPtr.getPointer(), ArgNo, Builder);
2396     }
2397   }
2398 
2399   if (D.hasAttr<AnnotateAttr>())
2400     EmitVarAnnotations(&D, DeclPtr.getPointer());
2401 
2402   // We can only check return value nullability if all arguments to the
2403   // function satisfy their nullability preconditions. This makes it necessary
2404   // to emit null checks for args in the function body itself.
2405   if (requiresReturnValueNullabilityCheck()) {
2406     auto Nullability = Ty->getNullability(getContext());
2407     if (Nullability && *Nullability == NullabilityKind::NonNull) {
2408       SanitizerScope SanScope(this);
2409       RetValNullabilityPrecondition =
2410           Builder.CreateAnd(RetValNullabilityPrecondition,
2411                             Builder.CreateIsNotNull(Arg.getAnyValue()));
2412     }
2413   }
2414 }
2415 
2416 void CodeGenModule::EmitOMPDeclareReduction(const OMPDeclareReductionDecl *D,
2417                                             CodeGenFunction *CGF) {
2418   if (!LangOpts.OpenMP || (!LangOpts.EmitAllDecls && !D->isUsed()))
2419     return;
2420   getOpenMPRuntime().emitUserDefinedReduction(CGF, D);
2421 }
2422 
2423 void CodeGenModule::EmitOMPDeclareMapper(const OMPDeclareMapperDecl *D,
2424                                             CodeGenFunction *CGF) {
2425   if (!LangOpts.OpenMP || (!LangOpts.EmitAllDecls && !D->isUsed()))
2426     return;
2427   // FIXME: need to implement mapper code generation
2428 }
2429 
2430 void CodeGenModule::EmitOMPRequiresDecl(const OMPRequiresDecl *D) {
2431   getOpenMPRuntime().checkArchForUnifiedAddressing(*this, D);
2432 }
2433