reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
492 outs() << " Version: " << static_cast<int>(UI->getVersion()) << "\n"; 493 outs() << " Flags: " << static_cast<int>(UI->getFlags()); 494 if (UI->getFlags()) { 495 if (UI->getFlags() & UNW_ExceptionHandler) 497 if (UI->getFlags() & UNW_TerminateHandler) 499 if (UI->getFlags() & UNW_ChainInfo) 503 outs() << " Size of prolog: " << static_cast<int>(UI->PrologSize) << "\n"; 504 outs() << " Number of Codes: " << static_cast<int>(UI->NumCodes) << "\n"; 506 if (UI->getFrameRegister()) { 508 << getUnwindRegisterName(UI->getFrameRegister()) << "\n"; 509 outs() << " Frame offset: " << 16 * UI->getFrameOffset() << "\n"; 513 if (UI->getFlags() & (UNW_ExceptionHandler | UNW_TerminateHandler)) { 515 } else if (UI->getFlags() & UNW_ChainInfo) { 519 if (UI->NumCodes) 522 printAllUnwindCodes(makeArrayRef(&UI->UnwindCodes[0], UI->NumCodes)); 522 printAllUnwindCodes(makeArrayRef(&UI->UnwindCodes[0], UI->NumCodes));