mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
Address review comments
This commit is contained in:
parent
7d67a1b871
commit
b81d164f61
@ -84,13 +84,11 @@ impl std::ops::Deref for CrateMetadataRef<'_> {
|
||||
|
||||
struct CrateDump<'a>(&'a CStore);
|
||||
|
||||
fn crate_dump(cstore: &'a CStore) -> impl std::fmt::Debug + 'a {
|
||||
CrateDump(cstore)
|
||||
}
|
||||
|
||||
impl<'a> std::fmt::Debug for CrateDump<'a> {
|
||||
fn fmt(&self, fmt: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
||||
writeln!(fmt, "resolved crates:")?;
|
||||
// `iter_crate_data` does not allow returning values. Thus we use a mutable variable here
|
||||
// that aggregates the value (and any errors that could happen).
|
||||
let mut res = Ok(());
|
||||
self.0.iter_crate_data(|cnum, data| {
|
||||
res = res.and(
|
||||
@ -878,7 +876,7 @@ impl<'a> CrateLoader<'a> {
|
||||
self.inject_allocator_crate(krate);
|
||||
self.inject_panic_runtime(krate);
|
||||
|
||||
info!("{:?}", crate_dump(&self.cstore));
|
||||
info!("{:?}", CrateDump(&self.cstore));
|
||||
|
||||
self.report_unused_deps(krate);
|
||||
}
|
||||
|
@ -1905,10 +1905,6 @@ macro_rules! sty_debug_print {
|
||||
|
||||
impl<'tcx> TyCtxt<'tcx> {
|
||||
pub fn debug_stats(self) -> impl std::fmt::Debug + 'tcx {
|
||||
DebugStats(self)
|
||||
}
|
||||
}
|
||||
|
||||
struct DebugStats<'tcx>(TyCtxt<'tcx>);
|
||||
|
||||
impl std::fmt::Debug for DebugStats<'tcx> {
|
||||
@ -1940,7 +1936,11 @@ impl std::fmt::Debug for DebugStats<'tcx> {
|
||||
writeln!(fmt, "InternalSubsts interner: #{}", self.0.interners.substs.len())?;
|
||||
writeln!(fmt, "Region interner: #{}", self.0.interners.region.len())?;
|
||||
writeln!(fmt, "Stability interner: #{}", self.0.stability_interner.len())?;
|
||||
writeln!(fmt, "Const Stability interner: #{}", self.0.const_stability_interner.len())?;
|
||||
writeln!(
|
||||
fmt,
|
||||
"Const Stability interner: #{}",
|
||||
self.0.const_stability_interner.len()
|
||||
)?;
|
||||
writeln!(fmt, "Allocation interner: #{}", self.0.allocation_interner.len())?;
|
||||
writeln!(fmt, "Layout interner: #{}", self.0.layout_interner.len())?;
|
||||
|
||||
@ -1948,6 +1948,10 @@ impl std::fmt::Debug for DebugStats<'tcx> {
|
||||
}
|
||||
}
|
||||
|
||||
DebugStats(self)
|
||||
}
|
||||
}
|
||||
|
||||
/// An entry in an interner.
|
||||
struct Interned<'tcx, T: ?Sized>(&'tcx T);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user