Home
last modified time | relevance | path

Searched refs:SubExceptions (Results 1 – 2 of 2) sorted by relevance

/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyExceptionInfo.h46 std::vector<std::unique_ptr<WebAssemblyException>> SubExceptions; variable
91 return SubExceptions; in getSubExceptions()
94 return SubExceptions; in getSubExceptions()
97 SubExceptions.push_back(std::move(E)); in addSubException()
99 using iterator = typename decltype(SubExceptions)::const_iterator;
100 iterator begin() const { return SubExceptions.begin(); } in begin()
101 iterator end() const { return SubExceptions.end(); } in end()
H A DWebAssemblyExceptionInfo.cpp262 // For convenience, Blocks and SubExceptions are inserted in postorder. in recalculate()
356 for (auto &SubE : SubExceptions) in print()