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, Address Derived, bool MayBeNull,
2300                                  CFITypeCheckKind TCK, SourceLocation Loc);
2301 
2302   /// EmitVTablePtrCheckForCall - Virtual method MD is being called via VTable.
2303   /// If vptr CFI is enabled, emit a check that VTable is valid.
2304   void EmitVTablePtrCheckForCall(const CXXRecordDecl *RD, llvm::Value *VTable,
2305                                  CFITypeCheckKind TCK, SourceLocation Loc);
2306 
2307   /// EmitVTablePtrCheck - Emit a check that VTable is a valid virtual table for
2308   /// RD using llvm.type.test.
2309   void EmitVTablePtrCheck(const CXXRecordDecl *RD, llvm::Value *VTable,
2310                           CFITypeCheckKind TCK, SourceLocation Loc);
2311 
2312   /// If whole-program virtual table optimization is enabled, emit an assumption
2313   /// that VTable is a member of RD's type identifier. Or, if vptr CFI is
2314   /// enabled, emit a check that VTable is a member of RD's type identifier.
2315   void EmitTypeMetadataCodeForVCall(const CXXRecordDecl *RD,
2316                                     llvm::Value *VTable, SourceLocation Loc);
2317 
2318   /// Returns whether we should perform a type checked load when loading a
2319   /// virtual function for virtual calls to members of RD. This is generally
2320   /// true when both vcall CFI and whole-program-vtables are enabled.
2321   bool ShouldEmitVTableTypeCheckedLoad(const CXXRecordDecl *RD);
2322 
2323   /// Emit a type checked load from the given vtable.
2324   llvm::Value *EmitVTableTypeCheckedLoad(const CXXRecordDecl *RD,
2325                                          llvm::Value *VTable,
2326                                          llvm::Type *VTableTy,
2327                                          uint64_t VTableByteOffset);
2328 
2329   /// EnterDtorCleanups - Enter the cleanups necessary to complete the
2330   /// given phase of destruction for a destructor.  The end result
2331   /// should call destructors on members and base classes in reverse
2332   /// order of their construction.
2333   void EnterDtorCleanups(const CXXDestructorDecl *Dtor, CXXDtorType Type);
2334 
2335   /// ShouldInstrumentFunction - Return true if the current function should be
2336   /// instrumented with __cyg_profile_func_* calls
2337   bool ShouldInstrumentFunction();
2338 
2339   /// ShouldSkipSanitizerInstrumentation - Return true if the current function
2340   /// should not be instrumented with sanitizers.
2341   bool ShouldSkipSanitizerInstrumentation();
2342 
2343   /// ShouldXRayInstrument - Return true if the current function should be
2344   /// instrumented with XRay nop sleds.
2345   bool ShouldXRayInstrumentFunction() const;
2346 
2347   /// AlwaysEmitXRayCustomEvents - Return true if we must unconditionally emit
2348   /// XRay custom event handling calls.
2349   bool AlwaysEmitXRayCustomEvents() const;
2350 
2351   /// AlwaysEmitXRayTypedEvents - Return true if clang must unconditionally emit
2352   /// XRay typed event handling calls.
2353   bool AlwaysEmitXRayTypedEvents() const;
2354 
2355   /// Encode an address into a form suitable for use in a function prologue.
2356   llvm::Constant *EncodeAddrForUseInPrologue(llvm::Function *F,
2357                                              llvm::Constant *Addr);
2358 
2359   /// Decode an address used in a function prologue, encoded by \c
2360   /// EncodeAddrForUseInPrologue.
2361   llvm::Value *DecodeAddrUsedInPrologue(llvm::Value *F,
2362                                         llvm::Value *EncodedAddr);
2363 
2364   /// EmitFunctionProlog - Emit the target specific LLVM code to load the
2365   /// arguments for the given function. This is also responsible for naming the
2366   /// LLVM function arguments.
2367   void EmitFunctionProlog(const CGFunctionInfo &FI,
2368                           llvm::Function *Fn,
2369                           const FunctionArgList &Args);
2370 
2371   /// EmitFunctionEpilog - Emit the target specific LLVM code to return the
2372   /// given temporary.
2373   void EmitFunctionEpilog(const CGFunctionInfo &FI, bool EmitRetDbgLoc,
2374                           SourceLocation EndLoc);
2375 
2376   /// Emit a test that checks if the return value \p RV is nonnull.
2377   void EmitReturnValueCheck(llvm::Value *RV);
2378 
2379   /// EmitStartEHSpec - Emit the start of the exception spec.
2380   void EmitStartEHSpec(const Decl *D);
2381 
2382   /// EmitEndEHSpec - Emit the end of the exception spec.
2383   void EmitEndEHSpec(const Decl *D);
2384 
2385   /// getTerminateLandingPad - Return a landing pad that just calls terminate.
2386   llvm::BasicBlock *getTerminateLandingPad();
2387 
2388   /// getTerminateLandingPad - Return a cleanup funclet that just calls
2389   /// terminate.
2390   llvm::BasicBlock *getTerminateFunclet();
2391 
2392   /// getTerminateHandler - Return a handler (not a landing pad, just
2393   /// a catch handler) that just calls terminate.  This is used when
2394   /// a terminate scope encloses a try.
2395   llvm::BasicBlock *getTerminateHandler();
2396 
2397   llvm::Type *ConvertTypeForMem(QualType T);
2398   llvm::Type *ConvertType(QualType T);
2399   llvm::Type *ConvertType(const TypeDecl *T) {
2400     return ConvertType(getContext().getTypeDeclType(T));
2401   }
2402 
2403   /// LoadObjCSelf - Load the value of self. This function is only valid while
2404   /// generating code for an Objective-C method.
2405   llvm::Value *LoadObjCSelf();
2406 
2407   /// TypeOfSelfObject - Return type of object that this self represents.
2408   QualType TypeOfSelfObject();
2409 
2410   /// getEvaluationKind - Return the TypeEvaluationKind of QualType \c T.
2411   static TypeEvaluationKind getEvaluationKind(QualType T);
2412 
2413   static bool hasScalarEvaluationKind(QualType T) {
2414     return getEvaluationKind(T) == TEK_Scalar;
2415   }
2416 
2417   static bool hasAggregateEvaluationKind(QualType T) {
2418     return getEvaluationKind(T) == TEK_Aggregate;
2419   }
2420 
2421   /// createBasicBlock - Create an LLVM basic block.
2422   llvm::BasicBlock *createBasicBlock(const Twine &name = "",
2423                                      llvm::Function *parent = nullptr,
2424                                      llvm::BasicBlock *before = nullptr) {
2425     return llvm::BasicBlock::Create(getLLVMContext(), name, parent, before);
2426   }
2427 
2428   /// getBasicBlockForLabel - Return the LLVM basicblock that the specified
2429   /// label maps to.
2430   JumpDest getJumpDestForLabel(const LabelDecl *S);
2431 
2432   /// SimplifyForwardingBlocks - If the given basic block is only a branch to
2433   /// another basic block, simplify it. This assumes that no other code could
2434   /// potentially reference the basic block.
2435   void SimplifyForwardingBlocks(llvm::BasicBlock *BB);
2436 
2437   /// EmitBlock - Emit the given block \arg BB and set it as the insert point,
2438   /// adding a fall-through branch from the current insert block if
2439   /// necessary. It is legal to call this function even if there is no current
2440   /// insertion point.
2441   ///
2442   /// IsFinished - If true, indicates that the caller has finished emitting
2443   /// branches to the given block and does not expect to emit code into it. This
2444   /// means the block can be ignored if it is unreachable.
2445   void EmitBlock(llvm::BasicBlock *BB, bool IsFinished=false);
2446 
2447   /// EmitBlockAfterUses - Emit the given block somewhere hopefully
2448   /// near its uses, and leave the insertion point in it.
2449   void EmitBlockAfterUses(llvm::BasicBlock *BB);
2450 
2451   /// EmitBranch - Emit a branch to the specified basic block from the current
2452   /// insert block, taking care to avoid creation of branches from dummy
2453   /// blocks. It is legal to call this function even if there is no current
2454   /// insertion point.
2455   ///
2456   /// This function clears the current insertion point. The caller should follow
2457   /// calls to this function with calls to Emit*Block prior to generation new
2458   /// code.
2459   void EmitBranch(llvm::BasicBlock *Block);
2460 
2461   /// HaveInsertPoint - True if an insertion point is defined. If not, this
2462   /// indicates that the current code being emitted is unreachable.
2463   bool HaveInsertPoint() const {
2464     return Builder.GetInsertBlock() != nullptr;
2465   }
2466 
2467   /// EnsureInsertPoint - Ensure that an insertion point is defined so that
2468   /// emitted IR has a place to go. Note that by definition, if this function
2469   /// creates a block then that block is unreachable; callers may do better to
2470   /// detect when no insertion point is defined and simply skip IR generation.
2471   void EnsureInsertPoint() {
2472     if (!HaveInsertPoint())
2473       EmitBlock(createBasicBlock());
2474   }
2475 
2476   /// ErrorUnsupported - Print out an error that codegen doesn't support the
2477   /// specified stmt yet.
2478   void ErrorUnsupported(const Stmt *S, const char *Type);
2479 
2480   //===--------------------------------------------------------------------===//
2481   //                                  Helpers
2482   //===--------------------------------------------------------------------===//
2483 
2484   LValue MakeAddrLValue(Address Addr, QualType T,
2485                         AlignmentSource Source = AlignmentSource::Type) {
2486     return LValue::MakeAddr(Addr, T, getContext(), LValueBaseInfo(Source),
2487                             CGM.getTBAAAccessInfo(T));
2488   }
2489 
2490   LValue MakeAddrLValue(Address Addr, QualType T, LValueBaseInfo BaseInfo,
2491                         TBAAAccessInfo TBAAInfo) {
2492     return LValue::MakeAddr(Addr, T, getContext(), BaseInfo, TBAAInfo);
2493   }
2494 
2495   LValue MakeAddrLValue(llvm::Value *V, QualType T, CharUnits Alignment,
2496                         AlignmentSource Source = AlignmentSource::Type) {
2497     Address Addr(V, ConvertTypeForMem(T), Alignment);
2498     return LValue::MakeAddr(Addr, T, getContext(), LValueBaseInfo(Source),
2499                             CGM.getTBAAAccessInfo(T));
2500   }
2501 
2502   LValue
2503   MakeAddrLValueWithoutTBAA(Address Addr, QualType T,
2504                             AlignmentSource Source = AlignmentSource::Type) {
2505     return LValue::MakeAddr(Addr, T, getContext(), LValueBaseInfo(Source),
2506                             TBAAAccessInfo());
2507   }
2508 
2509   LValue MakeNaturalAlignPointeeAddrLValue(llvm::Value *V, QualType T);
2510   LValue MakeNaturalAlignAddrLValue(llvm::Value *V, QualType T);
2511 
2512   Address EmitLoadOfReference(LValue RefLVal,
2513                               LValueBaseInfo *PointeeBaseInfo = nullptr,
2514                               TBAAAccessInfo *PointeeTBAAInfo = nullptr);
2515   LValue EmitLoadOfReferenceLValue(LValue RefLVal);
2516   LValue EmitLoadOfReferenceLValue(Address RefAddr, QualType RefTy,
2517                                    AlignmentSource Source =
2518                                        AlignmentSource::Type) {
2519     LValue RefLVal = MakeAddrLValue(RefAddr, RefTy, LValueBaseInfo(Source),
2520                                     CGM.getTBAAAccessInfo(RefTy));
2521     return EmitLoadOfReferenceLValue(RefLVal);
2522   }
2523 
2524   Address EmitLoadOfPointer(Address Ptr, const PointerType *PtrTy,
2525                             LValueBaseInfo *BaseInfo = nullptr,
2526                             TBAAAccessInfo *TBAAInfo = nullptr);
2527   LValue EmitLoadOfPointerLValue(Address Ptr, const PointerType *PtrTy);
2528 
2529   /// CreateTempAlloca - This creates an alloca and inserts it into the entry
2530   /// block if \p ArraySize is nullptr, otherwise inserts it at the current
2531   /// insertion point of the builder. The caller is responsible for setting an
2532   /// appropriate alignment on
2533   /// the alloca.
2534   ///
2535   /// \p ArraySize is the number of array elements to be allocated if it
2536   ///    is not nullptr.
2537   ///
2538   /// LangAS::Default is the address space of pointers to local variables and
2539   /// temporaries, as exposed in the source language. In certain
2540   /// configurations, this is not the same as the alloca address space, and a
2541   /// cast is needed to lift the pointer from the alloca AS into
2542   /// LangAS::Default. This can happen when the target uses a restricted
2543   /// address space for the stack but the source language requires
2544   /// LangAS::Default to be a generic address space. The latter condition is
2545   /// common for most programming languages; OpenCL is an exception in that
2546   /// LangAS::Default is the private address space, which naturally maps
2547   /// to the stack.
2548   ///
2549   /// Because the address of a temporary is often exposed to the program in
2550   /// various ways, this function will perform the cast. The original alloca
2551   /// instruction is returned through \p Alloca if it is not nullptr.
2552   ///
2553   /// The cast is not performaed in CreateTempAllocaWithoutCast. This is
2554   /// more efficient if the caller knows that the address will not be exposed.
2555   llvm::AllocaInst *CreateTempAlloca(llvm::Type *Ty, const Twine &Name = "tmp",
2556                                      llvm::Value *ArraySize = nullptr);
2557   Address CreateTempAlloca(llvm::Type *Ty, CharUnits align,
2558                            const Twine &Name = "tmp",
2559                            llvm::Value *ArraySize = nullptr,
2560                            Address *Alloca = nullptr);
2561   Address CreateTempAllocaWithoutCast(llvm::Type *Ty, CharUnits align,
2562                                       const Twine &Name = "tmp",
2563                                       llvm::Value *ArraySize = nullptr);
2564 
2565   /// CreateDefaultAlignedTempAlloca - This creates an alloca with the
2566   /// default ABI alignment of the given LLVM type.
2567   ///
2568   /// IMPORTANT NOTE: This is *not* generally the right alignment for
2569   /// any given AST type that happens to have been lowered to the
2570   /// given IR type.  This should only ever be used for function-local,
2571   /// IR-driven manipulations like saving and restoring a value.  Do
2572   /// not hand this address off to arbitrary IRGen routines, and especially
2573   /// do not pass it as an argument to a function that might expect a
2574   /// properly ABI-aligned value.
2575   Address CreateDefaultAlignTempAlloca(llvm::Type *Ty,
2576                                        const Twine &Name = "tmp");
2577 
2578   /// CreateIRTemp - Create a temporary IR object of the given type, with
2579   /// appropriate alignment. This routine should only be used when an temporary
2580   /// value needs to be stored into an alloca (for example, to avoid explicit
2581   /// PHI construction), but the type is the IR type, not the type appropriate
2582   /// for storing in memory.
2583   ///
2584   /// That is, this is exactly equivalent to CreateMemTemp, but calling
2585   /// ConvertType instead of ConvertTypeForMem.
2586   Address CreateIRTemp(QualType T, const Twine &Name = "tmp");
2587 
2588   /// CreateMemTemp - Create a temporary memory object of the given type, with
2589   /// appropriate alignmen and cast it to the default address space. Returns
2590   /// the original alloca instruction by \p Alloca if it is not nullptr.
2591   Address CreateMemTemp(QualType T, const Twine &Name = "tmp",
2592                         Address *Alloca = nullptr);
2593   Address CreateMemTemp(QualType T, CharUnits Align, const Twine &Name = "tmp",
2594                         Address *Alloca = nullptr);
2595 
2596   /// CreateMemTemp - Create a temporary memory object of the given type, with
2597   /// appropriate alignmen without casting it to the default address space.
2598   Address CreateMemTempWithoutCast(QualType T, const Twine &Name = "tmp");
2599   Address CreateMemTempWithoutCast(QualType T, CharUnits Align,
2600                                    const Twine &Name = "tmp");
2601 
2602   /// CreateAggTemp - Create a temporary memory object for the given
2603   /// aggregate type.
2604   AggValueSlot CreateAggTemp(QualType T, const Twine &Name = "tmp",
2605                              Address *Alloca = nullptr) {
2606     return AggValueSlot::forAddr(CreateMemTemp(T, Name, Alloca),
2607                                  T.getQualifiers(),
2608                                  AggValueSlot::IsNotDestructed,
2609                                  AggValueSlot::DoesNotNeedGCBarriers,
2610                                  AggValueSlot::IsNotAliased,
2611                                  AggValueSlot::DoesNotOverlap);
2612   }
2613 
2614   /// Emit a cast to void* in the appropriate address space.
2615   llvm::Value *EmitCastToVoidPtr(llvm::Value *value);
2616 
2617   /// EvaluateExprAsBool - Perform the usual unary conversions on the specified
2618   /// expression and compare the result against zero, returning an Int1Ty value.
2619   llvm::Value *EvaluateExprAsBool(const Expr *E);
2620 
2621   /// EmitIgnoredExpr - Emit an expression in a context which ignores the result.
2622   void EmitIgnoredExpr(const Expr *E);
2623 
2624   /// EmitAnyExpr - Emit code to compute the specified expression which can have
2625   /// any type.  The result is returned as an RValue struct.  If this is an
2626   /// aggregate expression, the aggloc/agglocvolatile arguments indicate where
2627   /// the result should be returned.
2628   ///
2629   /// \param ignoreResult True if the resulting value isn't used.
2630   RValue EmitAnyExpr(const Expr *E,
2631                      AggValueSlot aggSlot = AggValueSlot::ignored(),
2632                      bool ignoreResult = false);
2633 
2634   // EmitVAListRef - Emit a "reference" to a va_list; this is either the address
2635   // or the value of the expression, depending on how va_list is defined.
2636   Address EmitVAListRef(const Expr *E);
2637 
2638   /// Emit a "reference" to a __builtin_ms_va_list; this is
2639   /// always the value of the expression, because a __builtin_ms_va_list is a
2640   /// pointer to a char.
2641   Address EmitMSVAListRef(const Expr *E);
2642 
2643   /// EmitAnyExprToTemp - Similarly to EmitAnyExpr(), however, the result will
2644   /// always be accessible even if no aggregate location is provided.
2645   RValue EmitAnyExprToTemp(const Expr *E);
2646 
2647   /// EmitAnyExprToMem - Emits the code necessary to evaluate an
2648   /// arbitrary expression into the given memory location.
2649   void EmitAnyExprToMem(const Expr *E, Address Location,
2650                         Qualifiers Quals, bool IsInitializer);
2651 
2652   void EmitAnyExprToExn(const Expr *E, Address Addr);
2653 
2654   /// EmitExprAsInit - Emits the code necessary to initialize a
2655   /// location in memory with the given initializer.
2656   void EmitExprAsInit(const Expr *init, const ValueDecl *D, LValue lvalue,
2657                       bool capturedByInit);
2658 
2659   /// hasVolatileMember - returns true if aggregate type has a volatile
2660   /// member.
2661   bool hasVolatileMember(QualType T) {
2662     if (const RecordType *RT = T->getAs<RecordType>()) {
2663       const RecordDecl *RD = cast<RecordDecl>(RT->getDecl());
2664       return RD->hasVolatileMember();
2665     }
2666     return false;
2667   }
2668 
2669   /// Determine whether a return value slot may overlap some other object.
2670   AggValueSlot::Overlap_t getOverlapForReturnValue() {
2671     // FIXME: Assuming no overlap here breaks guaranteed copy elision for base
2672     // class subobjects. These cases may need to be revisited depending on the
2673     // resolution of the relevant core issue.
2674     return AggValueSlot::DoesNotOverlap;
2675   }
2676 
2677   /// Determine whether a field initialization may overlap some other object.
2678   AggValueSlot::Overlap_t getOverlapForFieldInit(const FieldDecl *FD);
2679 
2680   /// Determine whether a base class initialization may overlap some other
2681   /// object.
2682   AggValueSlot::Overlap_t getOverlapForBaseInit(const CXXRecordDecl *RD,
2683                                                 const CXXRecordDecl *BaseRD,
2684                                                 bool IsVirtual);
2685 
2686   /// Emit an aggregate assignment.
2687   void EmitAggregateAssign(LValue Dest, LValue Src, QualType EltTy) {
2688     bool IsVolatile = hasVolatileMember(EltTy);
2689     EmitAggregateCopy(Dest, Src, EltTy, AggValueSlot::MayOverlap, IsVolatile);
2690   }
2691 
2692   void EmitAggregateCopyCtor(LValue Dest, LValue Src,
2693                              AggValueSlot::Overlap_t MayOverlap) {
2694     EmitAggregateCopy(Dest, Src, Src.getType(), MayOverlap);
2695   }
2696 
2697   /// EmitAggregateCopy - Emit an aggregate copy.
2698   ///
2699   /// \param isVolatile \c true iff either the source or the destination is
2700   ///        volatile.
2701   /// \param MayOverlap Whether the tail padding of the destination might be
2702   ///        occupied by some other object. More efficient code can often be
2703   ///        generated if not.
2704   void EmitAggregateCopy(LValue Dest, LValue Src, QualType EltTy,
2705                          AggValueSlot::Overlap_t MayOverlap,
2706                          bool isVolatile = false);
2707 
2708   /// GetAddrOfLocalVar - Return the address of a local variable.
2709   Address GetAddrOfLocalVar(const VarDecl *VD) {
2710     auto it = LocalDeclMap.find(VD);
2711     assert(it != LocalDeclMap.end() &&
2712            "Invalid argument to GetAddrOfLocalVar(), no decl!");
2713     return it->second;
2714   }
2715 
2716   /// Given an opaque value expression, return its LValue mapping if it exists,
2717   /// otherwise create one.
2718   LValue getOrCreateOpaqueLValueMapping(const OpaqueValueExpr *e);
2719 
2720   /// Given an opaque value expression, return its RValue mapping if it exists,
2721   /// otherwise create one.
2722   RValue getOrCreateOpaqueRValueMapping(const OpaqueValueExpr *e);
2723 
2724   /// Get the index of the current ArrayInitLoopExpr, if any.
2725   llvm::Value *getArrayInitIndex() { return ArrayInitIndex; }
2726 
2727   /// getAccessedFieldNo - Given an encoded value and a result number, return
2728   /// the input field number being accessed.
2729   static unsigned getAccessedFieldNo(unsigned Idx, const llvm::Constant *Elts);
2730 
2731   llvm::BlockAddress *GetAddrOfLabel(const LabelDecl *L);
2732   llvm::BasicBlock *GetIndirectGotoBlock();
2733 
2734   /// Check if \p E is a C++ "this" pointer wrapped in value-preserving casts.
2735   static bool IsWrappedCXXThis(const Expr *E);
2736 
2737   /// EmitNullInitialization - Generate code to set a value of the given type to
2738   /// null, If the type contains data member pointers, they will be initialized
2739   /// to -1 in accordance with the Itanium C++ ABI.
2740   void EmitNullInitialization(Address DestPtr, QualType Ty);
2741 
2742   /// Emits a call to an LLVM variable-argument intrinsic, either
2743   /// \c llvm.va_start or \c llvm.va_end.
2744   /// \param ArgValue A reference to the \c va_list as emitted by either
2745   /// \c EmitVAListRef or \c EmitMSVAListRef.
2746   /// \param IsStart If \c true, emits a call to \c llvm.va_start; otherwise,
2747   /// calls \c llvm.va_end.
2748   llvm::Value *EmitVAStartEnd(llvm::Value *ArgValue, bool IsStart);
2749 
2750   /// Generate code to get an argument from the passed in pointer
2751   /// and update it accordingly.
2752   /// \param VE The \c VAArgExpr for which to generate code.
2753   /// \param VAListAddr Receives a reference to the \c va_list as emitted by
2754   /// either \c EmitVAListRef or \c EmitMSVAListRef.
2755   /// \returns A pointer to the argument.
2756   // FIXME: We should be able to get rid of this method and use the va_arg
2757   // instruction in LLVM instead once it works well enough.
2758   Address EmitVAArg(VAArgExpr *VE, Address &VAListAddr);
2759 
2760   /// emitArrayLength - Compute the length of an array, even if it's a
2761   /// VLA, and drill down to the base element type.
2762   llvm::Value *emitArrayLength(const ArrayType *arrayType,
2763                                QualType &baseType,
2764                                Address &addr);
2765 
2766   /// EmitVLASize - Capture all the sizes for the VLA expressions in
2767   /// the given variably-modified type and store them in the VLASizeMap.
2768   ///
2769   /// This function can be called with a null (unreachable) insert point.
2770   void EmitVariablyModifiedType(QualType Ty);
2771 
2772   struct VlaSizePair {
2773     llvm::Value *NumElts;
2774     QualType Type;
2775 
2776     VlaSizePair(llvm::Value *NE, QualType T) : NumElts(NE), Type(T) {}
2777   };
2778 
2779   /// Return the number of elements for a single dimension
2780   /// for the given array type.
2781   VlaSizePair getVLAElements1D(const VariableArrayType *vla);
2782   VlaSizePair getVLAElements1D(QualType vla);
2783 
2784   /// Returns an LLVM value that corresponds to the size,
2785   /// in non-variably-sized elements, of a variable length array type,
2786   /// plus that largest non-variably-sized element type.  Assumes that
2787   /// the type has already been emitted with EmitVariablyModifiedType.
2788   VlaSizePair getVLASize(const VariableArrayType *vla);
2789   VlaSizePair getVLASize(QualType vla);
2790 
2791   /// LoadCXXThis - Load the value of 'this'. This function is only valid while
2792   /// generating code for an C++ member function.
2793   llvm::Value *LoadCXXThis() {
2794     assert(CXXThisValue && "no 'this' value for this function");
2795     return CXXThisValue;
2796   }
2797   Address LoadCXXThisAddress();
2798 
2799   /// LoadCXXVTT - Load the VTT parameter to base constructors/destructors have
2800   /// virtual bases.
2801   // FIXME: Every place that calls LoadCXXVTT is something
2802   // that needs to be abstracted properly.
2803   llvm::Value *LoadCXXVTT() {
2804     assert(CXXStructorImplicitParamValue && "no VTT value for this function");
2805     return CXXStructorImplicitParamValue;
2806   }
2807 
2808   /// GetAddressOfBaseOfCompleteClass - Convert the given pointer to a
2809   /// complete class to the given direct base.
2810   Address
2811   GetAddressOfDirectBaseInCompleteClass(Address Value,
2812                                         const CXXRecordDecl *Derived,
2813                                         const CXXRecordDecl *Base,
2814                                         bool BaseIsVirtual);
2815 
2816   static bool ShouldNullCheckClassCastValue(const CastExpr *Cast);
2817 
2818   /// GetAddressOfBaseClass - This function will add the necessary delta to the
2819   /// load of 'this' and returns address of the base class.
2820   Address GetAddressOfBaseClass(Address Value,
2821                                 const CXXRecordDecl *Derived,
2822                                 CastExpr::path_const_iterator PathBegin,
2823                                 CastExpr::path_const_iterator PathEnd,
2824                                 bool NullCheckValue, SourceLocation Loc);
2825 
2826   Address GetAddressOfDerivedClass(Address Value,
2827                                    const CXXRecordDecl *Derived,
2828                                    CastExpr::path_const_iterator PathBegin,
2829                                    CastExpr::path_const_iterator PathEnd,
2830                                    bool NullCheckValue);
2831 
2832   /// GetVTTParameter - Return the VTT parameter that should be passed to a
2833   /// base constructor/destructor with virtual bases.
2834   /// FIXME: VTTs are Itanium ABI-specific, so the definition should move
2835   /// to ItaniumCXXABI.cpp together with all the references to VTT.
2836   llvm::Value *GetVTTParameter(GlobalDecl GD, bool ForVirtualBase,
2837                                bool Delegating);
2838 
2839   void EmitDelegateCXXConstructorCall(const CXXConstructorDecl *Ctor,
2840                                       CXXCtorType CtorType,
2841                                       const FunctionArgList &Args,
2842                                       SourceLocation Loc);
2843   // It's important not to confuse this and the previous function. Delegating
2844   // constructors are the C++0x feature. The constructor delegate optimization
2845   // is used to reduce duplication in the base and complete consturctors where
2846   // they are substantially the same.
2847   void EmitDelegatingCXXConstructorCall(const CXXConstructorDecl *Ctor,
2848                                         const FunctionArgList &Args);
2849 
2850   /// Emit a call to an inheriting constructor (that is, one that invokes a
2851   /// constructor inherited from a base class) by inlining its definition. This
2852   /// is necessary if the ABI does not support forwarding the arguments to the
2853   /// base class constructor (because they're variadic or similar).
2854   void EmitInlinedInheritingCXXConstructorCall(const CXXConstructorDecl *Ctor,
2855                                                CXXCtorType CtorType,
2856                                                bool ForVirtualBase,
2857                                                bool Delegating,
2858                                                CallArgList &Args);
2859 
2860   /// Emit a call to a constructor inherited from a base class, passing the
2861   /// current constructor's arguments along unmodified (without even making
2862   /// a copy).
2863   void EmitInheritedCXXConstructorCall(const CXXConstructorDecl *D,
2864                                        bool ForVirtualBase, Address This,
2865                                        bool InheritedFromVBase,
2866                                        const CXXInheritedCtorInitExpr *E);
2867 
2868   void EmitCXXConstructorCall(const CXXConstructorDecl *D, CXXCtorType Type,
2869                               bool ForVirtualBase, bool Delegating,
2870                               AggValueSlot ThisAVS, const CXXConstructExpr *E);
2871 
2872   void EmitCXXConstructorCall(const CXXConstructorDecl *D, CXXCtorType Type,
2873                               bool ForVirtualBase, bool Delegating,
2874                               Address This, CallArgList &Args,
2875                               AggValueSlot::Overlap_t Overlap,
2876                               SourceLocation Loc, bool NewPointerIsChecked);
2877 
2878   /// Emit assumption load for all bases. Requires to be be called only on
2879   /// most-derived class and not under construction of the object.
2880   void EmitVTableAssumptionLoads(const CXXRecordDecl *ClassDecl, Address This);
2881 
2882   /// Emit assumption that vptr load == global vtable.
2883   void EmitVTableAssumptionLoad(const VPtr &vptr, Address This);
2884 
2885   void EmitSynthesizedCXXCopyCtorCall(const CXXConstructorDecl *D,
2886                                       Address This, Address Src,
2887                                       const CXXConstructExpr *E);
2888 
2889   void EmitCXXAggrConstructorCall(const CXXConstructorDecl *D,
2890                                   const ArrayType *ArrayTy,
2891                                   Address ArrayPtr,
2892                                   const CXXConstructExpr *E,
2893                                   bool NewPointerIsChecked,
2894                                   bool ZeroInitialization = false);
2895 
2896   void EmitCXXAggrConstructorCall(const CXXConstructorDecl *D,
2897                                   llvm::Value *NumElements,
2898                                   Address ArrayPtr,
2899                                   const CXXConstructExpr *E,
2900                                   bool NewPointerIsChecked,
2901                                   bool ZeroInitialization = false);
2902 
2903   static Destroyer destroyCXXObject;
2904 
2905   void EmitCXXDestructorCall(const CXXDestructorDecl *D, CXXDtorType Type,
2906                              bool ForVirtualBase, bool Delegating, Address This,
2907                              QualType ThisTy);
2908 
2909   void EmitNewArrayInitializer(const CXXNewExpr *E, QualType elementType,
2910                                llvm::Type *ElementTy, Address NewPtr,
2911                                llvm::Value *NumElements,
2912                                llvm::Value *AllocSizeWithoutCookie);
2913 
2914   void EmitCXXTemporary(const CXXTemporary *Temporary, QualType TempType,
2915                         Address Ptr);
2916 
2917   void EmitSehCppScopeBegin();
2918   void EmitSehCppScopeEnd();
2919   void EmitSehTryScopeBegin();
2920   void EmitSehTryScopeEnd();
2921 
2922   llvm::Value *EmitLifetimeStart(llvm::TypeSize Size, llvm::Value *Addr);
2923   void EmitLifetimeEnd(llvm::Value *Size, llvm::Value *Addr);
2924 
2925   llvm::Value *EmitCXXNewExpr(const CXXNewExpr *E);
2926   void EmitCXXDeleteExpr(const CXXDeleteExpr *E);
2927 
2928   void EmitDeleteCall(const FunctionDecl *DeleteFD, llvm::Value *Ptr,
2929                       QualType DeleteTy, llvm::Value *NumElements = nullptr,
2930                       CharUnits CookieSize = CharUnits());
2931 
2932   RValue EmitBuiltinNewDeleteCall(const FunctionProtoType *Type,
2933                                   const CallExpr *TheCallExpr, bool IsDelete);
2934 
2935   llvm::Value *EmitCXXTypeidExpr(const CXXTypeidExpr *E);
2936   llvm::Value *EmitDynamicCast(Address V, const CXXDynamicCastExpr *DCE);
2937   Address EmitCXXUuidofExpr(const CXXUuidofExpr *E);
2938 
2939   /// Situations in which we might emit a check for the suitability of a
2940   /// pointer or glvalue. Needs to be kept in sync with ubsan_handlers.cpp in
2941   /// compiler-rt.
2942   enum TypeCheckKind {
2943     /// Checking the operand of a load. Must be suitably sized and aligned.
2944     TCK_Load,
2945     /// Checking the destination of a store. Must be suitably sized and aligned.
2946     TCK_Store,
2947     /// Checking the bound value in a reference binding. Must be suitably sized
2948     /// and aligned, but is not required to refer to an object (until the
2949     /// reference is used), per core issue 453.
2950     TCK_ReferenceBinding,
2951     /// Checking the object expression in a non-static data member access. Must
2952     /// be an object within its lifetime.
2953     TCK_MemberAccess,
2954     /// Checking the 'this' pointer for a call to a non-static member function.
2955     /// Must be an object within its lifetime.
2956     TCK_MemberCall,
2957     /// Checking the 'this' pointer for a constructor call.
2958     TCK_ConstructorCall,
2959     /// Checking the operand of a static_cast to a derived pointer type. Must be
2960     /// null or an object within its lifetime.
2961     TCK_DowncastPointer,
2962     /// Checking the operand of a static_cast to a derived reference type. Must
2963     /// be an object within its lifetime.
2964     TCK_DowncastReference,
2965     /// Checking the operand of a cast to a base object. Must be suitably sized
2966     /// and aligned.
2967     TCK_Upcast,
2968     /// Checking the operand of a cast to a virtual base object. Must be an
2969     /// object within its lifetime.
2970     TCK_UpcastToVirtualBase,
2971     /// Checking the value assigned to a _Nonnull pointer. Must not be null.
2972     TCK_NonnullAssign,
2973     /// Checking the operand of a dynamic_cast or a typeid expression.  Must be
2974     /// null or an object within its lifetime.
2975     TCK_DynamicOperation
2976   };
2977 
2978   /// Determine whether the pointer type check \p TCK permits null pointers.
2979   static bool isNullPointerAllowed(TypeCheckKind TCK);
2980 
2981   /// Determine whether the pointer type check \p TCK requires a vptr check.
2982   static bool isVptrCheckRequired(TypeCheckKind TCK, QualType Ty);
2983 
2984   /// Whether any type-checking sanitizers are enabled. If \c false,
2985   /// calls to EmitTypeCheck can be skipped.
2986   bool sanitizePerformTypeCheck() const;
2987 
2988   /// Emit a check that \p V is the address of storage of the
2989   /// appropriate size and alignment for an object of type \p Type
2990   /// (or if ArraySize is provided, for an array of that bound).
2991   void EmitTypeCheck(TypeCheckKind TCK, SourceLocation Loc, llvm::Value *V,
2992                      QualType Type, CharUnits Alignment = CharUnits::Zero(),
2993                      SanitizerSet SkippedChecks = SanitizerSet(),
2994                      llvm::Value *ArraySize = nullptr);
2995 
2996   /// Emit a check that \p Base points into an array object, which
2997   /// we can access at index \p Index. \p Accessed should be \c false if we
2998   /// this expression is used as an lvalue, for instance in "&Arr[Idx]".
2999   void EmitBoundsCheck(const Expr *E, const Expr *Base, llvm::Value *Index,
3000                        QualType IndexType, bool Accessed);
3001 
3002   llvm::Value *EmitScalarPrePostIncDec(const UnaryOperator *E, LValue LV,
3003                                        bool isInc, bool isPre);
3004   ComplexPairTy EmitComplexPrePostIncDec(const UnaryOperator *E, LValue LV,
3005                                          bool isInc, bool isPre);
3006 
3007   /// Converts Location to a DebugLoc, if debug information is enabled.
3008   llvm::DebugLoc SourceLocToDebugLoc(SourceLocation Location);
3009 
3010   /// Get the record field index as represented in debug info.
3011   unsigned getDebugInfoFIndex(const RecordDecl *Rec, unsigned FieldIndex);
3012 
3013 
3014   //===--------------------------------------------------------------------===//
3015   //                            Declaration Emission
3016   //===--------------------------------------------------------------------===//
3017 
3018   /// EmitDecl - Emit a declaration.
3019   ///
3020   /// This function can be called with a null (unreachable) insert point.
3021   void EmitDecl(const Decl &D);
3022 
3023   /// EmitVarDecl - Emit a local variable declaration.
3024   ///
3025   /// This function can be called with a null (unreachable) insert point.
3026   void EmitVarDecl(const VarDecl &D);
3027 
3028   void EmitScalarInit(const Expr *init, const ValueDecl *D, LValue lvalue,
3029                       bool capturedByInit);
3030 
3031   typedef void SpecialInitFn(CodeGenFunction &Init, const VarDecl &D,
3032                              llvm::Value *Address);
3033 
3034   /// Determine whether the given initializer is trivial in the sense
3035   /// that it requires no code to be generated.
3036   bool isTrivialInitializer(const Expr *Init);
3037 
3038   /// EmitAutoVarDecl - Emit an auto variable declaration.
3039   ///
3040   /// This function can be called with a null (unreachable) insert point.
3041   void EmitAutoVarDecl(const VarDecl &D);
3042 
3043   class AutoVarEmission {
3044     friend class CodeGenFunction;
3045 
3046     const VarDecl *Variable;
3047 
3048     /// The address of the alloca for languages with explicit address space
3049     /// (e.g. OpenCL) or alloca casted to generic pointer for address space
3050     /// agnostic languages (e.g. C++). Invalid if the variable was emitted
3051     /// as a global constant.
3052     Address Addr;
3053 
3054     llvm::Value *NRVOFlag;
3055 
3056     /// True if the variable is a __block variable that is captured by an
3057     /// escaping block.
3058     bool IsEscapingByRef;
3059 
3060     /// True if the variable is of aggregate type and has a constant
3061     /// initializer.
3062     bool IsConstantAggregate;
3063 
3064     /// Non-null if we should use lifetime annotations.
3065     llvm::Value *SizeForLifetimeMarkers;
3066 
3067     /// Address with original alloca instruction. Invalid if the variable was
3068     /// emitted as a global constant.
3069     Address AllocaAddr;
3070 
3071     struct Invalid {};
3072     AutoVarEmission(Invalid)
3073         : Variable(nullptr), Addr(Address::invalid()),
3074           AllocaAddr(Address::invalid()) {}
3075 
3076     AutoVarEmission(const VarDecl &variable)
3077         : Variable(&variable), Addr(Address::invalid()), NRVOFlag(nullptr),
3078           IsEscapingByRef(false), IsConstantAggregate(false),
3079           SizeForLifetimeMarkers(nullptr), AllocaAddr(Address::invalid()) {}
3080 
3081     bool wasEmittedAsGlobal() const { return !Addr.isValid(); }
3082 
3083   public:
3084     static AutoVarEmission invalid() { return AutoVarEmission(Invalid()); }
3085 
3086     bool useLifetimeMarkers() const {
3087       return SizeForLifetimeMarkers != nullptr;
3088     }
3089     llvm::Value *getSizeForLifetimeMarkers() const {
3090       assert(useLifetimeMarkers());
3091       return SizeForLifetimeMarkers;
3092     }
3093 
3094     /// Returns the raw, allocated address, which is not necessarily
3095     /// the address of the object itself. It is casted to default
3096     /// address space for address space agnostic languages.
3097     Address getAllocatedAddress() const {
3098       return Addr;
3099     }
3100 
3101     /// Returns the address for the original alloca instruction.
3102     Address getOriginalAllocatedAddress() const { return AllocaAddr; }
3103 
3104     /// Returns the address of the object within this declaration.
3105     /// Note that this does not chase the forwarding pointer for
3106     /// __block decls.
3107     Address getObjectAddress(CodeGenFunction &CGF) const {
3108       if (!IsEscapingByRef) return Addr;
3109 
3110       return CGF.emitBlockByrefAddress(Addr, Variable, /*forward*/ false);
3111     }
3112   };
3113   AutoVarEmission EmitAutoVarAlloca(const VarDecl &var);
3114   void EmitAutoVarInit(const AutoVarEmission &emission);
3115   void EmitAutoVarCleanups(const AutoVarEmission &emission);
3116   void emitAutoVarTypeCleanup(const AutoVarEmission &emission,
3117                               QualType::DestructionKind dtorKind);
3118 
3119   /// Emits the alloca and debug information for the size expressions for each
3120   /// dimension of an array. It registers the association of its (1-dimensional)
3121   /// QualTypes and size expression's debug node, so that CGDebugInfo can
3122   /// reference this node when creating the DISubrange object to describe the
3123   /// array types.
3124   void EmitAndRegisterVariableArrayDimensions(CGDebugInfo *DI,
3125                                               const VarDecl &D,
3126                                               bool EmitDebugInfo);
3127 
3128   void EmitStaticVarDecl(const VarDecl &D,
3129                          llvm::GlobalValue::LinkageTypes Linkage);
3130 
3131   class ParamValue {
3132     llvm::Value *Value;
3133     llvm::Type *ElementType;
3134     unsigned Alignment;
3135     ParamValue(llvm::Value *V, llvm::Type *T, unsigned A)
3136         : Value(V), ElementType(T), Alignment(A) {}
3137   public:
3138     static ParamValue forDirect(llvm::Value *value) {
3139       return ParamValue(value, nullptr, 0);
3140     }
3141     static ParamValue forIndirect(Address addr) {
3142       assert(!addr.getAlignment().isZero());
3143       return ParamValue(addr.getPointer(), addr.getElementType(),
3144                         addr.getAlignment().getQuantity());
3145     }
3146 
3147     bool isIndirect() const { return Alignment != 0; }
3148     llvm::Value *getAnyValue() const { return Value; }
3149 
3150     llvm::Value *getDirectValue() const {
3151       assert(!isIndirect());
3152       return Value;
3153     }
3154 
3155     Address getIndirectAddress() const {
3156       assert(isIndirect());
3157       return Address(Value, ElementType, CharUnits::fromQuantity(Alignment));
3158     }
3159   };
3160 
3161   /// EmitParmDecl - Emit a ParmVarDecl or an ImplicitParamDecl.
3162   void EmitParmDecl(const VarDecl &D, ParamValue Arg, unsigned ArgNo);
3163 
3164   /// protectFromPeepholes - Protect a value that we're intending to
3165   /// store to the side, but which will probably be used later, from
3166   /// aggressive peepholing optimizations that might delete it.
3167   ///
3168   /// Pass the result to unprotectFromPeepholes to declare that
3169   /// protection is no longer required.
3170   ///
3171   /// There's no particular reason why this shouldn't apply to
3172   /// l-values, it's just that no existing peepholes work on pointers.
3173   PeepholeProtection protectFromPeepholes(RValue rvalue);
3174   void unprotectFromPeepholes(PeepholeProtection protection);
3175 
3176   void emitAlignmentAssumptionCheck(llvm::Value *Ptr, QualType Ty,
3177                                     SourceLocation Loc,
3178                                     SourceLocation AssumptionLoc,
3179                                     llvm::Value *Alignment,
3180                                     llvm::Value *OffsetValue,
3181                                     llvm::Value *TheCheck,
3182                                     llvm::Instruction *Assumption);
3183 
3184   void emitAlignmentAssumption(llvm::Value *PtrValue, QualType Ty,
3185                                SourceLocation Loc, SourceLocation AssumptionLoc,
3186                                llvm::Value *Alignment,
3187                                llvm::Value *OffsetValue = nullptr);
3188 
3189   void emitAlignmentAssumption(llvm::Value *PtrValue, const Expr *E,
3190                                SourceLocation AssumptionLoc,
3191                                llvm::Value *Alignment,
3192                                llvm::Value *OffsetValue = nullptr);
3193 
3194   //===--------------------------------------------------------------------===//
3195   //                             Statement Emission
3196   //===--------------------------------------------------------------------===//
3197 
3198   /// EmitStopPoint - Emit a debug stoppoint if we are emitting debug info.
3199   void EmitStopPoint(const Stmt *S);
3200 
3201   /// EmitStmt - Emit the code for the statement \arg S. It is legal to call
3202   /// this function even if there is no current insertion point.
3203   ///
3204   /// This function may clear the current insertion point; callers should use
3205   /// EnsureInsertPoint if they wish to subsequently generate code without first
3206   /// calling EmitBlock, EmitBranch, or EmitStmt.
3207   void EmitStmt(const Stmt *S, ArrayRef<const Attr *> Attrs = None);
3208 
3209   /// EmitSimpleStmt - Try to emit a "simple" statement which does not
3210   /// necessarily require an insertion point or debug information; typically
3211   /// because the statement amounts to a jump or a container of other
3212   /// statements.
3213   ///
3214   /// \return True if the statement was handled.
3215   bool EmitSimpleStmt(const Stmt *S, ArrayRef<const Attr *> Attrs);
3216 
3217   Address EmitCompoundStmt(const CompoundStmt &S, bool GetLast = false,
3218                            AggValueSlot AVS = AggValueSlot::ignored());
3219   Address EmitCompoundStmtWithoutScope(const CompoundStmt &S,
3220                                        bool GetLast = false,
3221                                        AggValueSlot AVS =
3222                                                 AggValueSlot::ignored());
3223 
3224   /// EmitLabel - Emit the block for the given label. It is legal to call this
3225   /// function even if there is no current insertion point.
3226   void EmitLabel(const LabelDecl *D); // helper for EmitLabelStmt.
3227 
3228   void EmitLabelStmt(const LabelStmt &S);
3229   void EmitAttributedStmt(const AttributedStmt &S);
3230   void EmitGotoStmt(const GotoStmt &S);
3231   void EmitIndirectGotoStmt(const IndirectGotoStmt &S);
3232   void EmitIfStmt(const IfStmt &S);
3233 
3234   void EmitWhileStmt(const WhileStmt &S,
3235                      ArrayRef<const Attr *> Attrs = None);
3236   void EmitDoStmt(const DoStmt &S, ArrayRef<const Attr *> Attrs = None);
3237   void EmitForStmt(const ForStmt &S,
3238                    ArrayRef<const Attr *> Attrs = None);
3239   void EmitReturnStmt(const ReturnStmt &S);
3240   void EmitDeclStmt(const DeclStmt &S);
3241   void EmitBreakStmt(const BreakStmt &S);
3242   void EmitContinueStmt(const ContinueStmt &S);
3243   void EmitSwitchStmt(const SwitchStmt &S);
3244   void EmitDefaultStmt(const DefaultStmt &S, ArrayRef<const Attr *> Attrs);
3245   void EmitCaseStmt(const CaseStmt &S, ArrayRef<const Attr *> Attrs);
3246   void EmitCaseStmtRange(const CaseStmt &S, ArrayRef<const Attr *> Attrs);
3247   void EmitAsmStmt(const AsmStmt &S);
3248 
3249   void EmitObjCForCollectionStmt(const ObjCForCollectionStmt &S);
3250   void EmitObjCAtTryStmt(const ObjCAtTryStmt &S);
3251   void EmitObjCAtThrowStmt(const ObjCAtThrowStmt &S);
3252   void EmitObjCAtSynchronizedStmt(const ObjCAtSynchronizedStmt &S);
3253   void EmitObjCAutoreleasePoolStmt(const ObjCAutoreleasePoolStmt &S);
3254 
3255   void EmitCoroutineBody(const CoroutineBodyStmt &S);
3256   void EmitCoreturnStmt(const CoreturnStmt &S);
3257   RValue EmitCoawaitExpr(const CoawaitExpr &E,
3258                          AggValueSlot aggSlot = AggValueSlot::ignored(),
3259                          bool ignoreResult = false);
3260   LValue EmitCoawaitLValue(const CoawaitExpr *E);
3261   RValue EmitCoyieldExpr(const CoyieldExpr &E,
3262                          AggValueSlot aggSlot = AggValueSlot::ignored(),
3263                          bool ignoreResult = false);
3264   LValue EmitCoyieldLValue(const CoyieldExpr *E);
3265   RValue EmitCoroutineIntrinsic(const CallExpr *E, unsigned int IID);
3266 
3267   void EnterCXXTryStmt(const CXXTryStmt &S, bool IsFnTryBlock = false);
3268   void ExitCXXTryStmt(const CXXTryStmt &S, bool IsFnTryBlock = false);
3269 
3270   void EmitCXXTryStmt(const CXXTryStmt &S);
3271   void EmitSEHTryStmt(const SEHTryStmt &S);
3272   void EmitSEHLeaveStmt(const SEHLeaveStmt &S);
3273   void EnterSEHTryStmt(const SEHTryStmt &S);
3274   void ExitSEHTryStmt(const SEHTryStmt &S);
3275   void VolatilizeTryBlocks(llvm::BasicBlock *BB,
3276                            llvm::SmallPtrSet<llvm::BasicBlock *, 10> &V);
3277 
3278   void pushSEHCleanup(CleanupKind kind,
3279                       llvm::Function *FinallyFunc);
3280   void startOutlinedSEHHelper(CodeGenFunction &ParentCGF, bool IsFilter,
3281                               const Stmt *OutlinedStmt);
3282 
3283   llvm::Function *GenerateSEHFilterFunction(CodeGenFunction &ParentCGF,
3284                                             const SEHExceptStmt &Except);
3285 
3286   llvm::Function *GenerateSEHFinallyFunction(CodeGenFunction &ParentCGF,
3287                                              const SEHFinallyStmt &Finally);
3288 
3289   void EmitSEHExceptionCodeSave(CodeGenFunction &ParentCGF,
3290                                 llvm::Value *ParentFP,
3291                                 llvm::Value *EntryEBP);
3292   llvm::Value *EmitSEHExceptionCode();
3293   llvm::Value *EmitSEHExceptionInfo();
3294   llvm::Value *EmitSEHAbnormalTermination();
3295 
3296   /// Emit simple code for OpenMP directives in Simd-only mode.
3297   void EmitSimpleOMPExecutableDirective(const OMPExecutableDirective &D);
3298 
3299   /// Scan the outlined statement for captures from the parent function. For
3300   /// each capture, mark the capture as escaped and emit a call to
3301   /// llvm.localrecover. Insert the localrecover result into the LocalDeclMap.
3302   void EmitCapturedLocals(CodeGenFunction &ParentCGF, const Stmt *OutlinedStmt,
3303                           bool IsFilter);
3304 
3305   /// Recovers the address of a local in a parent function. ParentVar is the
3306   /// address of the variable used in the immediate parent function. It can
3307   /// either be an alloca or a call to llvm.localrecover if there are nested
3308   /// outlined functions. ParentFP is the frame pointer of the outermost parent
3309   /// frame.
3310   Address recoverAddrOfEscapedLocal(CodeGenFunction &ParentCGF,
3311                                     Address ParentVar,
3312                                     llvm::Value *ParentFP);
3313 
3314   void EmitCXXForRangeStmt(const CXXForRangeStmt &S,
3315                            ArrayRef<const Attr *> Attrs = None);
3316 
3317   /// Controls insertion of cancellation exit blocks in worksharing constructs.
3318   class OMPCancelStackRAII {
3319     CodeGenFunction &CGF;
3320 
3321   public:
3322     OMPCancelStackRAII(CodeGenFunction &CGF, OpenMPDirectiveKind Kind,
3323                        bool HasCancel)
3324         : CGF(CGF) {
3325       CGF.OMPCancelStack.enter(CGF, Kind, HasCancel);
3326     }
3327     ~OMPCancelStackRAII() { CGF.OMPCancelStack.exit(CGF); }
3328   };
3329 
3330   /// Returns calculated size of the specified type.
3331   llvm::Value *getTypeSize(QualType Ty);
3332   LValue InitCapturedStruct(const CapturedStmt &S);
3333   llvm::Function *EmitCapturedStmt(const CapturedStmt &S, CapturedRegionKind K);
3334   llvm::Function *GenerateCapturedStmtFunction(const CapturedStmt &S);
3335   Address GenerateCapturedStmtArgument(const CapturedStmt &S);
3336   llvm::Function *GenerateOpenMPCapturedStmtFunction(const CapturedStmt &S,
3337                                                      SourceLocation Loc);
3338   void GenerateOpenMPCapturedVars(const CapturedStmt &S,
3339                                   SmallVectorImpl<llvm::Value *> &CapturedVars);
3340   void emitOMPSimpleStore(LValue LVal, RValue RVal, QualType RValTy,
3341                           SourceLocation Loc);
3342   /// Perform element by element copying of arrays with type \a
3343   /// OriginalType from \a SrcAddr to \a DestAddr using copying procedure
3344   /// generated by \a CopyGen.
3345   ///
3346   /// \param DestAddr Address of the destination array.
3347   /// \param SrcAddr Address of the source array.
3348   /// \param OriginalType Type of destination and source arrays.
3349   /// \param CopyGen Copying procedure that copies value of single array element
3350   /// to another single array element.
3351   void EmitOMPAggregateAssign(
3352       Address DestAddr, Address SrcAddr, QualType OriginalType,
3353       const llvm::function_ref<void(Address, Address)> CopyGen);
3354   /// Emit proper copying of data from one variable to another.
3355   ///
3356   /// \param OriginalType Original type of the copied variables.
3357   /// \param DestAddr Destination address.
3358   /// \param SrcAddr Source address.
3359   /// \param DestVD Destination variable used in \a CopyExpr (for arrays, has
3360   /// type of the base array element).
3361   /// \param SrcVD Source variable used in \a CopyExpr (for arrays, has type of
3362   /// the base array element).
3363   /// \param Copy Actual copygin expression for copying data from \a SrcVD to \a
3364   /// DestVD.
3365   void EmitOMPCopy(QualType OriginalType,
3366                    Address DestAddr, Address SrcAddr,
3367                    const VarDecl *DestVD, const VarDecl *SrcVD,
3368                    const Expr *Copy);
3369   /// Emit atomic update code for constructs: \a X = \a X \a BO \a E or
3370   /// \a X = \a E \a BO \a E.
3371   ///
3372   /// \param X Value to be updated.
3373   /// \param E Update value.
3374   /// \param BO Binary operation for update operation.
3375   /// \param IsXLHSInRHSPart true if \a X is LHS in RHS part of the update
3376   /// expression, false otherwise.
3377   /// \param AO Atomic ordering of the generated atomic instructions.
3378   /// \param CommonGen Code generator for complex expressions that cannot be
3379   /// expressed through atomicrmw instruction.
3380   /// \returns <true, OldAtomicValue> if simple 'atomicrmw' instruction was
3381   /// generated, <false, RValue::get(nullptr)> otherwise.
3382   std::pair<bool, RValue> EmitOMPAtomicSimpleUpdateExpr(
3383       LValue X, RValue E, BinaryOperatorKind BO, bool IsXLHSInRHSPart,
3384       llvm::AtomicOrdering AO, SourceLocation Loc,
3385       const llvm::function_ref<RValue(RValue)> CommonGen);
3386   bool EmitOMPFirstprivateClause(const OMPExecutableDirective &D,
3387                                  OMPPrivateScope &PrivateScope);
3388   void EmitOMPPrivateClause(const OMPExecutableDirective &D,
3389                             OMPPrivateScope &PrivateScope);
3390   void EmitOMPUseDevicePtrClause(
3391       const OMPUseDevicePtrClause &C, OMPPrivateScope &PrivateScope,
3392       const llvm::DenseMap<const ValueDecl *, Address> &CaptureDeviceAddrMap);
3393   void EmitOMPUseDeviceAddrClause(
3394       const OMPUseDeviceAddrClause &C, OMPPrivateScope &PrivateScope,
3395       const llvm::DenseMap<const ValueDecl *, Address> &CaptureDeviceAddrMap);
3396   /// Emit code for copyin clause in \a D directive. The next code is
3397   /// generated at the start of outlined functions for directives:
3398   /// \code
3399   /// threadprivate_var1 = master_threadprivate_var1;
3400   /// operator=(threadprivate_var2, master_threadprivate_var2);
3401   /// ...
3402   /// __kmpc_barrier(&loc, global_tid);
3403   /// \endcode
3404   ///
3405   /// \param D OpenMP directive possibly with 'copyin' clause(s).
3406   /// \returns true if at least one copyin variable is found, false otherwise.
3407   bool EmitOMPCopyinClause(const OMPExecutableDirective &D);
3408   /// Emit initial code for lastprivate variables. If some variable is
3409   /// not also firstprivate, then the default initialization is used. Otherwise
3410   /// initialization of this variable is performed by EmitOMPFirstprivateClause
3411   /// method.
3412   ///
3413   /// \param D Directive that may have 'lastprivate' directives.
3414   /// \param PrivateScope Private scope for capturing lastprivate variables for
3415   /// proper codegen in internal captured statement.
3416   ///
3417   /// \returns true if there is at least one lastprivate variable, false
3418   /// otherwise.
3419   bool EmitOMPLastprivateClauseInit(const OMPExecutableDirective &D,
3420                                     OMPPrivateScope &PrivateScope);
3421   /// Emit final copying of lastprivate values to original variables at
3422   /// the end of the worksharing or simd directive.
3423   ///
3424   /// \param D Directive that has at least one 'lastprivate' directives.
3425   /// \param IsLastIterCond Boolean condition that must be set to 'i1 true' if
3426   /// it is the last iteration of the loop code in associated directive, or to
3427   /// 'i1 false' otherwise. If this item is nullptr, no final check is required.
3428   void EmitOMPLastprivateClauseFinal(const OMPExecutableDirective &D,
3429                                      bool NoFinals,
3430                                      llvm::Value *IsLastIterCond = nullptr);
3431   /// Emit initial code for linear clauses.
3432   void EmitOMPLinearClause(const OMPLoopDirective &D,
3433                            CodeGenFunction::OMPPrivateScope &PrivateScope);
3434   /// Emit final code for linear clauses.
3435   /// \param CondGen Optional conditional code for final part of codegen for
3436   /// linear clause.
3437   void EmitOMPLinearClauseFinal(
3438       const OMPLoopDirective &D,
3439       const llvm::function_ref<llvm::Value *(CodeGenFunction &)> CondGen);
3440   /// Emit initial code for reduction variables. Creates reduction copies
3441   /// and initializes them with the values according to OpenMP standard.
3442   ///
3443   /// \param D Directive (possibly) with the 'reduction' clause.
3444   /// \param PrivateScope Private scope for capturing reduction variables for
3445   /// proper codegen in internal captured statement.
3446   ///
3447   void EmitOMPReductionClauseInit(const OMPExecutableDirective &D,
3448                                   OMPPrivateScope &PrivateScope,
3449                                   bool ForInscan = false);
3450   /// Emit final update of reduction values to original variables at
3451   /// the end of the directive.
3452   ///
3453   /// \param D Directive that has at least one 'reduction' directives.
3454   /// \param ReductionKind The kind of reduction to perform.
3455   void EmitOMPReductionClauseFinal(const OMPExecutableDirective &D,
3456                                    const OpenMPDirectiveKind ReductionKind);
3457   /// Emit initial code for linear variables. Creates private copies
3458   /// and initializes them with the values according to OpenMP standard.
3459   ///
3460   /// \param D Directive (possibly) with the 'linear' clause.
3461   /// \return true if at least one linear variable is found that should be
3462   /// initialized with the value of the original variable, false otherwise.
3463   bool EmitOMPLinearClauseInit(const OMPLoopDirective &D);
3464 
3465   typedef const llvm::function_ref<void(CodeGenFunction & /*CGF*/,
3466                                         llvm::Function * /*OutlinedFn*/,
3467                                         const OMPTaskDataTy & /*Data*/)>
3468       TaskGenTy;
3469   void EmitOMPTaskBasedDirective(const OMPExecutableDirective &S,
3470                                  const OpenMPDirectiveKind CapturedRegion,
3471                                  const RegionCodeGenTy &BodyGen,
3472                                  const TaskGenTy &TaskGen, OMPTaskDataTy &Data);
3473   struct OMPTargetDataInfo {
3474     Address BasePointersArray = Address::invalid();
3475     Address PointersArray = Address::invalid();
3476     Address SizesArray = Address::invalid();
3477     Address MappersArray = Address::invalid();
3478     unsigned NumberOfTargetItems = 0;
3479     explicit OMPTargetDataInfo() = default;
3480     OMPTargetDataInfo(Address BasePointersArray, Address PointersArray,
3481                       Address SizesArray, Address MappersArray,
3482                       unsigned NumberOfTargetItems)
3483         : BasePointersArray(BasePointersArray), PointersArray(PointersArray),
3484           SizesArray(SizesArray), MappersArray(MappersArray),
3485           NumberOfTargetItems(NumberOfTargetItems) {}
3486   };
3487   void EmitOMPTargetTaskBasedDirective(const OMPExecutableDirective &S,
3488                                        const RegionCodeGenTy &BodyGen,
3489                                        OMPTargetDataInfo &InputInfo);
3490 
3491   void EmitOMPMetaDirective(const OMPMetaDirective &S);
3492   void EmitOMPParallelDirective(const OMPParallelDirective &S);
3493   void EmitOMPSimdDirective(const OMPSimdDirective &S);
3494   void EmitOMPTileDirective(const OMPTileDirective &S);
3495   void EmitOMPUnrollDirective(const OMPUnrollDirective &S);
3496   void EmitOMPForDirective(const OMPForDirective &S);
3497   void EmitOMPForSimdDirective(const OMPForSimdDirective &S);
3498   void EmitOMPSectionsDirective(const OMPSectionsDirective &S);
3499   void EmitOMPSectionDirective(const OMPSectionDirective &S);
3500   void EmitOMPSingleDirective(const OMPSingleDirective &S);
3501   void EmitOMPMasterDirective(const OMPMasterDirective &S);
3502   void EmitOMPMaskedDirective(const OMPMaskedDirective &S);
3503   void EmitOMPCriticalDirective(const OMPCriticalDirective &S);
3504   void EmitOMPParallelForDirective(const OMPParallelForDirective &S);
3505   void EmitOMPParallelForSimdDirective(const OMPParallelForSimdDirective &S);
3506   void EmitOMPParallelSectionsDirective(const OMPParallelSectionsDirective &S);
3507   void EmitOMPParallelMasterDirective(const OMPParallelMasterDirective &S);
3508   void EmitOMPTaskDirective(const OMPTaskDirective &S);
3509   void EmitOMPTaskyieldDirective(const OMPTaskyieldDirective &S);
3510   void EmitOMPBarrierDirective(const OMPBarrierDirective &S);
3511   void EmitOMPTaskwaitDirective(const OMPTaskwaitDirective &S);
3512   void EmitOMPTaskgroupDirective(const OMPTaskgroupDirective &S);
3513   void EmitOMPFlushDirective(const OMPFlushDirective &S);
3514   void EmitOMPDepobjDirective(const OMPDepobjDirective &S);
3515   void EmitOMPScanDirective(const OMPScanDirective &S);
3516   void EmitOMPOrderedDirective(const OMPOrderedDirective &S);
3517   void EmitOMPAtomicDirective(const OMPAtomicDirective &S);
3518   void EmitOMPTargetDirective(const OMPTargetDirective &S);
3519   void EmitOMPTargetDataDirective(const OMPTargetDataDirective &S);
3520   void EmitOMPTargetEnterDataDirective(const OMPTargetEnterDataDirective &S);
3521   void EmitOMPTargetExitDataDirective(const OMPTargetExitDataDirective &S);
3522   void EmitOMPTargetUpdateDirective(const OMPTargetUpdateDirective &S);
3523   void EmitOMPTargetParallelDirective(const OMPTargetParallelDirective &S);
3524   void
3525   EmitOMPTargetParallelForDirective(const OMPTargetParallelForDirective &S);
3526   void EmitOMPTeamsDirective(const OMPTeamsDirective &S);
3527   void
3528   EmitOMPCancellationPointDirective(const OMPCancellationPointDirective &S);
3529   void EmitOMPCancelDirective(const OMPCancelDirective &S);
3530   void EmitOMPTaskLoopBasedDirective(const OMPLoopDirective &S);
3531   void EmitOMPTaskLoopDirective(const OMPTaskLoopDirective &S);
3532   void EmitOMPTaskLoopSimdDirective(const OMPTaskLoopSimdDirective &S);
3533   void EmitOMPMasterTaskLoopDirective(const OMPMasterTaskLoopDirective &S);
3534   void
3535   EmitOMPMasterTaskLoopSimdDirective(const OMPMasterTaskLoopSimdDirective &S);
3536   void EmitOMPParallelMasterTaskLoopDirective(
3537       const OMPParallelMasterTaskLoopDirective &S);
3538   void EmitOMPParallelMasterTaskLoopSimdDirective(
3539       const OMPParallelMasterTaskLoopSimdDirective &S);
3540   void EmitOMPDistributeDirective(const OMPDistributeDirective &S);
3541   void EmitOMPDistributeParallelForDirective(
3542       const OMPDistributeParallelForDirective &S);
3543   void EmitOMPDistributeParallelForSimdDirective(
3544       const OMPDistributeParallelForSimdDirective &S);
3545   void EmitOMPDistributeSimdDirective(const OMPDistributeSimdDirective &S);
3546   void EmitOMPTargetParallelForSimdDirective(
3547       const OMPTargetParallelForSimdDirective &S);
3548   void EmitOMPTargetSimdDirective(const OMPTargetSimdDirective &S);
3549   void EmitOMPTeamsDistributeDirective(const OMPTeamsDistributeDirective &S);
3550   void
3551   EmitOMPTeamsDistributeSimdDirective(const OMPTeamsDistributeSimdDirective &S);
3552   void EmitOMPTeamsDistributeParallelForSimdDirective(
3553       const OMPTeamsDistributeParallelForSimdDirective &S);
3554   void EmitOMPTeamsDistributeParallelForDirective(
3555       const OMPTeamsDistributeParallelForDirective &S);
3556   void EmitOMPTargetTeamsDirective(const OMPTargetTeamsDirective &S);
3557   void EmitOMPTargetTeamsDistributeDirective(
3558       const OMPTargetTeamsDistributeDirective &S);
3559   void EmitOMPTargetTeamsDistributeParallelForDirective(
3560       const OMPTargetTeamsDistributeParallelForDirective &S);
3561   void EmitOMPTargetTeamsDistributeParallelForSimdDirective(
3562       const OMPTargetTeamsDistributeParallelForSimdDirective &S);
3563   void EmitOMPTargetTeamsDistributeSimdDirective(
3564       const OMPTargetTeamsDistributeSimdDirective &S);
3565   void EmitOMPGenericLoopDirective(const OMPGenericLoopDirective &S);
3566   void EmitOMPInteropDirective(const OMPInteropDirective &S);
3567 
3568   /// Emit device code for the target directive.
3569   static void EmitOMPTargetDeviceFunction(CodeGenModule &CGM,
3570                                           StringRef ParentName,
3571                                           const OMPTargetDirective &S);
3572   static void
3573   EmitOMPTargetParallelDeviceFunction(CodeGenModule &CGM, StringRef ParentName,
3574                                       const OMPTargetParallelDirective &S);
3575   /// Emit device code for the target parallel for directive.
3576   static void EmitOMPTargetParallelForDeviceFunction(
3577       CodeGenModule &CGM, StringRef ParentName,
3578       const OMPTargetParallelForDirective &S);
3579   /// Emit device code for the target parallel for simd directive.
3580   static void EmitOMPTargetParallelForSimdDeviceFunction(
3581       CodeGenModule &CGM, StringRef ParentName,
3582       const OMPTargetParallelForSimdDirective &S);
3583   /// Emit device code for the target teams directive.
3584   static void
3585   EmitOMPTargetTeamsDeviceFunction(CodeGenModule &CGM, StringRef ParentName,
3586                                    const OMPTargetTeamsDirective &S);
3587   /// Emit device code for the target teams distribute directive.
3588   static void EmitOMPTargetTeamsDistributeDeviceFunction(
3589       CodeGenModule &CGM, StringRef ParentName,
3590       const OMPTargetTeamsDistributeDirective &S);
3591   /// Emit device code for the target teams distribute simd directive.
3592   static void EmitOMPTargetTeamsDistributeSimdDeviceFunction(
3593       CodeGenModule &CGM, StringRef ParentName,
3594       const OMPTargetTeamsDistributeSimdDirective &S);
3595   /// Emit device code for the target simd directive.
3596   static void EmitOMPTargetSimdDeviceFunction(CodeGenModule &CGM,
3597                                               StringRef ParentName,
3598                                               const OMPTargetSimdDirective &S);
3599   /// Emit device code for the target teams distribute parallel for simd
3600   /// directive.
3601   static void EmitOMPTargetTeamsDistributeParallelForSimdDeviceFunction(
3602       CodeGenModule &CGM, StringRef ParentName,
3603       const OMPTargetTeamsDistributeParallelForSimdDirective &S);
3604 
3605   static void EmitOMPTargetTeamsDistributeParallelForDeviceFunction(
3606       CodeGenModule &CGM, StringRef ParentName,
3607       const OMPTargetTeamsDistributeParallelForDirective &S);
3608 
3609   /// Emit the Stmt \p S and return its topmost canonical loop, if any.
3610   /// TODO: The \p Depth paramter is not yet implemented and must be 1. In the
3611   /// future it is meant to be the number of loops expected in the loop nests
3612   /// (usually specified by the "collapse" clause) that are collapsed to a
3613   /// single loop by this function.
3614   llvm::CanonicalLoopInfo *EmitOMPCollapsedCanonicalLoopNest(const Stmt *S,
3615                                                              int Depth);
3616 
3617   /// Emit an OMPCanonicalLoop using the OpenMPIRBuilder.
3618   void EmitOMPCanonicalLoop(const OMPCanonicalLoop *S);
3619 
3620   /// Emit inner loop of the worksharing/simd construct.
3621   ///
3622   /// \param S Directive, for which the inner loop must be emitted.
3623   /// \param RequiresCleanup true, if directive has some associated private
3624   /// variables.
3625   /// \param LoopCond Bollean condition for loop continuation.
3626   /// \param IncExpr Increment expression for loop control variable.
3627   /// \param BodyGen Generator for the inner body of the inner loop.
3628   /// \param PostIncGen Genrator for post-increment code (required for ordered
3629   /// loop directvies).
3630   void EmitOMPInnerLoop(
3631       const OMPExecutableDirective &S, bool RequiresCleanup,
3632       const Expr *LoopCond, const Expr *IncExpr,
3633       const llvm::function_ref<void(CodeGenFunction &)> BodyGen,
3634       const llvm::function_ref<void(CodeGenFunction &)> PostIncGen);
3635 
3636   JumpDest getOMPCancelDestination(OpenMPDirectiveKind Kind);
3637   /// Emit initial code for loop counters of loop-based directives.
3638   void EmitOMPPrivateLoopCounters(const OMPLoopDirective &S,
3639                                   OMPPrivateScope &LoopScope);
3640 
3641   /// Helper for the OpenMP loop directives.
3642   void EmitOMPLoopBody(const OMPLoopDirective &D, JumpDest LoopExit);
3643 
3644   /// Emit code for the worksharing loop-based directive.
3645   /// \return true, if this construct has any lastprivate clause, false -
3646   /// otherwise.
3647   bool EmitOMPWorksharingLoop(const OMPLoopDirective &S, Expr *EUB,
3648                               const CodeGenLoopBoundsTy &CodeGenLoopBounds,
3649                               const CodeGenDispatchBoundsTy &CGDispatchBounds);
3650 
3651   /// Emit code for the distribute loop-based directive.
3652   void EmitOMPDistributeLoop(const OMPLoopDirective &S,
3653                              const CodeGenLoopTy &CodeGenLoop, Expr *IncExpr);
3654 
3655   /// Helpers for the OpenMP loop directives.
3656   void EmitOMPSimdInit(const OMPLoopDirective &D);
3657   void EmitOMPSimdFinal(
3658       const OMPLoopDirective &D,
3659       const llvm::function_ref<llvm::Value *(CodeGenFunction &)> CondGen);
3660 
3661   /// Emits the lvalue for the expression with possibly captured variable.
3662   LValue EmitOMPSharedLValue(const Expr *E);
3663 
3664 private:
3665   /// Helpers for blocks.
3666   llvm::Value *EmitBlockLiteral(const CGBlockInfo &Info);
3667 
3668   /// struct with the values to be passed to the OpenMP loop-related functions
3669   struct OMPLoopArguments {
3670     /// loop lower bound
3671     Address LB = Address::invalid();
3672     /// loop upper bound
3673     Address UB = Address::invalid();
3674     /// loop stride
3675     Address ST = Address::invalid();
3676     /// isLastIteration argument for runtime functions
3677     Address IL = Address::invalid();
3678     /// Chunk value generated by sema
3679     llvm::Value *Chunk = nullptr;
3680     /// EnsureUpperBound
3681     Expr *EUB = nullptr;
3682     /// IncrementExpression
3683     Expr *IncExpr = nullptr;
3684     /// Loop initialization
3685     Expr *Init = nullptr;
3686     /// Loop exit condition
3687     Expr *Cond = nullptr;
3688     /// Update of LB after a whole chunk has been executed
3689     Expr *NextLB = nullptr;
3690     /// Update of UB after a whole chunk has been executed
3691     Expr *NextUB = nullptr;
3692     OMPLoopArguments() = default;
3693     OMPLoopArguments(Address LB, Address UB, Address ST, Address IL,
3694                      llvm::Value *Chunk = nullptr, Expr *EUB = nullptr,
3695                      Expr *IncExpr = nullptr, Expr *Init = nullptr,
3696                      Expr *Cond = nullptr, Expr *NextLB = nullptr,
3697                      Expr *NextUB = nullptr)
3698         : LB(LB), UB(UB), ST(ST), IL(IL), Chunk(Chunk), EUB(EUB),
3699           IncExpr(IncExpr), Init(Init), Cond(Cond), NextLB(NextLB),
3700           NextUB(NextUB) {}
3701   };
3702   void EmitOMPOuterLoop(bool DynamicOrOrdered, bool IsMonotonic,
3703                         const OMPLoopDirective &S, OMPPrivateScope &LoopScope,
3704                         const OMPLoopArguments &LoopArgs,
3705                         const CodeGenLoopTy &CodeGenLoop,
3706                         const CodeGenOrderedTy &CodeGenOrdered);
3707   void EmitOMPForOuterLoop(const OpenMPScheduleTy &ScheduleKind,
3708                            bool IsMonotonic, const OMPLoopDirective &S,
3709                            OMPPrivateScope &LoopScope, bool Ordered,
3710                            const OMPLoopArguments &LoopArgs,
3711                            const CodeGenDispatchBoundsTy &CGDispatchBounds);
3712   void EmitOMPDistributeOuterLoop(OpenMPDistScheduleClauseKind ScheduleKind,
3713                                   const OMPLoopDirective &S,
3714                                   OMPPrivateScope &LoopScope,
3715                                   const OMPLoopArguments &LoopArgs,
3716                                   const CodeGenLoopTy &CodeGenLoopContent);
3717   /// Emit code for sections directive.
3718   void EmitSections(const OMPExecutableDirective &S);
3719 
3720 public:
3721 
3722   //===--------------------------------------------------------------------===//
3723   //                         LValue Expression Emission
3724   //===--------------------------------------------------------------------===//
3725 
3726   /// Create a check that a scalar RValue is non-null.
3727   llvm::Value *EmitNonNullRValueCheck(RValue RV, QualType T);
3728 
3729   /// GetUndefRValue - Get an appropriate 'undef' rvalue for the given type.
3730   RValue GetUndefRValue(QualType Ty);
3731 
3732   /// EmitUnsupportedRValue - Emit a dummy r-value using the type of E
3733   /// and issue an ErrorUnsupported style diagnostic (using the
3734   /// provided Name).
3735   RValue EmitUnsupportedRValue(const Expr *E,
3736                                const char *Name);
3737 
3738   /// EmitUnsupportedLValue - Emit a dummy l-value using the type of E and issue
3739   /// an ErrorUnsupported style diagnostic (using the provided Name).
3740   LValue EmitUnsupportedLValue(const Expr *E,
3741                                const char *Name);
3742 
3743   /// EmitLValue - Emit code to compute a designator that specifies the location
3744   /// of the expression.
3745   ///
3746   /// This can return one of two things: a simple address or a bitfield
3747   /// reference.  In either case, the LLVM Value* in the LValue structure is
3748   /// guaranteed to be an LLVM pointer type.
3749   ///
3750   /// If this returns a bitfield reference, nothing about the pointee type of
3751   /// the LLVM value is known: For example, it may not be a pointer to an
3752   /// integer.
3753   ///
3754   /// If this returns a normal address, and if the lvalue's C type is fixed
3755   /// size, this method guarantees that the returned pointer type will point to
3756   /// an LLVM type of the same size of the lvalue's type.  If the lvalue has a
3757   /// variable length type, this is not possible.
3758   ///
3759   LValue EmitLValue(const Expr *E);
3760 
3761   /// Same as EmitLValue but additionally we generate checking code to
3762   /// guard against undefined behavior.  This is only suitable when we know
3763   /// that the address will be used to access the object.
3764   LValue EmitCheckedLValue(const Expr *E, TypeCheckKind TCK);
3765 
3766   RValue convertTempToRValue(Address addr, QualType type,
3767                              SourceLocation Loc);
3768 
3769   void EmitAtomicInit(Expr *E, LValue lvalue);
3770 
3771   bool LValueIsSuitableForInlineAtomic(LValue Src);
3772 
3773   RValue EmitAtomicLoad(LValue LV, SourceLocation SL,
3774                         AggValueSlot Slot = AggValueSlot::ignored());
3775 
3776   RValue EmitAtomicLoad(LValue lvalue, SourceLocation loc,
3777                         llvm::AtomicOrdering AO, bool IsVolatile = false,
3778                         AggValueSlot slot = AggValueSlot::ignored());
3779 
3780   void EmitAtomicStore(RValue rvalue, LValue lvalue, bool isInit);
3781 
3782   void EmitAtomicStore(RValue rvalue, LValue lvalue, llvm::AtomicOrdering AO,
3783                        bool IsVolatile, bool isInit);
3784 
3785   std::pair<RValue, llvm::Value *> EmitAtomicCompareExchange(
3786       LValue Obj, RValue Expected, RValue Desired, SourceLocation Loc,
3787       llvm::AtomicOrdering Success =
3788           llvm::AtomicOrdering::SequentiallyConsistent,
3789       llvm::AtomicOrdering Failure =
3790           llvm::AtomicOrdering::SequentiallyConsistent,
3791       bool IsWeak = false, AggValueSlot Slot = AggValueSlot::ignored());
3792 
3793   void EmitAtomicUpdate(LValue LVal, llvm::AtomicOrdering AO,
3794                         const llvm::function_ref<RValue(RValue)> &UpdateOp,
3795                         bool IsVolatile);
3796 
3797   /// EmitToMemory - Change a scalar value from its value
3798   /// representation to its in-memory representation.
3799   llvm::Value *EmitToMemory(llvm::Value *Value, QualType Ty);
3800 
3801   /// EmitFromMemory - Change a scalar value from its memory
3802   /// representation to its value representation.
3803   llvm::Value *EmitFromMemory(llvm::Value *Value, QualType Ty);
3804 
3805   /// Check if the scalar \p Value is within the valid range for the given
3806   /// type \p Ty.
3807   ///
3808   /// Returns true if a check is needed (even if the range is unknown).
3809   bool EmitScalarRangeCheck(llvm::Value *Value, QualType Ty,
3810                             SourceLocation Loc);
3811 
3812   /// EmitLoadOfScalar - Load a scalar value from an address, taking
3813   /// care to appropriately convert from the memory representation to
3814   /// the LLVM value representation.
3815   llvm::Value *EmitLoadOfScalar(Address Addr, bool Volatile, QualType Ty,
3816                                 SourceLocation Loc,
3817                                 AlignmentSource Source = AlignmentSource::Type,
3818                                 bool isNontemporal = false) {
3819     return EmitLoadOfScalar(Addr, Volatile, Ty, Loc, LValueBaseInfo(Source),
3820                             CGM.getTBAAAccessInfo(Ty), isNontemporal);
3821   }
3822 
3823   llvm::Value *EmitLoadOfScalar(Address Addr, bool Volatile, QualType Ty,
3824                                 SourceLocation Loc, LValueBaseInfo BaseInfo,
3825                                 TBAAAccessInfo TBAAInfo,
3826                                 bool isNontemporal = false);
3827 
3828   /// EmitLoadOfScalar - Load a scalar value from an address, taking
3829   /// care to appropriately convert from the memory representation to
3830   /// the LLVM value representation.  The l-value must be a simple
3831   /// l-value.
3832   llvm::Value *EmitLoadOfScalar(LValue lvalue, SourceLocation Loc);
3833 
3834   /// EmitStoreOfScalar - Store a scalar value to an address, taking
3835   /// care to appropriately convert from the memory representation to
3836   /// the LLVM value representation.
3837   void EmitStoreOfScalar(llvm::Value *Value, Address Addr,
3838                          bool Volatile, QualType Ty,
3839                          AlignmentSource Source = AlignmentSource::Type,
3840                          bool isInit = false, bool isNontemporal = false) {
3841     EmitStoreOfScalar(Value, Addr, Volatile, Ty, LValueBaseInfo(Source),
3842                       CGM.getTBAAAccessInfo(Ty), isInit, isNontemporal);
3843   }
3844 
3845   void EmitStoreOfScalar(llvm::Value *Value, Address Addr,
3846                          bool Volatile, QualType Ty,
3847                          LValueBaseInfo BaseInfo, TBAAAccessInfo TBAAInfo,
3848                          bool isInit = false, bool isNontemporal = false);
3849 
3850   /// EmitStoreOfScalar - Store a scalar value to an address, taking
3851   /// care to appropriately convert from the memory representation to
3852   /// the LLVM value representation.  The l-value must be a simple
3853   /// l-value.  The isInit flag indicates whether this is an initialization.
3854   /// If so, atomic qualifiers are ignored and the store is always non-atomic.
3855   void EmitStoreOfScalar(llvm::Value *value, LValue lvalue, bool isInit=false);
3856 
3857   /// EmitLoadOfLValue - Given an expression that represents a value lvalue,
3858   /// this method emits the address of the lvalue, then loads the result as an
3859   /// rvalue, returning the rvalue.
3860   RValue EmitLoadOfLValue(LValue V, SourceLocation Loc);
3861   RValue EmitLoadOfExtVectorElementLValue(LValue V);
3862   RValue EmitLoadOfBitfieldLValue(LValue LV, SourceLocation Loc);
3863   RValue EmitLoadOfGlobalRegLValue(LValue LV);
3864 
3865   /// EmitStoreThroughLValue - Store the specified rvalue into the specified
3866   /// lvalue, where both are guaranteed to the have the same type, and that type
3867   /// is 'Ty'.
3868   void EmitStoreThroughLValue(RValue Src, LValue Dst, bool isInit = false);
3869   void EmitStoreThroughExtVectorComponentLValue(RValue Src, LValue Dst);
3870   void EmitStoreThroughGlobalRegLValue(RValue Src, LValue Dst);
3871 
3872   /// EmitStoreThroughBitfieldLValue - Store Src into Dst with same constraints
3873   /// as EmitStoreThroughLValue.
3874   ///
3875   /// \param Result [out] - If non-null, this will be set to a Value* for the
3876   /// bit-field contents after the store, appropriate for use as the result of
3877   /// an assignment to the bit-field.
3878   void EmitStoreThroughBitfieldLValue(RValue Src, LValue Dst,
3879                                       llvm::Value **Result=nullptr);
3880 
3881   /// Emit an l-value for an assignment (simple or compound) of complex type.
3882   LValue EmitComplexAssignmentLValue(const BinaryOperator *E);
3883   LValue EmitComplexCompoundAssignmentLValue(const CompoundAssignOperator *E);
3884   LValue EmitScalarCompoundAssignWithComplex(const CompoundAssignOperator *E,
3885                                              llvm::Value *&Result);
3886 
3887   // Note: only available for agg return types
3888   LValue EmitBinaryOperatorLValue(const BinaryOperator *E);
3889   LValue EmitCompoundAssignmentLValue(const CompoundAssignOperator *E);
3890   // Note: only available for agg return types
3891   LValue EmitCallExprLValue(const CallExpr *E);
3892   // Note: only available for agg return types
3893   LValue EmitVAArgExprLValue(const VAArgExpr *E);
3894   LValue EmitDeclRefLValue(const DeclRefExpr *E);
3895   LValue EmitStringLiteralLValue(const StringLiteral *E);
3896   LValue EmitObjCEncodeExprLValue(const ObjCEncodeExpr *E);
3897   LValue EmitPredefinedLValue(const PredefinedExpr *E);
3898   LValue EmitUnaryOpLValue(const UnaryOperator *E);
3899   LValue EmitArraySubscriptExpr(const ArraySubscriptExpr *E,
3900                                 bool Accessed = false);
3901   LValue EmitMatrixSubscriptExpr(const MatrixSubscriptExpr *E);
3902   LValue EmitOMPArraySectionExpr(const OMPArraySectionExpr *E,
3903                                  bool IsLowerBound = true);
3904   LValue EmitExtVectorElementExpr(const ExtVectorElementExpr *E);
3905   LValue EmitMemberExpr(const MemberExpr *E);
3906   LValue EmitObjCIsaExpr(const ObjCIsaExpr *E);
3907   LValue EmitCompoundLiteralLValue(const CompoundLiteralExpr *E);
3908   LValue EmitInitListLValue(const InitListExpr *E);
3909   LValue EmitConditionalOperatorLValue(const AbstractConditionalOperator *E);
3910   LValue EmitCastLValue(const CastExpr *E);
3911   LValue EmitMaterializeTemporaryExpr(const MaterializeTemporaryExpr *E);
3912   LValue EmitOpaqueValueLValue(const OpaqueValueExpr *e);
3913 
3914   Address EmitExtVectorElementLValue(LValue V);
3915 
3916   RValue EmitRValueForField(LValue LV, const FieldDecl *FD, SourceLocation Loc);
3917 
3918   Address EmitArrayToPointerDecay(const Expr *Array,
3919                                   LValueBaseInfo *BaseInfo = nullptr,
3920                                   TBAAAccessInfo *TBAAInfo = nullptr);
3921 
3922   class ConstantEmission {
3923     llvm::PointerIntPair<llvm::Constant*, 1, bool> ValueAndIsReference;
3924     ConstantEmission(llvm::Constant *C, bool isReference)
3925       : ValueAndIsReference(C, isReference) {}
3926   public:
3927     ConstantEmission() {}
3928     static ConstantEmission forReference(llvm::Constant *C) {
3929       return ConstantEmission(C, true);
3930     }
3931     static ConstantEmission forValue(llvm::Constant *C) {
3932       return ConstantEmission(C, false);
3933     }
3934 
3935     explicit operator bool() const {
3936       return ValueAndIsReference.getOpaqueValue() != nullptr;
3937     }
3938 
3939     bool isReference() const { return ValueAndIsReference.getInt(); }
3940     LValue getReferenceLValue(CodeGenFunction &CGF, Expr *refExpr) const {
3941       assert(isReference());
3942       return CGF.MakeNaturalAlignAddrLValue(ValueAndIsReference.getPointer(),
3943                                             refExpr->getType());
3944     }
3945 
3946     llvm::Constant *getValue() const {
3947       assert(!isReference());
3948       return ValueAndIsReference.getPointer();
3949     }
3950   };
3951 
3952   ConstantEmission tryEmitAsConstant(DeclRefExpr *refExpr);
3953   ConstantEmission tryEmitAsConstant(const MemberExpr *ME);
3954   llvm::Value *emitScalarConstant(const ConstantEmission &Constant, Expr *E);
3955 
3956   RValue EmitPseudoObjectRValue(const PseudoObjectExpr *e,
3957                                 AggValueSlot slot = AggValueSlot::ignored());
3958   LValue EmitPseudoObjectLValue(const PseudoObjectExpr *e);
3959 
3960   llvm::Value *EmitIvarOffset(const ObjCInterfaceDecl *Interface,
3961                               const ObjCIvarDecl *Ivar);
3962   LValue EmitLValueForField(LValue Base, const FieldDecl* Field);
3963   LValue EmitLValueForLambdaField(const FieldDecl *Field);
3964 
3965   /// EmitLValueForFieldInitialization - Like EmitLValueForField, except that
3966   /// if the Field is a reference, this will return the address of the reference
3967   /// and not the address of the value stored in the reference.
3968   LValue EmitLValueForFieldInitialization(LValue Base,
3969                                           const FieldDecl* Field);
3970 
3971   LValue EmitLValueForIvar(QualType ObjectTy,
3972                            llvm::Value* Base, const ObjCIvarDecl *Ivar,
3973                            unsigned CVRQualifiers);
3974 
3975   LValue EmitCXXConstructLValue(const CXXConstructExpr *E);
3976   LValue EmitCXXBindTemporaryLValue(const CXXBindTemporaryExpr *E);
3977   LValue EmitCXXTypeidLValue(const CXXTypeidExpr *E);
3978   LValue EmitCXXUuidofLValue(const CXXUuidofExpr *E);
3979 
3980   LValue EmitObjCMessageExprLValue(const ObjCMessageExpr *E);
3981   LValue EmitObjCIvarRefLValue(const ObjCIvarRefExpr *E);
3982   LValue EmitStmtExprLValue(const StmtExpr *E);
3983   LValue EmitPointerToDataMemberBinaryExpr(const BinaryOperator *E);
3984   LValue EmitObjCSelectorLValue(const ObjCSelectorExpr *E);
3985   void   EmitDeclRefExprDbgValue(const DeclRefExpr *E, const APValue &Init);
3986 
3987   //===--------------------------------------------------------------------===//
3988   //                         Scalar Expression Emission
3989   //===--------------------------------------------------------------------===//
3990 
3991   /// EmitCall - Generate a call of the given function, expecting the given
3992   /// result type, and using the given argument list which specifies both the
3993   /// LLVM arguments and the types they were derived from.
3994   RValue EmitCall(const CGFunctionInfo &CallInfo, const CGCallee &Callee,
3995                   ReturnValueSlot ReturnValue, const CallArgList &Args,
3996                   llvm::CallBase **callOrInvoke, bool IsMustTail,
3997                   SourceLocation Loc);
3998   RValue EmitCall(const CGFunctionInfo &CallInfo, const CGCallee &Callee,
3999                   ReturnValueSlot ReturnValue, const CallArgList &Args,
4000                   llvm::CallBase **callOrInvoke = nullptr,
4001                   bool IsMustTail = false) {
4002     return EmitCall(CallInfo, Callee, ReturnValue, Args, callOrInvoke,
4003                     IsMustTail, SourceLocation());
4004   }
4005   RValue EmitCall(QualType FnType, const CGCallee &Callee, const CallExpr *E,
4006                   ReturnValueSlot ReturnValue, llvm::Value *Chain = nullptr);
4007   RValue EmitCallExpr(const CallExpr *E,
4008                       ReturnValueSlot ReturnValue = ReturnValueSlot());
4009   RValue EmitSimpleCallExpr(const CallExpr *E, ReturnValueSlot ReturnValue);
4010   CGCallee EmitCallee(const Expr *E);
4011 
4012   void checkTargetFeatures(const CallExpr *E, const FunctionDecl *TargetDecl);
4013   void checkTargetFeatures(SourceLocation Loc, const FunctionDecl *TargetDecl);
4014 
4015   llvm::CallInst *EmitRuntimeCall(llvm::FunctionCallee callee,
4016                                   const Twine &name = "");
4017   llvm::CallInst *EmitRuntimeCall(llvm::FunctionCallee callee,
4018                                   ArrayRef<llvm::Value *> args,
4019                                   const Twine &name = "");
4020   llvm::CallInst *EmitNounwindRuntimeCall(llvm::FunctionCallee callee,
4021                                           const Twine &name = "");
4022   llvm::CallInst *EmitNounwindRuntimeCall(llvm::FunctionCallee callee,
4023                                           ArrayRef<llvm::Value *> args,
4024                                           const Twine &name = "");
4025 
4026   SmallVector<llvm::OperandBundleDef, 1>
4027   getBundlesForFunclet(llvm::Value *Callee);
4028 
4029   llvm::CallBase *EmitCallOrInvoke(llvm::FunctionCallee Callee,
4030                                    ArrayRef<llvm::Value *> Args,
4031                                    const Twine &Name = "");
4032   llvm::CallBase *EmitRuntimeCallOrInvoke(llvm::FunctionCallee callee,
4033                                           ArrayRef<llvm::Value *> args,
4034                                           const Twine &name = "");
4035   llvm::CallBase *EmitRuntimeCallOrInvoke(llvm::FunctionCallee callee,
4036                                           const Twine &name = "");
4037   void EmitNoreturnRuntimeCallOrInvoke(llvm::FunctionCallee callee,
4038                                        ArrayRef<llvm::Value *> args);
4039 
4040   CGCallee BuildAppleKextVirtualCall(const CXXMethodDecl *MD,
4041                                      NestedNameSpecifier *Qual,
4042                                      llvm::Type *Ty);
4043 
4044   CGCallee BuildAppleKextVirtualDestructorCall(const CXXDestructorDecl *DD,
4045                                                CXXDtorType Type,
4046                                                const CXXRecordDecl *RD);
4047 
4048   // Return the copy constructor name with the prefix "__copy_constructor_"
4049   // removed.
4050   static std::string getNonTrivialCopyConstructorStr(QualType QT,
4051                                                      CharUnits Alignment,
4052                                                      bool IsVolatile,
4053                                                      ASTContext &Ctx);
4054 
4055   // Return the destructor name with the prefix "__destructor_" removed.
4056   static std::string getNonTrivialDestructorStr(QualType QT,
4057                                                 CharUnits Alignment,
4058                                                 bool IsVolatile,
4059                                                 ASTContext &Ctx);
4060 
4061   // These functions emit calls to the special functions of non-trivial C
4062   // structs.
4063   void defaultInitNonTrivialCStructVar(LValue Dst);
4064   void callCStructDefaultConstructor(LValue Dst);
4065   void callCStructDestructor(LValue Dst);
4066   void callCStructCopyConstructor(LValue Dst, LValue Src);
4067   void callCStructMoveConstructor(LValue Dst, LValue Src);
4068   void callCStructCopyAssignmentOperator(LValue Dst, LValue Src);
4069   void callCStructMoveAssignmentOperator(LValue Dst, LValue Src);
4070 
4071   RValue
4072   EmitCXXMemberOrOperatorCall(const CXXMethodDecl *Method,
4073                               const CGCallee &Callee,
4074                               ReturnValueSlot ReturnValue, llvm::Value *This,
4075                               llvm::Value *ImplicitParam,
4076                               QualType ImplicitParamTy, const CallExpr *E,
4077                               CallArgList *RtlArgs);
4078   RValue EmitCXXDestructorCall(GlobalDecl Dtor, const CGCallee &Callee,
4079                                llvm::Value *This, QualType ThisTy,
4080                                llvm::Value *ImplicitParam,
4081                                QualType ImplicitParamTy, const CallExpr *E);
4082   RValue EmitCXXMemberCallExpr(const CXXMemberCallExpr *E,
4083                                ReturnValueSlot ReturnValue);
4084   RValue EmitCXXMemberOrOperatorMemberCallExpr(const CallExpr *CE,
4085                                                const CXXMethodDecl *MD,
4086                                                ReturnValueSlot ReturnValue,
4087                                                bool HasQualifier,
4088                                                NestedNameSpecifier *Qualifier,
4089                                                bool IsArrow, const Expr *Base);
4090   // Compute the object pointer.
4091   Address EmitCXXMemberDataPointerAddress(const Expr *E, Address base,
4092                                           llvm::Value *memberPtr,
4093                                           const MemberPointerType *memberPtrType,
4094                                           LValueBaseInfo *BaseInfo = nullptr,
4095                                           TBAAAccessInfo *TBAAInfo = nullptr);
4096   RValue EmitCXXMemberPointerCallExpr(const CXXMemberCallExpr *E,
4097                                       ReturnValueSlot ReturnValue);
4098 
4099   RValue EmitCXXOperatorMemberCallExpr(const CXXOperatorCallExpr *E,
4100                                        const CXXMethodDecl *MD,
4101                                        ReturnValueSlot ReturnValue);
4102   RValue EmitCXXPseudoDestructorExpr(const CXXPseudoDestructorExpr *E);
4103 
4104   RValue EmitCUDAKernelCallExpr(const CUDAKernelCallExpr *E,
4105                                 ReturnValueSlot ReturnValue);
4106 
4107   RValue EmitNVPTXDevicePrintfCallExpr(const CallExpr *E);
4108   RValue EmitAMDGPUDevicePrintfCallExpr(const CallExpr *E);
4109   RValue EmitOpenMPDevicePrintfCallExpr(const CallExpr *E);
4110 
4111   RValue EmitBuiltinExpr(const GlobalDecl GD, unsigned BuiltinID,
4112                          const CallExpr *E, ReturnValueSlot ReturnValue);
4113 
4114   RValue emitRotate(const CallExpr *E, bool IsRotateRight);
4115 
4116   /// Emit IR for __builtin_os_log_format.
4117   RValue emitBuiltinOSLogFormat(const CallExpr &E);
4118 
4119   /// Emit IR for __builtin_is_aligned.
4120   RValue EmitBuiltinIsAligned(const CallExpr *E);
4121   /// Emit IR for __builtin_align_up/__builtin_align_down.
4122   RValue EmitBuiltinAlignTo(const CallExpr *E, bool AlignUp);
4123 
4124   llvm::Function *generateBuiltinOSLogHelperFunction(
4125       const analyze_os_log::OSLogBufferLayout &Layout,
4126       CharUnits BufferAlignment);
4127 
4128   RValue EmitBlockCallExpr(const CallExpr *E, ReturnValueSlot ReturnValue);
4129 
4130   /// EmitTargetBuiltinExpr - Emit the given builtin call. Returns 0 if the call
4131   /// is unhandled by the current target.
4132   llvm::Value *EmitTargetBuiltinExpr(unsigned BuiltinID, const CallExpr *E,
4133                                      ReturnValueSlot ReturnValue);
4134 
4135   llvm::Value *EmitAArch64CompareBuiltinExpr(llvm::Value *Op, llvm::Type *Ty,
4136                                              const llvm::CmpInst::Predicate Fp,
4137                                              const llvm::CmpInst::Predicate Ip,
4138                                              const llvm::Twine &Name = "");
4139   llvm::Value *EmitARMBuiltinExpr(unsigned BuiltinID, const CallExpr *E,
4140                                   ReturnValueSlot ReturnValue,
4141                                   llvm::Triple::ArchType Arch);
4142   llvm::Value *EmitARMMVEBuiltinExpr(unsigned BuiltinID, const CallExpr *E,
4143                                      ReturnValueSlot ReturnValue,
4144                                      llvm::Triple::ArchType Arch);
4145   llvm::Value *EmitARMCDEBuiltinExpr(unsigned BuiltinID, const CallExpr *E,
4146                                      ReturnValueSlot ReturnValue,
4147                                      llvm::Triple::ArchType Arch);
4148   llvm::Value *EmitCMSEClearRecord(llvm::Value *V, llvm::IntegerType *ITy,
4149                                    QualType RTy);
4150   llvm::Value *EmitCMSEClearRecord(llvm::Value *V, llvm::ArrayType *ATy,
4151                                    QualType RTy);
4152 
4153   llvm::Value *EmitCommonNeonBuiltinExpr(unsigned BuiltinID,
4154                                          unsigned LLVMIntrinsic,
4155                                          unsigned AltLLVMIntrinsic,
4156                                          const char *NameHint,
4157                                          unsigned Modifier,
4158                                          const CallExpr *E,
4159                                          SmallVectorImpl<llvm::Value *> &Ops,
4160                                          Address PtrOp0, Address PtrOp1,
4161                                          llvm::Triple::ArchType Arch);
4162 
4163   llvm::Function *LookupNeonLLVMIntrinsic(unsigned IntrinsicID,
4164                                           unsigned Modifier, llvm::Type *ArgTy,
4165                                           const CallExpr *E);
4166   llvm::Value *EmitNeonCall(llvm::Function *F,
4167                             SmallVectorImpl<llvm::Value*> &O,
4168                             const char *name,
4169                             unsigned shift = 0, bool rightshift = false);
4170   llvm::Value *EmitNeonSplat(llvm::Value *V, llvm::Constant *Idx,
4171                              const llvm::ElementCount &Count);
4172   llvm::Value *EmitNeonSplat(llvm::Value *V, llvm::Constant *Idx);
4173   llvm::Value *EmitNeonShiftVector(llvm::Value *V, llvm::Type *Ty,
4174                                    bool negateForRightShift);
4175   llvm::Value *EmitNeonRShiftImm(llvm::Value *Vec, llvm::Value *Amt,
4176                                  llvm::Type *Ty, bool usgn, const char *name);
4177   llvm::Value *vectorWrapScalar16(llvm::Value *Op);
4178   /// SVEBuiltinMemEltTy - Returns the memory element type for this memory
4179   /// access builtin.  Only required if it can't be inferred from the base
4180   /// pointer operand.
4181   llvm::Type *SVEBuiltinMemEltTy(const SVETypeFlags &TypeFlags);
4182 
4183   SmallVector<llvm::Type *, 2>
4184   getSVEOverloadTypes(const SVETypeFlags &TypeFlags, llvm::Type *ReturnType,
4185                       ArrayRef<llvm::Value *> Ops);
4186   llvm::Type *getEltType(const SVETypeFlags &TypeFlags);
4187   llvm::ScalableVectorType *getSVEType(const SVETypeFlags &TypeFlags);
4188   llvm::ScalableVectorType *getSVEPredType(const SVETypeFlags &TypeFlags);
4189   llvm::Value *EmitSVEAllTruePred(const SVETypeFlags &TypeFlags);
4190   llvm::Value *EmitSVEDupX(llvm::Value *Scalar);
4191   llvm::Value *EmitSVEDupX(llvm::Value *Scalar, llvm::Type *Ty);
4192   llvm::Value *EmitSVEReinterpret(llvm::Value *Val, llvm::Type *Ty);
4193   llvm::Value *EmitSVEPMull(const SVETypeFlags &TypeFlags,
4194                             llvm::SmallVectorImpl<llvm::Value *> &Ops,
4195                             unsigned BuiltinID);
4196   llvm::Value *EmitSVEMovl(const SVETypeFlags &TypeFlags,
4197                            llvm::ArrayRef<llvm::Value *> Ops,
4198                            unsigned BuiltinID);
4199   llvm::Value *EmitSVEPredicateCast(llvm::Value *Pred,
4200                                     llvm::ScalableVectorType *VTy);
4201   llvm::Value *EmitSVEGatherLoad(const SVETypeFlags &TypeFlags,
4202                                  llvm::SmallVectorImpl<llvm::Value *> &Ops,
4203                                  unsigned IntID);
4204   llvm::Value *EmitSVEScatterStore(const SVETypeFlags &TypeFlags,
4205                                    llvm::SmallVectorImpl<llvm::Value *> &Ops,
4206                                    unsigned IntID);
4207   llvm::Value *EmitSVEMaskedLoad(const CallExpr *, llvm::Type *ReturnTy,
4208                                  SmallVectorImpl<llvm::Value *> &Ops,
4209                                  unsigned BuiltinID, bool IsZExtReturn);
4210   llvm::Value *EmitSVEMaskedStore(const CallExpr *,
4211                                   SmallVectorImpl<llvm::Value *> &Ops,
4212                                   unsigned BuiltinID);
4213   llvm::Value *EmitSVEPrefetchLoad(const SVETypeFlags &TypeFlags,
4214                                    SmallVectorImpl<llvm::Value *> &Ops,
4215                                    unsigned BuiltinID);
4216   llvm::Value *EmitSVEGatherPrefetch(const SVETypeFlags &TypeFlags,
4217                                      SmallVectorImpl<llvm::Value *> &Ops,
4218                                      unsigned IntID);
4219   llvm::Value *EmitSVEStructLoad(const SVETypeFlags &TypeFlags,
4220                                  SmallVectorImpl<llvm::Value *> &Ops,
4221                                  unsigned IntID);
4222   llvm::Value *EmitSVEStructStore(const SVETypeFlags &TypeFlags,
4223                                   SmallVectorImpl<llvm::Value *> &Ops,
4224                                   unsigned IntID);
4225   llvm::Value *EmitAArch64SVEBuiltinExpr(unsigned BuiltinID, const CallExpr *E);
4226 
4227   llvm::Value *EmitAArch64BuiltinExpr(unsigned BuiltinID, const CallExpr *E,
4228                                       llvm::Triple::ArchType Arch);
4229   llvm::Value *EmitBPFBuiltinExpr(unsigned BuiltinID, const CallExpr *E);
4230 
4231   llvm::Value *BuildVector(ArrayRef<llvm::Value*> Ops);
4232   llvm::Value *EmitX86BuiltinExpr(unsigned BuiltinID, const CallExpr *E);
4233   llvm::Value *EmitPPCBuiltinExpr(unsigned BuiltinID, const CallExpr *E);
4234   llvm::Value *EmitAMDGPUBuiltinExpr(unsigned BuiltinID, const CallExpr *E);
4235   llvm::Value *EmitSystemZBuiltinExpr(unsigned BuiltinID, const CallExpr *E);
4236   llvm::Value *EmitNVPTXBuiltinExpr(unsigned BuiltinID, const CallExpr *E);
4237   llvm::Value *EmitWebAssemblyBuiltinExpr(unsigned BuiltinID,
4238                                           const CallExpr *E);
4239   llvm::Value *EmitHexagonBuiltinExpr(unsigned BuiltinID, const CallExpr *E);
4240   llvm::Value *EmitRISCVBuiltinExpr(unsigned BuiltinID, const CallExpr *E,
4241                                     ReturnValueSlot ReturnValue);
4242   bool ProcessOrderScopeAMDGCN(llvm::Value *Order, llvm::Value *Scope,
4243                                llvm::AtomicOrdering &AO,
4244                                llvm::SyncScope::ID &SSID);
4245 
4246   enum class MSVCIntrin;
4247   llvm::Value *EmitMSVCBuiltinExpr(MSVCIntrin BuiltinID, const CallExpr *E);
4248 
4249   llvm::Value *EmitBuiltinAvailable(const VersionTuple &Version);
4250 
4251   llvm::Value *EmitObjCProtocolExpr(const ObjCProtocolExpr *E);
4252   llvm::Value *EmitObjCStringLiteral(const ObjCStringLiteral *E);
4253   llvm::Value *EmitObjCBoxedExpr(const ObjCBoxedExpr *E);
4254   llvm::Value *EmitObjCArrayLiteral(const ObjCArrayLiteral *E);
4255   llvm::Value *EmitObjCDictionaryLiteral(const ObjCDictionaryLiteral *E);
4256   llvm::Value *EmitObjCCollectionLiteral(const Expr *E,
4257                                 const ObjCMethodDecl *MethodWithObjects);
4258   llvm::Value *EmitObjCSelectorExpr(const ObjCSelectorExpr *E);
4259   RValue EmitObjCMessageExpr(const ObjCMessageExpr *E,
4260                              ReturnValueSlot Return = ReturnValueSlot());
4261 
4262   /// Retrieves the default cleanup kind for an ARC cleanup.
4263   /// Except under -fobjc-arc-eh, ARC cleanups are normal-only.
4264   CleanupKind getARCCleanupKind() {
4265     return CGM.getCodeGenOpts().ObjCAutoRefCountExceptions
4266              ? NormalAndEHCleanup : NormalCleanup;
4267   }
4268 
4269   // ARC primitives.
4270   void EmitARCInitWeak(Address addr, llvm::Value *value);
4271   void EmitARCDestroyWeak(Address addr);
4272   llvm::Value *EmitARCLoadWeak(Address addr);
4273   llvm::Value *EmitARCLoadWeakRetained(Address addr);
4274   llvm::Value *EmitARCStoreWeak(Address addr, llvm::Value *value, bool ignored);
4275   void emitARCCopyAssignWeak(QualType Ty, Address DstAddr, Address SrcAddr);
4276   void emitARCMoveAssignWeak(QualType Ty, Address DstAddr, Address SrcAddr);
4277   void EmitARCCopyWeak(Address dst, Address src);
4278   void EmitARCMoveWeak(Address dst, Address src);
4279   llvm::Value *EmitARCRetainAutorelease(QualType type, llvm::Value *value);
4280   llvm::Value *EmitARCRetainAutoreleaseNonBlock(llvm::Value *value);
4281   llvm::Value *EmitARCStoreStrong(LValue lvalue, llvm::Value *value,
4282                                   bool resultIgnored);
4283   llvm::Value *EmitARCStoreStrongCall(Address addr, llvm::Value *value,
4284                                       bool resultIgnored);
4285   llvm::Value *EmitARCRetain(QualType type, llvm::Value *value);
4286   llvm::Value *EmitARCRetainNonBlock(llvm::Value *value);
4287   llvm::Value *EmitARCRetainBlock(llvm::Value *value, bool mandatory);
4288   void EmitARCDestroyStrong(Address addr, ARCPreciseLifetime_t precise);
4289   void EmitARCRelease(llvm::Value *value, ARCPreciseLifetime_t precise);
4290   llvm::Value *EmitARCAutorelease(llvm::Value *value);
4291   llvm::Value *EmitARCAutoreleaseReturnValue(llvm::Value *value);
4292   llvm::Value *EmitARCRetainAutoreleaseReturnValue(llvm::Value *value);
4293   llvm::Value *EmitARCRetainAutoreleasedReturnValue(llvm::Value *value);
4294   llvm::Value *EmitARCUnsafeClaimAutoreleasedReturnValue(llvm::Value *value);
4295 
4296   llvm::Value *EmitObjCAutorelease(llvm::Value *value, llvm::Type *returnType);
4297   llvm::Value *EmitObjCRetainNonBlock(llvm::Value *value,
4298                                       llvm::Type *returnType);
4299   void EmitObjCRelease(llvm::Value *value, ARCPreciseLifetime_t precise);
4300 
4301   std::pair<LValue,llvm::Value*>
4302   EmitARCStoreAutoreleasing(const BinaryOperator *e);
4303   std::pair<LValue,llvm::Value*>
4304   EmitARCStoreStrong(const BinaryOperator *e, bool ignored);
4305   std::pair<LValue,llvm::Value*>
4306   EmitARCStoreUnsafeUnretained(const BinaryOperator *e, bool ignored);
4307 
4308   llvm::Value *EmitObjCAlloc(llvm::Value *value,
4309                              llvm::Type *returnType);
4310   llvm::Value *EmitObjCAllocWithZone(llvm::Value *value,
4311                                      llvm::Type *returnType);
4312   llvm::Value *EmitObjCAllocInit(llvm::Value *value, llvm::Type *resultType);
4313 
4314   llvm::Value *EmitObjCThrowOperand(const Expr *expr);
4315   llvm::Value *EmitObjCConsumeObject(QualType T, llvm::Value *Ptr);
4316   llvm::Value *EmitObjCExtendObjectLifetime(QualType T, llvm::Value *Ptr);
4317 
4318   llvm::Value *EmitARCExtendBlockObject(const Expr *expr);
4319   llvm::Value *EmitARCReclaimReturnedObject(const Expr *e,
4320                                             bool allowUnsafeClaim);
4321   llvm::Value *EmitARCRetainScalarExpr(const Expr *expr);
4322   llvm::Value *EmitARCRetainAutoreleaseScalarExpr(const Expr *expr);
4323   llvm::Value *EmitARCUnsafeUnretainedScalarExpr(const Expr *expr);
4324 
4325   void EmitARCIntrinsicUse(ArrayRef<llvm::Value*> values);
4326 
4327   void EmitARCNoopIntrinsicUse(ArrayRef<llvm::Value *> values);
4328 
4329   static Destroyer destroyARCStrongImprecise;
4330   static Destroyer destroyARCStrongPrecise;
4331   static Destroyer destroyARCWeak;
4332   static Destroyer emitARCIntrinsicUse;
4333   static Destroyer destroyNonTrivialCStruct;
4334 
4335   void EmitObjCAutoreleasePoolPop(llvm::Value *Ptr);
4336   llvm::Value *EmitObjCAutoreleasePoolPush();
4337   llvm::Value *EmitObjCMRRAutoreleasePoolPush();
4338   void EmitObjCAutoreleasePoolCleanup(llvm::Value *Ptr);
4339   void EmitObjCMRRAutoreleasePoolPop(llvm::Value *Ptr);
4340 
4341   /// Emits a reference binding to the passed in expression.
4342   RValue EmitReferenceBindingToExpr(const Expr *E);
4343 
4344   //===--------------------------------------------------------------------===//
4345   //                           Expression Emission
4346   //===--------------------------------------------------------------------===//
4347 
4348   // Expressions are broken into three classes: scalar, complex, aggregate.
4349 
4350   /// EmitScalarExpr - Emit the computation of the specified expression of LLVM
4351   /// scalar type, returning the result.
4352   llvm::Value *EmitScalarExpr(const Expr *E , bool IgnoreResultAssign = false);
4353 
4354   /// Emit a conversion from the specified type to the specified destination
4355   /// type, both of which are LLVM scalar types.
4356   llvm::Value *EmitScalarConversion(llvm::Value *Src, QualType SrcTy,
4357                                     QualType DstTy, SourceLocation Loc);
4358 
4359   /// Emit a conversion from the specified complex type to the specified
4360   /// destination type, where the destination type is an LLVM scalar type.
4361   llvm::Value *EmitComplexToScalarConversion(ComplexPairTy Src, QualType SrcTy,
4362                                              QualType DstTy,
4363                                              SourceLocation Loc);
4364 
4365   /// EmitAggExpr - Emit the computation of the specified expression
4366   /// of aggregate type.  The result is computed into the given slot,
4367   /// which may be null to indicate that the value is not needed.
4368   void EmitAggExpr(const Expr *E, AggValueSlot AS);
4369 
4370   /// EmitAggExprToLValue - Emit the computation of the specified expression of
4371   /// aggregate type into a temporary LValue.
4372   LValue EmitAggExprToLValue(const Expr *E);
4373 
4374   /// Build all the stores needed to initialize an aggregate at Dest with the
4375   /// value Val.
4376   void EmitAggregateStore(llvm::Value *Val, Address Dest, bool DestIsVolatile);
4377 
4378   /// EmitExtendGCLifetime - Given a pointer to an Objective-C object,
4379   /// make sure it survives garbage collection until this point.
4380   void EmitExtendGCLifetime(llvm::Value *object);
4381 
4382   /// EmitComplexExpr - Emit the computation of the specified expression of
4383   /// complex type, returning the result.
4384   ComplexPairTy EmitComplexExpr(const Expr *E,
4385                                 bool IgnoreReal = false,
4386                                 bool IgnoreImag = false);
4387 
4388   /// EmitComplexExprIntoLValue - Emit the given expression of complex
4389   /// type and place its result into the specified l-value.
4390   void EmitComplexExprIntoLValue(const Expr *E, LValue dest, bool isInit);
4391 
4392   /// EmitStoreOfComplex - Store a complex number into the specified l-value.
4393   void EmitStoreOfComplex(ComplexPairTy V, LValue dest, bool isInit);
4394 
4395   /// EmitLoadOfComplex - Load a complex number from the specified l-value.
4396   ComplexPairTy EmitLoadOfComplex(LValue src, SourceLocation loc);
4397 
4398   Address emitAddrOfRealComponent(Address complex, QualType complexType);
4399   Address emitAddrOfImagComponent(Address complex, QualType complexType);
4400 
4401   /// AddInitializerToStaticVarDecl - Add the initializer for 'D' to the
4402   /// global variable that has already been created for it.  If the initializer
4403   /// has a different type than GV does, this may free GV and return a different
4404   /// one.  Otherwise it just returns GV.
4405   llvm::GlobalVariable *
4406   AddInitializerToStaticVarDecl(const VarDecl &D,
4407                                 llvm::GlobalVariable *GV);
4408 
4409   // Emit an @llvm.invariant.start call for the given memory region.
4410   void EmitInvariantStart(llvm::Constant *Addr, CharUnits Size);
4411 
4412   /// EmitCXXGlobalVarDeclInit - Create the initializer for a C++
4413   /// variable with global storage.
4414   void EmitCXXGlobalVarDeclInit(const VarDecl &D, llvm::GlobalVariable *GV,
4415                                 bool PerformInit);
4416 
4417   llvm::Function *createAtExitStub(const VarDecl &VD, llvm::FunctionCallee Dtor,
4418                                    llvm::Constant *Addr);
4419 
4420   llvm::Function *createTLSAtExitStub(const VarDecl &VD,
4421                                       llvm::FunctionCallee Dtor,
4422                                       llvm::Constant *Addr,
4423                                       llvm::FunctionCallee &AtExit);
4424 
4425   /// Call atexit() with a function that passes the given argument to
4426   /// the given function.
4427   void registerGlobalDtorWithAtExit(const VarDecl &D, llvm::FunctionCallee fn,
4428                                     llvm::Constant *addr);
4429 
4430   /// Call atexit() with function dtorStub.
4431   void registerGlobalDtorWithAtExit(llvm::Constant *dtorStub);
4432 
4433   /// Call unatexit() with function dtorStub.
4434   llvm::Value *unregisterGlobalDtorWithUnAtExit(llvm::Constant *dtorStub);
4435 
4436   /// Emit code in this function to perform a guarded variable
4437   /// initialization.  Guarded initializations are used when it's not
4438   /// possible to prove that an initialization will be done exactly
4439   /// once, e.g. with a static local variable or a static data member
4440   /// of a class template.
4441   void EmitCXXGuardedInit(const VarDecl &D, llvm::GlobalVariable *DeclPtr,
4442                           bool PerformInit);
4443 
4444   enum class GuardKind { VariableGuard, TlsGuard };
4445 
4446   /// Emit a branch to select whether or not to perform guarded initialization.
4447   void EmitCXXGuardedInitBranch(llvm::Value *NeedsInit,
4448                                 llvm::BasicBlock *InitBlock,
4449                                 llvm::BasicBlock *NoInitBlock,
4450                                 GuardKind Kind, const VarDecl *D);
4451 
4452   /// GenerateCXXGlobalInitFunc - Generates code for initializing global
4453   /// variables.
4454   void
4455   GenerateCXXGlobalInitFunc(llvm::Function *Fn,
4456                             ArrayRef<llvm::Function *> CXXThreadLocals,
4457                             ConstantAddress Guard = ConstantAddress::invalid());
4458 
4459   /// GenerateCXXGlobalCleanUpFunc - Generates code for cleaning up global
4460   /// variables.
4461   void GenerateCXXGlobalCleanUpFunc(
4462       llvm::Function *Fn,
4463       ArrayRef<std::tuple<llvm::FunctionType *, llvm::WeakTrackingVH,
4464                           llvm::Constant *>>
4465           DtorsOrStermFinalizers);
4466 
4467   void GenerateCXXGlobalVarDeclInitFunc(llvm::Function *Fn,
4468                                         const VarDecl *D,
4469                                         llvm::GlobalVariable *Addr,
4470                                         bool PerformInit);
4471 
4472   void EmitCXXConstructExpr(const CXXConstructExpr *E, AggValueSlot Dest);
4473 
4474   void EmitSynthesizedCXXCopyCtor(Address Dest, Address Src, const Expr *Exp);
4475 
4476   void EmitCXXThrowExpr(const CXXThrowExpr *E, bool KeepInsertionPoint = true);
4477 
4478   RValue EmitAtomicExpr(AtomicExpr *E);
4479 
4480   //===--------------------------------------------------------------------===//
4481   //                         Annotations Emission
4482   //===--------------------------------------------------------------------===//
4483 
4484   /// Emit an annotation call (intrinsic).
4485   llvm::Value *EmitAnnotationCall(llvm::Function *AnnotationFn,
4486                                   llvm::Value *AnnotatedVal,
4487                                   StringRef AnnotationStr,
4488                                   SourceLocation Location,
4489                                   const AnnotateAttr *Attr);
4490 
4491   /// Emit local annotations for the local variable V, declared by D.
4492   void EmitVarAnnotations(const VarDecl *D, llvm::Value *V);
4493 
4494   /// Emit field annotations for the given field & value. Returns the
4495   /// annotation result.
4496   Address EmitFieldAnnotations(const FieldDecl *D, Address V);
4497 
4498   //===--------------------------------------------------------------------===//
4499   //                             Internal Helpers
4500   //===--------------------------------------------------------------------===//
4501 
4502   /// ContainsLabel - Return true if the statement contains a label in it.  If
4503   /// this statement is not executed normally, it not containing a label means
4504   /// that we can just remove the code.
4505   static bool ContainsLabel(const Stmt *S, bool IgnoreCaseStmts = false);
4506 
4507   /// containsBreak - Return true if the statement contains a break out of it.
4508   /// If the statement (recursively) contains a switch or loop with a break
4509   /// inside of it, this is fine.
4510   static bool containsBreak(const Stmt *S);
4511 
4512   /// Determine if the given statement might introduce a declaration into the
4513   /// current scope, by being a (possibly-labelled) DeclStmt.
4514   static bool mightAddDeclToScope(const Stmt *S);
4515 
4516   /// ConstantFoldsToSimpleInteger - If the specified expression does not fold
4517   /// to a constant, or if it does but contains a label, return false.  If it
4518   /// constant folds return true and set the boolean result in Result.
4519   bool ConstantFoldsToSimpleInteger(const Expr *Cond, bool &Result,
4520                                     bool AllowLabels = false);
4521 
4522   /// ConstantFoldsToSimpleInteger - If the specified expression does not fold
4523   /// to a constant, or if it does but contains a label, return false.  If it
4524   /// constant folds return true and set the folded value.
4525   bool ConstantFoldsToSimpleInteger(const Expr *Cond, llvm::APSInt &Result,
4526                                     bool AllowLabels = false);
4527 
4528   /// isInstrumentedCondition - Determine whether the given condition is an
4529   /// instrumentable condition (i.e. no "&&" or "||").
4530   static bool isInstrumentedCondition(const Expr *C);
4531 
4532   /// EmitBranchToCounterBlock - Emit a conditional branch to a new block that
4533   /// increments a profile counter based on the semantics of the given logical
4534   /// operator opcode.  This is used to instrument branch condition coverage
4535   /// for logical operators.
4536   void EmitBranchToCounterBlock(const Expr *Cond, BinaryOperator::Opcode LOp,
4537                                 llvm::BasicBlock *TrueBlock,
4538                                 llvm::BasicBlock *FalseBlock,
4539                                 uint64_t TrueCount = 0,
4540                                 Stmt::Likelihood LH = Stmt::LH_None,
4541                                 const Expr *CntrIdx = nullptr);
4542 
4543   /// EmitBranchOnBoolExpr - Emit a branch on a boolean condition (e.g. for an
4544   /// if statement) to the specified blocks.  Based on the condition, this might
4545   /// try to simplify the codegen of the conditional based on the branch.
4546   /// TrueCount should be the number of times we expect the condition to
4547   /// evaluate to true based on PGO data.
4548   void EmitBranchOnBoolExpr(const Expr *Cond, llvm::BasicBlock *TrueBlock,
4549                             llvm::BasicBlock *FalseBlock, uint64_t TrueCount,
4550                             Stmt::Likelihood LH = Stmt::LH_None);
4551 
4552   /// Given an assignment `*LHS = RHS`, emit a test that checks if \p RHS is
4553   /// nonnull, if \p LHS is marked _Nonnull.
4554   void EmitNullabilityCheck(LValue LHS, llvm::Value *RHS, SourceLocation Loc);
4555 
4556   /// An enumeration which makes it easier to specify whether or not an
4557   /// operation is a subtraction.
4558   enum { NotSubtraction = false, IsSubtraction = true };
4559 
4560   /// Same as IRBuilder::CreateInBoundsGEP, but additionally emits a check to
4561   /// detect undefined behavior when the pointer overflow sanitizer is enabled.
4562   /// \p SignedIndices indicates whether any of the GEP indices are signed.
4563   /// \p IsSubtraction indicates whether the expression used to form the GEP
4564   /// is a subtraction.
4565   llvm::Value *EmitCheckedInBoundsGEP(llvm::Type *ElemTy, llvm::Value *Ptr,
4566                                       ArrayRef<llvm::Value *> IdxList,
4567                                       bool SignedIndices,
4568                                       bool IsSubtraction,
4569                                       SourceLocation Loc,
4570                                       const Twine &Name = "");
4571 
4572   /// Specifies which type of sanitizer check to apply when handling a
4573   /// particular builtin.
4574   enum BuiltinCheckKind {
4575     BCK_CTZPassedZero,
4576     BCK_CLZPassedZero,
4577   };
4578 
4579   /// Emits an argument for a call to a builtin. If the builtin sanitizer is
4580   /// enabled, a runtime check specified by \p Kind is also emitted.
4581   llvm::Value *EmitCheckedArgForBuiltin(const Expr *E, BuiltinCheckKind Kind);
4582 
4583   /// Emit a description of a type in a format suitable for passing to
4584   /// a runtime sanitizer handler.
4585   llvm::Constant *EmitCheckTypeDescriptor(QualType T);
4586 
4587   /// Convert a value into a format suitable for passing to a runtime
4588   /// sanitizer handler.
4589   llvm::Value *EmitCheckValue(llvm::Value *V);
4590 
4591   /// Emit a description of a source location in a format suitable for
4592   /// passing to a runtime sanitizer handler.
4593   llvm::Constant *EmitCheckSourceLocation(SourceLocation Loc);
4594 
4595   /// Create a basic block that will either trap or call a handler function in
4596   /// the UBSan runtime with the provided arguments, and create a conditional
4597   /// branch to it.
4598   void EmitCheck(ArrayRef<std::pair<llvm::Value *, SanitizerMask>> Checked,
4599                  SanitizerHandler Check, ArrayRef<llvm::Constant *> StaticArgs,
4600                  ArrayRef<llvm::Value *> DynamicArgs);
4601 
4602   /// Emit a slow path cross-DSO CFI check which calls __cfi_slowpath
4603   /// if Cond if false.
4604   void EmitCfiSlowPathCheck(SanitizerMask Kind, llvm::Value *Cond,
4605                             llvm::ConstantInt *TypeId, llvm::Value *Ptr,
4606                             ArrayRef<llvm::Constant *> StaticArgs);
4607 
4608   /// Emit a reached-unreachable diagnostic if \p Loc is valid and runtime
4609   /// checking is enabled. Otherwise, just emit an unreachable instruction.
4610   void EmitUnreachable(SourceLocation Loc);
4611 
4612   /// Create a basic block that will call the trap intrinsic, and emit a
4613   /// conditional branch to it, for the -ftrapv checks.
4614   void EmitTrapCheck(llvm::Value *Checked, SanitizerHandler CheckHandlerID);
4615 
4616   /// Emit a call to trap or debugtrap and attach function attribute
4617   /// "trap-func-name" if specified.
4618   llvm::CallInst *EmitTrapCall(llvm::Intrinsic::ID IntrID);
4619 
4620   /// Emit a stub for the cross-DSO CFI check function.
4621   void EmitCfiCheckStub();
4622 
4623   /// Emit a cross-DSO CFI failure handling function.
4624   void EmitCfiCheckFail();
4625 
4626   /// Create a check for a function parameter that may potentially be
4627   /// declared as non-null.
4628   void EmitNonNullArgCheck(RValue RV, QualType ArgType, SourceLocation ArgLoc,
4629                            AbstractCallee AC, unsigned ParmNum);
4630 
4631   /// EmitCallArg - Emit a single call argument.
4632   void EmitCallArg(CallArgList &args, const Expr *E, QualType ArgType);
4633 
4634   /// EmitDelegateCallArg - We are performing a delegate call; that
4635   /// is, the current function is delegating to another one.  Produce
4636   /// a r-value suitable for passing the given parameter.
4637   void EmitDelegateCallArg(CallArgList &args, const VarDecl *param,
4638                            SourceLocation loc);
4639 
4640   /// SetFPAccuracy - Set the minimum required accuracy of the given floating
4641   /// point operation, expressed as the maximum relative error in ulp.
4642   void SetFPAccuracy(llvm::Value *Val, float Accuracy);
4643 
4644   /// Set the codegen fast-math flags.
4645   void SetFastMathFlags(FPOptions FPFeatures);
4646 
4647 private:
4648   llvm::MDNode *getRangeForLoadFromType(QualType Ty);
4649   void EmitReturnOfRValue(RValue RV, QualType Ty);
4650 
4651   void deferPlaceholderReplacement(llvm::Instruction *Old, llvm::Value *New);
4652 
4653   llvm::SmallVector<std::pair<llvm::WeakTrackingVH, llvm::Value *>, 4>
4654       DeferredReplacements;
4655 
4656   /// Set the address of a local variable.
4657   void setAddrOfLocalVar(const VarDecl *VD, Address Addr) {
4658     assert(!LocalDeclMap.count(VD) && "Decl already exists in LocalDeclMap!");
4659     LocalDeclMap.insert({VD, Addr});
4660   }
4661 
4662   /// ExpandTypeFromArgs - Reconstruct a structure of type \arg Ty
4663   /// from function arguments into \arg Dst. See ABIArgInfo::Expand.
4664   ///
4665   /// \param AI - The first function argument of the expansion.
4666   void ExpandTypeFromArgs(QualType Ty, LValue Dst,
4667                           llvm::Function::arg_iterator &AI);
4668 
4669   /// ExpandTypeToArgs - Expand an CallArg \arg Arg, with the LLVM type for \arg
4670   /// Ty, into individual arguments on the provided vector \arg IRCallArgs,
4671   /// starting at index \arg IRCallArgPos. See ABIArgInfo::Expand.
4672   void ExpandTypeToArgs(QualType Ty, CallArg Arg, llvm::FunctionType *IRFuncTy,
4673                         SmallVectorImpl<llvm::Value *> &IRCallArgs,
4674                         unsigned &IRCallArgPos);
4675 
4676   std::pair<llvm::Value *, llvm::Type *>
4677   EmitAsmInput(const TargetInfo::ConstraintInfo &Info, const Expr *InputExpr,
4678                std::string &ConstraintStr);
4679 
4680   std::pair<llvm::Value *, llvm::Type *>
4681   EmitAsmInputLValue(const TargetInfo::ConstraintInfo &Info, LValue InputValue,
4682                      QualType InputType, std::string &ConstraintStr,
4683                      SourceLocation Loc);
4684 
4685   /// Attempts to statically evaluate the object size of E. If that
4686   /// fails, emits code to figure the size of E out for us. This is
4687   /// pass_object_size aware.
4688   ///
4689   /// If EmittedExpr is non-null, this will use that instead of re-emitting E.
4690   llvm::Value *evaluateOrEmitBuiltinObjectSize(const Expr *E, unsigned Type,
4691                                                llvm::IntegerType *ResType,
4692                                                llvm::Value *EmittedE,
4693                                                bool IsDynamic);
4694 
4695   /// Emits the size of E, as required by __builtin_object_size. This
4696   /// function is aware of pass_object_size parameters, and will act accordingly
4697   /// if E is a parameter with the pass_object_size attribute.
4698   llvm::Value *emitBuiltinObjectSize(const Expr *E, unsigned Type,
4699                                      llvm::IntegerType *ResType,
4700                                      llvm::Value *EmittedE,
4701                                      bool IsDynamic);
4702 
4703   void emitZeroOrPatternForAutoVarInit(QualType type, const VarDecl &D,
4704                                        Address Loc);
4705 
4706 public:
4707   enum class EvaluationOrder {
4708     ///! No language constraints on evaluation order.
4709     Default,
4710     ///! Language semantics require left-to-right evaluation.
4711     ForceLeftToRight,
4712     ///! Language semantics require right-to-left evaluation.
4713     ForceRightToLeft
4714   };
4715 
4716   // Wrapper for function prototype sources. Wraps either a FunctionProtoType or
4717   // an ObjCMethodDecl.
4718   struct PrototypeWrapper {
4719     llvm::PointerUnion<const FunctionProtoType *, const ObjCMethodDecl *> P;
4720 
4721     PrototypeWrapper(const FunctionProtoType *FT) : P(FT) {}
4722     PrototypeWrapper(const ObjCMethodDecl *MD) : P(MD) {}
4723   };
4724 
4725   void EmitCallArgs(CallArgList &Args, PrototypeWrapper Prototype,
4726                     llvm::iterator_range<CallExpr::const_arg_iterator> ArgRange,
4727                     AbstractCallee AC = AbstractCallee(),
4728                     unsigned ParamsToSkip = 0,
4729                     EvaluationOrder Order = EvaluationOrder::Default);
4730 
4731   /// EmitPointerWithAlignment - Given an expression with a pointer type,
4732   /// emit the value and compute our best estimate of the alignment of the
4733   /// pointee.
4734   ///
4735   /// \param BaseInfo - If non-null, this will be initialized with
4736   /// information about the source of the alignment and the may-alias
4737   /// attribute.  Note that this function will conservatively fall back on
4738   /// the type when it doesn't recognize the expression and may-alias will
4739   /// be set to false.
4740   ///
4741   /// One reasonable way to use this information is when there's a language
4742   /// guarantee that the pointer must be aligned to some stricter value, and
4743   /// we're simply trying to ensure that sufficiently obvious uses of under-
4744   /// aligned objects don't get miscompiled; for example, a placement new
4745   /// into the address of a local variable.  In such a case, it's quite
4746   /// reasonable to just ignore the returned alignment when it isn't from an
4747   /// explicit source.
4748   Address EmitPointerWithAlignment(const Expr *Addr,
4749                                    LValueBaseInfo *BaseInfo = nullptr,
4750                                    TBAAAccessInfo *TBAAInfo = nullptr);
4751 
4752   /// If \p E references a parameter with pass_object_size info or a constant
4753   /// array size modifier, emit the object size divided by the size of \p EltTy.
4754   /// Otherwise return null.
4755   llvm::Value *LoadPassedObjectSize(const Expr *E, QualType EltTy);
4756 
4757   void EmitSanitizerStatReport(llvm::SanitizerStatKind SSK);
4758 
4759   struct MultiVersionResolverOption {
4760     llvm::Function *Function;
4761     struct Conds {
4762       StringRef Architecture;
4763       llvm::SmallVector<StringRef, 8> Features;
4764 
4765       Conds(StringRef Arch, ArrayRef<StringRef> Feats)
4766           : Architecture(Arch), Features(Feats.begin(), Feats.end()) {}
4767     } Conditions;
4768 
4769     MultiVersionResolverOption(llvm::Function *F, StringRef Arch,
4770                                ArrayRef<StringRef> Feats)
4771         : Function(F), Conditions(Arch, Feats) {}
4772   };
4773 
4774   // Emits the body of a multiversion function's resolver. Assumes that the
4775   // options are already sorted in the proper order, with the 'default' option
4776   // last (if it exists).
4777   void EmitMultiVersionResolver(llvm::Function *Resolver,
4778                                 ArrayRef<MultiVersionResolverOption> Options);
4779 
4780 private:
4781   QualType getVarArgType(const Expr *Arg);
4782 
4783   void EmitDeclMetadata();
4784 
4785   BlockByrefHelpers *buildByrefHelpers(llvm::StructType &byrefType,
4786                                   const AutoVarEmission &emission);
4787 
4788   void AddObjCARCExceptionMetadata(llvm::Instruction *Inst);
4789 
4790   llvm::Value *GetValueForARMHint(unsigned BuiltinID);
4791   llvm::Value *EmitX86CpuIs(const CallExpr *E);
4792   llvm::Value *EmitX86CpuIs(StringRef CPUStr);
4793   llvm::Value *EmitX86CpuSupports(const CallExpr *E);
4794   llvm::Value *EmitX86CpuSupports(ArrayRef<StringRef> FeatureStrs);
4795   llvm::Value *EmitX86CpuSupports(uint64_t Mask);
4796   llvm::Value *EmitX86CpuInit();
4797   llvm::Value *FormResolverCondition(const MultiVersionResolverOption &RO);
4798 };
4799 
4800 /// TargetFeatures - This class is used to check whether the builtin function
4801 /// has the required tagert specific features. It is able to support the
4802 /// combination of ','(and), '|'(or), and '()'. By default, the priority of
4803 /// ',' is higher than that of '|' .
4804 /// E.g:
4805 /// A,B|C means the builtin function requires both A and B, or C.
4806 /// If we want the builtin function requires both A and B, or both A and C,
4807 /// there are two ways: A,B|A,C or A,(B|C).
4808 /// The FeaturesList should not contain spaces, and brackets must appear in
4809 /// pairs.
4810 class TargetFeatures {
4811   struct FeatureListStatus {
4812     bool HasFeatures;
4813     StringRef CurFeaturesList;
4814   };
4815 
4816   const llvm::StringMap<bool> &CallerFeatureMap;
4817 
4818   FeatureListStatus getAndFeatures(StringRef FeatureList) {
4819     int InParentheses = 0;
4820     bool HasFeatures = true;
4821     size_t SubexpressionStart = 0;
4822     for (size_t i = 0, e = FeatureList.size(); i < e; ++i) {
4823       char CurrentToken = FeatureList[i];
4824       switch (CurrentToken) {
4825       default:
4826         break;
4827       case '(':
4828         if (InParentheses == 0)
4829           SubexpressionStart = i + 1;
4830         ++InParentheses;
4831         break;
4832       case ')':
4833         --InParentheses;
4834         assert(InParentheses >= 0 && "Parentheses are not in pair");
4835         LLVM_FALLTHROUGH;
4836       case '|':
4837       case ',':
4838         if (InParentheses == 0) {
4839           if (HasFeatures && i != SubexpressionStart) {
4840             StringRef F = FeatureList.slice(SubexpressionStart, i);
4841             HasFeatures = CurrentToken == ')' ? hasRequiredFeatures(F)
4842                                               : CallerFeatureMap.lookup(F);
4843           }
4844           SubexpressionStart = i + 1;
4845           if (CurrentToken == '|') {
4846             return {HasFeatures, FeatureList.substr(SubexpressionStart)};
4847           }
4848         }
4849         break;
4850       }
4851     }
4852     assert(InParentheses == 0 && "Parentheses are not in pair");
4853     if (HasFeatures && SubexpressionStart != FeatureList.size())
4854       HasFeatures =
4855           CallerFeatureMap.lookup(FeatureList.substr(SubexpressionStart));
4856     return {HasFeatures, StringRef()};
4857   }
4858 
4859 public:
4860   bool hasRequiredFeatures(StringRef FeatureList) {
4861     FeatureListStatus FS = {false, FeatureList};
4862     while (!FS.HasFeatures && !FS.CurFeaturesList.empty())
4863       FS = getAndFeatures(FS.CurFeaturesList);
4864     return FS.HasFeatures;
4865   }
4866 
4867   TargetFeatures(const llvm::StringMap<bool> &CallerFeatureMap)
4868       : CallerFeatureMap(CallerFeatureMap) {}
4869 };
4870 
4871 inline DominatingLLVMValue::saved_type
4872 DominatingLLVMValue::save(CodeGenFunction &CGF, llvm::Value *value) {
4873   if (!needsSaving(value)) return saved_type(value, false);
4874 
4875   // Otherwise, we need an alloca.
4876   auto align = CharUnits::fromQuantity(
4877             CGF.CGM.getDataLayout().getPrefTypeAlignment(value->getType()));
4878   Address alloca =
4879     CGF.CreateTempAlloca(value->getType(), align, "cond-cleanup.save");
4880   CGF.Builder.CreateStore(value, alloca);
4881 
4882   return saved_type(alloca.getPointer(), true);
4883 }
4884 
4885 inline llvm::Value *DominatingLLVMValue::restore(CodeGenFunction &CGF,
4886                                                  saved_type value) {
4887   // If the value says it wasn't saved, trust that it's still dominating.
4888   if (!value.getInt()) return value.getPointer();
4889 
4890   // Otherwise, it should be an alloca instruction, as set up in save().
4891   auto alloca = cast<llvm::AllocaInst>(value.getPointer());
4892   return CGF.Builder.CreateAlignedLoad(alloca->getAllocatedType(), alloca,
4893                                        alloca->getAlign());
4894 }
4895 
4896 }  // end namespace CodeGen
4897 
4898 // Map the LangOption for floating point exception behavior into
4899 // the corresponding enum in the IR.
4900 llvm::fp::ExceptionBehavior
4901 ToConstrainedExceptMD(LangOptions::FPExceptionModeKind Kind);
4902 }  // end namespace clang
4903 
4904 #endif
4905