Skip to content

Commit 94e655e

Browse files
Add -Zhir-stats for collecting statistics on HIR and AST
1 parent ac919fc commit 94e655e

File tree

5 files changed

+428
-2
lines changed

5 files changed

+428
-2
lines changed

src/librustc/session/config.rs

+2
Original file line numberDiff line numberDiff line change
@@ -918,6 +918,8 @@ options! {DebuggingOptions, DebuggingSetter, basic_debugging_options,
918918
"the directory the MIR is dumped into"),
919919
perf_stats: bool = (false, parse_bool, [UNTRACKED],
920920
"print some performance-related statistics"),
921+
hir_stats: bool = (false, parse_bool, [UNTRACKED],
922+
"print some statistics about AST and HIR"),
921923
}
922924

923925
pub fn default_lib_output() -> CrateType {

src/librustc/util/common.rs

+34
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,26 @@ pub fn duration_to_secs_str(dur: Duration) -> String {
7575
format!("{:.3}", secs)
7676
}
7777

78+
pub fn to_readable_str(mut val: usize) -> String {
79+
let mut groups = vec![];
80+
loop {
81+
let group = val % 1000;
82+
83+
val /= 1000;
84+
85+
if val == 0 {
86+
groups.push(format!("{}", group));
87+
break
88+
} else {
89+
groups.push(format!("{:03}", group));
90+
}
91+
}
92+
93+
groups.reverse();
94+
95+
groups.join("_")
96+
}
97+
7898
pub fn record_time<T, F>(accu: &Cell<Duration>, f: F) -> T where
7999
F: FnOnce() -> T,
80100
{
@@ -264,3 +284,17 @@ pub fn path2cstr(p: &Path) -> CString {
264284
pub fn path2cstr(p: &Path) -> CString {
265285
CString::new(p.to_str().unwrap()).unwrap()
266286
}
287+
288+
289+
#[test]
290+
fn test_to_readable_str() {
291+
assert_eq!("0", to_readable_str(0));
292+
assert_eq!("1", to_readable_str(1));
293+
assert_eq!("99", to_readable_str(99));
294+
assert_eq!("999", to_readable_str(999));
295+
assert_eq!("1_000", to_readable_str(1_000));
296+
assert_eq!("1_001", to_readable_str(1_001));
297+
assert_eq!("999_999", to_readable_str(999_999));
298+
assert_eq!("1_000_000", to_readable_str(1_000_000));
299+
assert_eq!("1_234_567", to_readable_str(1_234_567));
300+
}

src/librustc_driver/driver.rs

+17-2
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ use rustc_typeck as typeck;
3737
use rustc_privacy;
3838
use rustc_plugin::registry::Registry;
3939
use rustc_plugin as plugin;
40-
use rustc_passes::{ast_validation, no_asm, loops, consts, rvalues, static_recursion};
40+
use rustc_passes::{ast_validation, no_asm, loops, consts, rvalues,
41+
static_recursion, hir_stats};
4142
use rustc_const_eval::check_match;
4243
use super::Compilation;
4344

@@ -513,6 +514,10 @@ pub fn phase_1_parse_input<'a>(sess: &'a Session, input: &Input) -> PResult<'a,
513514
syntax::show_span::run(sess.diagnostic(), s, &krate);
514515
}
515516

517+
if sess.opts.debugging_opts.hir_stats {
518+
hir_stats::print_ast_stats(&krate, "PRE EXPANSION AST STATS");
519+
}
520+
516521
Ok(krate)
517522
}
518523

@@ -718,6 +723,10 @@ pub fn phase_2_configure_and_expand<'a, F>(sess: &Session,
718723
println!("Post-expansion node count: {}", count_nodes(&krate));
719724
}
720725

726+
if sess.opts.debugging_opts.hir_stats {
727+
hir_stats::print_ast_stats(&krate, "POST EXPANSION AST STATS");
728+
}
729+
721730
if sess.opts.debugging_opts.ast_json {
722731
println!("{}", json::as_json(&krate));
723732
}
@@ -758,7 +767,13 @@ pub fn phase_2_configure_and_expand<'a, F>(sess: &Session,
758767

759768
// Lower ast -> hir.
760769
let hir_forest = time(sess.time_passes(), "lowering ast -> hir", || {
761-
hir_map::Forest::new(lower_crate(sess, &krate, &mut resolver), &sess.dep_graph)
770+
let hir_crate = lower_crate(sess, &krate, &mut resolver);
771+
772+
if sess.opts.debugging_opts.hir_stats {
773+
hir_stats::print_hir_stats(&hir_crate);
774+
}
775+
776+
hir_map::Forest::new(hir_crate, &sess.dep_graph)
762777
});
763778

764779
// Discard hygiene data, which isn't required past lowering to HIR.

0 commit comments

Comments
 (0)