Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A 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()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DFunctionLoweringInfo.cpp342 DenseMap<BBOrMBB, SmallPtrSet<BBOrMBB, 4>> UnwindDestToSrcs; in set() local
343 for (auto &KV : EHInfo.UnwindDestToSrcs) { in set()
346 auto &Srcs = UnwindDestToSrcs[DestMBB]; in set()
350 EHInfo.UnwindDestToSrcs = std::move(UnwindDestToSrcs); in set()