Re-commit "[SEH] Remove the old __C_specific_handler code now that WinEHPrepare works"
[oota-llvm.git] / lib / CodeGen / WinEHPrepare.cpp
1 //===-- WinEHPrepare - Prepare exception handling for code generation ---===//
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 pass lowers LLVM IR exception handling into something closer to what the
11 // backend wants. It snifs the personality function to see which kind of
12 // preparation is necessary. If the personality function uses the Itanium LSDA,
13 // this pass delegates to the DWARF EH preparation pass.
14 //
15 //===----------------------------------------------------------------------===//
16
17 #include "llvm/CodeGen/Passes.h"
18 #include "llvm/ADT/MapVector.h"
19 #include "llvm/ADT/STLExtras.h"
20 #include "llvm/ADT/SmallSet.h"
21 #include "llvm/ADT/SetVector.h"
22 #include "llvm/ADT/TinyPtrVector.h"
23 #include "llvm/Analysis/LibCallSemantics.h"
24 #include "llvm/CodeGen/WinEHFuncInfo.h"
25 #include "llvm/IR/Dominators.h"
26 #include "llvm/IR/Function.h"
27 #include "llvm/IR/IRBuilder.h"
28 #include "llvm/IR/Instructions.h"
29 #include "llvm/IR/IntrinsicInst.h"
30 #include "llvm/IR/Module.h"
31 #include "llvm/IR/PatternMatch.h"
32 #include "llvm/Pass.h"
33 #include "llvm/Support/CommandLine.h"
34 #include "llvm/Support/Debug.h"
35 #include "llvm/Support/raw_ostream.h"
36 #include "llvm/Transforms/Utils/BasicBlockUtils.h"
37 #include "llvm/Transforms/Utils/Cloning.h"
38 #include "llvm/Transforms/Utils/Local.h"
39 #include "llvm/Transforms/Utils/PromoteMemToReg.h"
40 #include <memory>
41
42 using namespace llvm;
43 using namespace llvm::PatternMatch;
44
45 #define DEBUG_TYPE "winehprepare"
46
47 namespace {
48
49 // This map is used to model frame variable usage during outlining, to
50 // construct a structure type to hold the frame variables in a frame
51 // allocation block, and to remap the frame variable allocas (including
52 // spill locations as needed) to GEPs that get the variable from the
53 // frame allocation structure.
54 typedef MapVector<Value *, TinyPtrVector<AllocaInst *>> FrameVarInfoMap;
55
56 // TinyPtrVector cannot hold nullptr, so we need our own sentinel that isn't
57 // quite null.
58 AllocaInst *getCatchObjectSentinel() {
59   return static_cast<AllocaInst *>(nullptr) + 1;
60 }
61
62 typedef SmallSet<BasicBlock *, 4> VisitedBlockSet;
63
64 class LandingPadActions;
65 class LandingPadMap;
66
67 typedef DenseMap<const BasicBlock *, CatchHandler *> CatchHandlerMapTy;
68 typedef DenseMap<const BasicBlock *, CleanupHandler *> CleanupHandlerMapTy;
69
70 class WinEHPrepare : public FunctionPass {
71 public:
72   static char ID; // Pass identification, replacement for typeid.
73   WinEHPrepare(const TargetMachine *TM = nullptr)
74       : FunctionPass(ID), DT(nullptr) {}
75
76   bool runOnFunction(Function &Fn) override;
77
78   bool doFinalization(Module &M) override;
79
80   void getAnalysisUsage(AnalysisUsage &AU) const override;
81
82   const char *getPassName() const override {
83     return "Windows exception handling preparation";
84   }
85
86 private:
87   bool prepareExceptionHandlers(Function &F,
88                                 SmallVectorImpl<LandingPadInst *> &LPads);
89   void promoteLandingPadValues(LandingPadInst *LPad);
90   void demoteValuesLiveAcrossHandlers(Function &F,
91                                       SmallVectorImpl<LandingPadInst *> &LPads);
92   void completeNestedLandingPad(Function *ParentFn,
93                                 LandingPadInst *OutlinedLPad,
94                                 const LandingPadInst *OriginalLPad,
95                                 FrameVarInfoMap &VarInfo);
96   bool outlineHandler(ActionHandler *Action, Function *SrcFn,
97                       LandingPadInst *LPad, BasicBlock *StartBB,
98                       FrameVarInfoMap &VarInfo);
99   void addStubInvokeToHandlerIfNeeded(Function *Handler, Value *PersonalityFn);
100
101   void mapLandingPadBlocks(LandingPadInst *LPad, LandingPadActions &Actions);
102   CatchHandler *findCatchHandler(BasicBlock *BB, BasicBlock *&NextBB,
103                                  VisitedBlockSet &VisitedBlocks);
104   void findCleanupHandlers(LandingPadActions &Actions, BasicBlock *StartBB,
105                            BasicBlock *EndBB);
106
107   void processSEHCatchHandler(CatchHandler *Handler, BasicBlock *StartBB);
108
109   // All fields are reset by runOnFunction.
110   DominatorTree *DT;
111   EHPersonality Personality;
112   CatchHandlerMapTy CatchHandlerMap;
113   CleanupHandlerMapTy CleanupHandlerMap;
114   DenseMap<const LandingPadInst *, LandingPadMap> LPadMaps;
115
116   // This maps landing pad instructions found in outlined handlers to
117   // the landing pad instruction in the parent function from which they
118   // were cloned.  The cloned/nested landing pad is used as the key
119   // because the landing pad may be cloned into multiple handlers.
120   // This map will be used to add the llvm.eh.actions call to the nested
121   // landing pads after all handlers have been outlined.
122   DenseMap<LandingPadInst *, const LandingPadInst *> NestedLPtoOriginalLP;
123
124   // This maps blocks in the parent function which are destinations of
125   // catch handlers to cloned blocks in (other) outlined handlers. This
126   // handles the case where a nested landing pads has a catch handler that
127   // returns to a handler function rather than the parent function.
128   // The original block is used as the key here because there should only
129   // ever be one handler function from which the cloned block is not pruned.
130   // The original block will be pruned from the parent function after all
131   // handlers have been outlined.  This map will be used to adjust the
132   // return instructions of handlers which return to the block that was
133   // outlined into a handler.  This is done after all handlers have been
134   // outlined but before the outlined code is pruned from the parent function.
135   DenseMap<const BasicBlock *, BasicBlock *> LPadTargetBlocks;
136 };
137
138 class WinEHFrameVariableMaterializer : public ValueMaterializer {
139 public:
140   WinEHFrameVariableMaterializer(Function *OutlinedFn,
141                                  FrameVarInfoMap &FrameVarInfo);
142   ~WinEHFrameVariableMaterializer() override {}
143
144   Value *materializeValueFor(Value *V) override;
145
146   void escapeCatchObject(Value *V);
147
148 private:
149   FrameVarInfoMap &FrameVarInfo;
150   IRBuilder<> Builder;
151 };
152
153 class LandingPadMap {
154 public:
155   LandingPadMap() : OriginLPad(nullptr) {}
156   void mapLandingPad(const LandingPadInst *LPad);
157
158   bool isInitialized() { return OriginLPad != nullptr; }
159
160   bool isOriginLandingPadBlock(const BasicBlock *BB) const;
161   bool isLandingPadSpecificInst(const Instruction *Inst) const;
162
163   void remapEHValues(ValueToValueMapTy &VMap, Value *EHPtrValue,
164                      Value *SelectorValue) const;
165
166 private:
167   const LandingPadInst *OriginLPad;
168   // We will normally only see one of each of these instructions, but
169   // if more than one occurs for some reason we can handle that.
170   TinyPtrVector<const ExtractValueInst *> ExtractedEHPtrs;
171   TinyPtrVector<const ExtractValueInst *> ExtractedSelectors;
172 };
173
174 class WinEHCloningDirectorBase : public CloningDirector {
175 public:
176   WinEHCloningDirectorBase(Function *HandlerFn, FrameVarInfoMap &VarInfo,
177                            LandingPadMap &LPadMap)
178       : Materializer(HandlerFn, VarInfo),
179         SelectorIDType(Type::getInt32Ty(HandlerFn->getContext())),
180         Int8PtrType(Type::getInt8PtrTy(HandlerFn->getContext())),
181         LPadMap(LPadMap) {
182     auto AI = HandlerFn->getArgumentList().begin();
183     ++AI;
184     EstablisherFrame = AI;
185   }
186
187   CloningAction handleInstruction(ValueToValueMapTy &VMap,
188                                   const Instruction *Inst,
189                                   BasicBlock *NewBB) override;
190
191   virtual CloningAction handleBeginCatch(ValueToValueMapTy &VMap,
192                                          const Instruction *Inst,
193                                          BasicBlock *NewBB) = 0;
194   virtual CloningAction handleEndCatch(ValueToValueMapTy &VMap,
195                                        const Instruction *Inst,
196                                        BasicBlock *NewBB) = 0;
197   virtual CloningAction handleTypeIdFor(ValueToValueMapTy &VMap,
198                                         const Instruction *Inst,
199                                         BasicBlock *NewBB) = 0;
200   virtual CloningAction handleInvoke(ValueToValueMapTy &VMap,
201                                      const InvokeInst *Invoke,
202                                      BasicBlock *NewBB) = 0;
203   virtual CloningAction handleResume(ValueToValueMapTy &VMap,
204                                      const ResumeInst *Resume,
205                                      BasicBlock *NewBB) = 0;
206   virtual CloningAction handleCompare(ValueToValueMapTy &VMap,
207                                       const CmpInst *Compare,
208                                       BasicBlock *NewBB) = 0;
209   virtual CloningAction handleLandingPad(ValueToValueMapTy &VMap,
210                                          const LandingPadInst *LPad,
211                                          BasicBlock *NewBB) = 0;
212
213   ValueMaterializer *getValueMaterializer() override { return &Materializer; }
214
215 protected:
216   WinEHFrameVariableMaterializer Materializer;
217   Type *SelectorIDType;
218   Type *Int8PtrType;
219   LandingPadMap &LPadMap;
220
221   /// The value representing the parent frame pointer.
222   Value *EstablisherFrame;
223 };
224
225 class WinEHCatchDirector : public WinEHCloningDirectorBase {
226 public:
227   WinEHCatchDirector(
228       Function *CatchFn, Value *Selector, FrameVarInfoMap &VarInfo,
229       LandingPadMap &LPadMap,
230       DenseMap<LandingPadInst *, const LandingPadInst *> &NestedLPads)
231       : WinEHCloningDirectorBase(CatchFn, VarInfo, LPadMap),
232         CurrentSelector(Selector->stripPointerCasts()),
233         ExceptionObjectVar(nullptr), NestedLPtoOriginalLP(NestedLPads) {}
234
235   CloningAction handleBeginCatch(ValueToValueMapTy &VMap,
236                                  const Instruction *Inst,
237                                  BasicBlock *NewBB) override;
238   CloningAction handleEndCatch(ValueToValueMapTy &VMap, const Instruction *Inst,
239                                BasicBlock *NewBB) override;
240   CloningAction handleTypeIdFor(ValueToValueMapTy &VMap,
241                                 const Instruction *Inst,
242                                 BasicBlock *NewBB) override;
243   CloningAction handleInvoke(ValueToValueMapTy &VMap, const InvokeInst *Invoke,
244                              BasicBlock *NewBB) override;
245   CloningAction handleResume(ValueToValueMapTy &VMap, const ResumeInst *Resume,
246                              BasicBlock *NewBB) override;
247   CloningAction handleCompare(ValueToValueMapTy &VMap,
248                               const CmpInst *Compare, BasicBlock *NewBB) override;
249   CloningAction handleLandingPad(ValueToValueMapTy &VMap,
250                                  const LandingPadInst *LPad,
251                                  BasicBlock *NewBB) override;
252
253   Value *getExceptionVar() { return ExceptionObjectVar; }
254   TinyPtrVector<BasicBlock *> &getReturnTargets() { return ReturnTargets; }
255
256 private:
257   Value *CurrentSelector;
258
259   Value *ExceptionObjectVar;
260   TinyPtrVector<BasicBlock *> ReturnTargets;
261
262   // This will be a reference to the field of the same name in the WinEHPrepare
263   // object which instantiates this WinEHCatchDirector object.
264   DenseMap<LandingPadInst *, const LandingPadInst *> &NestedLPtoOriginalLP;
265 };
266
267 class WinEHCleanupDirector : public WinEHCloningDirectorBase {
268 public:
269   WinEHCleanupDirector(Function *CleanupFn, FrameVarInfoMap &VarInfo,
270                        LandingPadMap &LPadMap)
271       : WinEHCloningDirectorBase(CleanupFn, VarInfo, LPadMap) {}
272
273   CloningAction handleBeginCatch(ValueToValueMapTy &VMap,
274                                  const Instruction *Inst,
275                                  BasicBlock *NewBB) override;
276   CloningAction handleEndCatch(ValueToValueMapTy &VMap, const Instruction *Inst,
277                                BasicBlock *NewBB) override;
278   CloningAction handleTypeIdFor(ValueToValueMapTy &VMap,
279                                 const Instruction *Inst,
280                                 BasicBlock *NewBB) override;
281   CloningAction handleInvoke(ValueToValueMapTy &VMap, const InvokeInst *Invoke,
282                              BasicBlock *NewBB) override;
283   CloningAction handleResume(ValueToValueMapTy &VMap, const ResumeInst *Resume,
284                              BasicBlock *NewBB) override;
285   CloningAction handleCompare(ValueToValueMapTy &VMap,
286                               const CmpInst *Compare, BasicBlock *NewBB) override;
287   CloningAction handleLandingPad(ValueToValueMapTy &VMap,
288                                  const LandingPadInst *LPad,
289                                  BasicBlock *NewBB) override;
290 };
291
292 class LandingPadActions {
293 public:
294   LandingPadActions() : HasCleanupHandlers(false) {}
295
296   void insertCatchHandler(CatchHandler *Action) { Actions.push_back(Action); }
297   void insertCleanupHandler(CleanupHandler *Action) {
298     Actions.push_back(Action);
299     HasCleanupHandlers = true;
300   }
301
302   bool includesCleanup() const { return HasCleanupHandlers; }
303
304   SmallVectorImpl<ActionHandler *> &actions() { return Actions; }
305   SmallVectorImpl<ActionHandler *>::iterator begin() { return Actions.begin(); }
306   SmallVectorImpl<ActionHandler *>::iterator end() { return Actions.end(); }
307
308 private:
309   // Note that this class does not own the ActionHandler objects in this vector.
310   // The ActionHandlers are owned by the CatchHandlerMap and CleanupHandlerMap
311   // in the WinEHPrepare class.
312   SmallVector<ActionHandler *, 4> Actions;
313   bool HasCleanupHandlers;
314 };
315
316 } // end anonymous namespace
317
318 char WinEHPrepare::ID = 0;
319 INITIALIZE_TM_PASS(WinEHPrepare, "winehprepare", "Prepare Windows exceptions",
320                    false, false)
321
322 FunctionPass *llvm::createWinEHPass(const TargetMachine *TM) {
323   return new WinEHPrepare(TM);
324 }
325
326 bool WinEHPrepare::runOnFunction(Function &Fn) {
327   // No need to prepare outlined handlers.
328   if (Fn.hasFnAttribute("wineh-parent"))
329     return false;
330
331   SmallVector<LandingPadInst *, 4> LPads;
332   SmallVector<ResumeInst *, 4> Resumes;
333   for (BasicBlock &BB : Fn) {
334     if (auto *LP = BB.getLandingPadInst())
335       LPads.push_back(LP);
336     if (auto *Resume = dyn_cast<ResumeInst>(BB.getTerminator()))
337       Resumes.push_back(Resume);
338   }
339
340   // No need to prepare functions that lack landing pads.
341   if (LPads.empty())
342     return false;
343
344   // Classify the personality to see what kind of preparation we need.
345   Personality = classifyEHPersonality(LPads.back()->getPersonalityFn());
346
347   // Do nothing if this is not an MSVC personality.
348   if (!isMSVCEHPersonality(Personality))
349     return false;
350
351   DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree();
352
353   // If there were any landing pads, prepareExceptionHandlers will make changes.
354   prepareExceptionHandlers(Fn, LPads);
355   return true;
356 }
357
358 bool WinEHPrepare::doFinalization(Module &M) { return false; }
359
360 void WinEHPrepare::getAnalysisUsage(AnalysisUsage &AU) const {
361   AU.addRequired<DominatorTreeWrapperPass>();
362 }
363
364 static bool isSelectorDispatch(BasicBlock *BB, BasicBlock *&CatchHandler,
365                                Constant *&Selector, BasicBlock *&NextBB);
366
367 // Finds blocks reachable from the starting set Worklist. Does not follow unwind
368 // edges or blocks listed in StopPoints.
369 static void findReachableBlocks(SmallPtrSetImpl<BasicBlock *> &ReachableBBs,
370                                 SetVector<BasicBlock *> &Worklist,
371                                 const SetVector<BasicBlock *> *StopPoints) {
372   while (!Worklist.empty()) {
373     BasicBlock *BB = Worklist.pop_back_val();
374
375     // Don't cross blocks that we should stop at.
376     if (StopPoints && StopPoints->count(BB))
377       continue;
378
379     if (!ReachableBBs.insert(BB).second)
380       continue; // Already visited.
381
382     // Don't follow unwind edges of invokes.
383     if (auto *II = dyn_cast<InvokeInst>(BB->getTerminator())) {
384       Worklist.insert(II->getNormalDest());
385       continue;
386     }
387
388     // Otherwise, follow all successors.
389     Worklist.insert(succ_begin(BB), succ_end(BB));
390   }
391 }
392
393 /// Find all points where exceptional control rejoins normal control flow via
394 /// llvm.eh.endcatch. Add them to the normal bb reachability worklist.
395 static void findCXXEHReturnPoints(Function &F,
396                                   SetVector<BasicBlock *> &EHReturnBlocks) {
397   for (auto BBI = F.begin(), BBE = F.end(); BBI != BBE; ++BBI) {
398     BasicBlock *BB = BBI;
399     for (Instruction &I : *BB) {
400       if (match(&I, m_Intrinsic<Intrinsic::eh_endcatch>())) {
401         // Split the block after the call to llvm.eh.endcatch if there is
402         // anything other than an unconditional branch, or if the successor
403         // starts with a phi.
404         auto *Br = dyn_cast<BranchInst>(I.getNextNode());
405         if (!Br || !Br->isUnconditional() ||
406             isa<PHINode>(Br->getSuccessor(0)->begin())) {
407           DEBUG(dbgs() << "splitting block " << BB->getName()
408                        << " with llvm.eh.endcatch\n");
409           BBI = BB->splitBasicBlock(I.getNextNode(), "ehreturn");
410         }
411         // The next BB is normal control flow.
412         EHReturnBlocks.insert(BB->getTerminator()->getSuccessor(0));
413         break;
414       }
415     }
416   }
417 }
418
419 static bool isCatchAllLandingPad(const BasicBlock *BB) {
420   const LandingPadInst *LP = BB->getLandingPadInst();
421   if (!LP)
422     return false;
423   unsigned N = LP->getNumClauses();
424   return (N > 0 && LP->isCatch(N - 1) &&
425           isa<ConstantPointerNull>(LP->getClause(N - 1)));
426 }
427
428 /// Find all points where exceptions control rejoins normal control flow via
429 /// selector dispatch.
430 static void findSEHEHReturnPoints(Function &F,
431                                   SetVector<BasicBlock *> &EHReturnBlocks) {
432   for (auto BBI = F.begin(), BBE = F.end(); BBI != BBE; ++BBI) {
433     BasicBlock *BB = BBI;
434     // If the landingpad is a catch-all, treat the whole lpad as if it is
435     // reachable from normal control flow.
436     // FIXME: This is imprecise. We need a better way of identifying where a
437     // catch-all starts and cleanups stop. As far as LLVM is concerned, there
438     // is no difference.
439     if (isCatchAllLandingPad(BB)) {
440       EHReturnBlocks.insert(BB);
441       continue;
442     }
443
444     BasicBlock *CatchHandler;
445     BasicBlock *NextBB;
446     Constant *Selector;
447     if (isSelectorDispatch(BB, CatchHandler, Selector, NextBB)) {
448       // Split the edge if there is a phi node. Returning from EH to a phi node
449       // is just as impossible as having a phi after an indirectbr.
450       if (isa<PHINode>(CatchHandler->begin())) {
451         DEBUG(dbgs() << "splitting EH return edge from " << BB->getName()
452                      << " to " << CatchHandler->getName() << '\n');
453         BBI = CatchHandler = SplitCriticalEdge(
454             BB, std::find(succ_begin(BB), succ_end(BB), CatchHandler));
455       }
456       EHReturnBlocks.insert(CatchHandler);
457     }
458   }
459 }
460
461 /// Ensure that all values live into and out of exception handlers are stored
462 /// in memory.
463 /// FIXME: This falls down when values are defined in one handler and live into
464 /// another handler. For example, a cleanup defines a value used only by a
465 /// catch handler.
466 void WinEHPrepare::demoteValuesLiveAcrossHandlers(
467     Function &F, SmallVectorImpl<LandingPadInst *> &LPads) {
468   DEBUG(dbgs() << "Demoting values live across exception handlers in function "
469                << F.getName() << '\n');
470
471   // Build a set of all non-exceptional blocks and exceptional blocks.
472   // - Non-exceptional blocks are blocks reachable from the entry block while
473   //   not following invoke unwind edges.
474   // - Exceptional blocks are blocks reachable from landingpads. Analysis does
475   //   not follow llvm.eh.endcatch blocks, which mark a transition from
476   //   exceptional to normal control.
477   SmallPtrSet<BasicBlock *, 4> NormalBlocks;
478   SmallPtrSet<BasicBlock *, 4> EHBlocks;
479   SetVector<BasicBlock *> EHReturnBlocks;
480   SetVector<BasicBlock *> Worklist;
481
482   if (Personality == EHPersonality::MSVC_CXX)
483     findCXXEHReturnPoints(F, EHReturnBlocks);
484   else
485     findSEHEHReturnPoints(F, EHReturnBlocks);
486
487   DEBUG({
488     dbgs() << "identified the following blocks as EH return points:\n";
489     for (BasicBlock *BB : EHReturnBlocks)
490       dbgs() << "  " << BB->getName() << '\n';
491   });
492
493   // Join points should not have phis at this point, unless they are a
494   // landingpad, in which case we will demote their phis later.
495 #ifndef NDEBUG
496   for (BasicBlock *BB : EHReturnBlocks)
497     assert((BB->isLandingPad() || !isa<PHINode>(BB->begin())) &&
498            "non-lpad EH return block has phi");
499 #endif
500
501   // Normal blocks are the blocks reachable from the entry block and all EH
502   // return points.
503   Worklist = EHReturnBlocks;
504   Worklist.insert(&F.getEntryBlock());
505   findReachableBlocks(NormalBlocks, Worklist, nullptr);
506   DEBUG({
507     dbgs() << "marked the following blocks as normal:\n";
508     for (BasicBlock *BB : NormalBlocks)
509       dbgs() << "  " << BB->getName() << '\n';
510   });
511
512   // Exceptional blocks are the blocks reachable from landingpads that don't
513   // cross EH return points.
514   Worklist.clear();
515   for (auto *LPI : LPads)
516     Worklist.insert(LPI->getParent());
517   findReachableBlocks(EHBlocks, Worklist, &EHReturnBlocks);
518   DEBUG({
519     dbgs() << "marked the following blocks as exceptional:\n";
520     for (BasicBlock *BB : EHBlocks)
521       dbgs() << "  " << BB->getName() << '\n';
522   });
523
524   SetVector<Argument *> ArgsToDemote;
525   SetVector<Instruction *> InstrsToDemote;
526   for (BasicBlock &BB : F) {
527     bool IsNormalBB = NormalBlocks.count(&BB);
528     bool IsEHBB = EHBlocks.count(&BB);
529     if (!IsNormalBB && !IsEHBB)
530       continue; // Blocks that are neither normal nor EH are unreachable.
531     for (Instruction &I : BB) {
532       for (Value *Op : I.operands()) {
533         // Don't demote static allocas, constants, and labels.
534         if (isa<Constant>(Op) || isa<BasicBlock>(Op) || isa<InlineAsm>(Op))
535           continue;
536         auto *AI = dyn_cast<AllocaInst>(Op);
537         if (AI && AI->isStaticAlloca())
538           continue;
539
540         if (auto *Arg = dyn_cast<Argument>(Op)) {
541           if (IsEHBB) {
542             DEBUG(dbgs() << "Demoting argument " << *Arg
543                          << " used by EH instr: " << I << "\n");
544             ArgsToDemote.insert(Arg);
545           }
546           continue;
547         }
548
549         auto *OpI = cast<Instruction>(Op);
550         BasicBlock *OpBB = OpI->getParent();
551         // If a value is produced and consumed in the same BB, we don't need to
552         // demote it.
553         if (OpBB == &BB)
554           continue;
555         bool IsOpNormalBB = NormalBlocks.count(OpBB);
556         bool IsOpEHBB = EHBlocks.count(OpBB);
557         if (IsNormalBB != IsOpNormalBB || IsEHBB != IsOpEHBB) {
558           DEBUG({
559             dbgs() << "Demoting instruction live in-out from EH:\n";
560             dbgs() << "Instr: " << *OpI << '\n';
561             dbgs() << "User: " << I << '\n';
562           });
563           InstrsToDemote.insert(OpI);
564         }
565       }
566     }
567   }
568
569   // Demote values live into and out of handlers.
570   // FIXME: This demotion is inefficient. We should insert spills at the point
571   // of definition, insert one reload in each handler that uses the value, and
572   // insert reloads in the BB used to rejoin normal control flow.
573   Instruction *AllocaInsertPt = F.getEntryBlock().getFirstInsertionPt();
574   for (Instruction *I : InstrsToDemote)
575     DemoteRegToStack(*I, false, AllocaInsertPt);
576
577   // Demote arguments separately, and only for uses in EH blocks.
578   for (Argument *Arg : ArgsToDemote) {
579     auto *Slot = new AllocaInst(Arg->getType(), nullptr,
580                                 Arg->getName() + ".reg2mem", AllocaInsertPt);
581     SmallVector<User *, 4> Users(Arg->user_begin(), Arg->user_end());
582     for (User *U : Users) {
583       auto *I = dyn_cast<Instruction>(U);
584       if (I && EHBlocks.count(I->getParent())) {
585         auto *Reload = new LoadInst(Slot, Arg->getName() + ".reload", false, I);
586         U->replaceUsesOfWith(Arg, Reload);
587       }
588     }
589     new StoreInst(Arg, Slot, AllocaInsertPt);
590   }
591
592   // Demote landingpad phis, as the landingpad will be removed from the machine
593   // CFG.
594   for (LandingPadInst *LPI : LPads) {
595     BasicBlock *BB = LPI->getParent();
596     while (auto *Phi = dyn_cast<PHINode>(BB->begin()))
597       DemotePHIToStack(Phi, AllocaInsertPt);
598   }
599
600   DEBUG(dbgs() << "Demoted " << InstrsToDemote.size() << " instructions and "
601                << ArgsToDemote.size() << " arguments for WinEHPrepare\n\n");
602 }
603
604 bool WinEHPrepare::prepareExceptionHandlers(
605     Function &F, SmallVectorImpl<LandingPadInst *> &LPads) {
606   // Don't run on functions that are already prepared.
607   for (LandingPadInst *LPad : LPads) {
608     BasicBlock *LPadBB = LPad->getParent();
609     for (Instruction &Inst : *LPadBB)
610       if (match(&Inst, m_Intrinsic<Intrinsic::eh_actions>()))
611         return false;
612   }
613
614   demoteValuesLiveAcrossHandlers(F, LPads);
615
616   // These containers are used to re-map frame variables that are used in
617   // outlined catch and cleanup handlers.  They will be populated as the
618   // handlers are outlined.
619   FrameVarInfoMap FrameVarInfo;
620
621   bool HandlersOutlined = false;
622
623   Module *M = F.getParent();
624   LLVMContext &Context = M->getContext();
625
626   // Create a new function to receive the handler contents.
627   PointerType *Int8PtrType = Type::getInt8PtrTy(Context);
628   Type *Int32Type = Type::getInt32Ty(Context);
629   Function *ActionIntrin = Intrinsic::getDeclaration(M, Intrinsic::eh_actions);
630
631   for (LandingPadInst *LPad : LPads) {
632     // Look for evidence that this landingpad has already been processed.
633     bool LPadHasActionList = false;
634     BasicBlock *LPadBB = LPad->getParent();
635     for (Instruction &Inst : *LPadBB) {
636       if (match(&Inst, m_Intrinsic<Intrinsic::eh_actions>())) {
637         LPadHasActionList = true;
638         break;
639       }
640     }
641
642     // If we've already outlined the handlers for this landingpad,
643     // there's nothing more to do here.
644     if (LPadHasActionList)
645       continue;
646
647     // If either of the values in the aggregate returned by the landing pad is
648     // extracted and stored to memory, promote the stored value to a register.
649     promoteLandingPadValues(LPad);
650
651     LandingPadActions Actions;
652     mapLandingPadBlocks(LPad, Actions);
653
654     HandlersOutlined |= !Actions.actions().empty();
655     for (ActionHandler *Action : Actions) {
656       if (Action->hasBeenProcessed())
657         continue;
658       BasicBlock *StartBB = Action->getStartBlock();
659
660       // SEH doesn't do any outlining for catches. Instead, pass the handler
661       // basic block addr to llvm.eh.actions and list the block as a return
662       // target.
663       if (isAsynchronousEHPersonality(Personality)) {
664         if (auto *CatchAction = dyn_cast<CatchHandler>(Action)) {
665           processSEHCatchHandler(CatchAction, StartBB);
666           continue;
667         }
668       }
669
670       outlineHandler(Action, &F, LPad, StartBB, FrameVarInfo);
671     }
672
673     // Replace the landing pad with a new llvm.eh.action based landing pad.
674     BasicBlock *NewLPadBB = BasicBlock::Create(Context, "lpad", &F, LPadBB);
675     assert(!isa<PHINode>(LPadBB->begin()));
676     auto *NewLPad = cast<LandingPadInst>(LPad->clone());
677     NewLPadBB->getInstList().push_back(NewLPad);
678     while (!pred_empty(LPadBB)) {
679       auto *pred = *pred_begin(LPadBB);
680       InvokeInst *Invoke = cast<InvokeInst>(pred->getTerminator());
681       Invoke->setUnwindDest(NewLPadBB);
682     }
683
684     // Replace the mapping of any nested landing pad that previously mapped
685     // to this landing pad with a referenced to the cloned version.
686     for (auto &LPadPair : NestedLPtoOriginalLP) {
687       const LandingPadInst *OriginalLPad = LPadPair.second;
688       if (OriginalLPad == LPad) {
689         LPadPair.second = NewLPad;
690       }
691     }
692
693     // Replace all extracted values with undef and ultimately replace the
694     // landingpad with undef.
695     // FIXME: This doesn't handle SEH GetExceptionCode(). For now, we just give
696     // out undef until we figure out the codegen support.
697     SmallVector<Instruction *, 4> Extracts;
698     for (User *U : LPad->users()) {
699       auto *E = dyn_cast<ExtractValueInst>(U);
700       if (!E)
701         continue;
702       assert(E->getNumIndices() == 1 &&
703              "Unexpected operation: extracting both landing pad values");
704       Extracts.push_back(E);
705     }
706     for (Instruction *E : Extracts) {
707       E->replaceAllUsesWith(UndefValue::get(E->getType()));
708       E->eraseFromParent();
709     }
710     LPad->replaceAllUsesWith(UndefValue::get(LPad->getType()));
711
712     // Add a call to describe the actions for this landing pad.
713     std::vector<Value *> ActionArgs;
714     for (ActionHandler *Action : Actions) {
715       // Action codes from docs are: 0 cleanup, 1 catch.
716       if (auto *CatchAction = dyn_cast<CatchHandler>(Action)) {
717         ActionArgs.push_back(ConstantInt::get(Int32Type, 1));
718         ActionArgs.push_back(CatchAction->getSelector());
719         // Find the frame escape index of the exception object alloca in the
720         // parent.
721         int FrameEscapeIdx = -1;
722         Value *EHObj = const_cast<Value *>(CatchAction->getExceptionVar());
723         if (EHObj && !isa<ConstantPointerNull>(EHObj)) {
724           auto I = FrameVarInfo.find(EHObj);
725           assert(I != FrameVarInfo.end() &&
726                  "failed to map llvm.eh.begincatch var");
727           FrameEscapeIdx = std::distance(FrameVarInfo.begin(), I);
728         }
729         ActionArgs.push_back(ConstantInt::get(Int32Type, FrameEscapeIdx));
730       } else {
731         ActionArgs.push_back(ConstantInt::get(Int32Type, 0));
732       }
733       ActionArgs.push_back(Action->getHandlerBlockOrFunc());
734     }
735     CallInst *Recover =
736         CallInst::Create(ActionIntrin, ActionArgs, "recover", NewLPadBB);
737
738     // Add an indirect branch listing possible successors of the catch handlers.
739     SetVector<BasicBlock *> ReturnTargets;
740     for (ActionHandler *Action : Actions) {
741       if (auto *CatchAction = dyn_cast<CatchHandler>(Action)) {
742         const auto &CatchTargets = CatchAction->getReturnTargets();
743         ReturnTargets.insert(CatchTargets.begin(), CatchTargets.end());
744       }
745     }
746     IndirectBrInst *Branch =
747         IndirectBrInst::Create(Recover, ReturnTargets.size(), NewLPadBB);
748     for (BasicBlock *Target : ReturnTargets)
749       Branch->addDestination(Target);
750   } // End for each landingpad
751
752   // If nothing got outlined, there is no more processing to be done.
753   if (!HandlersOutlined)
754     return false;
755
756   // Replace any nested landing pad stubs with the correct action handler.
757   // This must be done before we remove unreachable blocks because it
758   // cleans up references to outlined blocks that will be deleted.
759   for (auto &LPadPair : NestedLPtoOriginalLP)
760     completeNestedLandingPad(&F, LPadPair.first, LPadPair.second, FrameVarInfo);
761   NestedLPtoOriginalLP.clear();
762
763   F.addFnAttr("wineh-parent", F.getName());
764
765   // Delete any blocks that were only used by handlers that were outlined above.
766   removeUnreachableBlocks(F);
767
768   BasicBlock *Entry = &F.getEntryBlock();
769   IRBuilder<> Builder(F.getParent()->getContext());
770   Builder.SetInsertPoint(Entry->getFirstInsertionPt());
771
772   Function *FrameEscapeFn =
773       Intrinsic::getDeclaration(M, Intrinsic::frameescape);
774   Function *RecoverFrameFn =
775       Intrinsic::getDeclaration(M, Intrinsic::framerecover);
776   SmallVector<Value *, 8> AllocasToEscape;
777
778   // Scan the entry block for an existing call to llvm.frameescape. We need to
779   // keep escaping those objects.
780   for (Instruction &I : F.front()) {
781     auto *II = dyn_cast<IntrinsicInst>(&I);
782     if (II && II->getIntrinsicID() == Intrinsic::frameescape) {
783       auto Args = II->arg_operands();
784       AllocasToEscape.append(Args.begin(), Args.end());
785       II->eraseFromParent();
786       break;
787     }
788   }
789
790   // Finally, replace all of the temporary allocas for frame variables used in
791   // the outlined handlers with calls to llvm.framerecover.
792   for (auto &VarInfoEntry : FrameVarInfo) {
793     Value *ParentVal = VarInfoEntry.first;
794     TinyPtrVector<AllocaInst *> &Allocas = VarInfoEntry.second;
795     AllocaInst *ParentAlloca = cast<AllocaInst>(ParentVal);
796
797     // FIXME: We should try to sink unescaped allocas from the parent frame into
798     // the child frame. If the alloca is escaped, we have to use the lifetime
799     // markers to ensure that the alloca is only live within the child frame.
800
801     // Add this alloca to the list of things to escape.
802     AllocasToEscape.push_back(ParentAlloca);
803
804     // Next replace all outlined allocas that are mapped to it.
805     for (AllocaInst *TempAlloca : Allocas) {
806       if (TempAlloca == getCatchObjectSentinel())
807         continue; // Skip catch parameter sentinels.
808       Function *HandlerFn = TempAlloca->getParent()->getParent();
809       // FIXME: Sink this GEP into the blocks where it is used.
810       Builder.SetInsertPoint(TempAlloca);
811       Builder.SetCurrentDebugLocation(TempAlloca->getDebugLoc());
812       Value *RecoverArgs[] = {
813           Builder.CreateBitCast(&F, Int8PtrType, ""),
814           &(HandlerFn->getArgumentList().back()),
815           llvm::ConstantInt::get(Int32Type, AllocasToEscape.size() - 1)};
816       Value *RecoveredAlloca = Builder.CreateCall(RecoverFrameFn, RecoverArgs);
817       // Add a pointer bitcast if the alloca wasn't an i8.
818       if (RecoveredAlloca->getType() != TempAlloca->getType()) {
819         RecoveredAlloca->setName(Twine(TempAlloca->getName()) + ".i8");
820         RecoveredAlloca =
821             Builder.CreateBitCast(RecoveredAlloca, TempAlloca->getType());
822       }
823       TempAlloca->replaceAllUsesWith(RecoveredAlloca);
824       TempAlloca->removeFromParent();
825       RecoveredAlloca->takeName(TempAlloca);
826       delete TempAlloca;
827     }
828   } // End for each FrameVarInfo entry.
829
830   // Insert 'call void (...)* @llvm.frameescape(...)' at the end of the entry
831   // block.
832   Builder.SetInsertPoint(&F.getEntryBlock().back());
833   Builder.CreateCall(FrameEscapeFn, AllocasToEscape);
834
835   // Clean up the handler action maps we created for this function
836   DeleteContainerSeconds(CatchHandlerMap);
837   CatchHandlerMap.clear();
838   DeleteContainerSeconds(CleanupHandlerMap);
839   CleanupHandlerMap.clear();
840
841   return HandlersOutlined;
842 }
843
844 void WinEHPrepare::promoteLandingPadValues(LandingPadInst *LPad) {
845   // If the return values of the landing pad instruction are extracted and
846   // stored to memory, we want to promote the store locations to reg values.
847   SmallVector<AllocaInst *, 2> EHAllocas;
848
849   // The landingpad instruction returns an aggregate value.  Typically, its
850   // value will be passed to a pair of extract value instructions and the
851   // results of those extracts are often passed to store instructions.
852   // In unoptimized code the stored value will often be loaded and then stored
853   // again.
854   for (auto *U : LPad->users()) {
855     ExtractValueInst *Extract = dyn_cast<ExtractValueInst>(U);
856     if (!Extract)
857       continue;
858
859     for (auto *EU : Extract->users()) {
860       if (auto *Store = dyn_cast<StoreInst>(EU)) {
861         auto *AV = cast<AllocaInst>(Store->getPointerOperand());
862         EHAllocas.push_back(AV);
863       }
864     }
865   }
866
867   // We can't do this without a dominator tree.
868   assert(DT);
869
870   if (!EHAllocas.empty()) {
871     PromoteMemToReg(EHAllocas, *DT);
872     EHAllocas.clear();
873   }
874
875   // After promotion, some extracts may be trivially dead. Remove them.
876   SmallVector<Value *, 4> Users(LPad->user_begin(), LPad->user_end());
877   for (auto *U : Users)
878     RecursivelyDeleteTriviallyDeadInstructions(U);
879 }
880
881 void WinEHPrepare::completeNestedLandingPad(Function *ParentFn,
882                                             LandingPadInst *OutlinedLPad,
883                                             const LandingPadInst *OriginalLPad,
884                                             FrameVarInfoMap &FrameVarInfo) {
885   // Get the nested block and erase the unreachable instruction that was
886   // temporarily inserted as its terminator.
887   LLVMContext &Context = ParentFn->getContext();
888   BasicBlock *OutlinedBB = OutlinedLPad->getParent();
889   assert(isa<UnreachableInst>(OutlinedBB->getTerminator()));
890   OutlinedBB->getTerminator()->eraseFromParent();
891   // That should leave OutlinedLPad as the last instruction in its block.
892   assert(&OutlinedBB->back() == OutlinedLPad);
893
894   // The original landing pad will have already had its action intrinsic
895   // built by the outlining loop.  We need to clone that into the outlined
896   // location.  It may also be necessary to add references to the exception
897   // variables to the outlined handler in which this landing pad is nested
898   // and remap return instructions in the nested handlers that should return
899   // to an address in the outlined handler.
900   Function *OutlinedHandlerFn = OutlinedBB->getParent();
901   BasicBlock::const_iterator II = OriginalLPad;
902   ++II;
903   // The instruction after the landing pad should now be a call to eh.actions.
904   const Instruction *Recover = II;
905   assert(match(Recover, m_Intrinsic<Intrinsic::eh_actions>()));
906   IntrinsicInst *EHActions = cast<IntrinsicInst>(Recover->clone());
907
908   // Remap the exception variables into the outlined function.
909   WinEHFrameVariableMaterializer Materializer(OutlinedHandlerFn, FrameVarInfo);
910   SmallVector<BlockAddress *, 4> ActionTargets;
911   SmallVector<ActionHandler *, 4> ActionList;
912   parseEHActions(EHActions, ActionList);
913   for (auto *Action : ActionList) {
914     auto *Catch = dyn_cast<CatchHandler>(Action);
915     if (!Catch)
916       continue;
917     // The dyn_cast to function here selects C++ catch handlers and skips
918     // SEH catch handlers.
919     auto *Handler = dyn_cast<Function>(Catch->getHandlerBlockOrFunc());
920     if (!Handler)
921       continue;
922     // Visit all the return instructions, looking for places that return
923     // to a location within OutlinedHandlerFn.
924     for (BasicBlock &NestedHandlerBB : *Handler) {
925       auto *Ret = dyn_cast<ReturnInst>(NestedHandlerBB.getTerminator());
926       if (!Ret)
927         continue;
928
929       // Handler functions must always return a block address.
930       BlockAddress *BA = cast<BlockAddress>(Ret->getReturnValue());
931       // The original target will have been in the main parent function,
932       // but if it is the address of a block that has been outlined, it
933       // should be a block that was outlined into OutlinedHandlerFn.
934       assert(BA->getFunction() == ParentFn);
935
936       // Ignore targets that aren't part of OutlinedHandlerFn.
937       if (!LPadTargetBlocks.count(BA->getBasicBlock()))
938         continue;
939
940       // If the return value is the address ofF a block that we
941       // previously outlined into the parent handler function, replace
942       // the return instruction and add the mapped target to the list
943       // of possible return addresses.
944       BasicBlock *MappedBB = LPadTargetBlocks[BA->getBasicBlock()];
945       assert(MappedBB->getParent() == OutlinedHandlerFn);
946       BlockAddress *NewBA = BlockAddress::get(OutlinedHandlerFn, MappedBB);
947       Ret->eraseFromParent();
948       ReturnInst::Create(Context, NewBA, &NestedHandlerBB);
949       ActionTargets.push_back(NewBA);
950     }
951   }
952   DeleteContainerPointers(ActionList);
953   ActionList.clear();
954   OutlinedBB->getInstList().push_back(EHActions);
955
956   // Insert an indirect branch into the outlined landing pad BB.
957   IndirectBrInst *IBr = IndirectBrInst::Create(EHActions, 0, OutlinedBB);
958   // Add the previously collected action targets.
959   for (auto *Target : ActionTargets)
960     IBr->addDestination(Target->getBasicBlock());
961 }
962
963 // This function examines a block to determine whether the block ends with a
964 // conditional branch to a catch handler based on a selector comparison.
965 // This function is used both by the WinEHPrepare::findSelectorComparison() and
966 // WinEHCleanupDirector::handleTypeIdFor().
967 static bool isSelectorDispatch(BasicBlock *BB, BasicBlock *&CatchHandler,
968                                Constant *&Selector, BasicBlock *&NextBB) {
969   ICmpInst::Predicate Pred;
970   BasicBlock *TBB, *FBB;
971   Value *LHS, *RHS;
972
973   if (!match(BB->getTerminator(),
974              m_Br(m_ICmp(Pred, m_Value(LHS), m_Value(RHS)), TBB, FBB)))
975     return false;
976
977   if (!match(LHS,
978              m_Intrinsic<Intrinsic::eh_typeid_for>(m_Constant(Selector))) &&
979       !match(RHS, m_Intrinsic<Intrinsic::eh_typeid_for>(m_Constant(Selector))))
980     return false;
981
982   if (Pred == CmpInst::ICMP_EQ) {
983     CatchHandler = TBB;
984     NextBB = FBB;
985     return true;
986   }
987
988   if (Pred == CmpInst::ICMP_NE) {
989     CatchHandler = FBB;
990     NextBB = TBB;
991     return true;
992   }
993
994   return false;
995 }
996
997 static bool isCatchBlock(BasicBlock *BB) {
998   for (BasicBlock::iterator II = BB->getFirstNonPHIOrDbg(), IE = BB->end();
999        II != IE; ++II) {
1000     if (match(cast<Value>(II), m_Intrinsic<Intrinsic::eh_begincatch>()))
1001       return true;
1002   }
1003   return false;
1004 }
1005
1006 static BasicBlock *createStubLandingPad(Function *Handler,
1007                                         Value *PersonalityFn) {
1008   // FIXME: Finish this!
1009   LLVMContext &Context = Handler->getContext();
1010   BasicBlock *StubBB = BasicBlock::Create(Context, "stub");
1011   Handler->getBasicBlockList().push_back(StubBB);
1012   IRBuilder<> Builder(StubBB);
1013   LandingPadInst *LPad = Builder.CreateLandingPad(
1014       llvm::StructType::get(Type::getInt8PtrTy(Context),
1015                             Type::getInt32Ty(Context), nullptr),
1016       PersonalityFn, 0);
1017   // Insert a call to llvm.eh.actions so that we don't try to outline this lpad.
1018   Function *ActionIntrin = Intrinsic::getDeclaration(Handler->getParent(),
1019                                                      Intrinsic::eh_actions);
1020   Builder.CreateCall(ActionIntrin, "recover");
1021   LPad->setCleanup(true);
1022   Builder.CreateUnreachable();
1023   return StubBB;
1024 }
1025
1026 // Cycles through the blocks in an outlined handler function looking for an
1027 // invoke instruction and inserts an invoke of llvm.donothing with an empty
1028 // landing pad if none is found.  The code that generates the .xdata tables for
1029 // the handler needs at least one landing pad to identify the parent function's
1030 // personality.
1031 void WinEHPrepare::addStubInvokeToHandlerIfNeeded(Function *Handler,
1032                                                   Value *PersonalityFn) {
1033   ReturnInst *Ret = nullptr;
1034   UnreachableInst *Unreached = nullptr;
1035   for (BasicBlock &BB : *Handler) {
1036     TerminatorInst *Terminator = BB.getTerminator();
1037     // If we find an invoke, there is nothing to be done.
1038     auto *II = dyn_cast<InvokeInst>(Terminator);
1039     if (II)
1040       return;
1041     // If we've already recorded a return instruction, keep looking for invokes.
1042     if (!Ret)
1043       Ret = dyn_cast<ReturnInst>(Terminator);
1044     // If we haven't recorded an unreachable instruction, try this terminator.
1045     if (!Unreached)
1046       Unreached = dyn_cast<UnreachableInst>(Terminator);
1047   }
1048
1049   // If we got this far, the handler contains no invokes.  We should have seen
1050   // at least one return or unreachable instruction.  We'll insert an invoke of
1051   // llvm.donothing ahead of that instruction.
1052   assert(Ret || Unreached);
1053   TerminatorInst *Term;
1054   if (Ret)
1055     Term = Ret;
1056   else
1057     Term = Unreached;
1058   BasicBlock *OldRetBB = Term->getParent();
1059   BasicBlock *NewRetBB = SplitBlock(OldRetBB, Term);
1060   // SplitBlock adds an unconditional branch instruction at the end of the
1061   // parent block.  We want to replace that with an invoke call, so we can
1062   // erase it now.
1063   OldRetBB->getTerminator()->eraseFromParent();
1064   BasicBlock *StubLandingPad = createStubLandingPad(Handler, PersonalityFn);
1065   Function *F =
1066       Intrinsic::getDeclaration(Handler->getParent(), Intrinsic::donothing);
1067   InvokeInst::Create(F, NewRetBB, StubLandingPad, None, "", OldRetBB);
1068 }
1069
1070 bool WinEHPrepare::outlineHandler(ActionHandler *Action, Function *SrcFn,
1071                                   LandingPadInst *LPad, BasicBlock *StartBB,
1072                                   FrameVarInfoMap &VarInfo) {
1073   Module *M = SrcFn->getParent();
1074   LLVMContext &Context = M->getContext();
1075
1076   // Create a new function to receive the handler contents.
1077   Type *Int8PtrType = Type::getInt8PtrTy(Context);
1078   std::vector<Type *> ArgTys;
1079   ArgTys.push_back(Int8PtrType);
1080   ArgTys.push_back(Int8PtrType);
1081   Function *Handler;
1082   if (Action->getType() == Catch) {
1083     FunctionType *FnType = FunctionType::get(Int8PtrType, ArgTys, false);
1084     Handler = Function::Create(FnType, GlobalVariable::InternalLinkage,
1085                                SrcFn->getName() + ".catch", M);
1086   } else {
1087     FunctionType *FnType =
1088         FunctionType::get(Type::getVoidTy(Context), ArgTys, false);
1089     Handler = Function::Create(FnType, GlobalVariable::InternalLinkage,
1090                                SrcFn->getName() + ".cleanup", M);
1091   }
1092
1093   Handler->addFnAttr("wineh-parent", SrcFn->getName());
1094
1095   // Generate a standard prolog to setup the frame recovery structure.
1096   IRBuilder<> Builder(Context);
1097   BasicBlock *Entry = BasicBlock::Create(Context, "entry");
1098   Handler->getBasicBlockList().push_front(Entry);
1099   Builder.SetInsertPoint(Entry);
1100   Builder.SetCurrentDebugLocation(LPad->getDebugLoc());
1101
1102   std::unique_ptr<WinEHCloningDirectorBase> Director;
1103
1104   ValueToValueMapTy VMap;
1105
1106   LandingPadMap &LPadMap = LPadMaps[LPad];
1107   if (!LPadMap.isInitialized())
1108     LPadMap.mapLandingPad(LPad);
1109   if (auto *CatchAction = dyn_cast<CatchHandler>(Action)) {
1110     Constant *Sel = CatchAction->getSelector();
1111     Director.reset(new WinEHCatchDirector(Handler, Sel, VarInfo, LPadMap,
1112                                           NestedLPtoOriginalLP));
1113     LPadMap.remapEHValues(VMap, UndefValue::get(Int8PtrType),
1114                           ConstantInt::get(Type::getInt32Ty(Context), 1));
1115   } else {
1116     Director.reset(new WinEHCleanupDirector(Handler, VarInfo, LPadMap));
1117     LPadMap.remapEHValues(VMap, UndefValue::get(Int8PtrType),
1118                           UndefValue::get(Type::getInt32Ty(Context)));
1119   }
1120
1121   SmallVector<ReturnInst *, 8> Returns;
1122   ClonedCodeInfo OutlinedFunctionInfo;
1123
1124   // If the start block contains PHI nodes, we need to map them.
1125   BasicBlock::iterator II = StartBB->begin();
1126   while (auto *PN = dyn_cast<PHINode>(II)) {
1127     bool Mapped = false;
1128     // Look for PHI values that we have already mapped (such as the selector).
1129     for (Value *Val : PN->incoming_values()) {
1130       if (VMap.count(Val)) {
1131         VMap[PN] = VMap[Val];
1132         Mapped = true;
1133       }
1134     }
1135     // If we didn't find a match for this value, map it as an undef.
1136     if (!Mapped) {
1137       VMap[PN] = UndefValue::get(PN->getType());
1138     }
1139     ++II;
1140   }
1141
1142   // The landing pad value may be used by PHI nodes.  It will ultimately be
1143   // eliminated, but we need it in the map for intermediate handling.
1144   VMap[LPad] = UndefValue::get(LPad->getType());
1145
1146   // Skip over PHIs and, if applicable, landingpad instructions.
1147   II = StartBB->getFirstInsertionPt();
1148
1149   CloneAndPruneIntoFromInst(Handler, SrcFn, II, VMap,
1150                             /*ModuleLevelChanges=*/false, Returns, "",
1151                             &OutlinedFunctionInfo, Director.get());
1152
1153   // Move all the instructions in the first cloned block into our entry block.
1154   BasicBlock *FirstClonedBB = std::next(Function::iterator(Entry));
1155   Entry->getInstList().splice(Entry->end(), FirstClonedBB->getInstList());
1156   FirstClonedBB->eraseFromParent();
1157
1158   // Make sure we can identify the handler's personality later.
1159   addStubInvokeToHandlerIfNeeded(Handler, LPad->getPersonalityFn());
1160
1161   if (auto *CatchAction = dyn_cast<CatchHandler>(Action)) {
1162     WinEHCatchDirector *CatchDirector =
1163         reinterpret_cast<WinEHCatchDirector *>(Director.get());
1164     CatchAction->setExceptionVar(CatchDirector->getExceptionVar());
1165     CatchAction->setReturnTargets(CatchDirector->getReturnTargets());
1166
1167     // Look for blocks that are not part of the landing pad that we just
1168     // outlined but terminate with a call to llvm.eh.endcatch and a
1169     // branch to a block that is in the handler we just outlined.
1170     // These blocks will be part of a nested landing pad that intends to
1171     // return to an address in this handler.  This case is best handled
1172     // after both landing pads have been outlined, so for now we'll just
1173     // save the association of the blocks in LPadTargetBlocks.  The
1174     // return instructions which are created from these branches will be
1175     // replaced after all landing pads have been outlined.
1176     for (const auto MapEntry : VMap) {
1177       // VMap maps all values and blocks that were just cloned, but dead
1178       // blocks which were pruned will map to nullptr.
1179       if (!isa<BasicBlock>(MapEntry.first) || MapEntry.second == nullptr)
1180         continue;
1181       const BasicBlock *MappedBB = cast<BasicBlock>(MapEntry.first);
1182       for (auto *Pred : predecessors(const_cast<BasicBlock *>(MappedBB))) {
1183         auto *Branch = dyn_cast<BranchInst>(Pred->getTerminator());
1184         if (!Branch || !Branch->isUnconditional() || Pred->size() <= 1)
1185           continue;
1186         BasicBlock::iterator II = const_cast<BranchInst *>(Branch);
1187         --II;
1188         if (match(cast<Value>(II), m_Intrinsic<Intrinsic::eh_endcatch>())) {
1189           // This would indicate that a nested landing pad wants to return
1190           // to a block that is outlined into two different handlers.
1191           assert(!LPadTargetBlocks.count(MappedBB));
1192           LPadTargetBlocks[MappedBB] = cast<BasicBlock>(MapEntry.second);
1193         }
1194       }
1195     }
1196   } // End if (CatchAction)
1197
1198   Action->setHandlerBlockOrFunc(Handler);
1199
1200   return true;
1201 }
1202
1203 /// This BB must end in a selector dispatch. All we need to do is pass the
1204 /// handler block to llvm.eh.actions and list it as a possible indirectbr
1205 /// target.
1206 void WinEHPrepare::processSEHCatchHandler(CatchHandler *CatchAction,
1207                                           BasicBlock *StartBB) {
1208   BasicBlock *HandlerBB;
1209   BasicBlock *NextBB;
1210   Constant *Selector;
1211   bool Res = isSelectorDispatch(StartBB, HandlerBB, Selector, NextBB);
1212   if (Res) {
1213     // If this was EH dispatch, this must be a conditional branch to the handler
1214     // block.
1215     // FIXME: Handle instructions in the dispatch block. Currently we drop them,
1216     // leading to crashes if some optimization hoists stuff here.
1217     assert(CatchAction->getSelector() && HandlerBB &&
1218            "expected catch EH dispatch");
1219   } else {
1220     // This must be a catch-all. Split the block after the landingpad.
1221     assert(CatchAction->getSelector()->isNullValue() && "expected catch-all");
1222     HandlerBB =
1223         StartBB->splitBasicBlock(StartBB->getFirstInsertionPt(), "catch.all");
1224   }
1225   CatchAction->setHandlerBlockOrFunc(BlockAddress::get(HandlerBB));
1226   TinyPtrVector<BasicBlock *> Targets(HandlerBB);
1227   CatchAction->setReturnTargets(Targets);
1228 }
1229
1230 void LandingPadMap::mapLandingPad(const LandingPadInst *LPad) {
1231   // Each instance of this class should only ever be used to map a single
1232   // landing pad.
1233   assert(OriginLPad == nullptr || OriginLPad == LPad);
1234
1235   // If the landing pad has already been mapped, there's nothing more to do.
1236   if (OriginLPad == LPad)
1237     return;
1238
1239   OriginLPad = LPad;
1240
1241   // The landingpad instruction returns an aggregate value.  Typically, its
1242   // value will be passed to a pair of extract value instructions and the
1243   // results of those extracts will have been promoted to reg values before
1244   // this routine is called.
1245   for (auto *U : LPad->users()) {
1246     const ExtractValueInst *Extract = dyn_cast<ExtractValueInst>(U);
1247     if (!Extract)
1248       continue;
1249     assert(Extract->getNumIndices() == 1 &&
1250            "Unexpected operation: extracting both landing pad values");
1251     unsigned int Idx = *(Extract->idx_begin());
1252     assert((Idx == 0 || Idx == 1) &&
1253            "Unexpected operation: extracting an unknown landing pad element");
1254     if (Idx == 0) {
1255       ExtractedEHPtrs.push_back(Extract);
1256     } else if (Idx == 1) {
1257       ExtractedSelectors.push_back(Extract);
1258     }
1259   }
1260 }
1261
1262 bool LandingPadMap::isOriginLandingPadBlock(const BasicBlock *BB) const {
1263   return BB->getLandingPadInst() == OriginLPad;
1264 }
1265
1266 bool LandingPadMap::isLandingPadSpecificInst(const Instruction *Inst) const {
1267   if (Inst == OriginLPad)
1268     return true;
1269   for (auto *Extract : ExtractedEHPtrs) {
1270     if (Inst == Extract)
1271       return true;
1272   }
1273   for (auto *Extract : ExtractedSelectors) {
1274     if (Inst == Extract)
1275       return true;
1276   }
1277   return false;
1278 }
1279
1280 void LandingPadMap::remapEHValues(ValueToValueMapTy &VMap, Value *EHPtrValue,
1281                                   Value *SelectorValue) const {
1282   // Remap all landing pad extract instructions to the specified values.
1283   for (auto *Extract : ExtractedEHPtrs)
1284     VMap[Extract] = EHPtrValue;
1285   for (auto *Extract : ExtractedSelectors)
1286     VMap[Extract] = SelectorValue;
1287 }
1288
1289 static bool isFrameAddressCall(const Value *V) {
1290   return match(const_cast<Value *>(V),
1291                m_Intrinsic<Intrinsic::frameaddress>(m_SpecificInt(0)));
1292 }
1293
1294 CloningDirector::CloningAction WinEHCloningDirectorBase::handleInstruction(
1295     ValueToValueMapTy &VMap, const Instruction *Inst, BasicBlock *NewBB) {
1296   // If this is one of the boilerplate landing pad instructions, skip it.
1297   // The instruction will have already been remapped in VMap.
1298   if (LPadMap.isLandingPadSpecificInst(Inst))
1299     return CloningDirector::SkipInstruction;
1300
1301   // Nested landing pads will be cloned as stubs, with just the
1302   // landingpad instruction and an unreachable instruction. When
1303   // all landingpads have been outlined, we'll replace this with the
1304   // llvm.eh.actions call and indirect branch created when the
1305   // landing pad was outlined.
1306   if (auto *LPad = dyn_cast<LandingPadInst>(Inst)) {
1307     return handleLandingPad(VMap, LPad, NewBB);
1308   }
1309
1310   if (auto *Invoke = dyn_cast<InvokeInst>(Inst))
1311     return handleInvoke(VMap, Invoke, NewBB);
1312
1313   if (auto *Resume = dyn_cast<ResumeInst>(Inst))
1314     return handleResume(VMap, Resume, NewBB);
1315
1316   if (auto *Cmp = dyn_cast<CmpInst>(Inst))
1317     return handleCompare(VMap, Cmp, NewBB);
1318
1319   if (match(Inst, m_Intrinsic<Intrinsic::eh_begincatch>()))
1320     return handleBeginCatch(VMap, Inst, NewBB);
1321   if (match(Inst, m_Intrinsic<Intrinsic::eh_endcatch>()))
1322     return handleEndCatch(VMap, Inst, NewBB);
1323   if (match(Inst, m_Intrinsic<Intrinsic::eh_typeid_for>()))
1324     return handleTypeIdFor(VMap, Inst, NewBB);
1325
1326   // When outlining llvm.frameaddress(i32 0), remap that to the second argument,
1327   // which is the FP of the parent.
1328   if (isFrameAddressCall(Inst)) {
1329     VMap[Inst] = EstablisherFrame;
1330     return CloningDirector::SkipInstruction;
1331   }
1332
1333   // Continue with the default cloning behavior.
1334   return CloningDirector::CloneInstruction;
1335 }
1336
1337 CloningDirector::CloningAction WinEHCatchDirector::handleLandingPad(
1338     ValueToValueMapTy &VMap, const LandingPadInst *LPad, BasicBlock *NewBB) {
1339   Instruction *NewInst = LPad->clone();
1340   if (LPad->hasName())
1341     NewInst->setName(LPad->getName());
1342   // Save this correlation for later processing.
1343   NestedLPtoOriginalLP[cast<LandingPadInst>(NewInst)] = LPad;
1344   VMap[LPad] = NewInst;
1345   BasicBlock::InstListType &InstList = NewBB->getInstList();
1346   InstList.push_back(NewInst);
1347   InstList.push_back(new UnreachableInst(NewBB->getContext()));
1348   return CloningDirector::StopCloningBB;
1349 }
1350
1351 CloningDirector::CloningAction WinEHCatchDirector::handleBeginCatch(
1352     ValueToValueMapTy &VMap, const Instruction *Inst, BasicBlock *NewBB) {
1353   // The argument to the call is some form of the first element of the
1354   // landingpad aggregate value, but that doesn't matter.  It isn't used
1355   // here.
1356   // The second argument is an outparameter where the exception object will be
1357   // stored. Typically the exception object is a scalar, but it can be an
1358   // aggregate when catching by value.
1359   // FIXME: Leave something behind to indicate where the exception object lives
1360   // for this handler. Should it be part of llvm.eh.actions?
1361   assert(ExceptionObjectVar == nullptr && "Multiple calls to "
1362                                           "llvm.eh.begincatch found while "
1363                                           "outlining catch handler.");
1364   ExceptionObjectVar = Inst->getOperand(1)->stripPointerCasts();
1365   if (isa<ConstantPointerNull>(ExceptionObjectVar))
1366     return CloningDirector::SkipInstruction;
1367   assert(cast<AllocaInst>(ExceptionObjectVar)->isStaticAlloca() &&
1368          "catch parameter is not static alloca");
1369   Materializer.escapeCatchObject(ExceptionObjectVar);
1370   return CloningDirector::SkipInstruction;
1371 }
1372
1373 CloningDirector::CloningAction
1374 WinEHCatchDirector::handleEndCatch(ValueToValueMapTy &VMap,
1375                                    const Instruction *Inst, BasicBlock *NewBB) {
1376   auto *IntrinCall = dyn_cast<IntrinsicInst>(Inst);
1377   // It might be interesting to track whether or not we are inside a catch
1378   // function, but that might make the algorithm more brittle than it needs
1379   // to be.
1380
1381   // The end catch call can occur in one of two places: either in a
1382   // landingpad block that is part of the catch handlers exception mechanism,
1383   // or at the end of the catch block.  However, a catch-all handler may call
1384   // end catch from the original landing pad.  If the call occurs in a nested
1385   // landing pad block, we must skip it and continue so that the landing pad
1386   // gets cloned.
1387   auto *ParentBB = IntrinCall->getParent();
1388   if (ParentBB->isLandingPad() && !LPadMap.isOriginLandingPadBlock(ParentBB))
1389     return CloningDirector::SkipInstruction;
1390
1391   // If an end catch occurs anywhere else we want to terminate the handler
1392   // with a return to the code that follows the endcatch call.  If the
1393   // next instruction is not an unconditional branch, we need to split the
1394   // block to provide a clear target for the return instruction.
1395   BasicBlock *ContinueBB;
1396   auto Next = std::next(BasicBlock::const_iterator(IntrinCall));
1397   const BranchInst *Branch = dyn_cast<BranchInst>(Next);
1398   if (!Branch || !Branch->isUnconditional()) {
1399     // We're interrupting the cloning process at this location, so the
1400     // const_cast we're doing here will not cause a problem.
1401     ContinueBB = SplitBlock(const_cast<BasicBlock *>(ParentBB),
1402                             const_cast<Instruction *>(cast<Instruction>(Next)));
1403   } else {
1404     ContinueBB = Branch->getSuccessor(0);
1405   }
1406
1407   ReturnInst::Create(NewBB->getContext(), BlockAddress::get(ContinueBB), NewBB);
1408   ReturnTargets.push_back(ContinueBB);
1409
1410   // We just added a terminator to the cloned block.
1411   // Tell the caller to stop processing the current basic block so that
1412   // the branch instruction will be skipped.
1413   return CloningDirector::StopCloningBB;
1414 }
1415
1416 CloningDirector::CloningAction WinEHCatchDirector::handleTypeIdFor(
1417     ValueToValueMapTy &VMap, const Instruction *Inst, BasicBlock *NewBB) {
1418   auto *IntrinCall = dyn_cast<IntrinsicInst>(Inst);
1419   Value *Selector = IntrinCall->getArgOperand(0)->stripPointerCasts();
1420   // This causes a replacement that will collapse the landing pad CFG based
1421   // on the filter function we intend to match.
1422   if (Selector == CurrentSelector)
1423     VMap[Inst] = ConstantInt::get(SelectorIDType, 1);
1424   else
1425     VMap[Inst] = ConstantInt::get(SelectorIDType, 0);
1426   // Tell the caller not to clone this instruction.
1427   return CloningDirector::SkipInstruction;
1428 }
1429
1430 CloningDirector::CloningAction
1431 WinEHCatchDirector::handleInvoke(ValueToValueMapTy &VMap,
1432                                  const InvokeInst *Invoke, BasicBlock *NewBB) {
1433   return CloningDirector::CloneInstruction;
1434 }
1435
1436 CloningDirector::CloningAction
1437 WinEHCatchDirector::handleResume(ValueToValueMapTy &VMap,
1438                                  const ResumeInst *Resume, BasicBlock *NewBB) {
1439   // Resume instructions shouldn't be reachable from catch handlers.
1440   // We still need to handle it, but it will be pruned.
1441   BasicBlock::InstListType &InstList = NewBB->getInstList();
1442   InstList.push_back(new UnreachableInst(NewBB->getContext()));
1443   return CloningDirector::StopCloningBB;
1444 }
1445
1446 CloningDirector::CloningAction
1447 WinEHCatchDirector::handleCompare(ValueToValueMapTy &VMap,
1448                                   const CmpInst *Compare, BasicBlock *NewBB) {
1449   const IntrinsicInst *IntrinCall = nullptr;
1450   if (match(Compare->getOperand(0), m_Intrinsic<Intrinsic::eh_typeid_for>())) {
1451     IntrinCall = dyn_cast<IntrinsicInst>(Compare->getOperand(0));
1452   } else if (match(Compare->getOperand(1), m_Intrinsic<Intrinsic::eh_typeid_for>())) {
1453     IntrinCall = dyn_cast<IntrinsicInst>(Compare->getOperand(1));
1454   }
1455   if (IntrinCall) {
1456     Value *Selector = IntrinCall->getArgOperand(0)->stripPointerCasts();
1457     // This causes a replacement that will collapse the landing pad CFG based
1458     // on the filter function we intend to match.
1459     if (Selector == CurrentSelector->stripPointerCasts()) {
1460       VMap[Compare] = ConstantInt::get(SelectorIDType, 1);
1461     }
1462     else {
1463       VMap[Compare] = ConstantInt::get(SelectorIDType, 0);
1464     }
1465     return CloningDirector::SkipInstruction;
1466   }
1467   return CloningDirector::CloneInstruction;
1468 }
1469
1470 CloningDirector::CloningAction WinEHCleanupDirector::handleLandingPad(
1471     ValueToValueMapTy &VMap, const LandingPadInst *LPad, BasicBlock *NewBB) {
1472   // The MS runtime will terminate the process if an exception occurs in a
1473   // cleanup handler, so we shouldn't encounter landing pads in the actual
1474   // cleanup code, but they may appear in catch blocks.  Depending on where
1475   // we started cloning we may see one, but it will get dropped during dead
1476   // block pruning.
1477   Instruction *NewInst = new UnreachableInst(NewBB->getContext());
1478   VMap[LPad] = NewInst;
1479   BasicBlock::InstListType &InstList = NewBB->getInstList();
1480   InstList.push_back(NewInst);
1481   return CloningDirector::StopCloningBB;
1482 }
1483
1484 CloningDirector::CloningAction WinEHCleanupDirector::handleBeginCatch(
1485     ValueToValueMapTy &VMap, const Instruction *Inst, BasicBlock *NewBB) {
1486   // Cleanup code may flow into catch blocks or the catch block may be part
1487   // of a branch that will be optimized away.  We'll insert a return
1488   // instruction now, but it may be pruned before the cloning process is
1489   // complete.
1490   ReturnInst::Create(NewBB->getContext(), nullptr, NewBB);
1491   return CloningDirector::StopCloningBB;
1492 }
1493
1494 CloningDirector::CloningAction WinEHCleanupDirector::handleEndCatch(
1495     ValueToValueMapTy &VMap, const Instruction *Inst, BasicBlock *NewBB) {
1496   // Cleanup handlers nested within catch handlers may begin with a call to
1497   // eh.endcatch.  We can just ignore that instruction.
1498   return CloningDirector::SkipInstruction;
1499 }
1500
1501 CloningDirector::CloningAction WinEHCleanupDirector::handleTypeIdFor(
1502     ValueToValueMapTy &VMap, const Instruction *Inst, BasicBlock *NewBB) {
1503   // If we encounter a selector comparison while cloning a cleanup handler,
1504   // we want to stop cloning immediately.  Anything after the dispatch
1505   // will be outlined into a different handler.
1506   BasicBlock *CatchHandler;
1507   Constant *Selector;
1508   BasicBlock *NextBB;
1509   if (isSelectorDispatch(const_cast<BasicBlock *>(Inst->getParent()),
1510                          CatchHandler, Selector, NextBB)) {
1511     ReturnInst::Create(NewBB->getContext(), nullptr, NewBB);
1512     return CloningDirector::StopCloningBB;
1513   }
1514   // If eg.typeid.for is called for any other reason, it can be ignored.
1515   VMap[Inst] = ConstantInt::get(SelectorIDType, 0);
1516   return CloningDirector::SkipInstruction;
1517 }
1518
1519 CloningDirector::CloningAction WinEHCleanupDirector::handleInvoke(
1520     ValueToValueMapTy &VMap, const InvokeInst *Invoke, BasicBlock *NewBB) {
1521   // All invokes in cleanup handlers can be replaced with calls.
1522   SmallVector<Value *, 16> CallArgs(Invoke->op_begin(), Invoke->op_end() - 3);
1523   // Insert a normal call instruction...
1524   CallInst *NewCall =
1525       CallInst::Create(const_cast<Value *>(Invoke->getCalledValue()), CallArgs,
1526                        Invoke->getName(), NewBB);
1527   NewCall->setCallingConv(Invoke->getCallingConv());
1528   NewCall->setAttributes(Invoke->getAttributes());
1529   NewCall->setDebugLoc(Invoke->getDebugLoc());
1530   VMap[Invoke] = NewCall;
1531
1532   // Remap the operands.
1533   llvm::RemapInstruction(NewCall, VMap, RF_None, nullptr, &Materializer);
1534
1535   // Insert an unconditional branch to the normal destination.
1536   BranchInst::Create(Invoke->getNormalDest(), NewBB);
1537
1538   // The unwind destination won't be cloned into the new function, so
1539   // we don't need to clean up its phi nodes.
1540
1541   // We just added a terminator to the cloned block.
1542   // Tell the caller to stop processing the current basic block.
1543   return CloningDirector::CloneSuccessors;
1544 }
1545
1546 CloningDirector::CloningAction WinEHCleanupDirector::handleResume(
1547     ValueToValueMapTy &VMap, const ResumeInst *Resume, BasicBlock *NewBB) {
1548   ReturnInst::Create(NewBB->getContext(), nullptr, NewBB);
1549
1550   // We just added a terminator to the cloned block.
1551   // Tell the caller to stop processing the current basic block so that
1552   // the branch instruction will be skipped.
1553   return CloningDirector::StopCloningBB;
1554 }
1555
1556 CloningDirector::CloningAction
1557 WinEHCleanupDirector::handleCompare(ValueToValueMapTy &VMap,
1558                                     const CmpInst *Compare, BasicBlock *NewBB) {
1559   if (match(Compare->getOperand(0), m_Intrinsic<Intrinsic::eh_typeid_for>()) ||
1560       match(Compare->getOperand(1), m_Intrinsic<Intrinsic::eh_typeid_for>())) {
1561     VMap[Compare] = ConstantInt::get(SelectorIDType, 1);
1562     return CloningDirector::SkipInstruction;
1563   }
1564   return CloningDirector::CloneInstruction;
1565
1566 }
1567
1568 WinEHFrameVariableMaterializer::WinEHFrameVariableMaterializer(
1569     Function *OutlinedFn, FrameVarInfoMap &FrameVarInfo)
1570     : FrameVarInfo(FrameVarInfo), Builder(OutlinedFn->getContext()) {
1571   BasicBlock *EntryBB = &OutlinedFn->getEntryBlock();
1572   Builder.SetInsertPoint(EntryBB, EntryBB->getFirstInsertionPt());
1573 }
1574
1575 Value *WinEHFrameVariableMaterializer::materializeValueFor(Value *V) {
1576   // If we're asked to materialize a static alloca, we temporarily create an
1577   // alloca in the outlined function and add this to the FrameVarInfo map.  When
1578   // all the outlining is complete, we'll replace these temporary allocas with
1579   // calls to llvm.framerecover.
1580   if (auto *AV = dyn_cast<AllocaInst>(V)) {
1581     assert(AV->isStaticAlloca() &&
1582            "cannot materialize un-demoted dynamic alloca");
1583     AllocaInst *NewAlloca = dyn_cast<AllocaInst>(AV->clone());
1584     Builder.Insert(NewAlloca, AV->getName());
1585     FrameVarInfo[AV].push_back(NewAlloca);
1586     return NewAlloca;
1587   }
1588
1589   if (isa<Instruction>(V) || isa<Argument>(V)) {
1590     errs() << "Failed to demote instruction used in exception handler:\n";
1591     errs() << "  " << *V << '\n';
1592     report_fatal_error("WinEHPrepare failed to demote instruction");
1593   }
1594
1595   // Don't materialize other values.
1596   return nullptr;
1597 }
1598
1599 void WinEHFrameVariableMaterializer::escapeCatchObject(Value *V) {
1600   // Catch parameter objects have to live in the parent frame. When we see a use
1601   // of a catch parameter, add a sentinel to the multimap to indicate that it's
1602   // used from another handler. This will prevent us from trying to sink the
1603   // alloca into the handler and ensure that the catch parameter is present in
1604   // the call to llvm.frameescape.
1605   FrameVarInfo[V].push_back(getCatchObjectSentinel());
1606 }
1607
1608 // This function maps the catch and cleanup handlers that are reachable from the
1609 // specified landing pad. The landing pad sequence will have this basic shape:
1610 //
1611 //  <cleanup handler>
1612 //  <selector comparison>
1613 //  <catch handler>
1614 //  <cleanup handler>
1615 //  <selector comparison>
1616 //  <catch handler>
1617 //  <cleanup handler>
1618 //  ...
1619 //
1620 // Any of the cleanup slots may be absent.  The cleanup slots may be occupied by
1621 // any arbitrary control flow, but all paths through the cleanup code must
1622 // eventually reach the next selector comparison and no path can skip to a
1623 // different selector comparisons, though some paths may terminate abnormally.
1624 // Therefore, we will use a depth first search from the start of any given
1625 // cleanup block and stop searching when we find the next selector comparison.
1626 //
1627 // If the landingpad instruction does not have a catch clause, we will assume
1628 // that any instructions other than selector comparisons and catch handlers can
1629 // be ignored.  In practice, these will only be the boilerplate instructions.
1630 //
1631 // The catch handlers may also have any control structure, but we are only
1632 // interested in the start of the catch handlers, so we don't need to actually
1633 // follow the flow of the catch handlers.  The start of the catch handlers can
1634 // be located from the compare instructions, but they can be skipped in the
1635 // flow by following the contrary branch.
1636 void WinEHPrepare::mapLandingPadBlocks(LandingPadInst *LPad,
1637                                        LandingPadActions &Actions) {
1638   unsigned int NumClauses = LPad->getNumClauses();
1639   unsigned int HandlersFound = 0;
1640   BasicBlock *BB = LPad->getParent();
1641
1642   DEBUG(dbgs() << "Mapping landing pad: " << BB->getName() << "\n");
1643
1644   if (NumClauses == 0) {
1645     findCleanupHandlers(Actions, BB, nullptr);
1646     return;
1647   }
1648
1649   VisitedBlockSet VisitedBlocks;
1650
1651   while (HandlersFound != NumClauses) {
1652     BasicBlock *NextBB = nullptr;
1653
1654     // Skip over filter clauses.
1655     if (LPad->isFilter(HandlersFound)) {
1656       ++HandlersFound;
1657       continue;
1658     }
1659
1660     // See if the clause we're looking for is a catch-all.
1661     // If so, the catch begins immediately.
1662     Constant *ExpectedSelector = LPad->getClause(HandlersFound)->stripPointerCasts();
1663     if (isa<ConstantPointerNull>(ExpectedSelector)) {
1664       // The catch all must occur last.
1665       assert(HandlersFound == NumClauses - 1);
1666
1667       // There can be additional selector dispatches in the call chain that we
1668       // need to ignore.
1669       BasicBlock *CatchBlock = nullptr;
1670       Constant *Selector;
1671       while (BB && isSelectorDispatch(BB, CatchBlock, Selector, NextBB)) {
1672         DEBUG(dbgs() << "  Found extra catch dispatch in block "
1673           << CatchBlock->getName() << "\n");
1674         BB = NextBB;
1675       }
1676
1677       // For C++ EH, check if there is any interesting cleanup code before we
1678       // begin the catch. This is important because cleanups cannot rethrow
1679       // exceptions but code called from catches can. For SEH, it isn't
1680       // important if some finally code before a catch-all is executed out of
1681       // line or after recovering from the exception.
1682       if (Personality == EHPersonality::MSVC_CXX)
1683         findCleanupHandlers(Actions, BB, BB);
1684
1685       // Add the catch handler to the action list.
1686       CatchHandler *Action = nullptr;
1687       if (CatchHandlerMap.count(BB) && CatchHandlerMap[BB] != nullptr) {
1688         // If the CatchHandlerMap already has an entry for this BB, re-use it.
1689         Action = CatchHandlerMap[BB];
1690         assert(Action->getSelector() == ExpectedSelector);
1691       } else {
1692         // Since this is a catch-all handler, the selector won't actually appear
1693         // in the code anywhere.  ExpectedSelector here is the constant null ptr
1694         // that we got from the landing pad instruction.
1695         Action = new CatchHandler(BB, ExpectedSelector, nullptr);
1696         CatchHandlerMap[BB] = Action;
1697       }
1698       Actions.insertCatchHandler(Action);
1699       DEBUG(dbgs() << "  Catch all handler at block " << BB->getName() << "\n");
1700       ++HandlersFound;
1701
1702       // Once we reach a catch-all, don't expect to hit a resume instruction.
1703       BB = nullptr;
1704       break;
1705     }
1706
1707     CatchHandler *CatchAction = findCatchHandler(BB, NextBB, VisitedBlocks);
1708     assert(CatchAction);
1709
1710     // See if there is any interesting code executed before the dispatch.
1711     findCleanupHandlers(Actions, BB, CatchAction->getStartBlock());
1712
1713     // When the source program contains multiple nested try blocks the catch
1714     // handlers can get strung together in such a way that we can encounter
1715     // a dispatch for a selector that we've already had a handler for.
1716     if (CatchAction->getSelector()->stripPointerCasts() == ExpectedSelector) {
1717       ++HandlersFound;
1718
1719       // Add the catch handler to the action list.
1720       DEBUG(dbgs() << "  Found catch dispatch in block "
1721                    << CatchAction->getStartBlock()->getName() << "\n");
1722       Actions.insertCatchHandler(CatchAction);
1723     } else {
1724       // Under some circumstances optimized IR will flow unconditionally into a
1725       // handler block without checking the selector.  This can only happen if
1726       // the landing pad has a catch-all handler and the handler for the
1727       // preceeding catch clause is identical to the catch-call handler
1728       // (typically an empty catch).  In this case, the handler must be shared
1729       // by all remaining clauses.
1730       if (isa<ConstantPointerNull>(
1731               CatchAction->getSelector()->stripPointerCasts())) {
1732         DEBUG(dbgs() << "  Applying early catch-all handler in block "
1733                      << CatchAction->getStartBlock()->getName()
1734                      << "  to all remaining clauses.\n");
1735         Actions.insertCatchHandler(CatchAction);
1736         return;
1737       }
1738
1739       DEBUG(dbgs() << "  Found extra catch dispatch in block "
1740                    << CatchAction->getStartBlock()->getName() << "\n");
1741     }
1742
1743     // Move on to the block after the catch handler.
1744     BB = NextBB;
1745   }
1746
1747   // If we didn't wind up in a catch-all, see if there is any interesting code
1748   // executed before the resume.
1749   findCleanupHandlers(Actions, BB, BB);
1750
1751   // It's possible that some optimization moved code into a landingpad that
1752   // wasn't
1753   // previously being used for cleanup.  If that happens, we need to execute
1754   // that
1755   // extra code from a cleanup handler.
1756   if (Actions.includesCleanup() && !LPad->isCleanup())
1757     LPad->setCleanup(true);
1758 }
1759
1760 // This function searches starting with the input block for the next
1761 // block that terminates with a branch whose condition is based on a selector
1762 // comparison.  This may be the input block.  See the mapLandingPadBlocks
1763 // comments for a discussion of control flow assumptions.
1764 //
1765 CatchHandler *WinEHPrepare::findCatchHandler(BasicBlock *BB,
1766                                              BasicBlock *&NextBB,
1767                                              VisitedBlockSet &VisitedBlocks) {
1768   // See if we've already found a catch handler use it.
1769   // Call count() first to avoid creating a null entry for blocks
1770   // we haven't seen before.
1771   if (CatchHandlerMap.count(BB) && CatchHandlerMap[BB] != nullptr) {
1772     CatchHandler *Action = cast<CatchHandler>(CatchHandlerMap[BB]);
1773     NextBB = Action->getNextBB();
1774     return Action;
1775   }
1776
1777   // VisitedBlocks applies only to the current search.  We still
1778   // need to consider blocks that we've visited while mapping other
1779   // landing pads.
1780   VisitedBlocks.insert(BB);
1781
1782   BasicBlock *CatchBlock = nullptr;
1783   Constant *Selector = nullptr;
1784
1785   // If this is the first time we've visited this block from any landing pad
1786   // look to see if it is a selector dispatch block.
1787   if (!CatchHandlerMap.count(BB)) {
1788     if (isSelectorDispatch(BB, CatchBlock, Selector, NextBB)) {
1789       CatchHandler *Action = new CatchHandler(BB, Selector, NextBB);
1790       CatchHandlerMap[BB] = Action;
1791       return Action;
1792     }
1793     // If we encounter a block containing an llvm.eh.begincatch before we
1794     // find a selector dispatch block, the handler is assumed to be
1795     // reached unconditionally.  This happens for catch-all blocks, but
1796     // it can also happen for other catch handlers that have been combined
1797     // with the catch-all handler during optimization.
1798     if (isCatchBlock(BB)) {
1799       PointerType *Int8PtrTy = Type::getInt8PtrTy(BB->getContext());
1800       Constant *NullSelector = ConstantPointerNull::get(Int8PtrTy);
1801       CatchHandler *Action = new CatchHandler(BB, NullSelector, nullptr);
1802       CatchHandlerMap[BB] = Action;
1803       return Action;
1804     }
1805   }
1806
1807   // Visit each successor, looking for the dispatch.
1808   // FIXME: We expect to find the dispatch quickly, so this will probably
1809   //        work better as a breadth first search.
1810   for (BasicBlock *Succ : successors(BB)) {
1811     if (VisitedBlocks.count(Succ))
1812       continue;
1813
1814     CatchHandler *Action = findCatchHandler(Succ, NextBB, VisitedBlocks);
1815     if (Action)
1816       return Action;
1817   }
1818   return nullptr;
1819 }
1820
1821 // These are helper functions to combine repeated code from findCleanupHandlers.
1822 static void createCleanupHandler(LandingPadActions &Actions,
1823                                  CleanupHandlerMapTy &CleanupHandlerMap,
1824                                  BasicBlock *BB) {
1825   CleanupHandler *Action = new CleanupHandler(BB);
1826   CleanupHandlerMap[BB] = Action;
1827   Actions.insertCleanupHandler(Action);
1828   DEBUG(dbgs() << "  Found cleanup code in block "
1829                << Action->getStartBlock()->getName() << "\n");
1830 }
1831
1832 static CallSite matchOutlinedFinallyCall(BasicBlock *BB,
1833                                          Instruction *MaybeCall) {
1834   // Look for finally blocks that Clang has already outlined for us.
1835   //   %fp = call i8* @llvm.frameaddress(i32 0)
1836   //   call void @"fin$parent"(iN 1, i8* %fp)
1837   if (isFrameAddressCall(MaybeCall) && MaybeCall != BB->getTerminator())
1838     MaybeCall = MaybeCall->getNextNode();
1839   CallSite FinallyCall(MaybeCall);
1840   if (!FinallyCall || FinallyCall.arg_size() != 2)
1841     return CallSite();
1842   if (!match(FinallyCall.getArgument(0), m_SpecificInt(1)))
1843     return CallSite();
1844   if (!isFrameAddressCall(FinallyCall.getArgument(1)))
1845     return CallSite();
1846   return FinallyCall;
1847 }
1848
1849 static BasicBlock *followSingleUnconditionalBranches(BasicBlock *BB) {
1850   // Skip single ubr blocks.
1851   while (BB->getFirstNonPHIOrDbg() == BB->getTerminator()) {
1852     auto *Br = dyn_cast<BranchInst>(BB->getTerminator());
1853     if (Br && Br->isUnconditional())
1854       BB = Br->getSuccessor(0);
1855     else
1856       return BB;
1857   }
1858   return BB;
1859 }
1860
1861 // This function searches starting with the input block for the next block that
1862 // contains code that is not part of a catch handler and would not be eliminated
1863 // during handler outlining.
1864 //
1865 void WinEHPrepare::findCleanupHandlers(LandingPadActions &Actions,
1866                                        BasicBlock *StartBB, BasicBlock *EndBB) {
1867   // Here we will skip over the following:
1868   //
1869   // landing pad prolog:
1870   //
1871   // Unconditional branches
1872   //
1873   // Selector dispatch
1874   //
1875   // Resume pattern
1876   //
1877   // Anything else marks the start of an interesting block
1878
1879   BasicBlock *BB = StartBB;
1880   // Anything other than an unconditional branch will kick us out of this loop
1881   // one way or another.
1882   while (BB) {
1883     BB = followSingleUnconditionalBranches(BB);
1884     // If we've already scanned this block, don't scan it again.  If it is
1885     // a cleanup block, there will be an action in the CleanupHandlerMap.
1886     // If we've scanned it and it is not a cleanup block, there will be a
1887     // nullptr in the CleanupHandlerMap.  If we have not scanned it, there will
1888     // be no entry in the CleanupHandlerMap.  We must call count() first to
1889     // avoid creating a null entry for blocks we haven't scanned.
1890     if (CleanupHandlerMap.count(BB)) {
1891       if (auto *Action = CleanupHandlerMap[BB]) {
1892         Actions.insertCleanupHandler(Action);
1893         DEBUG(dbgs() << "  Found cleanup code in block "
1894               << Action->getStartBlock()->getName() << "\n");
1895         // FIXME: This cleanup might chain into another, and we need to discover
1896         // that.
1897         return;
1898       } else {
1899         // Here we handle the case where the cleanup handler map contains a
1900         // value for this block but the value is a nullptr.  This means that
1901         // we have previously analyzed the block and determined that it did
1902         // not contain any cleanup code.  Based on the earlier analysis, we
1903         // know the the block must end in either an unconditional branch, a
1904         // resume or a conditional branch that is predicated on a comparison
1905         // with a selector.  Either the resume or the selector dispatch
1906         // would terminate the search for cleanup code, so the unconditional
1907         // branch is the only case for which we might need to continue
1908         // searching.
1909         BasicBlock *SuccBB = followSingleUnconditionalBranches(BB);
1910         if (SuccBB == BB || SuccBB == EndBB)
1911           return;
1912         BB = SuccBB;
1913         continue;
1914       }
1915     }
1916
1917     // Create an entry in the cleanup handler map for this block.  Initially
1918     // we create an entry that says this isn't a cleanup block.  If we find
1919     // cleanup code, the caller will replace this entry.
1920     CleanupHandlerMap[BB] = nullptr;
1921
1922     TerminatorInst *Terminator = BB->getTerminator();
1923
1924     // Landing pad blocks have extra instructions we need to accept.
1925     LandingPadMap *LPadMap = nullptr;
1926     if (BB->isLandingPad()) {
1927       LandingPadInst *LPad = BB->getLandingPadInst();
1928       LPadMap = &LPadMaps[LPad];
1929       if (!LPadMap->isInitialized())
1930         LPadMap->mapLandingPad(LPad);
1931     }
1932
1933     // Look for the bare resume pattern:
1934     //   %lpad.val1 = insertvalue { i8*, i32 } undef, i8* %exn, 0
1935     //   %lpad.val2 = insertvalue { i8*, i32 } %lpad.val1, i32 %sel, 1
1936     //   resume { i8*, i32 } %lpad.val2
1937     if (auto *Resume = dyn_cast<ResumeInst>(Terminator)) {
1938       InsertValueInst *Insert1 = nullptr;
1939       InsertValueInst *Insert2 = nullptr;
1940       Value *ResumeVal = Resume->getOperand(0);
1941       // If the resume value isn't a phi or landingpad value, it should be a
1942       // series of insertions. Identify them so we can avoid them when scanning
1943       // for cleanups.
1944       if (!isa<PHINode>(ResumeVal) && !isa<LandingPadInst>(ResumeVal)) {
1945         Insert2 = dyn_cast<InsertValueInst>(ResumeVal);
1946         if (!Insert2)
1947           return createCleanupHandler(Actions, CleanupHandlerMap, BB);
1948         Insert1 = dyn_cast<InsertValueInst>(Insert2->getAggregateOperand());
1949         if (!Insert1)
1950           return createCleanupHandler(Actions, CleanupHandlerMap, BB);
1951       }
1952       for (BasicBlock::iterator II = BB->getFirstNonPHIOrDbg(), IE = BB->end();
1953            II != IE; ++II) {
1954         Instruction *Inst = II;
1955         if (LPadMap && LPadMap->isLandingPadSpecificInst(Inst))
1956           continue;
1957         if (Inst == Insert1 || Inst == Insert2 || Inst == Resume)
1958           continue;
1959         if (!Inst->hasOneUse() ||
1960             (Inst->user_back() != Insert1 && Inst->user_back() != Insert2)) {
1961           return createCleanupHandler(Actions, CleanupHandlerMap, BB);
1962         }
1963       }
1964       return;
1965     }
1966
1967     BranchInst *Branch = dyn_cast<BranchInst>(Terminator);
1968     if (Branch && Branch->isConditional()) {
1969       // Look for the selector dispatch.
1970       //   %2 = call i32 @llvm.eh.typeid.for(i8* bitcast (i8** @_ZTIf to i8*))
1971       //   %matches = icmp eq i32 %sel, %2
1972       //   br i1 %matches, label %catch14, label %eh.resume
1973       CmpInst *Compare = dyn_cast<CmpInst>(Branch->getCondition());
1974       if (!Compare || !Compare->isEquality())
1975         return createCleanupHandler(Actions, CleanupHandlerMap, BB);
1976       for (BasicBlock::iterator II = BB->getFirstNonPHIOrDbg(), IE = BB->end();
1977            II != IE; ++II) {
1978         Instruction *Inst = II;
1979         if (LPadMap && LPadMap->isLandingPadSpecificInst(Inst))
1980           continue;
1981         if (Inst == Compare || Inst == Branch)
1982           continue;
1983         if (match(Inst, m_Intrinsic<Intrinsic::eh_typeid_for>()))
1984           continue;
1985         return createCleanupHandler(Actions, CleanupHandlerMap, BB);
1986       }
1987       // The selector dispatch block should always terminate our search.
1988       assert(BB == EndBB);
1989       return;
1990     }
1991
1992     if (isAsynchronousEHPersonality(Personality)) {
1993       // If this is a landingpad block, split the block at the first non-landing
1994       // pad instruction.
1995       Instruction *MaybeCall = BB->getFirstNonPHIOrDbg();
1996       if (LPadMap) {
1997         while (MaybeCall != BB->getTerminator() &&
1998                LPadMap->isLandingPadSpecificInst(MaybeCall))
1999           MaybeCall = MaybeCall->getNextNode();
2000       }
2001
2002       // Look for outlined finally calls.
2003       if (CallSite FinallyCall = matchOutlinedFinallyCall(BB, MaybeCall)) {
2004         Function *Fin = FinallyCall.getCalledFunction();
2005         assert(Fin && "outlined finally call should be direct");
2006         auto *Action = new CleanupHandler(BB);
2007         Action->setHandlerBlockOrFunc(Fin);
2008         Actions.insertCleanupHandler(Action);
2009         CleanupHandlerMap[BB] = Action;
2010         DEBUG(dbgs() << "  Found frontend-outlined finally call to "
2011                      << Fin->getName() << " in block "
2012                      << Action->getStartBlock()->getName() << "\n");
2013
2014         // Split the block if there were more interesting instructions and look
2015         // for finally calls in the normal successor block.
2016         BasicBlock *SuccBB = BB;
2017         if (FinallyCall.getInstruction() != BB->getTerminator() &&
2018             FinallyCall.getInstruction()->getNextNode() != BB->getTerminator()) {
2019           SuccBB = BB->splitBasicBlock(FinallyCall.getInstruction()->getNextNode());
2020         } else {
2021           if (FinallyCall.isInvoke()) {
2022             SuccBB = cast<InvokeInst>(FinallyCall.getInstruction())->getNormalDest();
2023           } else {
2024             SuccBB = BB->getUniqueSuccessor();
2025             assert(SuccBB && "splitOutlinedFinallyCalls didn't insert a branch");
2026           }
2027         }
2028         BB = SuccBB;
2029         if (BB == EndBB)
2030           return;
2031         continue;
2032       }
2033     }
2034
2035     // Anything else is either a catch block or interesting cleanup code.
2036     for (BasicBlock::iterator II = BB->getFirstNonPHIOrDbg(), IE = BB->end();
2037          II != IE; ++II) {
2038       Instruction *Inst = II;
2039       if (LPadMap && LPadMap->isLandingPadSpecificInst(Inst))
2040         continue;
2041       // Unconditional branches fall through to this loop.
2042       if (Inst == Branch)
2043         continue;
2044       // If this is a catch block, there is no cleanup code to be found.
2045       if (match(Inst, m_Intrinsic<Intrinsic::eh_begincatch>()))
2046         return;
2047       // If this a nested landing pad, it may contain an endcatch call.
2048       if (match(Inst, m_Intrinsic<Intrinsic::eh_endcatch>()))
2049         return;
2050       // Anything else makes this interesting cleanup code.
2051       return createCleanupHandler(Actions, CleanupHandlerMap, BB);
2052     }
2053
2054     // Only unconditional branches in empty blocks should get this far.
2055     assert(Branch && Branch->isUnconditional());
2056     if (BB == EndBB)
2057       return;
2058     BB = Branch->getSuccessor(0);
2059   }
2060 }
2061
2062 // This is a public function, declared in WinEHFuncInfo.h and is also
2063 // referenced by WinEHNumbering in FunctionLoweringInfo.cpp.
2064 void llvm::parseEHActions(const IntrinsicInst *II,
2065                           SmallVectorImpl<ActionHandler *> &Actions) {
2066   for (unsigned I = 0, E = II->getNumArgOperands(); I != E;) {
2067     uint64_t ActionKind =
2068         cast<ConstantInt>(II->getArgOperand(I))->getZExtValue();
2069     if (ActionKind == /*catch=*/1) {
2070       auto *Selector = cast<Constant>(II->getArgOperand(I + 1));
2071       ConstantInt *EHObjIndex = cast<ConstantInt>(II->getArgOperand(I + 2));
2072       int64_t EHObjIndexVal = EHObjIndex->getSExtValue();
2073       Constant *Handler = cast<Constant>(II->getArgOperand(I + 3));
2074       I += 4;
2075       auto *CH = new CatchHandler(/*BB=*/nullptr, Selector, /*NextBB=*/nullptr);
2076       CH->setHandlerBlockOrFunc(Handler);
2077       CH->setExceptionVarIndex(EHObjIndexVal);
2078       Actions.push_back(CH);
2079     } else if (ActionKind == 0) {
2080       Constant *Handler = cast<Constant>(II->getArgOperand(I + 1));
2081       I += 2;
2082       auto *CH = new CleanupHandler(/*BB=*/nullptr);
2083       CH->setHandlerBlockOrFunc(Handler);
2084       Actions.push_back(CH);
2085     } else {
2086       llvm_unreachable("Expected either a catch or cleanup handler!");
2087     }
2088   }
2089   std::reverse(Actions.begin(), Actions.end());
2090 }