Lines Matching refs:WebAssemblyException
82 SmallVector<std::unique_ptr<WebAssemblyException>, 8> Exceptions; in recalculate()
87 auto WE = std::make_unique<WebAssemblyException>(EHPad); in recalculate()
124 SmallVector<std::pair<WebAssemblyException *, WebAssemblyException *>> in recalculate()
197 WebAssemblyException *WE = getExceptionFor(MBB); in recalculate()
220 WebAssemblyException *InnerWE = getExceptionFor(MBB); in recalculate()
243 WebAssemblyException *WE = getExceptionFor(MBB); in recalculate()
248 SmallVector<WebAssemblyException*, 8> ExceptionPointers; in recalculate()
281 WebAssemblyException *WE, const MachineDominatorTree &MDT, in discoverAndMapException()
295 WebAssemblyException *SubE = getOutermostException(MBB); in discoverAndMapException()
326 WebAssemblyException *
328 WebAssemblyException *WE = getExceptionFor(MBB); in getOutermostException()
330 while (WebAssemblyException *Parent = WE->getParentException()) in getOutermostException()
336 void WebAssemblyException::print(raw_ostream &OS, unsigned Depth) const { in print()
359 LLVM_DUMP_METHOD void WebAssemblyException::dump() const { print(dbgs()); } in dump()
362 raw_ostream &operator<<(raw_ostream &OS, const WebAssemblyException &WE) { in operator <<()