Searched refs:CurrentPad (Results 1 - 2 of 2) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DInlineFunction.cpp233 Instruction *CurrentPad = Worklist.pop_back_val(); local
236 // the queue only ever contains uncles/great-uncles/etc. of CurrentPad,
238 assert(!MemoMap.count(CurrentPad));
240 if (auto *CatchSwitch = dyn_cast<CatchSwitchInst>(CurrentPad)) {
288 auto *CleanupPad = cast<CleanupPadInst>(CurrentPad);
327 // If we haven't found an unwind dest for CurrentPad, we may have queued its
332 // Now we know that CurrentPad unwinds to UnwindDestToken. It also exits
333 // any ancestors of CurrentPad up to but not including UnwindDestToken's
342 for (Instruction *ExitedPad = CurrentPad;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DVerifier.cpp3801 FuncletPadInst *CurrentPad = Worklist.pop_back_val(); local
3802 Assert(Seen.insert(CurrentPad).second,
3803 "FuncletPadInst must not be nested within itself", CurrentPad);
3805 for (User *U : CurrentPad->users()) {
3842 // Ignore unwind edges that don't exit CurrentPad.
3843 if (UnwindParent == CurrentPad)
3849 Value *ExitedPad = CurrentPad;
3854 // Now we can resolve any ancestors of CurrentPad up to
3896 if (CurrentPad != &FPI)
3900 if (CurrentPad
[all...]

Completed in 129 milliseconds