Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:Handlers

127                                 ArrayRef<const CatchPadInst *> Handlers) {
133 for (const CatchPadInst *CPI : Handlers) {
232 SmallVector<const CatchPadInst *, 2> Handlers;
233 for (const BasicBlock *CatchPadBB : CatchSwitch->handlers()) {
235 Handlers.push_back(CatchPad);
248 for (const auto *CatchPad : Handlers) {
257 addTryBlockMapEntry(FuncInfo, TryLow, TryHigh, CatchHigh, Handlers);
325 "SEH doesn't have multiple handlers per __try");
449 // looking for top-level handlers and seed the worklist with them.
485 SmallVector<const CatchPadInst *, 1> Handlers;
486 for (const BasicBlock *CatchPadBB : CatchSwitch->handlers()) {
488 Handlers.push_back(Catch);
492 for (auto HandlerI = Handlers.rbegin(), HandlerE = Handlers.rend();
502 for (const auto *CatchPad : Handlers) {