Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/include/llvm/CodeGen/
H A 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()
/llvm-project-15.0.7/llvm/lib/Target/WebAssembly/
H A DWebAssemblyMachineFunctionInfo.h205 BBNumberMap SrcToUnwindDest; member
219 YamlIO.mapOptional("wasmEHFuncInfo", MFI.SrcToUnwindDest);
225 BBNumberMap &SrcToUnwindDest) {
227 SrcToUnwindDest[std::atoi(Key.str().c_str())]);
230 static void output(IO &YamlIO, BBNumberMap &SrcToUnwindDest) {
231 for (auto KV : SrcToUnwindDest)
H A DWebAssemblyMachineFunctionInfo.cpp144 for (auto KV : EHInfo->SrcToUnwindDest) { in WebAssemblyFunctionInfo()
148 SrcToUnwindDest[SrcBB->getNumber()] = DestBB->getNumber(); in WebAssemblyFunctionInfo()
165 for (auto KV : YamlMFI.SrcToUnwindDest) in initializeBaseYamlFields()
/llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/
H A DFunctionLoweringInfo.cpp331 DenseMap<BBOrMBB, BBOrMBB> SrcToUnwindDest; in set() local
332 for (auto &KV : EHInfo.SrcToUnwindDest) { in set()
335 SrcToUnwindDest[MBBMap[Src]] = MBBMap[Dest]; in set()
337 EHInfo.SrcToUnwindDest = std::move(SrcToUnwindDest); in set()