]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/clang/lib/CodeGen/CGStmt.cpp
Bring lld (release_39 branch, r279477) to contrib
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / clang / lib / CodeGen / CGStmt.cpp
1 //===--- CGStmt.cpp - Emit LLVM Code from Statements ----------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This contains code to emit Stmt nodes as LLVM code.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "CodeGenFunction.h"
15 #include "CGDebugInfo.h"
16 #include "CodeGenModule.h"
17 #include "TargetInfo.h"
18 #include "clang/AST/StmtVisitor.h"
19 #include "clang/Basic/Builtins.h"
20 #include "clang/Basic/PrettyStackTrace.h"
21 #include "clang/Basic/TargetInfo.h"
22 #include "clang/Sema/LoopHint.h"
23 #include "clang/Sema/SemaDiagnostic.h"
24 #include "llvm/ADT/StringExtras.h"
25 #include "llvm/IR/CallSite.h"
26 #include "llvm/IR/DataLayout.h"
27 #include "llvm/IR/InlineAsm.h"
28 #include "llvm/IR/Intrinsics.h"
29 #include "llvm/IR/MDBuilder.h"
30
31 using namespace clang;
32 using namespace CodeGen;
33
34 //===----------------------------------------------------------------------===//
35 //                              Statement Emission
36 //===----------------------------------------------------------------------===//
37
38 void CodeGenFunction::EmitStopPoint(const Stmt *S) {
39   if (CGDebugInfo *DI = getDebugInfo()) {
40     SourceLocation Loc;
41     Loc = S->getLocStart();
42     DI->EmitLocation(Builder, Loc);
43
44     LastStopPoint = Loc;
45   }
46 }
47
48 void CodeGenFunction::EmitStmt(const Stmt *S) {
49   assert(S && "Null statement?");
50   PGO.setCurrentStmt(S);
51
52   // These statements have their own debug info handling.
53   if (EmitSimpleStmt(S))
54     return;
55
56   // Check if we are generating unreachable code.
57   if (!HaveInsertPoint()) {
58     // If so, and the statement doesn't contain a label, then we do not need to
59     // generate actual code. This is safe because (1) the current point is
60     // unreachable, so we don't need to execute the code, and (2) we've already
61     // handled the statements which update internal data structures (like the
62     // local variable map) which could be used by subsequent statements.
63     if (!ContainsLabel(S)) {
64       // Verify that any decl statements were handled as simple, they may be in
65       // scope of subsequent reachable statements.
66       assert(!isa<DeclStmt>(*S) && "Unexpected DeclStmt!");
67       return;
68     }
69
70     // Otherwise, make a new block to hold the code.
71     EnsureInsertPoint();
72   }
73
74   // Generate a stoppoint if we are emitting debug info.
75   EmitStopPoint(S);
76
77   switch (S->getStmtClass()) {
78   case Stmt::NoStmtClass:
79   case Stmt::CXXCatchStmtClass:
80   case Stmt::SEHExceptStmtClass:
81   case Stmt::SEHFinallyStmtClass:
82   case Stmt::MSDependentExistsStmtClass:
83     llvm_unreachable("invalid statement class to emit generically");
84   case Stmt::NullStmtClass:
85   case Stmt::CompoundStmtClass:
86   case Stmt::DeclStmtClass:
87   case Stmt::LabelStmtClass:
88   case Stmt::AttributedStmtClass:
89   case Stmt::GotoStmtClass:
90   case Stmt::BreakStmtClass:
91   case Stmt::ContinueStmtClass:
92   case Stmt::DefaultStmtClass:
93   case Stmt::CaseStmtClass:
94   case Stmt::SEHLeaveStmtClass:
95     llvm_unreachable("should have emitted these statements as simple");
96
97 #define STMT(Type, Base)
98 #define ABSTRACT_STMT(Op)
99 #define EXPR(Type, Base) \
100   case Stmt::Type##Class:
101 #include "clang/AST/StmtNodes.inc"
102   {
103     // Remember the block we came in on.
104     llvm::BasicBlock *incoming = Builder.GetInsertBlock();
105     assert(incoming && "expression emission must have an insertion point");
106
107     EmitIgnoredExpr(cast<Expr>(S));
108
109     llvm::BasicBlock *outgoing = Builder.GetInsertBlock();
110     assert(outgoing && "expression emission cleared block!");
111
112     // The expression emitters assume (reasonably!) that the insertion
113     // point is always set.  To maintain that, the call-emission code
114     // for noreturn functions has to enter a new block with no
115     // predecessors.  We want to kill that block and mark the current
116     // insertion point unreachable in the common case of a call like
117     // "exit();".  Since expression emission doesn't otherwise create
118     // blocks with no predecessors, we can just test for that.
119     // However, we must be careful not to do this to our incoming
120     // block, because *statement* emission does sometimes create
121     // reachable blocks which will have no predecessors until later in
122     // the function.  This occurs with, e.g., labels that are not
123     // reachable by fallthrough.
124     if (incoming != outgoing && outgoing->use_empty()) {
125       outgoing->eraseFromParent();
126       Builder.ClearInsertionPoint();
127     }
128     break;
129   }
130
131   case Stmt::IndirectGotoStmtClass:
132     EmitIndirectGotoStmt(cast<IndirectGotoStmt>(*S)); break;
133
134   case Stmt::IfStmtClass:       EmitIfStmt(cast<IfStmt>(*S));             break;
135   case Stmt::WhileStmtClass:    EmitWhileStmt(cast<WhileStmt>(*S));       break;
136   case Stmt::DoStmtClass:       EmitDoStmt(cast<DoStmt>(*S));             break;
137   case Stmt::ForStmtClass:      EmitForStmt(cast<ForStmt>(*S));           break;
138
139   case Stmt::ReturnStmtClass:   EmitReturnStmt(cast<ReturnStmt>(*S));     break;
140
141   case Stmt::SwitchStmtClass:   EmitSwitchStmt(cast<SwitchStmt>(*S));     break;
142   case Stmt::GCCAsmStmtClass:   // Intentional fall-through.
143   case Stmt::MSAsmStmtClass:    EmitAsmStmt(cast<AsmStmt>(*S));           break;
144   case Stmt::CoroutineBodyStmtClass:
145   case Stmt::CoreturnStmtClass:
146     CGM.ErrorUnsupported(S, "coroutine");
147     break;
148   case Stmt::CapturedStmtClass: {
149     const CapturedStmt *CS = cast<CapturedStmt>(S);
150     EmitCapturedStmt(*CS, CS->getCapturedRegionKind());
151     }
152     break;
153   case Stmt::ObjCAtTryStmtClass:
154     EmitObjCAtTryStmt(cast<ObjCAtTryStmt>(*S));
155     break;
156   case Stmt::ObjCAtCatchStmtClass:
157     llvm_unreachable(
158                     "@catch statements should be handled by EmitObjCAtTryStmt");
159   case Stmt::ObjCAtFinallyStmtClass:
160     llvm_unreachable(
161                   "@finally statements should be handled by EmitObjCAtTryStmt");
162   case Stmt::ObjCAtThrowStmtClass:
163     EmitObjCAtThrowStmt(cast<ObjCAtThrowStmt>(*S));
164     break;
165   case Stmt::ObjCAtSynchronizedStmtClass:
166     EmitObjCAtSynchronizedStmt(cast<ObjCAtSynchronizedStmt>(*S));
167     break;
168   case Stmt::ObjCForCollectionStmtClass:
169     EmitObjCForCollectionStmt(cast<ObjCForCollectionStmt>(*S));
170     break;
171   case Stmt::ObjCAutoreleasePoolStmtClass:
172     EmitObjCAutoreleasePoolStmt(cast<ObjCAutoreleasePoolStmt>(*S));
173     break;
174
175   case Stmt::CXXTryStmtClass:
176     EmitCXXTryStmt(cast<CXXTryStmt>(*S));
177     break;
178   case Stmt::CXXForRangeStmtClass:
179     EmitCXXForRangeStmt(cast<CXXForRangeStmt>(*S));
180     break;
181   case Stmt::SEHTryStmtClass:
182     EmitSEHTryStmt(cast<SEHTryStmt>(*S));
183     break;
184   case Stmt::OMPParallelDirectiveClass:
185     EmitOMPParallelDirective(cast<OMPParallelDirective>(*S));
186     break;
187   case Stmt::OMPSimdDirectiveClass:
188     EmitOMPSimdDirective(cast<OMPSimdDirective>(*S));
189     break;
190   case Stmt::OMPForDirectiveClass:
191     EmitOMPForDirective(cast<OMPForDirective>(*S));
192     break;
193   case Stmt::OMPForSimdDirectiveClass:
194     EmitOMPForSimdDirective(cast<OMPForSimdDirective>(*S));
195     break;
196   case Stmt::OMPSectionsDirectiveClass:
197     EmitOMPSectionsDirective(cast<OMPSectionsDirective>(*S));
198     break;
199   case Stmt::OMPSectionDirectiveClass:
200     EmitOMPSectionDirective(cast<OMPSectionDirective>(*S));
201     break;
202   case Stmt::OMPSingleDirectiveClass:
203     EmitOMPSingleDirective(cast<OMPSingleDirective>(*S));
204     break;
205   case Stmt::OMPMasterDirectiveClass:
206     EmitOMPMasterDirective(cast<OMPMasterDirective>(*S));
207     break;
208   case Stmt::OMPCriticalDirectiveClass:
209     EmitOMPCriticalDirective(cast<OMPCriticalDirective>(*S));
210     break;
211   case Stmt::OMPParallelForDirectiveClass:
212     EmitOMPParallelForDirective(cast<OMPParallelForDirective>(*S));
213     break;
214   case Stmt::OMPParallelForSimdDirectiveClass:
215     EmitOMPParallelForSimdDirective(cast<OMPParallelForSimdDirective>(*S));
216     break;
217   case Stmt::OMPParallelSectionsDirectiveClass:
218     EmitOMPParallelSectionsDirective(cast<OMPParallelSectionsDirective>(*S));
219     break;
220   case Stmt::OMPTaskDirectiveClass:
221     EmitOMPTaskDirective(cast<OMPTaskDirective>(*S));
222     break;
223   case Stmt::OMPTaskyieldDirectiveClass:
224     EmitOMPTaskyieldDirective(cast<OMPTaskyieldDirective>(*S));
225     break;
226   case Stmt::OMPBarrierDirectiveClass:
227     EmitOMPBarrierDirective(cast<OMPBarrierDirective>(*S));
228     break;
229   case Stmt::OMPTaskwaitDirectiveClass:
230     EmitOMPTaskwaitDirective(cast<OMPTaskwaitDirective>(*S));
231     break;
232   case Stmt::OMPTaskgroupDirectiveClass:
233     EmitOMPTaskgroupDirective(cast<OMPTaskgroupDirective>(*S));
234     break;
235   case Stmt::OMPFlushDirectiveClass:
236     EmitOMPFlushDirective(cast<OMPFlushDirective>(*S));
237     break;
238   case Stmt::OMPOrderedDirectiveClass:
239     EmitOMPOrderedDirective(cast<OMPOrderedDirective>(*S));
240     break;
241   case Stmt::OMPAtomicDirectiveClass:
242     EmitOMPAtomicDirective(cast<OMPAtomicDirective>(*S));
243     break;
244   case Stmt::OMPTargetDirectiveClass:
245     EmitOMPTargetDirective(cast<OMPTargetDirective>(*S));
246     break;
247   case Stmt::OMPTeamsDirectiveClass:
248     EmitOMPTeamsDirective(cast<OMPTeamsDirective>(*S));
249     break;
250   case Stmt::OMPCancellationPointDirectiveClass:
251     EmitOMPCancellationPointDirective(cast<OMPCancellationPointDirective>(*S));
252     break;
253   case Stmt::OMPCancelDirectiveClass:
254     EmitOMPCancelDirective(cast<OMPCancelDirective>(*S));
255     break;
256   case Stmt::OMPTargetDataDirectiveClass:
257     EmitOMPTargetDataDirective(cast<OMPTargetDataDirective>(*S));
258     break;
259   case Stmt::OMPTargetEnterDataDirectiveClass:
260     EmitOMPTargetEnterDataDirective(cast<OMPTargetEnterDataDirective>(*S));
261     break;
262   case Stmt::OMPTargetExitDataDirectiveClass:
263     EmitOMPTargetExitDataDirective(cast<OMPTargetExitDataDirective>(*S));
264     break;
265   case Stmt::OMPTargetParallelDirectiveClass:
266     EmitOMPTargetParallelDirective(cast<OMPTargetParallelDirective>(*S));
267     break;
268   case Stmt::OMPTargetParallelForDirectiveClass:
269     EmitOMPTargetParallelForDirective(cast<OMPTargetParallelForDirective>(*S));
270     break;
271   case Stmt::OMPTaskLoopDirectiveClass:
272     EmitOMPTaskLoopDirective(cast<OMPTaskLoopDirective>(*S));
273     break;
274   case Stmt::OMPTaskLoopSimdDirectiveClass:
275     EmitOMPTaskLoopSimdDirective(cast<OMPTaskLoopSimdDirective>(*S));
276     break;
277   case Stmt::OMPDistributeDirectiveClass:
278     EmitOMPDistributeDirective(cast<OMPDistributeDirective>(*S));
279     break;
280   case Stmt::OMPTargetUpdateDirectiveClass:
281     EmitOMPTargetUpdateDirective(cast<OMPTargetUpdateDirective>(*S));
282     break;
283   case Stmt::OMPDistributeParallelForDirectiveClass:
284     EmitOMPDistributeParallelForDirective(
285         cast<OMPDistributeParallelForDirective>(*S));
286     break;
287   case Stmt::OMPDistributeParallelForSimdDirectiveClass:
288     EmitOMPDistributeParallelForSimdDirective(
289         cast<OMPDistributeParallelForSimdDirective>(*S));
290     break;
291   case Stmt::OMPDistributeSimdDirectiveClass:
292     EmitOMPDistributeSimdDirective(cast<OMPDistributeSimdDirective>(*S));
293     break;
294   case Stmt::OMPTargetParallelForSimdDirectiveClass:
295     EmitOMPTargetParallelForSimdDirective(
296         cast<OMPTargetParallelForSimdDirective>(*S));
297     break;
298   }
299 }
300
301 bool CodeGenFunction::EmitSimpleStmt(const Stmt *S) {
302   switch (S->getStmtClass()) {
303   default: return false;
304   case Stmt::NullStmtClass: break;
305   case Stmt::CompoundStmtClass: EmitCompoundStmt(cast<CompoundStmt>(*S)); break;
306   case Stmt::DeclStmtClass:     EmitDeclStmt(cast<DeclStmt>(*S));         break;
307   case Stmt::LabelStmtClass:    EmitLabelStmt(cast<LabelStmt>(*S));       break;
308   case Stmt::AttributedStmtClass:
309                             EmitAttributedStmt(cast<AttributedStmt>(*S)); break;
310   case Stmt::GotoStmtClass:     EmitGotoStmt(cast<GotoStmt>(*S));         break;
311   case Stmt::BreakStmtClass:    EmitBreakStmt(cast<BreakStmt>(*S));       break;
312   case Stmt::ContinueStmtClass: EmitContinueStmt(cast<ContinueStmt>(*S)); break;
313   case Stmt::DefaultStmtClass:  EmitDefaultStmt(cast<DefaultStmt>(*S));   break;
314   case Stmt::CaseStmtClass:     EmitCaseStmt(cast<CaseStmt>(*S));         break;
315   case Stmt::SEHLeaveStmtClass: EmitSEHLeaveStmt(cast<SEHLeaveStmt>(*S)); break;
316   }
317
318   return true;
319 }
320
321 /// EmitCompoundStmt - Emit a compound statement {..} node.  If GetLast is true,
322 /// this captures the expression result of the last sub-statement and returns it
323 /// (for use by the statement expression extension).
324 Address CodeGenFunction::EmitCompoundStmt(const CompoundStmt &S, bool GetLast,
325                                           AggValueSlot AggSlot) {
326   PrettyStackTraceLoc CrashInfo(getContext().getSourceManager(),S.getLBracLoc(),
327                              "LLVM IR generation of compound statement ('{}')");
328
329   // Keep track of the current cleanup stack depth, including debug scopes.
330   LexicalScope Scope(*this, S.getSourceRange());
331
332   return EmitCompoundStmtWithoutScope(S, GetLast, AggSlot);
333 }
334
335 Address
336 CodeGenFunction::EmitCompoundStmtWithoutScope(const CompoundStmt &S,
337                                               bool GetLast,
338                                               AggValueSlot AggSlot) {
339
340   for (CompoundStmt::const_body_iterator I = S.body_begin(),
341        E = S.body_end()-GetLast; I != E; ++I)
342     EmitStmt(*I);
343
344   Address RetAlloca = Address::invalid();
345   if (GetLast) {
346     // We have to special case labels here.  They are statements, but when put
347     // at the end of a statement expression, they yield the value of their
348     // subexpression.  Handle this by walking through all labels we encounter,
349     // emitting them before we evaluate the subexpr.
350     const Stmt *LastStmt = S.body_back();
351     while (const LabelStmt *LS = dyn_cast<LabelStmt>(LastStmt)) {
352       EmitLabel(LS->getDecl());
353       LastStmt = LS->getSubStmt();
354     }
355
356     EnsureInsertPoint();
357
358     QualType ExprTy = cast<Expr>(LastStmt)->getType();
359     if (hasAggregateEvaluationKind(ExprTy)) {
360       EmitAggExpr(cast<Expr>(LastStmt), AggSlot);
361     } else {
362       // We can't return an RValue here because there might be cleanups at
363       // the end of the StmtExpr.  Because of that, we have to emit the result
364       // here into a temporary alloca.
365       RetAlloca = CreateMemTemp(ExprTy);
366       EmitAnyExprToMem(cast<Expr>(LastStmt), RetAlloca, Qualifiers(),
367                        /*IsInit*/false);
368     }
369
370   }
371
372   return RetAlloca;
373 }
374
375 void CodeGenFunction::SimplifyForwardingBlocks(llvm::BasicBlock *BB) {
376   llvm::BranchInst *BI = dyn_cast<llvm::BranchInst>(BB->getTerminator());
377
378   // If there is a cleanup stack, then we it isn't worth trying to
379   // simplify this block (we would need to remove it from the scope map
380   // and cleanup entry).
381   if (!EHStack.empty())
382     return;
383
384   // Can only simplify direct branches.
385   if (!BI || !BI->isUnconditional())
386     return;
387
388   // Can only simplify empty blocks.
389   if (BI->getIterator() != BB->begin())
390     return;
391
392   BB->replaceAllUsesWith(BI->getSuccessor(0));
393   BI->eraseFromParent();
394   BB->eraseFromParent();
395 }
396
397 void CodeGenFunction::EmitBlock(llvm::BasicBlock *BB, bool IsFinished) {
398   llvm::BasicBlock *CurBB = Builder.GetInsertBlock();
399
400   // Fall out of the current block (if necessary).
401   EmitBranch(BB);
402
403   if (IsFinished && BB->use_empty()) {
404     delete BB;
405     return;
406   }
407
408   // Place the block after the current block, if possible, or else at
409   // the end of the function.
410   if (CurBB && CurBB->getParent())
411     CurFn->getBasicBlockList().insertAfter(CurBB->getIterator(), BB);
412   else
413     CurFn->getBasicBlockList().push_back(BB);
414   Builder.SetInsertPoint(BB);
415 }
416
417 void CodeGenFunction::EmitBranch(llvm::BasicBlock *Target) {
418   // Emit a branch from the current block to the target one if this
419   // was a real block.  If this was just a fall-through block after a
420   // terminator, don't emit it.
421   llvm::BasicBlock *CurBB = Builder.GetInsertBlock();
422
423   if (!CurBB || CurBB->getTerminator()) {
424     // If there is no insert point or the previous block is already
425     // terminated, don't touch it.
426   } else {
427     // Otherwise, create a fall-through branch.
428     Builder.CreateBr(Target);
429   }
430
431   Builder.ClearInsertionPoint();
432 }
433
434 void CodeGenFunction::EmitBlockAfterUses(llvm::BasicBlock *block) {
435   bool inserted = false;
436   for (llvm::User *u : block->users()) {
437     if (llvm::Instruction *insn = dyn_cast<llvm::Instruction>(u)) {
438       CurFn->getBasicBlockList().insertAfter(insn->getParent()->getIterator(),
439                                              block);
440       inserted = true;
441       break;
442     }
443   }
444
445   if (!inserted)
446     CurFn->getBasicBlockList().push_back(block);
447
448   Builder.SetInsertPoint(block);
449 }
450
451 CodeGenFunction::JumpDest
452 CodeGenFunction::getJumpDestForLabel(const LabelDecl *D) {
453   JumpDest &Dest = LabelMap[D];
454   if (Dest.isValid()) return Dest;
455
456   // Create, but don't insert, the new block.
457   Dest = JumpDest(createBasicBlock(D->getName()),
458                   EHScopeStack::stable_iterator::invalid(),
459                   NextCleanupDestIndex++);
460   return Dest;
461 }
462
463 void CodeGenFunction::EmitLabel(const LabelDecl *D) {
464   // Add this label to the current lexical scope if we're within any
465   // normal cleanups.  Jumps "in" to this label --- when permitted by
466   // the language --- may need to be routed around such cleanups.
467   if (EHStack.hasNormalCleanups() && CurLexicalScope)
468     CurLexicalScope->addLabel(D);
469
470   JumpDest &Dest = LabelMap[D];
471
472   // If we didn't need a forward reference to this label, just go
473   // ahead and create a destination at the current scope.
474   if (!Dest.isValid()) {
475     Dest = getJumpDestInCurrentScope(D->getName());
476
477   // Otherwise, we need to give this label a target depth and remove
478   // it from the branch-fixups list.
479   } else {
480     assert(!Dest.getScopeDepth().isValid() && "already emitted label!");
481     Dest.setScopeDepth(EHStack.stable_begin());
482     ResolveBranchFixups(Dest.getBlock());
483   }
484
485   EmitBlock(Dest.getBlock());
486   incrementProfileCounter(D->getStmt());
487 }
488
489 /// Change the cleanup scope of the labels in this lexical scope to
490 /// match the scope of the enclosing context.
491 void CodeGenFunction::LexicalScope::rescopeLabels() {
492   assert(!Labels.empty());
493   EHScopeStack::stable_iterator innermostScope
494     = CGF.EHStack.getInnermostNormalCleanup();
495
496   // Change the scope depth of all the labels.
497   for (SmallVectorImpl<const LabelDecl*>::const_iterator
498          i = Labels.begin(), e = Labels.end(); i != e; ++i) {
499     assert(CGF.LabelMap.count(*i));
500     JumpDest &dest = CGF.LabelMap.find(*i)->second;
501     assert(dest.getScopeDepth().isValid());
502     assert(innermostScope.encloses(dest.getScopeDepth()));
503     dest.setScopeDepth(innermostScope);
504   }
505
506   // Reparent the labels if the new scope also has cleanups.
507   if (innermostScope != EHScopeStack::stable_end() && ParentScope) {
508     ParentScope->Labels.append(Labels.begin(), Labels.end());
509   }
510 }
511
512
513 void CodeGenFunction::EmitLabelStmt(const LabelStmt &S) {
514   EmitLabel(S.getDecl());
515   EmitStmt(S.getSubStmt());
516 }
517
518 void CodeGenFunction::EmitAttributedStmt(const AttributedStmt &S) {
519   const Stmt *SubStmt = S.getSubStmt();
520   switch (SubStmt->getStmtClass()) {
521   case Stmt::DoStmtClass:
522     EmitDoStmt(cast<DoStmt>(*SubStmt), S.getAttrs());
523     break;
524   case Stmt::ForStmtClass:
525     EmitForStmt(cast<ForStmt>(*SubStmt), S.getAttrs());
526     break;
527   case Stmt::WhileStmtClass:
528     EmitWhileStmt(cast<WhileStmt>(*SubStmt), S.getAttrs());
529     break;
530   case Stmt::CXXForRangeStmtClass:
531     EmitCXXForRangeStmt(cast<CXXForRangeStmt>(*SubStmt), S.getAttrs());
532     break;
533   default:
534     EmitStmt(SubStmt);
535   }
536 }
537
538 void CodeGenFunction::EmitGotoStmt(const GotoStmt &S) {
539   // If this code is reachable then emit a stop point (if generating
540   // debug info). We have to do this ourselves because we are on the
541   // "simple" statement path.
542   if (HaveInsertPoint())
543     EmitStopPoint(&S);
544
545   EmitBranchThroughCleanup(getJumpDestForLabel(S.getLabel()));
546 }
547
548
549 void CodeGenFunction::EmitIndirectGotoStmt(const IndirectGotoStmt &S) {
550   if (const LabelDecl *Target = S.getConstantTarget()) {
551     EmitBranchThroughCleanup(getJumpDestForLabel(Target));
552     return;
553   }
554
555   // Ensure that we have an i8* for our PHI node.
556   llvm::Value *V = Builder.CreateBitCast(EmitScalarExpr(S.getTarget()),
557                                          Int8PtrTy, "addr");
558   llvm::BasicBlock *CurBB = Builder.GetInsertBlock();
559
560   // Get the basic block for the indirect goto.
561   llvm::BasicBlock *IndGotoBB = GetIndirectGotoBlock();
562
563   // The first instruction in the block has to be the PHI for the switch dest,
564   // add an entry for this branch.
565   cast<llvm::PHINode>(IndGotoBB->begin())->addIncoming(V, CurBB);
566
567   EmitBranch(IndGotoBB);
568 }
569
570 void CodeGenFunction::EmitIfStmt(const IfStmt &S) {
571   // C99 6.8.4.1: The first substatement is executed if the expression compares
572   // unequal to 0.  The condition must be a scalar type.
573   LexicalScope ConditionScope(*this, S.getCond()->getSourceRange());
574
575   if (S.getInit())
576     EmitStmt(S.getInit());
577
578   if (S.getConditionVariable())
579     EmitAutoVarDecl(*S.getConditionVariable());
580
581   // If the condition constant folds and can be elided, try to avoid emitting
582   // the condition and the dead arm of the if/else.
583   bool CondConstant;
584   if (ConstantFoldsToSimpleInteger(S.getCond(), CondConstant,
585                                    S.isConstexpr())) {
586     // Figure out which block (then or else) is executed.
587     const Stmt *Executed = S.getThen();
588     const Stmt *Skipped  = S.getElse();
589     if (!CondConstant)  // Condition false?
590       std::swap(Executed, Skipped);
591
592     // If the skipped block has no labels in it, just emit the executed block.
593     // This avoids emitting dead code and simplifies the CFG substantially.
594     if (S.isConstexpr() || !ContainsLabel(Skipped)) {
595       if (CondConstant)
596         incrementProfileCounter(&S);
597       if (Executed) {
598         RunCleanupsScope ExecutedScope(*this);
599         EmitStmt(Executed);
600       }
601       return;
602     }
603   }
604
605   // Otherwise, the condition did not fold, or we couldn't elide it.  Just emit
606   // the conditional branch.
607   llvm::BasicBlock *ThenBlock = createBasicBlock("if.then");
608   llvm::BasicBlock *ContBlock = createBasicBlock("if.end");
609   llvm::BasicBlock *ElseBlock = ContBlock;
610   if (S.getElse())
611     ElseBlock = createBasicBlock("if.else");
612
613   EmitBranchOnBoolExpr(S.getCond(), ThenBlock, ElseBlock,
614                        getProfileCount(S.getThen()));
615
616   // Emit the 'then' code.
617   EmitBlock(ThenBlock);
618   incrementProfileCounter(&S);
619   {
620     RunCleanupsScope ThenScope(*this);
621     EmitStmt(S.getThen());
622   }
623   EmitBranch(ContBlock);
624
625   // Emit the 'else' code if present.
626   if (const Stmt *Else = S.getElse()) {
627     {
628       // There is no need to emit line number for an unconditional branch.
629       auto NL = ApplyDebugLocation::CreateEmpty(*this);
630       EmitBlock(ElseBlock);
631     }
632     {
633       RunCleanupsScope ElseScope(*this);
634       EmitStmt(Else);
635     }
636     {
637       // There is no need to emit line number for an unconditional branch.
638       auto NL = ApplyDebugLocation::CreateEmpty(*this);
639       EmitBranch(ContBlock);
640     }
641   }
642
643   // Emit the continuation block for code after the if.
644   EmitBlock(ContBlock, true);
645 }
646
647 void CodeGenFunction::EmitWhileStmt(const WhileStmt &S,
648                                     ArrayRef<const Attr *> WhileAttrs) {
649   // Emit the header for the loop, which will also become
650   // the continue target.
651   JumpDest LoopHeader = getJumpDestInCurrentScope("while.cond");
652   EmitBlock(LoopHeader.getBlock());
653
654   LoopStack.push(LoopHeader.getBlock(), CGM.getContext(), WhileAttrs,
655                  Builder.getCurrentDebugLocation());
656
657   // Create an exit block for when the condition fails, which will
658   // also become the break target.
659   JumpDest LoopExit = getJumpDestInCurrentScope("while.end");
660
661   // Store the blocks to use for break and continue.
662   BreakContinueStack.push_back(BreakContinue(LoopExit, LoopHeader));
663
664   // C++ [stmt.while]p2:
665   //   When the condition of a while statement is a declaration, the
666   //   scope of the variable that is declared extends from its point
667   //   of declaration (3.3.2) to the end of the while statement.
668   //   [...]
669   //   The object created in a condition is destroyed and created
670   //   with each iteration of the loop.
671   RunCleanupsScope ConditionScope(*this);
672
673   if (S.getConditionVariable())
674     EmitAutoVarDecl(*S.getConditionVariable());
675
676   // Evaluate the conditional in the while header.  C99 6.8.5.1: The
677   // evaluation of the controlling expression takes place before each
678   // execution of the loop body.
679   llvm::Value *BoolCondVal = EvaluateExprAsBool(S.getCond());
680
681   // while(1) is common, avoid extra exit blocks.  Be sure
682   // to correctly handle break/continue though.
683   bool EmitBoolCondBranch = true;
684   if (llvm::ConstantInt *C = dyn_cast<llvm::ConstantInt>(BoolCondVal))
685     if (C->isOne())
686       EmitBoolCondBranch = false;
687
688   // As long as the condition is true, go to the loop body.
689   llvm::BasicBlock *LoopBody = createBasicBlock("while.body");
690   if (EmitBoolCondBranch) {
691     llvm::BasicBlock *ExitBlock = LoopExit.getBlock();
692     if (ConditionScope.requiresCleanups())
693       ExitBlock = createBasicBlock("while.exit");
694     Builder.CreateCondBr(
695         BoolCondVal, LoopBody, ExitBlock,
696         createProfileWeightsForLoop(S.getCond(), getProfileCount(S.getBody())));
697
698     if (ExitBlock != LoopExit.getBlock()) {
699       EmitBlock(ExitBlock);
700       EmitBranchThroughCleanup(LoopExit);
701     }
702   }
703
704   // Emit the loop body.  We have to emit this in a cleanup scope
705   // because it might be a singleton DeclStmt.
706   {
707     RunCleanupsScope BodyScope(*this);
708     EmitBlock(LoopBody);
709     incrementProfileCounter(&S);
710     EmitStmt(S.getBody());
711   }
712
713   BreakContinueStack.pop_back();
714
715   // Immediately force cleanup.
716   ConditionScope.ForceCleanup();
717
718   EmitStopPoint(&S);
719   // Branch to the loop header again.
720   EmitBranch(LoopHeader.getBlock());
721
722   LoopStack.pop();
723
724   // Emit the exit block.
725   EmitBlock(LoopExit.getBlock(), true);
726
727   // The LoopHeader typically is just a branch if we skipped emitting
728   // a branch, try to erase it.
729   if (!EmitBoolCondBranch)
730     SimplifyForwardingBlocks(LoopHeader.getBlock());
731 }
732
733 void CodeGenFunction::EmitDoStmt(const DoStmt &S,
734                                  ArrayRef<const Attr *> DoAttrs) {
735   JumpDest LoopExit = getJumpDestInCurrentScope("do.end");
736   JumpDest LoopCond = getJumpDestInCurrentScope("do.cond");
737
738   uint64_t ParentCount = getCurrentProfileCount();
739
740   // Store the blocks to use for break and continue.
741   BreakContinueStack.push_back(BreakContinue(LoopExit, LoopCond));
742
743   // Emit the body of the loop.
744   llvm::BasicBlock *LoopBody = createBasicBlock("do.body");
745
746   LoopStack.push(LoopBody, CGM.getContext(), DoAttrs,
747                  Builder.getCurrentDebugLocation());
748
749   EmitBlockWithFallThrough(LoopBody, &S);
750   {
751     RunCleanupsScope BodyScope(*this);
752     EmitStmt(S.getBody());
753   }
754
755   EmitBlock(LoopCond.getBlock());
756
757   // C99 6.8.5.2: "The evaluation of the controlling expression takes place
758   // after each execution of the loop body."
759
760   // Evaluate the conditional in the while header.
761   // C99 6.8.5p2/p4: The first substatement is executed if the expression
762   // compares unequal to 0.  The condition must be a scalar type.
763   llvm::Value *BoolCondVal = EvaluateExprAsBool(S.getCond());
764
765   BreakContinueStack.pop_back();
766
767   // "do {} while (0)" is common in macros, avoid extra blocks.  Be sure
768   // to correctly handle break/continue though.
769   bool EmitBoolCondBranch = true;
770   if (llvm::ConstantInt *C = dyn_cast<llvm::ConstantInt>(BoolCondVal))
771     if (C->isZero())
772       EmitBoolCondBranch = false;
773
774   // As long as the condition is true, iterate the loop.
775   if (EmitBoolCondBranch) {
776     uint64_t BackedgeCount = getProfileCount(S.getBody()) - ParentCount;
777     Builder.CreateCondBr(
778         BoolCondVal, LoopBody, LoopExit.getBlock(),
779         createProfileWeightsForLoop(S.getCond(), BackedgeCount));
780   }
781
782   LoopStack.pop();
783
784   // Emit the exit block.
785   EmitBlock(LoopExit.getBlock());
786
787   // The DoCond block typically is just a branch if we skipped
788   // emitting a branch, try to erase it.
789   if (!EmitBoolCondBranch)
790     SimplifyForwardingBlocks(LoopCond.getBlock());
791 }
792
793 void CodeGenFunction::EmitForStmt(const ForStmt &S,
794                                   ArrayRef<const Attr *> ForAttrs) {
795   JumpDest LoopExit = getJumpDestInCurrentScope("for.end");
796
797   LexicalScope ForScope(*this, S.getSourceRange());
798
799   llvm::DebugLoc DL = Builder.getCurrentDebugLocation();
800
801   // Evaluate the first part before the loop.
802   if (S.getInit())
803     EmitStmt(S.getInit());
804
805   // Start the loop with a block that tests the condition.
806   // If there's an increment, the continue scope will be overwritten
807   // later.
808   JumpDest Continue = getJumpDestInCurrentScope("for.cond");
809   llvm::BasicBlock *CondBlock = Continue.getBlock();
810   EmitBlock(CondBlock);
811
812   LoopStack.push(CondBlock, CGM.getContext(), ForAttrs, DL);
813
814   // If the for loop doesn't have an increment we can just use the
815   // condition as the continue block.  Otherwise we'll need to create
816   // a block for it (in the current scope, i.e. in the scope of the
817   // condition), and that we will become our continue block.
818   if (S.getInc())
819     Continue = getJumpDestInCurrentScope("for.inc");
820
821   // Store the blocks to use for break and continue.
822   BreakContinueStack.push_back(BreakContinue(LoopExit, Continue));
823
824   // Create a cleanup scope for the condition variable cleanups.
825   LexicalScope ConditionScope(*this, S.getSourceRange());
826
827   if (S.getCond()) {
828     // If the for statement has a condition scope, emit the local variable
829     // declaration.
830     if (S.getConditionVariable()) {
831       EmitAutoVarDecl(*S.getConditionVariable());
832     }
833
834     llvm::BasicBlock *ExitBlock = LoopExit.getBlock();
835     // If there are any cleanups between here and the loop-exit scope,
836     // create a block to stage a loop exit along.
837     if (ForScope.requiresCleanups())
838       ExitBlock = createBasicBlock("for.cond.cleanup");
839
840     // As long as the condition is true, iterate the loop.
841     llvm::BasicBlock *ForBody = createBasicBlock("for.body");
842
843     // C99 6.8.5p2/p4: The first substatement is executed if the expression
844     // compares unequal to 0.  The condition must be a scalar type.
845     llvm::Value *BoolCondVal = EvaluateExprAsBool(S.getCond());
846     Builder.CreateCondBr(
847         BoolCondVal, ForBody, ExitBlock,
848         createProfileWeightsForLoop(S.getCond(), getProfileCount(S.getBody())));
849
850     if (ExitBlock != LoopExit.getBlock()) {
851       EmitBlock(ExitBlock);
852       EmitBranchThroughCleanup(LoopExit);
853     }
854
855     EmitBlock(ForBody);
856   } else {
857     // Treat it as a non-zero constant.  Don't even create a new block for the
858     // body, just fall into it.
859   }
860   incrementProfileCounter(&S);
861
862   {
863     // Create a separate cleanup scope for the body, in case it is not
864     // a compound statement.
865     RunCleanupsScope BodyScope(*this);
866     EmitStmt(S.getBody());
867   }
868
869   // If there is an increment, emit it next.
870   if (S.getInc()) {
871     EmitBlock(Continue.getBlock());
872     EmitStmt(S.getInc());
873   }
874
875   BreakContinueStack.pop_back();
876
877   ConditionScope.ForceCleanup();
878
879   EmitStopPoint(&S);
880   EmitBranch(CondBlock);
881
882   ForScope.ForceCleanup();
883
884   LoopStack.pop();
885
886   // Emit the fall-through block.
887   EmitBlock(LoopExit.getBlock(), true);
888 }
889
890 void
891 CodeGenFunction::EmitCXXForRangeStmt(const CXXForRangeStmt &S,
892                                      ArrayRef<const Attr *> ForAttrs) {
893   JumpDest LoopExit = getJumpDestInCurrentScope("for.end");
894
895   LexicalScope ForScope(*this, S.getSourceRange());
896
897   llvm::DebugLoc DL = Builder.getCurrentDebugLocation();
898
899   // Evaluate the first pieces before the loop.
900   EmitStmt(S.getRangeStmt());
901   EmitStmt(S.getBeginStmt());
902   EmitStmt(S.getEndStmt());
903
904   // Start the loop with a block that tests the condition.
905   // If there's an increment, the continue scope will be overwritten
906   // later.
907   llvm::BasicBlock *CondBlock = createBasicBlock("for.cond");
908   EmitBlock(CondBlock);
909
910   LoopStack.push(CondBlock, CGM.getContext(), ForAttrs, DL);
911
912   // If there are any cleanups between here and the loop-exit scope,
913   // create a block to stage a loop exit along.
914   llvm::BasicBlock *ExitBlock = LoopExit.getBlock();
915   if (ForScope.requiresCleanups())
916     ExitBlock = createBasicBlock("for.cond.cleanup");
917
918   // The loop body, consisting of the specified body and the loop variable.
919   llvm::BasicBlock *ForBody = createBasicBlock("for.body");
920
921   // The body is executed if the expression, contextually converted
922   // to bool, is true.
923   llvm::Value *BoolCondVal = EvaluateExprAsBool(S.getCond());
924   Builder.CreateCondBr(
925       BoolCondVal, ForBody, ExitBlock,
926       createProfileWeightsForLoop(S.getCond(), getProfileCount(S.getBody())));
927
928   if (ExitBlock != LoopExit.getBlock()) {
929     EmitBlock(ExitBlock);
930     EmitBranchThroughCleanup(LoopExit);
931   }
932
933   EmitBlock(ForBody);
934   incrementProfileCounter(&S);
935
936   // Create a block for the increment. In case of a 'continue', we jump there.
937   JumpDest Continue = getJumpDestInCurrentScope("for.inc");
938
939   // Store the blocks to use for break and continue.
940   BreakContinueStack.push_back(BreakContinue(LoopExit, Continue));
941
942   {
943     // Create a separate cleanup scope for the loop variable and body.
944     LexicalScope BodyScope(*this, S.getSourceRange());
945     EmitStmt(S.getLoopVarStmt());
946     EmitStmt(S.getBody());
947   }
948
949   EmitStopPoint(&S);
950   // If there is an increment, emit it next.
951   EmitBlock(Continue.getBlock());
952   EmitStmt(S.getInc());
953
954   BreakContinueStack.pop_back();
955
956   EmitBranch(CondBlock);
957
958   ForScope.ForceCleanup();
959
960   LoopStack.pop();
961
962   // Emit the fall-through block.
963   EmitBlock(LoopExit.getBlock(), true);
964 }
965
966 void CodeGenFunction::EmitReturnOfRValue(RValue RV, QualType Ty) {
967   if (RV.isScalar()) {
968     Builder.CreateStore(RV.getScalarVal(), ReturnValue);
969   } else if (RV.isAggregate()) {
970     EmitAggregateCopy(ReturnValue, RV.getAggregateAddress(), Ty);
971   } else {
972     EmitStoreOfComplex(RV.getComplexVal(), MakeAddrLValue(ReturnValue, Ty),
973                        /*init*/ true);
974   }
975   EmitBranchThroughCleanup(ReturnBlock);
976 }
977
978 /// EmitReturnStmt - Note that due to GCC extensions, this can have an operand
979 /// if the function returns void, or may be missing one if the function returns
980 /// non-void.  Fun stuff :).
981 void CodeGenFunction::EmitReturnStmt(const ReturnStmt &S) {
982   // Returning from an outlined SEH helper is UB, and we already warn on it.
983   if (IsOutlinedSEHHelper) {
984     Builder.CreateUnreachable();
985     Builder.ClearInsertionPoint();
986   }
987
988   // Emit the result value, even if unused, to evalute the side effects.
989   const Expr *RV = S.getRetValue();
990
991   // Treat block literals in a return expression as if they appeared
992   // in their own scope.  This permits a small, easily-implemented
993   // exception to our over-conservative rules about not jumping to
994   // statements following block literals with non-trivial cleanups.
995   RunCleanupsScope cleanupScope(*this);
996   if (const ExprWithCleanups *cleanups =
997         dyn_cast_or_null<ExprWithCleanups>(RV)) {
998     enterFullExpression(cleanups);
999     RV = cleanups->getSubExpr();
1000   }
1001
1002   // FIXME: Clean this up by using an LValue for ReturnTemp,
1003   // EmitStoreThroughLValue, and EmitAnyExpr.
1004   if (getLangOpts().ElideConstructors &&
1005       S.getNRVOCandidate() && S.getNRVOCandidate()->isNRVOVariable()) {
1006     // Apply the named return value optimization for this return statement,
1007     // which means doing nothing: the appropriate result has already been
1008     // constructed into the NRVO variable.
1009
1010     // If there is an NRVO flag for this variable, set it to 1 into indicate
1011     // that the cleanup code should not destroy the variable.
1012     if (llvm::Value *NRVOFlag = NRVOFlags[S.getNRVOCandidate()])
1013       Builder.CreateFlagStore(Builder.getTrue(), NRVOFlag);
1014   } else if (!ReturnValue.isValid() || (RV && RV->getType()->isVoidType())) {
1015     // Make sure not to return anything, but evaluate the expression
1016     // for side effects.
1017     if (RV)
1018       EmitAnyExpr(RV);
1019   } else if (!RV) {
1020     // Do nothing (return value is left uninitialized)
1021   } else if (FnRetTy->isReferenceType()) {
1022     // If this function returns a reference, take the address of the expression
1023     // rather than the value.
1024     RValue Result = EmitReferenceBindingToExpr(RV);
1025     Builder.CreateStore(Result.getScalarVal(), ReturnValue);
1026   } else {
1027     switch (getEvaluationKind(RV->getType())) {
1028     case TEK_Scalar:
1029       Builder.CreateStore(EmitScalarExpr(RV), ReturnValue);
1030       break;
1031     case TEK_Complex:
1032       EmitComplexExprIntoLValue(RV, MakeAddrLValue(ReturnValue, RV->getType()),
1033                                 /*isInit*/ true);
1034       break;
1035     case TEK_Aggregate:
1036       EmitAggExpr(RV, AggValueSlot::forAddr(ReturnValue,
1037                                             Qualifiers(),
1038                                             AggValueSlot::IsDestructed,
1039                                             AggValueSlot::DoesNotNeedGCBarriers,
1040                                             AggValueSlot::IsNotAliased));
1041       break;
1042     }
1043   }
1044
1045   ++NumReturnExprs;
1046   if (!RV || RV->isEvaluatable(getContext()))
1047     ++NumSimpleReturnExprs;
1048
1049   cleanupScope.ForceCleanup();
1050   EmitBranchThroughCleanup(ReturnBlock);
1051 }
1052
1053 void CodeGenFunction::EmitDeclStmt(const DeclStmt &S) {
1054   // As long as debug info is modeled with instructions, we have to ensure we
1055   // have a place to insert here and write the stop point here.
1056   if (HaveInsertPoint())
1057     EmitStopPoint(&S);
1058
1059   for (const auto *I : S.decls())
1060     EmitDecl(*I);
1061 }
1062
1063 void CodeGenFunction::EmitBreakStmt(const BreakStmt &S) {
1064   assert(!BreakContinueStack.empty() && "break stmt not in a loop or switch!");
1065
1066   // If this code is reachable then emit a stop point (if generating
1067   // debug info). We have to do this ourselves because we are on the
1068   // "simple" statement path.
1069   if (HaveInsertPoint())
1070     EmitStopPoint(&S);
1071
1072   EmitBranchThroughCleanup(BreakContinueStack.back().BreakBlock);
1073 }
1074
1075 void CodeGenFunction::EmitContinueStmt(const ContinueStmt &S) {
1076   assert(!BreakContinueStack.empty() && "continue stmt not in a loop!");
1077
1078   // If this code is reachable then emit a stop point (if generating
1079   // debug info). We have to do this ourselves because we are on the
1080   // "simple" statement path.
1081   if (HaveInsertPoint())
1082     EmitStopPoint(&S);
1083
1084   EmitBranchThroughCleanup(BreakContinueStack.back().ContinueBlock);
1085 }
1086
1087 /// EmitCaseStmtRange - If case statement range is not too big then
1088 /// add multiple cases to switch instruction, one for each value within
1089 /// the range. If range is too big then emit "if" condition check.
1090 void CodeGenFunction::EmitCaseStmtRange(const CaseStmt &S) {
1091   assert(S.getRHS() && "Expected RHS value in CaseStmt");
1092
1093   llvm::APSInt LHS = S.getLHS()->EvaluateKnownConstInt(getContext());
1094   llvm::APSInt RHS = S.getRHS()->EvaluateKnownConstInt(getContext());
1095
1096   // Emit the code for this case. We do this first to make sure it is
1097   // properly chained from our predecessor before generating the
1098   // switch machinery to enter this block.
1099   llvm::BasicBlock *CaseDest = createBasicBlock("sw.bb");
1100   EmitBlockWithFallThrough(CaseDest, &S);
1101   EmitStmt(S.getSubStmt());
1102
1103   // If range is empty, do nothing.
1104   if (LHS.isSigned() ? RHS.slt(LHS) : RHS.ult(LHS))
1105     return;
1106
1107   llvm::APInt Range = RHS - LHS;
1108   // FIXME: parameters such as this should not be hardcoded.
1109   if (Range.ult(llvm::APInt(Range.getBitWidth(), 64))) {
1110     // Range is small enough to add multiple switch instruction cases.
1111     uint64_t Total = getProfileCount(&S);
1112     unsigned NCases = Range.getZExtValue() + 1;
1113     // We only have one region counter for the entire set of cases here, so we
1114     // need to divide the weights evenly between the generated cases, ensuring
1115     // that the total weight is preserved. E.g., a weight of 5 over three cases
1116     // will be distributed as weights of 2, 2, and 1.
1117     uint64_t Weight = Total / NCases, Rem = Total % NCases;
1118     for (unsigned I = 0; I != NCases; ++I) {
1119       if (SwitchWeights)
1120         SwitchWeights->push_back(Weight + (Rem ? 1 : 0));
1121       if (Rem)
1122         Rem--;
1123       SwitchInsn->addCase(Builder.getInt(LHS), CaseDest);
1124       LHS++;
1125     }
1126     return;
1127   }
1128
1129   // The range is too big. Emit "if" condition into a new block,
1130   // making sure to save and restore the current insertion point.
1131   llvm::BasicBlock *RestoreBB = Builder.GetInsertBlock();
1132
1133   // Push this test onto the chain of range checks (which terminates
1134   // in the default basic block). The switch's default will be changed
1135   // to the top of this chain after switch emission is complete.
1136   llvm::BasicBlock *FalseDest = CaseRangeBlock;
1137   CaseRangeBlock = createBasicBlock("sw.caserange");
1138
1139   CurFn->getBasicBlockList().push_back(CaseRangeBlock);
1140   Builder.SetInsertPoint(CaseRangeBlock);
1141
1142   // Emit range check.
1143   llvm::Value *Diff =
1144     Builder.CreateSub(SwitchInsn->getCondition(), Builder.getInt(LHS));
1145   llvm::Value *Cond =
1146     Builder.CreateICmpULE(Diff, Builder.getInt(Range), "inbounds");
1147
1148   llvm::MDNode *Weights = nullptr;
1149   if (SwitchWeights) {
1150     uint64_t ThisCount = getProfileCount(&S);
1151     uint64_t DefaultCount = (*SwitchWeights)[0];
1152     Weights = createProfileWeights(ThisCount, DefaultCount);
1153
1154     // Since we're chaining the switch default through each large case range, we
1155     // need to update the weight for the default, ie, the first case, to include
1156     // this case.
1157     (*SwitchWeights)[0] += ThisCount;
1158   }
1159   Builder.CreateCondBr(Cond, CaseDest, FalseDest, Weights);
1160
1161   // Restore the appropriate insertion point.
1162   if (RestoreBB)
1163     Builder.SetInsertPoint(RestoreBB);
1164   else
1165     Builder.ClearInsertionPoint();
1166 }
1167
1168 void CodeGenFunction::EmitCaseStmt(const CaseStmt &S) {
1169   // If there is no enclosing switch instance that we're aware of, then this
1170   // case statement and its block can be elided.  This situation only happens
1171   // when we've constant-folded the switch, are emitting the constant case,
1172   // and part of the constant case includes another case statement.  For
1173   // instance: switch (4) { case 4: do { case 5: } while (1); }
1174   if (!SwitchInsn) {
1175     EmitStmt(S.getSubStmt());
1176     return;
1177   }
1178
1179   // Handle case ranges.
1180   if (S.getRHS()) {
1181     EmitCaseStmtRange(S);
1182     return;
1183   }
1184
1185   llvm::ConstantInt *CaseVal =
1186     Builder.getInt(S.getLHS()->EvaluateKnownConstInt(getContext()));
1187
1188   // If the body of the case is just a 'break', try to not emit an empty block.
1189   // If we're profiling or we're not optimizing, leave the block in for better
1190   // debug and coverage analysis.
1191   if (!CGM.getCodeGenOpts().hasProfileClangInstr() &&
1192       CGM.getCodeGenOpts().OptimizationLevel > 0 &&
1193       isa<BreakStmt>(S.getSubStmt())) {
1194     JumpDest Block = BreakContinueStack.back().BreakBlock;
1195
1196     // Only do this optimization if there are no cleanups that need emitting.
1197     if (isObviouslyBranchWithoutCleanups(Block)) {
1198       if (SwitchWeights)
1199         SwitchWeights->push_back(getProfileCount(&S));
1200       SwitchInsn->addCase(CaseVal, Block.getBlock());
1201
1202       // If there was a fallthrough into this case, make sure to redirect it to
1203       // the end of the switch as well.
1204       if (Builder.GetInsertBlock()) {
1205         Builder.CreateBr(Block.getBlock());
1206         Builder.ClearInsertionPoint();
1207       }
1208       return;
1209     }
1210   }
1211
1212   llvm::BasicBlock *CaseDest = createBasicBlock("sw.bb");
1213   EmitBlockWithFallThrough(CaseDest, &S);
1214   if (SwitchWeights)
1215     SwitchWeights->push_back(getProfileCount(&S));
1216   SwitchInsn->addCase(CaseVal, CaseDest);
1217
1218   // Recursively emitting the statement is acceptable, but is not wonderful for
1219   // code where we have many case statements nested together, i.e.:
1220   //  case 1:
1221   //    case 2:
1222   //      case 3: etc.
1223   // Handling this recursively will create a new block for each case statement
1224   // that falls through to the next case which is IR intensive.  It also causes
1225   // deep recursion which can run into stack depth limitations.  Handle
1226   // sequential non-range case statements specially.
1227   const CaseStmt *CurCase = &S;
1228   const CaseStmt *NextCase = dyn_cast<CaseStmt>(S.getSubStmt());
1229
1230   // Otherwise, iteratively add consecutive cases to this switch stmt.
1231   while (NextCase && NextCase->getRHS() == nullptr) {
1232     CurCase = NextCase;
1233     llvm::ConstantInt *CaseVal =
1234       Builder.getInt(CurCase->getLHS()->EvaluateKnownConstInt(getContext()));
1235
1236     if (SwitchWeights)
1237       SwitchWeights->push_back(getProfileCount(NextCase));
1238     if (CGM.getCodeGenOpts().hasProfileClangInstr()) {
1239       CaseDest = createBasicBlock("sw.bb");
1240       EmitBlockWithFallThrough(CaseDest, &S);
1241     }
1242
1243     SwitchInsn->addCase(CaseVal, CaseDest);
1244     NextCase = dyn_cast<CaseStmt>(CurCase->getSubStmt());
1245   }
1246
1247   // Normal default recursion for non-cases.
1248   EmitStmt(CurCase->getSubStmt());
1249 }
1250
1251 void CodeGenFunction::EmitDefaultStmt(const DefaultStmt &S) {
1252   // If there is no enclosing switch instance that we're aware of, then this
1253   // default statement can be elided. This situation only happens when we've
1254   // constant-folded the switch.
1255   if (!SwitchInsn) {
1256     EmitStmt(S.getSubStmt());
1257     return;
1258   }
1259
1260   llvm::BasicBlock *DefaultBlock = SwitchInsn->getDefaultDest();
1261   assert(DefaultBlock->empty() &&
1262          "EmitDefaultStmt: Default block already defined?");
1263
1264   EmitBlockWithFallThrough(DefaultBlock, &S);
1265
1266   EmitStmt(S.getSubStmt());
1267 }
1268
1269 /// CollectStatementsForCase - Given the body of a 'switch' statement and a
1270 /// constant value that is being switched on, see if we can dead code eliminate
1271 /// the body of the switch to a simple series of statements to emit.  Basically,
1272 /// on a switch (5) we want to find these statements:
1273 ///    case 5:
1274 ///      printf(...);    <--
1275 ///      ++i;            <--
1276 ///      break;
1277 ///
1278 /// and add them to the ResultStmts vector.  If it is unsafe to do this
1279 /// transformation (for example, one of the elided statements contains a label
1280 /// that might be jumped to), return CSFC_Failure.  If we handled it and 'S'
1281 /// should include statements after it (e.g. the printf() line is a substmt of
1282 /// the case) then return CSFC_FallThrough.  If we handled it and found a break
1283 /// statement, then return CSFC_Success.
1284 ///
1285 /// If Case is non-null, then we are looking for the specified case, checking
1286 /// that nothing we jump over contains labels.  If Case is null, then we found
1287 /// the case and are looking for the break.
1288 ///
1289 /// If the recursive walk actually finds our Case, then we set FoundCase to
1290 /// true.
1291 ///
1292 enum CSFC_Result { CSFC_Failure, CSFC_FallThrough, CSFC_Success };
1293 static CSFC_Result CollectStatementsForCase(const Stmt *S,
1294                                             const SwitchCase *Case,
1295                                             bool &FoundCase,
1296                               SmallVectorImpl<const Stmt*> &ResultStmts) {
1297   // If this is a null statement, just succeed.
1298   if (!S)
1299     return Case ? CSFC_Success : CSFC_FallThrough;
1300
1301   // If this is the switchcase (case 4: or default) that we're looking for, then
1302   // we're in business.  Just add the substatement.
1303   if (const SwitchCase *SC = dyn_cast<SwitchCase>(S)) {
1304     if (S == Case) {
1305       FoundCase = true;
1306       return CollectStatementsForCase(SC->getSubStmt(), nullptr, FoundCase,
1307                                       ResultStmts);
1308     }
1309
1310     // Otherwise, this is some other case or default statement, just ignore it.
1311     return CollectStatementsForCase(SC->getSubStmt(), Case, FoundCase,
1312                                     ResultStmts);
1313   }
1314
1315   // If we are in the live part of the code and we found our break statement,
1316   // return a success!
1317   if (!Case && isa<BreakStmt>(S))
1318     return CSFC_Success;
1319
1320   // If this is a switch statement, then it might contain the SwitchCase, the
1321   // break, or neither.
1322   if (const CompoundStmt *CS = dyn_cast<CompoundStmt>(S)) {
1323     // Handle this as two cases: we might be looking for the SwitchCase (if so
1324     // the skipped statements must be skippable) or we might already have it.
1325     CompoundStmt::const_body_iterator I = CS->body_begin(), E = CS->body_end();
1326     if (Case) {
1327       // Keep track of whether we see a skipped declaration.  The code could be
1328       // using the declaration even if it is skipped, so we can't optimize out
1329       // the decl if the kept statements might refer to it.
1330       bool HadSkippedDecl = false;
1331
1332       // If we're looking for the case, just see if we can skip each of the
1333       // substatements.
1334       for (; Case && I != E; ++I) {
1335         HadSkippedDecl |= isa<DeclStmt>(*I);
1336
1337         switch (CollectStatementsForCase(*I, Case, FoundCase, ResultStmts)) {
1338         case CSFC_Failure: return CSFC_Failure;
1339         case CSFC_Success:
1340           // A successful result means that either 1) that the statement doesn't
1341           // have the case and is skippable, or 2) does contain the case value
1342           // and also contains the break to exit the switch.  In the later case,
1343           // we just verify the rest of the statements are elidable.
1344           if (FoundCase) {
1345             // If we found the case and skipped declarations, we can't do the
1346             // optimization.
1347             if (HadSkippedDecl)
1348               return CSFC_Failure;
1349
1350             for (++I; I != E; ++I)
1351               if (CodeGenFunction::ContainsLabel(*I, true))
1352                 return CSFC_Failure;
1353             return CSFC_Success;
1354           }
1355           break;
1356         case CSFC_FallThrough:
1357           // If we have a fallthrough condition, then we must have found the
1358           // case started to include statements.  Consider the rest of the
1359           // statements in the compound statement as candidates for inclusion.
1360           assert(FoundCase && "Didn't find case but returned fallthrough?");
1361           // We recursively found Case, so we're not looking for it anymore.
1362           Case = nullptr;
1363
1364           // If we found the case and skipped declarations, we can't do the
1365           // optimization.
1366           if (HadSkippedDecl)
1367             return CSFC_Failure;
1368           break;
1369         }
1370       }
1371     }
1372
1373     // If we have statements in our range, then we know that the statements are
1374     // live and need to be added to the set of statements we're tracking.
1375     for (; I != E; ++I) {
1376       switch (CollectStatementsForCase(*I, nullptr, FoundCase, ResultStmts)) {
1377       case CSFC_Failure: return CSFC_Failure;
1378       case CSFC_FallThrough:
1379         // A fallthrough result means that the statement was simple and just
1380         // included in ResultStmt, keep adding them afterwards.
1381         break;
1382       case CSFC_Success:
1383         // A successful result means that we found the break statement and
1384         // stopped statement inclusion.  We just ensure that any leftover stmts
1385         // are skippable and return success ourselves.
1386         for (++I; I != E; ++I)
1387           if (CodeGenFunction::ContainsLabel(*I, true))
1388             return CSFC_Failure;
1389         return CSFC_Success;
1390       }
1391     }
1392
1393     return Case ? CSFC_Success : CSFC_FallThrough;
1394   }
1395
1396   // Okay, this is some other statement that we don't handle explicitly, like a
1397   // for statement or increment etc.  If we are skipping over this statement,
1398   // just verify it doesn't have labels, which would make it invalid to elide.
1399   if (Case) {
1400     if (CodeGenFunction::ContainsLabel(S, true))
1401       return CSFC_Failure;
1402     return CSFC_Success;
1403   }
1404
1405   // Otherwise, we want to include this statement.  Everything is cool with that
1406   // so long as it doesn't contain a break out of the switch we're in.
1407   if (CodeGenFunction::containsBreak(S)) return CSFC_Failure;
1408
1409   // Otherwise, everything is great.  Include the statement and tell the caller
1410   // that we fall through and include the next statement as well.
1411   ResultStmts.push_back(S);
1412   return CSFC_FallThrough;
1413 }
1414
1415 /// FindCaseStatementsForValue - Find the case statement being jumped to and
1416 /// then invoke CollectStatementsForCase to find the list of statements to emit
1417 /// for a switch on constant.  See the comment above CollectStatementsForCase
1418 /// for more details.
1419 static bool FindCaseStatementsForValue(const SwitchStmt &S,
1420                                        const llvm::APSInt &ConstantCondValue,
1421                                 SmallVectorImpl<const Stmt*> &ResultStmts,
1422                                        ASTContext &C,
1423                                        const SwitchCase *&ResultCase) {
1424   // First step, find the switch case that is being branched to.  We can do this
1425   // efficiently by scanning the SwitchCase list.
1426   const SwitchCase *Case = S.getSwitchCaseList();
1427   const DefaultStmt *DefaultCase = nullptr;
1428
1429   for (; Case; Case = Case->getNextSwitchCase()) {
1430     // It's either a default or case.  Just remember the default statement in
1431     // case we're not jumping to any numbered cases.
1432     if (const DefaultStmt *DS = dyn_cast<DefaultStmt>(Case)) {
1433       DefaultCase = DS;
1434       continue;
1435     }
1436
1437     // Check to see if this case is the one we're looking for.
1438     const CaseStmt *CS = cast<CaseStmt>(Case);
1439     // Don't handle case ranges yet.
1440     if (CS->getRHS()) return false;
1441
1442     // If we found our case, remember it as 'case'.
1443     if (CS->getLHS()->EvaluateKnownConstInt(C) == ConstantCondValue)
1444       break;
1445   }
1446
1447   // If we didn't find a matching case, we use a default if it exists, or we
1448   // elide the whole switch body!
1449   if (!Case) {
1450     // It is safe to elide the body of the switch if it doesn't contain labels
1451     // etc.  If it is safe, return successfully with an empty ResultStmts list.
1452     if (!DefaultCase)
1453       return !CodeGenFunction::ContainsLabel(&S);
1454     Case = DefaultCase;
1455   }
1456
1457   // Ok, we know which case is being jumped to, try to collect all the
1458   // statements that follow it.  This can fail for a variety of reasons.  Also,
1459   // check to see that the recursive walk actually found our case statement.
1460   // Insane cases like this can fail to find it in the recursive walk since we
1461   // don't handle every stmt kind:
1462   // switch (4) {
1463   //   while (1) {
1464   //     case 4: ...
1465   bool FoundCase = false;
1466   ResultCase = Case;
1467   return CollectStatementsForCase(S.getBody(), Case, FoundCase,
1468                                   ResultStmts) != CSFC_Failure &&
1469          FoundCase;
1470 }
1471
1472 void CodeGenFunction::EmitSwitchStmt(const SwitchStmt &S) {
1473   // Handle nested switch statements.
1474   llvm::SwitchInst *SavedSwitchInsn = SwitchInsn;
1475   SmallVector<uint64_t, 16> *SavedSwitchWeights = SwitchWeights;
1476   llvm::BasicBlock *SavedCRBlock = CaseRangeBlock;
1477
1478   // See if we can constant fold the condition of the switch and therefore only
1479   // emit the live case statement (if any) of the switch.
1480   llvm::APSInt ConstantCondValue;
1481   if (ConstantFoldsToSimpleInteger(S.getCond(), ConstantCondValue)) {
1482     SmallVector<const Stmt*, 4> CaseStmts;
1483     const SwitchCase *Case = nullptr;
1484     if (FindCaseStatementsForValue(S, ConstantCondValue, CaseStmts,
1485                                    getContext(), Case)) {
1486       if (Case)
1487         incrementProfileCounter(Case);
1488       RunCleanupsScope ExecutedScope(*this);
1489
1490       if (S.getInit())
1491         EmitStmt(S.getInit());
1492
1493       // Emit the condition variable if needed inside the entire cleanup scope
1494       // used by this special case for constant folded switches.
1495       if (S.getConditionVariable())
1496         EmitAutoVarDecl(*S.getConditionVariable());
1497
1498       // At this point, we are no longer "within" a switch instance, so
1499       // we can temporarily enforce this to ensure that any embedded case
1500       // statements are not emitted.
1501       SwitchInsn = nullptr;
1502
1503       // Okay, we can dead code eliminate everything except this case.  Emit the
1504       // specified series of statements and we're good.
1505       for (unsigned i = 0, e = CaseStmts.size(); i != e; ++i)
1506         EmitStmt(CaseStmts[i]);
1507       incrementProfileCounter(&S);
1508
1509       // Now we want to restore the saved switch instance so that nested
1510       // switches continue to function properly
1511       SwitchInsn = SavedSwitchInsn;
1512
1513       return;
1514     }
1515   }
1516
1517   JumpDest SwitchExit = getJumpDestInCurrentScope("sw.epilog");
1518
1519   RunCleanupsScope ConditionScope(*this);
1520
1521   if (S.getInit())
1522     EmitStmt(S.getInit());
1523
1524   if (S.getConditionVariable())
1525     EmitAutoVarDecl(*S.getConditionVariable());
1526   llvm::Value *CondV = EmitScalarExpr(S.getCond());
1527
1528   // Create basic block to hold stuff that comes after switch
1529   // statement. We also need to create a default block now so that
1530   // explicit case ranges tests can have a place to jump to on
1531   // failure.
1532   llvm::BasicBlock *DefaultBlock = createBasicBlock("sw.default");
1533   SwitchInsn = Builder.CreateSwitch(CondV, DefaultBlock);
1534   if (PGO.haveRegionCounts()) {
1535     // Walk the SwitchCase list to find how many there are.
1536     uint64_t DefaultCount = 0;
1537     unsigned NumCases = 0;
1538     for (const SwitchCase *Case = S.getSwitchCaseList();
1539          Case;
1540          Case = Case->getNextSwitchCase()) {
1541       if (isa<DefaultStmt>(Case))
1542         DefaultCount = getProfileCount(Case);
1543       NumCases += 1;
1544     }
1545     SwitchWeights = new SmallVector<uint64_t, 16>();
1546     SwitchWeights->reserve(NumCases);
1547     // The default needs to be first. We store the edge count, so we already
1548     // know the right weight.
1549     SwitchWeights->push_back(DefaultCount);
1550   }
1551   CaseRangeBlock = DefaultBlock;
1552
1553   // Clear the insertion point to indicate we are in unreachable code.
1554   Builder.ClearInsertionPoint();
1555
1556   // All break statements jump to NextBlock. If BreakContinueStack is non-empty
1557   // then reuse last ContinueBlock.
1558   JumpDest OuterContinue;
1559   if (!BreakContinueStack.empty())
1560     OuterContinue = BreakContinueStack.back().ContinueBlock;
1561
1562   BreakContinueStack.push_back(BreakContinue(SwitchExit, OuterContinue));
1563
1564   // Emit switch body.
1565   EmitStmt(S.getBody());
1566
1567   BreakContinueStack.pop_back();
1568
1569   // Update the default block in case explicit case range tests have
1570   // been chained on top.
1571   SwitchInsn->setDefaultDest(CaseRangeBlock);
1572
1573   // If a default was never emitted:
1574   if (!DefaultBlock->getParent()) {
1575     // If we have cleanups, emit the default block so that there's a
1576     // place to jump through the cleanups from.
1577     if (ConditionScope.requiresCleanups()) {
1578       EmitBlock(DefaultBlock);
1579
1580     // Otherwise, just forward the default block to the switch end.
1581     } else {
1582       DefaultBlock->replaceAllUsesWith(SwitchExit.getBlock());
1583       delete DefaultBlock;
1584     }
1585   }
1586
1587   ConditionScope.ForceCleanup();
1588
1589   // Emit continuation.
1590   EmitBlock(SwitchExit.getBlock(), true);
1591   incrementProfileCounter(&S);
1592
1593   // If the switch has a condition wrapped by __builtin_unpredictable,
1594   // create metadata that specifies that the switch is unpredictable.
1595   // Don't bother if not optimizing because that metadata would not be used.
1596   auto *Call = dyn_cast<CallExpr>(S.getCond());
1597   if (Call && CGM.getCodeGenOpts().OptimizationLevel != 0) {
1598     auto *FD = dyn_cast_or_null<FunctionDecl>(Call->getCalleeDecl());
1599     if (FD && FD->getBuiltinID() == Builtin::BI__builtin_unpredictable) {
1600       llvm::MDBuilder MDHelper(getLLVMContext());
1601       SwitchInsn->setMetadata(llvm::LLVMContext::MD_unpredictable,
1602                               MDHelper.createUnpredictable());
1603     }
1604   }
1605
1606   if (SwitchWeights) {
1607     assert(SwitchWeights->size() == 1 + SwitchInsn->getNumCases() &&
1608            "switch weights do not match switch cases");
1609     // If there's only one jump destination there's no sense weighting it.
1610     if (SwitchWeights->size() > 1)
1611       SwitchInsn->setMetadata(llvm::LLVMContext::MD_prof,
1612                               createProfileWeights(*SwitchWeights));
1613     delete SwitchWeights;
1614   }
1615   SwitchInsn = SavedSwitchInsn;
1616   SwitchWeights = SavedSwitchWeights;
1617   CaseRangeBlock = SavedCRBlock;
1618 }
1619
1620 static std::string
1621 SimplifyConstraint(const char *Constraint, const TargetInfo &Target,
1622                  SmallVectorImpl<TargetInfo::ConstraintInfo> *OutCons=nullptr) {
1623   std::string Result;
1624
1625   while (*Constraint) {
1626     switch (*Constraint) {
1627     default:
1628       Result += Target.convertConstraint(Constraint);
1629       break;
1630     // Ignore these
1631     case '*':
1632     case '?':
1633     case '!':
1634     case '=': // Will see this and the following in mult-alt constraints.
1635     case '+':
1636       break;
1637     case '#': // Ignore the rest of the constraint alternative.
1638       while (Constraint[1] && Constraint[1] != ',')
1639         Constraint++;
1640       break;
1641     case '&':
1642     case '%':
1643       Result += *Constraint;
1644       while (Constraint[1] && Constraint[1] == *Constraint)
1645         Constraint++;
1646       break;
1647     case ',':
1648       Result += "|";
1649       break;
1650     case 'g':
1651       Result += "imr";
1652       break;
1653     case '[': {
1654       assert(OutCons &&
1655              "Must pass output names to constraints with a symbolic name");
1656       unsigned Index;
1657       bool result = Target.resolveSymbolicName(Constraint, *OutCons, Index);
1658       assert(result && "Could not resolve symbolic name"); (void)result;
1659       Result += llvm::utostr(Index);
1660       break;
1661     }
1662     }
1663
1664     Constraint++;
1665   }
1666
1667   return Result;
1668 }
1669
1670 /// AddVariableConstraints - Look at AsmExpr and if it is a variable declared
1671 /// as using a particular register add that as a constraint that will be used
1672 /// in this asm stmt.
1673 static std::string
1674 AddVariableConstraints(const std::string &Constraint, const Expr &AsmExpr,
1675                        const TargetInfo &Target, CodeGenModule &CGM,
1676                        const AsmStmt &Stmt, const bool EarlyClobber) {
1677   const DeclRefExpr *AsmDeclRef = dyn_cast<DeclRefExpr>(&AsmExpr);
1678   if (!AsmDeclRef)
1679     return Constraint;
1680   const ValueDecl &Value = *AsmDeclRef->getDecl();
1681   const VarDecl *Variable = dyn_cast<VarDecl>(&Value);
1682   if (!Variable)
1683     return Constraint;
1684   if (Variable->getStorageClass() != SC_Register)
1685     return Constraint;
1686   AsmLabelAttr *Attr = Variable->getAttr<AsmLabelAttr>();
1687   if (!Attr)
1688     return Constraint;
1689   StringRef Register = Attr->getLabel();
1690   assert(Target.isValidGCCRegisterName(Register));
1691   // We're using validateOutputConstraint here because we only care if
1692   // this is a register constraint.
1693   TargetInfo::ConstraintInfo Info(Constraint, "");
1694   if (Target.validateOutputConstraint(Info) &&
1695       !Info.allowsRegister()) {
1696     CGM.ErrorUnsupported(&Stmt, "__asm__");
1697     return Constraint;
1698   }
1699   // Canonicalize the register here before returning it.
1700   Register = Target.getNormalizedGCCRegisterName(Register);
1701   return (EarlyClobber ? "&{" : "{") + Register.str() + "}";
1702 }
1703
1704 llvm::Value*
1705 CodeGenFunction::EmitAsmInputLValue(const TargetInfo::ConstraintInfo &Info,
1706                                     LValue InputValue, QualType InputType,
1707                                     std::string &ConstraintStr,
1708                                     SourceLocation Loc) {
1709   llvm::Value *Arg;
1710   if (Info.allowsRegister() || !Info.allowsMemory()) {
1711     if (CodeGenFunction::hasScalarEvaluationKind(InputType)) {
1712       Arg = EmitLoadOfLValue(InputValue, Loc).getScalarVal();
1713     } else {
1714       llvm::Type *Ty = ConvertType(InputType);
1715       uint64_t Size = CGM.getDataLayout().getTypeSizeInBits(Ty);
1716       if (Size <= 64 && llvm::isPowerOf2_64(Size)) {
1717         Ty = llvm::IntegerType::get(getLLVMContext(), Size);
1718         Ty = llvm::PointerType::getUnqual(Ty);
1719
1720         Arg = Builder.CreateLoad(Builder.CreateBitCast(InputValue.getAddress(),
1721                                                        Ty));
1722       } else {
1723         Arg = InputValue.getPointer();
1724         ConstraintStr += '*';
1725       }
1726     }
1727   } else {
1728     Arg = InputValue.getPointer();
1729     ConstraintStr += '*';
1730   }
1731
1732   return Arg;
1733 }
1734
1735 llvm::Value* CodeGenFunction::EmitAsmInput(
1736                                          const TargetInfo::ConstraintInfo &Info,
1737                                            const Expr *InputExpr,
1738                                            std::string &ConstraintStr) {
1739   // If this can't be a register or memory, i.e., has to be a constant
1740   // (immediate or symbolic), try to emit it as such.
1741   if (!Info.allowsRegister() && !Info.allowsMemory()) {
1742     llvm::APSInt Result;
1743     if (InputExpr->EvaluateAsInt(Result, getContext()))
1744       return llvm::ConstantInt::get(getLLVMContext(), Result);
1745     assert(!Info.requiresImmediateConstant() &&
1746            "Required-immediate inlineasm arg isn't constant?");
1747   }
1748
1749   if (Info.allowsRegister() || !Info.allowsMemory())
1750     if (CodeGenFunction::hasScalarEvaluationKind(InputExpr->getType()))
1751       return EmitScalarExpr(InputExpr);
1752   if (InputExpr->getStmtClass() == Expr::CXXThisExprClass)
1753     return EmitScalarExpr(InputExpr);
1754   InputExpr = InputExpr->IgnoreParenNoopCasts(getContext());
1755   LValue Dest = EmitLValue(InputExpr);
1756   return EmitAsmInputLValue(Info, Dest, InputExpr->getType(), ConstraintStr,
1757                             InputExpr->getExprLoc());
1758 }
1759
1760 /// getAsmSrcLocInfo - Return the !srcloc metadata node to attach to an inline
1761 /// asm call instruction.  The !srcloc MDNode contains a list of constant
1762 /// integers which are the source locations of the start of each line in the
1763 /// asm.
1764 static llvm::MDNode *getAsmSrcLocInfo(const StringLiteral *Str,
1765                                       CodeGenFunction &CGF) {
1766   SmallVector<llvm::Metadata *, 8> Locs;
1767   // Add the location of the first line to the MDNode.
1768   Locs.push_back(llvm::ConstantAsMetadata::get(llvm::ConstantInt::get(
1769       CGF.Int32Ty, Str->getLocStart().getRawEncoding())));
1770   StringRef StrVal = Str->getString();
1771   if (!StrVal.empty()) {
1772     const SourceManager &SM = CGF.CGM.getContext().getSourceManager();
1773     const LangOptions &LangOpts = CGF.CGM.getLangOpts();
1774     unsigned StartToken = 0;
1775     unsigned ByteOffset = 0;
1776
1777     // Add the location of the start of each subsequent line of the asm to the
1778     // MDNode.
1779     for (unsigned i = 0, e = StrVal.size() - 1; i != e; ++i) {
1780       if (StrVal[i] != '\n') continue;
1781       SourceLocation LineLoc = Str->getLocationOfByte(
1782           i + 1, SM, LangOpts, CGF.getTarget(), &StartToken, &ByteOffset);
1783       Locs.push_back(llvm::ConstantAsMetadata::get(
1784           llvm::ConstantInt::get(CGF.Int32Ty, LineLoc.getRawEncoding())));
1785     }
1786   }
1787
1788   return llvm::MDNode::get(CGF.getLLVMContext(), Locs);
1789 }
1790
1791 void CodeGenFunction::EmitAsmStmt(const AsmStmt &S) {
1792   // Assemble the final asm string.
1793   std::string AsmString = S.generateAsmString(getContext());
1794
1795   // Get all the output and input constraints together.
1796   SmallVector<TargetInfo::ConstraintInfo, 4> OutputConstraintInfos;
1797   SmallVector<TargetInfo::ConstraintInfo, 4> InputConstraintInfos;
1798
1799   for (unsigned i = 0, e = S.getNumOutputs(); i != e; i++) {
1800     StringRef Name;
1801     if (const GCCAsmStmt *GAS = dyn_cast<GCCAsmStmt>(&S))
1802       Name = GAS->getOutputName(i);
1803     TargetInfo::ConstraintInfo Info(S.getOutputConstraint(i), Name);
1804     bool IsValid = getTarget().validateOutputConstraint(Info); (void)IsValid;
1805     assert(IsValid && "Failed to parse output constraint");
1806     OutputConstraintInfos.push_back(Info);
1807   }
1808
1809   for (unsigned i = 0, e = S.getNumInputs(); i != e; i++) {
1810     StringRef Name;
1811     if (const GCCAsmStmt *GAS = dyn_cast<GCCAsmStmt>(&S))
1812       Name = GAS->getInputName(i);
1813     TargetInfo::ConstraintInfo Info(S.getInputConstraint(i), Name);
1814     bool IsValid =
1815       getTarget().validateInputConstraint(OutputConstraintInfos, Info);
1816     assert(IsValid && "Failed to parse input constraint"); (void)IsValid;
1817     InputConstraintInfos.push_back(Info);
1818   }
1819
1820   std::string Constraints;
1821
1822   std::vector<LValue> ResultRegDests;
1823   std::vector<QualType> ResultRegQualTys;
1824   std::vector<llvm::Type *> ResultRegTypes;
1825   std::vector<llvm::Type *> ResultTruncRegTypes;
1826   std::vector<llvm::Type *> ArgTypes;
1827   std::vector<llvm::Value*> Args;
1828
1829   // Keep track of inout constraints.
1830   std::string InOutConstraints;
1831   std::vector<llvm::Value*> InOutArgs;
1832   std::vector<llvm::Type*> InOutArgTypes;
1833
1834   // An inline asm can be marked readonly if it meets the following conditions:
1835   //  - it doesn't have any sideeffects
1836   //  - it doesn't clobber memory
1837   //  - it doesn't return a value by-reference
1838   // It can be marked readnone if it doesn't have any input memory constraints
1839   // in addition to meeting the conditions listed above.
1840   bool ReadOnly = true, ReadNone = true;
1841
1842   for (unsigned i = 0, e = S.getNumOutputs(); i != e; i++) {
1843     TargetInfo::ConstraintInfo &Info = OutputConstraintInfos[i];
1844
1845     // Simplify the output constraint.
1846     std::string OutputConstraint(S.getOutputConstraint(i));
1847     OutputConstraint = SimplifyConstraint(OutputConstraint.c_str() + 1,
1848                                           getTarget());
1849
1850     const Expr *OutExpr = S.getOutputExpr(i);
1851     OutExpr = OutExpr->IgnoreParenNoopCasts(getContext());
1852
1853     OutputConstraint = AddVariableConstraints(OutputConstraint, *OutExpr,
1854                                               getTarget(), CGM, S,
1855                                               Info.earlyClobber());
1856
1857     LValue Dest = EmitLValue(OutExpr);
1858     if (!Constraints.empty())
1859       Constraints += ',';
1860
1861     // If this is a register output, then make the inline asm return it
1862     // by-value.  If this is a memory result, return the value by-reference.
1863     if (!Info.allowsMemory() && hasScalarEvaluationKind(OutExpr->getType())) {
1864       Constraints += "=" + OutputConstraint;
1865       ResultRegQualTys.push_back(OutExpr->getType());
1866       ResultRegDests.push_back(Dest);
1867       ResultRegTypes.push_back(ConvertTypeForMem(OutExpr->getType()));
1868       ResultTruncRegTypes.push_back(ResultRegTypes.back());
1869
1870       // If this output is tied to an input, and if the input is larger, then
1871       // we need to set the actual result type of the inline asm node to be the
1872       // same as the input type.
1873       if (Info.hasMatchingInput()) {
1874         unsigned InputNo;
1875         for (InputNo = 0; InputNo != S.getNumInputs(); ++InputNo) {
1876           TargetInfo::ConstraintInfo &Input = InputConstraintInfos[InputNo];
1877           if (Input.hasTiedOperand() && Input.getTiedOperand() == i)
1878             break;
1879         }
1880         assert(InputNo != S.getNumInputs() && "Didn't find matching input!");
1881
1882         QualType InputTy = S.getInputExpr(InputNo)->getType();
1883         QualType OutputType = OutExpr->getType();
1884
1885         uint64_t InputSize = getContext().getTypeSize(InputTy);
1886         if (getContext().getTypeSize(OutputType) < InputSize) {
1887           // Form the asm to return the value as a larger integer or fp type.
1888           ResultRegTypes.back() = ConvertType(InputTy);
1889         }
1890       }
1891       if (llvm::Type* AdjTy =
1892             getTargetHooks().adjustInlineAsmType(*this, OutputConstraint,
1893                                                  ResultRegTypes.back()))
1894         ResultRegTypes.back() = AdjTy;
1895       else {
1896         CGM.getDiags().Report(S.getAsmLoc(),
1897                               diag::err_asm_invalid_type_in_input)
1898             << OutExpr->getType() << OutputConstraint;
1899       }
1900     } else {
1901       ArgTypes.push_back(Dest.getAddress().getType());
1902       Args.push_back(Dest.getPointer());
1903       Constraints += "=*";
1904       Constraints += OutputConstraint;
1905       ReadOnly = ReadNone = false;
1906     }
1907
1908     if (Info.isReadWrite()) {
1909       InOutConstraints += ',';
1910
1911       const Expr *InputExpr = S.getOutputExpr(i);
1912       llvm::Value *Arg = EmitAsmInputLValue(Info, Dest, InputExpr->getType(),
1913                                             InOutConstraints,
1914                                             InputExpr->getExprLoc());
1915
1916       if (llvm::Type* AdjTy =
1917           getTargetHooks().adjustInlineAsmType(*this, OutputConstraint,
1918                                                Arg->getType()))
1919         Arg = Builder.CreateBitCast(Arg, AdjTy);
1920
1921       if (Info.allowsRegister())
1922         InOutConstraints += llvm::utostr(i);
1923       else
1924         InOutConstraints += OutputConstraint;
1925
1926       InOutArgTypes.push_back(Arg->getType());
1927       InOutArgs.push_back(Arg);
1928     }
1929   }
1930
1931   // If this is a Microsoft-style asm blob, store the return registers (EAX:EDX)
1932   // to the return value slot. Only do this when returning in registers.
1933   if (isa<MSAsmStmt>(&S)) {
1934     const ABIArgInfo &RetAI = CurFnInfo->getReturnInfo();
1935     if (RetAI.isDirect() || RetAI.isExtend()) {
1936       // Make a fake lvalue for the return value slot.
1937       LValue ReturnSlot = MakeAddrLValue(ReturnValue, FnRetTy);
1938       CGM.getTargetCodeGenInfo().addReturnRegisterOutputs(
1939           *this, ReturnSlot, Constraints, ResultRegTypes, ResultTruncRegTypes,
1940           ResultRegDests, AsmString, S.getNumOutputs());
1941       SawAsmBlock = true;
1942     }
1943   }
1944
1945   for (unsigned i = 0, e = S.getNumInputs(); i != e; i++) {
1946     const Expr *InputExpr = S.getInputExpr(i);
1947
1948     TargetInfo::ConstraintInfo &Info = InputConstraintInfos[i];
1949
1950     if (Info.allowsMemory())
1951       ReadNone = false;
1952
1953     if (!Constraints.empty())
1954       Constraints += ',';
1955
1956     // Simplify the input constraint.
1957     std::string InputConstraint(S.getInputConstraint(i));
1958     InputConstraint = SimplifyConstraint(InputConstraint.c_str(), getTarget(),
1959                                          &OutputConstraintInfos);
1960
1961     InputConstraint = AddVariableConstraints(
1962         InputConstraint, *InputExpr->IgnoreParenNoopCasts(getContext()),
1963         getTarget(), CGM, S, false /* No EarlyClobber */);
1964
1965     llvm::Value *Arg = EmitAsmInput(Info, InputExpr, Constraints);
1966
1967     // If this input argument is tied to a larger output result, extend the
1968     // input to be the same size as the output.  The LLVM backend wants to see
1969     // the input and output of a matching constraint be the same size.  Note
1970     // that GCC does not define what the top bits are here.  We use zext because
1971     // that is usually cheaper, but LLVM IR should really get an anyext someday.
1972     if (Info.hasTiedOperand()) {
1973       unsigned Output = Info.getTiedOperand();
1974       QualType OutputType = S.getOutputExpr(Output)->getType();
1975       QualType InputTy = InputExpr->getType();
1976
1977       if (getContext().getTypeSize(OutputType) >
1978           getContext().getTypeSize(InputTy)) {
1979         // Use ptrtoint as appropriate so that we can do our extension.
1980         if (isa<llvm::PointerType>(Arg->getType()))
1981           Arg = Builder.CreatePtrToInt(Arg, IntPtrTy);
1982         llvm::Type *OutputTy = ConvertType(OutputType);
1983         if (isa<llvm::IntegerType>(OutputTy))
1984           Arg = Builder.CreateZExt(Arg, OutputTy);
1985         else if (isa<llvm::PointerType>(OutputTy))
1986           Arg = Builder.CreateZExt(Arg, IntPtrTy);
1987         else {
1988           assert(OutputTy->isFloatingPointTy() && "Unexpected output type");
1989           Arg = Builder.CreateFPExt(Arg, OutputTy);
1990         }
1991       }
1992     }
1993     if (llvm::Type* AdjTy =
1994               getTargetHooks().adjustInlineAsmType(*this, InputConstraint,
1995                                                    Arg->getType()))
1996       Arg = Builder.CreateBitCast(Arg, AdjTy);
1997     else
1998       CGM.getDiags().Report(S.getAsmLoc(), diag::err_asm_invalid_type_in_input)
1999           << InputExpr->getType() << InputConstraint;
2000
2001     ArgTypes.push_back(Arg->getType());
2002     Args.push_back(Arg);
2003     Constraints += InputConstraint;
2004   }
2005
2006   // Append the "input" part of inout constraints last.
2007   for (unsigned i = 0, e = InOutArgs.size(); i != e; i++) {
2008     ArgTypes.push_back(InOutArgTypes[i]);
2009     Args.push_back(InOutArgs[i]);
2010   }
2011   Constraints += InOutConstraints;
2012
2013   // Clobbers
2014   for (unsigned i = 0, e = S.getNumClobbers(); i != e; i++) {
2015     StringRef Clobber = S.getClobber(i);
2016
2017     if (Clobber == "memory")
2018       ReadOnly = ReadNone = false;
2019     else if (Clobber != "cc")
2020       Clobber = getTarget().getNormalizedGCCRegisterName(Clobber);
2021
2022     if (!Constraints.empty())
2023       Constraints += ',';
2024
2025     Constraints += "~{";
2026     Constraints += Clobber;
2027     Constraints += '}';
2028   }
2029
2030   // Add machine specific clobbers
2031   std::string MachineClobbers = getTarget().getClobbers();
2032   if (!MachineClobbers.empty()) {
2033     if (!Constraints.empty())
2034       Constraints += ',';
2035     Constraints += MachineClobbers;
2036   }
2037
2038   llvm::Type *ResultType;
2039   if (ResultRegTypes.empty())
2040     ResultType = VoidTy;
2041   else if (ResultRegTypes.size() == 1)
2042     ResultType = ResultRegTypes[0];
2043   else
2044     ResultType = llvm::StructType::get(getLLVMContext(), ResultRegTypes);
2045
2046   llvm::FunctionType *FTy =
2047     llvm::FunctionType::get(ResultType, ArgTypes, false);
2048
2049   bool HasSideEffect = S.isVolatile() || S.getNumOutputs() == 0;
2050   llvm::InlineAsm::AsmDialect AsmDialect = isa<MSAsmStmt>(&S) ?
2051     llvm::InlineAsm::AD_Intel : llvm::InlineAsm::AD_ATT;
2052   llvm::InlineAsm *IA =
2053     llvm::InlineAsm::get(FTy, AsmString, Constraints, HasSideEffect,
2054                          /* IsAlignStack */ false, AsmDialect);
2055   llvm::CallInst *Result = Builder.CreateCall(IA, Args);
2056   Result->addAttribute(llvm::AttributeSet::FunctionIndex,
2057                        llvm::Attribute::NoUnwind);
2058
2059   if (isa<MSAsmStmt>(&S)) {
2060     // If the assembly contains any labels, mark the call noduplicate to prevent
2061     // defining the same ASM label twice (PR23715). This is pretty hacky, but it
2062     // works.
2063     if (AsmString.find("__MSASMLABEL_") != std::string::npos)
2064       Result->addAttribute(llvm::AttributeSet::FunctionIndex,
2065                            llvm::Attribute::NoDuplicate);
2066   }
2067
2068   // Attach readnone and readonly attributes.
2069   if (!HasSideEffect) {
2070     if (ReadNone)
2071       Result->addAttribute(llvm::AttributeSet::FunctionIndex,
2072                            llvm::Attribute::ReadNone);
2073     else if (ReadOnly)
2074       Result->addAttribute(llvm::AttributeSet::FunctionIndex,
2075                            llvm::Attribute::ReadOnly);
2076   }
2077
2078   // Slap the source location of the inline asm into a !srcloc metadata on the
2079   // call.
2080   if (const GCCAsmStmt *gccAsmStmt = dyn_cast<GCCAsmStmt>(&S)) {
2081     Result->setMetadata("srcloc", getAsmSrcLocInfo(gccAsmStmt->getAsmString(),
2082                                                    *this));
2083   } else {
2084     // At least put the line number on MS inline asm blobs.
2085     auto Loc = llvm::ConstantInt::get(Int32Ty, S.getAsmLoc().getRawEncoding());
2086     Result->setMetadata("srcloc",
2087                         llvm::MDNode::get(getLLVMContext(),
2088                                           llvm::ConstantAsMetadata::get(Loc)));
2089   }
2090
2091   if (getLangOpts().CUDA && getLangOpts().CUDAIsDevice) {
2092     // Conservatively, mark all inline asm blocks in CUDA as convergent
2093     // (meaning, they may call an intrinsically convergent op, such as bar.sync,
2094     // and so can't have certain optimizations applied around them).
2095     Result->addAttribute(llvm::AttributeSet::FunctionIndex,
2096                          llvm::Attribute::Convergent);
2097   }
2098
2099   // Extract all of the register value results from the asm.
2100   std::vector<llvm::Value*> RegResults;
2101   if (ResultRegTypes.size() == 1) {
2102     RegResults.push_back(Result);
2103   } else {
2104     for (unsigned i = 0, e = ResultRegTypes.size(); i != e; ++i) {
2105       llvm::Value *Tmp = Builder.CreateExtractValue(Result, i, "asmresult");
2106       RegResults.push_back(Tmp);
2107     }
2108   }
2109
2110   assert(RegResults.size() == ResultRegTypes.size());
2111   assert(RegResults.size() == ResultTruncRegTypes.size());
2112   assert(RegResults.size() == ResultRegDests.size());
2113   for (unsigned i = 0, e = RegResults.size(); i != e; ++i) {
2114     llvm::Value *Tmp = RegResults[i];
2115
2116     // If the result type of the LLVM IR asm doesn't match the result type of
2117     // the expression, do the conversion.
2118     if (ResultRegTypes[i] != ResultTruncRegTypes[i]) {
2119       llvm::Type *TruncTy = ResultTruncRegTypes[i];
2120
2121       // Truncate the integer result to the right size, note that TruncTy can be
2122       // a pointer.
2123       if (TruncTy->isFloatingPointTy())
2124         Tmp = Builder.CreateFPTrunc(Tmp, TruncTy);
2125       else if (TruncTy->isPointerTy() && Tmp->getType()->isIntegerTy()) {
2126         uint64_t ResSize = CGM.getDataLayout().getTypeSizeInBits(TruncTy);
2127         Tmp = Builder.CreateTrunc(Tmp,
2128                    llvm::IntegerType::get(getLLVMContext(), (unsigned)ResSize));
2129         Tmp = Builder.CreateIntToPtr(Tmp, TruncTy);
2130       } else if (Tmp->getType()->isPointerTy() && TruncTy->isIntegerTy()) {
2131         uint64_t TmpSize =CGM.getDataLayout().getTypeSizeInBits(Tmp->getType());
2132         Tmp = Builder.CreatePtrToInt(Tmp,
2133                    llvm::IntegerType::get(getLLVMContext(), (unsigned)TmpSize));
2134         Tmp = Builder.CreateTrunc(Tmp, TruncTy);
2135       } else if (TruncTy->isIntegerTy()) {
2136         Tmp = Builder.CreateTrunc(Tmp, TruncTy);
2137       } else if (TruncTy->isVectorTy()) {
2138         Tmp = Builder.CreateBitCast(Tmp, TruncTy);
2139       }
2140     }
2141
2142     EmitStoreThroughLValue(RValue::get(Tmp), ResultRegDests[i]);
2143   }
2144 }
2145
2146 LValue CodeGenFunction::InitCapturedStruct(const CapturedStmt &S) {
2147   const RecordDecl *RD = S.getCapturedRecordDecl();
2148   QualType RecordTy = getContext().getRecordType(RD);
2149
2150   // Initialize the captured struct.
2151   LValue SlotLV =
2152     MakeAddrLValue(CreateMemTemp(RecordTy, "agg.captured"), RecordTy);
2153
2154   RecordDecl::field_iterator CurField = RD->field_begin();
2155   for (CapturedStmt::const_capture_init_iterator I = S.capture_init_begin(),
2156                                                  E = S.capture_init_end();
2157        I != E; ++I, ++CurField) {
2158     LValue LV = EmitLValueForFieldInitialization(SlotLV, *CurField);
2159     if (CurField->hasCapturedVLAType()) {
2160       auto VAT = CurField->getCapturedVLAType();
2161       EmitStoreThroughLValue(RValue::get(VLASizeMap[VAT->getSizeExpr()]), LV);
2162     } else {
2163       EmitInitializerForField(*CurField, LV, *I, None);
2164     }
2165   }
2166
2167   return SlotLV;
2168 }
2169
2170 /// Generate an outlined function for the body of a CapturedStmt, store any
2171 /// captured variables into the captured struct, and call the outlined function.
2172 llvm::Function *
2173 CodeGenFunction::EmitCapturedStmt(const CapturedStmt &S, CapturedRegionKind K) {
2174   LValue CapStruct = InitCapturedStruct(S);
2175
2176   // Emit the CapturedDecl
2177   CodeGenFunction CGF(CGM, true);
2178   CGCapturedStmtRAII CapInfoRAII(CGF, new CGCapturedStmtInfo(S, K));
2179   llvm::Function *F = CGF.GenerateCapturedStmtFunction(S);
2180   delete CGF.CapturedStmtInfo;
2181
2182   // Emit call to the helper function.
2183   EmitCallOrInvoke(F, CapStruct.getPointer());
2184
2185   return F;
2186 }
2187
2188 Address CodeGenFunction::GenerateCapturedStmtArgument(const CapturedStmt &S) {
2189   LValue CapStruct = InitCapturedStruct(S);
2190   return CapStruct.getAddress();
2191 }
2192
2193 /// Creates the outlined function for a CapturedStmt.
2194 llvm::Function *
2195 CodeGenFunction::GenerateCapturedStmtFunction(const CapturedStmt &S) {
2196   assert(CapturedStmtInfo &&
2197     "CapturedStmtInfo should be set when generating the captured function");
2198   const CapturedDecl *CD = S.getCapturedDecl();
2199   const RecordDecl *RD = S.getCapturedRecordDecl();
2200   SourceLocation Loc = S.getLocStart();
2201   assert(CD->hasBody() && "missing CapturedDecl body");
2202
2203   // Build the argument list.
2204   ASTContext &Ctx = CGM.getContext();
2205   FunctionArgList Args;
2206   Args.append(CD->param_begin(), CD->param_end());
2207
2208   // Create the function declaration.
2209   FunctionType::ExtInfo ExtInfo;
2210   const CGFunctionInfo &FuncInfo =
2211     CGM.getTypes().arrangeBuiltinFunctionDeclaration(Ctx.VoidTy, Args);
2212   llvm::FunctionType *FuncLLVMTy = CGM.getTypes().GetFunctionType(FuncInfo);
2213
2214   llvm::Function *F =
2215     llvm::Function::Create(FuncLLVMTy, llvm::GlobalValue::InternalLinkage,
2216                            CapturedStmtInfo->getHelperName(), &CGM.getModule());
2217   CGM.SetInternalFunctionAttributes(CD, F, FuncInfo);
2218   if (CD->isNothrow())
2219     F->addFnAttr(llvm::Attribute::NoUnwind);
2220
2221   // Generate the function.
2222   StartFunction(CD, Ctx.VoidTy, F, FuncInfo, Args,
2223                 CD->getLocation(),
2224                 CD->getBody()->getLocStart());
2225   // Set the context parameter in CapturedStmtInfo.
2226   Address DeclPtr = GetAddrOfLocalVar(CD->getContextParam());
2227   CapturedStmtInfo->setContextValue(Builder.CreateLoad(DeclPtr));
2228
2229   // Initialize variable-length arrays.
2230   LValue Base = MakeNaturalAlignAddrLValue(CapturedStmtInfo->getContextValue(),
2231                                            Ctx.getTagDeclType(RD));
2232   for (auto *FD : RD->fields()) {
2233     if (FD->hasCapturedVLAType()) {
2234       auto *ExprArg = EmitLoadOfLValue(EmitLValueForField(Base, FD),
2235                                        S.getLocStart()).getScalarVal();
2236       auto VAT = FD->getCapturedVLAType();
2237       VLASizeMap[VAT->getSizeExpr()] = ExprArg;
2238     }
2239   }
2240
2241   // If 'this' is captured, load it into CXXThisValue.
2242   if (CapturedStmtInfo->isCXXThisExprCaptured()) {
2243     FieldDecl *FD = CapturedStmtInfo->getThisFieldDecl();
2244     LValue ThisLValue = EmitLValueForField(Base, FD);
2245     CXXThisValue = EmitLoadOfLValue(ThisLValue, Loc).getScalarVal();
2246   }
2247
2248   PGO.assignRegionCounters(GlobalDecl(CD), F);
2249   CapturedStmtInfo->EmitBody(*this, CD->getBody());
2250   FinishFunction(CD->getBodyRBrace());
2251
2252   return F;
2253 }