1 //===-- CodeGenFunction.h - Per-Function state for LLVM CodeGen -*- C++ -*-===//
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 is the internal per-function state used for llvm translation.
10 //
11 //===----------------------------------------------------------------------===//
12 
13 #ifndef LLVM_CLANG_LIB_CODEGEN_CODEGENFUNCTION_H
14 #define LLVM_CLANG_LIB_CODEGEN_CODEGENFUNCTION_H
15 
16 #include "CGBuilder.h"
17 #include "CGDebugInfo.h"
18 #include "CGLoopInfo.h"
19 #include "CGValue.h"
20 #include "CodeGenModule.h"
21 #include "CodeGenPGO.h"
22 #include "EHScopeStack.h"
23 #include "VarBypassDetector.h"
24 #include "clang/AST/CharUnits.h"
25 #include "clang/AST/CurrentSourceLocExprScope.h"
26 #include "clang/AST/ExprCXX.h"
27 #include "clang/AST/ExprObjC.h"
28 #include "clang/AST/ExprOpenMP.h"
29 #include "clang/AST/StmtOpenMP.h"
30 #include "clang/AST/Type.h"
31 #include "clang/Basic/ABI.h"
32 #include "clang/Basic/CapturedStmt.h"
33 #include "clang/Basic/CodeGenOptions.h"
34 #include "clang/Basic/OpenMPKinds.h"
35 #include "clang/Basic/TargetInfo.h"
36 #include "llvm/ADT/ArrayRef.h"
37 #include "llvm/ADT/DenseMap.h"
38 #include "llvm/ADT/MapVector.h"
39 #include "llvm/ADT/SmallVector.h"
40 #include "llvm/Frontend/OpenMP/OMPIRBuilder.h"
41 #include "llvm/IR/ValueHandle.h"
42 #include "llvm/Support/Debug.h"
43 #include "llvm/Transforms/Utils/SanitizerStats.h"
44 
45 namespace llvm {
46 class BasicBlock;
47 class LLVMContext;
48 class MDNode;
49 class SwitchInst;
50 class Twine;
51 class Value;
52 class CanonicalLoopInfo;
53 }
54 
55 namespace clang {
56 class ASTContext;
57 class CXXDestructorDecl;
58 class CXXForRangeStmt;
59 class CXXTryStmt;
60 class Decl;
61 class LabelDecl;
62 class FunctionDecl;
63 class FunctionProtoType;
64 class LabelStmt;
65 class ObjCContainerDecl;
66 class ObjCInterfaceDecl;
67 class ObjCIvarDecl;
68 class ObjCMethodDecl;
69 class ObjCImplementationDecl;
70 class ObjCPropertyImplDecl;
71 class TargetInfo;
72 class VarDecl;
73 class ObjCForCollectionStmt;
74 class ObjCAtTryStmt;
75 class ObjCAtThrowStmt;
76 class ObjCAtSynchronizedStmt;
77 class ObjCAutoreleasePoolStmt;
78 class OMPUseDevicePtrClause;
79 class OMPUseDeviceAddrClause;
80 class SVETypeFlags;
81 class OMPExecutableDirective;
82 
83 namespace analyze_os_log {
84 class OSLogBufferLayout;
85 }
86 
87 namespace CodeGen {
88 class CodeGenTypes;
89 class CGCallee;
90 class CGFunctionInfo;
91 class CGBlockInfo;
92 class CGCXXABI;
93 class BlockByrefHelpers;
94 class BlockByrefInfo;
95 class BlockFieldFlags;
96 class RegionCodeGenTy;
97 class TargetCodeGenInfo;
98 struct OMPTaskDataTy;
99 struct CGCoroData;
100 
101 /// The kind of evaluation to perform on values of a particular
102 /// type.  Basically, is the code in CGExprScalar, CGExprComplex, or
103 /// CGExprAgg?
104 ///
105 /// TODO: should vectors maybe be split out into their own thing?
106 enum TypeEvaluationKind {
107   TEK_Scalar,
108   TEK_Complex,
109   TEK_Aggregate
110 };
111 
112 #define LIST_SANITIZER_CHECKS                                                  \
113   SANITIZER_CHECK(AddOverflow, add_overflow, 0)                                \
114   SANITIZER_CHECK(BuiltinUnreachable, builtin_unreachable, 0)                  \
115   SANITIZER_CHECK(CFICheckFail, cfi_check_fail, 0)                             \
116   SANITIZER_CHECK(DivremOverflow, divrem_overflow, 0)                          \
117   SANITIZER_CHECK(DynamicTypeCacheMiss, dynamic_type_cache_miss, 0)            \
118   SANITIZER_CHECK(FloatCastOverflow, float_cast_overflow, 0)                   \
119   SANITIZER_CHECK(FunctionTypeMismatch, function_type_mismatch, 1)             \
120   SANITIZER_CHECK(ImplicitConversion, implicit_conversion, 0)                  \
121   SANITIZER_CHECK(InvalidBuiltin, invalid_builtin, 0)                          \
122   SANITIZER_CHECK(InvalidObjCCast, invalid_objc_cast, 0)                       \
123   SANITIZER_CHECK(LoadInvalidValue, load_invalid_value, 0)                     \
124   SANITIZER_CHECK(MissingReturn, missing_return, 0)                            \
125   SANITIZER_CHECK(MulOverflow, mul_overflow, 0)                                \
126   SANITIZER_CHECK(NegateOverflow, negate_overflow, 0)                          \
127   SANITIZER_CHECK(NullabilityArg, nullability_arg, 0)                          \
128   SANITIZER_CHECK(NullabilityReturn, nullability_return, 1)                    \
129   SANITIZER_CHECK(NonnullArg, nonnull_arg, 0)                                  \
130   SANITIZER_CHECK(NonnullReturn, nonnull_return, 1)                            \
131   SANITIZER_CHECK(OutOfBounds, out_of_bounds, 0)                               \
132   SANITIZER_CHECK(PointerOverflow, pointer_overflow, 0)                        \
133   SANITIZER_CHECK(ShiftOutOfBounds, shift_out_of_bounds, 0)                    \
134   SANITIZER_CHECK(SubOverflow, sub_overflow, 0)                                \
135   SANITIZER_CHECK(TypeMismatch, type_mismatch, 1)                              \
136   SANITIZER_CHECK(AlignmentAssumption, alignment_assumption, 0)                \
137   SANITIZER_CHECK(VLABoundNotPositive, vla_bound_not_positive, 0)
138 
139 enum SanitizerHandler {
140 #define SANITIZER_CHECK(Enum, Name, Version) Enum,
141   LIST_SANITIZER_CHECKS
142 #undef SANITIZER_CHECK
143 };
144 
145 /// Helper class with most of the code for saving a value for a
146 /// conditional expression cleanup.
147 struct DominatingLLVMValue {
148   typedef llvm::PointerIntPair<llvm::Value*, 1, bool> saved_type;
149 
150   /// Answer whether the given value needs extra work to be saved.
151   static bool needsSaving(llvm::Value *value) {
152     // If it's not an instruction, we don't need to save.
153     if (!isa<llvm::Instruction>(value)) return false;
154 
155     // If it's an instruction in the entry block, we don't need to save.
156     llvm::BasicBlock *block = cast<llvm::Instruction>(value)->getParent();
157     return (block != &block->getParent()->getEntryBlock());
158   }
159 
160   static saved_type save(CodeGenFunction &CGF, llvm::Value *value);
161   static llvm::Value *restore(CodeGenFunction &CGF, saved_type value);
162 };
163 
164 /// A partial specialization of DominatingValue for llvm::Values that
165 /// might be llvm::Instructions.
166 template <class T> struct DominatingPointer<T,true> : DominatingLLVMValue {
167   typedef T *type;
168   static type restore(CodeGenFunction &CGF, saved_type value) {
169     return static_cast<T*>(DominatingLLVMValue::restore(CGF, value));
170   }
171 };
172 
173 /// A specialization of DominatingValue for Address.
174 template <> struct DominatingValue<Address> {
175   typedef Address type;
176 
177   struct saved_type {
178     DominatingLLVMValue::saved_type SavedValue;
179     llvm::Type *ElementType;
180     CharUnits Alignment;
181   };
182 
183   static bool needsSaving(type value) {
184     return DominatingLLVMValue::needsSaving(value.getPointer());
185   }
186   static saved_type save(CodeGenFunction &CGF, type value) {
187     return { DominatingLLVMValue::save(CGF, value.getPointer()),
188              value.getElementType(), value.getAlignment() };
189   }
190   static type restore(CodeGenFunction &CGF, saved_type value) {
191     return Address(DominatingLLVMValue::restore(CGF, value.SavedValue),
192                    value.ElementType, value.Alignment);
193   }
194 };
195 
196 /// A specialization of DominatingValue for RValue.
197 template <> struct DominatingValue<RValue> {
198   typedef RValue type;
199   class saved_type {
200     enum Kind { ScalarLiteral, ScalarAddress, AggregateLiteral,
201                 AggregateAddress, ComplexAddress };
202 
203     llvm::Value *Value;
204     unsigned K : 3;
205     unsigned Align : 29;
206     saved_type(llvm::Value *v, Kind k, unsigned a = 0)
207       : Value(v), K(k), Align(a) {}
208 
209   public:
210     static bool needsSaving(RValue value);
211     static saved_type save(CodeGenFunction &CGF, RValue value);
212     RValue restore(CodeGenFunction &CGF);
213 
214     // implementations in CGCleanup.cpp
215   };
216 
217   static bool needsSaving(type value) {
218     return saved_type::needsSaving(value);
219   }
220   static saved_type save(CodeGenFunction &CGF, type value) {
221     return saved_type::save(CGF, value);
222   }
223   static type restore(CodeGenFunction &CGF, saved_type value) {
224     return value.restore(CGF);
225   }
226 };
227 
228 /// CodeGenFunction - This class organizes the per-function state that is used
229 /// while generating LLVM code.
230 class CodeGenFunction : public CodeGenTypeCache {
231   CodeGenFunction(const CodeGenFunction &) = delete;
232   void operator=(const CodeGenFunction &) = delete;
233 
234   friend class CGCXXABI;
235 public:
236   /// A jump destination is an abstract label, branching to which may
237   /// require a jump out through normal cleanups.
238   struct JumpDest {
239     JumpDest() : Block(nullptr), Index(0) {}
240     JumpDest(llvm::BasicBlock *Block, EHScopeStack::stable_iterator Depth,
241              unsigned Index)
242         : Block(Block), ScopeDepth(Depth), Index(Index) {}
243 
244     bool isValid() const { return Block != nullptr; }
245     llvm::BasicBlock *getBlock() const { return Block; }
246     EHScopeStack::stable_iterator getScopeDepth() const { return ScopeDepth; }
247     unsigned getDestIndex() const { return Index; }
248 
249     // This should be used cautiously.
250     void setScopeDepth(EHScopeStack::stable_iterator depth) {
251       ScopeDepth = depth;
252     }
253 
254   private:
255     llvm::BasicBlock *Block;
256     EHScopeStack::stable_iterator ScopeDepth;
257     unsigned Index;
258   };
259 
260   CodeGenModule &CGM;  // Per-module state.
261   const TargetInfo &Target;
262 
263   // For EH/SEH outlined funclets, this field points to parent's CGF
264   CodeGenFunction *ParentCGF = nullptr;
265 
266   typedef std::pair<llvm::Value *, llvm::Value *> ComplexPairTy;
267   LoopInfoStack LoopStack;
268   CGBuilderTy Builder;
269 
270   // Stores variables for which we can't generate correct lifetime markers
271   // because of jumps.
272   VarBypassDetector Bypasses;
273 
274   /// List of recently emitted OMPCanonicalLoops.
275   ///
276   /// Since OMPCanonicalLoops are nested inside other statements (in particular
277   /// CapturedStmt generated by OMPExecutableDirective and non-perfectly nested
278   /// loops), we cannot directly call OMPEmitOMPCanonicalLoop and receive its
279   /// llvm::CanonicalLoopInfo. Instead, we call EmitStmt and any
280   /// OMPEmitOMPCanonicalLoop called by it will add its CanonicalLoopInfo to
281   /// this stack when done. Entering a new loop requires clearing this list; it
282   /// either means we start parsing a new loop nest (in which case the previous
283   /// loop nest goes out of scope) or a second loop in the same level in which
284   /// case it would be ambiguous into which of the two (or more) loops the loop
285   /// nest would extend.
286   SmallVector<llvm::CanonicalLoopInfo *, 4> OMPLoopNestStack;
287 
288   /// Number of nested loop to be consumed by the last surrounding
289   /// loop-associated directive.
290   int ExpectedOMPLoopDepth = 0;
291 
292   // CodeGen lambda for loops and support for ordered clause
293   typedef llvm::function_ref<void(CodeGenFunction &, const OMPLoopDirective &,
294                                   JumpDest)>
295       CodeGenLoopTy;
296   typedef llvm::function_ref<void(CodeGenFunction &, SourceLocation,
297                                   const unsigned, const bool)>
298       CodeGenOrderedTy;
299 
300   // Codegen lambda for loop bounds in worksharing loop constructs
301   typedef llvm::function_ref<std::pair<LValue, LValue>(
302       CodeGenFunction &, const OMPExecutableDirective &S)>
303       CodeGenLoopBoundsTy;
304 
305   // Codegen lambda for loop bounds in dispatch-based loop implementation
306   typedef llvm::function_ref<std::pair<llvm::Value *, llvm::Value *>(
307       CodeGenFunction &, const OMPExecutableDirective &S, Address LB,
308       Address UB)>
309       CodeGenDispatchBoundsTy;
310 
311   /// CGBuilder insert helper. This function is called after an
312   /// instruction is created using Builder.
313   void InsertHelper(llvm::Instruction *I, const llvm::Twine &Name,
314                     llvm::BasicBlock *BB,
315                     llvm::BasicBlock::iterator InsertPt) const;
316 
317   /// CurFuncDecl - Holds the Decl for the current outermost
318   /// non-closure context.
319   const Decl *CurFuncDecl;
320   /// CurCodeDecl - This is the inner-most code context, which includes blocks.
321   const Decl *CurCodeDecl;
322   const CGFunctionInfo *CurFnInfo;
323   QualType FnRetTy;
324   llvm::Function *CurFn = nullptr;
325 
326   /// Save Parameter Decl for coroutine.
327   llvm::SmallVector<const ParmVarDecl *, 4> FnArgs;
328 
329   // Holds coroutine data if the current function is a coroutine. We use a
330   // wrapper to manage its lifetime, so that we don't have to define CGCoroData
331   // in this header.
332   struct CGCoroInfo {
333     std::unique_ptr<CGCoroData> Data;
334     CGCoroInfo();
335     ~CGCoroInfo();
336   };
337   CGCoroInfo CurCoro;
338 
339   bool isCoroutine() const {
340     return CurCoro.Data != nullptr;
341   }
342 
343   /// CurGD - The GlobalDecl for the current function being compiled.
344   GlobalDecl CurGD;
345 
346   /// PrologueCleanupDepth - The cleanup depth enclosing all the
347   /// cleanups associated with the parameters.
348   EHScopeStack::stable_iterator PrologueCleanupDepth;
349 
350   /// ReturnBlock - Unified return block.
351   JumpDest ReturnBlock;
352 
353   /// ReturnValue - The temporary alloca to hold the return
354   /// value. This is invalid iff the function has no return value.
355   Address ReturnValue = Address::invalid();
356 
357   /// ReturnValuePointer - The temporary alloca to hold a pointer to sret.
358   /// This is invalid if sret is not in use.
359   Address ReturnValuePointer = Address::invalid();
360 
361   /// If a return statement is being visited, this holds the return statment's
362   /// result expression.
363   const Expr *RetExpr = nullptr;
364 
365   /// Return true if a label was seen in the current scope.
366   bool hasLabelBeenSeenInCurrentScope() const {
367     if (CurLexicalScope)
368       return CurLexicalScope->hasLabels();
369     return !LabelMap.empty();
370   }
371 
372   /// AllocaInsertPoint - This is an instruction in the entry block before which
373   /// we prefer to insert allocas.
374   llvm::AssertingVH<llvm::Instruction> AllocaInsertPt;
375 
376 private:
377   /// PostAllocaInsertPt - This is a place in the prologue where code can be
378   /// inserted that will be dominated by all the static allocas. This helps
379   /// achieve two things:
380   ///   1. Contiguity of all static allocas (within the prologue) is maintained.
381   ///   2. All other prologue code (which are dominated by static allocas) do
382   ///      appear in the source order immediately after all static allocas.
383   ///
384   /// PostAllocaInsertPt will be lazily created when it is *really* required.
385   llvm::AssertingVH<llvm::Instruction> PostAllocaInsertPt = nullptr;
386 
387 public:
388   /// Return PostAllocaInsertPt. If it is not yet created, then insert it
389   /// immediately after AllocaInsertPt.
390   llvm::Instruction *getPostAllocaInsertPoint() {
391     if (!PostAllocaInsertPt) {
392       assert(AllocaInsertPt &&
393              "Expected static alloca insertion point at function prologue");
394       assert(AllocaInsertPt->getParent()->isEntryBlock() &&
395              "EBB should be entry block of the current code gen function");
396       PostAllocaInsertPt = AllocaInsertPt->clone();
397       PostAllocaInsertPt->setName("postallocapt");
398       PostAllocaInsertPt->insertAfter(AllocaInsertPt);
399     }
400 
401     return PostAllocaInsertPt;
402   }
403 
404   /// API for captured statement code generation.
405   class CGCapturedStmtInfo {
406   public:
407     explicit CGCapturedStmtInfo(CapturedRegionKind K = CR_Default)
408         : Kind(K), ThisValue(nullptr), CXXThisFieldDecl(nullptr) {}
409     explicit CGCapturedStmtInfo(const CapturedStmt &S,
410                                 CapturedRegionKind K = CR_Default)
411       : Kind(K), ThisValue(nullptr), CXXThisFieldDecl(nullptr) {
412 
413       RecordDecl::field_iterator Field =
414         S.getCapturedRecordDecl()->field_begin();
415       for (CapturedStmt::const_capture_iterator I = S.capture_begin(),
416                                                 E = S.capture_end();
417            I != E; ++I, ++Field) {
418         if (I->capturesThis())
419           CXXThisFieldDecl = *Field;
420         else if (I->capturesVariable())
421           CaptureFields[I->getCapturedVar()->getCanonicalDecl()] = *Field;
422         else if (I->capturesVariableByCopy())
423           CaptureFields[I->getCapturedVar()->getCanonicalDecl()] = *Field;
424       }
425     }
426 
427     virtual ~CGCapturedStmtInfo();
428 
429     CapturedRegionKind getKind() const { return Kind; }
430 
431     virtual void setContextValue(llvm::Value *V) { ThisValue = V; }
432     // Retrieve the value of the context parameter.
433     virtual llvm::Value *getContextValue() const { return ThisValue; }
434 
435     /// Lookup the captured field decl for a variable.
436     virtual const FieldDecl *lookup(const VarDecl *VD) const {
437       return CaptureFields.lookup(VD->getCanonicalDecl());
438     }
439 
440     bool isCXXThisExprCaptured() const { return getThisFieldDecl() != nullptr; }
441     virtual FieldDecl *getThisFieldDecl() const { return CXXThisFieldDecl; }
442 
443     static bool classof(const CGCapturedStmtInfo *) {
444       return true;
445     }
446 
447     /// Emit the captured statement body.
448     virtual void EmitBody(CodeGenFunction &CGF, const Stmt *S) {
449       CGF.incrementProfileCounter(S);
450       CGF.EmitStmt(S);
451     }
452 
453     /// Get the name of the capture helper.
454     virtual StringRef getHelperName() const { return "__captured_stmt"; }
455 
456     /// Get the CaptureFields
457     llvm::SmallDenseMap<const VarDecl *, FieldDecl *> getCaptureFields() {
458       return CaptureFields;
459     }
460 
461   private:
462     /// The kind of captured statement being generated.
463     CapturedRegionKind Kind;
464 
465     /// Keep the map between VarDecl and FieldDecl.
466     llvm::SmallDenseMap<const VarDecl *, FieldDecl *> CaptureFields;
467 
468     /// The base address of the captured record, passed in as the first
469     /// argument of the parallel region function.
470     llvm::Value *ThisValue;
471 
472     /// Captured 'this' type.
473     FieldDecl *CXXThisFieldDecl;
474   };
475   CGCapturedStmtInfo *CapturedStmtInfo = nullptr;
476 
477   /// RAII for correct setting/restoring of CapturedStmtInfo.
478   class CGCapturedStmtRAII {
479   private:
480     CodeGenFunction &CGF;
481     CGCapturedStmtInfo *PrevCapturedStmtInfo;
482   public:
483     CGCapturedStmtRAII(CodeGenFunction &CGF,
484                        CGCapturedStmtInfo *NewCapturedStmtInfo)
485         : CGF(CGF), PrevCapturedStmtInfo(CGF.CapturedStmtInfo) {
486       CGF.CapturedStmtInfo = NewCapturedStmtInfo;
487     }
488     ~CGCapturedStmtRAII() { CGF.CapturedStmtInfo = PrevCapturedStmtInfo; }
489   };
490 
491   /// An abstract representation of regular/ObjC call/message targets.
492   class AbstractCallee {
493     /// The function declaration of the callee.
494     const Decl *CalleeDecl;
495 
496   public:
497     AbstractCallee() : CalleeDecl(nullptr) {}
498     AbstractCallee(const FunctionDecl *FD) : CalleeDecl(FD) {}
499     AbstractCallee(const ObjCMethodDecl *OMD) : CalleeDecl(OMD) {}
500     bool hasFunctionDecl() const {
501       return isa_and_nonnull<FunctionDecl>(CalleeDecl);
502     }
503     const Decl *getDecl() const { return CalleeDecl; }
504     unsigned getNumParams() const {
505       if (const auto *FD = dyn_cast<FunctionDecl>(CalleeDecl))
506         return FD->getNumParams();
507       return cast<ObjCMethodDecl>(CalleeDecl)->param_size();
508     }
509     const ParmVarDecl *getParamDecl(unsigned I) const {
510       if (const auto *FD = dyn_cast<FunctionDecl>(CalleeDecl))
511         return FD->getParamDecl(I);
512       return *(cast<ObjCMethodDecl>(CalleeDecl)->param_begin() + I);
513     }
514   };
515 
516   /// Sanitizers enabled for this function.
517   SanitizerSet SanOpts;
518 
519   /// True if CodeGen currently emits code implementing sanitizer checks.
520   bool IsSanitizerScope = false;
521 
522   /// RAII object to set/unset CodeGenFunction::IsSanitizerScope.
523   class SanitizerScope {
524     CodeGenFunction *CGF;
525   public:
526     SanitizerScope(CodeGenFunction *CGF);
527     ~SanitizerScope();
528   };
529 
530   /// In C++, whether we are code generating a thunk.  This controls whether we
531   /// should emit cleanups.
532   bool CurFuncIsThunk = false;
533 
534   /// In ARC, whether we should autorelease the return value.
535   bool AutoreleaseResult = false;
536 
537   /// Whether we processed a Microsoft-style asm block during CodeGen. These can
538   /// potentially set the return value.
539   bool SawAsmBlock = false;
540 
541   const NamedDecl *CurSEHParent = nullptr;
542 
543   /// True if the current function is an outlined SEH helper. This can be a
544   /// finally block or filter expression.
545   bool IsOutlinedSEHHelper = false;
546 
547   /// True if CodeGen currently emits code inside presereved access index
548   /// region.
549   bool IsInPreservedAIRegion = false;
550 
551   /// True if the current statement has nomerge attribute.
552   bool InNoMergeAttributedStmt = false;
553 
554   // The CallExpr within the current statement that the musttail attribute
555   // applies to.  nullptr if there is no 'musttail' on the current statement.
556   const CallExpr *MustTailCall = nullptr;
557 
558   /// Returns true if a function must make progress, which means the
559   /// mustprogress attribute can be added.
560   bool checkIfFunctionMustProgress() {
561     if (CGM.getCodeGenOpts().getFiniteLoops() ==
562         CodeGenOptions::FiniteLoopsKind::Never)
563       return false;
564 
565     // C++11 and later guarantees that a thread eventually will do one of the
566     // following (6.9.2.3.1 in C++11):
567     // - terminate,
568     //  - make a call to a library I/O function,
569     //  - perform an access through a volatile glvalue, or
570     //  - perform a synchronization operation or an atomic operation.
571     //
572     // Hence each function is 'mustprogress' in C++11 or later.
573     return getLangOpts().CPlusPlus11;
574   }
575 
576   /// Returns true if a loop must make progress, which means the mustprogress
577   /// attribute can be added. \p HasConstantCond indicates whether the branch
578   /// condition is a known constant.
579   bool checkIfLoopMustProgress(bool HasConstantCond) {
580     if (CGM.getCodeGenOpts().getFiniteLoops() ==
581         CodeGenOptions::FiniteLoopsKind::Always)
582       return true;
583     if (CGM.getCodeGenOpts().getFiniteLoops() ==
584         CodeGenOptions::FiniteLoopsKind::Never)
585       return false;
586 
587     // If the containing function must make progress, loops also must make
588     // progress (as in C++11 and later).
589     if (checkIfFunctionMustProgress())
590       return true;
591 
592     // Now apply rules for plain C (see  6.8.5.6 in C11).
593     // Loops with constant conditions do not have to make progress in any C
594     // version.
595     if (HasConstantCond)
596       return false;
597 
598     // Loops with non-constant conditions must make progress in C11 and later.
599     return getLangOpts().C11;
600   }
601 
602   const CodeGen::CGBlockInfo *BlockInfo = nullptr;
603   llvm::Value *BlockPointer = nullptr;
604 
605   llvm::DenseMap<const VarDecl *, FieldDecl *> LambdaCaptureFields;
606   FieldDecl *LambdaThisCaptureField = nullptr;
607 
608   /// A mapping from NRVO variables to the flags used to indicate
609   /// when the NRVO has been applied to this variable.
610   llvm::DenseMap<const VarDecl *, llvm::Value *> NRVOFlags;
611 
612   EHScopeStack EHStack;
613   llvm::SmallVector<char, 256> LifetimeExtendedCleanupStack;
614   llvm::SmallVector<const JumpDest *, 2> SEHTryEpilogueStack;
615 
616   llvm::Instruction *CurrentFuncletPad = nullptr;
617 
618   class CallLifetimeEnd final : public EHScopeStack::Cleanup {
619     bool isRedundantBeforeReturn() override { return true; }
620 
621     llvm::Value *Addr;
622     llvm::Value *Size;
623 
624   public:
625     CallLifetimeEnd(Address addr, llvm::Value *size)
626         : Addr(addr.getPointer()), Size(size) {}
627 
628     void Emit(CodeGenFunction &CGF, Flags flags) override {
629       CGF.EmitLifetimeEnd(Size, Addr);
630     }
631   };
632 
633   /// Header for data within LifetimeExtendedCleanupStack.
634   struct LifetimeExtendedCleanupHeader {
635     /// The size of the following cleanup object.
636     unsigned Size;
637     /// The kind of cleanup to push: a value from the CleanupKind enumeration.
638     unsigned Kind : 31;
639     /// Whether this is a conditional cleanup.
640     unsigned IsConditional : 1;
641 
642     size_t getSize() const { return Size; }
643     CleanupKind getKind() const { return (CleanupKind)Kind; }
644     bool isConditional() const { return IsConditional; }
645   };
646 
647   /// i32s containing the indexes of the cleanup destinations.
648   Address NormalCleanupDest = Address::invalid();
649 
650   unsigned NextCleanupDestIndex = 1;
651 
652   /// EHResumeBlock - Unified block containing a call to llvm.eh.resume.
653   llvm::BasicBlock *EHResumeBlock = nullptr;
654 
655   /// The exception slot.  All landing pads write the current exception pointer
656   /// into this alloca.
657   llvm::Value *ExceptionSlot = nullptr;
658 
659   /// The selector slot.  Under the MandatoryCleanup model, all landing pads
660   /// write the current selector value into this alloca.
661   llvm::AllocaInst *EHSelectorSlot = nullptr;
662 
663   /// A stack of exception code slots. Entering an __except block pushes a slot
664   /// on the stack and leaving pops one. The __exception_code() intrinsic loads
665   /// a value from the top of the stack.
666   SmallVector<Address, 1> SEHCodeSlotStack;
667 
668   /// Value returned by __exception_info intrinsic.
669   llvm::Value *SEHInfo = nullptr;
670 
671   /// Emits a landing pad for the current EH stack.
672   llvm::BasicBlock *EmitLandingPad();
673 
674   llvm::BasicBlock *getInvokeDestImpl();
675 
676   /// Parent loop-based directive for scan directive.
677   const OMPExecutableDirective *OMPParentLoopDirectiveForScan = nullptr;
678   llvm::BasicBlock *OMPBeforeScanBlock = nullptr;
679   llvm::BasicBlock *OMPAfterScanBlock = nullptr;
680   llvm::BasicBlock *OMPScanExitBlock = nullptr;
681   llvm::BasicBlock *OMPScanDispatch = nullptr;
682   bool OMPFirstScanLoop = false;
683 
684   /// Manages parent directive for scan directives.
685   class ParentLoopDirectiveForScanRegion {
686     CodeGenFunction &CGF;
687     const OMPExecutableDirective *ParentLoopDirectiveForScan;
688 
689   public:
690     ParentLoopDirectiveForScanRegion(
691         CodeGenFunction &CGF,
692         const OMPExecutableDirective &ParentLoopDirectiveForScan)
693         : CGF(CGF),
694           ParentLoopDirectiveForScan(CGF.OMPParentLoopDirectiveForScan) {
695       CGF.OMPParentLoopDirectiveForScan = &ParentLoopDirectiveForScan;
696     }
697     ~ParentLoopDirectiveForScanRegion() {
698       CGF.OMPParentLoopDirectiveForScan = ParentLoopDirectiveForScan;
699     }
700   };
701 
702   template <class T>
703   typename DominatingValue<T>::saved_type saveValueInCond(T value) {
704     return DominatingValue<T>::save(*this, value);
705   }
706 
707   class CGFPOptionsRAII {
708   public:
709     CGFPOptionsRAII(CodeGenFunction &CGF, FPOptions FPFeatures);
710     CGFPOptionsRAII(CodeGenFunction &CGF, const Expr *E);
711     ~CGFPOptionsRAII();
712 
713   private:
714     void ConstructorHelper(FPOptions FPFeatures);
715     CodeGenFunction &CGF;
716     FPOptions OldFPFeatures;
717     llvm::fp::ExceptionBehavior OldExcept;
718     llvm::RoundingMode OldRounding;
719     Optional<CGBuilderTy::FastMathFlagGuard> FMFGuard;
720   };
721   FPOptions CurFPFeatures;
722 
723 public:
724   /// ObjCEHValueStack - Stack of Objective-C exception values, used for
725   /// rethrows.
726   SmallVector<llvm::Value*, 8> ObjCEHValueStack;
727 
728   /// A class controlling the emission of a finally block.
729   class FinallyInfo {
730     /// Where the catchall's edge through the cleanup should go.
731     JumpDest RethrowDest;
732 
733     /// A function to call to enter the catch.
734     llvm::FunctionCallee BeginCatchFn;
735 
736     /// An i1 variable indicating whether or not the @finally is
737     /// running for an exception.
738     llvm::AllocaInst *ForEHVar;
739 
740     /// An i8* variable into which the exception pointer to rethrow
741     /// has been saved.
742     llvm::AllocaInst *SavedExnVar;
743 
744   public:
745     void enter(CodeGenFunction &CGF, const Stmt *Finally,
746                llvm::FunctionCallee beginCatchFn,
747                llvm::FunctionCallee endCatchFn, llvm::FunctionCallee rethrowFn);
748     void exit(CodeGenFunction &CGF);
749   };
750 
751   /// Returns true inside SEH __try blocks.
752   bool isSEHTryScope() const { return !SEHTryEpilogueStack.empty(); }
753 
754   /// Returns true while emitting a cleanuppad.
755   bool isCleanupPadScope() const {
756     return CurrentFuncletPad && isa<llvm::CleanupPadInst>(CurrentFuncletPad);
757   }
758 
759   /// pushFullExprCleanup - Push a cleanup to be run at the end of the
760   /// current full-expression.  Safe against the possibility that
761   /// we're currently inside a conditionally-evaluated expression.
762   template <class T, class... As>
763   void pushFullExprCleanup(CleanupKind kind, As... A) {
764     // If we're not in a conditional branch, or if none of the
765     // arguments requires saving, then use the unconditional cleanup.
766     if (!isInConditionalBranch())
767       return EHStack.pushCleanup<T>(kind, A...);
768 
769     // Stash values in a tuple so we can guarantee the order of saves.
770     typedef std::tuple<typename DominatingValue<As>::saved_type...> SavedTuple;
771     SavedTuple Saved{saveValueInCond(A)...};
772 
773     typedef EHScopeStack::ConditionalCleanup<T, As...> CleanupType;
774     EHStack.pushCleanupTuple<CleanupType>(kind, Saved);
775     initFullExprCleanup();
776   }
777 
778   /// Queue a cleanup to be pushed after finishing the current full-expression,
779   /// potentially with an active flag.
780   template <class T, class... As>
781   void pushCleanupAfterFullExpr(CleanupKind Kind, As... A) {
782     if (!isInConditionalBranch())
783       return pushCleanupAfterFullExprWithActiveFlag<T>(Kind, Address::invalid(),
784                                                        A...);
785 
786     Address ActiveFlag = createCleanupActiveFlag();
787     assert(!DominatingValue<Address>::needsSaving(ActiveFlag) &&
788            "cleanup active flag should never need saving");
789 
790     typedef std::tuple<typename DominatingValue<As>::saved_type...> SavedTuple;
791     SavedTuple Saved{saveValueInCond(A)...};
792 
793     typedef EHScopeStack::ConditionalCleanup<T, As...> CleanupType;
794     pushCleanupAfterFullExprWithActiveFlag<CleanupType>(Kind, ActiveFlag, Saved);
795   }
796 
797   template <class T, class... As>
798   void pushCleanupAfterFullExprWithActiveFlag(CleanupKind Kind,
799                                               Address ActiveFlag, As... A) {
800     LifetimeExtendedCleanupHeader Header = {sizeof(T), Kind,
801                                             ActiveFlag.isValid()};
802 
803     size_t OldSize = LifetimeExtendedCleanupStack.size();
804     LifetimeExtendedCleanupStack.resize(
805         LifetimeExtendedCleanupStack.size() + sizeof(Header) + Header.Size +
806         (Header.IsConditional ? sizeof(ActiveFlag) : 0));
807 
808     static_assert(sizeof(Header) % alignof(T) == 0,
809                   "Cleanup will be allocated on misaligned address");
810     char *Buffer = &LifetimeExtendedCleanupStack[OldSize];
811     new (Buffer) LifetimeExtendedCleanupHeader(Header);
812     new (Buffer + sizeof(Header)) T(A...);
813     if (Header.IsConditional)
814       new (Buffer + sizeof(Header) + sizeof(T)) Address(ActiveFlag);
815   }
816 
817   /// Set up the last cleanup that was pushed as a conditional
818   /// full-expression cleanup.
819   void initFullExprCleanup() {
820     initFullExprCleanupWithFlag(createCleanupActiveFlag());
821   }
822 
823   void initFullExprCleanupWithFlag(Address ActiveFlag);
824   Address createCleanupActiveFlag();
825 
826   /// PushDestructorCleanup - Push a cleanup to call the
827   /// complete-object destructor of an object of the given type at the
828   /// given address.  Does nothing if T is not a C++ class type with a
829   /// non-trivial destructor.
830   void PushDestructorCleanup(QualType T, Address Addr);
831 
832   /// PushDestructorCleanup - Push a cleanup to call the
833   /// complete-object variant of the given destructor on the object at
834   /// the given address.
835   void PushDestructorCleanup(const CXXDestructorDecl *Dtor, QualType T,
836                              Address Addr);
837 
838   /// PopCleanupBlock - Will pop the cleanup entry on the stack and
839   /// process all branch fixups.
840   void PopCleanupBlock(bool FallThroughIsBranchThrough = false);
841 
842   /// DeactivateCleanupBlock - Deactivates the given cleanup block.
843   /// The block cannot be reactivated.  Pops it if it's the top of the
844   /// stack.
845   ///
846   /// \param DominatingIP - An instruction which is known to
847   ///   dominate the current IP (if set) and which lies along
848   ///   all paths of execution between the current IP and the
849   ///   the point at which the cleanup comes into scope.
850   void DeactivateCleanupBlock(EHScopeStack::stable_iterator Cleanup,
851                               llvm::Instruction *DominatingIP);
852 
853   /// ActivateCleanupBlock - Activates an initially-inactive cleanup.
854   /// Cannot be used to resurrect a deactivated cleanup.
855   ///
856   /// \param DominatingIP - An instruction which is known to
857   ///   dominate the current IP (if set) and which lies along
858   ///   all paths of execution between the current IP and the
859   ///   the point at which the cleanup comes into scope.
860   void ActivateCleanupBlock(EHScopeStack::stable_iterator Cleanup,
861                             llvm::Instruction *DominatingIP);
862 
863   /// Enters a new scope for capturing cleanups, all of which
864   /// will be executed once the scope is exited.
865   class RunCleanupsScope {
866     EHScopeStack::stable_iterator CleanupStackDepth, OldCleanupScopeDepth;
867     size_t LifetimeExtendedCleanupStackSize;
868     bool OldDidCallStackSave;
869   protected:
870     bool PerformCleanup;
871   private:
872 
873     RunCleanupsScope(const RunCleanupsScope &) = delete;
874     void operator=(const RunCleanupsScope &) = delete;
875 
876   protected:
877     CodeGenFunction& CGF;
878 
879   public:
880     /// Enter a new cleanup scope.
881     explicit RunCleanupsScope(CodeGenFunction &CGF)
882       : PerformCleanup(true), CGF(CGF)
883     {
884       CleanupStackDepth = CGF.EHStack.stable_begin();
885       LifetimeExtendedCleanupStackSize =
886           CGF.LifetimeExtendedCleanupStack.size();
887       OldDidCallStackSave = CGF.DidCallStackSave;
888       CGF.DidCallStackSave = false;
889       OldCleanupScopeDepth = CGF.CurrentCleanupScopeDepth;
890       CGF.CurrentCleanupScopeDepth = CleanupStackDepth;
891     }
892 
893     /// Exit this cleanup scope, emitting any accumulated cleanups.
894     ~RunCleanupsScope() {
895       if (PerformCleanup)
896         ForceCleanup();
897     }
898 
899     /// Determine whether this scope requires any cleanups.
900     bool requiresCleanups() const {
901       return CGF.EHStack.stable_begin() != CleanupStackDepth;
902     }
903 
904     /// Force the emission of cleanups now, instead of waiting
905     /// until this object is destroyed.
906     /// \param ValuesToReload - A list of values that need to be available at
907     /// the insertion point after cleanup emission. If cleanup emission created
908     /// a shared cleanup block, these value pointers will be rewritten.
909     /// Otherwise, they not will be modified.
910     void ForceCleanup(std::initializer_list<llvm::Value**> ValuesToReload = {}) {
911       assert(PerformCleanup && "Already forced cleanup");
912       CGF.DidCallStackSave = OldDidCallStackSave;
913       CGF.PopCleanupBlocks(CleanupStackDepth, LifetimeExtendedCleanupStackSize,
914                            ValuesToReload);
915       PerformCleanup = false;
916       CGF.CurrentCleanupScopeDepth = OldCleanupScopeDepth;
917     }
918   };
919 
920   // Cleanup stack depth of the RunCleanupsScope that was pushed most recently.
921   EHScopeStack::stable_iterator CurrentCleanupScopeDepth =
922       EHScopeStack::stable_end();
923 
924   class LexicalScope : public RunCleanupsScope {
925     SourceRange Range;
926     SmallVector<const LabelDecl*, 4> Labels;
927     LexicalScope *ParentScope;
928 
929     LexicalScope(const LexicalScope &) = delete;
930     void operator=(const LexicalScope &) = delete;
931 
932   public:
933     /// Enter a new cleanup scope.
934     explicit LexicalScope(CodeGenFunction &CGF, SourceRange Range)
935       : RunCleanupsScope(CGF), Range(Range), ParentScope(CGF.CurLexicalScope) {
936       CGF.CurLexicalScope = this;
937       if (CGDebugInfo *DI = CGF.getDebugInfo())
938         DI->EmitLexicalBlockStart(CGF.Builder, Range.getBegin());
939     }
940 
941     void addLabel(const LabelDecl *label) {
942       assert(PerformCleanup && "adding label to dead scope?");
943       Labels.push_back(label);
944     }
945 
946     /// Exit this cleanup scope, emitting any accumulated
947     /// cleanups.
948     ~LexicalScope() {
949       if (CGDebugInfo *DI = CGF.getDebugInfo())
950         DI->EmitLexicalBlockEnd(CGF.Builder, Range.getEnd());
951 
952       // If we should perform a cleanup, force them now.  Note that
953       // this ends the cleanup scope before rescoping any labels.
954       if (PerformCleanup) {
955         ApplyDebugLocation DL(CGF, Range.getEnd());
956         ForceCleanup();
957       }
958     }
959 
960     /// Force the emission of cleanups now, instead of waiting
961     /// until this object is destroyed.
962     void ForceCleanup() {
963       CGF.CurLexicalScope = ParentScope;
964       RunCleanupsScope::ForceCleanup();
965 
966       if (!Labels.empty())
967         rescopeLabels();
968     }
969 
970     bool hasLabels() const {
971       return !Labels.empty();
972     }
973 
974     void rescopeLabels();
975   };
976 
977   typedef llvm::DenseMap<const Decl *, Address> DeclMapTy;
978 
979   /// The class used to assign some variables some temporarily addresses.
980   class OMPMapVars {
981     DeclMapTy SavedLocals;
982     DeclMapTy SavedTempAddresses;
983     OMPMapVars(const OMPMapVars &) = delete;
984     void operator=(const OMPMapVars &) = delete;
985 
986   public:
987     explicit OMPMapVars() = default;
988     ~OMPMapVars() {
989       assert(SavedLocals.empty() && "Did not restored original addresses.");
990     };
991 
992     /// Sets the address of the variable \p LocalVD to be \p TempAddr in
993     /// function \p CGF.
994     /// \return true if at least one variable was set already, false otherwise.
995     bool setVarAddr(CodeGenFunction &CGF, const VarDecl *LocalVD,
996                     Address TempAddr) {
997       LocalVD = LocalVD->getCanonicalDecl();
998       // Only save it once.
999       if (SavedLocals.count(LocalVD)) return false;
1000 
1001       // Copy the existing local entry to SavedLocals.
1002       auto it = CGF.LocalDeclMap.find(LocalVD);
1003       if (it != CGF.LocalDeclMap.end())
1004         SavedLocals.try_emplace(LocalVD, it->second);
1005       else
1006         SavedLocals.try_emplace(LocalVD, Address::invalid());
1007 
1008       // Generate the private entry.
1009       QualType VarTy = LocalVD->getType();
1010       if (VarTy->isReferenceType()) {
1011         Address Temp = CGF.CreateMemTemp(VarTy);
1012         CGF.Builder.CreateStore(TempAddr.getPointer(), Temp);
1013         TempAddr = Temp;
1014       }
1015       SavedTempAddresses.try_emplace(LocalVD, TempAddr);
1016 
1017       return true;
1018     }
1019 
1020     /// Applies new addresses to the list of the variables.
1021     /// \return true if at least one variable is using new address, false
1022     /// otherwise.
1023     bool apply(CodeGenFunction &CGF) {
1024       copyInto(SavedTempAddresses, CGF.LocalDeclMap);
1025       SavedTempAddresses.clear();
1026       return !SavedLocals.empty();
1027     }
1028 
1029     /// Restores original addresses of the variables.
1030     void restore(CodeGenFunction &CGF) {
1031       if (!SavedLocals.empty()) {
1032         copyInto(SavedLocals, CGF.LocalDeclMap);
1033         SavedLocals.clear();
1034       }
1035     }
1036 
1037   private:
1038     /// Copy all the entries in the source map over the corresponding
1039     /// entries in the destination, which must exist.
1040     static void copyInto(const DeclMapTy &Src, DeclMapTy &Dest) {
1041       for (auto &Pair : Src) {
1042         if (!Pair.second.isValid()) {
1043           Dest.erase(Pair.first);
1044           continue;
1045         }
1046 
1047         auto I = Dest.find(Pair.first);
1048         if (I != Dest.end())
1049           I->second = Pair.second;
1050         else
1051           Dest.insert(Pair);
1052       }
1053     }
1054   };
1055 
1056   /// The scope used to remap some variables as private in the OpenMP loop body
1057   /// (or other captured region emitted without outlining), and to restore old
1058   /// vars back on exit.
1059   class OMPPrivateScope : public RunCleanupsScope {
1060     OMPMapVars MappedVars;
1061     OMPPrivateScope(const OMPPrivateScope &) = delete;
1062     void operator=(const OMPPrivateScope &) = delete;
1063 
1064   public:
1065     /// Enter a new OpenMP private scope.
1066     explicit OMPPrivateScope(CodeGenFunction &CGF) : RunCleanupsScope(CGF) {}
1067 
1068     /// Registers \p LocalVD variable as a private and apply \p PrivateGen
1069     /// function for it to generate corresponding private variable. \p
1070     /// PrivateGen returns an address of the generated private variable.
1071     /// \return true if the variable is registered as private, false if it has
1072     /// been privatized already.
1073     bool addPrivate(const VarDecl *LocalVD,
1074                     const llvm::function_ref<Address()> PrivateGen) {
1075       assert(PerformCleanup && "adding private to dead scope");
1076       return MappedVars.setVarAddr(CGF, LocalVD, PrivateGen());
1077     }
1078 
1079     /// Privatizes local variables previously registered as private.
1080     /// Registration is separate from the actual privatization to allow
1081     /// initializers use values of the original variables, not the private one.
1082     /// This is important, for example, if the private variable is a class
1083     /// variable initialized by a constructor that references other private
1084     /// variables. But at initialization original variables must be used, not
1085     /// private copies.
1086     /// \return true if at least one variable was privatized, false otherwise.
1087     bool Privatize() { return MappedVars.apply(CGF); }
1088 
1089     void ForceCleanup() {
1090       RunCleanupsScope::ForceCleanup();
1091       MappedVars.restore(CGF);
1092     }
1093 
1094     /// Exit scope - all the mapped variables are restored.
1095     ~OMPPrivateScope() {
1096       if (PerformCleanup)
1097         ForceCleanup();
1098     }
1099 
1100     /// Checks if the global variable is captured in current function.
1101     bool isGlobalVarCaptured(const VarDecl *VD) const {
1102       VD = VD->getCanonicalDecl();
1103       return !VD->isLocalVarDeclOrParm() && CGF.LocalDeclMap.count(VD) > 0;
1104     }
1105   };
1106 
1107   /// Save/restore original map of previously emitted local vars in case when we
1108   /// need to duplicate emission of the same code several times in the same
1109   /// function for OpenMP code.
1110   class OMPLocalDeclMapRAII {
1111     CodeGenFunction &CGF;
1112     DeclMapTy SavedMap;
1113 
1114   public:
1115     OMPLocalDeclMapRAII(CodeGenFunction &CGF)
1116         : CGF(CGF), SavedMap(CGF.LocalDeclMap) {}
1117     ~OMPLocalDeclMapRAII() { SavedMap.swap(CGF.LocalDeclMap); }
1118   };
1119 
1120   /// Takes the old cleanup stack size and emits the cleanup blocks
1121   /// that have been added.
1122   void
1123   PopCleanupBlocks(EHScopeStack::stable_iterator OldCleanupStackSize,
1124                    std::initializer_list<llvm::Value **> ValuesToReload = {});
1125 
1126   /// Takes the old cleanup stack size and emits the cleanup blocks
1127   /// that have been added, then adds all lifetime-extended cleanups from
1128   /// the given position to the stack.
1129   void
1130   PopCleanupBlocks(EHScopeStack::stable_iterator OldCleanupStackSize,
1131                    size_t OldLifetimeExtendedStackSize,
1132                    std::initializer_list<llvm::Value **> ValuesToReload = {});
1133 
1134   void ResolveBranchFixups(llvm::BasicBlock *Target);
1135 
1136   /// The given basic block lies in the current EH scope, but may be a
1137   /// target of a potentially scope-crossing jump; get a stable handle
1138   /// to which we can perform this jump later.
1139   JumpDest getJumpDestInCurrentScope(llvm::BasicBlock *Target) {
1140     return JumpDest(Target,
1141                     EHStack.getInnermostNormalCleanup(),
1142                     NextCleanupDestIndex++);
1143   }
1144 
1145   /// The given basic block lies in the current EH scope, but may be a
1146   /// target of a potentially scope-crossing jump; get a stable handle
1147   /// to which we can perform this jump later.
1148   JumpDest getJumpDestInCurrentScope(StringRef Name = StringRef()) {
1149     return getJumpDestInCurrentScope(createBasicBlock(Name));
1150   }
1151 
1152   /// EmitBranchThroughCleanup - Emit a branch from the current insert
1153   /// block through the normal cleanup handling code (if any) and then
1154   /// on to \arg Dest.
1155   void EmitBranchThroughCleanup(JumpDest Dest);
1156 
1157   /// isObviouslyBranchWithoutCleanups - Return true if a branch to the
1158   /// specified destination obviously has no cleanups to run.  'false' is always
1159   /// a conservatively correct answer for this method.
1160   bool isObviouslyBranchWithoutCleanups(JumpDest Dest) const;
1161 
1162   /// popCatchScope - Pops the catch scope at the top of the EHScope
1163   /// stack, emitting any required code (other than the catch handlers
1164   /// themselves).
1165   void popCatchScope();
1166 
1167   llvm::BasicBlock *getEHResumeBlock(bool isCleanup);
1168   llvm::BasicBlock *getEHDispatchBlock(EHScopeStack::stable_iterator scope);
1169   llvm::BasicBlock *
1170   getFuncletEHDispatchBlock(EHScopeStack::stable_iterator scope);
1171 
1172   /// An object to manage conditionally-evaluated expressions.
1173   class ConditionalEvaluation {
1174     llvm::BasicBlock *StartBB;
1175 
1176   public:
1177     ConditionalEvaluation(CodeGenFunction &CGF)
1178       : StartBB(CGF.Builder.GetInsertBlock()) {}
1179 
1180     void begin(CodeGenFunction &CGF) {
1181       assert(CGF.OutermostConditional != this);
1182       if (!CGF.OutermostConditional)
1183         CGF.OutermostConditional = this;
1184     }
1185 
1186     void end(CodeGenFunction &CGF) {
1187       assert(CGF.OutermostConditional != nullptr);
1188       if (CGF.OutermostConditional == this)
1189         CGF.OutermostConditional = nullptr;
1190     }
1191 
1192     /// Returns a block which will be executed prior to each
1193     /// evaluation of the conditional code.
1194     llvm::BasicBlock *getStartingBlock() const {
1195       return StartBB;
1196     }
1197   };
1198 
1199   /// isInConditionalBranch - Return true if we're currently emitting
1200   /// one branch or the other of a conditional expression.
1201   bool isInConditionalBranch() const { return OutermostConditional != nullptr; }
1202 
1203   void setBeforeOutermostConditional(llvm::Value *value, Address addr) {
1204     assert(isInConditionalBranch());
1205     llvm::BasicBlock *block = OutermostConditional->getStartingBlock();
1206     auto store = new llvm::StoreInst(value, addr.getPointer(), &block->back());
1207     store->setAlignment(addr.getAlignment().getAsAlign());
1208   }
1209 
1210   /// An RAII object to record that we're evaluating a statement
1211   /// expression.
1212   class StmtExprEvaluation {
1213     CodeGenFunction &CGF;
1214 
1215     /// We have to save the outermost conditional: cleanups in a
1216     /// statement expression aren't conditional just because the
1217     /// StmtExpr is.
1218     ConditionalEvaluation *SavedOutermostConditional;
1219 
1220   public:
1221     StmtExprEvaluation(CodeGenFunction &CGF)
1222       : CGF(CGF), SavedOutermostConditional(CGF.OutermostConditional) {
1223       CGF.OutermostConditional = nullptr;
1224     }
1225 
1226     ~StmtExprEvaluation() {
1227       CGF.OutermostConditional = SavedOutermostConditional;
1228       CGF.EnsureInsertPoint();
1229     }
1230   };
1231 
1232   /// An object which temporarily prevents a value from being
1233   /// destroyed by aggressive peephole optimizations that assume that
1234   /// all uses of a value have been realized in the IR.
1235   class PeepholeProtection {
1236     llvm::Instruction *Inst;
1237     friend class CodeGenFunction;
1238 
1239   public:
1240     PeepholeProtection() : Inst(nullptr) {}
1241   };
1242 
1243   /// A non-RAII class containing all the information about a bound
1244   /// opaque value.  OpaqueValueMapping, below, is a RAII wrapper for
1245   /// this which makes individual mappings very simple; using this
1246   /// class directly is useful when you have a variable number of
1247   /// opaque values or don't want the RAII functionality for some
1248   /// reason.
1249   class OpaqueValueMappingData {
1250     const OpaqueValueExpr *OpaqueValue;
1251     bool BoundLValue;
1252     CodeGenFunction::PeepholeProtection Protection;
1253 
1254     OpaqueValueMappingData(const OpaqueValueExpr *ov,
1255                            bool boundLValue)
1256       : OpaqueValue(ov), BoundLValue(boundLValue) {}
1257   public:
1258     OpaqueValueMappingData() : OpaqueValue(nullptr) {}
1259 
1260     static bool shouldBindAsLValue(const Expr *expr) {
1261       // gl-values should be bound as l-values for obvious reasons.
1262       // Records should be bound as l-values because IR generation
1263       // always keeps them in memory.  Expressions of function type
1264       // act exactly like l-values but are formally required to be
1265       // r-values in C.
1266       return expr->isGLValue() ||
1267              expr->getType()->isFunctionType() ||
1268              hasAggregateEvaluationKind(expr->getType());
1269     }
1270 
1271     static OpaqueValueMappingData bind(CodeGenFunction &CGF,
1272                                        const OpaqueValueExpr *ov,
1273                                        const Expr *e) {
1274       if (shouldBindAsLValue(ov))
1275         return bind(CGF, ov, CGF.EmitLValue(e));
1276       return bind(CGF, ov, CGF.EmitAnyExpr(e));
1277     }
1278 
1279     static OpaqueValueMappingData bind(CodeGenFunction &CGF,
1280                                        const OpaqueValueExpr *ov,
1281                                        const LValue &lv) {
1282       assert(shouldBindAsLValue(ov));
1283       CGF.OpaqueLValues.insert(std::make_pair(ov, lv));
1284       return OpaqueValueMappingData(ov, true);
1285     }
1286 
1287     static OpaqueValueMappingData bind(CodeGenFunction &CGF,
1288                                        const OpaqueValueExpr *ov,
1289                                        const RValue &rv) {
1290       assert(!shouldBindAsLValue(ov));
1291       CGF.OpaqueRValues.insert(std::make_pair(ov, rv));
1292 
1293       OpaqueValueMappingData data(ov, false);
1294 
1295       // Work around an extremely aggressive peephole optimization in
1296       // EmitScalarConversion which assumes that all other uses of a
1297       // value are extant.
1298       data.Protection = CGF.protectFromPeepholes(rv);
1299 
1300       return data;
1301     }
1302 
1303     bool isValid() const { return OpaqueValue != nullptr; }
1304     void clear() { OpaqueValue = nullptr; }
1305 
1306     void unbind(CodeGenFunction &CGF) {
1307       assert(OpaqueValue && "no data to unbind!");
1308 
1309       if (BoundLValue) {
1310         CGF.OpaqueLValues.erase(OpaqueValue);
1311       } else {
1312         CGF.OpaqueRValues.erase(OpaqueValue);
1313         CGF.unprotectFromPeepholes(Protection);
1314       }
1315     }
1316   };
1317 
1318   /// An RAII object to set (and then clear) a mapping for an OpaqueValueExpr.
1319   class OpaqueValueMapping {
1320     CodeGenFunction &CGF;
1321     OpaqueValueMappingData Data;
1322 
1323   public:
1324     static bool shouldBindAsLValue(const Expr *expr) {
1325       return OpaqueValueMappingData::shouldBindAsLValue(expr);
1326     }
1327 
1328     /// Build the opaque value mapping for the given conditional
1329     /// operator if it's the GNU ?: extension.  This is a common
1330     /// enough pattern that the convenience operator is really
1331     /// helpful.
1332     ///
1333     OpaqueValueMapping(CodeGenFunction &CGF,
1334                        const AbstractConditionalOperator *op) : CGF(CGF) {
1335       if (isa<ConditionalOperator>(op))
1336         // Leave Data empty.
1337         return;
1338 
1339       const BinaryConditionalOperator *e = cast<BinaryConditionalOperator>(op);
1340       Data = OpaqueValueMappingData::bind(CGF, e->getOpaqueValue(),
1341                                           e->getCommon());
1342     }
1343 
1344     /// Build the opaque value mapping for an OpaqueValueExpr whose source
1345     /// expression is set to the expression the OVE represents.
1346     OpaqueValueMapping(CodeGenFunction &CGF, const OpaqueValueExpr *OV)
1347         : CGF(CGF) {
1348       if (OV) {
1349         assert(OV->getSourceExpr() && "wrong form of OpaqueValueMapping used "
1350                                       "for OVE with no source expression");
1351         Data = OpaqueValueMappingData::bind(CGF, OV, OV->getSourceExpr());
1352       }
1353     }
1354 
1355     OpaqueValueMapping(CodeGenFunction &CGF,
1356                        const OpaqueValueExpr *opaqueValue,
1357                        LValue lvalue)
1358       : CGF(CGF), Data(OpaqueValueMappingData::bind(CGF, opaqueValue, lvalue)) {
1359     }
1360 
1361     OpaqueValueMapping(CodeGenFunction &CGF,
1362                        const OpaqueValueExpr *opaqueValue,
1363                        RValue rvalue)
1364       : CGF(CGF), Data(OpaqueValueMappingData::bind(CGF, opaqueValue, rvalue)) {
1365     }
1366 
1367     void pop() {
1368       Data.unbind(CGF);
1369       Data.clear();
1370     }
1371 
1372     ~OpaqueValueMapping() {
1373       if (Data.isValid()) Data.unbind(CGF);
1374     }
1375   };
1376 
1377 private:
1378   CGDebugInfo *DebugInfo;
1379   /// Used to create unique names for artificial VLA size debug info variables.
1380   unsigned VLAExprCounter = 0;
1381   bool DisableDebugInfo = false;
1382 
1383   /// DidCallStackSave - Whether llvm.stacksave has been called. Used to avoid
1384   /// calling llvm.stacksave for multiple VLAs in the same scope.
1385   bool DidCallStackSave = false;
1386 
1387   /// IndirectBranch - The first time an indirect goto is seen we create a block
1388   /// with an indirect branch.  Every time we see the address of a label taken,
1389   /// we add the label to the indirect goto.  Every subsequent indirect goto is
1390   /// codegen'd as a jump to the IndirectBranch's basic block.
1391   llvm::IndirectBrInst *IndirectBranch = nullptr;
1392 
1393   /// LocalDeclMap - This keeps track of the LLVM allocas or globals for local C
1394   /// decls.
1395   DeclMapTy LocalDeclMap;
1396 
1397   // Keep track of the cleanups for callee-destructed parameters pushed to the
1398   // cleanup stack so that they can be deactivated later.
1399   llvm::DenseMap<const ParmVarDecl *, EHScopeStack::stable_iterator>
1400       CalleeDestructedParamCleanups;
1401 
1402   /// SizeArguments - If a ParmVarDecl had the pass_object_size attribute, this
1403   /// will contain a mapping from said ParmVarDecl to its implicit "object_size"
1404   /// parameter.
1405   llvm::SmallDenseMap<const ParmVarDecl *, const ImplicitParamDecl *, 2>
1406       SizeArguments;
1407 
1408   /// Track escaped local variables with auto storage. Used during SEH
1409   /// outlining to produce a call to llvm.localescape.
1410   llvm::DenseMap<llvm::AllocaInst *, int> EscapedLocals;
1411 
1412   /// LabelMap - This keeps track of the LLVM basic block for each C label.
1413   llvm::DenseMap<const LabelDecl*, JumpDest> LabelMap;
1414 
1415   // BreakContinueStack - This keeps track of where break and continue
1416   // statements should jump to.
1417   struct BreakContinue {
1418     BreakContinue(JumpDest Break, JumpDest Continue)
1419       : BreakBlock(Break), ContinueBlock(Continue) {}
1420 
1421     JumpDest BreakBlock;
1422     JumpDest ContinueBlock;
1423   };
1424   SmallVector<BreakContinue, 8> BreakContinueStack;
1425 
1426   /// Handles cancellation exit points in OpenMP-related constructs.
1427   class OpenMPCancelExitStack {
1428     /// Tracks cancellation exit point and join point for cancel-related exit
1429     /// and normal exit.
1430     struct CancelExit {
1431       CancelExit() = default;
1432       CancelExit(OpenMPDirectiveKind Kind, JumpDest ExitBlock,
1433                  JumpDest ContBlock)
1434           : Kind(Kind), ExitBlock(ExitBlock), ContBlock(ContBlock) {}
1435       OpenMPDirectiveKind Kind = llvm::omp::OMPD_unknown;
1436       /// true if the exit block has been emitted already by the special
1437       /// emitExit() call, false if the default codegen is used.
1438       bool HasBeenEmitted = false;
1439       JumpDest ExitBlock;
1440       JumpDest ContBlock;
1441     };
1442 
1443     SmallVector<CancelExit, 8> Stack;
1444 
1445   public:
1446     OpenMPCancelExitStack() : Stack(1) {}
1447     ~OpenMPCancelExitStack() = default;
1448     /// Fetches the exit block for the current OpenMP construct.
1449     JumpDest getExitBlock() const { return Stack.back().ExitBlock; }
1450     /// Emits exit block with special codegen procedure specific for the related
1451     /// OpenMP construct + emits code for normal construct cleanup.
1452     void emitExit(CodeGenFunction &CGF, OpenMPDirectiveKind Kind,
1453                   const llvm::function_ref<void(CodeGenFunction &)> CodeGen) {
1454       if (Stack.back().Kind == Kind && getExitBlock().isValid()) {
1455         assert(CGF.getOMPCancelDestination(Kind).isValid());
1456         assert(CGF.HaveInsertPoint());
1457         assert(!Stack.back().HasBeenEmitted);
1458         auto IP = CGF.Builder.saveAndClearIP();
1459         CGF.EmitBlock(Stack.back().ExitBlock.getBlock());
1460         CodeGen(CGF);
1461         CGF.EmitBranch(Stack.back().ContBlock.getBlock());
1462         CGF.Builder.restoreIP(IP);
1463         Stack.back().HasBeenEmitted = true;
1464       }
1465       CodeGen(CGF);
1466     }
1467     /// Enter the cancel supporting \a Kind construct.
1468     /// \param Kind OpenMP directive that supports cancel constructs.
1469     /// \param HasCancel true, if the construct has inner cancel directive,
1470     /// false otherwise.
1471     void enter(CodeGenFunction &CGF, OpenMPDirectiveKind Kind, bool HasCancel) {
1472       Stack.push_back({Kind,
1473                        HasCancel ? CGF.getJumpDestInCurrentScope("cancel.exit")
1474                                  : JumpDest(),
1475                        HasCancel ? CGF.getJumpDestInCurrentScope("cancel.cont")
1476                                  : JumpDest()});
1477     }
1478     /// Emits default exit point for the cancel construct (if the special one
1479     /// has not be used) + join point for cancel/normal exits.
1480     void exit(CodeGenFunction &CGF) {
1481       if (getExitBlock().isValid()) {
1482         assert(CGF.getOMPCancelDestination(Stack.back().Kind).isValid());
1483         bool HaveIP = CGF.HaveInsertPoint();
1484         if (!Stack.back().HasBeenEmitted) {
1485           if (HaveIP)
1486             CGF.EmitBranchThroughCleanup(Stack.back().ContBlock);
1487           CGF.EmitBlock(Stack.back().ExitBlock.getBlock());
1488           CGF.EmitBranchThroughCleanup(Stack.back().ContBlock);
1489         }
1490         CGF.EmitBlock(Stack.back().ContBlock.getBlock());
1491         if (!HaveIP) {
1492           CGF.Builder.CreateUnreachable();
1493           CGF.Builder.ClearInsertionPoint();
1494         }
1495       }
1496       Stack.pop_back();
1497     }
1498   };
1499   OpenMPCancelExitStack OMPCancelStack;
1500 
1501   /// Lower the Likelihood knowledge about the \p Cond via llvm.expect intrin.
1502   llvm::Value *emitCondLikelihoodViaExpectIntrinsic(llvm::Value *Cond,
1503                                                     Stmt::Likelihood LH);
1504 
1505   CodeGenPGO PGO;
1506 
1507   /// Calculate branch weights appropriate for PGO data
1508   llvm::MDNode *createProfileWeights(uint64_t TrueCount,
1509                                      uint64_t FalseCount) const;
1510   llvm::MDNode *createProfileWeights(ArrayRef<uint64_t> Weights) const;
1511   llvm::MDNode *createProfileWeightsForLoop(const Stmt *Cond,
1512                                             uint64_t LoopCount) const;
1513 
1514 public:
1515   /// Increment the profiler's counter for the given statement by \p StepV.
1516   /// If \p StepV is null, the default increment is 1.
1517   void incrementProfileCounter(const Stmt *S, llvm::Value *StepV = nullptr) {
1518     if (CGM.getCodeGenOpts().hasProfileClangInstr() &&
1519         !CurFn->hasFnAttribute(llvm::Attribute::NoProfile))
1520       PGO.emitCounterIncrement(Builder, S, StepV);
1521     PGO.setCurrentStmt(S);
1522   }
1523 
1524   /// Get the profiler's count for the given statement.
1525   uint64_t getProfileCount(const Stmt *S) {
1526     Optional<uint64_t> Count = PGO.getStmtCount(S);
1527     if (!Count.hasValue())
1528       return 0;
1529     return *Count;
1530   }
1531 
1532   /// Set the profiler's current count.
1533   void setCurrentProfileCount(uint64_t Count) {
1534     PGO.setCurrentRegionCount(Count);
1535   }
1536 
1537   /// Get the profiler's current count. This is generally the count for the most
1538   /// recently incremented counter.
1539   uint64_t getCurrentProfileCount() {
1540     return PGO.getCurrentRegionCount();
1541   }
1542 
1543 private:
1544 
1545   /// SwitchInsn - This is nearest current switch instruction. It is null if
1546   /// current context is not in a switch.
1547   llvm::SwitchInst *SwitchInsn = nullptr;
1548   /// The branch weights of SwitchInsn when doing instrumentation based PGO.
1549   SmallVector<uint64_t, 16> *SwitchWeights = nullptr;
1550 
1551   /// The likelihood attributes of the SwitchCase.
1552   SmallVector<Stmt::Likelihood, 16> *SwitchLikelihood = nullptr;
1553 
1554   /// CaseRangeBlock - This block holds if condition check for last case
1555   /// statement range in current switch instruction.
1556   llvm::BasicBlock *CaseRangeBlock = nullptr;
1557 
1558   /// OpaqueLValues - Keeps track of the current set of opaque value
1559   /// expressions.
1560   llvm::DenseMap<const OpaqueValueExpr *, LValue> OpaqueLValues;
1561   llvm::DenseMap<const OpaqueValueExpr *, RValue> OpaqueRValues;
1562 
1563   // VLASizeMap - This keeps track of the associated size for each VLA type.
1564   // We track this by the size expression rather than the type itself because
1565   // in certain situations, like a const qualifier applied to an VLA typedef,
1566   // multiple VLA types can share the same size expression.
1567   // FIXME: Maybe this could be a stack of maps that is pushed/popped as we
1568   // enter/leave scopes.
1569   llvm::DenseMap<const Expr*, llvm::Value*> VLASizeMap;
1570 
1571   /// A block containing a single 'unreachable' instruction.  Created
1572   /// lazily by getUnreachableBlock().
1573   llvm::BasicBlock *UnreachableBlock = nullptr;
1574 
1575   /// Counts of the number return expressions in the function.
1576   unsigned NumReturnExprs = 0;
1577 
1578   /// Count the number of simple (constant) return expressions in the function.
1579   unsigned NumSimpleReturnExprs = 0;
1580 
1581   /// The last regular (non-return) debug location (breakpoint) in the function.
1582   SourceLocation LastStopPoint;
1583 
1584 public:
1585   /// Source location information about the default argument or member
1586   /// initializer expression we're evaluating, if any.
1587   CurrentSourceLocExprScope CurSourceLocExprScope;
1588   using SourceLocExprScopeGuard =
1589       CurrentSourceLocExprScope::SourceLocExprScopeGuard;
1590 
1591   /// A scope within which we are constructing the fields of an object which
1592   /// might use a CXXDefaultInitExpr. This stashes away a 'this' value to use
1593   /// if we need to evaluate a CXXDefaultInitExpr within the evaluation.
1594   class FieldConstructionScope {
1595   public:
1596     FieldConstructionScope(CodeGenFunction &CGF, Address This)
1597         : CGF(CGF), OldCXXDefaultInitExprThis(CGF.CXXDefaultInitExprThis) {
1598       CGF.CXXDefaultInitExprThis = This;
1599     }
1600     ~FieldConstructionScope() {
1601       CGF.CXXDefaultInitExprThis = OldCXXDefaultInitExprThis;
1602     }
1603 
1604   private:
1605     CodeGenFunction &CGF;
1606     Address OldCXXDefaultInitExprThis;
1607   };
1608 
1609   /// The scope of a CXXDefaultInitExpr. Within this scope, the value of 'this'
1610   /// is overridden to be the object under construction.
1611   class CXXDefaultInitExprScope  {
1612   public:
1613     CXXDefaultInitExprScope(CodeGenFunction &CGF, const CXXDefaultInitExpr *E)
1614         : CGF(CGF), OldCXXThisValue(CGF.CXXThisValue),
1615           OldCXXThisAlignment(CGF.CXXThisAlignment),
1616           SourceLocScope(E, CGF.CurSourceLocExprScope) {
1617       CGF.CXXThisValue = CGF.CXXDefaultInitExprThis.getPointer();
1618       CGF.CXXThisAlignment = CGF.CXXDefaultInitExprThis.getAlignment();
1619     }
1620     ~CXXDefaultInitExprScope() {
1621       CGF.CXXThisValue = OldCXXThisValue;
1622       CGF.CXXThisAlignment = OldCXXThisAlignment;
1623     }
1624 
1625   public:
1626     CodeGenFunction &CGF;
1627     llvm::Value *OldCXXThisValue;
1628     CharUnits OldCXXThisAlignment;
1629     SourceLocExprScopeGuard SourceLocScope;
1630   };
1631 
1632   struct CXXDefaultArgExprScope : SourceLocExprScopeGuard {
1633     CXXDefaultArgExprScope(CodeGenFunction &CGF, const CXXDefaultArgExpr *E)
1634         : SourceLocExprScopeGuard(E, CGF.CurSourceLocExprScope) {}
1635   };
1636 
1637   /// The scope of an ArrayInitLoopExpr. Within this scope, the value of the
1638   /// current loop index is overridden.
1639   class ArrayInitLoopExprScope {
1640   public:
1641     ArrayInitLoopExprScope(CodeGenFunction &CGF, llvm::Value *Index)
1642       : CGF(CGF), OldArrayInitIndex(CGF.ArrayInitIndex) {
1643       CGF.ArrayInitIndex = Index;
1644     }
1645     ~ArrayInitLoopExprScope() {
1646       CGF.ArrayInitIndex = OldArrayInitIndex;
1647     }
1648 
1649   private:
1650     CodeGenFunction &CGF;
1651     llvm::Value *OldArrayInitIndex;
1652   };
1653 
1654   class InlinedInheritingConstructorScope {
1655   public:
1656     InlinedInheritingConstructorScope(CodeGenFunction &CGF, GlobalDecl GD)
1657         : CGF(CGF), OldCurGD(CGF.CurGD), OldCurFuncDecl(CGF.CurFuncDecl),
1658           OldCurCodeDecl(CGF.CurCodeDecl),
1659           OldCXXABIThisDecl(CGF.CXXABIThisDecl),
1660           OldCXXABIThisValue(CGF.CXXABIThisValue),
1661           OldCXXThisValue(CGF.CXXThisValue),
1662           OldCXXABIThisAlignment(CGF.CXXABIThisAlignment),
1663           OldCXXThisAlignment(CGF.CXXThisAlignment),
1664           OldReturnValue(CGF.ReturnValue), OldFnRetTy(CGF.FnRetTy),
1665           OldCXXInheritedCtorInitExprArgs(
1666               std::move(CGF.CXXInheritedCtorInitExprArgs)) {
1667       CGF.CurGD = GD;
1668       CGF.CurFuncDecl = CGF.CurCodeDecl =
1669           cast<CXXConstructorDecl>(GD.getDecl());
1670       CGF.CXXABIThisDecl = nullptr;
1671       CGF.CXXABIThisValue = nullptr;
1672       CGF.CXXThisValue = nullptr;
1673       CGF.CXXABIThisAlignment = CharUnits();
1674       CGF.CXXThisAlignment = CharUnits();
1675       CGF.ReturnValue = Address::invalid();
1676       CGF.FnRetTy = QualType();
1677       CGF.CXXInheritedCtorInitExprArgs.clear();
1678     }
1679     ~InlinedInheritingConstructorScope() {
1680       CGF.CurGD = OldCurGD;
1681       CGF.CurFuncDecl = OldCurFuncDecl;
1682       CGF.CurCodeDecl = OldCurCodeDecl;
1683       CGF.CXXABIThisDecl = OldCXXABIThisDecl;
1684       CGF.CXXABIThisValue = OldCXXABIThisValue;
1685       CGF.CXXThisValue = OldCXXThisValue;
1686       CGF.CXXABIThisAlignment = OldCXXABIThisAlignment;
1687       CGF.CXXThisAlignment = OldCXXThisAlignment;
1688       CGF.ReturnValue = OldReturnValue;
1689       CGF.FnRetTy = OldFnRetTy;
1690       CGF.CXXInheritedCtorInitExprArgs =
1691           std::move(OldCXXInheritedCtorInitExprArgs);
1692     }
1693 
1694   private:
1695     CodeGenFunction &CGF;
1696     GlobalDecl OldCurGD;
1697     const Decl *OldCurFuncDecl;
1698     const Decl *OldCurCodeDecl;
1699     ImplicitParamDecl *OldCXXABIThisDecl;
1700     llvm::Value *OldCXXABIThisValue;
1701     llvm::Value *OldCXXThisValue;
1702     CharUnits OldCXXABIThisAlignment;
1703     CharUnits OldCXXThisAlignment;
1704     Address OldReturnValue;
1705     QualType OldFnRetTy;
1706     CallArgList OldCXXInheritedCtorInitExprArgs;
1707   };
1708 
1709   // Helper class for the OpenMP IR Builder. Allows reusability of code used for
1710   // region body, and finalization codegen callbacks. This will class will also
1711   // contain privatization functions used by the privatization call backs
1712   //
1713   // TODO: this is temporary class for things that are being moved out of
1714   // CGOpenMPRuntime, new versions of current CodeGenFunction methods, or
1715   // utility function for use with the OMPBuilder. Once that move to use the
1716   // OMPBuilder is done, everything here will either become part of CodeGenFunc.
1717   // directly, or a new helper class that will contain functions used by both
1718   // this and the OMPBuilder
1719 
1720   struct OMPBuilderCBHelpers {
1721 
1722     OMPBuilderCBHelpers() = delete;
1723     OMPBuilderCBHelpers(const OMPBuilderCBHelpers &) = delete;
1724     OMPBuilderCBHelpers &operator=(const OMPBuilderCBHelpers &) = delete;
1725 
1726     using InsertPointTy = llvm::OpenMPIRBuilder::InsertPointTy;
1727 
1728     /// Cleanup action for allocate support.
1729     class OMPAllocateCleanupTy final : public EHScopeStack::Cleanup {
1730 
1731     private:
1732       llvm::CallInst *RTLFnCI;
1733 
1734     public:
1735       OMPAllocateCleanupTy(llvm::CallInst *RLFnCI) : RTLFnCI(RLFnCI) {
1736         RLFnCI->removeFromParent();
1737       }
1738 
1739       void Emit(CodeGenFunction &CGF, Flags /*flags*/) override {
1740         if (!CGF.HaveInsertPoint())
1741           return;
1742         CGF.Builder.Insert(RTLFnCI);
1743       }
1744     };
1745 
1746     /// Returns address of the threadprivate variable for the current
1747     /// thread. This Also create any necessary OMP runtime calls.
1748     ///
1749     /// \param VD VarDecl for Threadprivate variable.
1750     /// \param VDAddr Address of the Vardecl
1751     /// \param Loc  The location where the barrier directive was encountered
1752     static Address getAddrOfThreadPrivate(CodeGenFunction &CGF,
1753                                           const VarDecl *VD, Address VDAddr,
1754                                           SourceLocation Loc);
1755 
1756     /// Gets the OpenMP-specific address of the local variable /p VD.
1757     static Address getAddressOfLocalVariable(CodeGenFunction &CGF,
1758                                              const VarDecl *VD);
1759     /// Get the platform-specific name separator.
1760     /// \param Parts different parts of the final name that needs separation
1761     /// \param FirstSeparator First separator used between the initial two
1762     ///        parts of the name.
1763     /// \param Separator separator used between all of the rest consecutinve
1764     ///        parts of the name
1765     static std::string getNameWithSeparators(ArrayRef<StringRef> Parts,
1766                                              StringRef FirstSeparator = ".",
1767                                              StringRef Separator = ".");
1768     /// Emit the Finalization for an OMP region
1769     /// \param CGF	The Codegen function this belongs to
1770     /// \param IP	Insertion point for generating the finalization code.
1771     static void FinalizeOMPRegion(CodeGenFunction &CGF, InsertPointTy IP) {
1772       CGBuilderTy::InsertPointGuard IPG(CGF.Builder);
1773       assert(IP.getBlock()->end() != IP.getPoint() &&
1774              "OpenMP IR Builder should cause terminated block!");
1775 
1776       llvm::BasicBlock *IPBB = IP.getBlock();
1777       llvm::BasicBlock *DestBB = IPBB->getUniqueSuccessor();
1778       assert(DestBB && "Finalization block should have one successor!");
1779 
1780       // erase and replace with cleanup branch.
1781       IPBB->getTerminator()->eraseFromParent();
1782       CGF.Builder.SetInsertPoint(IPBB);
1783       CodeGenFunction::JumpDest Dest = CGF.getJumpDestInCurrentScope(DestBB);
1784       CGF.EmitBranchThroughCleanup(Dest);
1785     }
1786 
1787     /// Emit the body of an OMP region
1788     /// \param CGF	The Codegen function this belongs to
1789     /// \param RegionBodyStmt	The body statement for the OpenMP region being
1790     /// 			 generated
1791     /// \param CodeGenIP	Insertion point for generating the body code.
1792     /// \param FiniBB	The finalization basic block
1793     static void EmitOMPRegionBody(CodeGenFunction &CGF,
1794                                   const Stmt *RegionBodyStmt,
1795                                   InsertPointTy CodeGenIP,
1796                                   llvm::BasicBlock &FiniBB) {
1797       llvm::BasicBlock *CodeGenIPBB = CodeGenIP.getBlock();
1798       if (llvm::Instruction *CodeGenIPBBTI = CodeGenIPBB->getTerminator())
1799         CodeGenIPBBTI->eraseFromParent();
1800 
1801       CGF.Builder.SetInsertPoint(CodeGenIPBB);
1802 
1803       CGF.EmitStmt(RegionBodyStmt);
1804 
1805       if (CGF.Builder.saveIP().isSet())
1806         CGF.Builder.CreateBr(&FiniBB);
1807     }
1808 
1809     static void EmitCaptureStmt(CodeGenFunction &CGF, InsertPointTy CodeGenIP,
1810                                 llvm::BasicBlock &FiniBB, llvm::Function *Fn,
1811                                 ArrayRef<llvm::Value *> Args) {
1812       llvm::BasicBlock *CodeGenIPBB = CodeGenIP.getBlock();
1813       if (llvm::Instruction *CodeGenIPBBTI = CodeGenIPBB->getTerminator())
1814         CodeGenIPBBTI->eraseFromParent();
1815 
1816       CGF.Builder.SetInsertPoint(CodeGenIPBB);
1817 
1818       if (Fn->doesNotThrow())
1819         CGF.EmitNounwindRuntimeCall(Fn, Args);
1820       else
1821         CGF.EmitRuntimeCall(Fn, Args);
1822 
1823       if (CGF.Builder.saveIP().isSet())
1824         CGF.Builder.CreateBr(&FiniBB);
1825     }
1826 
1827     /// RAII for preserving necessary info during Outlined region body codegen.
1828     class OutlinedRegionBodyRAII {
1829 
1830       llvm::AssertingVH<llvm::Instruction> OldAllocaIP;
1831       CodeGenFunction::JumpDest OldReturnBlock;
1832       CGBuilderTy::InsertPoint IP;
1833       CodeGenFunction &CGF;
1834 
1835     public:
1836       OutlinedRegionBodyRAII(CodeGenFunction &cgf, InsertPointTy &AllocaIP,
1837                              llvm::BasicBlock &RetBB)
1838           : CGF(cgf) {
1839         assert(AllocaIP.isSet() &&
1840                "Must specify Insertion point for allocas of outlined function");
1841         OldAllocaIP = CGF.AllocaInsertPt;
1842         CGF.AllocaInsertPt = &*AllocaIP.getPoint();
1843         IP = CGF.Builder.saveIP();
1844 
1845         OldReturnBlock = CGF.ReturnBlock;
1846         CGF.ReturnBlock = CGF.getJumpDestInCurrentScope(&RetBB);
1847       }
1848 
1849       ~OutlinedRegionBodyRAII() {
1850         CGF.AllocaInsertPt = OldAllocaIP;
1851         CGF.ReturnBlock = OldReturnBlock;
1852         CGF.Builder.restoreIP(IP);
1853       }
1854     };
1855 
1856     /// RAII for preserving necessary info during inlined region body codegen.
1857     class InlinedRegionBodyRAII {
1858 
1859       llvm::AssertingVH<llvm::Instruction> OldAllocaIP;
1860       CodeGenFunction &CGF;
1861 
1862     public:
1863       InlinedRegionBodyRAII(CodeGenFunction &cgf, InsertPointTy &AllocaIP,
1864                             llvm::BasicBlock &FiniBB)
1865           : CGF(cgf) {
1866         // Alloca insertion block should be in the entry block of the containing
1867         // function so it expects an empty AllocaIP in which case will reuse the
1868         // old alloca insertion point, or a new AllocaIP in the same block as
1869         // the old one
1870         assert((!AllocaIP.isSet() ||
1871                 CGF.AllocaInsertPt->getParent() == AllocaIP.getBlock()) &&
1872                "Insertion point should be in the entry block of containing "
1873                "function!");
1874         OldAllocaIP = CGF.AllocaInsertPt;
1875         if (AllocaIP.isSet())
1876           CGF.AllocaInsertPt = &*AllocaIP.getPoint();
1877 
1878         // TODO: Remove the call, after making sure the counter is not used by
1879         //       the EHStack.
1880         // Since this is an inlined region, it should not modify the
1881         // ReturnBlock, and should reuse the one for the enclosing outlined
1882         // region. So, the JumpDest being return by the function is discarded
1883         (void)CGF.getJumpDestInCurrentScope(&FiniBB);
1884       }
1885 
1886       ~InlinedRegionBodyRAII() { CGF.AllocaInsertPt = OldAllocaIP; }
1887     };
1888   };
1889 
1890 private:
1891   /// CXXThisDecl - When generating code for a C++ member function,
1892   /// this will hold the implicit 'this' declaration.
1893   ImplicitParamDecl *CXXABIThisDecl = nullptr;
1894   llvm::Value *CXXABIThisValue = nullptr;
1895   llvm::Value *CXXThisValue = nullptr;
1896   CharUnits CXXABIThisAlignment;
1897   CharUnits CXXThisAlignment;
1898 
1899   /// The value of 'this' to use when evaluating CXXDefaultInitExprs within
1900   /// this expression.
1901   Address CXXDefaultInitExprThis = Address::invalid();
1902 
1903   /// The current array initialization index when evaluating an
1904   /// ArrayInitIndexExpr within an ArrayInitLoopExpr.
1905   llvm::Value *ArrayInitIndex = nullptr;
1906 
1907   /// The values of function arguments to use when evaluating
1908   /// CXXInheritedCtorInitExprs within this context.
1909   CallArgList CXXInheritedCtorInitExprArgs;
1910 
1911   /// CXXStructorImplicitParamDecl - When generating code for a constructor or
1912   /// destructor, this will hold the implicit argument (e.g. VTT).
1913   ImplicitParamDecl *CXXStructorImplicitParamDecl = nullptr;
1914   llvm::Value *CXXStructorImplicitParamValue = nullptr;
1915 
1916   /// OutermostConditional - Points to the outermost active
1917   /// conditional control.  This is used so that we know if a
1918   /// temporary should be destroyed conditionally.
1919   ConditionalEvaluation *OutermostConditional = nullptr;
1920 
1921   /// The current lexical scope.
1922   LexicalScope *CurLexicalScope = nullptr;
1923 
1924   /// The current source location that should be used for exception
1925   /// handling code.
1926   SourceLocation CurEHLocation;
1927 
1928   /// BlockByrefInfos - For each __block variable, contains
1929   /// information about the layout of the variable.
1930   llvm::DenseMap<const ValueDecl *, BlockByrefInfo> BlockByrefInfos;
1931 
1932   /// Used by -fsanitize=nullability-return to determine whether the return
1933   /// value can be checked.
1934   llvm::Value *RetValNullabilityPrecondition = nullptr;
1935 
1936   /// Check if -fsanitize=nullability-return instrumentation is required for
1937   /// this function.
1938   bool requiresReturnValueNullabilityCheck() const {
1939     return RetValNullabilityPrecondition;
1940   }
1941 
1942   /// Used to store precise source locations for return statements by the
1943   /// runtime return value checks.
1944   Address ReturnLocation = Address::invalid();
1945 
1946   /// Check if the return value of this function requires sanitization.
1947   bool requiresReturnValueCheck() const;
1948 
1949   llvm::BasicBlock *TerminateLandingPad = nullptr;
1950   llvm::BasicBlock *TerminateHandler = nullptr;
1951   llvm::SmallVector<llvm::BasicBlock *, 2> TrapBBs;
1952 
1953   /// Terminate funclets keyed by parent funclet pad.
1954   llvm::MapVector<llvm::Value *, llvm::BasicBlock *> TerminateFunclets;
1955 
1956   /// Largest vector width used in ths function. Will be used to create a
1957   /// function attribute.
1958   unsigned LargestVectorWidth = 0;
1959 
1960   /// True if we need emit the life-time markers. This is initially set in
1961   /// the constructor, but could be overwritten to true if this is a coroutine.
1962   bool ShouldEmitLifetimeMarkers;
1963 
1964   /// Add OpenCL kernel arg metadata and the kernel attribute metadata to
1965   /// the function metadata.
1966   void EmitOpenCLKernelMetadata(const FunctionDecl *FD,
1967                                 llvm::Function *Fn);
1968 
1969 public:
1970   CodeGenFunction(CodeGenModule &cgm, bool suppressNewContext=false);
1971   ~CodeGenFunction();
1972 
1973   CodeGenTypes &getTypes() const { return CGM.getTypes(); }
1974   ASTContext &getContext() const { return CGM.getContext(); }
1975   CGDebugInfo *getDebugInfo() {
1976     if (DisableDebugInfo)
1977       return nullptr;
1978     return DebugInfo;
1979   }
1980   void disableDebugInfo() { DisableDebugInfo = true; }
1981   void enableDebugInfo() { DisableDebugInfo = false; }
1982 
1983   bool shouldUseFusedARCCalls() {
1984     return CGM.getCodeGenOpts().OptimizationLevel == 0;
1985   }
1986 
1987   const LangOptions &getLangOpts() const { return CGM.getLangOpts(); }
1988 
1989   /// Returns a pointer to the function's exception object and selector slot,
1990   /// which is assigned in every landing pad.
1991   Address getExceptionSlot();
1992   Address getEHSelectorSlot();
1993 
1994   /// Returns the contents of the function's exception object and selector
1995   /// slots.
1996   llvm::Value *getExceptionFromSlot();
1997   llvm::Value *getSelectorFromSlot();
1998 
1999   Address getNormalCleanupDestSlot();
2000 
2001   llvm::BasicBlock *getUnreachableBlock() {
2002     if (!UnreachableBlock) {
2003       UnreachableBlock = createBasicBlock("unreachable");
2004       new llvm::UnreachableInst(getLLVMContext(), UnreachableBlock);
2005     }
2006     return UnreachableBlock;
2007   }
2008 
2009   llvm::BasicBlock *getInvokeDest() {
2010     if (!EHStack.requiresLandingPad()) return nullptr;
2011     return getInvokeDestImpl();
2012   }
2013 
2014   bool currentFunctionUsesSEHTry() const { return CurSEHParent != nullptr; }
2015 
2016   const TargetInfo &getTarget() const { return Target; }
2017   llvm::LLVMContext &getLLVMContext() { return CGM.getLLVMContext(); }
2018   const TargetCodeGenInfo &getTargetHooks() const {
2019     return CGM.getTargetCodeGenInfo();
2020   }
2021 
2022   //===--------------------------------------------------------------------===//
2023   //                                  Cleanups
2024   //===--------------------------------------------------------------------===//
2025 
2026   typedef void Destroyer(CodeGenFunction &CGF, Address addr, QualType ty);
2027 
2028   void pushIrregularPartialArrayCleanup(llvm::Value *arrayBegin,
2029                                         Address arrayEndPointer,
2030                                         QualType elementType,
2031                                         CharUnits elementAlignment,
2032                                         Destroyer *destroyer);
2033   void pushRegularPartialArrayCleanup(llvm::Value *arrayBegin,
2034                                       llvm::Value *arrayEnd,
2035                                       QualType elementType,
2036                                       CharUnits elementAlignment,
2037                                       Destroyer *destroyer);
2038 
2039   void pushDestroy(QualType::DestructionKind dtorKind,
2040                    Address addr, QualType type);
2041   void pushEHDestroy(QualType::DestructionKind dtorKind,
2042                      Address addr, QualType type);
2043   void pushDestroy(CleanupKind kind, Address addr, QualType type,
2044                    Destroyer *destroyer, bool useEHCleanupForArray);
2045   void pushLifetimeExtendedDestroy(CleanupKind kind, Address addr,
2046                                    QualType type, Destroyer *destroyer,
2047                                    bool useEHCleanupForArray);
2048   void pushCallObjectDeleteCleanup(const FunctionDecl *OperatorDelete,
2049                                    llvm::Value *CompletePtr,
2050                                    QualType ElementType);
2051   void pushStackRestore(CleanupKind kind, Address SPMem);
2052   void emitDestroy(Address addr, QualType type, Destroyer *destroyer,
2053                    bool useEHCleanupForArray);
2054   llvm::Function *generateDestroyHelper(Address addr, QualType type,
2055                                         Destroyer *destroyer,
2056                                         bool useEHCleanupForArray,
2057                                         const VarDecl *VD);
2058   void emitArrayDestroy(llvm::Value *begin, llvm::Value *end,
2059                         QualType elementType, CharUnits elementAlign,
2060                         Destroyer *destroyer,
2061                         bool checkZeroLength, bool useEHCleanup);
2062 
2063   Destroyer *getDestroyer(QualType::DestructionKind destructionKind);
2064 
2065   /// Determines whether an EH cleanup is required to destroy a type
2066   /// with the given destruction kind.
2067   bool needsEHCleanup(QualType::DestructionKind kind) {
2068     switch (kind) {
2069     case QualType::DK_none:
2070       return false;
2071     case QualType::DK_cxx_destructor:
2072     case QualType::DK_objc_weak_lifetime:
2073     case QualType::DK_nontrivial_c_struct:
2074       return getLangOpts().Exceptions;
2075     case QualType::DK_objc_strong_lifetime:
2076       return getLangOpts().Exceptions &&
2077              CGM.getCodeGenOpts().ObjCAutoRefCountExceptions;
2078     }
2079     llvm_unreachable("bad destruction kind");
2080   }
2081 
2082   CleanupKind getCleanupKind(QualType::DestructionKind kind) {
2083     return (needsEHCleanup(kind) ? NormalAndEHCleanup : NormalCleanup);
2084   }
2085 
2086   //===--------------------------------------------------------------------===//
2087   //                                  Objective-C
2088   //===--------------------------------------------------------------------===//
2089 
2090   void GenerateObjCMethod(const ObjCMethodDecl *OMD);
2091 
2092   void StartObjCMethod(const ObjCMethodDecl *MD, const ObjCContainerDecl *CD);
2093 
2094   /// GenerateObjCGetter - Synthesize an Objective-C property getter function.
2095   void GenerateObjCGetter(ObjCImplementationDecl *IMP,
2096                           const ObjCPropertyImplDecl *PID);
2097   void generateObjCGetterBody(const ObjCImplementationDecl *classImpl,
2098                               const ObjCPropertyImplDecl *propImpl,
2099                               const ObjCMethodDecl *GetterMothodDecl,
2100                               llvm::Constant *AtomicHelperFn);
2101 
2102   void GenerateObjCCtorDtorMethod(ObjCImplementationDecl *IMP,
2103                                   ObjCMethodDecl *MD, bool ctor);
2104 
2105   /// GenerateObjCSetter - Synthesize an Objective-C property setter function
2106   /// for the given property.
2107   void GenerateObjCSetter(ObjCImplementationDecl *IMP,
2108                           const ObjCPropertyImplDecl *PID);
2109   void generateObjCSetterBody(const ObjCImplementationDecl *classImpl,
2110                               const ObjCPropertyImplDecl *propImpl,
2111                               llvm::Constant *AtomicHelperFn);
2112 
2113   //===--------------------------------------------------------------------===//
2114   //                                  Block Bits
2115   //===--------------------------------------------------------------------===//
2116 
2117   /// Emit block literal.
2118   /// \return an LLVM value which is a pointer to a struct which contains
2119   /// information about the block, including the block invoke function, the
2120   /// captured variables, etc.
2121   llvm::Value *EmitBlockLiteral(const BlockExpr *);
2122 
2123   llvm::Function *GenerateBlockFunction(GlobalDecl GD,
2124                                         const CGBlockInfo &Info,
2125                                         const DeclMapTy &ldm,
2126                                         bool IsLambdaConversionToBlock,
2127                                         bool BuildGlobalBlock);
2128 
2129   /// Check if \p T is a C++ class that has a destructor that can throw.
2130   static bool cxxDestructorCanThrow(QualType T);
2131 
2132   llvm::Constant *GenerateCopyHelperFunction(const CGBlockInfo &blockInfo);
2133   llvm::Constant *GenerateDestroyHelperFunction(const CGBlockInfo &blockInfo);
2134   llvm::Constant *GenerateObjCAtomicSetterCopyHelperFunction(
2135                                              const ObjCPropertyImplDecl *PID);
2136   llvm::Constant *GenerateObjCAtomicGetterCopyHelperFunction(
2137                                              const ObjCPropertyImplDecl *PID);
2138   llvm::Value *EmitBlockCopyAndAutorelease(llvm::Value *Block, QualType Ty);
2139 
2140   void BuildBlockRelease(llvm::Value *DeclPtr, BlockFieldFlags flags,
2141                          bool CanThrow);
2142 
2143   class AutoVarEmission;
2144 
2145   void emitByrefStructureInit(const AutoVarEmission &emission);
2146 
2147   /// Enter a cleanup to destroy a __block variable.  Note that this
2148   /// cleanup should be a no-op if the variable hasn't left the stack
2149   /// yet; if a cleanup is required for the variable itself, that needs
2150   /// to be done externally.
2151   ///
2152   /// \param Kind Cleanup kind.
2153   ///
2154   /// \param Addr When \p LoadBlockVarAddr is false, the address of the __block
2155   /// structure that will be passed to _Block_object_dispose. When
2156   /// \p LoadBlockVarAddr is true, the address of the field of the block
2157   /// structure that holds the address of the __block structure.
2158   ///
2159   /// \param Flags The flag that will be passed to _Block_object_dispose.
2160   ///
2161   /// \param LoadBlockVarAddr Indicates whether we need to emit a load from
2162   /// \p Addr to get the address of the __block structure.
2163   void enterByrefCleanup(CleanupKind Kind, Address Addr, BlockFieldFlags Flags,
2164                          bool LoadBlockVarAddr, bool CanThrow);
2165 
2166   void setBlockContextParameter(const ImplicitParamDecl *D, unsigned argNum,
2167                                 llvm::Value *ptr);
2168 
2169   Address LoadBlockStruct();
2170   Address GetAddrOfBlockDecl(const VarDecl *var);
2171 
2172   /// BuildBlockByrefAddress - Computes the location of the
2173   /// data in a variable which is declared as __block.
2174   Address emitBlockByrefAddress(Address baseAddr, const VarDecl *V,
2175                                 bool followForward = true);
2176   Address emitBlockByrefAddress(Address baseAddr,
2177                                 const BlockByrefInfo &info,
2178                                 bool followForward,
2179                                 const llvm::Twine &name);
2180 
2181   const BlockByrefInfo &getBlockByrefInfo(const VarDecl *var);
2182 
2183   QualType BuildFunctionArgList(GlobalDecl GD, FunctionArgList &Args);
2184 
2185   void GenerateCode(GlobalDecl GD, llvm::Function *Fn,
2186                     const CGFunctionInfo &FnInfo);
2187 
2188   /// Annotate the function with an attribute that disables TSan checking at
2189   /// runtime.
2190   void markAsIgnoreThreadCheckingAtRuntime(llvm::Function *Fn);
2191 
2192   /// Emit code for the start of a function.
2193   /// \param Loc       The location to be associated with the function.
2194   /// \param StartLoc  The location of the function body.
2195   void StartFunction(GlobalDecl GD,
2196                      QualType RetTy,
2197                      llvm::Function *Fn,
2198                      const CGFunctionInfo &FnInfo,
2199                      const FunctionArgList &Args,
2200                      SourceLocation Loc = SourceLocation(),
2201                      SourceLocation StartLoc = SourceLocation());
2202 
2203   static bool IsConstructorDelegationValid(const CXXConstructorDecl *Ctor);
2204 
2205   void EmitConstructorBody(FunctionArgList &Args);
2206   void EmitDestructorBody(FunctionArgList &Args);
2207   void emitImplicitAssignmentOperatorBody(FunctionArgList &Args);
2208   void EmitFunctionBody(const Stmt *Body);
2209   void EmitBlockWithFallThrough(llvm::BasicBlock *BB, const Stmt *S);
2210 
2211   void EmitForwardingCallToLambda(const CXXMethodDecl *LambdaCallOperator,
2212                                   CallArgList &CallArgs);
2213   void EmitLambdaBlockInvokeBody();
2214   void EmitLambdaDelegatingInvokeBody(const CXXMethodDecl *MD);
2215   void EmitLambdaStaticInvokeBody(const CXXMethodDecl *MD);
2216   void EmitLambdaVLACapture(const VariableArrayType *VAT, LValue LV) {
2217     EmitStoreThroughLValue(RValue::get(VLASizeMap[VAT->getSizeExpr()]), LV);
2218   }
2219   void EmitAsanPrologueOrEpilogue(bool Prologue);
2220 
2221   /// Emit the unified return block, trying to avoid its emission when
2222   /// possible.
2223   /// \return The debug location of the user written return statement if the
2224   /// return block is is avoided.
2225   llvm::DebugLoc EmitReturnBlock();
2226 
2227   /// FinishFunction - Complete IR generation of the current function. It is
2228   /// legal to call this function even if there is no current insertion point.
2229   void FinishFunction(SourceLocation EndLoc=SourceLocation());
2230 
2231   void StartThunk(llvm::Function *Fn, GlobalDecl GD,
2232                   const CGFunctionInfo &FnInfo, bool IsUnprototyped);
2233 
2234   void EmitCallAndReturnForThunk(llvm::FunctionCallee Callee,
2235                                  const ThunkInfo *Thunk, bool IsUnprototyped);
2236 
2237   void FinishThunk();
2238 
2239   /// Emit a musttail call for a thunk with a potentially adjusted this pointer.
2240   void EmitMustTailThunk(GlobalDecl GD, llvm::Value *AdjustedThisPtr,
2241                          llvm::FunctionCallee Callee);
2242 
2243   /// Generate a thunk for the given method.
2244   void generateThunk(llvm::Function *Fn, const CGFunctionInfo &FnInfo,
2245                      GlobalDecl GD, const ThunkInfo &Thunk,
2246                      bool IsUnprototyped);
2247 
2248   llvm::Function *GenerateVarArgsThunk(llvm::Function *Fn,
2249                                        const CGFunctionInfo &FnInfo,
2250                                        GlobalDecl GD, const ThunkInfo &Thunk);
2251 
2252   void EmitCtorPrologue(const CXXConstructorDecl *CD, CXXCtorType Type,
2253                         FunctionArgList &Args);
2254 
2255   void EmitInitializerForField(FieldDecl *Field, LValue LHS, Expr *Init);
2256 
2257   /// Struct with all information about dynamic [sub]class needed to set vptr.
2258   struct VPtr {
2259     BaseSubobject Base;
2260     const CXXRecordDecl *NearestVBase;
2261     CharUnits OffsetFromNearestVBase;
2262     const CXXRecordDecl *VTableClass;
2263   };
2264 
2265   /// Initialize the vtable pointer of the given subobject.
2266   void InitializeVTablePointer(const VPtr &vptr);
2267 
2268   typedef llvm::SmallVector<VPtr, 4> VPtrsVector;
2269 
2270   typedef llvm::SmallPtrSet<const CXXRecordDecl *, 4> VisitedVirtualBasesSetTy;
2271   VPtrsVector getVTablePointers(const CXXRecordDecl *VTableClass);
2272 
2273   void getVTablePointers(BaseSubobject Base, const CXXRecordDecl *NearestVBase,
2274                          CharUnits OffsetFromNearestVBase,
2275                          bool BaseIsNonVirtualPrimaryBase,
2276                          const CXXRecordDecl *VTableClass,
2277                          VisitedVirtualBasesSetTy &VBases, VPtrsVector &vptrs);
2278 
2279   void InitializeVTablePointers(const CXXRecordDecl *ClassDecl);
2280 
2281   /// GetVTablePtr - Return the Value of the vtable pointer member pointed
2282   /// to by This.
2283   llvm::Value *GetVTablePtr(Address This, llvm::Type *VTableTy,
2284                             const CXXRecordDecl *VTableClass);
2285 
2286   enum CFITypeCheckKind {
2287     CFITCK_VCall,
2288     CFITCK_NVCall,
2289     CFITCK_DerivedCast,
2290     CFITCK_UnrelatedCast,
2291     CFITCK_ICall,
2292     CFITCK_NVMFCall,
2293     CFITCK_VMFCall,
2294   };
2295 
2296   /// Derived is the presumed address of an object of type T after a
2297   /// cast. If T is a polymorphic class type, emit a check that the virtual
2298   /// table for Derived belongs to a class derived from T.
2299   void EmitVTablePtrCheckForCast(QualType T, llvm::Value *Derived,
2300                                  bool MayBeNull, CFITypeCheckKind TCK,
2301                                  SourceLocation Loc);
2302 
2303   /// EmitVTablePtrCheckForCall - Virtual method MD is being called via VTable.
2304   /// If vptr CFI is enabled, emit a check that VTable is valid.
2305   void EmitVTablePtrCheckForCall(const CXXRecordDecl *RD, llvm::Value *VTable,
2306                                  CFITypeCheckKind TCK, SourceLocation Loc);
2307 
2308   /// EmitVTablePtrCheck - Emit a check that VTable is a valid virtual table for
2309   /// RD using llvm.type.test.
2310   void EmitVTablePtrCheck(const CXXRecordDecl *RD, llvm::Value *VTable,
2311                           CFITypeCheckKind TCK, SourceLocation Loc);
2312 
2313   /// If whole-program virtual table optimization is enabled, emit an assumption
2314   /// that VTable is a member of RD's type identifier. Or, if vptr CFI is
2315   /// enabled, emit a check that VTable is a member of RD's type identifier.
2316   void EmitTypeMetadataCodeForVCall(const CXXRecordDecl *RD,
2317                                     llvm::Value *VTable, SourceLocation Loc);
2318 
2319   /// Returns whether we should perform a type checked load when loading a
2320   /// virtual function for virtual calls to members of RD. This is generally
2321   /// true when both vcall CFI and whole-program-vtables are enabled.
2322   bool ShouldEmitVTableTypeCheckedLoad(const CXXRecordDecl *RD);
2323 
2324   /// Emit a type checked load from the given vtable.
2325   llvm::Value *EmitVTableTypeCheckedLoad(const CXXRecordDecl *RD,
2326                                          llvm::Value *VTable,
2327                                          llvm::Type *VTableTy,
2328                                          uint64_t VTableByteOffset);
2329 
2330   /// EnterDtorCleanups - Enter the cleanups necessary to complete the
2331   /// given phase of destruction for a destructor.  The end result
2332   /// should call destructors on members and base classes in reverse
2333   /// order of their construction.
2334   void EnterDtorCleanups(const CXXDestructorDecl *Dtor, CXXDtorType Type);
2335 
2336   /// ShouldInstrumentFunction - Return true if the current function should be
2337   /// instrumented with __cyg_profile_func_* calls
2338   bool ShouldInstrumentFunction();
2339 
2340   /// ShouldSkipSanitizerInstrumentation - Return true if the current function
2341   /// should not be instrumented with sanitizers.
2342   bool ShouldSkipSanitizerInstrumentation();
2343 
2344   /// ShouldXRayInstrument - Return true if the current function should be
2345   /// instrumented with XRay nop sleds.
2346   bool ShouldXRayInstrumentFunction() const;
2347 
2348   /// AlwaysEmitXRayCustomEvents - Return true if we must unconditionally emit
2349   /// XRay custom event handling calls.
2350   bool AlwaysEmitXRayCustomEvents() const;
2351 
2352   /// AlwaysEmitXRayTypedEvents - Return true if clang must unconditionally emit
2353   /// XRay typed event handling calls.
2354   bool AlwaysEmitXRayTypedEvents() const;
2355 
2356   /// Encode an address into a form suitable for use in a function prologue.
2357   llvm::Constant *EncodeAddrForUseInPrologue(llvm::Function *F,
2358                                              llvm::Constant *Addr);
2359 
2360   /// Decode an address used in a function prologue, encoded by \c
2361   /// EncodeAddrForUseInPrologue.
2362   llvm::Value *DecodeAddrUsedInPrologue(llvm::Value *F,
2363                                         llvm::Value *EncodedAddr);
2364 
2365   /// EmitFunctionProlog - Emit the target specific LLVM code to load the
2366   /// arguments for the given function. This is also responsible for naming the
2367   /// LLVM function arguments.
2368   void EmitFunctionProlog(const CGFunctionInfo &FI,
2369                           llvm::Function *Fn,
2370                           const FunctionArgList &Args);
2371 
2372   /// EmitFunctionEpilog - Emit the target specific LLVM code to return the
2373   /// given temporary.
2374   void EmitFunctionEpilog(const CGFunctionInfo &FI, bool EmitRetDbgLoc,
2375                           SourceLocation EndLoc);
2376 
2377   /// Emit a test that checks if the return value \p RV is nonnull.
2378   void EmitReturnValueCheck(llvm::Value *RV);
2379 
2380   /// EmitStartEHSpec - Emit the start of the exception spec.
2381   void EmitStartEHSpec(const Decl *D);
2382 
2383   /// EmitEndEHSpec - Emit the end of the exception spec.
2384   void EmitEndEHSpec(const Decl *D);
2385 
2386   /// getTerminateLandingPad - Return a landing pad that just calls terminate.
2387   llvm::BasicBlock *getTerminateLandingPad();
2388 
2389   /// getTerminateLandingPad - Return a cleanup funclet that just calls
2390   /// terminate.
2391   llvm::BasicBlock *getTerminateFunclet();
2392 
2393   /// getTerminateHandler - Return a handler (not a landing pad, just
2394   /// a catch handler) that just calls terminate.  This is used when
2395   /// a terminate scope encloses a try.
2396   llvm::BasicBlock *getTerminateHandler();
2397 
2398   llvm::Type *ConvertTypeForMem(QualType T);
2399   llvm::Type *ConvertType(QualType T);
2400   llvm::Type *ConvertType(const TypeDecl *T) {
2401     return ConvertType(getContext().getTypeDeclType(T));
2402   }
2403 
2404   /// LoadObjCSelf - Load the value of self. This function is only valid while
2405   /// generating code for an Objective-C method.
2406   llvm::Value *LoadObjCSelf();
2407 
2408   /// TypeOfSelfObject - Return type of object that this self represents.
2409   QualType TypeOfSelfObject();
2410 
2411   /// getEvaluationKind - Return the TypeEvaluationKind of QualType \c T.
2412   static TypeEvaluationKind getEvaluationKind(QualType T);
2413 
2414   static bool hasScalarEvaluationKind(QualType T) {
2415     return getEvaluationKind(T) == TEK_Scalar;
2416   }
2417 
2418   static bool hasAggregateEvaluationKind(QualType T) {
2419     return getEvaluationKind(T) == TEK_Aggregate;
2420   }
2421 
2422   /// createBasicBlock - Create an LLVM basic block.
2423   llvm::BasicBlock *createBasicBlock(const Twine &name = "",
2424                                      llvm::Function *parent = nullptr,
2425                                      llvm::BasicBlock *before = nullptr) {
2426     return llvm::BasicBlock::Create(getLLVMContext(), name, parent, before);
2427   }
2428 
2429   /// getBasicBlockForLabel - Return the LLVM basicblock that the specified
2430   /// label maps to.
2431   JumpDest getJumpDestForLabel(const LabelDecl *S);
2432 
2433   /// SimplifyForwardingBlocks - If the given basic block is only a branch to
2434   /// another basic block, simplify it. This assumes that no other code could
2435   /// potentially reference the basic block.
2436   void SimplifyForwardingBlocks(llvm::BasicBlock *BB);
2437 
2438   /// EmitBlock - Emit the given block \arg BB and set it as the insert point,
2439   /// adding a fall-through branch from the current insert block if
2440   /// necessary. It is legal to call this function even if there is no current
2441   /// insertion point.
2442   ///
2443   /// IsFinished - If true, indicates that the caller has finished emitting
2444   /// branches to the given block and does not expect to emit code into it. This
2445   /// means the block can be ignored if it is unreachable.
2446   void EmitBlock(llvm::BasicBlock *BB, bool IsFinished=false);
2447 
2448   /// EmitBlockAfterUses - Emit the given block somewhere hopefully
2449   /// near its uses, and leave the insertion point in it.
2450   void EmitBlockAfterUses(llvm::BasicBlock *BB);
2451 
2452   /// EmitBranch - Emit a branch to the specified basic block from the current
2453   /// insert block, taking care to avoid creation of branches from dummy
2454   /// blocks. It is legal to call this function even if there is no current
2455   /// insertion point.
2456   ///
2457   /// This function clears the current insertion point. The caller should follow
2458   /// calls to this function with calls to Emit*Block prior to generation new
2459   /// code.
2460   void EmitBranch(llvm::BasicBlock *Block);
2461 
2462   /// HaveInsertPoint - True if an insertion point is defined. If not, this
2463   /// indicates that the current code being emitted is unreachable.
2464   bool HaveInsertPoint() const {
2465     return Builder.GetInsertBlock() != nullptr;
2466   }
2467 
2468   /// EnsureInsertPoint - Ensure that an insertion point is defined so that
2469   /// emitted IR has a place to go. Note that by definition, if this function
2470   /// creates a block then that block is unreachable; callers may do better to
2471   /// detect when no insertion point is defined and simply skip IR generation.
2472   void EnsureInsertPoint() {
2473     if (!HaveInsertPoint())
2474       EmitBlock(createBasicBlock());
2475   }
2476 
2477   /// ErrorUnsupported - Print out an error that codegen doesn't support the
2478   /// specified stmt yet.
2479   void ErrorUnsupported(const Stmt *S, const char *Type);
2480 
2481   //===--------------------------------------------------------------------===//
2482   //                                  Helpers
2483   //===--------------------------------------------------------------------===//
2484 
2485   LValue MakeAddrLValue(Address Addr, QualType T,
2486                         AlignmentSource Source = AlignmentSource::Type) {
2487     return LValue::MakeAddr(Addr, T, getContext(), LValueBaseInfo(Source),
2488                             CGM.getTBAAAccessInfo(T));
2489   }
2490 
2491   LValue MakeAddrLValue(Address Addr, QualType T, LValueBaseInfo BaseInfo,
2492                         TBAAAccessInfo TBAAInfo) {
2493     return LValue::MakeAddr(Addr, T, getContext(), BaseInfo, TBAAInfo);
2494   }
2495 
2496   LValue MakeAddrLValue(llvm::Value *V, QualType T, CharUnits Alignment,
2497                         AlignmentSource Source = AlignmentSource::Type) {
2498     Address Addr(V, ConvertTypeForMem(T), Alignment);
2499     return LValue::MakeAddr(Addr, T, getContext(), LValueBaseInfo(Source),
2500                             CGM.getTBAAAccessInfo(T));
2501   }
2502 
2503   LValue
2504   MakeAddrLValueWithoutTBAA(Address Addr, QualType T,
2505                             AlignmentSource Source = AlignmentSource::Type) {
2506     return LValue::MakeAddr(Addr, T, getContext(), LValueBaseInfo(Source),
2507                             TBAAAccessInfo());
2508   }
2509 
2510   LValue MakeNaturalAlignPointeeAddrLValue(llvm::Value *V, QualType T);
2511   LValue MakeNaturalAlignAddrLValue(llvm::Value *V, QualType T);
2512 
2513   Address EmitLoadOfReference(LValue RefLVal,
2514                               LValueBaseInfo *PointeeBaseInfo = nullptr,
2515                               TBAAAccessInfo *PointeeTBAAInfo = nullptr);
2516   LValue EmitLoadOfReferenceLValue(LValue RefLVal);
2517   LValue EmitLoadOfReferenceLValue(Address RefAddr, QualType RefTy,
2518                                    AlignmentSource Source =
2519                                        AlignmentSource::Type) {
2520     LValue RefLVal = MakeAddrLValue(RefAddr, RefTy, LValueBaseInfo(Source),
2521                                     CGM.getTBAAAccessInfo(RefTy));
2522     return EmitLoadOfReferenceLValue(RefLVal);
2523   }
2524 
2525   Address EmitLoadOfPointer(Address Ptr, const PointerType *PtrTy,
2526                             LValueBaseInfo *BaseInfo = nullptr,
2527                             TBAAAccessInfo *TBAAInfo = nullptr);
2528   LValue EmitLoadOfPointerLValue(Address Ptr, const PointerType *PtrTy);
2529 
2530   /// CreateTempAlloca - This creates an alloca and inserts it into the entry
2531   /// block if \p ArraySize is nullptr, otherwise inserts it at the current
2532   /// insertion point of the builder. The caller is responsible for setting an
2533   /// appropriate alignment on
2534   /// the alloca.
2535   ///
2536   /// \p ArraySize is the number of array elements to be allocated if it
2537   ///    is not nullptr.
2538   ///
2539   /// LangAS::Default is the address space of pointers to local variables and
2540   /// temporaries, as exposed in the source language. In certain
2541   /// configurations, this is not the same as the alloca address space, and a
2542   /// cast is needed to lift the pointer from the alloca AS into
2543   /// LangAS::Default. This can happen when the target uses a restricted
2544   /// address space for the stack but the source language requires
2545   /// LangAS::Default to be a generic address space. The latter condition is
2546   /// common for most programming languages; OpenCL is an exception in that
2547   /// LangAS::Default is the private address space, which naturally maps
2548   /// to the stack.
2549   ///
2550   /// Because the address of a temporary is often exposed to the program in
2551   /// various ways, this function will perform the cast. The original alloca
2552   /// instruction is returned through \p Alloca if it is not nullptr.
2553   ///
2554   /// The cast is not performaed in CreateTempAllocaWithoutCast. This is
2555   /// more efficient if the caller knows that the address will not be exposed.
2556   llvm::AllocaInst *CreateTempAlloca(llvm::Type *Ty, const Twine &Name = "tmp",
2557                                      llvm::Value *ArraySize = nullptr);
2558   Address CreateTempAlloca(llvm::Type *Ty, CharUnits align,
2559                            const Twine &Name = "tmp",
2560                            llvm::Value *ArraySize = nullptr,
2561                            Address *Alloca = nullptr);
2562   Address CreateTempAllocaWithoutCast(llvm::Type *Ty, CharUnits align,
2563                                       const Twine &Name = "tmp",
2564                                       llvm::Value *ArraySize = nullptr);
2565 
2566   /// CreateDefaultAlignedTempAlloca - This creates an alloca with the
2567   /// default ABI alignment of the given LLVM type.
2568   ///
2569   /// IMPORTANT NOTE: This is *not* generally the right alignment for
2570   /// any given AST type that happens to have been lowered to the
2571   /// given IR type.  This should only ever be used for function-local,
2572   /// IR-driven manipulations like saving and restoring a value.  Do
2573   /// not hand this address off to arbitrary IRGen routines, and especially
2574   /// do not pass it as an argument to a function that might expect a
2575   /// properly ABI-aligned value.
2576   Address CreateDefaultAlignTempAlloca(llvm::Type *Ty,
2577                                        const Twine &Name = "tmp");
2578 
2579   /// CreateIRTemp - Create a temporary IR object of the given type, with
2580   /// appropriate alignment. This routine should only be used when an temporary
2581   /// value needs to be stored into an alloca (for example, to avoid explicit
2582   /// PHI construction), but the type is the IR type, not the type appropriate
2583   /// for storing in memory.
2584   ///
2585   /// That is, this is exactly equivalent to CreateMemTemp, but calling
2586   /// ConvertType instead of ConvertTypeForMem.
2587   Address CreateIRTemp(QualType T, const Twine &Name = "tmp");
2588 
2589   /// CreateMemTemp - Create a temporary memory object of the given type, with
2590   /// appropriate alignmen and cast it to the default address space. Returns
2591   /// the original alloca instruction by \p Alloca if it is not nullptr.
2592   Address CreateMemTemp(QualType T, const Twine &Name = "tmp",
2593                         Address *Alloca = nullptr);
2594   Address CreateMemTemp(QualType T, CharUnits Align, const Twine &Name = "tmp",
2595                         Address *Alloca = nullptr);
2596 
2597   /// CreateMemTemp - Create a temporary memory object of the given type, with
2598   /// appropriate alignmen without casting it to the default address space.
2599   Address CreateMemTempWithoutCast(QualType T, const Twine &Name = "tmp");
2600   Address CreateMemTempWithoutCast(QualType T, CharUnits Align,
2601                                    const Twine &Name = "tmp");
2602 
2603   /// CreateAggTemp - Create a temporary memory object for the given
2604   /// aggregate type.
2605   AggValueSlot CreateAggTemp(QualType T, const Twine &Name = "tmp",
2606                              Address *Alloca = nullptr) {
2607     return AggValueSlot::forAddr(CreateMemTemp(T, Name, Alloca),
2608                                  T.getQualifiers(),
2609                                  AggValueSlot::IsNotDestructed,
2610                                  AggValueSlot::DoesNotNeedGCBarriers,
2611                                  AggValueSlot::IsNotAliased,
2612                                  AggValueSlot::DoesNotOverlap);
2613   }
2614 
2615   /// Emit a cast to void* in the appropriate address space.
2616   llvm::Value *EmitCastToVoidPtr(llvm::Value *value);
2617 
2618   /// EvaluateExprAsBool - Perform the usual unary conversions on the specified
2619   /// expression and compare the result against zero, returning an Int1Ty value.
2620   llvm::Value *EvaluateExprAsBool(const Expr *E);
2621 
2622   /// EmitIgnoredExpr - Emit an expression in a context which ignores the result.
2623   void EmitIgnoredExpr(const Expr *E);
2624 
2625   /// EmitAnyExpr - Emit code to compute the specified expression which can have
2626   /// any type.  The result is returned as an RValue struct.  If this is an
2627   /// aggregate expression, the aggloc/agglocvolatile arguments indicate where
2628   /// the result should be returned.
2629   ///
2630   /// \param ignoreResult True if the resulting value isn't used.
2631   RValue EmitAnyExpr(const Expr *E,
2632                      AggValueSlot aggSlot = AggValueSlot::ignored(),
2633                      bool ignoreResult = false);
2634 
2635   // EmitVAListRef - Emit a "reference" to a va_list; this is either the address
2636   // or the value of the expression, depending on how va_list is defined.
2637   Address EmitVAListRef(const Expr *E);
2638 
2639   /// Emit a "reference" to a __builtin_ms_va_list; this is
2640   /// always the value of the expression, because a __builtin_ms_va_list is a
2641   /// pointer to a char.
2642   Address EmitMSVAListRef(const Expr *E);
2643 
2644   /// EmitAnyExprToTemp - Similarly to EmitAnyExpr(), however, the result will
2645   /// always be accessible even if no aggregate location is provided.
2646   RValue EmitAnyExprToTemp(const Expr *E);
2647 
2648   /// EmitAnyExprToMem - Emits the code necessary to evaluate an
2649   /// arbitrary expression into the given memory location.
2650   void EmitAnyExprToMem(const Expr *E, Address Location,
2651                         Qualifiers Quals, bool IsInitializer);
2652 
2653   void EmitAnyExprToExn(const Expr *E, Address Addr);
2654 
2655   /// EmitExprAsInit - Emits the code necessary to initialize a
2656   /// location in memory with the given initializer.
2657   void EmitExprAsInit(const Expr *init, const ValueDecl *D, LValue lvalue,
2658                       bool capturedByInit);
2659 
2660   /// hasVolatileMember - returns true if aggregate type has a volatile
2661   /// member.
2662   bool hasVolatileMember(QualType T) {
2663     if (const RecordType *RT = T->getAs<RecordType>()) {
2664       const RecordDecl *RD = cast<RecordDecl>(RT->getDecl());
2665       return RD->hasVolatileMember();
2666     }
2667     return false;
2668   }
2669 
2670   /// Determine whether a return value slot may overlap some other object.
2671   AggValueSlot::Overlap_t getOverlapForReturnValue() {
2672     // FIXME: Assuming no overlap here breaks guaranteed copy elision for base
2673     // class subobjects. These cases may need to be revisited depending on the
2674     // resolution of the relevant core issue.
2675     return AggValueSlot::DoesNotOverlap;
2676   }
2677 
2678   /// Determine whether a field initialization may overlap some other object.
2679   AggValueSlot::Overlap_t getOverlapForFieldInit(const FieldDecl *FD);
2680 
2681   /// Determine whether a base class initialization may overlap some other
2682   /// object.
2683   AggValueSlot::Overlap_t getOverlapForBaseInit(const CXXRecordDecl *RD,
2684                                                 const CXXRecordDecl *BaseRD,
2685                                                 bool IsVirtual);
2686 
2687   /// Emit an aggregate assignment.
2688   void EmitAggregateAssign(LValue Dest, LValue Src, QualType EltTy) {
2689     bool IsVolatile = hasVolatileMember(EltTy);
2690     EmitAggregateCopy(Dest, Src, EltTy, AggValueSlot::MayOverlap, IsVolatile);
2691   }
2692 
2693   void EmitAggregateCopyCtor(LValue Dest, LValue Src,
2694                              AggValueSlot::Overlap_t MayOverlap) {
2695     EmitAggregateCopy(Dest, Src, Src.getType(), MayOverlap);
2696   }
2697 
2698   /// EmitAggregateCopy - Emit an aggregate copy.
2699   ///
2700   /// \param isVolatile \c true iff either the source or the destination is
2701   ///        volatile.
2702   /// \param MayOverlap Whether the tail padding of the destination might be
2703   ///        occupied by some other object. More efficient code can often be
2704   ///        generated if not.
2705   void EmitAggregateCopy(LValue Dest, LValue Src, QualType EltTy,
2706                          AggValueSlot::Overlap_t MayOverlap,
2707                          bool isVolatile = false);
2708 
2709   /// GetAddrOfLocalVar - Return the address of a local variable.
2710   Address GetAddrOfLocalVar(const VarDecl *VD) {
2711     auto it = LocalDeclMap.find(VD);
2712     assert(it != LocalDeclMap.end() &&
2713            "Invalid argument to GetAddrOfLocalVar(), no decl!");
2714     return it->second;
2715   }
2716 
2717   /// Given an opaque value expression, return its LValue mapping if it exists,
2718   /// otherwise create one.
2719   LValue getOrCreateOpaqueLValueMapping(const OpaqueValueExpr *e);
2720 
2721   /// Given an opaque value expression, return its RValue mapping if it exists,
2722   /// otherwise create one.
2723   RValue getOrCreateOpaqueRValueMapping(const OpaqueValueExpr *e);
2724 
2725   /// Get the index of the current ArrayInitLoopExpr, if any.
2726   llvm::Value *getArrayInitIndex() { return ArrayInitIndex; }
2727 
2728   /// getAccessedFieldNo - Given an encoded value and a result number, return
2729   /// the input field number being accessed.
2730   static unsigned getAccessedFieldNo(unsigned Idx, const llvm::Constant *Elts);
2731 
2732   llvm::BlockAddress *GetAddrOfLabel(const LabelDecl *L);
2733   llvm::BasicBlock *GetIndirectGotoBlock();
2734 
2735   /// Check if \p E is a C++ "this" pointer wrapped in value-preserving casts.
2736   static bool IsWrappedCXXThis(const Expr *E);
2737 
2738   /// EmitNullInitialization - Generate code to set a value of the given type to
2739   /// null, If the type contains data member pointers, they will be initialized
2740   /// to -1 in accordance with the Itanium C++ ABI.
2741   void EmitNullInitialization(Address DestPtr, QualType Ty);
2742 
2743   /// Emits a call to an LLVM variable-argument intrinsic, either
2744   /// \c llvm.va_start or \c llvm.va_end.
2745   /// \param ArgValue A reference to the \c va_list as emitted by either
2746   /// \c EmitVAListRef or \c EmitMSVAListRef.
2747   /// \param IsStart If \c true, emits a call to \c llvm.va_start; otherwise,
2748   /// calls \c llvm.va_end.
2749   llvm::Value *EmitVAStartEnd(llvm::Value *ArgValue, bool IsStart);
2750 
2751   /// Generate code to get an argument from the passed in pointer
2752   /// and update it accordingly.
2753   /// \param VE The \c VAArgExpr for which to generate code.
2754   /// \param VAListAddr Receives a reference to the \c va_list as emitted by
2755   /// either \c EmitVAListRef or \c EmitMSVAListRef.
2756   /// \returns A pointer to the argument.
2757   // FIXME: We should be able to get rid of this method and use the va_arg
2758   // instruction in LLVM instead once it works well enough.
2759   Address EmitVAArg(VAArgExpr *VE, Address &VAListAddr);
2760 
2761   /// emitArrayLength - Compute the length of an array, even if it's a
2762   /// VLA, and drill down to the base element type.
2763   llvm::Value *emitArrayLength(const ArrayType *arrayType,
2764                                QualType &baseType,
2765                                Address &addr);
2766 
2767   /// EmitVLASize - Capture all the sizes for the VLA expressions in
2768   /// the given variably-modified type and store them in the VLASizeMap.
2769   ///
2770   /// This function can be called with a null (unreachable) insert point.
2771   void EmitVariablyModifiedType(QualType Ty);
2772 
2773   struct VlaSizePair {
2774     llvm::Value *NumElts;
2775     QualType Type;
2776 
2777     VlaSizePair(llvm::Value *NE, QualType T) : NumElts(NE), Type(T) {}
2778   };
2779 
2780   /// Return the number of elements for a single dimension
2781   /// for the given array type.
2782   VlaSizePair getVLAElements1D(const VariableArrayType *vla);
2783   VlaSizePair getVLAElements1D(QualType vla);
2784 
2785   /// Returns an LLVM value that corresponds to the size,
2786   /// in non-variably-sized elements, of a variable length array type,
2787   /// plus that largest non-variably-sized element type.  Assumes that
2788   /// the type has already been emitted with EmitVariablyModifiedType.
2789   VlaSizePair getVLASize(const VariableArrayType *vla);
2790   VlaSizePair getVLASize(QualType vla);
2791 
2792   /// LoadCXXThis - Load the value of 'this'. This function is only valid while
2793   /// generating code for an C++ member function.
2794   llvm::Value *LoadCXXThis() {
2795     assert(CXXThisValue && "no 'this' value for this function");
2796     return CXXThisValue;
2797   }
2798   Address LoadCXXThisAddress();
2799 
2800   /// LoadCXXVTT - Load the VTT parameter to base constructors/destructors have
2801   /// virtual bases.
2802   // FIXME: Every place that calls LoadCXXVTT is something
2803   // that needs to be abstracted properly.
2804   llvm::Value *LoadCXXVTT() {
2805     assert(CXXStructorImplicitParamValue && "no VTT value for this function");
2806     return CXXStructorImplicitParamValue;
2807   }
2808 
2809   /// GetAddressOfBaseOfCompleteClass - Convert the given pointer to a
2810   /// complete class to the given direct base.
2811   Address
2812   GetAddressOfDirectBaseInCompleteClass(Address Value,
2813                                         const CXXRecordDecl *Derived,
2814                                         const CXXRecordDecl *Base,
2815                                         bool BaseIsVirtual);
2816 
2817   static bool ShouldNullCheckClassCastValue(const CastExpr *Cast);
2818 
2819   /// GetAddressOfBaseClass - This function will add the necessary delta to the
2820   /// load of 'this' and returns address of the base class.
2821   Address GetAddressOfBaseClass(Address Value,
2822                                 const CXXRecordDecl *Derived,
2823                                 CastExpr::path_const_iterator PathBegin,
2824                                 CastExpr::path_const_iterator PathEnd,
2825                                 bool NullCheckValue, SourceLocation Loc);
2826 
2827   Address GetAddressOfDerivedClass(Address Value,
2828                                    const CXXRecordDecl *Derived,
2829                                    CastExpr::path_const_iterator PathBegin,
2830                                    CastExpr::path_const_iterator PathEnd,
2831                                    bool NullCheckValue);
2832 
2833   /// GetVTTParameter - Return the VTT parameter that should be passed to a
2834   /// base constructor/destructor with virtual bases.
2835   /// FIXME: VTTs are Itanium ABI-specific, so the definition should move
2836   /// to ItaniumCXXABI.cpp together with all the references to VTT.
2837   llvm::Value *GetVTTParameter(GlobalDecl GD, bool ForVirtualBase,
2838                                bool Delegating);
2839 
2840   void EmitDelegateCXXConstructorCall(const CXXConstructorDecl *Ctor,
2841                                       CXXCtorType CtorType,
2842                                       const FunctionArgList &Args,
2843                                       SourceLocation Loc);
2844   // It's important not to confuse this and the previous function. Delegating
2845   // constructors are the C++0x feature. The constructor delegate optimization
2846   // is used to reduce duplication in the base and complete consturctors where
2847   // they are substantially the same.
2848   void EmitDelegatingCXXConstructorCall(const CXXConstructorDecl *Ctor,
2849                                         const FunctionArgList &Args);
2850 
2851   /// Emit a call to an inheriting constructor (that is, one that invokes a
2852   /// constructor inherited from a base class) by inlining its definition. This
2853   /// is necessary if the ABI does not support forwarding the arguments to the
2854   /// base class constructor (because they're variadic or similar).
2855   void EmitInlinedInheritingCXXConstructorCall(const CXXConstructorDecl *Ctor,
2856                                                CXXCtorType CtorType,
2857                                                bool ForVirtualBase,
2858                                                bool Delegating,
2859                                                CallArgList &Args);
2860 
2861   /// Emit a call to a constructor inherited from a base class, passing the
2862   /// current constructor's arguments along unmodified (without even making
2863   /// a copy).
2864   void EmitInheritedCXXConstructorCall(const CXXConstructorDecl *D,
2865                                        bool ForVirtualBase, Address This,
2866                                        bool InheritedFromVBase,
2867                                        const CXXInheritedCtorInitExpr *E);
2868 
2869   void EmitCXXConstructorCall(const CXXConstructorDecl *D, CXXCtorType Type,
2870                               bool ForVirtualBase, bool Delegating,
2871                               AggValueSlot ThisAVS, const CXXConstructExpr *E);
2872 
2873   void EmitCXXConstructorCall(const CXXConstructorDecl *D, CXXCtorType Type,
2874                               bool ForVirtualBase, bool Delegating,
2875                               Address This, CallArgList &Args,
2876                               AggValueSlot::Overlap_t Overlap,
2877                               SourceLocation Loc, bool NewPointerIsChecked);
2878 
2879   /// Emit assumption load for all bases. Requires to be be called only on
2880   /// most-derived class and not under construction of the object.
2881   void EmitVTableAssumptionLoads(const CXXRecordDecl *ClassDecl, Address This);
2882 
2883   /// Emit assumption that vptr load == global vtable.
2884   void EmitVTableAssumptionLoad(const VPtr &vptr, Address This);
2885 
2886   void EmitSynthesizedCXXCopyCtorCall(const CXXConstructorDecl *D,
2887                                       Address This, Address Src,
2888                                       const CXXConstructExpr *E);
2889 
2890   void EmitCXXAggrConstructorCall(const CXXConstructorDecl *D,
2891                                   const ArrayType *ArrayTy,
2892                                   Address ArrayPtr,
2893                                   const CXXConstructExpr *E,
2894                                   bool NewPointerIsChecked,
2895                                   bool ZeroInitialization = false);
2896 
2897   void EmitCXXAggrConstructorCall(const CXXConstructorDecl *D,
2898                                   llvm::Value *NumElements,
2899                                   Address ArrayPtr,
2900                                   const CXXConstructExpr *E,
2901                                   bool NewPointerIsChecked,
2902                                   bool ZeroInitialization = false);
2903 
2904   static Destroyer destroyCXXObject;
2905 
2906   void EmitCXXDestructorCall(const CXXDestructorDecl *D, CXXDtorType Type,
2907                              bool ForVirtualBase, bool Delegating, Address This,
2908                              QualType ThisTy);
2909 
2910   void EmitNewArrayInitializer(const CXXNewExpr *E, QualType elementType,
2911                                llvm::Type *ElementTy, Address NewPtr,
2912                                llvm::Value *NumElements,
2913                                llvm::Value *AllocSizeWithoutCookie);
2914 
2915   void EmitCXXTemporary(const CXXTemporary *Temporary, QualType TempType,
2916                         Address Ptr);
2917 
2918   void EmitSehCppScopeBegin();
2919   void EmitSehCppScopeEnd();
2920   void EmitSehTryScopeBegin();
2921   void EmitSehTryScopeEnd();
2922 
2923   llvm::Value *EmitLifetimeStart(llvm::TypeSize Size, llvm::Value *Addr);
2924   void EmitLifetimeEnd(llvm::Value *Size, llvm::Value *Addr);
2925 
2926   llvm::Value *EmitCXXNewExpr(const CXXNewExpr *E);
2927   void EmitCXXDeleteExpr(const CXXDeleteExpr *E);
2928 
2929   void EmitDeleteCall(const FunctionDecl *DeleteFD, llvm::Value *Ptr,
2930                       QualType DeleteTy, llvm::Value *NumElements = nullptr,
2931                       CharUnits CookieSize = CharUnits());
2932 
2933   RValue EmitBuiltinNewDeleteCall(const FunctionProtoType *Type,
2934                                   const CallExpr *TheCallExpr, bool IsDelete);
2935 
2936   llvm::Value *EmitCXXTypeidExpr(const CXXTypeidExpr *E);
2937   llvm::Value *EmitDynamicCast(Address V, const CXXDynamicCastExpr *DCE);
2938   Address EmitCXXUuidofExpr(const CXXUuidofExpr *E);
2939 
2940   /// Situations in which we might emit a check for the suitability of a
2941   /// pointer or glvalue. Needs to be kept in sync with ubsan_handlers.cpp in
2942   /// compiler-rt.
2943   enum TypeCheckKind {
2944     /// Checking the operand of a load. Must be suitably sized and aligned.
2945     TCK_Load,
2946     /// Checking the destination of a store. Must be suitably sized and aligned.
2947     TCK_Store,
2948     /// Checking the bound value in a reference binding. Must be suitably sized
2949     /// and aligned, but is not required to refer to an object (until the
2950     /// reference is used), per core issue 453.
2951     TCK_ReferenceBinding,
2952     /// Checking the object expression in a non-static data member access. Must
2953     /// be an object within its lifetime.
2954     TCK_MemberAccess,
2955     /// Checking the 'this' pointer for a call to a non-static member function.
2956     /// Must be an object within its lifetime.
2957     TCK_MemberCall,
2958     /// Checking the 'this' pointer for a constructor call.
2959     TCK_ConstructorCall,
2960     /// Checking the operand of a static_cast to a derived pointer type. Must be
2961     /// null or an object within its lifetime.
2962     TCK_DowncastPointer,
2963     /// Checking the operand of a static_cast to a derived reference type. Must
2964     /// be an object within its lifetime.
2965     TCK_DowncastReference,
2966     /// Checking the operand of a cast to a base object. Must be suitably sized
2967     /// and aligned.
2968     TCK_Upcast,
2969     /// Checking the operand of a cast to a virtual base object. Must be an
2970     /// object within its lifetime.
2971     TCK_UpcastToVirtualBase,
2972     /// Checking the value assigned to a _Nonnull pointer. Must not be null.
2973     TCK_NonnullAssign,
2974     /// Checking the operand of a dynamic_cast or a typeid expression.  Must be
2975     /// null or an object within its lifetime.
2976     TCK_DynamicOperation
2977   };
2978 
2979   /// Determine whether the pointer type check \p TCK permits null pointers.
2980   static bool isNullPointerAllowed(TypeCheckKind TCK);
2981 
2982   /// Determine whether the pointer type check \p TCK requires a vptr check.
2983   static bool isVptrCheckRequired(TypeCheckKind TCK, QualType Ty);
2984 
2985   /// Whether any type-checking sanitizers are enabled. If \c false,
2986   /// calls to EmitTypeCheck can be skipped.
2987   bool sanitizePerformTypeCheck() const;
2988 
2989   /// Emit a check that \p V is the address of storage of the
2990   /// appropriate size and alignment for an object of type \p Type
2991   /// (or if ArraySize is provided, for an array of that bound).
2992   void EmitTypeCheck(TypeCheckKind TCK, SourceLocation Loc, llvm::Value *V,
2993                      QualType Type, CharUnits Alignment = CharUnits::Zero(),
2994                      SanitizerSet SkippedChecks = SanitizerSet(),
2995                      llvm::Value *ArraySize = nullptr);
2996 
2997   /// Emit a check that \p Base points into an array object, which
2998   /// we can access at index \p Index. \p Accessed should be \c false if we
2999   /// this expression is used as an lvalue, for instance in "&Arr[Idx]".
3000   void EmitBoundsCheck(const Expr *E, const Expr *Base, llvm::Value *Index,
3001                        QualType IndexType, bool Accessed);
3002 
3003   llvm::Value *EmitScalarPrePostIncDec(const UnaryOperator *E, LValue LV,
3004                                        bool isInc, bool isPre);
3005   ComplexPairTy EmitComplexPrePostIncDec(const UnaryOperator *E, LValue LV,
3006                                          bool isInc, bool isPre);
3007 
3008   /// Converts Location to a DebugLoc, if debug information is enabled.
3009   llvm::DebugLoc SourceLocToDebugLoc(SourceLocation Location);
3010 
3011   /// Get the record field index as represented in debug info.
3012   unsigned getDebugInfoFIndex(const RecordDecl *Rec, unsigned FieldIndex);
3013 
3014 
3015   //===--------------------------------------------------------------------===//
3016   //                            Declaration Emission
3017   //===--------------------------------------------------------------------===//
3018 
3019   /// EmitDecl - Emit a declaration.
3020   ///
3021   /// This function can be called with a null (unreachable) insert point.
3022   void EmitDecl(const Decl &D);
3023 
3024   /// EmitVarDecl - Emit a local variable declaration.
3025   ///
3026   /// This function can be called with a null (unreachable) insert point.
3027   void EmitVarDecl(const VarDecl &D);
3028 
3029   void EmitScalarInit(const Expr *init, const ValueDecl *D, LValue lvalue,
3030                       bool capturedByInit);
3031 
3032   typedef void SpecialInitFn(CodeGenFunction &Init, const VarDecl &D,
3033                              llvm::Value *Address);
3034 
3035   /// Determine whether the given initializer is trivial in the sense
3036   /// that it requires no code to be generated.
3037   bool isTrivialInitializer(const Expr *Init);
3038 
3039   /// EmitAutoVarDecl - Emit an auto variable declaration.
3040   ///
3041   /// This function can be called with a null (unreachable) insert point.
3042   void EmitAutoVarDecl(const VarDecl &D);
3043 
3044   class AutoVarEmission {
3045     friend class CodeGenFunction;
3046 
3047     const VarDecl *Variable;
3048 
3049     /// The address of the alloca for languages with explicit address space
3050     /// (e.g. OpenCL) or alloca casted to generic pointer for address space
3051     /// agnostic languages (e.g. C++). Invalid if the variable was emitted
3052     /// as a global constant.
3053     Address Addr;
3054 
3055     llvm::Value *NRVOFlag;
3056 
3057     /// True if the variable is a __block variable that is captured by an
3058     /// escaping block.
3059     bool IsEscapingByRef;
3060 
3061     /// True if the variable is of aggregate type and has a constant
3062     /// initializer.
3063     bool IsConstantAggregate;
3064 
3065     /// Non-null if we should use lifetime annotations.
3066     llvm::Value *SizeForLifetimeMarkers;
3067 
3068     /// Address with original alloca instruction. Invalid if the variable was
3069     /// emitted as a global constant.
3070     Address AllocaAddr;
3071 
3072     struct Invalid {};
3073     AutoVarEmission(Invalid)
3074         : Variable(nullptr), Addr(Address::invalid()),
3075           AllocaAddr(Address::invalid()) {}
3076 
3077     AutoVarEmission(const VarDecl &variable)
3078         : Variable(&variable), Addr(Address::invalid()), NRVOFlag(nullptr),
3079           IsEscapingByRef(false), IsConstantAggregate(false),
3080           SizeForLifetimeMarkers(nullptr), AllocaAddr(Address::invalid()) {}
3081 
3082     bool wasEmittedAsGlobal() const { return !Addr.isValid(); }
3083 
3084   public:
3085     static AutoVarEmission invalid() { return AutoVarEmission(Invalid()); }
3086 
3087     bool useLifetimeMarkers() const {
3088       return SizeForLifetimeMarkers != nullptr;
3089     }
3090     llvm::Value *getSizeForLifetimeMarkers() const {
3091       assert(useLifetimeMarkers());
3092       return SizeForLifetimeMarkers;
3093     }
3094 
3095     /// Returns the raw, allocated address, which is not necessarily
3096     /// the address of the object itself. It is casted to default
3097     /// address space for address space agnostic languages.
3098     Address getAllocatedAddress() const {
3099       return Addr;
3100     }
3101 
3102     /// Returns the address for the original alloca instruction.
3103     Address getOriginalAllocatedAddress() const { return AllocaAddr; }
3104 
3105     /// Returns the address of the object within this declaration.
3106     /// Note that this does not chase the forwarding pointer for
3107     /// __block decls.
3108     Address getObjectAddress(CodeGenFunction &CGF) const {
3109       if (!IsEscapingByRef) return Addr;
3110 
3111       return CGF.emitBlockByrefAddress(Addr, Variable, /*forward*/ false);
3112     }
3113   };
3114   AutoVarEmission EmitAutoVarAlloca(const VarDecl &var);
3115   void EmitAutoVarInit(const AutoVarEmission &emission);
3116   void EmitAutoVarCleanups(const AutoVarEmission &emission);
3117   void emitAutoVarTypeCleanup(const AutoVarEmission &emission,
3118                               QualType::DestructionKind dtorKind);
3119 
3120   /// Emits the alloca and debug information for the size expressions for each
3121   /// dimension of an array. It registers the association of its (1-dimensional)
3122   /// QualTypes and size expression's debug node, so that CGDebugInfo can
3123   /// reference this node when creating the DISubrange object to describe the
3124   /// array types.
3125   void EmitAndRegisterVariableArrayDimensions(CGDebugInfo *DI,
3126                                               const VarDecl &D,
3127                                               bool EmitDebugInfo);
3128 
3129   void EmitStaticVarDecl(const VarDecl &D,
3130                          llvm::GlobalValue::LinkageTypes Linkage);
3131 
3132   class ParamValue {
3133     llvm::Value *Value;
3134     llvm::Type *ElementType;
3135     unsigned Alignment;
3136     ParamValue(llvm::Value *V, llvm::Type *T, unsigned A)
3137         : Value(V), ElementType(T), Alignment(A) {}
3138   public:
3139     static ParamValue forDirect(llvm::Value *value) {
3140       return ParamValue(value, nullptr, 0);
3141     }
3142     static ParamValue forIndirect(Address addr) {
3143       assert(!addr.getAlignment().isZero());
3144       return ParamValue(addr.getPointer(), addr.getElementType(),
3145                         addr.getAlignment().getQuantity());
3146     }
3147 
3148     bool isIndirect() const { return Alignment != 0; }
3149     llvm::Value *getAnyValue() const { return Value; }
3150 
3151     llvm::Value *getDirectValue() const {
3152       assert(!isIndirect());
3153       return Value;
3154     }
3155 
3156     Address getIndirectAddress() const {
3157       assert(isIndirect());
3158       return Address(Value, ElementType, CharUnits::fromQuantity(Alignment));
3159     }
3160   };
3161 
3162   /// EmitParmDecl - Emit a ParmVarDecl or an ImplicitParamDecl.
3163   void EmitParmDecl(const VarDecl &D, ParamValue Arg, unsigned ArgNo);
3164 
3165   /// protectFromPeepholes - Protect a value that we're intending to
3166   /// store to the side, but which will probably be used later, from
3167   /// aggressive peepholing optimizations that might delete it.
3168   ///
3169   /// Pass the result to unprotectFromPeepholes to declare that
3170   /// protection is no longer required.
3171   ///
3172   /// There's no particular reason why this shouldn't apply to
3173   /// l-values, it's just that no existing peepholes work on pointers.
3174   PeepholeProtection protectFromPeepholes(RValue rvalue);
3175   void unprotectFromPeepholes(PeepholeProtection protection);
3176 
3177   void emitAlignmentAssumptionCheck(llvm::Value *Ptr, QualType Ty,
3178                                     SourceLocation Loc,
3179                                     SourceLocation AssumptionLoc,
3180                                     llvm::Value *Alignment,
3181                                     llvm::Value *OffsetValue,
3182                                     llvm::Value *TheCheck,
3183                                     llvm::Instruction *Assumption);
3184 
3185   void emitAlignmentAssumption(llvm::Value *PtrValue, QualType Ty,
3186                                SourceLocation Loc, SourceLocation AssumptionLoc,
3187                                llvm::Value *Alignment,
3188                                llvm::Value *OffsetValue = nullptr);
3189 
3190   void emitAlignmentAssumption(llvm::Value *PtrValue, const Expr *E,
3191                                SourceLocation AssumptionLoc,
3192                                llvm::Value *Alignment,
3193                                llvm::Value *OffsetValue = nullptr);
3194 
3195   //===--------------------------------------------------------------------===//
3196   //                             Statement Emission
3197   //===--------------------------------------------------------------------===//
3198 
3199   /// EmitStopPoint - Emit a debug stoppoint if we are emitting debug info.
3200   void EmitStopPoint(const Stmt *S);
3201 
3202   /// EmitStmt - Emit the code for the statement \arg S. It is legal to call
3203   /// this function even if there is no current insertion point.
3204   ///
3205   /// This function may clear the current insertion point; callers should use
3206   /// EnsureInsertPoint if they wish to subsequently generate code without first
3207   /// calling EmitBlock, EmitBranch, or EmitStmt.
3208   void EmitStmt(const Stmt *S, ArrayRef<const Attr *> Attrs = None);
3209 
3210   /// EmitSimpleStmt - Try to emit a "simple" statement which does not
3211   /// necessarily require an insertion point or debug information; typically
3212   /// because the statement amounts to a jump or a container of other
3213   /// statements.
3214   ///
3215   /// \return True if the statement was handled.
3216   bool EmitSimpleStmt(const Stmt *S, ArrayRef<const Attr *> Attrs);
3217 
3218   Address EmitCompoundStmt(const CompoundStmt &S, bool GetLast = false,
3219                            AggValueSlot AVS = AggValueSlot::ignored());
3220   Address EmitCompoundStmtWithoutScope(const CompoundStmt &S,
3221                                        bool GetLast = false,
3222                                        AggValueSlot AVS =
3223                                                 AggValueSlot::ignored());
3224 
3225   /// EmitLabel - Emit the block for the given label. It is legal to call this
3226   /// function even if there is no current insertion point.
3227   void EmitLabel(const LabelDecl *D); // helper for EmitLabelStmt.
3228 
3229   void EmitLabelStmt(const LabelStmt &S);
3230   void EmitAttributedStmt(const AttributedStmt &S);
3231   void EmitGotoStmt(const GotoStmt &S);
3232   void EmitIndirectGotoStmt(const IndirectGotoStmt &S);
3233   void EmitIfStmt(const IfStmt &S);
3234 
3235   void EmitWhileStmt(const WhileStmt &S,
3236                      ArrayRef<const Attr *> Attrs = None);
3237   void EmitDoStmt(const DoStmt &S, ArrayRef<const Attr *> Attrs = None);
3238   void EmitForStmt(const ForStmt &S,
3239                    ArrayRef<const Attr *> Attrs = None);
3240   void EmitReturnStmt(const ReturnStmt &S);
3241   void EmitDeclStmt(const DeclStmt &S);
3242   void EmitBreakStmt(const BreakStmt &S);
3243   void EmitContinueStmt(const ContinueStmt &S);
3244   void EmitSwitchStmt(const SwitchStmt &S);
3245   void EmitDefaultStmt(const DefaultStmt &S, ArrayRef<const Attr *> Attrs);
3246   void EmitCaseStmt(const CaseStmt &S, ArrayRef<const Attr *> Attrs);
3247   void EmitCaseStmtRange(const CaseStmt &S, ArrayRef<const Attr *> Attrs);
3248   void EmitAsmStmt(const AsmStmt &S);
3249 
3250   void EmitObjCForCollectionStmt(const ObjCForCollectionStmt &S);
3251   void EmitObjCAtTryStmt(const ObjCAtTryStmt &S);
3252   void EmitObjCAtThrowStmt(const ObjCAtThrowStmt &S);
3253   void EmitObjCAtSynchronizedStmt(const ObjCAtSynchronizedStmt &S);
3254   void EmitObjCAutoreleasePoolStmt(const ObjCAutoreleasePoolStmt &S);
3255 
3256   void EmitCoroutineBody(const CoroutineBodyStmt &S);
3257   void EmitCoreturnStmt(const CoreturnStmt &S);
3258   RValue EmitCoawaitExpr(const CoawaitExpr &E,
3259                          AggValueSlot aggSlot = AggValueSlot::ignored(),
3260                          bool ignoreResult = false);
3261   LValue EmitCoawaitLValue(const CoawaitExpr *E);
3262   RValue EmitCoyieldExpr(const CoyieldExpr &E,
3263                          AggValueSlot aggSlot = AggValueSlot::ignored(),
3264                          bool ignoreResult = false);
3265   LValue EmitCoyieldLValue(const CoyieldExpr *E);
3266   RValue EmitCoroutineIntrinsic(const CallExpr *E, unsigned int IID);
3267 
3268   void EnterCXXTryStmt(const CXXTryStmt &S, bool IsFnTryBlock = false);
3269   void ExitCXXTryStmt(const CXXTryStmt &S, bool IsFnTryBlock = false);
3270 
3271   void EmitCXXTryStmt(const CXXTryStmt &S);
3272   void EmitSEHTryStmt(const SEHTryStmt &S);
3273   void EmitSEHLeaveStmt(const SEHLeaveStmt &S);
3274   void EnterSEHTryStmt(const SEHTryStmt &S);
3275   void ExitSEHTryStmt(const SEHTryStmt &S);
3276   void VolatilizeTryBlocks(llvm::BasicBlock *BB,
3277                            llvm::SmallPtrSet<llvm::BasicBlock *, 10> &V);
3278 
3279   void pushSEHCleanup(CleanupKind kind,
3280                       llvm::Function *FinallyFunc);
3281   void startOutlinedSEHHelper(CodeGenFunction &ParentCGF, bool IsFilter,
3282                               const Stmt *OutlinedStmt);
3283 
3284   llvm::Function *GenerateSEHFilterFunction(CodeGenFunction &ParentCGF,
3285                                             const SEHExceptStmt &Except);
3286 
3287   llvm::Function *GenerateSEHFinallyFunction(CodeGenFunction &ParentCGF,
3288                                              const SEHFinallyStmt &Finally);
3289 
3290   void EmitSEHExceptionCodeSave(CodeGenFunction &ParentCGF,
3291                                 llvm::Value *ParentFP,
3292                                 llvm::Value *EntryEBP);
3293   llvm::Value *EmitSEHExceptionCode();
3294   llvm::Value *EmitSEHExceptionInfo();
3295   llvm::Value *EmitSEHAbnormalTermination();
3296 
3297   /// Emit simple code for OpenMP directives in Simd-only mode.
3298   void EmitSimpleOMPExecutableDirective(const OMPExecutableDirective &D);
3299 
3300   /// Scan the outlined statement for captures from the parent function. For
3301   /// each capture, mark the capture as escaped and emit a call to
3302   /// llvm.localrecover. Insert the localrecover result into the LocalDeclMap.
3303   void EmitCapturedLocals(CodeGenFunction &ParentCGF, const Stmt *OutlinedStmt,
3304                           bool IsFilter);
3305 
3306   /// Recovers the address of a local in a parent function. ParentVar is the
3307   /// address of the variable used in the immediate parent function. It can
3308   /// either be an alloca or a call to llvm.localrecover if there are nested
3309   /// outlined functions. ParentFP is the frame pointer of the outermost parent
3310   /// frame.
3311   Address recoverAddrOfEscapedLocal(CodeGenFunction &ParentCGF,
3312                                     Address ParentVar,
3313                                     llvm::Value *ParentFP);
3314 
3315   void EmitCXXForRangeStmt(const CXXForRangeStmt &S,
3316                            ArrayRef<const Attr *> Attrs = None);
3317 
3318   /// Controls insertion of cancellation exit blocks in worksharing constructs.
3319   class OMPCancelStackRAII {
3320     CodeGenFunction &CGF;
3321 
3322   public:
3323     OMPCancelStackRAII(CodeGenFunction &CGF, OpenMPDirectiveKind Kind,
3324                        bool HasCancel)
3325         : CGF(CGF) {
3326       CGF.OMPCancelStack.enter(CGF, Kind, HasCancel);
3327     }
3328     ~OMPCancelStackRAII() { CGF.OMPCancelStack.exit(CGF); }
3329   };
3330 
3331   /// Returns calculated size of the specified type.
3332   llvm::Value *getTypeSize(QualType Ty);
3333   LValue InitCapturedStruct(const CapturedStmt &S);
3334   llvm::Function *EmitCapturedStmt(const CapturedStmt &S, CapturedRegionKind K);
3335   llvm::Function *GenerateCapturedStmtFunction(const CapturedStmt &S);
3336   Address GenerateCapturedStmtArgument(const CapturedStmt &S);
3337   llvm::Function *GenerateOpenMPCapturedStmtFunction(const CapturedStmt &S,
3338                                                      SourceLocation Loc);
3339   void GenerateOpenMPCapturedVars(const CapturedStmt &S,
3340                                   SmallVectorImpl<llvm::Value *> &CapturedVars);
3341   void emitOMPSimpleStore(LValue LVal, RValue RVal, QualType RValTy,
3342                           SourceLocation Loc);
3343   /// Perform element by element copying of arrays with type \a
3344   /// OriginalType from \a SrcAddr to \a DestAddr using copying procedure
3345   /// generated by \a CopyGen.
3346   ///
3347   /// \param DestAddr Address of the destination array.
3348   /// \param SrcAddr Address of the source array.
3349   /// \param OriginalType Type of destination and source arrays.
3350   /// \param CopyGen Copying procedure that copies value of single array element
3351   /// to another single array element.
3352   void EmitOMPAggregateAssign(
3353       Address DestAddr, Address SrcAddr, QualType OriginalType,
3354       const llvm::function_ref<void(Address, Address)> CopyGen);
3355   /// Emit proper copying of data from one variable to another.
3356   ///
3357   /// \param OriginalType Original type of the copied variables.
3358   /// \param DestAddr Destination address.
3359   /// \param SrcAddr Source address.
3360   /// \param DestVD Destination variable used in \a CopyExpr (for arrays, has
3361   /// type of the base array element).
3362   /// \param SrcVD Source variable used in \a CopyExpr (for arrays, has type of
3363   /// the base array element).
3364   /// \param Copy Actual copygin expression for copying data from \a SrcVD to \a
3365   /// DestVD.
3366   void EmitOMPCopy(QualType OriginalType,
3367                    Address DestAddr, Address SrcAddr,
3368                    const VarDecl *DestVD, const VarDecl *SrcVD,
3369                    const Expr *Copy);
3370   /// Emit atomic update code for constructs: \a X = \a X \a BO \a E or
3371   /// \a X = \a E \a BO \a E.
3372   ///
3373   /// \param X Value to be updated.
3374   /// \param E Update value.
3375   /// \param BO Binary operation for update operation.
3376   /// \param IsXLHSInRHSPart true if \a X is LHS in RHS part of the update
3377   /// expression, false otherwise.
3378   /// \param AO Atomic ordering of the generated atomic instructions.
3379   /// \param CommonGen Code generator for complex expressions that cannot be
3380   /// expressed through atomicrmw instruction.
3381   /// \returns <true, OldAtomicValue> if simple 'atomicrmw' instruction was
3382   /// generated, <false, RValue::get(nullptr)> otherwise.
3383   std::pair<bool, RValue> EmitOMPAtomicSimpleUpdateExpr(
3384       LValue X, RValue E, BinaryOperatorKind BO, bool IsXLHSInRHSPart,
3385       llvm::AtomicOrdering AO, SourceLocation Loc,
3386       const llvm::function_ref<RValue(RValue)> CommonGen);
3387   bool EmitOMPFirstprivateClause(const OMPExecutableDirective &D,
3388                                  OMPPrivateScope &PrivateScope);
3389   void EmitOMPPrivateClause(const OMPExecutableDirective &D,
3390                             OMPPrivateScope &PrivateScope);
3391   void EmitOMPUseDevicePtrClause(
3392       const OMPUseDevicePtrClause &C, OMPPrivateScope &PrivateScope,
3393       const llvm::DenseMap<const ValueDecl *, Address> &CaptureDeviceAddrMap);
3394   void EmitOMPUseDeviceAddrClause(
3395       const OMPUseDeviceAddrClause &C, OMPPrivateScope &PrivateScope,
3396       const llvm::DenseMap<const ValueDecl *, Address> &CaptureDeviceAddrMap);
3397   /// Emit code for copyin clause in \a D directive. The next code is
3398   /// generated at the start of outlined functions for directives:
3399   /// \code
3400   /// threadprivate_var1 = master_threadprivate_var1;
3401   /// operator=(threadprivate_var2, master_threadprivate_var2);
3402   /// ...
3403   /// __kmpc_barrier(&loc, global_tid);
3404   /// \endcode
3405   ///
3406   /// \param D OpenMP directive possibly with 'copyin' clause(s).
3407   /// \returns true if at least one copyin variable is found, false otherwise.
3408   bool EmitOMPCopyinClause(const OMPExecutableDirective &D);
3409   /// Emit initial code for lastprivate variables. If some variable is
3410   /// not also firstprivate, then the default initialization is used. Otherwise
3411   /// initialization of this variable is performed by EmitOMPFirstprivateClause
3412   /// method.
3413   ///
3414   /// \param D Directive that may have 'lastprivate' directives.
3415   /// \param PrivateScope Private scope for capturing lastprivate variables for
3416   /// proper codegen in internal captured statement.
3417   ///
3418   /// \returns true if there is at least one lastprivate variable, false
3419   /// otherwise.
3420   bool EmitOMPLastprivateClauseInit(const OMPExecutableDirective &D,
3421                                     OMPPrivateScope &PrivateScope);
3422   /// Emit final copying of lastprivate values to original variables at
3423   /// the end of the worksharing or simd directive.
3424   ///
3425   /// \param D Directive that has at least one 'lastprivate' directives.
3426   /// \param IsLastIterCond Boolean condition that must be set to 'i1 true' if
3427   /// it is the last iteration of the loop code in associated directive, or to
3428   /// 'i1 false' otherwise. If this item is nullptr, no final check is required.
3429   void EmitOMPLastprivateClauseFinal(const OMPExecutableDirective &D,
3430                                      bool NoFinals,
3431                                      llvm::Value *IsLastIterCond = nullptr);
3432   /// Emit initial code for linear clauses.
3433   void EmitOMPLinearClause(const OMPLoopDirective &D,
3434                            CodeGenFunction::OMPPrivateScope &PrivateScope);
3435   /// Emit final code for linear clauses.
3436   /// \param CondGen Optional conditional code for final part of codegen for
3437   /// linear clause.
3438   void EmitOMPLinearClauseFinal(
3439       const OMPLoopDirective &D,
3440       const llvm::function_ref<llvm::Value *(CodeGenFunction &)> CondGen);
3441   /// Emit initial code for reduction variables. Creates reduction copies
3442   /// and initializes them with the values according to OpenMP standard.
3443   ///
3444   /// \param D Directive (possibly) with the 'reduction' clause.
3445   /// \param PrivateScope Private scope for capturing reduction variables for
3446   /// proper codegen in internal captured statement.
3447   ///
3448   void EmitOMPReductionClauseInit(const OMPExecutableDirective &D,
3449                                   OMPPrivateScope &PrivateScope,
3450                                   bool ForInscan = false);
3451   /// Emit final update of reduction values to original variables at
3452   /// the end of the directive.
3453   ///
3454   /// \param D Directive that has at least one 'reduction' directives.
3455   /// \param ReductionKind The kind of reduction to perform.
3456   void EmitOMPReductionClauseFinal(const OMPExecutableDirective &D,
3457                                    const OpenMPDirectiveKind ReductionKind);
3458   /// Emit initial code for linear variables. Creates private copies
3459   /// and initializes them with the values according to OpenMP standard.
3460   ///
3461   /// \param D Directive (possibly) with the 'linear' clause.
3462   /// \return true if at least one linear variable is found that should be
3463   /// initialized with the value of the original variable, false otherwise.
3464   bool EmitOMPLinearClauseInit(const OMPLoopDirective &D);
3465 
3466   typedef const llvm::function_ref<void(CodeGenFunction & /*CGF*/,
3467                                         llvm::Function * /*OutlinedFn*/,
3468                                         const OMPTaskDataTy & /*Data*/)>
3469       TaskGenTy;
3470   void EmitOMPTaskBasedDirective(const OMPExecutableDirective &S,
3471                                  const OpenMPDirectiveKind CapturedRegion,
3472                                  const RegionCodeGenTy &BodyGen,
3473                                  const TaskGenTy &TaskGen, OMPTaskDataTy &Data);
3474   struct OMPTargetDataInfo {
3475     Address BasePointersArray = Address::invalid();
3476     Address PointersArray = Address::invalid();
3477     Address SizesArray = Address::invalid();
3478     Address MappersArray = Address::invalid();
3479     unsigned NumberOfTargetItems = 0;
3480     explicit OMPTargetDataInfo() = default;
3481     OMPTargetDataInfo(Address BasePointersArray, Address PointersArray,
3482                       Address SizesArray, Address MappersArray,
3483                       unsigned NumberOfTargetItems)
3484         : BasePointersArray(BasePointersArray), PointersArray(PointersArray),
3485           SizesArray(SizesArray), MappersArray(MappersArray),
3486           NumberOfTargetItems(NumberOfTargetItems) {}
3487   };
3488   void EmitOMPTargetTaskBasedDirective(const OMPExecutableDirective &S,
3489                                        const RegionCodeGenTy &BodyGen,
3490                                        OMPTargetDataInfo &InputInfo);
3491 
3492   void EmitOMPMetaDirective(const OMPMetaDirective &S);
3493   void EmitOMPParallelDirective(const OMPParallelDirective &S);
3494   void EmitOMPSimdDirective(const OMPSimdDirective &S);
3495   void EmitOMPTileDirective(const OMPTileDirective &S);
3496   void EmitOMPUnrollDirective(const OMPUnrollDirective &S);
3497   void EmitOMPForDirective(const OMPForDirective &S);
3498   void EmitOMPForSimdDirective(const OMPForSimdDirective &S);
3499   void EmitOMPSectionsDirective(const OMPSectionsDirective &S);
3500   void EmitOMPSectionDirective(const OMPSectionDirective &S);
3501   void EmitOMPSingleDirective(const OMPSingleDirective &S);
3502   void EmitOMPMasterDirective(const OMPMasterDirective &S);
3503   void EmitOMPMaskedDirective(const OMPMaskedDirective &S);
3504   void EmitOMPCriticalDirective(const OMPCriticalDirective &S);
3505   void EmitOMPParallelForDirective(const OMPParallelForDirective &S);
3506   void EmitOMPParallelForSimdDirective(const OMPParallelForSimdDirective &S);
3507   void EmitOMPParallelSectionsDirective(const OMPParallelSectionsDirective &S);
3508   void EmitOMPParallelMasterDirective(const OMPParallelMasterDirective &S);
3509   void EmitOMPTaskDirective(const OMPTaskDirective &S);
3510   void EmitOMPTaskyieldDirective(const OMPTaskyieldDirective &S);
3511   void EmitOMPBarrierDirective(const OMPBarrierDirective &S);
3512   void EmitOMPTaskwaitDirective(const OMPTaskwaitDirective &S);
3513   void EmitOMPTaskgroupDirective(const OMPTaskgroupDirective &S);
3514   void EmitOMPFlushDirective(const OMPFlushDirective &S);
3515   void EmitOMPDepobjDirective(const OMPDepobjDirective &S);
3516   void EmitOMPScanDirective(const OMPScanDirective &S);
3517   void EmitOMPOrderedDirective(const OMPOrderedDirective &S);
3518   void EmitOMPAtomicDirective(const OMPAtomicDirective &S);
3519   void EmitOMPTargetDirective(const OMPTargetDirective &S);
3520   void EmitOMPTargetDataDirective(const OMPTargetDataDirective &S);
3521   void EmitOMPTargetEnterDataDirective(const OMPTargetEnterDataDirective &S);
3522   void EmitOMPTargetExitDataDirective(const OMPTargetExitDataDirective &S);
3523   void EmitOMPTargetUpdateDirective(const OMPTargetUpdateDirective &S);
3524   void EmitOMPTargetParallelDirective(const OMPTargetParallelDirective &S);
3525   void
3526   EmitOMPTargetParallelForDirective(const OMPTargetParallelForDirective &S);
3527   void EmitOMPTeamsDirective(const OMPTeamsDirective &S);
3528   void
3529   EmitOMPCancellationPointDirective(const OMPCancellationPointDirective &S);
3530   void EmitOMPCancelDirective(const OMPCancelDirective &S);
3531   void EmitOMPTaskLoopBasedDirective(const OMPLoopDirective &S);
3532   void EmitOMPTaskLoopDirective(const OMPTaskLoopDirective &S);
3533   void EmitOMPTaskLoopSimdDirective(const OMPTaskLoopSimdDirective &S);
3534   void EmitOMPMasterTaskLoopDirective(const OMPMasterTaskLoopDirective &S);
3535   void
3536   EmitOMPMasterTaskLoopSimdDirective(const OMPMasterTaskLoopSimdDirective &S);
3537   void EmitOMPParallelMasterTaskLoopDirective(
3538       const OMPParallelMasterTaskLoopDirective &S);
3539   void EmitOMPParallelMasterTaskLoopSimdDirective(
3540       const OMPParallelMasterTaskLoopSimdDirective &S);
3541   void EmitOMPDistributeDirective(const OMPDistributeDirective &S);
3542   void EmitOMPDistributeParallelForDirective(
3543       const OMPDistributeParallelForDirective &S);
3544   void EmitOMPDistributeParallelForSimdDirective(
3545       const OMPDistributeParallelForSimdDirective &S);
3546   void EmitOMPDistributeSimdDirective(const OMPDistributeSimdDirective &S);
3547   void EmitOMPTargetParallelForSimdDirective(
3548       const OMPTargetParallelForSimdDirective &S);
3549   void EmitOMPTargetSimdDirective(const OMPTargetSimdDirective &S);
3550   void EmitOMPTeamsDistributeDirective(const OMPTeamsDistributeDirective &S);
3551   void
3552   EmitOMPTeamsDistributeSimdDirective(const OMPTeamsDistributeSimdDirective &S);
3553   void EmitOMPTeamsDistributeParallelForSimdDirective(
3554       const OMPTeamsDistributeParallelForSimdDirective &S);
3555   void EmitOMPTeamsDistributeParallelForDirective(
3556       const OMPTeamsDistributeParallelForDirective &S);
3557   void EmitOMPTargetTeamsDirective(const OMPTargetTeamsDirective &S);
3558   void EmitOMPTargetTeamsDistributeDirective(
3559       const OMPTargetTeamsDistributeDirective &S);
3560   void EmitOMPTargetTeamsDistributeParallelForDirective(
3561       const OMPTargetTeamsDistributeParallelForDirective &S);
3562   void EmitOMPTargetTeamsDistributeParallelForSimdDirective(
3563       const OMPTargetTeamsDistributeParallelForSimdDirective &S);
3564   void EmitOMPTargetTeamsDistributeSimdDirective(
3565       const OMPTargetTeamsDistributeSimdDirective &S);
3566   void EmitOMPGenericLoopDirective(const OMPGenericLoopDirective &S);
3567   void EmitOMPInteropDirective(const OMPInteropDirective &S);
3568 
3569   /// Emit device code for the target directive.
3570   static void EmitOMPTargetDeviceFunction(CodeGenModule &CGM,
3571                                           StringRef ParentName,
3572                                           const OMPTargetDirective &S);
3573   static void
3574   EmitOMPTargetParallelDeviceFunction(CodeGenModule &CGM, StringRef ParentName,
3575                                       const OMPTargetParallelDirective &S);
3576   /// Emit device code for the target parallel for directive.
3577   static void EmitOMPTargetParallelForDeviceFunction(
3578       CodeGenModule &CGM, StringRef ParentName,
3579       const OMPTargetParallelForDirective &S);
3580   /// Emit device code for the target parallel for simd directive.
3581   static void EmitOMPTargetParallelForSimdDeviceFunction(
3582       CodeGenModule &CGM, StringRef ParentName,
3583       const OMPTargetParallelForSimdDirective &S);
3584   /// Emit device code for the target teams directive.
3585   static void
3586   EmitOMPTargetTeamsDeviceFunction(CodeGenModule &CGM, StringRef ParentName,
3587                                    const OMPTargetTeamsDirective &S);
3588   /// Emit device code for the target teams distribute directive.
3589   static void EmitOMPTargetTeamsDistributeDeviceFunction(
3590       CodeGenModule &CGM, StringRef ParentName,
3591       const OMPTargetTeamsDistributeDirective &S);
3592   /// Emit device code for the target teams distribute simd directive.
3593   static void EmitOMPTargetTeamsDistributeSimdDeviceFunction(
3594       CodeGenModule &CGM, StringRef ParentName,
3595       const OMPTargetTeamsDistributeSimdDirective &S);
3596   /// Emit device code for the target simd directive.
3597   static void EmitOMPTargetSimdDeviceFunction(CodeGenModule &CGM,
3598                                               StringRef ParentName,
3599                                               const OMPTargetSimdDirective &S);
3600   /// Emit device code for the target teams distribute parallel for simd
3601   /// directive.
3602   static void EmitOMPTargetTeamsDistributeParallelForSimdDeviceFunction(
3603       CodeGenModule &CGM, StringRef ParentName,
3604       const OMPTargetTeamsDistributeParallelForSimdDirective &S);
3605 
3606   static void EmitOMPTargetTeamsDistributeParallelForDeviceFunction(
3607       CodeGenModule &CGM, StringRef ParentName,
3608       const OMPTargetTeamsDistributeParallelForDirective &S);
3609 
3610   /// Emit the Stmt \p S and return its topmost canonical loop, if any.
3611   /// TODO: The \p Depth paramter is not yet implemented and must be 1. In the
3612   /// future it is meant to be the number of loops expected in the loop nests
3613   /// (usually specified by the "collapse" clause) that are collapsed to a
3614   /// single loop by this function.
3615   llvm::CanonicalLoopInfo *EmitOMPCollapsedCanonicalLoopNest(const Stmt *S,
3616                                                              int Depth);
3617 
3618   /// Emit an OMPCanonicalLoop using the OpenMPIRBuilder.
3619   void EmitOMPCanonicalLoop(const OMPCanonicalLoop *S);
3620 
3621   /// Emit inner loop of the worksharing/simd construct.
3622   ///
3623   /// \param S Directive, for which the inner loop must be emitted.
3624   /// \param RequiresCleanup true, if directive has some associated private
3625   /// variables.
3626   /// \param LoopCond Bollean condition for loop continuation.
3627   /// \param IncExpr Increment expression for loop control variable.
3628   /// \param BodyGen Generator for the inner body of the inner loop.
3629   /// \param PostIncGen Genrator for post-increment code (required for ordered
3630   /// loop directvies).
3631   void EmitOMPInnerLoop(
3632       const OMPExecutableDirective &S, bool RequiresCleanup,
3633       const Expr *LoopCond, const Expr *IncExpr,
3634       const llvm::function_ref<void(CodeGenFunction &)> BodyGen,
3635       const llvm::function_ref<void(CodeGenFunction &)> PostIncGen);
3636 
3637   JumpDest getOMPCancelDestination(OpenMPDirectiveKind Kind);
3638   /// Emit initial code for loop counters of loop-based directives.
3639   void EmitOMPPrivateLoopCounters(const OMPLoopDirective &S,
3640                                   OMPPrivateScope &LoopScope);
3641 
3642   /// Helper for the OpenMP loop directives.
3643   void EmitOMPLoopBody(const OMPLoopDirective &D, JumpDest LoopExit);
3644 
3645   /// Emit code for the worksharing loop-based directive.
3646   /// \return true, if this construct has any lastprivate clause, false -
3647   /// otherwise.
3648   bool EmitOMPWorksharingLoop(const OMPLoopDirective &S, Expr *EUB,
3649                               const CodeGenLoopBoundsTy &CodeGenLoopBounds,
3650                               const CodeGenDispatchBoundsTy &CGDispatchBounds);
3651 
3652   /// Emit code for the distribute loop-based directive.
3653   void EmitOMPDistributeLoop(const OMPLoopDirective &S,
3654                              const CodeGenLoopTy &CodeGenLoop, Expr *IncExpr);
3655 
3656   /// Helpers for the OpenMP loop directives.
3657   void EmitOMPSimdInit(const OMPLoopDirective &D);
3658   void EmitOMPSimdFinal(
3659       const OMPLoopDirective &D,
3660       const llvm::function_ref<llvm::Value *(CodeGenFunction &)> CondGen);
3661 
3662   /// Emits the lvalue for the expression with possibly captured variable.
3663   LValue EmitOMPSharedLValue(const Expr *E);
3664 
3665 private:
3666   /// Helpers for blocks.
3667   llvm::Value *EmitBlockLiteral(const CGBlockInfo &Info);
3668 
3669   /// struct with the values to be passed to the OpenMP loop-related functions
3670   struct OMPLoopArguments {
3671     /// loop lower bound
3672     Address LB = Address::invalid();
3673     /// loop upper bound
3674     Address UB = Address::invalid();
3675     /// loop stride
3676     Address ST = Address::invalid();
3677     /// isLastIteration argument for runtime functions
3678     Address IL = Address::invalid();
3679     /// Chunk value generated by sema
3680     llvm::Value *Chunk = nullptr;
3681     /// EnsureUpperBound
3682     Expr *EUB = nullptr;
3683     /// IncrementExpression
3684     Expr *IncExpr = nullptr;
3685     /// Loop initialization
3686     Expr *Init = nullptr;
3687     /// Loop exit condition
3688     Expr *Cond = nullptr;
3689     /// Update of LB after a whole chunk has been executed
3690     Expr *NextLB = nullptr;
3691     /// Update of UB after a whole chunk has been executed
3692     Expr *NextUB = nullptr;
3693     OMPLoopArguments() = default;
3694     OMPLoopArguments(Address LB, Address UB, Address ST, Address IL,
3695                      llvm::Value *Chunk = nullptr, Expr *EUB = nullptr,
3696                      Expr *IncExpr = nullptr, Expr *Init = nullptr,
3697                      Expr *Cond = nullptr, Expr *NextLB = nullptr,
3698                      Expr *NextUB = nullptr)
3699         : LB(LB), UB(UB), ST(ST), IL(IL), Chunk(Chunk), EUB(EUB),
3700           IncExpr(IncExpr), Init(Init), Cond(Cond), NextLB(NextLB),
3701           NextUB(NextUB) {}
3702   };
3703   void EmitOMPOuterLoop(bool DynamicOrOrdered, bool IsMonotonic,
3704                         const OMPLoopDirective &S, OMPPrivateScope &LoopScope,
3705                         const OMPLoopArguments &LoopArgs,
3706                         const CodeGenLoopTy &CodeGenLoop,
3707                         const CodeGenOrderedTy &CodeGenOrdered);
3708   void EmitOMPForOuterLoop(const OpenMPScheduleTy &ScheduleKind,
3709                            bool IsMonotonic, const OMPLoopDirective &S,
3710                            OMPPrivateScope &LoopScope, bool Ordered,
3711                            const OMPLoopArguments &LoopArgs,
3712                            const CodeGenDispatchBoundsTy &CGDispatchBounds);
3713   void EmitOMPDistributeOuterLoop(OpenMPDistScheduleClauseKind ScheduleKind,
3714                                   const OMPLoopDirective &S,
3715                                   OMPPrivateScope &LoopScope,
3716                                   const OMPLoopArguments &LoopArgs,
3717                                   const CodeGenLoopTy &CodeGenLoopContent);
3718   /// Emit code for sections directive.
3719   void EmitSections(const OMPExecutableDirective &S);
3720 
3721 public:
3722 
3723   //===--------------------------------------------------------------------===//
3724   //                         LValue Expression Emission
3725   //===--------------------------------------------------------------------===//
3726 
3727   /// Create a check that a scalar RValue is non-null.
3728   llvm::Value *EmitNonNullRValueCheck(RValue RV, QualType T);
3729 
3730   /// GetUndefRValue - Get an appropriate 'undef' rvalue for the given type.
3731   RValue GetUndefRValue(QualType Ty);
3732 
3733   /// EmitUnsupportedRValue - Emit a dummy r-value using the type of E
3734   /// and issue an ErrorUnsupported style diagnostic (using the
3735   /// provided Name).
3736   RValue EmitUnsupportedRValue(const Expr *E,
3737                                const char *Name);
3738 
3739   /// EmitUnsupportedLValue - Emit a dummy l-value using the type of E and issue
3740   /// an ErrorUnsupported style diagnostic (using the provided Name).
3741   LValue EmitUnsupportedLValue(const Expr *E,
3742                                const char *Name);
3743 
3744   /// EmitLValue - Emit code to compute a designator that specifies the location
3745   /// of the expression.
3746   ///
3747   /// This can return one of two things: a simple address or a bitfield
3748   /// reference.  In either case, the LLVM Value* in the LValue structure is
3749   /// guaranteed to be an LLVM pointer type.
3750   ///
3751   /// If this returns a bitfield reference, nothing about the pointee type of
3752   /// the LLVM value is known: For example, it may not be a pointer to an
3753   /// integer.
3754   ///
3755   /// If this returns a normal address, and if the lvalue's C type is fixed
3756   /// size, this method guarantees that the returned pointer type will point to
3757   /// an LLVM type of the same size of the lvalue's type.  If the lvalue has a
3758   /// variable length type, this is not possible.
3759   ///
3760   LValue EmitLValue(const Expr *E);
3761 
3762   /// Same as EmitLValue but additionally we generate checking code to
3763   /// guard against undefined behavior.  This is only suitable when we know
3764   /// that the address will be used to access the object.
3765   LValue EmitCheckedLValue(const Expr *E, TypeCheckKind TCK);
3766 
3767   RValue convertTempToRValue(Address addr, QualType type,
3768                              SourceLocation Loc);
3769 
3770   void EmitAtomicInit(Expr *E, LValue lvalue);
3771 
3772   bool LValueIsSuitableForInlineAtomic(LValue Src);
3773 
3774   RValue EmitAtomicLoad(LValue LV, SourceLocation SL,
3775                         AggValueSlot Slot = AggValueSlot::ignored());
3776 
3777   RValue EmitAtomicLoad(LValue lvalue, SourceLocation loc,
3778                         llvm::AtomicOrdering AO, bool IsVolatile = false,
3779                         AggValueSlot slot = AggValueSlot::ignored());
3780 
3781   void EmitAtomicStore(RValue rvalue, LValue lvalue, bool isInit);
3782 
3783   void EmitAtomicStore(RValue rvalue, LValue lvalue, llvm::AtomicOrdering AO,
3784                        bool IsVolatile, bool isInit);
3785 
3786   std::pair<RValue, llvm::Value *> EmitAtomicCompareExchange(
3787       LValue Obj, RValue Expected, RValue Desired, SourceLocation Loc,
3788       llvm::AtomicOrdering Success =
3789           llvm::AtomicOrdering::SequentiallyConsistent,
3790       llvm::AtomicOrdering Failure =
3791           llvm::AtomicOrdering::SequentiallyConsistent,
3792       bool IsWeak = false, AggValueSlot Slot = AggValueSlot::ignored());
3793 
3794   void EmitAtomicUpdate(LValue LVal, llvm::AtomicOrdering AO,
3795                         const llvm::function_ref<RValue(RValue)> &UpdateOp,
3796                         bool IsVolatile);
3797 
3798   /// EmitToMemory - Change a scalar value from its value
3799   /// representation to its in-memory representation.
3800   llvm::Value *EmitToMemory(llvm::Value *Value, QualType Ty);
3801 
3802   /// EmitFromMemory - Change a scalar value from its memory
3803   /// representation to its value representation.
3804   llvm::Value *EmitFromMemory(llvm::Value *Value, QualType Ty);
3805 
3806   /// Check if the scalar \p Value is within the valid range for the given
3807   /// type \p Ty.
3808   ///
3809   /// Returns true if a check is needed (even if the range is unknown).
3810   bool EmitScalarRangeCheck(llvm::Value *Value, QualType Ty,
3811                             SourceLocation Loc);
3812 
3813   /// EmitLoadOfScalar - Load a scalar value from an address, taking
3814   /// care to appropriately convert from the memory representation to
3815   /// the LLVM value representation.
3816   llvm::Value *EmitLoadOfScalar(Address Addr, bool Volatile, QualType Ty,
3817                                 SourceLocation Loc,
3818                                 AlignmentSource Source = AlignmentSource::Type,
3819                                 bool isNontemporal = false) {
3820     return EmitLoadOfScalar(Addr, Volatile, Ty, Loc, LValueBaseInfo(Source),
3821                             CGM.getTBAAAccessInfo(Ty), isNontemporal);
3822   }
3823 
3824   llvm::Value *EmitLoadOfScalar(Address Addr, bool Volatile, QualType Ty,
3825                                 SourceLocation Loc, LValueBaseInfo BaseInfo,
3826                                 TBAAAccessInfo TBAAInfo,
3827                                 bool isNontemporal = false);
3828 
3829   /// EmitLoadOfScalar - Load a scalar value from an address, taking
3830   /// care to appropriately convert from the memory representation to
3831   /// the LLVM value representation.  The l-value must be a simple
3832   /// l-value.
3833   llvm::Value *EmitLoadOfScalar(LValue lvalue, SourceLocation Loc);
3834 
3835   /// EmitStoreOfScalar - Store a scalar value to an address, taking
3836   /// care to appropriately convert from the memory representation to
3837   /// the LLVM value representation.
3838   void EmitStoreOfScalar(llvm::Value *Value, Address Addr,
3839                          bool Volatile, QualType Ty,
3840                          AlignmentSource Source = AlignmentSource::Type,
3841                          bool isInit = false, bool isNontemporal = false) {
3842     EmitStoreOfScalar(Value, Addr, Volatile, Ty, LValueBaseInfo(Source),
3843                       CGM.getTBAAAccessInfo(Ty), isInit, isNontemporal);
3844   }
3845 
3846   void EmitStoreOfScalar(llvm::Value *Value, Address Addr,
3847                          bool Volatile, QualType Ty,
3848                          LValueBaseInfo BaseInfo, TBAAAccessInfo TBAAInfo,
3849                          bool isInit = false, bool isNontemporal = false);
3850 
3851   /// EmitStoreOfScalar - Store a scalar value to an address, taking
3852   /// care to appropriately convert from the memory representation to
3853   /// the LLVM value representation.  The l-value must be a simple
3854   /// l-value.  The isInit flag indicates whether this is an initialization.
3855   /// If so, atomic qualifiers are ignored and the store is always non-atomic.
3856   void EmitStoreOfScalar(llvm::Value *value, LValue lvalue, bool isInit=false);
3857 
3858   /// EmitLoadOfLValue - Given an expression that represents a value lvalue,
3859   /// this method emits the address of the lvalue, then loads the result as an
3860   /// rvalue, returning the rvalue.
3861   RValue EmitLoadOfLValue(LValue V, SourceLocation Loc);
3862   RValue EmitLoadOfExtVectorElementLValue(LValue V);
3863   RValue EmitLoadOfBitfieldLValue(LValue LV, SourceLocation Loc);
3864   RValue EmitLoadOfGlobalRegLValue(LValue LV);
3865 
3866   /// EmitStoreThroughLValue - Store the specified rvalue into the specified
3867   /// lvalue, where both are guaranteed to the have the same type, and that type
3868   /// is 'Ty'.
3869   void EmitStoreThroughLValue(RValue Src, LValue Dst, bool isInit = false);
3870   void EmitStoreThroughExtVectorComponentLValue(RValue Src, LValue Dst);
3871   void EmitStoreThroughGlobalRegLValue(RValue Src, LValue Dst);
3872 
3873   /// EmitStoreThroughBitfieldLValue - Store Src into Dst with same constraints
3874   /// as EmitStoreThroughLValue.
3875   ///
3876   /// \param Result [out] - If non-null, this will be set to a Value* for the
3877   /// bit-field contents after the store, appropriate for use as the result of
3878   /// an assignment to the bit-field.
3879   void EmitStoreThroughBitfieldLValue(RValue Src, LValue Dst,
3880                                       llvm::Value **Result=nullptr);
3881 
3882   /// Emit an l-value for an assignment (simple or compound) of complex type.
3883   LValue EmitComplexAssignmentLValue(const BinaryOperator *E);
3884   LValue EmitComplexCompoundAssignmentLValue(const CompoundAssignOperator *E);
3885   LValue EmitScalarCompoundAssignWithComplex(const CompoundAssignOperator *E,
3886                                              llvm::Value *&Result);
3887 
3888   // Note: only available for agg return types
3889   LValue EmitBinaryOperatorLValue(const BinaryOperator *E);
3890   LValue EmitCompoundAssignmentLValue(const CompoundAssignOperator *E);
3891   // Note: only available for agg return types
3892   LValue EmitCallExprLValue(const CallExpr *E);
3893   // Note: only available for agg return types
3894   LValue EmitVAArgExprLValue(const VAArgExpr *E);
3895   LValue EmitDeclRefLValue(const DeclRefExpr *E);
3896   LValue EmitStringLiteralLValue(const StringLiteral *E);
3897   LValue EmitObjCEncodeExprLValue(const ObjCEncodeExpr *E);
3898   LValue EmitPredefinedLValue(const PredefinedExpr *E);
3899   LValue EmitUnaryOpLValue(const UnaryOperator *E);
3900   LValue EmitArraySubscriptExpr(const ArraySubscriptExpr *E,
3901                                 bool Accessed = false);
3902   LValue EmitMatrixSubscriptExpr(const MatrixSubscriptExpr *E);
3903   LValue EmitOMPArraySectionExpr(const OMPArraySectionExpr *E,
3904                                  bool IsLowerBound = true);
3905   LValue EmitExtVectorElementExpr(const ExtVectorElementExpr *E);
3906   LValue EmitMemberExpr(const MemberExpr *E);
3907   LValue EmitObjCIsaExpr(const ObjCIsaExpr *E);
3908   LValue EmitCompoundLiteralLValue(const CompoundLiteralExpr *E);
3909   LValue EmitInitListLValue(const InitListExpr *E);
3910   LValue EmitConditionalOperatorLValue(const AbstractConditionalOperator *E);
3911   LValue EmitCastLValue(const CastExpr *E);
3912   LValue EmitMaterializeTemporaryExpr(const MaterializeTemporaryExpr *E);
3913   LValue EmitOpaqueValueLValue(const OpaqueValueExpr *e);
3914 
3915   Address EmitExtVectorElementLValue(LValue V);
3916 
3917   RValue EmitRValueForField(LValue LV, const FieldDecl *FD, SourceLocation Loc);
3918 
3919   Address EmitArrayToPointerDecay(const Expr *Array,
3920                                   LValueBaseInfo *BaseInfo = nullptr,
3921                                   TBAAAccessInfo *TBAAInfo = nullptr);
3922 
3923   class ConstantEmission {
3924     llvm::PointerIntPair<llvm::Constant*, 1, bool> ValueAndIsReference;
3925     ConstantEmission(llvm::Constant *C, bool isReference)
3926       : ValueAndIsReference(C, isReference) {}
3927   public:
3928     ConstantEmission() {}
3929     static ConstantEmission forReference(llvm::Constant *C) {
3930       return ConstantEmission(C, true);
3931     }
3932     static ConstantEmission forValue(llvm::Constant *C) {
3933       return ConstantEmission(C, false);
3934     }
3935 
3936     explicit operator bool() const {
3937       return ValueAndIsReference.getOpaqueValue() != nullptr;
3938     }
3939 
3940     bool isReference() const { return ValueAndIsReference.getInt(); }
3941     LValue getReferenceLValue(CodeGenFunction &CGF, Expr *refExpr) const {
3942       assert(isReference());
3943       return CGF.MakeNaturalAlignAddrLValue(ValueAndIsReference.getPointer(),
3944                                             refExpr->getType());
3945     }
3946 
3947     llvm::Constant *getValue() const {
3948       assert(!isReference());
3949       return ValueAndIsReference.getPointer();
3950     }
3951   };
3952 
3953   ConstantEmission tryEmitAsConstant(DeclRefExpr *refExpr);
3954   ConstantEmission tryEmitAsConstant(const MemberExpr *ME);
3955   llvm::Value *emitScalarConstant(const ConstantEmission &Constant, Expr *E);
3956 
3957   RValue EmitPseudoObjectRValue(const PseudoObjectExpr *e,
3958                                 AggValueSlot slot = AggValueSlot::ignored());
3959   LValue EmitPseudoObjectLValue(const PseudoObjectExpr *e);
3960 
3961   llvm::Value *EmitIvarOffset(const ObjCInterfaceDecl *Interface,
3962                               const ObjCIvarDecl *Ivar);
3963   LValue EmitLValueForField(LValue Base, const FieldDecl* Field);
3964   LValue EmitLValueForLambdaField(const FieldDecl *Field);
3965 
3966   /// EmitLValueForFieldInitialization - Like EmitLValueForField, except that
3967   /// if the Field is a reference, this will return the address of the reference
3968   /// and not the address of the value stored in the reference.
3969   LValue EmitLValueForFieldInitialization(LValue Base,
3970                                           const FieldDecl* Field);
3971 
3972   LValue EmitLValueForIvar(QualType ObjectTy,
3973                            llvm::Value* Base, const ObjCIvarDecl *Ivar,
3974                            unsigned CVRQualifiers);
3975 
3976   LValue EmitCXXConstructLValue(const CXXConstructExpr *E);
3977   LValue EmitCXXBindTemporaryLValue(const CXXBindTemporaryExpr *E);
3978   LValue EmitCXXTypeidLValue(const CXXTypeidExpr *E);
3979   LValue EmitCXXUuidofLValue(const CXXUuidofExpr *E);
3980 
3981   LValue EmitObjCMessageExprLValue(const ObjCMessageExpr *E);
3982   LValue EmitObjCIvarRefLValue(const ObjCIvarRefExpr *E);
3983   LValue EmitStmtExprLValue(const StmtExpr *E);
3984   LValue EmitPointerToDataMemberBinaryExpr(const BinaryOperator *E);
3985   LValue EmitObjCSelectorLValue(const ObjCSelectorExpr *E);
3986   void   EmitDeclRefExprDbgValue(const DeclRefExpr *E, const APValue &Init);
3987 
3988   //===--------------------------------------------------------------------===//
3989   //                         Scalar Expression Emission
3990   //===--------------------------------------------------------------------===//
3991 
3992   /// EmitCall - Generate a call of the given function, expecting the given
3993   /// result type, and using the given argument list which specifies both the
3994   /// LLVM arguments and the types they were derived from.
3995   RValue EmitCall(const CGFunctionInfo &CallInfo, const CGCallee &Callee,
3996                   ReturnValueSlot ReturnValue, const CallArgList &Args,
3997                   llvm::CallBase **callOrInvoke, bool IsMustTail,
3998                   SourceLocation Loc);
3999   RValue EmitCall(const CGFunctionInfo &CallInfo, const CGCallee &Callee,
4000                   ReturnValueSlot ReturnValue, const CallArgList &Args,
4001                   llvm::CallBase **callOrInvoke = nullptr,
4002                   bool IsMustTail = false) {
4003     return EmitCall(CallInfo, Callee, ReturnValue, Args, callOrInvoke,
4004                     IsMustTail, SourceLocation());
4005   }
4006   RValue EmitCall(QualType FnType, const CGCallee &Callee, const CallExpr *E,
4007                   ReturnValueSlot ReturnValue, llvm::Value *Chain = nullptr);
4008   RValue EmitCallExpr(const CallExpr *E,
4009                       ReturnValueSlot ReturnValue = ReturnValueSlot());
4010   RValue EmitSimpleCallExpr(const CallExpr *E, ReturnValueSlot ReturnValue);
4011   CGCallee EmitCallee(const Expr *E);
4012 
4013   void checkTargetFeatures(const CallExpr *E, const FunctionDecl *TargetDecl);
4014   void checkTargetFeatures(SourceLocation Loc, const FunctionDecl *TargetDecl);
4015 
4016   llvm::CallInst *EmitRuntimeCall(llvm::FunctionCallee callee,
4017                                   const Twine &name = "");
4018   llvm::CallInst *EmitRuntimeCall(llvm::FunctionCallee callee,
4019                                   ArrayRef<llvm::Value *> args,
4020                                   const Twine &name = "");
4021   llvm::CallInst *EmitNounwindRuntimeCall(llvm::FunctionCallee callee,
4022                                           const Twine &name = "");
4023   llvm::CallInst *EmitNounwindRuntimeCall(llvm::FunctionCallee callee,
4024                                           ArrayRef<llvm::Value *> args,
4025                                           const Twine &name = "");
4026 
4027   SmallVector<llvm::OperandBundleDef, 1>
4028   getBundlesForFunclet(llvm::Value *Callee);
4029 
4030   llvm::CallBase *EmitCallOrInvoke(llvm::FunctionCallee Callee,
4031                                    ArrayRef<llvm::Value *> Args,
4032                                    const Twine &Name = "");
4033   llvm::CallBase *EmitRuntimeCallOrInvoke(llvm::FunctionCallee callee,
4034                                           ArrayRef<llvm::Value *> args,
4035                                           const Twine &name = "");
4036   llvm::CallBase *EmitRuntimeCallOrInvoke(llvm::FunctionCallee callee,
4037                                           const Twine &name = "");
4038   void EmitNoreturnRuntimeCallOrInvoke(llvm::FunctionCallee callee,
4039                                        ArrayRef<llvm::Value *> args);
4040 
4041   CGCallee BuildAppleKextVirtualCall(const CXXMethodDecl *MD,
4042                                      NestedNameSpecifier *Qual,
4043                                      llvm::Type *Ty);
4044 
4045   CGCallee BuildAppleKextVirtualDestructorCall(const CXXDestructorDecl *DD,
4046                                                CXXDtorType Type,
4047                                                const CXXRecordDecl *RD);
4048 
4049   // Return the copy constructor name with the prefix "__copy_constructor_"
4050   // removed.
4051   static std::string getNonTrivialCopyConstructorStr(QualType QT,
4052                                                      CharUnits Alignment,
4053                                                      bool IsVolatile,
4054                                                      ASTContext &Ctx);
4055 
4056   // Return the destructor name with the prefix "__destructor_" removed.
4057   static std::string getNonTrivialDestructorStr(QualType QT,
4058                                                 CharUnits Alignment,
4059                                                 bool IsVolatile,
4060                                                 ASTContext &Ctx);
4061 
4062   // These functions emit calls to the special functions of non-trivial C
4063   // structs.
4064   void defaultInitNonTrivialCStructVar(LValue Dst);
4065   void callCStructDefaultConstructor(LValue Dst);
4066   void callCStructDestructor(LValue Dst);
4067   void callCStructCopyConstructor(LValue Dst, LValue Src);
4068   void callCStructMoveConstructor(LValue Dst, LValue Src);
4069   void callCStructCopyAssignmentOperator(LValue Dst, LValue Src);
4070   void callCStructMoveAssignmentOperator(LValue Dst, LValue Src);
4071 
4072   RValue
4073   EmitCXXMemberOrOperatorCall(const CXXMethodDecl *Method,
4074                               const CGCallee &Callee,
4075                               ReturnValueSlot ReturnValue, llvm::Value *This,
4076                               llvm::Value *ImplicitParam,
4077                               QualType ImplicitParamTy, const CallExpr *E,
4078                               CallArgList *RtlArgs);
4079   RValue EmitCXXDestructorCall(GlobalDecl Dtor, const CGCallee &Callee,
4080                                llvm::Value *This, QualType ThisTy,
4081                                llvm::Value *ImplicitParam,
4082                                QualType ImplicitParamTy, const CallExpr *E);
4083   RValue EmitCXXMemberCallExpr(const CXXMemberCallExpr *E,
4084                                ReturnValueSlot ReturnValue);
4085   RValue EmitCXXMemberOrOperatorMemberCallExpr(const CallExpr *CE,
4086                                                const CXXMethodDecl *MD,
4087                                                ReturnValueSlot ReturnValue,
4088                                                bool HasQualifier,
4089                                                NestedNameSpecifier *Qualifier,
4090                                                bool IsArrow, const Expr *Base);
4091   // Compute the object pointer.
4092   Address EmitCXXMemberDataPointerAddress(const Expr *E, Address base,
4093                                           llvm::Value *memberPtr,
4094                                           const MemberPointerType *memberPtrType,
4095                                           LValueBaseInfo *BaseInfo = nullptr,
4096                                           TBAAAccessInfo *TBAAInfo = nullptr);
4097   RValue EmitCXXMemberPointerCallExpr(const CXXMemberCallExpr *E,
4098                                       ReturnValueSlot ReturnValue);
4099 
4100   RValue EmitCXXOperatorMemberCallExpr(const CXXOperatorCallExpr *E,
4101                                        const CXXMethodDecl *MD,
4102                                        ReturnValueSlot ReturnValue);
4103   RValue EmitCXXPseudoDestructorExpr(const CXXPseudoDestructorExpr *E);
4104 
4105   RValue EmitCUDAKernelCallExpr(const CUDAKernelCallExpr *E,
4106                                 ReturnValueSlot ReturnValue);
4107 
4108   RValue EmitNVPTXDevicePrintfCallExpr(const CallExpr *E);
4109   RValue EmitAMDGPUDevicePrintfCallExpr(const CallExpr *E);
4110   RValue EmitOpenMPDevicePrintfCallExpr(const CallExpr *E);
4111 
4112   RValue EmitBuiltinExpr(const GlobalDecl GD, unsigned BuiltinID,
4113                          const CallExpr *E, ReturnValueSlot ReturnValue);
4114 
4115   RValue emitRotate(const CallExpr *E, bool IsRotateRight);
4116 
4117   /// Emit IR for __builtin_os_log_format.
4118   RValue emitBuiltinOSLogFormat(const CallExpr &E);
4119 
4120   /// Emit IR for __builtin_is_aligned.
4121   RValue EmitBuiltinIsAligned(const CallExpr *E);
4122   /// Emit IR for __builtin_align_up/__builtin_align_down.
4123   RValue EmitBuiltinAlignTo(const CallExpr *E, bool AlignUp);
4124 
4125   llvm::Function *generateBuiltinOSLogHelperFunction(
4126       const analyze_os_log::OSLogBufferLayout &Layout,
4127       CharUnits BufferAlignment);
4128 
4129   RValue EmitBlockCallExpr(const CallExpr *E, ReturnValueSlot ReturnValue);
4130 
4131   /// EmitTargetBuiltinExpr - Emit the given builtin call. Returns 0 if the call
4132   /// is unhandled by the current target.
4133   llvm::Value *EmitTargetBuiltinExpr(unsigned BuiltinID, const CallExpr *E,
4134                                      ReturnValueSlot ReturnValue);
4135 
4136   llvm::Value *EmitAArch64CompareBuiltinExpr(llvm::Value *Op, llvm::Type *Ty,
4137                                              const llvm::CmpInst::Predicate Fp,
4138                                              const llvm::CmpInst::Predicate Ip,
4139                                              const llvm::Twine &Name = "");
4140   llvm::Value *EmitARMBuiltinExpr(unsigned BuiltinID, const CallExpr *E,
4141                                   ReturnValueSlot ReturnValue,
4142                                   llvm::Triple::ArchType Arch);
4143   llvm::Value *EmitARMMVEBuiltinExpr(unsigned BuiltinID, const CallExpr *E,
4144                                      ReturnValueSlot ReturnValue,
4145                                      llvm::Triple::ArchType Arch);
4146   llvm::Value *EmitARMCDEBuiltinExpr(unsigned BuiltinID, const CallExpr *E,
4147                                      ReturnValueSlot ReturnValue,
4148                                      llvm::Triple::ArchType Arch);
4149   llvm::Value *EmitCMSEClearRecord(llvm::Value *V, llvm::IntegerType *ITy,
4150                                    QualType RTy);
4151   llvm::Value *EmitCMSEClearRecord(llvm::Value *V, llvm::ArrayType *ATy,
4152                                    QualType RTy);
4153 
4154   llvm::Value *EmitCommonNeonBuiltinExpr(unsigned BuiltinID,
4155                                          unsigned LLVMIntrinsic,
4156                                          unsigned AltLLVMIntrinsic,
4157                                          const char *NameHint,
4158                                          unsigned Modifier,
4159                                          const CallExpr *E,
4160                                          SmallVectorImpl<llvm::Value *> &Ops,
4161                                          Address PtrOp0, Address PtrOp1,
4162                                          llvm::Triple::ArchType Arch);
4163 
4164   llvm::Function *LookupNeonLLVMIntrinsic(unsigned IntrinsicID,
4165                                           unsigned Modifier, llvm::Type *ArgTy,
4166                                           const CallExpr *E);
4167   llvm::Value *EmitNeonCall(llvm::Function *F,
4168                             SmallVectorImpl<llvm::Value*> &O,
4169                             const char *name,
4170                             unsigned shift = 0, bool rightshift = false);
4171   llvm::Value *EmitNeonSplat(llvm::Value *V, llvm::Constant *Idx,
4172                              const llvm::ElementCount &Count);
4173   llvm::Value *EmitNeonSplat(llvm::Value *V, llvm::Constant *Idx);
4174   llvm::Value *EmitNeonShiftVector(llvm::Value *V, llvm::Type *Ty,
4175                                    bool negateForRightShift);
4176   llvm::Value *EmitNeonRShiftImm(llvm::Value *Vec, llvm::Value *Amt,
4177                                  llvm::Type *Ty, bool usgn, const char *name);
4178   llvm::Value *vectorWrapScalar16(llvm::Value *Op);
4179   /// SVEBuiltinMemEltTy - Returns the memory element type for this memory
4180   /// access builtin.  Only required if it can't be inferred from the base
4181   /// pointer operand.
4182   llvm::Type *SVEBuiltinMemEltTy(const SVETypeFlags &TypeFlags);
4183 
4184   SmallVector<llvm::Type *, 2>
4185   getSVEOverloadTypes(const SVETypeFlags &TypeFlags, llvm::Type *ReturnType,
4186                       ArrayRef<llvm::Value *> Ops);
4187   llvm::Type *getEltType(const SVETypeFlags &TypeFlags);
4188   llvm::ScalableVectorType *getSVEType(const SVETypeFlags &TypeFlags);
4189   llvm::ScalableVectorType *getSVEPredType(const SVETypeFlags &TypeFlags);
4190   llvm::Value *EmitSVEAllTruePred(const SVETypeFlags &TypeFlags);
4191   llvm::Value *EmitSVEDupX(llvm::Value *Scalar);
4192   llvm::Value *EmitSVEDupX(llvm::Value *Scalar, llvm::Type *Ty);
4193   llvm::Value *EmitSVEReinterpret(llvm::Value *Val, llvm::Type *Ty);
4194   llvm::Value *EmitSVEPMull(const SVETypeFlags &TypeFlags,
4195                             llvm::SmallVectorImpl<llvm::Value *> &Ops,
4196                             unsigned BuiltinID);
4197   llvm::Value *EmitSVEMovl(const SVETypeFlags &TypeFlags,
4198                            llvm::ArrayRef<llvm::Value *> Ops,
4199                            unsigned BuiltinID);
4200   llvm::Value *EmitSVEPredicateCast(llvm::Value *Pred,
4201                                     llvm::ScalableVectorType *VTy);
4202   llvm::Value *EmitSVEGatherLoad(const SVETypeFlags &TypeFlags,
4203                                  llvm::SmallVectorImpl<llvm::Value *> &Ops,
4204                                  unsigned IntID);
4205   llvm::Value *EmitSVEScatterStore(const SVETypeFlags &TypeFlags,
4206                                    llvm::SmallVectorImpl<llvm::Value *> &Ops,
4207                                    unsigned IntID);
4208   llvm::Value *EmitSVEMaskedLoad(const CallExpr *, llvm::Type *ReturnTy,
4209                                  SmallVectorImpl<llvm::Value *> &Ops,
4210                                  unsigned BuiltinID, bool IsZExtReturn);
4211   llvm::Value *EmitSVEMaskedStore(const CallExpr *,
4212                                   SmallVectorImpl<llvm::Value *> &Ops,
4213                                   unsigned BuiltinID);
4214   llvm::Value *EmitSVEPrefetchLoad(const SVETypeFlags &TypeFlags,
4215                                    SmallVectorImpl<llvm::Value *> &Ops,
4216                                    unsigned BuiltinID);
4217   llvm::Value *EmitSVEGatherPrefetch(const SVETypeFlags &TypeFlags,
4218                                      SmallVectorImpl<llvm::Value *> &Ops,
4219                                      unsigned IntID);
4220   llvm::Value *EmitSVEStructLoad(const SVETypeFlags &TypeFlags,
4221                                  SmallVectorImpl<llvm::Value *> &Ops,
4222                                  unsigned IntID);
4223   llvm::Value *EmitSVEStructStore(const SVETypeFlags &TypeFlags,
4224                                   SmallVectorImpl<llvm::Value *> &Ops,
4225                                   unsigned IntID);
4226   llvm::Value *EmitAArch64SVEBuiltinExpr(unsigned BuiltinID, const CallExpr *E);
4227 
4228   llvm::Value *EmitAArch64BuiltinExpr(unsigned BuiltinID, const CallExpr *E,
4229                                       llvm::Triple::ArchType Arch);
4230   llvm::Value *EmitBPFBuiltinExpr(unsigned BuiltinID, const CallExpr *E);
4231 
4232   llvm::Value *BuildVector(ArrayRef<llvm::Value*> Ops);
4233   llvm::Value *EmitX86BuiltinExpr(unsigned BuiltinID, const CallExpr *E);
4234   llvm::Value *EmitPPCBuiltinExpr(unsigned BuiltinID, const CallExpr *E);
4235   llvm::Value *EmitAMDGPUBuiltinExpr(unsigned BuiltinID, const CallExpr *E);
4236   llvm::Value *EmitSystemZBuiltinExpr(unsigned BuiltinID, const CallExpr *E);
4237   llvm::Value *EmitNVPTXBuiltinExpr(unsigned BuiltinID, const CallExpr *E);
4238   llvm::Value *EmitWebAssemblyBuiltinExpr(unsigned BuiltinID,
4239                                           const CallExpr *E);
4240   llvm::Value *EmitHexagonBuiltinExpr(unsigned BuiltinID, const CallExpr *E);
4241   llvm::Value *EmitRISCVBuiltinExpr(unsigned BuiltinID, const CallExpr *E,
4242                                     ReturnValueSlot ReturnValue);
4243   bool ProcessOrderScopeAMDGCN(llvm::Value *Order, llvm::Value *Scope,
4244                                llvm::AtomicOrdering &AO,
4245                                llvm::SyncScope::ID &SSID);
4246 
4247   enum class MSVCIntrin;
4248   llvm::Value *EmitMSVCBuiltinExpr(MSVCIntrin BuiltinID, const CallExpr *E);
4249 
4250   llvm::Value *EmitBuiltinAvailable(const VersionTuple &Version);
4251 
4252   llvm::Value *EmitObjCProtocolExpr(const ObjCProtocolExpr *E);
4253   llvm::Value *EmitObjCStringLiteral(const ObjCStringLiteral *E);
4254   llvm::Value *EmitObjCBoxedExpr(const ObjCBoxedExpr *E);
4255   llvm::Value *EmitObjCArrayLiteral(const ObjCArrayLiteral *E);
4256   llvm::Value *EmitObjCDictionaryLiteral(const ObjCDictionaryLiteral *E);
4257   llvm::Value *EmitObjCCollectionLiteral(const Expr *E,
4258                                 const ObjCMethodDecl *MethodWithObjects);
4259   llvm::Value *EmitObjCSelectorExpr(const ObjCSelectorExpr *E);
4260   RValue EmitObjCMessageExpr(const ObjCMessageExpr *E,
4261                              ReturnValueSlot Return = ReturnValueSlot());
4262 
4263   /// Retrieves the default cleanup kind for an ARC cleanup.
4264   /// Except under -fobjc-arc-eh, ARC cleanups are normal-only.
4265   CleanupKind getARCCleanupKind() {
4266     return CGM.getCodeGenOpts().ObjCAutoRefCountExceptions
4267              ? NormalAndEHCleanup : NormalCleanup;
4268   }
4269 
4270   // ARC primitives.
4271   void EmitARCInitWeak(Address addr, llvm::Value *value);
4272   void EmitARCDestroyWeak(Address addr);
4273   llvm::Value *EmitARCLoadWeak(Address addr);
4274   llvm::Value *EmitARCLoadWeakRetained(Address addr);
4275   llvm::Value *EmitARCStoreWeak(Address addr, llvm::Value *value, bool ignored);
4276   void emitARCCopyAssignWeak(QualType Ty, Address DstAddr, Address SrcAddr);
4277   void emitARCMoveAssignWeak(QualType Ty, Address DstAddr, Address SrcAddr);
4278   void EmitARCCopyWeak(Address dst, Address src);
4279   void EmitARCMoveWeak(Address dst, Address src);
4280   llvm::Value *EmitARCRetainAutorelease(QualType type, llvm::Value *value);
4281   llvm::Value *EmitARCRetainAutoreleaseNonBlock(llvm::Value *value);
4282   llvm::Value *EmitARCStoreStrong(LValue lvalue, llvm::Value *value,
4283                                   bool resultIgnored);
4284   llvm::Value *EmitARCStoreStrongCall(Address addr, llvm::Value *value,
4285                                       bool resultIgnored);
4286   llvm::Value *EmitARCRetain(QualType type, llvm::Value *value);
4287   llvm::Value *EmitARCRetainNonBlock(llvm::Value *value);
4288   llvm::Value *EmitARCRetainBlock(llvm::Value *value, bool mandatory);
4289   void EmitARCDestroyStrong(Address addr, ARCPreciseLifetime_t precise);
4290   void EmitARCRelease(llvm::Value *value, ARCPreciseLifetime_t precise);
4291   llvm::Value *EmitARCAutorelease(llvm::Value *value);
4292   llvm::Value *EmitARCAutoreleaseReturnValue(llvm::Value *value);
4293   llvm::Value *EmitARCRetainAutoreleaseReturnValue(llvm::Value *value);
4294   llvm::Value *EmitARCRetainAutoreleasedReturnValue(llvm::Value *value);
4295   llvm::Value *EmitARCUnsafeClaimAutoreleasedReturnValue(llvm::Value *value);
4296 
4297   llvm::Value *EmitObjCAutorelease(llvm::Value *value, llvm::Type *returnType);
4298   llvm::Value *EmitObjCRetainNonBlock(llvm::Value *value,
4299                                       llvm::Type *returnType);
4300   void EmitObjCRelease(llvm::Value *value, ARCPreciseLifetime_t precise);
4301 
4302   std::pair<LValue,llvm::Value*>
4303   EmitARCStoreAutoreleasing(const BinaryOperator *e);
4304   std::pair<LValue,llvm::Value*>
4305   EmitARCStoreStrong(const BinaryOperator *e, bool ignored);
4306   std::pair<LValue,llvm::Value*>
4307   EmitARCStoreUnsafeUnretained(const BinaryOperator *e, bool ignored);
4308 
4309   llvm::Value *EmitObjCAlloc(llvm::Value *value,
4310                              llvm::Type *returnType);
4311   llvm::Value *EmitObjCAllocWithZone(llvm::Value *value,
4312                                      llvm::Type *returnType);
4313   llvm::Value *EmitObjCAllocInit(llvm::Value *value, llvm::Type *resultType);
4314 
4315   llvm::Value *EmitObjCThrowOperand(const Expr *expr);
4316   llvm::Value *EmitObjCConsumeObject(QualType T, llvm::Value *Ptr);
4317   llvm::Value *EmitObjCExtendObjectLifetime(QualType T, llvm::Value *Ptr);
4318 
4319   llvm::Value *EmitARCExtendBlockObject(const Expr *expr);
4320   llvm::Value *EmitARCReclaimReturnedObject(const Expr *e,
4321                                             bool allowUnsafeClaim);
4322   llvm::Value *EmitARCRetainScalarExpr(const Expr *expr);
4323   llvm::Value *EmitARCRetainAutoreleaseScalarExpr(const Expr *expr);
4324   llvm::Value *EmitARCUnsafeUnretainedScalarExpr(const Expr *expr);
4325 
4326   void EmitARCIntrinsicUse(ArrayRef<llvm::Value*> values);
4327 
4328   void EmitARCNoopIntrinsicUse(ArrayRef<llvm::Value *> values);
4329 
4330   static Destroyer destroyARCStrongImprecise;
4331   static Destroyer destroyARCStrongPrecise;
4332   static Destroyer destroyARCWeak;
4333   static Destroyer emitARCIntrinsicUse;
4334   static Destroyer destroyNonTrivialCStruct;
4335 
4336   void EmitObjCAutoreleasePoolPop(llvm::Value *Ptr);
4337   llvm::Value *EmitObjCAutoreleasePoolPush();
4338   llvm::Value *EmitObjCMRRAutoreleasePoolPush();
4339   void EmitObjCAutoreleasePoolCleanup(llvm::Value *Ptr);
4340   void EmitObjCMRRAutoreleasePoolPop(llvm::Value *Ptr);
4341 
4342   /// Emits a reference binding to the passed in expression.
4343   RValue EmitReferenceBindingToExpr(const Expr *E);
4344 
4345   //===--------------------------------------------------------------------===//
4346   //                           Expression Emission
4347   //===--------------------------------------------------------------------===//
4348 
4349   // Expressions are broken into three classes: scalar, complex, aggregate.
4350 
4351   /// EmitScalarExpr - Emit the computation of the specified expression of LLVM
4352   /// scalar type, returning the result.
4353   llvm::Value *EmitScalarExpr(const Expr *E , bool IgnoreResultAssign = false);
4354 
4355   /// Emit a conversion from the specified type to the specified destination
4356   /// type, both of which are LLVM scalar types.
4357   llvm::Value *EmitScalarConversion(llvm::Value *Src, QualType SrcTy,
4358                                     QualType DstTy, SourceLocation Loc);
4359 
4360   /// Emit a conversion from the specified complex type to the specified
4361   /// destination type, where the destination type is an LLVM scalar type.
4362   llvm::Value *EmitComplexToScalarConversion(ComplexPairTy Src, QualType SrcTy,
4363                                              QualType DstTy,
4364                                              SourceLocation Loc);
4365 
4366   /// EmitAggExpr - Emit the computation of the specified expression
4367   /// of aggregate type.  The result is computed into the given slot,
4368   /// which may be null to indicate that the value is not needed.
4369   void EmitAggExpr(const Expr *E, AggValueSlot AS);
4370 
4371   /// EmitAggExprToLValue - Emit the computation of the specified expression of
4372   /// aggregate type into a temporary LValue.
4373   LValue EmitAggExprToLValue(const Expr *E);
4374 
4375   /// Build all the stores needed to initialize an aggregate at Dest with the
4376   /// value Val.
4377   void EmitAggregateStore(llvm::Value *Val, Address Dest, bool DestIsVolatile);
4378 
4379   /// EmitExtendGCLifetime - Given a pointer to an Objective-C object,
4380   /// make sure it survives garbage collection until this point.
4381   void EmitExtendGCLifetime(llvm::Value *object);
4382 
4383   /// EmitComplexExpr - Emit the computation of the specified expression of
4384   /// complex type, returning the result.
4385   ComplexPairTy EmitComplexExpr(const Expr *E,
4386                                 bool IgnoreReal = false,
4387                                 bool IgnoreImag = false);
4388 
4389   /// EmitComplexExprIntoLValue - Emit the given expression of complex
4390   /// type and place its result into the specified l-value.
4391   void EmitComplexExprIntoLValue(const Expr *E, LValue dest, bool isInit);
4392 
4393   /// EmitStoreOfComplex - Store a complex number into the specified l-value.
4394   void EmitStoreOfComplex(ComplexPairTy V, LValue dest, bool isInit);
4395 
4396   /// EmitLoadOfComplex - Load a complex number from the specified l-value.
4397   ComplexPairTy EmitLoadOfComplex(LValue src, SourceLocation loc);
4398 
4399   Address emitAddrOfRealComponent(Address complex, QualType complexType);
4400   Address emitAddrOfImagComponent(Address complex, QualType complexType);
4401 
4402   /// AddInitializerToStaticVarDecl - Add the initializer for 'D' to the
4403   /// global variable that has already been created for it.  If the initializer
4404   /// has a different type than GV does, this may free GV and return a different
4405   /// one.  Otherwise it just returns GV.
4406   llvm::GlobalVariable *
4407   AddInitializerToStaticVarDecl(const VarDecl &D,
4408                                 llvm::GlobalVariable *GV);
4409 
4410   // Emit an @llvm.invariant.start call for the given memory region.
4411   void EmitInvariantStart(llvm::Constant *Addr, CharUnits Size);
4412 
4413   /// EmitCXXGlobalVarDeclInit - Create the initializer for a C++
4414   /// variable with global storage.
4415   void EmitCXXGlobalVarDeclInit(const VarDecl &D, llvm::GlobalVariable *GV,
4416                                 bool PerformInit);
4417 
4418   llvm::Function *createAtExitStub(const VarDecl &VD, llvm::FunctionCallee Dtor,
4419                                    llvm::Constant *Addr);
4420 
4421   llvm::Function *createTLSAtExitStub(const VarDecl &VD,
4422                                       llvm::FunctionCallee Dtor,
4423                                       llvm::Constant *Addr,
4424                                       llvm::FunctionCallee &AtExit);
4425 
4426   /// Call atexit() with a function that passes the given argument to
4427   /// the given function.
4428   void registerGlobalDtorWithAtExit(const VarDecl &D, llvm::FunctionCallee fn,
4429                                     llvm::Constant *addr);
4430 
4431   /// Call atexit() with function dtorStub.
4432   void registerGlobalDtorWithAtExit(llvm::Constant *dtorStub);
4433 
4434   /// Call unatexit() with function dtorStub.
4435   llvm::Value *unregisterGlobalDtorWithUnAtExit(llvm::Constant *dtorStub);
4436 
4437   /// Emit code in this function to perform a guarded variable
4438   /// initialization.  Guarded initializations are used when it's not
4439   /// possible to prove that an initialization will be done exactly
4440   /// once, e.g. with a static local variable or a static data member
4441   /// of a class template.
4442   void EmitCXXGuardedInit(const VarDecl &D, llvm::GlobalVariable *DeclPtr,
4443                           bool PerformInit);
4444 
4445   enum class GuardKind { VariableGuard, TlsGuard };
4446 
4447   /// Emit a branch to select whether or not to perform guarded initialization.
4448   void EmitCXXGuardedInitBranch(llvm::Value *NeedsInit,
4449                                 llvm::BasicBlock *InitBlock,
4450                                 llvm::BasicBlock *NoInitBlock,
4451                                 GuardKind Kind, const VarDecl *D);
4452 
4453   /// GenerateCXXGlobalInitFunc - Generates code for initializing global
4454   /// variables.
4455   void
4456   GenerateCXXGlobalInitFunc(llvm::Function *Fn,
4457                             ArrayRef<llvm::Function *> CXXThreadLocals,
4458                             ConstantAddress Guard = ConstantAddress::invalid());
4459 
4460   /// GenerateCXXGlobalCleanUpFunc - Generates code for cleaning up global
4461   /// variables.
4462   void GenerateCXXGlobalCleanUpFunc(
4463       llvm::Function *Fn,
4464       ArrayRef<std::tuple<llvm::FunctionType *, llvm::WeakTrackingVH,
4465                           llvm::Constant *>>
4466           DtorsOrStermFinalizers);
4467 
4468   void GenerateCXXGlobalVarDeclInitFunc(llvm::Function *Fn,
4469                                         const VarDecl *D,
4470                                         llvm::GlobalVariable *Addr,
4471                                         bool PerformInit);
4472 
4473   void EmitCXXConstructExpr(const CXXConstructExpr *E, AggValueSlot Dest);
4474 
4475   void EmitSynthesizedCXXCopyCtor(Address Dest, Address Src, const Expr *Exp);
4476 
4477   void EmitCXXThrowExpr(const CXXThrowExpr *E, bool KeepInsertionPoint = true);
4478 
4479   RValue EmitAtomicExpr(AtomicExpr *E);
4480 
4481   //===--------------------------------------------------------------------===//
4482   //                         Annotations Emission
4483   //===--------------------------------------------------------------------===//
4484 
4485   /// Emit an annotation call (intrinsic).
4486   llvm::Value *EmitAnnotationCall(llvm::Function *AnnotationFn,
4487                                   llvm::Value *AnnotatedVal,
4488                                   StringRef AnnotationStr,
4489                                   SourceLocation Location,
4490                                   const AnnotateAttr *Attr);
4491 
4492   /// Emit local annotations for the local variable V, declared by D.
4493   void EmitVarAnnotations(const VarDecl *D, llvm::Value *V);
4494 
4495   /// Emit field annotations for the given field & value. Returns the
4496   /// annotation result.
4497   Address EmitFieldAnnotations(const FieldDecl *D, Address V);
4498 
4499   //===--------------------------------------------------------------------===//
4500   //                             Internal Helpers
4501   //===--------------------------------------------------------------------===//
4502 
4503   /// ContainsLabel - Return true if the statement contains a label in it.  If
4504   /// this statement is not executed normally, it not containing a label means
4505   /// that we can just remove the code.
4506   static bool ContainsLabel(const Stmt *S, bool IgnoreCaseStmts = false);
4507 
4508   /// containsBreak - Return true if the statement contains a break out of it.
4509   /// If the statement (recursively) contains a switch or loop with a break
4510   /// inside of it, this is fine.
4511   static bool containsBreak(const Stmt *S);
4512 
4513   /// Determine if the given statement might introduce a declaration into the
4514   /// current scope, by being a (possibly-labelled) DeclStmt.
4515   static bool mightAddDeclToScope(const Stmt *S);
4516 
4517   /// ConstantFoldsToSimpleInteger - If the specified expression does not fold
4518   /// to a constant, or if it does but contains a label, return false.  If it
4519   /// constant folds return true and set the boolean result in Result.
4520   bool ConstantFoldsToSimpleInteger(const Expr *Cond, bool &Result,
4521                                     bool AllowLabels = false);
4522 
4523   /// ConstantFoldsToSimpleInteger - If the specified expression does not fold
4524   /// to a constant, or if it does but contains a label, return false.  If it
4525   /// constant folds return true and set the folded value.
4526   bool ConstantFoldsToSimpleInteger(const Expr *Cond, llvm::APSInt &Result,
4527                                     bool AllowLabels = false);
4528 
4529   /// isInstrumentedCondition - Determine whether the given condition is an
4530   /// instrumentable condition (i.e. no "&&" or "||").
4531   static bool isInstrumentedCondition(const Expr *C);
4532 
4533   /// EmitBranchToCounterBlock - Emit a conditional branch to a new block that
4534   /// increments a profile counter based on the semantics of the given logical
4535   /// operator opcode.  This is used to instrument branch condition coverage
4536   /// for logical operators.
4537   void EmitBranchToCounterBlock(const Expr *Cond, BinaryOperator::Opcode LOp,
4538                                 llvm::BasicBlock *TrueBlock,
4539                                 llvm::BasicBlock *FalseBlock,
4540                                 uint64_t TrueCount = 0,
4541                                 Stmt::Likelihood LH = Stmt::LH_None,
4542                                 const Expr *CntrIdx = nullptr);
4543 
4544   /// EmitBranchOnBoolExpr - Emit a branch on a boolean condition (e.g. for an
4545   /// if statement) to the specified blocks.  Based on the condition, this might
4546   /// try to simplify the codegen of the conditional based on the branch.
4547   /// TrueCount should be the number of times we expect the condition to
4548   /// evaluate to true based on PGO data.
4549   void EmitBranchOnBoolExpr(const Expr *Cond, llvm::BasicBlock *TrueBlock,
4550                             llvm::BasicBlock *FalseBlock, uint64_t TrueCount,
4551                             Stmt::Likelihood LH = Stmt::LH_None);
4552 
4553   /// Given an assignment `*LHS = RHS`, emit a test that checks if \p RHS is
4554   /// nonnull, if \p LHS is marked _Nonnull.
4555   void EmitNullabilityCheck(LValue LHS, llvm::Value *RHS, SourceLocation Loc);
4556 
4557   /// An enumeration which makes it easier to specify whether or not an
4558   /// operation is a subtraction.
4559   enum { NotSubtraction = false, IsSubtraction = true };
4560 
4561   /// Same as IRBuilder::CreateInBoundsGEP, but additionally emits a check to
4562   /// detect undefined behavior when the pointer overflow sanitizer is enabled.
4563   /// \p SignedIndices indicates whether any of the GEP indices are signed.
4564   /// \p IsSubtraction indicates whether the expression used to form the GEP
4565   /// is a subtraction.
4566   llvm::Value *EmitCheckedInBoundsGEP(llvm::Type *ElemTy, llvm::Value *Ptr,
4567                                       ArrayRef<llvm::Value *> IdxList,
4568                                       bool SignedIndices,
4569                                       bool IsSubtraction,
4570                                       SourceLocation Loc,
4571                                       const Twine &Name = "");
4572 
4573   /// Specifies which type of sanitizer check to apply when handling a
4574   /// particular builtin.
4575   enum BuiltinCheckKind {
4576     BCK_CTZPassedZero,
4577     BCK_CLZPassedZero,
4578   };
4579 
4580   /// Emits an argument for a call to a builtin. If the builtin sanitizer is
4581   /// enabled, a runtime check specified by \p Kind is also emitted.
4582   llvm::Value *EmitCheckedArgForBuiltin(const Expr *E, BuiltinCheckKind Kind);
4583 
4584   /// Emit a description of a type in a format suitable for passing to
4585   /// a runtime sanitizer handler.
4586   llvm::Constant *EmitCheckTypeDescriptor(QualType T);
4587 
4588   /// Convert a value into a format suitable for passing to a runtime
4589   /// sanitizer handler.
4590   llvm::Value *EmitCheckValue(llvm::Value *V);
4591 
4592   /// Emit a description of a source location in a format suitable for
4593   /// passing to a runtime sanitizer handler.
4594   llvm::Constant *EmitCheckSourceLocation(SourceLocation Loc);
4595 
4596   /// Create a basic block that will either trap or call a handler function in
4597   /// the UBSan runtime with the provided arguments, and create a conditional
4598   /// branch to it.
4599   void EmitCheck(ArrayRef<std::pair<llvm::Value *, SanitizerMask>> Checked,
4600                  SanitizerHandler Check, ArrayRef<llvm::Constant *> StaticArgs,
4601                  ArrayRef<llvm::Value *> DynamicArgs);
4602 
4603   /// Emit a slow path cross-DSO CFI check which calls __cfi_slowpath
4604   /// if Cond if false.
4605   void EmitCfiSlowPathCheck(SanitizerMask Kind, llvm::Value *Cond,
4606                             llvm::ConstantInt *TypeId, llvm::Value *Ptr,
4607                             ArrayRef<llvm::Constant *> StaticArgs);
4608 
4609   /// Emit a reached-unreachable diagnostic if \p Loc is valid and runtime
4610   /// checking is enabled. Otherwise, just emit an unreachable instruction.
4611   void EmitUnreachable(SourceLocation Loc);
4612 
4613   /// Create a basic block that will call the trap intrinsic, and emit a
4614   /// conditional branch to it, for the -ftrapv checks.
4615   void EmitTrapCheck(llvm::Value *Checked, SanitizerHandler CheckHandlerID);
4616 
4617   /// Emit a call to trap or debugtrap and attach function attribute
4618   /// "trap-func-name" if specified.
4619   llvm::CallInst *EmitTrapCall(llvm::Intrinsic::ID IntrID);
4620 
4621   /// Emit a stub for the cross-DSO CFI check function.
4622   void EmitCfiCheckStub();
4623 
4624   /// Emit a cross-DSO CFI failure handling function.
4625   void EmitCfiCheckFail();
4626 
4627   /// Create a check for a function parameter that may potentially be
4628   /// declared as non-null.
4629   void EmitNonNullArgCheck(RValue RV, QualType ArgType, SourceLocation ArgLoc,
4630                            AbstractCallee AC, unsigned ParmNum);
4631 
4632   /// EmitCallArg - Emit a single call argument.
4633   void EmitCallArg(CallArgList &args, const Expr *E, QualType ArgType);
4634 
4635   /// EmitDelegateCallArg - We are performing a delegate call; that
4636   /// is, the current function is delegating to another one.  Produce
4637   /// a r-value suitable for passing the given parameter.
4638   void EmitDelegateCallArg(CallArgList &args, const VarDecl *param,
4639                            SourceLocation loc);
4640 
4641   /// SetFPAccuracy - Set the minimum required accuracy of the given floating
4642   /// point operation, expressed as the maximum relative error in ulp.
4643   void SetFPAccuracy(llvm::Value *Val, float Accuracy);
4644 
4645   /// Set the codegen fast-math flags.
4646   void SetFastMathFlags(FPOptions FPFeatures);
4647 
4648 private:
4649   llvm::MDNode *getRangeForLoadFromType(QualType Ty);
4650   void EmitReturnOfRValue(RValue RV, QualType Ty);
4651 
4652   void deferPlaceholderReplacement(llvm::Instruction *Old, llvm::Value *New);
4653 
4654   llvm::SmallVector<std::pair<llvm::WeakTrackingVH, llvm::Value *>, 4>
4655       DeferredReplacements;
4656 
4657   /// Set the address of a local variable.
4658   void setAddrOfLocalVar(const VarDecl *VD, Address Addr) {
4659     assert(!LocalDeclMap.count(VD) && "Decl already exists in LocalDeclMap!");
4660     LocalDeclMap.insert({VD, Addr});
4661   }
4662 
4663   /// ExpandTypeFromArgs - Reconstruct a structure of type \arg Ty
4664   /// from function arguments into \arg Dst. See ABIArgInfo::Expand.
4665   ///
4666   /// \param AI - The first function argument of the expansion.
4667   void ExpandTypeFromArgs(QualType Ty, LValue Dst,
4668                           llvm::Function::arg_iterator &AI);
4669 
4670   /// ExpandTypeToArgs - Expand an CallArg \arg Arg, with the LLVM type for \arg
4671   /// Ty, into individual arguments on the provided vector \arg IRCallArgs,
4672   /// starting at index \arg IRCallArgPos. See ABIArgInfo::Expand.
4673   void ExpandTypeToArgs(QualType Ty, CallArg Arg, llvm::FunctionType *IRFuncTy,
4674                         SmallVectorImpl<llvm::Value *> &IRCallArgs,
4675                         unsigned &IRCallArgPos);
4676 
4677   std::pair<llvm::Value *, llvm::Type *>
4678   EmitAsmInput(const TargetInfo::ConstraintInfo &Info, const Expr *InputExpr,
4679                std::string &ConstraintStr);
4680 
4681   std::pair<llvm::Value *, llvm::Type *>
4682   EmitAsmInputLValue(const TargetInfo::ConstraintInfo &Info, LValue InputValue,
4683                      QualType InputType, std::string &ConstraintStr,
4684                      SourceLocation Loc);
4685 
4686   /// Attempts to statically evaluate the object size of E. If that
4687   /// fails, emits code to figure the size of E out for us. This is
4688   /// pass_object_size aware.
4689   ///
4690   /// If EmittedExpr is non-null, this will use that instead of re-emitting E.
4691   llvm::Value *evaluateOrEmitBuiltinObjectSize(const Expr *E, unsigned Type,
4692                                                llvm::IntegerType *ResType,
4693                                                llvm::Value *EmittedE,
4694                                                bool IsDynamic);
4695 
4696   /// Emits the size of E, as required by __builtin_object_size. This
4697   /// function is aware of pass_object_size parameters, and will act accordingly
4698   /// if E is a parameter with the pass_object_size attribute.
4699   llvm::Value *emitBuiltinObjectSize(const Expr *E, unsigned Type,
4700                                      llvm::IntegerType *ResType,
4701                                      llvm::Value *EmittedE,
4702                                      bool IsDynamic);
4703 
4704   void emitZeroOrPatternForAutoVarInit(QualType type, const VarDecl &D,
4705                                        Address Loc);
4706 
4707 public:
4708   enum class EvaluationOrder {
4709     ///! No language constraints on evaluation order.
4710     Default,
4711     ///! Language semantics require left-to-right evaluation.
4712     ForceLeftToRight,
4713     ///! Language semantics require right-to-left evaluation.
4714     ForceRightToLeft
4715   };
4716 
4717   // Wrapper for function prototype sources. Wraps either a FunctionProtoType or
4718   // an ObjCMethodDecl.
4719   struct PrototypeWrapper {
4720     llvm::PointerUnion<const FunctionProtoType *, const ObjCMethodDecl *> P;
4721 
4722     PrototypeWrapper(const FunctionProtoType *FT) : P(FT) {}
4723     PrototypeWrapper(const ObjCMethodDecl *MD) : P(MD) {}
4724   };
4725 
4726   void EmitCallArgs(CallArgList &Args, PrototypeWrapper Prototype,
4727                     llvm::iterator_range<CallExpr::const_arg_iterator> ArgRange,
4728                     AbstractCallee AC = AbstractCallee(),
4729                     unsigned ParamsToSkip = 0,
4730                     EvaluationOrder Order = EvaluationOrder::Default);
4731 
4732   /// EmitPointerWithAlignment - Given an expression with a pointer type,
4733   /// emit the value and compute our best estimate of the alignment of the
4734   /// pointee.
4735   ///
4736   /// \param BaseInfo - If non-null, this will be initialized with
4737   /// information about the source of the alignment and the may-alias
4738   /// attribute.  Note that this function will conservatively fall back on
4739   /// the type when it doesn't recognize the expression and may-alias will
4740   /// be set to false.
4741   ///
4742   /// One reasonable way to use this information is when there's a language
4743   /// guarantee that the pointer must be aligned to some stricter value, and
4744   /// we're simply trying to ensure that sufficiently obvious uses of under-
4745   /// aligned objects don't get miscompiled; for example, a placement new
4746   /// into the address of a local variable.  In such a case, it's quite
4747   /// reasonable to just ignore the returned alignment when it isn't from an
4748   /// explicit source.
4749   Address EmitPointerWithAlignment(const Expr *Addr,
4750                                    LValueBaseInfo *BaseInfo = nullptr,
4751                                    TBAAAccessInfo *TBAAInfo = nullptr);
4752 
4753   /// If \p E references a parameter with pass_object_size info or a constant
4754   /// array size modifier, emit the object size divided by the size of \p EltTy.
4755   /// Otherwise return null.
4756   llvm::Value *LoadPassedObjectSize(const Expr *E, QualType EltTy);
4757 
4758   void EmitSanitizerStatReport(llvm::SanitizerStatKind SSK);
4759 
4760   struct MultiVersionResolverOption {
4761     llvm::Function *Function;
4762     struct Conds {
4763       StringRef Architecture;
4764       llvm::SmallVector<StringRef, 8> Features;
4765 
4766       Conds(StringRef Arch, ArrayRef<StringRef> Feats)
4767           : Architecture(Arch), Features(Feats.begin(), Feats.end()) {}
4768     } Conditions;
4769 
4770     MultiVersionResolverOption(llvm::Function *F, StringRef Arch,
4771                                ArrayRef<StringRef> Feats)
4772         : Function(F), Conditions(Arch, Feats) {}
4773   };
4774 
4775   // Emits the body of a multiversion function's resolver. Assumes that the
4776   // options are already sorted in the proper order, with the 'default' option
4777   // last (if it exists).
4778   void EmitMultiVersionResolver(llvm::Function *Resolver,
4779                                 ArrayRef<MultiVersionResolverOption> Options);
4780 
4781 private:
4782   QualType getVarArgType(const Expr *Arg);
4783 
4784   void EmitDeclMetadata();
4785 
4786   BlockByrefHelpers *buildByrefHelpers(llvm::StructType &byrefType,
4787                                   const AutoVarEmission &emission);
4788 
4789   void AddObjCARCExceptionMetadata(llvm::Instruction *Inst);
4790 
4791   llvm::Value *GetValueForARMHint(unsigned BuiltinID);
4792   llvm::Value *EmitX86CpuIs(const CallExpr *E);
4793   llvm::Value *EmitX86CpuIs(StringRef CPUStr);
4794   llvm::Value *EmitX86CpuSupports(const CallExpr *E);
4795   llvm::Value *EmitX86CpuSupports(ArrayRef<StringRef> FeatureStrs);
4796   llvm::Value *EmitX86CpuSupports(uint64_t Mask);
4797   llvm::Value *EmitX86CpuInit();
4798   llvm::Value *FormResolverCondition(const MultiVersionResolverOption &RO);
4799 };
4800 
4801 /// TargetFeatures - This class is used to check whether the builtin function
4802 /// has the required tagert specific features. It is able to support the
4803 /// combination of ','(and), '|'(or), and '()'. By default, the priority of
4804 /// ',' is higher than that of '|' .
4805 /// E.g:
4806 /// A,B|C means the builtin function requires both A and B, or C.
4807 /// If we want the builtin function requires both A and B, or both A and C,
4808 /// there are two ways: A,B|A,C or A,(B|C).
4809 /// The FeaturesList should not contain spaces, and brackets must appear in
4810 /// pairs.
4811 class TargetFeatures {
4812   struct FeatureListStatus {
4813     bool HasFeatures;
4814     StringRef CurFeaturesList;
4815   };
4816 
4817   const llvm::StringMap<bool> &CallerFeatureMap;
4818 
4819   FeatureListStatus getAndFeatures(StringRef FeatureList) {
4820     int InParentheses = 0;
4821     bool HasFeatures = true;
4822     size_t SubexpressionStart = 0;
4823     for (size_t i = 0, e = FeatureList.size(); i < e; ++i) {
4824       char CurrentToken = FeatureList[i];
4825       switch (CurrentToken) {
4826       default:
4827         break;
4828       case '(':
4829         if (InParentheses == 0)
4830           SubexpressionStart = i + 1;
4831         ++InParentheses;
4832         break;
4833       case ')':
4834         --InParentheses;
4835         assert(InParentheses >= 0 && "Parentheses are not in pair");
4836         LLVM_FALLTHROUGH;
4837       case '|':
4838       case ',':
4839         if (InParentheses == 0) {
4840           if (HasFeatures && i != SubexpressionStart) {
4841             StringRef F = FeatureList.slice(SubexpressionStart, i);
4842             HasFeatures = CurrentToken == ')' ? hasRequiredFeatures(F)
4843                                               : CallerFeatureMap.lookup(F);
4844           }
4845           SubexpressionStart = i + 1;
4846           if (CurrentToken == '|') {
4847             return {HasFeatures, FeatureList.substr(SubexpressionStart)};
4848           }
4849         }
4850         break;
4851       }
4852     }
4853     assert(InParentheses == 0 && "Parentheses are not in pair");
4854     if (HasFeatures && SubexpressionStart != FeatureList.size())
4855       HasFeatures =
4856           CallerFeatureMap.lookup(FeatureList.substr(SubexpressionStart));
4857     return {HasFeatures, StringRef()};
4858   }
4859 
4860 public:
4861   bool hasRequiredFeatures(StringRef FeatureList) {
4862     FeatureListStatus FS = {false, FeatureList};
4863     while (!FS.HasFeatures && !FS.CurFeaturesList.empty())
4864       FS = getAndFeatures(FS.CurFeaturesList);
4865     return FS.HasFeatures;
4866   }
4867 
4868   TargetFeatures(const llvm::StringMap<bool> &CallerFeatureMap)
4869       : CallerFeatureMap(CallerFeatureMap) {}
4870 };
4871 
4872 inline DominatingLLVMValue::saved_type
4873 DominatingLLVMValue::save(CodeGenFunction &CGF, llvm::Value *value) {
4874   if (!needsSaving(value)) return saved_type(value, false);
4875 
4876   // Otherwise, we need an alloca.
4877   auto align = CharUnits::fromQuantity(
4878             CGF.CGM.getDataLayout().getPrefTypeAlignment(value->getType()));
4879   Address alloca =
4880     CGF.CreateTempAlloca(value->getType(), align, "cond-cleanup.save");
4881   CGF.Builder.CreateStore(value, alloca);
4882 
4883   return saved_type(alloca.getPointer(), true);
4884 }
4885 
4886 inline llvm::Value *DominatingLLVMValue::restore(CodeGenFunction &CGF,
4887                                                  saved_type value) {
4888   // If the value says it wasn't saved, trust that it's still dominating.
4889   if (!value.getInt()) return value.getPointer();
4890 
4891   // Otherwise, it should be an alloca instruction, as set up in save().
4892   auto alloca = cast<llvm::AllocaInst>(value.getPointer());
4893   return CGF.Builder.CreateAlignedLoad(alloca->getAllocatedType(), alloca,
4894                                        alloca->getAlign());
4895 }
4896 
4897 }  // end namespace CodeGen
4898 
4899 // Map the LangOption for floating point exception behavior into
4900 // the corresponding enum in the IR.
4901 llvm::fp::ExceptionBehavior
4902 ToConstrainedExceptMD(LangOptions::FPExceptionModeKind Kind);
4903 }  // end namespace clang
4904 
4905 #endif
4906