Lines Matching refs:WebAssemblyException
83 SmallVector<std::unique_ptr<WebAssemblyException>, 8> Exceptions; in recalculate()
88 auto WE = std::make_unique<WebAssemblyException>(EHPad); in recalculate()
126 SmallVector<std::pair<WebAssemblyException *, WebAssemblyException *>> in recalculate()
199 WebAssemblyException *WE = getExceptionFor(MBB); in recalculate()
222 WebAssemblyException *InnerWE = getExceptionFor(MBB); in recalculate()
246 WebAssemblyException *WE = getExceptionFor(MBB); in recalculate()
251 SmallVector<WebAssemblyException*, 8> ExceptionPointers; in recalculate()
284 WebAssemblyException *WE, const MachineDominatorTree &MDT, in discoverAndMapException()
298 WebAssemblyException *SubE = getOutermostException(MBB); in discoverAndMapException()
329 WebAssemblyException *
331 WebAssemblyException *WE = getExceptionFor(MBB); in getOutermostException()
333 while (WebAssemblyException *Parent = WE->getParentException()) in getOutermostException()
339 void WebAssemblyException::print(raw_ostream &OS, unsigned Depth) const { in print()
362 LLVM_DUMP_METHOD void WebAssemblyException::dump() const { print(dbgs()); } in dump()
365 raw_ostream &operator<<(raw_ostream &OS, const WebAssemblyException &WE) { in operator <<()