Home
last modified time | relevance | path

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

/freebsd-14.2/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-14.2/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyMachineFunctionInfo.h189 BBNumberMap SrcToUnwindDest; member
204 YamlIO.mapOptional("wasmEHFuncInfo", MFI.SrcToUnwindDest);
210 BBNumberMap &SrcToUnwindDest) {
212 SrcToUnwindDest[std::atoi(Key.str().c_str())]);
215 static void output(IO &YamlIO, BBNumberMap &SrcToUnwindDest) {
216 for (auto KV : SrcToUnwindDest)
H A DWebAssemblyMachineFunctionInfo.cpp141 for (auto KV : EHInfo->SrcToUnwindDest) { in WebAssemblyFunctionInfo()
145 SrcToUnwindDest[SrcBB->getNumber()] = DestBB->getNumber(); in WebAssemblyFunctionInfo()
166 for (auto KV : YamlMFI.SrcToUnwindDest) in initializeBaseYamlFields()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DFunctionLoweringInfo.cpp322 DenseMap<BBOrMBB, BBOrMBB> SrcToUnwindDest; in set() local
323 for (auto &KV : EHInfo.SrcToUnwindDest) { in set()
326 SrcToUnwindDest[MBBMap[Src]] = MBBMap[Dest]; in set()
328 EHInfo.SrcToUnwindDest = std::move(SrcToUnwindDest); in set()