Home
last modified time | relevance | path

Searched refs:UnwindDests (Results 1 – 3 of 3) sorted by relevance

/openbsd-src/gnu/llvm/llvm/lib/CodeGen/GlobalISel/
H A DIRTranslator.cpp2509 &UnwindDests) { in findUnwindDestinations()
2527 UnwindDests.emplace_back(&getMBB(*EHPadBB), Prob); in findUnwindDestinations()
2533 UnwindDests.emplace_back(&getMBB(*EHPadBB), Prob); in findUnwindDestinations()
2534 UnwindDests.back().first->setIsEHScopeEntry(); in findUnwindDestinations()
2535 UnwindDests.back().first->setIsEHFuncletEntry(); in findUnwindDestinations()
2541 UnwindDests.emplace_back(&getMBB(*CatchPadBB), Prob); in findUnwindDestinations()
2544 UnwindDests.back().first->setIsEHFuncletEntry(); in findUnwindDestinations()
2546 UnwindDests.back().first->setIsEHScopeEntry(); in findUnwindDestinations()
2611 SmallVector<std::pair<MachineBasicBlock *, BranchProbability>, 1> UnwindDests; in translateInvoke() local
2618 if (!findUnwindDestinations(EHPadBB, EHPadBBProb, UnwindDests)) in translateInvoke()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp1840 &UnwindDests) { in findWasmUnwindDestinations()
1845 UnwindDests.emplace_back(FuncInfo.MBBMap[EHPadBB], Prob); in findWasmUnwindDestinations()
1846 UnwindDests.back().first->setIsEHScopeEntry(); in findWasmUnwindDestinations()
1852 UnwindDests.emplace_back(FuncInfo.MBBMap[CatchPadBB], Prob); in findWasmUnwindDestinations()
1853 UnwindDests.back().first->setIsEHScopeEntry(); in findWasmUnwindDestinations()
1874 &UnwindDests) { in findUnwindDestinations()
1883 findWasmUnwindDestinations(FuncInfo, EHPadBB, Prob, UnwindDests); in findUnwindDestinations()
1884 assert(UnwindDests.size() <= 1 && in findUnwindDestinations()
1894 UnwindDests.emplace_back(FuncInfo.MBBMap[EHPadBB], Prob); in findUnwindDestinations()
1899 UnwindDests.emplace_back(FuncInfo.MBBMap[EHPadBB], Prob); in findUnwindDestinations()
[all …]
/openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/GlobalISel/
H A DIRTranslator.h270 &UnwindDests);