Home
last modified time | relevance | path

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

/openbsd/src/gnu/llvm/llvm/include/llvm/CodeGen/
DWasmEHFuncInfo.h36 DenseMap<BBOrMBB, SmallPtrSet<BBOrMBB, 4>> UnwindDestToSrcs; // reverse map member
45 const auto &Set = UnwindDestToSrcs.lookup(BB); in getUnwindSrcs()
53 UnwindDestToSrcs[Dest].insert(BB); in setUnwindDest()
59 return UnwindDestToSrcs.count(BB); in hasUnwindSrcs()
69 const auto &Set = UnwindDestToSrcs.lookup(MBB); in getUnwindSrcs()
77 UnwindDestToSrcs[Dest].insert(MBB); in setUnwindDest()
83 return UnwindDestToSrcs.count(MBB); in hasUnwindSrcs()
/openbsd/src/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
DFunctionLoweringInfo.cpp334 DenseMap<BBOrMBB, SmallPtrSet<BBOrMBB, 4>> UnwindDestToSrcs; in set() local
335 for (auto &KV : EHInfo.UnwindDestToSrcs) { in set()
337 UnwindDestToSrcs[MBBMap[Dest]] = SmallPtrSet<BBOrMBB, 4>(); in set()
339 UnwindDestToSrcs[MBBMap[Dest]].insert( in set()
342 EHInfo.UnwindDestToSrcs = std::move(UnwindDestToSrcs); in set()