Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
DWasmEHFuncInfo.h35 DenseMap<BBOrMBB, BBOrMBB> SrcToUnwindDest; member
41 return SrcToUnwindDest.lookup(BB).get<const BasicBlock *>(); in getUnwindDest()
52 SrcToUnwindDest[BB] = Dest; in setUnwindDest()
58 return SrcToUnwindDest.count(BB); in hasUnwindDest()
66 return SrcToUnwindDest.lookup(MBB).get<MachineBasicBlock *>(); in getUnwindDest()
78 SrcToUnwindDest[MBB] = Dest; in setUnwindDest()
84 return SrcToUnwindDest.count(MBB); in hasUnwindDest()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/
DWebAssemblyMachineFunctionInfo.h196 BBNumberMap SrcToUnwindDest; member
210 YamlIO.mapOptional("wasmEHFuncInfo", MFI.SrcToUnwindDest);
216 BBNumberMap &SrcToUnwindDest) {
218 SrcToUnwindDest[std::atoi(Key.str().c_str())]);
221 static void output(IO &YamlIO, BBNumberMap &SrcToUnwindDest) {
222 for (auto KV : SrcToUnwindDest)
DWebAssemblyMachineFunctionInfo.cpp128 for (auto KV : EHInfo->SrcToUnwindDest) { in WebAssemblyFunctionInfo()
132 SrcToUnwindDest[SrcBB->getNumber()] = DestBB->getNumber(); in WebAssemblyFunctionInfo()
149 for (auto KV : YamlMFI.SrcToUnwindDest) in initializeBaseYamlFields()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
DFunctionLoweringInfo.cpp334 DenseMap<BBOrMBB, BBOrMBB> SrcToUnwindDest; in set() local
335 for (auto &KV : EHInfo.SrcToUnwindDest) { in set()
338 SrcToUnwindDest[MBBMap[Src]] = MBBMap[Dest]; in set()
340 EHInfo.SrcToUnwindDest = std::move(SrcToUnwindDest); in set()