LLVM 19.0.0git
WebAssemblyExceptionInfo.h
Go to the documentation of this file.
1//===-- WebAssemblyExceptionInfo.h - WebAssembly Exception Info -*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8///
9/// \file
10/// \brief This file implements WebAssemblyException information analysis.
11///
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_LIB_TARGET_WEBASSEMBLY_WEBASSEMBLYEXCEPTIONINFO_H
15#define LLVM_LIB_TARGET_WEBASSEMBLY_WEBASSEMBLYEXCEPTIONINFO_H
16
17#include "WebAssembly.h"
20
21namespace llvm {
22
23class MachineDominatorTree;
24class MachineDominanceFrontier;
25
26// WebAssembly instructions for exception handling are structured as follows:
27// try
28// instructions*
29// catch ----|
30// instructions* | -> A WebAssemblyException consists of this region
31// end ----|
32//
33// A WebAssemblyException object contains BBs that belong to a 'catch' part of
34// the try-catch-end structure to be created later. 'try' and 'end' markers
35// are not present at this stage and will be generated in CFGStackify pass.
36// Because CFGSort requires all the BBs within a catch part to be sorted
37// together as it does for loops, this pass calculates the nesting structure of
38// catch part of exceptions in a function.
39//
40// An exception catch part is defined as a BB with catch instruction and all
41// other BBs dominated by this BB.
43 MachineBasicBlock *EHPad = nullptr;
44
45 WebAssemblyException *ParentException = nullptr;
46 std::vector<std::unique_ptr<WebAssemblyException>> SubExceptions;
47 std::vector<MachineBasicBlock *> Blocks;
49
50public:
51 WebAssemblyException(MachineBasicBlock *EHPad) : EHPad(EHPad) {}
54
55 MachineBasicBlock *getEHPad() const { return EHPad; }
56 MachineBasicBlock *getHeader() const { return EHPad; }
57 WebAssemblyException *getParentException() const { return ParentException; }
58 void setParentException(WebAssemblyException *WE) { ParentException = WE; }
59
60 bool contains(const WebAssemblyException *WE) const {
61 if (WE == this)
62 return true;
63 if (!WE)
64 return false;
65 return contains(WE->getParentException());
66 }
67 bool contains(const MachineBasicBlock *MBB) const {
68 return BlockSet.count(MBB);
69 }
70
75 Blocks.push_back(MBB);
76 BlockSet.insert(MBB);
77 }
80 block_iterator block_begin() const { return getBlocks().begin(); }
81 block_iterator block_end() const { return getBlocks().end(); }
83 return make_range(block_begin(), block_end());
84 }
85 unsigned getNumBlocks() const { return Blocks.size(); }
86 std::vector<MachineBasicBlock *> &getBlocksVector() { return Blocks; }
88
89 const std::vector<std::unique_ptr<WebAssemblyException>> &
91 return SubExceptions;
92 }
93 std::vector<std::unique_ptr<WebAssemblyException>> &getSubExceptions() {
94 return SubExceptions;
95 }
96 void addSubException(std::unique_ptr<WebAssemblyException> E) {
97 SubExceptions.push_back(std::move(E));
98 }
99 using iterator = typename decltype(SubExceptions)::const_iterator;
100 iterator begin() const { return SubExceptions.begin(); }
101 iterator end() const { return SubExceptions.end(); }
102
103 void reserveBlocks(unsigned Size) { Blocks.reserve(Size); }
104 void reverseBlock(unsigned From = 0) {
105 std::reverse(Blocks.begin() + From, Blocks.end());
106 }
107
108 // Return the nesting level. An outermost one has depth 1.
109 unsigned getExceptionDepth() const {
110 unsigned D = 1;
111 for (const WebAssemblyException *CurException = ParentException;
112 CurException; CurException = CurException->ParentException)
113 ++D;
114 return D;
115 }
116
117 void print(raw_ostream &OS, unsigned Depth = 0) const;
118 void dump() const;
119};
120
122
124 // Mapping of basic blocks to the innermost exception they occur in
126 std::vector<std::unique_ptr<WebAssemblyException>> TopLevelExceptions;
127
128 void discoverAndMapException(WebAssemblyException *WE,
129 const MachineDominatorTree &MDT,
130 const MachineDominanceFrontier &MDF);
131 WebAssemblyException *getOutermostException(MachineBasicBlock *MBB) const;
132
133public:
134 static char ID;
137 }
142
143 bool runOnMachineFunction(MachineFunction &) override;
144 void releaseMemory() override;
146 const MachineDominanceFrontier &MDF);
147 void getAnalysisUsage(AnalysisUsage &AU) const override;
148
149 bool empty() const { return TopLevelExceptions.empty(); }
150
151 // Return the innermost exception that MBB lives in. If the block is not in an
152 // exception, null is returned.
154 return BBMap.lookup(MBB);
155 }
156
159 if (!WE) {
160 BBMap.erase(MBB);
161 return;
162 }
163 BBMap[MBB] = WE;
164 }
165
166 void addTopLevelException(std::unique_ptr<WebAssemblyException> WE) {
167 assert(!WE->getParentException() && "Not a top level exception!");
168 TopLevelExceptions.push_back(std::move(WE));
169 }
170
171 void print(raw_ostream &OS, const Module *M = nullptr) const override;
172};
173
174} // end namespace llvm
175
176#endif
MachineBasicBlock & MBB
BlockVerifier::State From
static GCRegistry::Add< StatepointGC > D("statepoint-example", "an example strategy for statepoint")
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
uint64_t Size
DenseMap< Block *, BlockRelaxAux > Blocks
Definition: ELF_riscv.cpp:507
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
raw_pwrite_stream & OS
This file defines the SmallPtrSet class.
This file contains the entry points for global functions defined in the LLVM WebAssembly back-end.
Represent the analysis usage information of a pass.
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
Definition: ArrayRef.h:41
DominatorTree Class - Concrete subclass of DominatorTreeBase that is used to compute a normal dominat...
MachineFunctionPass - This class adapts the FunctionPass interface to allow convenient creation of pa...
A Module instance is used to store all the information related to an LLVM module.
Definition: Module.h:65
static PassRegistry * getPassRegistry()
getPassRegistry - Access the global registry object, which is automatically initialized at applicatio...
A templated base class for SmallPtrSet which provides the typesafe interface that is common across al...
Definition: SmallPtrSet.h:321
bool erase(PtrType Ptr)
erase - If the set contains the specified pointer, remove it and return true, otherwise return false.
Definition: SmallPtrSet.h:356
size_type count(ConstPtrType Ptr) const
count - Return 1 if the specified pointer is in the set, 0 otherwise.
Definition: SmallPtrSet.h:360
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:342
SmallPtrSet - This class implements a set which is optimized for holding SmallSize or less elements.
Definition: SmallPtrSet.h:427
void changeExceptionFor(const MachineBasicBlock *MBB, WebAssemblyException *WE)
bool runOnMachineFunction(MachineFunction &) override
runOnMachineFunction - This method must be overloaded to perform the desired machine code transformat...
void addTopLevelException(std::unique_ptr< WebAssemblyException > WE)
void getAnalysisUsage(AnalysisUsage &AU) const override
getAnalysisUsage - Subclasses that override getAnalysisUsage must call this.
void recalculate(MachineFunction &MF, MachineDominatorTree &MDT, const MachineDominanceFrontier &MDF)
WebAssemblyException * getExceptionFor(const MachineBasicBlock *MBB) const
void print(raw_ostream &OS, const Module *M=nullptr) const override
print - Print out the internal state of the pass.
WebAssemblyExceptionInfo & operator=(const WebAssemblyExceptionInfo &)=delete
void releaseMemory() override
releaseMemory() - This member can be implemented by a pass if it wants to be able to release its memo...
WebAssemblyExceptionInfo(const WebAssemblyExceptionInfo &)=delete
block_iterator block_end() const
void print(raw_ostream &OS, unsigned Depth=0) const
bool contains(const WebAssemblyException *WE) const
WebAssemblyException(const WebAssemblyException &)=delete
MachineBasicBlock * getEHPad() const
void addToBlocksSet(MachineBasicBlock *MBB)
bool contains(const MachineBasicBlock *MBB) const
iterator_range< block_iterator > blocks() const
const std::vector< std::unique_ptr< WebAssemblyException > > & getSubExceptions() const
SmallPtrSetImpl< MachineBasicBlock * > & getBlocksSet()
block_iterator block_begin() const
std::vector< std::unique_ptr< WebAssemblyException > > & getSubExceptions()
typename ArrayRef< MachineBasicBlock * >::const_iterator block_iterator
void addSubException(std::unique_ptr< WebAssemblyException > E)
ArrayRef< MachineBasicBlock * > getBlocks() const
std::vector< MachineBasicBlock * > & getBlocksVector()
WebAssemblyException * getParentException() const
void removeFromBlocksSet(MachineBasicBlock *MBB)
WebAssemblyException(MachineBasicBlock *EHPad)
void addBlock(MachineBasicBlock *MBB)
MachineBasicBlock * getHeader() const
void setParentException(WebAssemblyException *WE)
typename decltype(SubExceptions)::const_iterator iterator
void addToBlocksVector(MachineBasicBlock *MBB)
const WebAssemblyException & operator=(const WebAssemblyException &)=delete
A range adaptor for a pair of iterators.
This class implements an extremely fast bulk output stream that can only output to a stream.
Definition: raw_ostream.h:52
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
iterator_range< T > make_range(T x, T y)
Convenience function for iterating over sub-ranges.
void initializeWebAssemblyExceptionInfoPass(PassRegistry &)
raw_ostream & operator<<(raw_ostream &OS, const APFixedPoint &FX)
Definition: APFixedPoint.h:293