Auto merge of #85640 - bjorn3:custom_ice_hook, r=jackh726
Allow changing the bug report url for the ice hook cc https://github.com/bjorn3/rustc_codegen_cranelift/issues/1174
This commit is contained in:
commit
50a9081216
2 changed files with 34 additions and 10 deletions
|
@ -1,4 +1,4 @@
|
||||||
#![feature(rustc_private)]
|
#![feature(rustc_private, once_cell)]
|
||||||
|
|
||||||
extern crate rustc_data_structures;
|
extern crate rustc_data_structures;
|
||||||
extern crate rustc_driver;
|
extern crate rustc_driver;
|
||||||
|
@ -6,12 +6,33 @@ extern crate rustc_interface;
|
||||||
extern crate rustc_session;
|
extern crate rustc_session;
|
||||||
extern crate rustc_target;
|
extern crate rustc_target;
|
||||||
|
|
||||||
|
use std::panic;
|
||||||
|
use std::lazy::SyncLazy;
|
||||||
|
|
||||||
use rustc_data_structures::profiling::{get_resident_set_size, print_time_passes_entry};
|
use rustc_data_structures::profiling::{get_resident_set_size, print_time_passes_entry};
|
||||||
use rustc_interface::interface;
|
use rustc_interface::interface;
|
||||||
use rustc_session::config::ErrorOutputType;
|
use rustc_session::config::ErrorOutputType;
|
||||||
use rustc_session::early_error;
|
use rustc_session::early_error;
|
||||||
use rustc_target::spec::PanicStrategy;
|
use rustc_target::spec::PanicStrategy;
|
||||||
|
|
||||||
|
const BUG_REPORT_URL: &str = "https://github.com/bjorn3/rustc_codegen_cranelift/issues/new";
|
||||||
|
|
||||||
|
static DEFAULT_HOOK: SyncLazy<Box<dyn Fn(&panic::PanicInfo<'_>) + Sync + Send + 'static>> =
|
||||||
|
SyncLazy::new(|| {
|
||||||
|
let hook = panic::take_hook();
|
||||||
|
panic::set_hook(Box::new(|info| {
|
||||||
|
// Invoke the default handler, which prints the actual panic message and optionally a backtrace
|
||||||
|
(*DEFAULT_HOOK)(info);
|
||||||
|
|
||||||
|
// Separate the output with an empty line
|
||||||
|
eprintln!();
|
||||||
|
|
||||||
|
// Print the ICE message
|
||||||
|
rustc_driver::report_ice(info, BUG_REPORT_URL);
|
||||||
|
}));
|
||||||
|
hook
|
||||||
|
});
|
||||||
|
|
||||||
#[derive(Default)]
|
#[derive(Default)]
|
||||||
pub struct CraneliftPassesCallbacks {
|
pub struct CraneliftPassesCallbacks {
|
||||||
time_passes: bool,
|
time_passes: bool,
|
||||||
|
@ -37,7 +58,7 @@ fn main() {
|
||||||
let start_rss = get_resident_set_size();
|
let start_rss = get_resident_set_size();
|
||||||
rustc_driver::init_rustc_env_logger();
|
rustc_driver::init_rustc_env_logger();
|
||||||
let mut callbacks = CraneliftPassesCallbacks::default();
|
let mut callbacks = CraneliftPassesCallbacks::default();
|
||||||
rustc_driver::install_ice_hook();
|
SyncLazy::force(&DEFAULT_HOOK); // Install ice hook
|
||||||
let exit_code = rustc_driver::catch_with_exit_code(|| {
|
let exit_code = rustc_driver::catch_with_exit_code(|| {
|
||||||
let args = std::env::args_os()
|
let args = std::env::args_os()
|
||||||
.enumerate()
|
.enumerate()
|
||||||
|
|
|
@ -1167,23 +1167,26 @@ pub fn catch_with_exit_code(f: impl FnOnce() -> interface::Result<()>) -> i32 {
|
||||||
static DEFAULT_HOOK: SyncLazy<Box<dyn Fn(&panic::PanicInfo<'_>) + Sync + Send + 'static>> =
|
static DEFAULT_HOOK: SyncLazy<Box<dyn Fn(&panic::PanicInfo<'_>) + Sync + Send + 'static>> =
|
||||||
SyncLazy::new(|| {
|
SyncLazy::new(|| {
|
||||||
let hook = panic::take_hook();
|
let hook = panic::take_hook();
|
||||||
panic::set_hook(Box::new(|info| report_ice(info, BUG_REPORT_URL)));
|
panic::set_hook(Box::new(|info| {
|
||||||
hook
|
|
||||||
});
|
|
||||||
|
|
||||||
/// Prints the ICE message, including backtrace and query stack.
|
|
||||||
///
|
|
||||||
/// The message will point the user at `bug_report_url` to report the ICE.
|
|
||||||
///
|
|
||||||
/// When `install_ice_hook` is called, this function will be called as the panic
|
|
||||||
/// hook.
|
|
||||||
pub fn report_ice(info: &panic::PanicInfo<'_>, bug_report_url: &str) {
|
|
||||||
// Invoke the default handler, which prints the actual panic message and optionally a backtrace
|
// Invoke the default handler, which prints the actual panic message and optionally a backtrace
|
||||||
(*DEFAULT_HOOK)(info);
|
(*DEFAULT_HOOK)(info);
|
||||||
|
|
||||||
// Separate the output with an empty line
|
// Separate the output with an empty line
|
||||||
eprintln!();
|
eprintln!();
|
||||||
|
|
||||||
|
// Print the ICE message
|
||||||
|
report_ice(info, BUG_REPORT_URL);
|
||||||
|
}));
|
||||||
|
hook
|
||||||
|
});
|
||||||
|
|
||||||
|
/// Prints the ICE message, including query stack, but without backtrace.
|
||||||
|
///
|
||||||
|
/// The message will point the user at `bug_report_url` to report the ICE.
|
||||||
|
///
|
||||||
|
/// When `install_ice_hook` is called, this function will be called as the panic
|
||||||
|
/// hook.
|
||||||
|
pub fn report_ice(info: &panic::PanicInfo<'_>, bug_report_url: &str) {
|
||||||
let emitter = Box::new(rustc_errors::emitter::EmitterWriter::stderr(
|
let emitter = Box::new(rustc_errors::emitter::EmitterWriter::stderr(
|
||||||
rustc_errors::ColorConfig::Auto,
|
rustc_errors::ColorConfig::Auto,
|
||||||
None,
|
None,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue