Home
last modified time | relevance | path

Searched refs:SrcToUnwindDest (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DWasmEHFuncInfo.h35 DenseMap<BBOrMBB, BBOrMBB> SrcToUnwindDest; member
41 return cast<const BasicBlock *>(SrcToUnwindDest.lookup(BB)); in getUnwindDest()
52 SrcToUnwindDest[BB] = Dest; in setUnwindDest()
56 return SrcToUnwindDest.count(BB); in hasUnwindDest()
64 return cast<MachineBasicBlock *>(SrcToUnwindDest.lookup(MBB)); in getUnwindDest()
76 SrcToUnwindDest[MBB] = Dest; in setUnwindDest()
80 return SrcToUnwindDest.count(MBB); in hasUnwindDest()
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyMachineFunctionInfo.h188 BBNumberMap SrcToUnwindDest; member
203 YamlIO.mapOptional("wasmEHFuncInfo", MFI.SrcToUnwindDest);
209 BBNumberMap &SrcToUnwindDest) {
211 SrcToUnwindDest[std::atoi(Key.str().c_str())]);
214 static void output(IO &YamlIO, BBNumberMap &SrcToUnwindDest) {
215 for (auto KV : SrcToUnwindDest)
H A DWebAssemblyMachineFunctionInfo.cpp142 for (auto KV : EHInfo->SrcToUnwindDest) { in WebAssemblyFunctionInfo()
146 SrcToUnwindDest[SrcBB->getNumber()] = DestBB->getNumber(); in WebAssemblyFunctionInfo()
167 for (auto KV : YamlMFI.SrcToUnwindDest) in initializeBaseYamlFields()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DFunctionLoweringInfo.cpp335 DenseMap<BBOrMBB, BBOrMBB> SrcToUnwindDest; in set() local
336 for (auto &KV : EHInfo.SrcToUnwindDest) { in set()
339 SrcToUnwindDest[getMBB(Src)] = getMBB(Dest); in set()
341 EHInfo.SrcToUnwindDest = std::move(SrcToUnwindDest); in set()