Lines Matching refs:WebAssemblyException
81 SmallVector<std::unique_ptr<WebAssemblyException>, 8> Exceptions; in recalculate()
86 auto WE = std::make_unique<WebAssemblyException>(EHPad); in recalculate()
123 SmallVector<std::pair<WebAssemblyException *, WebAssemblyException *>> in recalculate()
196 WebAssemblyException *WE = getExceptionFor(MBB); in recalculate()
219 WebAssemblyException *InnerWE = getExceptionFor(MBB); in recalculate()
242 WebAssemblyException *WE = getExceptionFor(MBB); in recalculate()
247 SmallVector<WebAssemblyException*, 8> ExceptionPointers; in recalculate()
280 WebAssemblyException *WE, const MachineDominatorTree &MDT, in discoverAndMapException()
294 WebAssemblyException *SubE = getOutermostException(MBB); in discoverAndMapException()
325 WebAssemblyException *
327 WebAssemblyException *WE = getExceptionFor(MBB); in getOutermostException()
329 while (WebAssemblyException *Parent = WE->getParentException()) in getOutermostException()
335 void WebAssemblyException::print(raw_ostream &OS, unsigned Depth) const { in print()
358 LLVM_DUMP_METHOD void WebAssemblyException::dump() const { print(dbgs()); } in dump()
361 raw_ostream &operator<<(raw_ostream &OS, const WebAssemblyException &WE) { in operator <<()