Lines Matching defs:UI
652 static void printWin64EHUnwindInfo(const Win64EH::UnwindInfo *UI) {
656 outs() << " Version: " << static_cast<int>(UI->getVersion()) << "\n";
657 outs() << " Flags: " << static_cast<int>(UI->getFlags());
658 if (UI->getFlags()) {
659 if (UI->getFlags() & UNW_ExceptionHandler)
661 if (UI->getFlags() & UNW_TerminateHandler)
663 if (UI->getFlags() & UNW_ChainInfo)
667 outs() << " Size of prolog: " << static_cast<int>(UI->PrologSize) << "\n";
668 outs() << " Number of Codes: " << static_cast<int>(UI->NumCodes) << "\n";
670 if (UI->getFrameRegister()) {
672 << getUnwindRegisterName(UI->getFrameRegister()) << "\n";
673 outs() << " Frame offset: " << 16 * UI->getFrameOffset() << "\n";
677 if (UI->getFlags() & (UNW_ExceptionHandler | UNW_TerminateHandler)) {
679 } else if (UI->getFlags() & UNW_ChainInfo) {
683 if (UI->NumCodes)
686 printAllUnwindCodes(ArrayRef(&UI->UnwindCodes[0], UI->NumCodes));
758 auto *UI = reinterpret_cast<const Win64EH::UnwindInfo *>(XContents.data() +
760 printWin64EHUnwindInfo(UI);