xref: /llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyCFGStackify.cpp (revision 35f5f797a616c0eb8d6ae23ca24e3b80d3e3efdf)
1 //===-- WebAssemblyCFGStackify.cpp - CFG Stackification -------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 ///
9 /// \file
10 /// This file implements a CFG stacking pass.
11 ///
12 /// This pass inserts BLOCK, LOOP, and TRY markers to mark the start of scopes,
13 /// since scope boundaries serve as the labels for WebAssembly's control
14 /// transfers.
15 ///
16 /// This is sufficient to convert arbitrary CFGs into a form that works on
17 /// WebAssembly, provided that all loops are single-entry.
18 ///
19 /// In case we use exceptions, this pass also fixes mismatches in unwind
20 /// destinations created during transforming CFG into wasm structured format.
21 ///
22 //===----------------------------------------------------------------------===//
23 
24 #include "WebAssembly.h"
25 #include "WebAssemblyExceptionInfo.h"
26 #include "WebAssemblyMachineFunctionInfo.h"
27 #include "WebAssemblySortRegion.h"
28 #include "WebAssemblySubtarget.h"
29 #include "WebAssemblyUtilities.h"
30 #include "llvm/ADT/Statistic.h"
31 #include "llvm/CodeGen/MachineDominators.h"
32 #include "llvm/CodeGen/MachineInstrBuilder.h"
33 #include "llvm/CodeGen/MachineLoopInfo.h"
34 #include "llvm/CodeGen/WasmEHFuncInfo.h"
35 #include "llvm/MC/MCAsmInfo.h"
36 #include "llvm/Target/TargetMachine.h"
37 using namespace llvm;
38 using WebAssembly::SortRegionInfo;
39 
40 #define DEBUG_TYPE "wasm-cfg-stackify"
41 
42 STATISTIC(NumCallUnwindMismatches, "Number of call unwind mismatches found");
43 STATISTIC(NumCatchUnwindMismatches, "Number of catch unwind mismatches found");
44 
45 namespace {
46 class WebAssemblyCFGStackify final : public MachineFunctionPass {
47   StringRef getPassName() const override { return "WebAssembly CFG Stackify"; }
48 
49   void getAnalysisUsage(AnalysisUsage &AU) const override {
50     AU.addRequired<MachineDominatorTree>();
51     AU.addRequired<MachineLoopInfo>();
52     AU.addRequired<WebAssemblyExceptionInfo>();
53     MachineFunctionPass::getAnalysisUsage(AU);
54   }
55 
56   bool runOnMachineFunction(MachineFunction &MF) override;
57 
58   // For each block whose label represents the end of a scope, record the block
59   // which holds the beginning of the scope. This will allow us to quickly skip
60   // over scoped regions when walking blocks.
61   SmallVector<MachineBasicBlock *, 8> ScopeTops;
62   void updateScopeTops(MachineBasicBlock *Begin, MachineBasicBlock *End) {
63     int EndNo = End->getNumber();
64     if (!ScopeTops[EndNo] || ScopeTops[EndNo]->getNumber() > Begin->getNumber())
65       ScopeTops[EndNo] = Begin;
66   }
67 
68   // Placing markers.
69   void placeMarkers(MachineFunction &MF);
70   void placeBlockMarker(MachineBasicBlock &MBB);
71   void placeLoopMarker(MachineBasicBlock &MBB);
72   void placeTryMarker(MachineBasicBlock &MBB);
73 
74   // Exception handling related functions
75   bool fixCallUnwindMismatches(MachineFunction &MF);
76   bool fixCatchUnwindMismatches(MachineFunction &MF);
77   void addTryDelegate(MachineInstr *RangeBegin, MachineInstr *RangeEnd,
78                       MachineBasicBlock *DelegateDest);
79   void recalculateScopeTops(MachineFunction &MF);
80   void removeUnnecessaryInstrs(MachineFunction &MF);
81 
82   // Wrap-up
83   using EndMarkerInfo =
84       std::pair<const MachineBasicBlock *, const MachineInstr *>;
85   unsigned getBranchDepth(const SmallVectorImpl<EndMarkerInfo> &Stack,
86                           const MachineBasicBlock *MBB);
87   unsigned getDelegateDepth(const SmallVectorImpl<EndMarkerInfo> &Stack,
88                             const MachineBasicBlock *MBB);
89   unsigned
90   getRethrowDepth(const SmallVectorImpl<EndMarkerInfo> &Stack,
91                   const SmallVectorImpl<const MachineBasicBlock *> &EHPadStack);
92   void rewriteDepthImmediates(MachineFunction &MF);
93   void fixEndsAtEndOfFunction(MachineFunction &MF);
94   void cleanupFunctionData(MachineFunction &MF);
95 
96   // For each BLOCK|LOOP|TRY, the corresponding END_(BLOCK|LOOP|TRY) or DELEGATE
97   // (in case of TRY).
98   DenseMap<const MachineInstr *, MachineInstr *> BeginToEnd;
99   // For each END_(BLOCK|LOOP|TRY) or DELEGATE, the corresponding
100   // BLOCK|LOOP|TRY.
101   DenseMap<const MachineInstr *, MachineInstr *> EndToBegin;
102   // <TRY marker, EH pad> map
103   DenseMap<const MachineInstr *, MachineBasicBlock *> TryToEHPad;
104   // <EH pad, TRY marker> map
105   DenseMap<const MachineBasicBlock *, MachineInstr *> EHPadToTry;
106 
107   // We need an appendix block to place 'end_loop' or 'end_try' marker when the
108   // loop / exception bottom block is the last block in a function
109   MachineBasicBlock *AppendixBB = nullptr;
110   MachineBasicBlock *getAppendixBlock(MachineFunction &MF) {
111     if (!AppendixBB) {
112       AppendixBB = MF.CreateMachineBasicBlock();
113       // Give it a fake predecessor so that AsmPrinter prints its label.
114       AppendixBB->addSuccessor(AppendixBB);
115       MF.push_back(AppendixBB);
116     }
117     return AppendixBB;
118   }
119 
120   // Before running rewriteDepthImmediates function, 'delegate' has a BB as its
121   // destination operand. getFakeCallerBlock() returns a fake BB that will be
122   // used for the operand when 'delegate' needs to rethrow to the caller. This
123   // will be rewritten as an immediate value that is the number of block depths
124   // + 1 in rewriteDepthImmediates, and this fake BB will be removed at the end
125   // of the pass.
126   MachineBasicBlock *FakeCallerBB = nullptr;
127   MachineBasicBlock *getFakeCallerBlock(MachineFunction &MF) {
128     if (!FakeCallerBB)
129       FakeCallerBB = MF.CreateMachineBasicBlock();
130     return FakeCallerBB;
131   }
132 
133   // Helper functions to register / unregister scope information created by
134   // marker instructions.
135   void registerScope(MachineInstr *Begin, MachineInstr *End);
136   void registerTryScope(MachineInstr *Begin, MachineInstr *End,
137                         MachineBasicBlock *EHPad);
138   void unregisterScope(MachineInstr *Begin);
139 
140 public:
141   static char ID; // Pass identification, replacement for typeid
142   WebAssemblyCFGStackify() : MachineFunctionPass(ID) {}
143   ~WebAssemblyCFGStackify() override { releaseMemory(); }
144   void releaseMemory() override;
145 };
146 } // end anonymous namespace
147 
148 char WebAssemblyCFGStackify::ID = 0;
149 INITIALIZE_PASS(WebAssemblyCFGStackify, DEBUG_TYPE,
150                 "Insert BLOCK/LOOP/TRY markers for WebAssembly scopes", false,
151                 false)
152 
153 FunctionPass *llvm::createWebAssemblyCFGStackify() {
154   return new WebAssemblyCFGStackify();
155 }
156 
157 /// Test whether Pred has any terminators explicitly branching to MBB, as
158 /// opposed to falling through. Note that it's possible (eg. in unoptimized
159 /// code) for a branch instruction to both branch to a block and fallthrough
160 /// to it, so we check the actual branch operands to see if there are any
161 /// explicit mentions.
162 static bool explicitlyBranchesTo(MachineBasicBlock *Pred,
163                                  MachineBasicBlock *MBB) {
164   for (MachineInstr &MI : Pred->terminators())
165     for (MachineOperand &MO : MI.explicit_operands())
166       if (MO.isMBB() && MO.getMBB() == MBB)
167         return true;
168   return false;
169 }
170 
171 // Returns an iterator to the earliest position possible within the MBB,
172 // satisfying the restrictions given by BeforeSet and AfterSet. BeforeSet
173 // contains instructions that should go before the marker, and AfterSet contains
174 // ones that should go after the marker. In this function, AfterSet is only
175 // used for sanity checking.
176 template <typename Container>
177 static MachineBasicBlock::iterator
178 getEarliestInsertPos(MachineBasicBlock *MBB, const Container &BeforeSet,
179                      const Container &AfterSet) {
180   auto InsertPos = MBB->end();
181   while (InsertPos != MBB->begin()) {
182     if (BeforeSet.count(&*std::prev(InsertPos))) {
183 #ifndef NDEBUG
184       // Sanity check
185       for (auto Pos = InsertPos, E = MBB->begin(); Pos != E; --Pos)
186         assert(!AfterSet.count(&*std::prev(Pos)));
187 #endif
188       break;
189     }
190     --InsertPos;
191   }
192   return InsertPos;
193 }
194 
195 // Returns an iterator to the latest position possible within the MBB,
196 // satisfying the restrictions given by BeforeSet and AfterSet. BeforeSet
197 // contains instructions that should go before the marker, and AfterSet contains
198 // ones that should go after the marker. In this function, BeforeSet is only
199 // used for sanity checking.
200 template <typename Container>
201 static MachineBasicBlock::iterator
202 getLatestInsertPos(MachineBasicBlock *MBB, const Container &BeforeSet,
203                    const Container &AfterSet) {
204   auto InsertPos = MBB->begin();
205   while (InsertPos != MBB->end()) {
206     if (AfterSet.count(&*InsertPos)) {
207 #ifndef NDEBUG
208       // Sanity check
209       for (auto Pos = InsertPos, E = MBB->end(); Pos != E; ++Pos)
210         assert(!BeforeSet.count(&*Pos));
211 #endif
212       break;
213     }
214     ++InsertPos;
215   }
216   return InsertPos;
217 }
218 
219 void WebAssemblyCFGStackify::registerScope(MachineInstr *Begin,
220                                            MachineInstr *End) {
221   BeginToEnd[Begin] = End;
222   EndToBegin[End] = Begin;
223 }
224 
225 // When 'End' is not an 'end_try' but 'delegate, EHPad is nullptr.
226 void WebAssemblyCFGStackify::registerTryScope(MachineInstr *Begin,
227                                               MachineInstr *End,
228                                               MachineBasicBlock *EHPad) {
229   registerScope(Begin, End);
230   TryToEHPad[Begin] = EHPad;
231   EHPadToTry[EHPad] = Begin;
232 }
233 
234 void WebAssemblyCFGStackify::unregisterScope(MachineInstr *Begin) {
235   assert(BeginToEnd.count(Begin));
236   MachineInstr *End = BeginToEnd[Begin];
237   assert(EndToBegin.count(End));
238   BeginToEnd.erase(Begin);
239   EndToBegin.erase(End);
240   MachineBasicBlock *EHPad = TryToEHPad.lookup(Begin);
241   if (EHPad) {
242     assert(EHPadToTry.count(EHPad));
243     TryToEHPad.erase(Begin);
244     EHPadToTry.erase(EHPad);
245   }
246 }
247 
248 /// Insert a BLOCK marker for branches to MBB (if needed).
249 // TODO Consider a more generalized way of handling block (and also loop and
250 // try) signatures when we implement the multi-value proposal later.
251 void WebAssemblyCFGStackify::placeBlockMarker(MachineBasicBlock &MBB) {
252   assert(!MBB.isEHPad());
253   MachineFunction &MF = *MBB.getParent();
254   auto &MDT = getAnalysis<MachineDominatorTree>();
255   const auto &TII = *MF.getSubtarget<WebAssemblySubtarget>().getInstrInfo();
256   const auto &MFI = *MF.getInfo<WebAssemblyFunctionInfo>();
257 
258   // First compute the nearest common dominator of all forward non-fallthrough
259   // predecessors so that we minimize the time that the BLOCK is on the stack,
260   // which reduces overall stack height.
261   MachineBasicBlock *Header = nullptr;
262   bool IsBranchedTo = false;
263   int MBBNumber = MBB.getNumber();
264   for (MachineBasicBlock *Pred : MBB.predecessors()) {
265     if (Pred->getNumber() < MBBNumber) {
266       Header = Header ? MDT.findNearestCommonDominator(Header, Pred) : Pred;
267       if (explicitlyBranchesTo(Pred, &MBB))
268         IsBranchedTo = true;
269     }
270   }
271   if (!Header)
272     return;
273   if (!IsBranchedTo)
274     return;
275 
276   assert(&MBB != &MF.front() && "Header blocks shouldn't have predecessors");
277   MachineBasicBlock *LayoutPred = MBB.getPrevNode();
278 
279   // If the nearest common dominator is inside a more deeply nested context,
280   // walk out to the nearest scope which isn't more deeply nested.
281   for (MachineFunction::iterator I(LayoutPred), E(Header); I != E; --I) {
282     if (MachineBasicBlock *ScopeTop = ScopeTops[I->getNumber()]) {
283       if (ScopeTop->getNumber() > Header->getNumber()) {
284         // Skip over an intervening scope.
285         I = std::next(ScopeTop->getIterator());
286       } else {
287         // We found a scope level at an appropriate depth.
288         Header = ScopeTop;
289         break;
290       }
291     }
292   }
293 
294   // Decide where in Header to put the BLOCK.
295 
296   // Instructions that should go before the BLOCK.
297   SmallPtrSet<const MachineInstr *, 4> BeforeSet;
298   // Instructions that should go after the BLOCK.
299   SmallPtrSet<const MachineInstr *, 4> AfterSet;
300   for (const auto &MI : *Header) {
301     // If there is a previously placed LOOP marker and the bottom block of the
302     // loop is above MBB, it should be after the BLOCK, because the loop is
303     // nested in this BLOCK. Otherwise it should be before the BLOCK.
304     if (MI.getOpcode() == WebAssembly::LOOP) {
305       auto *LoopBottom = BeginToEnd[&MI]->getParent()->getPrevNode();
306       if (MBB.getNumber() > LoopBottom->getNumber())
307         AfterSet.insert(&MI);
308 #ifndef NDEBUG
309       else
310         BeforeSet.insert(&MI);
311 #endif
312     }
313 
314     // If there is a previously placed BLOCK/TRY marker and its corresponding
315     // END marker is before the current BLOCK's END marker, that should be
316     // placed after this BLOCK. Otherwise it should be placed before this BLOCK
317     // marker.
318     if (MI.getOpcode() == WebAssembly::BLOCK ||
319         MI.getOpcode() == WebAssembly::TRY) {
320       if (BeginToEnd[&MI]->getParent()->getNumber() <= MBB.getNumber())
321         AfterSet.insert(&MI);
322 #ifndef NDEBUG
323       else
324         BeforeSet.insert(&MI);
325 #endif
326     }
327 
328 #ifndef NDEBUG
329     // All END_(BLOCK|LOOP|TRY) markers should be before the BLOCK.
330     if (MI.getOpcode() == WebAssembly::END_BLOCK ||
331         MI.getOpcode() == WebAssembly::END_LOOP ||
332         MI.getOpcode() == WebAssembly::END_TRY)
333       BeforeSet.insert(&MI);
334 #endif
335 
336     // Terminators should go after the BLOCK.
337     if (MI.isTerminator())
338       AfterSet.insert(&MI);
339   }
340 
341   // Local expression tree should go after the BLOCK.
342   for (auto I = Header->getFirstTerminator(), E = Header->begin(); I != E;
343        --I) {
344     if (std::prev(I)->isDebugInstr() || std::prev(I)->isPosition())
345       continue;
346     if (WebAssembly::isChild(*std::prev(I), MFI))
347       AfterSet.insert(&*std::prev(I));
348     else
349       break;
350   }
351 
352   // Add the BLOCK.
353   WebAssembly::BlockType ReturnType = WebAssembly::BlockType::Void;
354   auto InsertPos = getLatestInsertPos(Header, BeforeSet, AfterSet);
355   MachineInstr *Begin =
356       BuildMI(*Header, InsertPos, Header->findDebugLoc(InsertPos),
357               TII.get(WebAssembly::BLOCK))
358           .addImm(int64_t(ReturnType));
359 
360   // Decide where in Header to put the END_BLOCK.
361   BeforeSet.clear();
362   AfterSet.clear();
363   for (auto &MI : MBB) {
364 #ifndef NDEBUG
365     // END_BLOCK should precede existing LOOP and TRY markers.
366     if (MI.getOpcode() == WebAssembly::LOOP ||
367         MI.getOpcode() == WebAssembly::TRY)
368       AfterSet.insert(&MI);
369 #endif
370 
371     // If there is a previously placed END_LOOP marker and the header of the
372     // loop is above this block's header, the END_LOOP should be placed after
373     // the BLOCK, because the loop contains this block. Otherwise the END_LOOP
374     // should be placed before the BLOCK. The same for END_TRY.
375     if (MI.getOpcode() == WebAssembly::END_LOOP ||
376         MI.getOpcode() == WebAssembly::END_TRY) {
377       if (EndToBegin[&MI]->getParent()->getNumber() >= Header->getNumber())
378         BeforeSet.insert(&MI);
379 #ifndef NDEBUG
380       else
381         AfterSet.insert(&MI);
382 #endif
383     }
384   }
385 
386   // Mark the end of the block.
387   InsertPos = getEarliestInsertPos(&MBB, BeforeSet, AfterSet);
388   MachineInstr *End = BuildMI(MBB, InsertPos, MBB.findPrevDebugLoc(InsertPos),
389                               TII.get(WebAssembly::END_BLOCK));
390   registerScope(Begin, End);
391 
392   // Track the farthest-spanning scope that ends at this point.
393   updateScopeTops(Header, &MBB);
394 }
395 
396 /// Insert a LOOP marker for a loop starting at MBB (if it's a loop header).
397 void WebAssemblyCFGStackify::placeLoopMarker(MachineBasicBlock &MBB) {
398   MachineFunction &MF = *MBB.getParent();
399   const auto &MLI = getAnalysis<MachineLoopInfo>();
400   const auto &WEI = getAnalysis<WebAssemblyExceptionInfo>();
401   SortRegionInfo SRI(MLI, WEI);
402   const auto &TII = *MF.getSubtarget<WebAssemblySubtarget>().getInstrInfo();
403 
404   MachineLoop *Loop = MLI.getLoopFor(&MBB);
405   if (!Loop || Loop->getHeader() != &MBB)
406     return;
407 
408   // The operand of a LOOP is the first block after the loop. If the loop is the
409   // bottom of the function, insert a dummy block at the end.
410   MachineBasicBlock *Bottom = SRI.getBottom(Loop);
411   auto Iter = std::next(Bottom->getIterator());
412   if (Iter == MF.end()) {
413     getAppendixBlock(MF);
414     Iter = std::next(Bottom->getIterator());
415   }
416   MachineBasicBlock *AfterLoop = &*Iter;
417 
418   // Decide where in Header to put the LOOP.
419   SmallPtrSet<const MachineInstr *, 4> BeforeSet;
420   SmallPtrSet<const MachineInstr *, 4> AfterSet;
421   for (const auto &MI : MBB) {
422     // LOOP marker should be after any existing loop that ends here. Otherwise
423     // we assume the instruction belongs to the loop.
424     if (MI.getOpcode() == WebAssembly::END_LOOP)
425       BeforeSet.insert(&MI);
426 #ifndef NDEBUG
427     else
428       AfterSet.insert(&MI);
429 #endif
430   }
431 
432   // Mark the beginning of the loop.
433   auto InsertPos = getEarliestInsertPos(&MBB, BeforeSet, AfterSet);
434   MachineInstr *Begin = BuildMI(MBB, InsertPos, MBB.findDebugLoc(InsertPos),
435                                 TII.get(WebAssembly::LOOP))
436                             .addImm(int64_t(WebAssembly::BlockType::Void));
437 
438   // Decide where in Header to put the END_LOOP.
439   BeforeSet.clear();
440   AfterSet.clear();
441 #ifndef NDEBUG
442   for (const auto &MI : MBB)
443     // Existing END_LOOP markers belong to parent loops of this loop
444     if (MI.getOpcode() == WebAssembly::END_LOOP)
445       AfterSet.insert(&MI);
446 #endif
447 
448   // Mark the end of the loop (using arbitrary debug location that branched to
449   // the loop end as its location).
450   InsertPos = getEarliestInsertPos(AfterLoop, BeforeSet, AfterSet);
451   DebugLoc EndDL = AfterLoop->pred_empty()
452                        ? DebugLoc()
453                        : (*AfterLoop->pred_rbegin())->findBranchDebugLoc();
454   MachineInstr *End =
455       BuildMI(*AfterLoop, InsertPos, EndDL, TII.get(WebAssembly::END_LOOP));
456   registerScope(Begin, End);
457 
458   assert((!ScopeTops[AfterLoop->getNumber()] ||
459           ScopeTops[AfterLoop->getNumber()]->getNumber() < MBB.getNumber()) &&
460          "With block sorting the outermost loop for a block should be first.");
461   updateScopeTops(&MBB, AfterLoop);
462 }
463 
464 void WebAssemblyCFGStackify::placeTryMarker(MachineBasicBlock &MBB) {
465   assert(MBB.isEHPad());
466   MachineFunction &MF = *MBB.getParent();
467   auto &MDT = getAnalysis<MachineDominatorTree>();
468   const auto &TII = *MF.getSubtarget<WebAssemblySubtarget>().getInstrInfo();
469   const auto &MLI = getAnalysis<MachineLoopInfo>();
470   const auto &WEI = getAnalysis<WebAssemblyExceptionInfo>();
471   SortRegionInfo SRI(MLI, WEI);
472   const auto &MFI = *MF.getInfo<WebAssemblyFunctionInfo>();
473 
474   // Compute the nearest common dominator of all unwind predecessors
475   MachineBasicBlock *Header = nullptr;
476   int MBBNumber = MBB.getNumber();
477   for (auto *Pred : MBB.predecessors()) {
478     if (Pred->getNumber() < MBBNumber) {
479       Header = Header ? MDT.findNearestCommonDominator(Header, Pred) : Pred;
480       assert(!explicitlyBranchesTo(Pred, &MBB) &&
481              "Explicit branch to an EH pad!");
482     }
483   }
484   if (!Header)
485     return;
486 
487   // If this try is at the bottom of the function, insert a dummy block at the
488   // end.
489   WebAssemblyException *WE = WEI.getExceptionFor(&MBB);
490   assert(WE);
491   MachineBasicBlock *Bottom = SRI.getBottom(WE);
492 
493   auto Iter = std::next(Bottom->getIterator());
494   if (Iter == MF.end()) {
495     getAppendixBlock(MF);
496     Iter = std::next(Bottom->getIterator());
497   }
498   MachineBasicBlock *Cont = &*Iter;
499 
500   assert(Cont != &MF.front());
501   MachineBasicBlock *LayoutPred = Cont->getPrevNode();
502 
503   // If the nearest common dominator is inside a more deeply nested context,
504   // walk out to the nearest scope which isn't more deeply nested.
505   for (MachineFunction::iterator I(LayoutPred), E(Header); I != E; --I) {
506     if (MachineBasicBlock *ScopeTop = ScopeTops[I->getNumber()]) {
507       if (ScopeTop->getNumber() > Header->getNumber()) {
508         // Skip over an intervening scope.
509         I = std::next(ScopeTop->getIterator());
510       } else {
511         // We found a scope level at an appropriate depth.
512         Header = ScopeTop;
513         break;
514       }
515     }
516   }
517 
518   // Decide where in Header to put the TRY.
519 
520   // Instructions that should go before the TRY.
521   SmallPtrSet<const MachineInstr *, 4> BeforeSet;
522   // Instructions that should go after the TRY.
523   SmallPtrSet<const MachineInstr *, 4> AfterSet;
524   for (const auto &MI : *Header) {
525     // If there is a previously placed LOOP marker and the bottom block of the
526     // loop is above MBB, it should be after the TRY, because the loop is nested
527     // in this TRY. Otherwise it should be before the TRY.
528     if (MI.getOpcode() == WebAssembly::LOOP) {
529       auto *LoopBottom = BeginToEnd[&MI]->getParent()->getPrevNode();
530       if (MBB.getNumber() > LoopBottom->getNumber())
531         AfterSet.insert(&MI);
532 #ifndef NDEBUG
533       else
534         BeforeSet.insert(&MI);
535 #endif
536     }
537 
538     // All previously inserted BLOCK/TRY markers should be after the TRY because
539     // they are all nested trys.
540     if (MI.getOpcode() == WebAssembly::BLOCK ||
541         MI.getOpcode() == WebAssembly::TRY)
542       AfterSet.insert(&MI);
543 
544 #ifndef NDEBUG
545     // All END_(BLOCK/LOOP/TRY) markers should be before the TRY.
546     if (MI.getOpcode() == WebAssembly::END_BLOCK ||
547         MI.getOpcode() == WebAssembly::END_LOOP ||
548         MI.getOpcode() == WebAssembly::END_TRY)
549       BeforeSet.insert(&MI);
550 #endif
551 
552     // Terminators should go after the TRY.
553     if (MI.isTerminator())
554       AfterSet.insert(&MI);
555   }
556 
557   // If Header unwinds to MBB (= Header contains 'invoke'), the try block should
558   // contain the call within it. So the call should go after the TRY. The
559   // exception is when the header's terminator is a rethrow instruction, in
560   // which case that instruction, not a call instruction before it, is gonna
561   // throw.
562   MachineInstr *ThrowingCall = nullptr;
563   if (MBB.isPredecessor(Header)) {
564     auto TermPos = Header->getFirstTerminator();
565     if (TermPos == Header->end() ||
566         TermPos->getOpcode() != WebAssembly::RETHROW) {
567       for (auto &MI : reverse(*Header)) {
568         if (MI.isCall()) {
569           AfterSet.insert(&MI);
570           ThrowingCall = &MI;
571           // Possibly throwing calls are usually wrapped by EH_LABEL
572           // instructions. We don't want to split them and the call.
573           if (MI.getIterator() != Header->begin() &&
574               std::prev(MI.getIterator())->isEHLabel()) {
575             AfterSet.insert(&*std::prev(MI.getIterator()));
576             ThrowingCall = &*std::prev(MI.getIterator());
577           }
578           break;
579         }
580       }
581     }
582   }
583 
584   // Local expression tree should go after the TRY.
585   // For BLOCK placement, we start the search from the previous instruction of a
586   // BB's terminator, but in TRY's case, we should start from the previous
587   // instruction of a call that can throw, or a EH_LABEL that precedes the call,
588   // because the return values of the call's previous instructions can be
589   // stackified and consumed by the throwing call.
590   auto SearchStartPt = ThrowingCall ? MachineBasicBlock::iterator(ThrowingCall)
591                                     : Header->getFirstTerminator();
592   for (auto I = SearchStartPt, E = Header->begin(); I != E; --I) {
593     if (std::prev(I)->isDebugInstr() || std::prev(I)->isPosition())
594       continue;
595     if (WebAssembly::isChild(*std::prev(I), MFI))
596       AfterSet.insert(&*std::prev(I));
597     else
598       break;
599   }
600 
601   // Add the TRY.
602   auto InsertPos = getLatestInsertPos(Header, BeforeSet, AfterSet);
603   MachineInstr *Begin =
604       BuildMI(*Header, InsertPos, Header->findDebugLoc(InsertPos),
605               TII.get(WebAssembly::TRY))
606           .addImm(int64_t(WebAssembly::BlockType::Void));
607 
608   // Decide where in Header to put the END_TRY.
609   BeforeSet.clear();
610   AfterSet.clear();
611   for (const auto &MI : *Cont) {
612 #ifndef NDEBUG
613     // END_TRY should precede existing LOOP and BLOCK markers.
614     if (MI.getOpcode() == WebAssembly::LOOP ||
615         MI.getOpcode() == WebAssembly::BLOCK)
616       AfterSet.insert(&MI);
617 
618     // All END_TRY markers placed earlier belong to exceptions that contains
619     // this one.
620     if (MI.getOpcode() == WebAssembly::END_TRY)
621       AfterSet.insert(&MI);
622 #endif
623 
624     // If there is a previously placed END_LOOP marker and its header is after
625     // where TRY marker is, this loop is contained within the 'catch' part, so
626     // the END_TRY marker should go after that. Otherwise, the whole try-catch
627     // is contained within this loop, so the END_TRY should go before that.
628     if (MI.getOpcode() == WebAssembly::END_LOOP) {
629       // For a LOOP to be after TRY, LOOP's BB should be after TRY's BB; if they
630       // are in the same BB, LOOP is always before TRY.
631       if (EndToBegin[&MI]->getParent()->getNumber() > Header->getNumber())
632         BeforeSet.insert(&MI);
633 #ifndef NDEBUG
634       else
635         AfterSet.insert(&MI);
636 #endif
637     }
638 
639     // It is not possible for an END_BLOCK to be already in this block.
640   }
641 
642   // Mark the end of the TRY.
643   InsertPos = getEarliestInsertPos(Cont, BeforeSet, AfterSet);
644   MachineInstr *End =
645       BuildMI(*Cont, InsertPos, Bottom->findBranchDebugLoc(),
646               TII.get(WebAssembly::END_TRY));
647   registerTryScope(Begin, End, &MBB);
648 
649   // Track the farthest-spanning scope that ends at this point. We create two
650   // mappings: (BB with 'end_try' -> BB with 'try') and (BB with 'catch' -> BB
651   // with 'try'). We need to create 'catch' -> 'try' mapping here too because
652   // markers should not span across 'catch'. For example, this should not
653   // happen:
654   //
655   // try
656   //   block     --|  (X)
657   // catch         |
658   //   end_block --|
659   // end_try
660   for (auto *End : {&MBB, Cont})
661     updateScopeTops(Header, End);
662 }
663 
664 void WebAssemblyCFGStackify::removeUnnecessaryInstrs(MachineFunction &MF) {
665   const auto &TII = *MF.getSubtarget<WebAssemblySubtarget>().getInstrInfo();
666 
667   // When there is an unconditional branch right before a catch instruction and
668   // it branches to the end of end_try marker, we don't need the branch, because
669   // it there is no exception, the control flow transfers to that point anyway.
670   // bb0:
671   //   try
672   //     ...
673   //     br bb2      <- Not necessary
674   // bb1 (ehpad):
675   //   catch
676   //     ...
677   // bb2:            <- Continuation BB
678   //   end
679   //
680   // A more involved case: When the BB where 'end' is located is an another EH
681   // pad, the Cont (= continuation) BB is that EH pad's 'end' BB. For example,
682   // bb0:
683   //   try
684   //     try
685   //       ...
686   //       br bb3      <- Not necessary
687   // bb1 (ehpad):
688   //     catch
689   // bb2 (ehpad):
690   //     end
691   //   catch
692   //     ...
693   // bb3:            <- Continuation BB
694   //   end
695   //
696   // When the EH pad at hand is bb1, its matching end_try is in bb2. But it is
697   // another EH pad, so bb0's continuation BB becomes bb3. So 'br bb3' in the
698   // code can be deleted. This is why we run 'while' until 'Cont' is not an EH
699   // pad.
700   for (auto &MBB : MF) {
701     if (!MBB.isEHPad())
702       continue;
703 
704     MachineBasicBlock *TBB = nullptr, *FBB = nullptr;
705     SmallVector<MachineOperand, 4> Cond;
706     MachineBasicBlock *EHPadLayoutPred = MBB.getPrevNode();
707 
708     MachineBasicBlock *Cont = &MBB;
709     while (Cont->isEHPad()) {
710       MachineInstr *Try = EHPadToTry[Cont];
711       MachineInstr *EndTry = BeginToEnd[Try];
712       // We started from an EH pad, so the end marker cannot be a delegate
713       assert(EndTry->getOpcode() != WebAssembly::DELEGATE);
714       Cont = EndTry->getParent();
715     }
716 
717     bool Analyzable = !TII.analyzeBranch(*EHPadLayoutPred, TBB, FBB, Cond);
718     // This condition means either
719     // 1. This BB ends with a single unconditional branch whose destinaion is
720     //    Cont.
721     // 2. This BB ends with a conditional branch followed by an unconditional
722     //    branch, and the unconditional branch's destination is Cont.
723     // In both cases, we want to remove the last (= unconditional) branch.
724     if (Analyzable && ((Cond.empty() && TBB && TBB == Cont) ||
725                        (!Cond.empty() && FBB && FBB == Cont))) {
726       bool ErasedUncondBr = false;
727       (void)ErasedUncondBr;
728       for (auto I = EHPadLayoutPred->end(), E = EHPadLayoutPred->begin();
729            I != E; --I) {
730         auto PrevI = std::prev(I);
731         if (PrevI->isTerminator()) {
732           assert(PrevI->getOpcode() == WebAssembly::BR);
733           PrevI->eraseFromParent();
734           ErasedUncondBr = true;
735           break;
736         }
737       }
738       assert(ErasedUncondBr && "Unconditional branch not erased!");
739     }
740   }
741 
742   // When there are block / end_block markers that overlap with try / end_try
743   // markers, and the block and try markers' return types are the same, the
744   // block /end_block markers are not necessary, because try / end_try markers
745   // also can serve as boundaries for branches.
746   // block         <- Not necessary
747   //   try
748   //     ...
749   //   catch
750   //     ...
751   //   end
752   // end           <- Not necessary
753   SmallVector<MachineInstr *, 32> ToDelete;
754   for (auto &MBB : MF) {
755     for (auto &MI : MBB) {
756       if (MI.getOpcode() != WebAssembly::TRY)
757         continue;
758       MachineInstr *Try = &MI, *EndTry = BeginToEnd[Try];
759       if (EndTry->getOpcode() == WebAssembly::DELEGATE)
760         continue;
761 
762       MachineBasicBlock *TryBB = Try->getParent();
763       MachineBasicBlock *Cont = EndTry->getParent();
764       int64_t RetType = Try->getOperand(0).getImm();
765       for (auto B = Try->getIterator(), E = std::next(EndTry->getIterator());
766            B != TryBB->begin() && E != Cont->end() &&
767            std::prev(B)->getOpcode() == WebAssembly::BLOCK &&
768            E->getOpcode() == WebAssembly::END_BLOCK &&
769            std::prev(B)->getOperand(0).getImm() == RetType;
770            --B, ++E) {
771         ToDelete.push_back(&*std::prev(B));
772         ToDelete.push_back(&*E);
773       }
774     }
775   }
776   for (auto *MI : ToDelete) {
777     if (MI->getOpcode() == WebAssembly::BLOCK)
778       unregisterScope(MI);
779     MI->eraseFromParent();
780   }
781 }
782 
783 // Get the appropriate copy opcode for the given register class.
784 static unsigned getCopyOpcode(const TargetRegisterClass *RC) {
785   if (RC == &WebAssembly::I32RegClass)
786     return WebAssembly::COPY_I32;
787   if (RC == &WebAssembly::I64RegClass)
788     return WebAssembly::COPY_I64;
789   if (RC == &WebAssembly::F32RegClass)
790     return WebAssembly::COPY_F32;
791   if (RC == &WebAssembly::F64RegClass)
792     return WebAssembly::COPY_F64;
793   if (RC == &WebAssembly::V128RegClass)
794     return WebAssembly::COPY_V128;
795   if (RC == &WebAssembly::FUNCREFRegClass)
796     return WebAssembly::COPY_FUNCREF;
797   if (RC == &WebAssembly::EXTERNREFRegClass)
798     return WebAssembly::COPY_EXTERNREF;
799   llvm_unreachable("Unexpected register class");
800 }
801 
802 // When MBB is split into MBB and Split, we should unstackify defs in MBB that
803 // have their uses in Split.
804 static void unstackifyVRegsUsedInSplitBB(MachineBasicBlock &MBB,
805                                          MachineBasicBlock &Split) {
806   MachineFunction &MF = *MBB.getParent();
807   const auto &TII = *MF.getSubtarget<WebAssemblySubtarget>().getInstrInfo();
808   auto &MFI = *MF.getInfo<WebAssemblyFunctionInfo>();
809   auto &MRI = MF.getRegInfo();
810 
811   for (auto &MI : Split) {
812     for (auto &MO : MI.explicit_uses()) {
813       if (!MO.isReg() || Register::isPhysicalRegister(MO.getReg()))
814         continue;
815       if (MachineInstr *Def = MRI.getUniqueVRegDef(MO.getReg()))
816         if (Def->getParent() == &MBB)
817           MFI.unstackifyVReg(MO.getReg());
818     }
819   }
820 
821   // In RegStackify, when a register definition is used multiple times,
822   //    Reg = INST ...
823   //    INST ..., Reg, ...
824   //    INST ..., Reg, ...
825   //    INST ..., Reg, ...
826   //
827   // we introduce a TEE, which has the following form:
828   //    DefReg = INST ...
829   //    TeeReg, Reg = TEE_... DefReg
830   //    INST ..., TeeReg, ...
831   //    INST ..., Reg, ...
832   //    INST ..., Reg, ...
833   // with DefReg and TeeReg stackified but Reg not stackified.
834   //
835   // But the invariant that TeeReg should be stackified can be violated while we
836   // unstackify registers in the split BB above. In this case, we convert TEEs
837   // into two COPYs. This COPY will be eventually eliminated in ExplicitLocals.
838   //    DefReg = INST ...
839   //    TeeReg = COPY DefReg
840   //    Reg = COPY DefReg
841   //    INST ..., TeeReg, ...
842   //    INST ..., Reg, ...
843   //    INST ..., Reg, ...
844   for (auto I = MBB.begin(), E = MBB.end(); I != E;) {
845     MachineInstr &MI = *I++;
846     if (!WebAssembly::isTee(MI.getOpcode()))
847       continue;
848     Register TeeReg = MI.getOperand(0).getReg();
849     Register Reg = MI.getOperand(1).getReg();
850     Register DefReg = MI.getOperand(2).getReg();
851     if (!MFI.isVRegStackified(TeeReg)) {
852       // Now we are not using TEE anymore, so unstackify DefReg too
853       MFI.unstackifyVReg(DefReg);
854       unsigned CopyOpc = getCopyOpcode(MRI.getRegClass(DefReg));
855       BuildMI(MBB, &MI, MI.getDebugLoc(), TII.get(CopyOpc), TeeReg)
856           .addReg(DefReg);
857       BuildMI(MBB, &MI, MI.getDebugLoc(), TII.get(CopyOpc), Reg).addReg(DefReg);
858       MI.eraseFromParent();
859     }
860   }
861 }
862 
863 // Wrap the given range of instruction with try-delegate. RangeBegin and
864 // RangeEnd are inclusive.
865 void WebAssemblyCFGStackify::addTryDelegate(MachineInstr *RangeBegin,
866                                             MachineInstr *RangeEnd,
867                                             MachineBasicBlock *DelegateDest) {
868   auto *BeginBB = RangeBegin->getParent();
869   auto *EndBB = RangeEnd->getParent();
870   MachineFunction &MF = *BeginBB->getParent();
871   const auto &MFI = *MF.getInfo<WebAssemblyFunctionInfo>();
872   const auto &TII = *MF.getSubtarget<WebAssemblySubtarget>().getInstrInfo();
873 
874   // Local expression tree before the first call of this range should go
875   // after the nested TRY.
876   SmallPtrSet<const MachineInstr *, 4> AfterSet;
877   AfterSet.insert(RangeBegin);
878   for (auto I = MachineBasicBlock::iterator(RangeBegin), E = BeginBB->begin();
879        I != E; --I) {
880     if (std::prev(I)->isDebugInstr() || std::prev(I)->isPosition())
881       continue;
882     if (WebAssembly::isChild(*std::prev(I), MFI))
883       AfterSet.insert(&*std::prev(I));
884     else
885       break;
886   }
887 
888   // Create the nested try instruction.
889   auto TryPos = getLatestInsertPos(
890       BeginBB, SmallPtrSet<const MachineInstr *, 4>(), AfterSet);
891   MachineInstr *Try = BuildMI(*BeginBB, TryPos, RangeBegin->getDebugLoc(),
892                               TII.get(WebAssembly::TRY))
893                           .addImm(int64_t(WebAssembly::BlockType::Void));
894 
895   // Create a BB to insert the 'delegate' instruction.
896   MachineBasicBlock *DelegateBB = MF.CreateMachineBasicBlock();
897   // If the destination of 'delegate' is not the caller, adds the destination to
898   // the BB's successors.
899   if (DelegateDest != FakeCallerBB)
900     DelegateBB->addSuccessor(DelegateDest);
901 
902   auto SplitPos = std::next(RangeEnd->getIterator());
903   if (SplitPos == EndBB->end()) {
904     // If the range's end instruction is at the end of the BB, insert the new
905     // delegate BB after the current BB.
906     MF.insert(std::next(EndBB->getIterator()), DelegateBB);
907     EndBB->addSuccessor(DelegateBB);
908 
909   } else {
910     // When the split pos is in the middle of a BB, we split the BB into two and
911     // put the 'delegate' BB in between. We normally create a split BB and make
912     // it a successor of the original BB (PostSplit == true), but in case the BB
913     // is an EH pad and the split pos is before 'catch', we should preserve the
914     // BB's property, including that it is an EH pad, in the later part of the
915     // BB, where 'catch' is. In this case we set PostSplit to false.
916     bool PostSplit = true;
917     if (EndBB->isEHPad()) {
918       for (auto I = MachineBasicBlock::iterator(SplitPos), E = EndBB->end();
919            I != E; ++I) {
920         if (WebAssembly::isCatch(I->getOpcode())) {
921           PostSplit = false;
922           break;
923         }
924       }
925     }
926 
927     MachineBasicBlock *PreBB = nullptr, *PostBB = nullptr;
928     if (PostSplit) {
929       // If the range's end instruction is in the middle of the BB, we split the
930       // BB into two and insert the delegate BB in between.
931       // - Before:
932       // bb:
933       //   range_end
934       //   other_insts
935       //
936       // - After:
937       // pre_bb: (previous 'bb')
938       //   range_end
939       // delegate_bb: (new)
940       //   delegate
941       // post_bb: (new)
942       //   other_insts
943       PreBB = EndBB;
944       PostBB = MF.CreateMachineBasicBlock();
945       MF.insert(std::next(PreBB->getIterator()), PostBB);
946       MF.insert(std::next(PreBB->getIterator()), DelegateBB);
947       PostBB->splice(PostBB->end(), PreBB, SplitPos, PreBB->end());
948       PostBB->transferSuccessors(PreBB);
949     } else {
950       // - Before:
951       // ehpad:
952       //   range_end
953       //   catch
954       //   ...
955       //
956       // - After:
957       // pre_bb: (new)
958       //   range_end
959       // delegate_bb: (new)
960       //   delegate
961       // post_bb: (previous 'ehpad')
962       //   catch
963       //   ...
964       assert(EndBB->isEHPad());
965       PreBB = MF.CreateMachineBasicBlock();
966       PostBB = EndBB;
967       MF.insert(PostBB->getIterator(), PreBB);
968       MF.insert(PostBB->getIterator(), DelegateBB);
969       PreBB->splice(PreBB->end(), PostBB, PostBB->begin(), SplitPos);
970       // We don't need to transfer predecessors of the EH pad to 'PreBB',
971       // because an EH pad's predecessors are all through unwind edges and they
972       // should still unwind to the EH pad, not PreBB.
973     }
974     unstackifyVRegsUsedInSplitBB(*PreBB, *PostBB);
975     PreBB->addSuccessor(DelegateBB);
976     PreBB->addSuccessor(PostBB);
977   }
978 
979   // Add 'delegate' instruction in the delegate BB created above.
980   MachineInstr *Delegate = BuildMI(DelegateBB, RangeEnd->getDebugLoc(),
981                                    TII.get(WebAssembly::DELEGATE))
982                                .addMBB(DelegateDest);
983   registerTryScope(Try, Delegate, nullptr);
984 }
985 
986 bool WebAssemblyCFGStackify::fixCallUnwindMismatches(MachineFunction &MF) {
987   // Linearizing the control flow by placing TRY / END_TRY markers can create
988   // mismatches in unwind destinations for throwing instructions, such as calls.
989   //
990   // We use the 'delegate' instruction to fix the unwind mismatches. 'delegate'
991   // instruction delegates an exception to an outer 'catch'. It can target not
992   // only 'catch' but all block-like structures including another 'delegate',
993   // but with slightly different semantics than branches. When it targets a
994   // 'catch', it will delegate the exception to that catch. It is being
995   // discussed how to define the semantics when 'delegate''s target is a non-try
996   // block: it will either be a validation failure or it will target the next
997   // outer try-catch. But anyway our LLVM backend currently does not generate
998   // such code. The example below illustrates where the 'delegate' instruction
999   // in the middle will delegate the exception to, depending on the value of N.
1000   // try
1001   //   try
1002   //     block
1003   //       try
1004   //         try
1005   //           call @foo
1006   //         delegate N    ;; Where will this delegate to?
1007   //       catch           ;; N == 0
1008   //       end
1009   //     end               ;; N == 1 (invalid; will not be generated)
1010   //   delegate            ;; N == 2
1011   // catch                 ;; N == 3
1012   // end
1013   //                       ;; N == 4 (to caller)
1014 
1015   // 1. When an instruction may throw, but the EH pad it will unwind to can be
1016   //    different from the original CFG.
1017   //
1018   // Example: we have the following CFG:
1019   // bb0:
1020   //   call @foo    ; if it throws, unwind to bb2
1021   // bb1:
1022   //   call @bar    ; if it throws, unwind to bb3
1023   // bb2 (ehpad):
1024   //   catch
1025   //   ...
1026   // bb3 (ehpad)
1027   //   catch
1028   //   ...
1029   //
1030   // And the CFG is sorted in this order. Then after placing TRY markers, it
1031   // will look like: (BB markers are omitted)
1032   // try
1033   //   try
1034   //     call @foo
1035   //     call @bar   ;; if it throws, unwind to bb3
1036   //   catch         ;; ehpad (bb2)
1037   //     ...
1038   //   end_try
1039   // catch           ;; ehpad (bb3)
1040   //   ...
1041   // end_try
1042   //
1043   // Now if bar() throws, it is going to end up ip in bb2, not bb3, where it
1044   // is supposed to end up. We solve this problem by wrapping the mismatching
1045   // call with an inner try-delegate that rethrows the exception to the right
1046   // 'catch'.
1047   //
1048   // try
1049   //   try
1050   //     call @foo
1051   //     try               ;; (new)
1052   //       call @bar
1053   //     delegate 1 (bb3)  ;; (new)
1054   //   catch               ;; ehpad (bb2)
1055   //     ...
1056   //   end_try
1057   // catch                 ;; ehpad (bb3)
1058   //   ...
1059   // end_try
1060   //
1061   // ---
1062   // 2. The same as 1, but in this case an instruction unwinds to a caller
1063   //    function and not another EH pad.
1064   //
1065   // Example: we have the following CFG:
1066   // bb0:
1067   //   call @foo       ; if it throws, unwind to bb2
1068   // bb1:
1069   //   call @bar       ; if it throws, unwind to caller
1070   // bb2 (ehpad):
1071   //   catch
1072   //   ...
1073   //
1074   // And the CFG is sorted in this order. Then after placing TRY markers, it
1075   // will look like:
1076   // try
1077   //   call @foo
1078   //   call @bar     ;; if it throws, unwind to caller
1079   // catch           ;; ehpad (bb2)
1080   //   ...
1081   // end_try
1082   //
1083   // Now if bar() throws, it is going to end up ip in bb2, when it is supposed
1084   // throw up to the caller. We solve this problem in the same way, but in this
1085   // case 'delegate's immediate argument is the number of block depths + 1,
1086   // which means it rethrows to the caller.
1087   // try
1088   //   call @foo
1089   //   try                  ;; (new)
1090   //     call @bar
1091   //   delegate 1 (caller)  ;; (new)
1092   // catch                  ;; ehpad (bb2)
1093   //   ...
1094   // end_try
1095   //
1096   // Before rewriteDepthImmediates, delegate's argument is a BB. In case of the
1097   // caller, it will take a fake BB generated by getFakeCallerBlock(), which
1098   // will be converted to a correct immediate argument later.
1099   //
1100   // In case there are multiple calls in a BB that may throw to the caller, they
1101   // can be wrapped together in one nested try-delegate scope. (In 1, this
1102   // couldn't happen, because may-throwing instruction there had an unwind
1103   // destination, i.e., it was an invoke before, and there could be only one
1104   // invoke within a BB.)
1105 
1106   SmallVector<const MachineBasicBlock *, 8> EHPadStack;
1107   // Range of intructions to be wrapped in a new nested try/catch. A range
1108   // exists in a single BB and does not span multiple BBs.
1109   using TryRange = std::pair<MachineInstr *, MachineInstr *>;
1110   // In original CFG, <unwind destination BB, a vector of try ranges>
1111   DenseMap<MachineBasicBlock *, SmallVector<TryRange, 4>> UnwindDestToTryRanges;
1112 
1113   // Gather possibly throwing calls (i.e., previously invokes) whose current
1114   // unwind destination is not the same as the original CFG. (Case 1)
1115 
1116   for (auto &MBB : reverse(MF)) {
1117     bool SeenThrowableInstInBB = false;
1118     for (auto &MI : reverse(MBB)) {
1119       if (MI.getOpcode() == WebAssembly::TRY)
1120         EHPadStack.pop_back();
1121       else if (WebAssembly::isCatch(MI.getOpcode()))
1122         EHPadStack.push_back(MI.getParent());
1123 
1124       // In this loop we only gather calls that have an EH pad to unwind. So
1125       // there will be at most 1 such call (= invoke) in a BB, so after we've
1126       // seen one, we can skip the rest of BB. Also if MBB has no EH pad
1127       // successor or MI does not throw, this is not an invoke.
1128       if (SeenThrowableInstInBB || !MBB.hasEHPadSuccessor() ||
1129           !WebAssembly::mayThrow(MI))
1130         continue;
1131       SeenThrowableInstInBB = true;
1132 
1133       // If the EH pad on the stack top is where this instruction should unwind
1134       // next, we're good.
1135       MachineBasicBlock *UnwindDest = getFakeCallerBlock(MF);
1136       for (auto *Succ : MBB.successors()) {
1137         // Even though semantically a BB can have multiple successors in case an
1138         // exception is not caught by a catchpad, in our backend implementation
1139         // it is guaranteed that a BB can have at most one EH pad successor. For
1140         // details, refer to comments in findWasmUnwindDestinations function in
1141         // SelectionDAGBuilder.cpp.
1142         if (Succ->isEHPad()) {
1143           UnwindDest = Succ;
1144           break;
1145         }
1146       }
1147       if (EHPadStack.back() == UnwindDest)
1148         continue;
1149 
1150       // Include EH_LABELs in the range before and afer the invoke
1151       MachineInstr *RangeBegin = &MI, *RangeEnd = &MI;
1152       if (RangeBegin->getIterator() != MBB.begin() &&
1153           std::prev(RangeBegin->getIterator())->isEHLabel())
1154         RangeBegin = &*std::prev(RangeBegin->getIterator());
1155       if (std::next(RangeEnd->getIterator()) != MBB.end() &&
1156           std::next(RangeEnd->getIterator())->isEHLabel())
1157         RangeEnd = &*std::next(RangeEnd->getIterator());
1158 
1159       // If not, record the range.
1160       UnwindDestToTryRanges[UnwindDest].push_back(
1161           TryRange(RangeBegin, RangeEnd));
1162       LLVM_DEBUG(dbgs() << "- Call unwind mismatch: MBB = " << MBB.getName()
1163                         << "\nCall = " << MI
1164                         << "\nOriginal dest = " << UnwindDest->getName()
1165                         << "  Current dest = " << EHPadStack.back()->getName()
1166                         << "\n\n");
1167     }
1168   }
1169 
1170   assert(EHPadStack.empty());
1171 
1172   // Gather possibly throwing calls that are supposed to unwind up to the caller
1173   // if they throw, but currently unwind to an incorrect destination. Unlike the
1174   // loop above, there can be multiple calls within a BB that unwind to the
1175   // caller, which we should group together in a range. (Case 2)
1176 
1177   MachineInstr *RangeBegin = nullptr, *RangeEnd = nullptr; // inclusive
1178 
1179   // Record the range.
1180   auto RecordCallerMismatchRange = [&](const MachineBasicBlock *CurrentDest) {
1181     UnwindDestToTryRanges[getFakeCallerBlock(MF)].push_back(
1182         TryRange(RangeBegin, RangeEnd));
1183     LLVM_DEBUG(dbgs() << "- Call unwind mismatch: MBB = "
1184                       << RangeBegin->getParent()->getName()
1185                       << "\nRange begin = " << *RangeBegin
1186                       << "Range end = " << *RangeEnd
1187                       << "\nOriginal dest = caller  Current dest = "
1188                       << CurrentDest->getName() << "\n\n");
1189     RangeBegin = RangeEnd = nullptr; // Reset range pointers
1190   };
1191 
1192   for (auto &MBB : reverse(MF)) {
1193     bool SeenThrowableInstInBB = false;
1194     for (auto &MI : reverse(MBB)) {
1195       if (MI.getOpcode() == WebAssembly::TRY)
1196         EHPadStack.pop_back();
1197       else if (WebAssembly::isCatch(MI.getOpcode()))
1198         EHPadStack.push_back(MI.getParent());
1199       bool MayThrow = WebAssembly::mayThrow(MI);
1200 
1201       // If MBB has an EH pad successor and this is the last instruction that
1202       // may throw, this instruction unwinds to the EH pad and not to the
1203       // caller.
1204       if (MBB.hasEHPadSuccessor() && MayThrow && !SeenThrowableInstInBB) {
1205         SeenThrowableInstInBB = true;
1206         continue;
1207       }
1208 
1209       // We wrap up the current range when we see a marker even if we haven't
1210       // finished a BB.
1211       if (RangeEnd && WebAssembly::isMarker(MI.getOpcode())) {
1212         RecordCallerMismatchRange(EHPadStack.back());
1213         continue;
1214       }
1215 
1216       // If EHPadStack is empty, that means it correctly unwinds to the caller
1217       // if it throws, so we're good. If MI does not throw, we're good too.
1218       if (EHPadStack.empty() || !MayThrow)
1219         continue;
1220 
1221       // We found an instruction that unwinds to the caller but currently has an
1222       // incorrect unwind destination. Create a new range or increment the
1223       // currently existing range.
1224       if (!RangeEnd)
1225         RangeBegin = RangeEnd = &MI;
1226       else
1227         RangeBegin = &MI;
1228     }
1229 
1230     if (RangeEnd)
1231       RecordCallerMismatchRange(EHPadStack.back());
1232   }
1233 
1234   assert(EHPadStack.empty());
1235 
1236   // We don't have any unwind destination mismatches to resolve.
1237   if (UnwindDestToTryRanges.empty())
1238     return false;
1239 
1240   // Now we fix the mismatches by wrapping calls with inner try-delegates.
1241   for (auto &P : UnwindDestToTryRanges) {
1242     NumCallUnwindMismatches += P.second.size();
1243     MachineBasicBlock *UnwindDest = P.first;
1244     auto &TryRanges = P.second;
1245 
1246     for (auto Range : TryRanges) {
1247       MachineInstr *RangeBegin = nullptr, *RangeEnd = nullptr;
1248       std::tie(RangeBegin, RangeEnd) = Range;
1249       auto *MBB = RangeBegin->getParent();
1250 
1251       // If this BB has an EH pad successor, i.e., ends with an 'invoke', now we
1252       // are going to wrap the invoke with try-delegate, making the 'delegate'
1253       // BB the new successor instead, so remove the EH pad succesor here. The
1254       // BB may not have an EH pad successor if calls in this BB throw to the
1255       // caller.
1256       MachineBasicBlock *EHPad = nullptr;
1257       for (auto *Succ : MBB->successors()) {
1258         if (Succ->isEHPad()) {
1259           EHPad = Succ;
1260           break;
1261         }
1262       }
1263       if (EHPad)
1264         MBB->removeSuccessor(EHPad);
1265 
1266       addTryDelegate(RangeBegin, RangeEnd, UnwindDest);
1267     }
1268   }
1269 
1270   return true;
1271 }
1272 
1273 bool WebAssemblyCFGStackify::fixCatchUnwindMismatches(MachineFunction &MF) {
1274   // There is another kind of unwind destination mismatches besides call unwind
1275   // mismatches, which we will call "catch unwind mismatches". See this example
1276   // after the marker placement:
1277   // try
1278   //   try
1279   //     call @foo
1280   //   catch __cpp_exception  ;; ehpad A (next unwind dest: caller)
1281   //     ...
1282   //   end_try
1283   // catch_all                ;; ehpad B
1284   //   ...
1285   // end_try
1286   //
1287   // 'call @foo's unwind destination is the ehpad A. But suppose 'call @foo'
1288   // throws a foreign exception that is not caught by ehpad A, and its next
1289   // destination should be the caller. But after control flow linearization,
1290   // another EH pad can be placed in between (e.g. ehpad B here), making the
1291   // next unwind destination incorrect. In this case, the  foreign exception
1292   // will instead go to ehpad B and will be caught there instead. In this
1293   // example the correct next unwind destination is the caller, but it can be
1294   // another outer catch in other cases.
1295   //
1296   // There is no specific 'call' or 'throw' instruction to wrap with a
1297   // try-delegate, so we wrap the whole try-catch-end with a try-delegate and
1298   // make it rethrow to the right destination, as in the example below:
1299   // try
1300   //   try                     ;; (new)
1301   //     try
1302   //       call @foo
1303   //     catch __cpp_exception ;; ehpad A (next unwind dest: caller)
1304   //       ...
1305   //     end_try
1306   //   delegate 1 (caller)     ;; (new)
1307   // catch_all                 ;; ehpad B
1308   //   ...
1309   // end_try
1310 
1311   const auto *EHInfo = MF.getWasmEHFuncInfo();
1312   SmallVector<const MachineBasicBlock *, 8> EHPadStack;
1313   // For EH pads that have catch unwind mismatches, a map of <EH pad, its
1314   // correct unwind destination>.
1315   DenseMap<MachineBasicBlock *, MachineBasicBlock *> EHPadToUnwindDest;
1316 
1317   for (auto &MBB : reverse(MF)) {
1318     for (auto &MI : reverse(MBB)) {
1319       if (MI.getOpcode() == WebAssembly::TRY)
1320         EHPadStack.pop_back();
1321       else if (MI.getOpcode() == WebAssembly::DELEGATE)
1322         EHPadStack.push_back(&MBB);
1323       else if (WebAssembly::isCatch(MI.getOpcode())) {
1324         auto *EHPad = &MBB;
1325 
1326         // catch_all always catches an exception, so we don't need to do
1327         // anything
1328         if (MI.getOpcode() == WebAssembly::CATCH_ALL) {
1329         }
1330 
1331         // This can happen when the unwind dest was removed during the
1332         // optimization, e.g. because it was unreachable.
1333         else if (EHPadStack.empty() && EHInfo->hasEHPadUnwindDest(EHPad)) {
1334           LLVM_DEBUG(dbgs() << "EHPad (" << EHPad->getName()
1335                             << "'s unwind destination does not exist anymore"
1336                             << "\n\n");
1337         }
1338 
1339         // The EHPad's next unwind destination is the caller, but we incorrectly
1340         // unwind to another EH pad.
1341         else if (!EHPadStack.empty() && !EHInfo->hasEHPadUnwindDest(EHPad)) {
1342           EHPadToUnwindDest[EHPad] = getFakeCallerBlock(MF);
1343           LLVM_DEBUG(dbgs()
1344                      << "- Catch unwind mismatch:\nEHPad = " << EHPad->getName()
1345                      << "  Original dest = caller  Current dest = "
1346                      << EHPadStack.back()->getName() << "\n\n");
1347         }
1348 
1349         // The EHPad's next unwind destination is an EH pad, whereas we
1350         // incorrectly unwind to another EH pad.
1351         else if (!EHPadStack.empty() && EHInfo->hasEHPadUnwindDest(EHPad)) {
1352           auto *UnwindDest = EHInfo->getEHPadUnwindDest(EHPad);
1353           if (EHPadStack.back() != UnwindDest) {
1354             EHPadToUnwindDest[EHPad] = UnwindDest;
1355             LLVM_DEBUG(dbgs() << "- Catch unwind mismatch:\nEHPad = "
1356                               << EHPad->getName() << "  Original dest = "
1357                               << UnwindDest->getName() << "  Current dest = "
1358                               << EHPadStack.back()->getName() << "\n\n");
1359           }
1360         }
1361 
1362         EHPadStack.push_back(EHPad);
1363       }
1364     }
1365   }
1366 
1367   assert(EHPadStack.empty());
1368   if (EHPadToUnwindDest.empty())
1369     return false;
1370   NumCatchUnwindMismatches += EHPadToUnwindDest.size();
1371 
1372   for (auto &P : EHPadToUnwindDest) {
1373     MachineBasicBlock *EHPad = P.first;
1374     MachineBasicBlock *UnwindDest = P.second;
1375     MachineInstr *Try = EHPadToTry[EHPad];
1376     MachineInstr *EndTry = BeginToEnd[Try];
1377     addTryDelegate(Try, EndTry, UnwindDest);
1378   }
1379 
1380   return true;
1381 }
1382 
1383 void WebAssemblyCFGStackify::recalculateScopeTops(MachineFunction &MF) {
1384   // Renumber BBs and recalculate ScopeTop info because new BBs might have been
1385   // created and inserted during fixing unwind mismatches.
1386   MF.RenumberBlocks();
1387   ScopeTops.clear();
1388   ScopeTops.resize(MF.getNumBlockIDs());
1389   for (auto &MBB : reverse(MF)) {
1390     for (auto &MI : reverse(MBB)) {
1391       if (ScopeTops[MBB.getNumber()])
1392         break;
1393       switch (MI.getOpcode()) {
1394       case WebAssembly::END_BLOCK:
1395       case WebAssembly::END_LOOP:
1396       case WebAssembly::END_TRY:
1397       case WebAssembly::DELEGATE:
1398         updateScopeTops(EndToBegin[&MI]->getParent(), &MBB);
1399         break;
1400       case WebAssembly::CATCH:
1401       case WebAssembly::CATCH_ALL:
1402         updateScopeTops(EHPadToTry[&MBB]->getParent(), &MBB);
1403         break;
1404       }
1405     }
1406   }
1407 }
1408 
1409 /// In normal assembly languages, when the end of a function is unreachable,
1410 /// because the function ends in an infinite loop or a noreturn call or similar,
1411 /// it isn't necessary to worry about the function return type at the end of
1412 /// the function, because it's never reached. However, in WebAssembly, blocks
1413 /// that end at the function end need to have a return type signature that
1414 /// matches the function signature, even though it's unreachable. This function
1415 /// checks for such cases and fixes up the signatures.
1416 void WebAssemblyCFGStackify::fixEndsAtEndOfFunction(MachineFunction &MF) {
1417   const auto &MFI = *MF.getInfo<WebAssemblyFunctionInfo>();
1418 
1419   if (MFI.getResults().empty())
1420     return;
1421 
1422   // MCInstLower will add the proper types to multivalue signatures based on the
1423   // function return type
1424   WebAssembly::BlockType RetType =
1425       MFI.getResults().size() > 1
1426           ? WebAssembly::BlockType::Multivalue
1427           : WebAssembly::BlockType(
1428                 WebAssembly::toValType(MFI.getResults().front()));
1429 
1430   SmallVector<MachineBasicBlock::reverse_iterator, 4> Worklist;
1431   Worklist.push_back(MF.rbegin()->rbegin());
1432 
1433   auto Process = [&](MachineBasicBlock::reverse_iterator It) {
1434     auto *MBB = It->getParent();
1435     while (It != MBB->rend()) {
1436       MachineInstr &MI = *It++;
1437       if (MI.isPosition() || MI.isDebugInstr())
1438         continue;
1439       switch (MI.getOpcode()) {
1440       case WebAssembly::END_TRY: {
1441         // If a 'try''s return type is fixed, both its try body and catch body
1442         // should satisfy the return type, so we need to search 'end'
1443         // instructions before its corresponding 'catch' too.
1444         auto *EHPad = TryToEHPad.lookup(EndToBegin[&MI]);
1445         assert(EHPad);
1446         auto NextIt =
1447             std::next(WebAssembly::findCatch(EHPad)->getReverseIterator());
1448         if (NextIt != EHPad->rend())
1449           Worklist.push_back(NextIt);
1450         LLVM_FALLTHROUGH;
1451       }
1452       case WebAssembly::END_BLOCK:
1453       case WebAssembly::END_LOOP:
1454         EndToBegin[&MI]->getOperand(0).setImm(int32_t(RetType));
1455         continue;
1456       default:
1457         // Something other than an `end`. We're done for this BB.
1458         return;
1459       }
1460     }
1461     // We've reached the beginning of a BB. Continue the search in the previous
1462     // BB.
1463     Worklist.push_back(MBB->getPrevNode()->rbegin());
1464   };
1465 
1466   while (!Worklist.empty())
1467     Process(Worklist.pop_back_val());
1468 }
1469 
1470 // WebAssembly functions end with an end instruction, as if the function body
1471 // were a block.
1472 static void appendEndToFunction(MachineFunction &MF,
1473                                 const WebAssemblyInstrInfo &TII) {
1474   BuildMI(MF.back(), MF.back().end(),
1475           MF.back().findPrevDebugLoc(MF.back().end()),
1476           TII.get(WebAssembly::END_FUNCTION));
1477 }
1478 
1479 /// Insert LOOP/TRY/BLOCK markers at appropriate places.
1480 void WebAssemblyCFGStackify::placeMarkers(MachineFunction &MF) {
1481   // We allocate one more than the number of blocks in the function to
1482   // accommodate for the possible fake block we may insert at the end.
1483   ScopeTops.resize(MF.getNumBlockIDs() + 1);
1484   // Place the LOOP for MBB if MBB is the header of a loop.
1485   for (auto &MBB : MF)
1486     placeLoopMarker(MBB);
1487 
1488   const MCAsmInfo *MCAI = MF.getTarget().getMCAsmInfo();
1489   for (auto &MBB : MF) {
1490     if (MBB.isEHPad()) {
1491       // Place the TRY for MBB if MBB is the EH pad of an exception.
1492       if (MCAI->getExceptionHandlingType() == ExceptionHandling::Wasm &&
1493           MF.getFunction().hasPersonalityFn())
1494         placeTryMarker(MBB);
1495     } else {
1496       // Place the BLOCK for MBB if MBB is branched to from above.
1497       placeBlockMarker(MBB);
1498     }
1499   }
1500   // Fix mismatches in unwind destinations induced by linearizing the code.
1501   if (MCAI->getExceptionHandlingType() == ExceptionHandling::Wasm &&
1502       MF.getFunction().hasPersonalityFn()) {
1503     bool Changed = fixCallUnwindMismatches(MF);
1504     Changed |= fixCatchUnwindMismatches(MF);
1505     if (Changed)
1506       recalculateScopeTops(MF);
1507   }
1508 }
1509 
1510 unsigned WebAssemblyCFGStackify::getBranchDepth(
1511     const SmallVectorImpl<EndMarkerInfo> &Stack, const MachineBasicBlock *MBB) {
1512   unsigned Depth = 0;
1513   for (auto X : reverse(Stack)) {
1514     if (X.first == MBB)
1515       break;
1516     ++Depth;
1517   }
1518   assert(Depth < Stack.size() && "Branch destination should be in scope");
1519   return Depth;
1520 }
1521 
1522 unsigned WebAssemblyCFGStackify::getDelegateDepth(
1523     const SmallVectorImpl<EndMarkerInfo> &Stack, const MachineBasicBlock *MBB) {
1524   if (MBB == FakeCallerBB)
1525     return Stack.size();
1526   // Delegate's destination is either a catch or a another delegate BB. When the
1527   // destination is another delegate, we can compute the argument in the same
1528   // way as branches, because the target delegate BB only contains the single
1529   // delegate instruction.
1530   if (!MBB->isEHPad()) // Target is a delegate BB
1531     return getBranchDepth(Stack, MBB);
1532 
1533   // When the delegate's destination is a catch BB, we need to use its
1534   // corresponding try's end_try BB because Stack contains each marker's end BB.
1535   // Also we need to check if the end marker instruction matches, because a
1536   // single BB can contain multiple end markers, like this:
1537   // bb:
1538   //   END_BLOCK
1539   //   END_TRY
1540   //   END_BLOCK
1541   //   END_TRY
1542   //   ...
1543   //
1544   // In case of branches getting the immediate that targets any of these is
1545   // fine, but delegate has to exactly target the correct try.
1546   unsigned Depth = 0;
1547   const MachineInstr *EndTry = BeginToEnd[EHPadToTry[MBB]];
1548   for (auto X : reverse(Stack)) {
1549     if (X.first == EndTry->getParent() && X.second == EndTry)
1550       break;
1551     ++Depth;
1552   }
1553   assert(Depth < Stack.size() && "Delegate destination should be in scope");
1554   return Depth;
1555 }
1556 
1557 unsigned WebAssemblyCFGStackify::getRethrowDepth(
1558     const SmallVectorImpl<EndMarkerInfo> &Stack,
1559     const SmallVectorImpl<const MachineBasicBlock *> &EHPadStack) {
1560   unsigned Depth = 0;
1561   // In our current implementation, rethrows always rethrow the exception caught
1562   // by the innermost enclosing catch. This means while traversing Stack in the
1563   // reverse direction, when we encounter END_TRY, we should check if the
1564   // END_TRY corresponds to the current innermost EH pad. For example:
1565   // try
1566   //   ...
1567   // catch         ;; (a)
1568   //   try
1569   //     rethrow 1 ;; (b)
1570   //   catch       ;; (c)
1571   //     rethrow 0 ;; (d)
1572   //   end         ;; (e)
1573   // end           ;; (f)
1574   //
1575   // When we are at 'rethrow' (d), while reversely traversing Stack the first
1576   // 'end' we encounter is the 'end' (e), which corresponds to the 'catch' (c).
1577   // And 'rethrow' (d) rethrows the exception caught by 'catch' (c), so we stop
1578   // there and the depth should be 0. But when we are at 'rethrow' (b), it
1579   // rethrows the exception caught by 'catch' (a), so when traversing Stack
1580   // reversely, we should skip the 'end' (e) and choose 'end' (f), which
1581   // corresponds to 'catch' (a).
1582   for (auto X : reverse(Stack)) {
1583     const MachineInstr *End = X.second;
1584     if (End->getOpcode() == WebAssembly::END_TRY) {
1585       auto *EHPad = TryToEHPad[EndToBegin[End]];
1586       if (EHPadStack.back() == EHPad)
1587         break;
1588     }
1589     ++Depth;
1590   }
1591   assert(Depth < Stack.size() && "Rethrow destination should be in scope");
1592   return Depth;
1593 }
1594 
1595 void WebAssemblyCFGStackify::rewriteDepthImmediates(MachineFunction &MF) {
1596   // Now rewrite references to basic blocks to be depth immediates.
1597   SmallVector<EndMarkerInfo, 8> Stack;
1598   SmallVector<const MachineBasicBlock *, 8> EHPadStack;
1599   for (auto &MBB : reverse(MF)) {
1600     for (auto I = MBB.rbegin(), E = MBB.rend(); I != E; ++I) {
1601       MachineInstr &MI = *I;
1602       switch (MI.getOpcode()) {
1603       case WebAssembly::BLOCK:
1604       case WebAssembly::TRY:
1605         assert(ScopeTops[Stack.back().first->getNumber()]->getNumber() <=
1606                    MBB.getNumber() &&
1607                "Block/try marker should be balanced");
1608         Stack.pop_back();
1609         break;
1610 
1611       case WebAssembly::LOOP:
1612         assert(Stack.back().first == &MBB && "Loop top should be balanced");
1613         Stack.pop_back();
1614         break;
1615 
1616       case WebAssembly::END_BLOCK:
1617         Stack.push_back(std::make_pair(&MBB, &MI));
1618         break;
1619 
1620       case WebAssembly::END_TRY: {
1621         // We handle DELEGATE in the default level, because DELEGATE has
1622         // immediate operands to rewrite.
1623         Stack.push_back(std::make_pair(&MBB, &MI));
1624         auto *EHPad = TryToEHPad[EndToBegin[&MI]];
1625         EHPadStack.push_back(EHPad);
1626         break;
1627       }
1628 
1629       case WebAssembly::END_LOOP:
1630         Stack.push_back(std::make_pair(EndToBegin[&MI]->getParent(), &MI));
1631         break;
1632 
1633       case WebAssembly::CATCH:
1634       case WebAssembly::CATCH_ALL:
1635         EHPadStack.pop_back();
1636         break;
1637 
1638       case WebAssembly::RETHROW:
1639         MI.getOperand(0).setImm(getRethrowDepth(Stack, EHPadStack));
1640         break;
1641 
1642       default:
1643         if (MI.isTerminator()) {
1644           // Rewrite MBB operands to be depth immediates.
1645           SmallVector<MachineOperand, 4> Ops(MI.operands());
1646           while (MI.getNumOperands() > 0)
1647             MI.RemoveOperand(MI.getNumOperands() - 1);
1648           for (auto MO : Ops) {
1649             if (MO.isMBB()) {
1650               if (MI.getOpcode() == WebAssembly::DELEGATE)
1651                 MO = MachineOperand::CreateImm(
1652                     getDelegateDepth(Stack, MO.getMBB()));
1653               else
1654                 MO = MachineOperand::CreateImm(
1655                     getBranchDepth(Stack, MO.getMBB()));
1656             }
1657             MI.addOperand(MF, MO);
1658           }
1659         }
1660 
1661         if (MI.getOpcode() == WebAssembly::DELEGATE)
1662           Stack.push_back(std::make_pair(&MBB, &MI));
1663         break;
1664       }
1665     }
1666   }
1667   assert(Stack.empty() && "Control flow should be balanced");
1668 }
1669 
1670 void WebAssemblyCFGStackify::cleanupFunctionData(MachineFunction &MF) {
1671   if (FakeCallerBB)
1672     MF.DeleteMachineBasicBlock(FakeCallerBB);
1673   AppendixBB = FakeCallerBB = nullptr;
1674 }
1675 
1676 void WebAssemblyCFGStackify::releaseMemory() {
1677   ScopeTops.clear();
1678   BeginToEnd.clear();
1679   EndToBegin.clear();
1680   TryToEHPad.clear();
1681   EHPadToTry.clear();
1682 }
1683 
1684 bool WebAssemblyCFGStackify::runOnMachineFunction(MachineFunction &MF) {
1685   LLVM_DEBUG(dbgs() << "********** CFG Stackifying **********\n"
1686                        "********** Function: "
1687                     << MF.getName() << '\n');
1688   const MCAsmInfo *MCAI = MF.getTarget().getMCAsmInfo();
1689 
1690   releaseMemory();
1691 
1692   // Liveness is not tracked for VALUE_STACK physreg.
1693   MF.getRegInfo().invalidateLiveness();
1694 
1695   // Place the BLOCK/LOOP/TRY markers to indicate the beginnings of scopes.
1696   placeMarkers(MF);
1697 
1698   // Remove unnecessary instructions possibly introduced by try/end_trys.
1699   if (MCAI->getExceptionHandlingType() == ExceptionHandling::Wasm &&
1700       MF.getFunction().hasPersonalityFn())
1701     removeUnnecessaryInstrs(MF);
1702 
1703   // Convert MBB operands in terminators to relative depth immediates.
1704   rewriteDepthImmediates(MF);
1705 
1706   // Fix up block/loop/try signatures at the end of the function to conform to
1707   // WebAssembly's rules.
1708   fixEndsAtEndOfFunction(MF);
1709 
1710   // Add an end instruction at the end of the function body.
1711   const auto &TII = *MF.getSubtarget<WebAssemblySubtarget>().getInstrInfo();
1712   if (!MF.getSubtarget<WebAssemblySubtarget>()
1713            .getTargetTriple()
1714            .isOSBinFormatELF())
1715     appendEndToFunction(MF, TII);
1716 
1717   cleanupFunctionData(MF);
1718 
1719   MF.getInfo<WebAssemblyFunctionInfo>()->setCFGStackified();
1720   return true;
1721 }
1722