Lines Matching refs:WebAssemblyException
82 SmallVector<std::unique_ptr<WebAssemblyException>, 8> Exceptions; in recalculate()
87 auto WE = std::make_unique<WebAssemblyException>(EHPad); in recalculate()
125 SmallVector<std::pair<WebAssemblyException *, WebAssemblyException *>> in recalculate()
198 WebAssemblyException *WE = getExceptionFor(MBB); in recalculate()
221 WebAssemblyException *InnerWE = getExceptionFor(MBB); in recalculate()
244 WebAssemblyException *WE = getExceptionFor(MBB); in recalculate()
249 SmallVector<WebAssemblyException*, 8> ExceptionPointers; in recalculate()
282 WebAssemblyException *WE, const MachineDominatorTree &MDT, in discoverAndMapException()
296 WebAssemblyException *SubE = getOutermostException(MBB); in discoverAndMapException()
327 WebAssemblyException *
329 WebAssemblyException *WE = getExceptionFor(MBB); in getOutermostException()
331 while (WebAssemblyException *Parent = WE->getParentException()) in getOutermostException()
337 void WebAssemblyException::print(raw_ostream &OS, unsigned Depth) const { in print()
360 LLVM_DUMP_METHOD void WebAssemblyException::dump() const { print(dbgs()); } in dump()
363 raw_ostream &operator<<(raw_ostream &OS, const WebAssemblyException &WE) { in operator <<()