Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
H A DIRTranslator.cpp2354 &UnwindDests) { in findUnwindDestinations()
2372 UnwindDests.emplace_back(&getMBB(*EHPadBB), Prob); in findUnwindDestinations()
2378 UnwindDests.emplace_back(&getMBB(*EHPadBB), Prob); in findUnwindDestinations()
2379 UnwindDests.back().first->setIsEHScopeEntry(); in findUnwindDestinations()
2380 UnwindDests.back().first->setIsEHFuncletEntry(); in findUnwindDestinations()
2386 UnwindDests.emplace_back(&getMBB(*CatchPadBB), Prob); in findUnwindDestinations()
2389 UnwindDests.back().first->setIsEHFuncletEntry(); in findUnwindDestinations()
2391 UnwindDests.back().first->setIsEHScopeEntry(); in findUnwindDestinations()
2468 SmallVector<std::pair<MachineBasicBlock *, BranchProbability>, 1> UnwindDests; in translateInvoke() local
2475 if (!findUnwindDestinations(EHPadBB, EHPadBBProb, UnwindDests)) in translateInvoke()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp1760 &UnwindDests) { in findWasmUnwindDestinations()
1765 UnwindDests.emplace_back(FuncInfo.MBBMap[EHPadBB], Prob); in findWasmUnwindDestinations()
1766 UnwindDests.back().first->setIsEHScopeEntry(); in findWasmUnwindDestinations()
1772 UnwindDests.emplace_back(FuncInfo.MBBMap[CatchPadBB], Prob); in findWasmUnwindDestinations()
1773 UnwindDests.back().first->setIsEHScopeEntry(); in findWasmUnwindDestinations()
1794 &UnwindDests) { in findUnwindDestinations()
1803 findWasmUnwindDestinations(FuncInfo, EHPadBB, Prob, UnwindDests); in findUnwindDestinations()
1804 assert(UnwindDests.size() <= 1 && in findUnwindDestinations()
1814 UnwindDests.emplace_back(FuncInfo.MBBMap[EHPadBB], Prob); in findUnwindDestinations()
1819 UnwindDests.emplace_back(FuncInfo.MBBMap[EHPadBB], Prob); in findUnwindDestinations()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/GlobalISel/
H A DIRTranslator.h274 &UnwindDests);