LLVM  8.0.1
WebAssemblyExceptionInfo.h
Go to the documentation of this file.
1 //===-- WebAssemblyExceptionInfo.h - WebAssembly Exception Info -*- C++ -*-===//
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 /// \file
11 /// \brief This file implements WebAssemblyException information analysis.
12 ///
13 //===----------------------------------------------------------------------===//
14 
15 #ifndef LLVM_LIB_TARGET_WEBASSEMBLY_WEBASSEMBLYEXCEPTIONINFO_H
16 #define LLVM_LIB_TARGET_WEBASSEMBLY_WEBASSEMBLYEXCEPTIONINFO_H
17 
18 #include "WebAssembly.h"
19 #include "llvm/ADT/SetVector.h"
21 
22 namespace llvm {
23 
24 class MachineDominatorTree;
25 class MachineDominanceFrontier;
26 
27 // WebAssembly instructions for exception handling are structured as follows:
28 // try
29 // instructions*
30 // catch ----|
31 // instructions* | -> A WebAssemblyException consists of this region
32 // end ----|
33 //
34 // A WebAssemblyException object contains BBs that belong to a 'catch' part of
35 // the try-catch-end structure to be created later. 'try' and 'end' markers
36 // are not present at this stage and will be generated in CFGStackify pass.
37 // Because CFGSort requires all the BBs within a catch part to be sorted
38 // together as it does for loops, this pass calculates the nesting structure of
39 // catch part of exceptions in a function.
40 //
41 // An exception catch part is defined as a BB with catch instruction and all
42 // other BBs dominated by this BB.
44  MachineBasicBlock *EHPad = nullptr;
45 
46  WebAssemblyException *ParentException = nullptr;
47  std::vector<WebAssemblyException *> SubExceptions;
48  std::vector<MachineBasicBlock *> Blocks;
50 
51 public:
52  WebAssemblyException(MachineBasicBlock *EHPad) : EHPad(EHPad) {}
55  const WebAssemblyException &operator=(const WebAssemblyException &) = delete;
56 
57  MachineBasicBlock *getEHPad() const { return EHPad; }
58  MachineBasicBlock *getHeader() const { return EHPad; }
59  WebAssemblyException *getParentException() const { return ParentException; }
60  void setParentException(WebAssemblyException *WE) { ParentException = WE; }
61 
62  bool contains(const WebAssemblyException *WE) const {
63  if (WE == this)
64  return true;
65  if (!WE)
66  return false;
67  return contains(WE->getParentException());
68  }
69  bool contains(const MachineBasicBlock *MBB) const {
70  return BlockSet.count(MBB);
71  }
72 
74  Blocks.push_back(MBB);
75  BlockSet.insert(MBB);
76  }
77  ArrayRef<MachineBasicBlock *> getBlocks() const { return Blocks; }
79  block_iterator block_begin() const { return getBlocks().begin(); }
80  block_iterator block_end() const { return getBlocks().end(); }
82  return make_range(block_begin(), block_end());
83  }
84  unsigned getNumBlocks() const { return Blocks.size(); }
85  std::vector<MachineBasicBlock *> &getBlocksVector() { return Blocks; }
86 
87  const std::vector<WebAssemblyException *> &getSubExceptions() const {
88  return SubExceptions;
89  }
90  std::vector<WebAssemblyException *> &getSubExceptions() {
91  return SubExceptions;
92  }
93  void addSubException(WebAssemblyException *E) { SubExceptions.push_back(E); }
94  using iterator = typename std::vector<WebAssemblyException *>::const_iterator;
95  iterator begin() const { return SubExceptions.begin(); }
96  iterator end() const { return SubExceptions.end(); }
97 
98  void reserveBlocks(unsigned Size) { Blocks.reserve(Size); }
99  void reverseBlock(unsigned From = 0) {
100  std::reverse(Blocks.begin() + From, Blocks.end());
101  }
102 
103  // Return the nesting level. An outermost one has depth 1.
104  unsigned getExceptionDepth() const {
105  unsigned D = 1;
106  for (const WebAssemblyException *CurException = ParentException;
107  CurException; CurException = CurException->ParentException)
108  ++D;
109  return D;
110  }
111 
112  void print(raw_ostream &OS, unsigned Depth = 0) const;
113  void dump() const;
114 };
115 
117 
119  // Mapping of basic blocks to the innermost exception they occur in
121  std::vector<WebAssemblyException *> TopLevelExceptions;
122 
123  void discoverAndMapException(WebAssemblyException *WE,
124  const MachineDominatorTree &MDT,
125  const MachineDominanceFrontier &MDF);
126  WebAssemblyException *getOutermostException(MachineBasicBlock *MBB) const;
127 
128 public:
129  static char ID;
132  }
133  ~WebAssemblyExceptionInfo() override { releaseMemory(); }
136  operator=(const WebAssemblyExceptionInfo &) = delete;
137 
138  bool runOnMachineFunction(MachineFunction &) override;
139  void releaseMemory() override;
140  void recalculate(MachineDominatorTree &MDT,
141  const MachineDominanceFrontier &MDF);
142  void getAnalysisUsage(AnalysisUsage &AU) const override;
143 
144  bool empty() const { return TopLevelExceptions.empty(); }
145 
146  // Return the innermost exception that MBB lives in. If the block is not in an
147  // exception, null is returned.
149  return BBMap.lookup(MBB);
150  }
151 
153  if (!WE) {
154  BBMap.erase(MBB);
155  return;
156  }
157  BBMap[MBB] = WE;
158  }
159 
161  assert(!WE->getParentException() && "Not a top level exception!");
162  TopLevelExceptions.push_back(WE);
163  }
164 
165  void print(raw_ostream &OS, const Module *M = nullptr) const override;
166 };
167 
168 } // end namespace llvm
169 
170 #endif
void DeleteContainerPointers(Container &C)
For a container of pointers, deletes the pointers and then clears the container.
Definition: STLExtras.h:1149
static PassRegistry * getPassRegistry()
getPassRegistry - Access the global registry object, which is automatically initialized at applicatio...
void reverseBlock(unsigned From=0)
std::vector< WebAssemblyException * > & getSubExceptions()
This class represents lattice values for constants.
Definition: AllocatorList.h:24
A Module instance is used to store all the information related to an LLVM module. ...
Definition: Module.h:65
void print(raw_ostream &OS, unsigned Depth=0) const
MachineBasicBlock * getHeader() const
block_iterator block_begin() const
This file contains the entry points for global functions defined in the LLVM WebAssembly back-end...
iterator_range< block_iterator > blocks() const
WebAssemblyException(MachineBasicBlock *EHPad)
MachineFunctionPass - This class adapts the FunctionPass interface to allow convenient creation of pa...
const WebAssemblyException & operator=(const WebAssemblyException &)=delete
std::vector< MachineBasicBlock * > & getBlocksVector()
void initializeWebAssemblyExceptionInfoPass(PassRegistry &)
void addSubException(WebAssemblyException *E)
auto reverse(ContainerTy &&C, typename std::enable_if< has_rbegin< ContainerTy >::value >::type *=nullptr) -> decltype(make_range(C.rbegin(), C.rend()))
Definition: STLExtras.h:267
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory)...
Definition: APInt.h:33
void addBlock(MachineBasicBlock *MBB)
ArrayRef< MachineBasicBlock * > getBlocks() const
void changeExceptionFor(MachineBasicBlock *MBB, WebAssemblyException *WE)
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
std::pair< iterator, bool > insert(PtrType Ptr)
Inserts Ptr if and only if there is no element in the container equal to Ptr.
Definition: SmallPtrSet.h:371
MachineBasicBlock * getEHPad() const
Represent the analysis usage information of a pass.
size_type count(ConstPtrType Ptr) const
count - Return 1 if the specified pointer is in the set, 0 otherwise.
Definition: SmallPtrSet.h:382
void addTopLevelException(WebAssemblyException *WE)
WebAssemblyException * getExceptionFor(const MachineBasicBlock *MBB) const
block_iterator block_end() const
iterator_range< T > make_range(T x, T y)
Convenience function for iterating over sub-ranges.
BlockVerifier::State From
bool contains(const MachineBasicBlock *MBB) const
void setParentException(WebAssemblyException *WE)
static GCRegistry::Add< StatepointGC > D("statepoint-example", "an example strategy for statepoint")
WebAssemblyException * getParentException() const
A range adaptor for a pair of iterators.
typename std::vector< WebAssemblyException * >::const_iterator iterator
bool contains(const WebAssemblyException *WE) const
const std::vector< WebAssemblyException * > & getSubExceptions() const
uint32_t Size
Definition: Profile.cpp:47
raw_ostream & operator<<(raw_ostream &OS, const APInt &I)
Definition: APInt.h:2039
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
typename ArrayRef< MachineBasicBlock * >::const_iterator block_iterator
This class implements an extremely fast bulk output stream that can only output to a stream...
Definition: raw_ostream.h:46
DominatorTree Class - Concrete subclass of DominatorTreeBase that is used to compute a normal dominat...