-
Notifications
You must be signed in to change notification settings - Fork 12.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ignore more frames on backtrace unwinding. #40264
Changes from 7 commits
680e2b7
2183ef6
dfaed07
c40ea76
33e42a3
d54caab
3353a42
deeaa73
7d667e4
00b991e
5205b8d
8a75b20
03f9940
b36446a
0e16333
e1ca626
d72937d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -107,47 +107,66 @@ fn filter_frames(frames: &[Frame], | |
"_ZN3std3sys3imp9backtrace", | ||
"ZN3std3sys3imp9backtrace", | ||
"std::sys::imp::backtrace", | ||
|
||
"_ZN3std10sys_common9backtrace", | ||
"ZN3std10sys_common9backtrace", | ||
"std::sys_common::backtrace", | ||
|
||
"_ZN3std9panicking", | ||
"ZN3std9panicking", | ||
"std::panicking", | ||
|
||
"_ZN4core9panicking", | ||
"ZN4core9panicking", | ||
"core::panicking", | ||
|
||
"_ZN4core6result13unwrap_failed", | ||
"ZN4core6result13unwrap_failed", | ||
"core::result::unwrap_failed", | ||
|
||
"rust_begin_unwind", | ||
"_ZN4drop", | ||
"mingw_set_invalid_parameter_handler", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This and |
||
]; | ||
static BAD_PREFIXES_BOTTOM: &'static [&'static str] = &[ | ||
"_ZN4core9panicking", | ||
"ZN4core9panicking", | ||
"core::panicking", | ||
|
||
"_ZN3std9panicking", | ||
"ZN3std9panicking", | ||
"std::panicking", | ||
|
||
"_ZN3std5panic", | ||
"ZN3std5panic", | ||
"std::panic", | ||
"_ZN4core9panicking", | ||
"ZN4core9panicking", | ||
"core::panicking", | ||
"_ZN3std2rt10lang_start", | ||
"ZN3std2rt10lang_start", | ||
"std::rt::lang_start", | ||
"panic_unwind::__rust_maybe_catch_panic", | ||
"__rust_maybe_catch_panic", | ||
"_rust_maybe_catch_panic", | ||
"__libc_start_main", | ||
|
||
"__rust_try", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't think that we want this to be the bottom of a frame, this is just one |
||
"_start", | ||
"main", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
"BaseThreadInitThunk", | ||
"RtlInitializeExceptionChain", | ||
"__scrt_common_main_seh", | ||
"_ZN4drop", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. IIRC, |
||
"mingw_set_invalid_parameter_handler", | ||
|
||
"_ZN4core3ops6FnOnce9call_once", | ||
"ZN4core3ops6FnOnce9call_once", | ||
"core::ops::FnOnce::call_once", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Like above, these could be any rust function, so we shouldn't prune these There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I fail to find an example where this frame would be at the beginning of the frame and you would not want to remove it. There will always be the main, or a function if it's a library. |
||
|
||
// tests | ||
"_ZN91_$LT$std..panic..AssertUnwindSafe$LT$F$GT$$u20$as$u20$core..ops..FnOnce\ | ||
$LT$$LP$$RP$$GT$$GT$9call_once", | ||
"ZN91_$LT$std..panic..AssertUnwindSafe$LT$F$GT$$u20$as$u20$core..ops..FnOnce\ | ||
$LT$$LP$$RP$$GT$$GT$9call_once", | ||
"<std::panic::AssertUnwindSafe<F> as core::ops::FnOnce<()>>::call_once", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't think that these are correct to have because this is just the beginning of a There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. So? It's std stuff, we want to remove it. |
||
|
||
"_ZN4test8run_test", | ||
"ZN4test8run_test", | ||
"test::run_test", | ||
|
||
"_ZN42_$LT$F$u20$as$u20$test..FnBox$LT$T$GT$$GT$8call_box", | ||
"ZN42_$LT$F$u20$as$u20$test..FnBox$LT$T$GT$$GT$8call_box", | ||
"<F as test::FnBox<T>>::call_box", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These can happen at any time, right? Not just during tests? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not sure, but it was fine during my tests. |
||
|
||
]; | ||
|
||
let is_good_frame = |frame: Frame, bad_prefixes: &[&str]| { | ||
|
@@ -164,11 +183,27 @@ fn filter_frames(frames: &[Frame], | |
let skipped_before = frames.iter().position(|frame| { | ||
is_good_frame(*frame, BAD_PREFIXES_TOP) | ||
}).unwrap_or(frames.len()); | ||
let skipped_after = frames[skipped_before..].iter().rev().position(|frame| { | ||
let idx_catch_panic = frames.iter().rposition(|frame| { | ||
let mut is_rmcp = false; | ||
let _ = resolve_symname(*frame, |symname| { | ||
if let Some(mangled_symbol_name) = symname { | ||
if mangled_symbol_name.contains("rust_maybe_catch_panic") { | ||
is_rmcp = true; | ||
} | ||
} | ||
Ok(()) | ||
}, context); | ||
is_rmcp | ||
}).unwrap_or(frames.len()); | ||
let skipped_after = | ||
frames.len() - idx_catch_panic | ||
+ frames[skipped_before..idx_catch_panic].iter() | ||
.rev() | ||
.position(|frame| { | ||
is_good_frame(*frame, BAD_PREFIXES_BOTTOM) | ||
}).unwrap_or(frames.len() - skipped_before); | ||
}).unwrap_or(0); | ||
|
||
if skipped_before + skipped_after == frames.len() { | ||
if skipped_before + skipped_after >= frames.len() { | ||
// Avoid showing completely empty backtraces | ||
return (0, 0); | ||
} | ||
|
@@ -198,7 +233,7 @@ pub fn log_enabled() -> Option<PrintFormat> { | |
} | ||
|
||
let val = match env::var_os("RUST_BACKTRACE") { | ||
Some(x) => if &x == "0" { | ||
Some(x) => if &x == "0" || &x == "" { | ||
None | ||
} else if &x == "full" { | ||
Some(PrintFormat::Full) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Er was this added in the previous PR? This definitely seems like something that we shouldn't be dropping, this is just a normal function?