1use std::collections::BTreeSet;
2use std::fmt::{Display, Write as _};
3use std::path::{Path, PathBuf};
4use std::{fs, io};
5
6use rustc_abi::Size;
7use rustc_ast::InlineAsmTemplatePiece;
8use tracing::trace;
9use ty::print::PrettyPrinter;
10
11use super::graphviz::write_mir_fn_graphviz;
12use crate::mir::interpret::{
13 AllocBytes, AllocId, Allocation, ConstAllocation, GlobalAlloc, Pointer, Provenance,
14 alloc_range, read_target_uint,
15};
16use crate::mir::visit::Visitor;
17use crate::mir::*;
18
19const INDENT: &str = " ";
20pub(crate) const ALIGN: usize = 40;
22
23#[derive(#[automatically_derived]
impl ::core::clone::Clone for PassWhere {
#[inline]
fn clone(&self) -> PassWhere {
let _: ::core::clone::AssertParamIsClone<BasicBlock>;
let _: ::core::clone::AssertParamIsClone<Location>;
*self
}
}Clone, #[automatically_derived]
impl ::core::marker::Copy for PassWhere { }Copy)]
26pub enum PassWhere {
27 BeforeCFG,
29
30 AfterCFG,
32
33 BeforeBlock(BasicBlock),
35
36 BeforeLocation(Location),
38
39 AfterLocation(Location),
41
42 AfterTerminator(BasicBlock),
44}
45
46#[derive(#[automatically_derived]
impl ::core::marker::Copy for PrettyPrintMirOptions { }Copy, #[automatically_derived]
impl ::core::clone::Clone for PrettyPrintMirOptions {
#[inline]
fn clone(&self) -> PrettyPrintMirOptions {
let _: ::core::clone::AssertParamIsClone<bool>;
*self
}
}Clone)]
49pub struct PrettyPrintMirOptions {
50 pub include_extra_comments: bool,
52}
53
54impl PrettyPrintMirOptions {
55 pub fn from_cli(tcx: TyCtxt<'_>) -> Self {
57 Self { include_extra_comments: tcx.sess.opts.unstable_opts.mir_include_spans.is_enabled() }
58 }
59}
60
61pub struct MirDumper<'dis, 'de, 'tcx> {
65 show_pass_num: bool,
66 pass_name: &'static str,
67 disambiguator: &'dis dyn Display,
68 writer: MirWriter<'de, 'tcx>,
69}
70
71impl<'dis, 'de, 'tcx> MirDumper<'dis, 'de, 'tcx> {
72 pub fn new(tcx: TyCtxt<'tcx>, pass_name: &'static str, body: &Body<'tcx>) -> Option<Self> {
79 let dump_enabled = if let Some(ref filters) = tcx.sess.opts.unstable_opts.dump_mir {
80 let node_path = {
let _guard = NoTrimmedGuard::new();
{
let _guard = ForcedImplGuard::new();
tcx.def_path_str(body.source.def_id())
}
}ty::print::with_no_trimmed_paths!(
82 ty::print::with_forced_impl_filename_line!(tcx.def_path_str(body.source.def_id()))
83 );
84 filters.split('|').any(|or_filter| {
85 or_filter.split('&').all(|and_filter| {
86 let and_filter_trimmed = and_filter.trim();
87 and_filter_trimmed == "all"
88 || pass_name.contains(and_filter_trimmed)
89 || node_path.contains(and_filter_trimmed)
90 })
91 })
92 } else {
93 false
94 };
95
96 dump_enabled.then_some(MirDumper {
97 show_pass_num: false,
98 pass_name,
99 disambiguator: &0,
100 writer: MirWriter::new(tcx),
101 })
102 }
103
104 pub fn tcx(&self) -> TyCtxt<'tcx> {
105 self.writer.tcx
106 }
107
108 #[must_use]
109 pub fn set_show_pass_num(mut self) -> Self {
110 self.show_pass_num = true;
111 self
112 }
113
114 #[must_use]
115 pub fn set_disambiguator(mut self, disambiguator: &'dis dyn Display) -> Self {
116 self.disambiguator = disambiguator;
117 self
118 }
119
120 #[must_use]
121 pub fn set_extra_data(
122 mut self,
123 extra_data: &'de dyn Fn(PassWhere, &mut dyn io::Write) -> io::Result<()>,
124 ) -> Self {
125 self.writer.extra_data = extra_data;
126 self
127 }
128
129 #[must_use]
130 pub fn set_options(mut self, options: PrettyPrintMirOptions) -> Self {
131 self.writer.options = options;
132 self
133 }
134
135 pub fn dump_mir(&self, body: &Body<'tcx>) {
160 let _ = try {
161 let mut file = self.create_dump_file("mir", body)?;
162 self.dump_mir_to_writer(body, &mut file)?;
163 };
164
165 if self.tcx().sess.opts.unstable_opts.dump_mir_graphviz {
166 let _ = try {
167 let mut file = self.create_dump_file("dot", body)?;
168 write_mir_fn_graphviz(self.tcx(), body, false, &mut file)?;
169 };
170 }
171 }
172
173 pub fn dump_mir_to_writer(&self, body: &Body<'tcx>, w: &mut dyn io::Write) -> io::Result<()> {
176 let def_path =
178 {
let _guard = NoTrimmedGuard::new();
{
let _guard = ForcedImplGuard::new();
self.tcx().def_path_str(body.source.def_id())
}
}ty::print::with_no_trimmed_paths!(ty::print::with_forced_impl_filename_line!(
179 self.tcx().def_path_str(body.source.def_id())
180 ));
181 w.write_fmt(format_args!("// MIR for `{0}", def_path))write!(w, "// MIR for `{def_path}")?;
183 match body.source.promoted {
184 None => w.write_fmt(format_args!("`"))write!(w, "`")?,
185 Some(promoted) => w.write_fmt(format_args!("::{0:?}`", promoted))write!(w, "::{promoted:?}`")?,
186 }
187 w.write_fmt(format_args!(" {0} {1}\n", self.disambiguator, self.pass_name))writeln!(w, " {} {}", self.disambiguator, self.pass_name)?;
188 if let Some(ref layout) = body.coroutine_layout_raw() {
189 w.write_fmt(format_args!("/* coroutine_layout = {0:#?} */\n", layout))writeln!(w, "/* coroutine_layout = {layout:#?} */")?;
190 }
191 w.write_fmt(format_args!("\n"))writeln!(w)?;
192 (self.writer.extra_data)(PassWhere::BeforeCFG, w)?;
193 write_user_type_annotations(self.tcx(), body, w)?;
194 self.writer.write_mir_fn(body, w)?;
195 (self.writer.extra_data)(PassWhere::AfterCFG, w)
196 }
197
198 fn dump_path(&self, extension: &str, body: &Body<'tcx>) -> PathBuf {
202 let tcx = self.tcx();
203 let source = body.source;
204 let promotion_id = match source.promoted {
205 Some(id) => ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("-{0:?}", id))
})format!("-{id:?}"),
206 None => String::new(),
207 };
208
209 let pass_num = if tcx.sess.opts.unstable_opts.dump_mir_exclude_pass_number {
210 String::new()
211 } else if self.show_pass_num {
212 let (dialect_index, phase_index) = body.phase.index();
213 ::alloc::__export::must_use({
::alloc::fmt::format(format_args!(".{0}-{1}-{2:03}", dialect_index,
phase_index, body.pass_count))
})format!(".{}-{}-{:03}", dialect_index, phase_index, body.pass_count)
214 } else {
215 ".-------".to_string()
216 };
217
218 let crate_name = tcx.crate_name(source.def_id().krate);
219 let item_name = tcx.def_path(source.def_id()).to_filename_friendly_no_crate();
220 let shim_disambiguator = match source.instance {
223 ty::InstanceKind::DropGlue(_, Some(ty)) => {
224 let mut s = ".".to_owned();
227 s.extend(ty.to_string().chars().filter_map(|c| match c {
228 ' ' => None,
229 ':' | '<' | '>' => Some('_'),
230 c => Some(c),
231 }));
232 s
233 }
234 ty::InstanceKind::AsyncDropGlueCtorShim(_, ty) => {
235 let mut s = ".".to_owned();
236 s.extend(ty.to_string().chars().filter_map(|c| match c {
237 ' ' => None,
238 ':' | '<' | '>' => Some('_'),
239 c => Some(c),
240 }));
241 s
242 }
243 ty::InstanceKind::AsyncDropGlue(_, ty) => {
244 let ty::Coroutine(_, args) = ty.kind() else {
245 crate::util::bug::bug_fmt(format_args!("impossible case reached"));bug!();
246 };
247 let ty = args.first().unwrap().expect_ty();
248 let mut s = ".".to_owned();
249 s.extend(ty.to_string().chars().filter_map(|c| match c {
250 ' ' => None,
251 ':' | '<' | '>' => Some('_'),
252 c => Some(c),
253 }));
254 s
255 }
256 ty::InstanceKind::FutureDropPollShim(_, proxy_cor, impl_cor) => {
257 let mut s = ".".to_owned();
258 s.extend(proxy_cor.to_string().chars().filter_map(|c| match c {
259 ' ' => None,
260 ':' | '<' | '>' => Some('_'),
261 c => Some(c),
262 }));
263 s.push('.');
264 s.extend(impl_cor.to_string().chars().filter_map(|c| match c {
265 ' ' => None,
266 ':' | '<' | '>' => Some('_'),
267 c => Some(c),
268 }));
269 s
270 }
271 _ => String::new(),
272 };
273
274 let mut file_path = PathBuf::new();
275 file_path.push(Path::new(&tcx.sess.opts.unstable_opts.dump_mir_dir));
276
277 let pass_name = self.pass_name;
278 let disambiguator = self.disambiguator;
279 let file_name = ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0}.{1}{2}{3}{4}.{5}.{6}.{7}",
crate_name, item_name, shim_disambiguator, promotion_id,
pass_num, pass_name, disambiguator, extension))
})format!(
280 "{crate_name}.{item_name}{shim_disambiguator}{promotion_id}{pass_num}.{pass_name}.{disambiguator}.{extension}",
281 );
282
283 file_path.push(&file_name);
284
285 file_path
286 }
287
288 pub fn create_dump_file(
293 &self,
294 extension: &str,
295 body: &Body<'tcx>,
296 ) -> io::Result<io::BufWriter<fs::File>> {
297 let file_path = self.dump_path(extension, body);
298 if let Some(parent) = file_path.parent() {
299 fs::create_dir_all(parent).map_err(|e| {
300 io::Error::new(
301 e.kind(),
302 ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("IO error creating MIR dump directory: {0:?}; {1}",
parent, e))
})format!("IO error creating MIR dump directory: {parent:?}; {e}"),
303 )
304 })?;
305 }
306 fs::File::create_buffered(&file_path).map_err(|e| {
307 io::Error::new(e.kind(), ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("IO error creating MIR dump file: {0:?}; {1}",
file_path, e))
})format!("IO error creating MIR dump file: {file_path:?}; {e}"))
308 })
309 }
310}
311
312pub fn write_mir_pretty<'tcx>(
318 tcx: TyCtxt<'tcx>,
319 single: Option<DefId>,
320 w: &mut dyn io::Write,
321) -> io::Result<()> {
322 let writer = MirWriter::new(tcx);
323
324 w.write_fmt(format_args!("// WARNING: This output format is intended for human consumers only\n"))writeln!(w, "// WARNING: This output format is intended for human consumers only")?;
325 w.write_fmt(format_args!("// and is subject to change without notice. Knock yourself out.\n"))writeln!(w, "// and is subject to change without notice. Knock yourself out.")?;
326 w.write_fmt(format_args!("// HINT: See also -Z dump-mir for MIR at specific points during compilation.\n"))writeln!(w, "// HINT: See also -Z dump-mir for MIR at specific points during compilation.")?;
327
328 let mut first = true;
329 for def_id in dump_mir_def_ids(tcx, single) {
330 if first {
331 first = false;
332 } else {
333 w.write_fmt(format_args!("\n"))writeln!(w)?;
335 }
336
337 let render_body = |w: &mut dyn io::Write, body| -> io::Result<()> {
338 writer.write_mir_fn(body, w)?;
339
340 for body in tcx.promoted_mir(def_id) {
341 w.write_fmt(format_args!("\n"))writeln!(w)?;
342 writer.write_mir_fn(body, w)?;
343 }
344 Ok(())
345 };
346
347 if tcx.is_const_fn(def_id) {
349 render_body(w, tcx.optimized_mir(def_id))?;
350 w.write_fmt(format_args!("\n"))writeln!(w)?;
351 w.write_fmt(format_args!("// MIR FOR CTFE\n"))writeln!(w, "// MIR FOR CTFE")?;
352 writer.write_mir_fn(tcx.mir_for_ctfe(def_id), w)?;
355 } else {
356 if let Some((val, ty)) = tcx.trivial_const(def_id) {
357 {
let _guard = ForcedImplGuard::new();
w.write_fmt(format_args!("const {0}", tcx.def_path_str(def_id)))?
}ty::print::with_forced_impl_filename_line! {
358 write!(w, "const {}", tcx.def_path_str(def_id))?
360 }
361 w.write_fmt(format_args!(": {0} = const {1};\n", ty, Const::Val(val, ty)))writeln!(w, ": {} = const {};", ty, Const::Val(val, ty))?;
362 } else {
363 let instance_mir = tcx.instance_mir(ty::InstanceKind::Item(def_id));
364 render_body(w, instance_mir)?;
365 }
366 }
367 }
368 Ok(())
369}
370
371pub struct MirWriter<'de, 'tcx> {
373 tcx: TyCtxt<'tcx>,
374 extra_data: &'de dyn Fn(PassWhere, &mut dyn io::Write) -> io::Result<()>,
375 options: PrettyPrintMirOptions,
376}
377
378impl<'de, 'tcx> MirWriter<'de, 'tcx> {
379 pub fn new(tcx: TyCtxt<'tcx>) -> Self {
380 MirWriter { tcx, extra_data: &|_, _| Ok(()), options: PrettyPrintMirOptions::from_cli(tcx) }
381 }
382
383 pub fn write_mir_fn(&self, body: &Body<'tcx>, w: &mut dyn io::Write) -> io::Result<()> {
385 write_mir_intro(self.tcx, body, w, self.options)?;
386 for block in body.basic_blocks.indices() {
387 (self.extra_data)(PassWhere::BeforeBlock(block), w)?;
388 self.write_basic_block(block, body, w)?;
389 if block.index() + 1 != body.basic_blocks.len() {
390 w.write_fmt(format_args!("\n"))writeln!(w)?;
391 }
392 }
393
394 w.write_fmt(format_args!("}}\n"))writeln!(w, "}}")?;
395
396 write_allocations(self.tcx, body, w)?;
397
398 Ok(())
399 }
400}
401
402fn write_scope_tree(
404 tcx: TyCtxt<'_>,
405 body: &Body<'_>,
406 scope_tree: &FxHashMap<SourceScope, Vec<SourceScope>>,
407 w: &mut dyn io::Write,
408 parent: SourceScope,
409 depth: usize,
410 options: PrettyPrintMirOptions,
411) -> io::Result<()> {
412 let indent = depth * INDENT.len();
413
414 for var_debug_info in &body.var_debug_info {
416 if var_debug_info.source_info.scope != parent {
417 continue;
419 }
420
421 let indented_debug_info = ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0:1$}debug {2:?};", INDENT,
indent, var_debug_info))
})format!("{0:1$}debug {2:?};", INDENT, indent, var_debug_info);
422
423 if options.include_extra_comments {
424 w.write_fmt(format_args!("{0:1$} // in {2}\n", indented_debug_info, ALIGN,
comment(tcx, var_debug_info.source_info)))writeln!(
425 w,
426 "{0:1$} // in {2}",
427 indented_debug_info,
428 ALIGN,
429 comment(tcx, var_debug_info.source_info),
430 )?;
431 } else {
432 w.write_fmt(format_args!("{0}\n", indented_debug_info))writeln!(w, "{indented_debug_info}")?;
433 }
434 }
435
436 for (local, local_decl) in body.local_decls.iter_enumerated() {
438 if (1..body.arg_count + 1).contains(&local.index()) {
439 continue;
441 }
442
443 if local_decl.source_info.scope != parent {
444 continue;
446 }
447
448 let mut_str = local_decl.mutability.prefix_str();
449
450 let mut indented_decl = {
let _guard = NoTrimmedGuard::new();
::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0:1$}let {2}{3:?}: {4}",
INDENT, indent, mut_str, local, local_decl.ty))
})
}ty::print::with_no_trimmed_paths!(format!(
451 "{0:1$}let {2}{3:?}: {4}",
452 INDENT, indent, mut_str, local, local_decl.ty
453 ));
454 if let Some(user_ty) = &local_decl.user_ty {
455 for user_ty in user_ty.projections() {
456 indented_decl.write_fmt(format_args!(" as {0:?}", user_ty))write!(indented_decl, " as {user_ty:?}").unwrap();
457 }
458 }
459 indented_decl.push(';');
460
461 let local_name = if local == RETURN_PLACE { " return place" } else { "" };
462
463 if options.include_extra_comments {
464 w.write_fmt(format_args!("{0:1$} //{2} in {3}\n", indented_decl, ALIGN,
local_name, comment(tcx, local_decl.source_info)))writeln!(
465 w,
466 "{0:1$} //{2} in {3}",
467 indented_decl,
468 ALIGN,
469 local_name,
470 comment(tcx, local_decl.source_info),
471 )?;
472 } else {
473 w.write_fmt(format_args!("{0}\n", indented_decl))writeln!(w, "{indented_decl}",)?;
474 }
475 }
476
477 let Some(children) = scope_tree.get(&parent) else {
478 return Ok(());
479 };
480
481 for &child in children {
482 let child_data = &body.source_scopes[child];
483 match (&child_data.parent_scope, &Some(parent)) {
(left_val, right_val) => {
if !(*left_val == *right_val) {
let kind = ::core::panicking::AssertKind::Eq;
::core::panicking::assert_failed(kind, &*left_val, &*right_val,
::core::option::Option::None);
}
}
};assert_eq!(child_data.parent_scope, Some(parent));
484
485 let (special, span) = if let Some((callee, callsite_span)) = child_data.inlined {
486 (
487 ::alloc::__export::must_use({
::alloc::fmt::format(format_args!(" (inlined {0}{1})",
if callee.def.requires_caller_location(tcx) {
"#[track_caller] "
} else { "" }, callee))
})format!(
488 " (inlined {}{})",
489 if callee.def.requires_caller_location(tcx) { "#[track_caller] " } else { "" },
490 callee
491 ),
492 Some(callsite_span),
493 )
494 } else {
495 (String::new(), None)
496 };
497
498 let indented_header = ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0:1$}scope {2}{3} {{", "", indent,
child.index(), special))
})format!("{0:1$}scope {2}{3} {{", "", indent, child.index(), special);
499
500 if options.include_extra_comments {
501 if let Some(span) = span {
502 w.write_fmt(format_args!("{0:1$} // at {2}\n", indented_header, ALIGN,
tcx.sess.source_map().span_to_diagnostic_string(span)))writeln!(
503 w,
504 "{0:1$} // at {2}",
505 indented_header,
506 ALIGN,
507 tcx.sess.source_map().span_to_diagnostic_string(span),
508 )?;
509 } else {
510 w.write_fmt(format_args!("{0}\n", indented_header))writeln!(w, "{indented_header}")?;
511 }
512 } else {
513 w.write_fmt(format_args!("{0}\n", indented_header))writeln!(w, "{indented_header}")?;
514 }
515
516 write_scope_tree(tcx, body, scope_tree, w, child, depth + 1, options)?;
517 w.write_fmt(format_args!("{0:1$}}}\n", "", depth * INDENT.len()))writeln!(w, "{0:1$}}}", "", depth * INDENT.len())?;
518 }
519
520 Ok(())
521}
522
523impl Debug for VarDebugInfo<'_> {
524 fn fmt(&self, fmt: &mut Formatter<'_>) -> fmt::Result {
525 if let Some(box VarDebugInfoFragment { ty, ref projection }) = self.composite {
526 pre_fmt_projection(&projection[..], fmt)?;
527 fmt.write_fmt(format_args!("({0}: {1})", self.name, ty))write!(fmt, "({}: {})", self.name, ty)?;
528 post_fmt_projection(&projection[..], fmt)?;
529 } else {
530 fmt.write_fmt(format_args!("{0}", self.name))write!(fmt, "{}", self.name)?;
531 }
532
533 fmt.write_fmt(format_args!(" => {0:?}", self.value))write!(fmt, " => {:?}", self.value)
534 }
535}
536
537fn write_mir_intro<'tcx>(
540 tcx: TyCtxt<'tcx>,
541 body: &Body<'_>,
542 w: &mut dyn io::Write,
543 options: PrettyPrintMirOptions,
544) -> io::Result<()> {
545 write_mir_sig(tcx, body, w)?;
546 w.write_fmt(format_args!("{{\n"))writeln!(w, "{{")?;
547
548 let mut scope_tree: FxHashMap<SourceScope, Vec<SourceScope>> = Default::default();
550 for (index, scope_data) in body.source_scopes.iter_enumerated() {
551 if let Some(parent) = scope_data.parent_scope {
552 scope_tree.entry(parent).or_default().push(index);
553 } else {
554 match (&index, &OUTERMOST_SOURCE_SCOPE) {
(left_val, right_val) => {
if !(*left_val == *right_val) {
let kind = ::core::panicking::AssertKind::Eq;
::core::panicking::assert_failed(kind, &*left_val, &*right_val,
::core::option::Option::None);
}
}
};assert_eq!(index, OUTERMOST_SOURCE_SCOPE);
556 }
557 }
558
559 write_scope_tree(tcx, body, &scope_tree, w, OUTERMOST_SOURCE_SCOPE, 1, options)?;
560
561 w.write_fmt(format_args!("\n"))writeln!(w)?;
563
564 if let Some(coverage_info_hi) = &body.coverage_info_hi {
565 write_coverage_info_hi(coverage_info_hi, w)?;
566 }
567 if let Some(function_coverage_info) = &body.function_coverage_info {
568 write_function_coverage_info(function_coverage_info, w)?;
569 }
570
571 Ok(())
572}
573
574fn write_coverage_info_hi(
575 coverage_info_hi: &coverage::CoverageInfoHi,
576 w: &mut dyn io::Write,
577) -> io::Result<()> {
578 let coverage::CoverageInfoHi { num_block_markers: _, branch_spans } = coverage_info_hi;
579
580 let mut did_print = false;
582
583 for coverage::BranchSpan { span, true_marker, false_marker } in branch_spans {
584 w.write_fmt(format_args!("{0}coverage branch {{ true: {1:?}, false: {2:?} }} => {3:?}\n",
INDENT, true_marker, false_marker, span))writeln!(
585 w,
586 "{INDENT}coverage branch {{ true: {true_marker:?}, false: {false_marker:?} }} => {span:?}",
587 )?;
588 did_print = true;
589 }
590
591 if did_print {
592 w.write_fmt(format_args!("\n"))writeln!(w)?;
593 }
594
595 Ok(())
596}
597
598fn write_function_coverage_info(
599 function_coverage_info: &coverage::FunctionCoverageInfo,
600 w: &mut dyn io::Write,
601) -> io::Result<()> {
602 let coverage::FunctionCoverageInfo { mappings, .. } = function_coverage_info;
603
604 for coverage::Mapping { kind, span } in mappings {
605 w.write_fmt(format_args!("{0}coverage {1:?} => {2:?};\n", INDENT, kind, span))writeln!(w, "{INDENT}coverage {kind:?} => {span:?};")?;
606 }
607 w.write_fmt(format_args!("\n"))writeln!(w)?;
608
609 Ok(())
610}
611
612fn write_mir_sig(tcx: TyCtxt<'_>, body: &Body<'_>, w: &mut dyn io::Write) -> io::Result<()> {
613 use rustc_hir::def::DefKind;
614
615 {
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_middle/src/mir/pretty.rs:615",
"rustc_middle::mir::pretty", ::tracing::Level::TRACE,
::tracing_core::__macro_support::Option::Some("compiler/rustc_middle/src/mir/pretty.rs"),
::tracing_core::__macro_support::Option::Some(615u32),
::tracing_core::__macro_support::Option::Some("rustc_middle::mir::pretty"),
::tracing_core::field::FieldSet::new(&["message"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::TRACE <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::TRACE <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
let mut iter = __CALLSITE.metadata().fields().iter();
__CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&format_args!("write_mir_sig: {0:?}",
body.source.instance) as &dyn Value))])
});
} else { ; }
};trace!("write_mir_sig: {:?}", body.source.instance);
616 let def_id = body.source.def_id();
617 let kind = tcx.def_kind(def_id);
618 let is_function = match kind {
619 DefKind::Fn | DefKind::AssocFn | DefKind::Ctor(..) | DefKind::SyntheticCoroutineBody => {
620 true
621 }
622 _ => tcx.is_closure_like(def_id),
623 };
624 match (kind, body.source.promoted) {
625 (_, Some(_)) => w.write_fmt(format_args!("const "))write!(w, "const ")?, (DefKind::Const | DefKind::AssocConst, _) => w.write_fmt(format_args!("const "))write!(w, "const ")?,
627 (DefKind::Static { safety: _, mutability: hir::Mutability::Not, nested: false }, _) => {
628 w.write_fmt(format_args!("static "))write!(w, "static ")?
629 }
630 (DefKind::Static { safety: _, mutability: hir::Mutability::Mut, nested: false }, _) => {
631 w.write_fmt(format_args!("static mut "))write!(w, "static mut ")?
632 }
633 (_, _) if is_function => w.write_fmt(format_args!("fn "))write!(w, "fn ")?,
634 (DefKind::AnonConst | DefKind::InlineConst, _) => {}
636 (DefKind::GlobalAsm, _) => {}
638 _ => crate::util::bug::bug_fmt(format_args!("Unexpected def kind {0:?}", kind))bug!("Unexpected def kind {:?}", kind),
639 }
640
641 {
let _guard = ForcedImplGuard::new();
w.write_fmt(format_args!("{0}", tcx.def_path_str(def_id)))?
}ty::print::with_forced_impl_filename_line! {
642 write!(w, "{}", tcx.def_path_str(def_id))?
644 }
645 if let Some(p) = body.source.promoted {
646 w.write_fmt(format_args!("::{0:?}", p))write!(w, "::{p:?}")?;
647 }
648
649 if body.source.promoted.is_none() && is_function {
650 w.write_fmt(format_args!("("))write!(w, "(")?;
651
652 for (i, arg) in body.args_iter().enumerate() {
654 if i != 0 {
655 w.write_fmt(format_args!(", "))write!(w, ", ")?;
656 }
657 w.write_fmt(format_args!("{0:?}: {1}", Place::from(arg),
body.local_decls[arg].ty))write!(w, "{:?}: {}", Place::from(arg), body.local_decls[arg].ty)?;
658 }
659
660 w.write_fmt(format_args!(") -> {0}", body.return_ty()))write!(w, ") -> {}", body.return_ty())?;
661 } else {
662 match (&body.arg_count, &0) {
(left_val, right_val) => {
if !(*left_val == *right_val) {
let kind = ::core::panicking::AssertKind::Eq;
::core::panicking::assert_failed(kind, &*left_val, &*right_val,
::core::option::Option::None);
}
}
};assert_eq!(body.arg_count, 0);
663 w.write_fmt(format_args!(": {0} =", body.return_ty()))write!(w, ": {} =", body.return_ty())?;
664 }
665
666 if let Some(yield_ty) = body.yield_ty() {
667 w.write_fmt(format_args!("\n"))writeln!(w)?;
668 w.write_fmt(format_args!("yields {0}\n", yield_ty))writeln!(w, "yields {yield_ty}")?;
669 }
670
671 w.write_fmt(format_args!(" "))write!(w, " ")?;
672 Ok(())
675}
676
677fn write_user_type_annotations(
678 tcx: TyCtxt<'_>,
679 body: &Body<'_>,
680 w: &mut dyn io::Write,
681) -> io::Result<()> {
682 if !body.user_type_annotations.is_empty() {
683 w.write_fmt(format_args!("| User Type Annotations\n"))writeln!(w, "| User Type Annotations")?;
684 }
685 for (index, annotation) in body.user_type_annotations.iter_enumerated() {
686 w.write_fmt(format_args!("| {0:?}: user_ty: {1}, span: {2}, inferred_ty: {3}\n",
index.index(), annotation.user_ty,
tcx.sess.source_map().span_to_diagnostic_string(annotation.span),
{
let _guard = NoTrimmedGuard::new();
::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0}",
annotation.inferred_ty))
})
}))writeln!(
687 w,
688 "| {:?}: user_ty: {}, span: {}, inferred_ty: {}",
689 index.index(),
690 annotation.user_ty,
691 tcx.sess.source_map().span_to_diagnostic_string(annotation.span),
692 with_no_trimmed_paths!(format!("{}", annotation.inferred_ty)),
693 )?;
694 }
695 if !body.user_type_annotations.is_empty() {
696 w.write_fmt(format_args!("|\n"))writeln!(w, "|")?;
697 }
698 Ok(())
699}
700
701pub fn dump_mir_def_ids(tcx: TyCtxt<'_>, single: Option<DefId>) -> Vec<DefId> {
702 if let Some(i) = single {
703 ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
[i]))vec![i]
704 } else {
705 tcx.mir_keys(()).iter().map(|def_id| def_id.to_def_id()).collect()
706 }
707}
708
709impl<'de, 'tcx> MirWriter<'de, 'tcx> {
713 fn write_basic_block(
715 &self,
716 block: BasicBlock,
717 body: &Body<'tcx>,
718 w: &mut dyn io::Write,
719 ) -> io::Result<()> {
720 let data = &body[block];
721
722 let cleanup_text = if data.is_cleanup { " (cleanup)" } else { "" };
724 w.write_fmt(format_args!("{0}{1:?}{2}: {{\n", INDENT, block, cleanup_text))writeln!(w, "{INDENT}{block:?}{cleanup_text}: {{")?;
725
726 let mut current_location = Location { block, statement_index: 0 };
728 for statement in &data.statements {
729 (self.extra_data)(PassWhere::BeforeLocation(current_location), w)?;
730
731 for debuginfo in statement.debuginfos.iter() {
732 w.write_fmt(format_args!("{0}{0}// DBG: {1:?};\n", INDENT, debuginfo))writeln!(w, "{INDENT}{INDENT}// DBG: {debuginfo:?};")?;
733 }
734
735 let indented_body = ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0}{0}{1:?};", INDENT, statement))
})format!("{INDENT}{INDENT}{statement:?};");
736 if self.options.include_extra_comments {
737 w.write_fmt(format_args!("{0:3$} // {1}{2}\n", indented_body,
if self.tcx.sess.verbose_internals() {
::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0:?}: ",
current_location))
})
} else { String::new() }, comment(self.tcx, statement.source_info),
ALIGN))writeln!(
738 w,
739 "{:A$} // {}{}",
740 indented_body,
741 if self.tcx.sess.verbose_internals() {
742 format!("{current_location:?}: ")
743 } else {
744 String::new()
745 },
746 comment(self.tcx, statement.source_info),
747 A = ALIGN,
748 )?;
749 } else {
750 w.write_fmt(format_args!("{0}\n", indented_body))writeln!(w, "{indented_body}")?;
751 }
752
753 write_extra(
754 self.tcx,
755 w,
756 &|visitor| visitor.visit_statement(statement, current_location),
757 self.options,
758 )?;
759
760 (self.extra_data)(PassWhere::AfterLocation(current_location), w)?;
761
762 current_location.statement_index += 1;
763 }
764
765 for debuginfo in data.after_last_stmt_debuginfos.iter() {
766 w.write_fmt(format_args!("{0}{0}// DBG: {1:?};\n", INDENT, debuginfo))writeln!(w, "{INDENT}{INDENT}// DBG: {debuginfo:?};")?;
767 }
768
769 (self.extra_data)(PassWhere::BeforeLocation(current_location), w)?;
771 if data.terminator.is_some() {
772 let indented_terminator = ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0}{0}{1:?};", INDENT,
data.terminator().kind))
})format!("{0}{0}{1:?};", INDENT, data.terminator().kind);
773 if self.options.include_extra_comments {
774 w.write_fmt(format_args!("{0:3$} // {1}{2}\n", indented_terminator,
if self.tcx.sess.verbose_internals() {
::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0:?}: ",
current_location))
})
} else { String::new() },
comment(self.tcx, data.terminator().source_info), ALIGN))writeln!(
775 w,
776 "{:A$} // {}{}",
777 indented_terminator,
778 if self.tcx.sess.verbose_internals() {
779 format!("{current_location:?}: ")
780 } else {
781 String::new()
782 },
783 comment(self.tcx, data.terminator().source_info),
784 A = ALIGN,
785 )?;
786 } else {
787 w.write_fmt(format_args!("{0}\n", indented_terminator))writeln!(w, "{indented_terminator}")?;
788 }
789
790 write_extra(
791 self.tcx,
792 w,
793 &|visitor| visitor.visit_terminator(data.terminator(), current_location),
794 self.options,
795 )?;
796 }
797
798 (self.extra_data)(PassWhere::AfterLocation(current_location), w)?;
799 (self.extra_data)(PassWhere::AfterTerminator(block), w)?;
800
801 w.write_fmt(format_args!("{0}}}\n", INDENT))writeln!(w, "{INDENT}}}")
802 }
803}
804
805impl Debug for Statement<'_> {
806 fn fmt(&self, fmt: &mut Formatter<'_>) -> fmt::Result {
807 use self::StatementKind::*;
808 match self.kind {
809 Assign(box (ref place, ref rv)) => fmt.write_fmt(format_args!("{0:?} = {1:?}", place, rv))write!(fmt, "{place:?} = {rv:?}"),
810 FakeRead(box (ref cause, ref place)) => {
811 fmt.write_fmt(format_args!("FakeRead({0:?}, {1:?})", cause, place))write!(fmt, "FakeRead({cause:?}, {place:?})")
812 }
813 Retag(ref kind, ref place) => fmt.write_fmt(format_args!("Retag({0}{1:?})",
match kind {
RetagKind::FnEntry => "[fn entry] ",
RetagKind::TwoPhase => "[2phase] ",
RetagKind::Raw => "[raw] ",
RetagKind::Default => "",
}, place))write!(
814 fmt,
815 "Retag({}{:?})",
816 match kind {
817 RetagKind::FnEntry => "[fn entry] ",
818 RetagKind::TwoPhase => "[2phase] ",
819 RetagKind::Raw => "[raw] ",
820 RetagKind::Default => "",
821 },
822 place,
823 ),
824 StorageLive(ref place) => fmt.write_fmt(format_args!("StorageLive({0:?})", place))write!(fmt, "StorageLive({place:?})"),
825 StorageDead(ref place) => fmt.write_fmt(format_args!("StorageDead({0:?})", place))write!(fmt, "StorageDead({place:?})"),
826 SetDiscriminant { ref place, variant_index } => {
827 fmt.write_fmt(format_args!("discriminant({0:?}) = {1:?}", place,
variant_index))write!(fmt, "discriminant({place:?}) = {variant_index:?}")
828 }
829 PlaceMention(ref place) => {
830 fmt.write_fmt(format_args!("PlaceMention({0:?})", place))write!(fmt, "PlaceMention({place:?})")
831 }
832 AscribeUserType(box (ref place, ref c_ty), ref variance) => {
833 fmt.write_fmt(format_args!("AscribeUserType({0:?}, {1:?}, {2:?})", place,
variance, c_ty))write!(fmt, "AscribeUserType({place:?}, {variance:?}, {c_ty:?})")
834 }
835 Coverage(ref kind) => fmt.write_fmt(format_args!("Coverage::{0:?}", kind))write!(fmt, "Coverage::{kind:?}"),
836 Intrinsic(box ref intrinsic) => fmt.write_fmt(format_args!("{0}", intrinsic))write!(fmt, "{intrinsic}"),
837 ConstEvalCounter => fmt.write_fmt(format_args!("ConstEvalCounter"))write!(fmt, "ConstEvalCounter"),
838 Nop => fmt.write_fmt(format_args!("nop"))write!(fmt, "nop"),
839 BackwardIncompatibleDropHint { ref place, reason: _ } => {
840 fmt.write_fmt(format_args!("BackwardIncompatibleDropHint({0:?})", place))write!(fmt, "BackwardIncompatibleDropHint({place:?})")
843 }
844 }
845 }
846}
847
848impl Debug for StmtDebugInfo<'_> {
849 fn fmt(&self, fmt: &mut Formatter<'_>) -> fmt::Result {
850 match self {
851 StmtDebugInfo::AssignRef(local, place) => {
852 fmt.write_fmt(format_args!("{0:?} = &{1:?}", local, place))write!(fmt, "{local:?} = &{place:?}")
853 }
854 StmtDebugInfo::InvalidAssign(local) => {
855 fmt.write_fmt(format_args!("{0:?} = &?", local))write!(fmt, "{local:?} = &?")
856 }
857 }
858 }
859}
860
861impl Display for NonDivergingIntrinsic<'_> {
862 fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
863 match self {
864 Self::Assume(op) => f.write_fmt(format_args!("assume({0:?})", op))write!(f, "assume({op:?})"),
865 Self::CopyNonOverlapping(CopyNonOverlapping { src, dst, count }) => {
866 f.write_fmt(format_args!("copy_nonoverlapping(dst = {0:?}, src = {1:?}, count = {2:?})",
dst, src, count))write!(f, "copy_nonoverlapping(dst = {dst:?}, src = {src:?}, count = {count:?})")
867 }
868 }
869 }
870}
871
872impl<'tcx> Debug for TerminatorKind<'tcx> {
873 fn fmt(&self, fmt: &mut Formatter<'_>) -> fmt::Result {
874 self.fmt_head(fmt)?;
875 let successor_count = self.successors().count();
876 let labels = self.fmt_successor_labels();
877 match (&successor_count, &labels.len()) {
(left_val, right_val) => {
if !(*left_val == *right_val) {
let kind = ::core::panicking::AssertKind::Eq;
::core::panicking::assert_failed(kind, &*left_val, &*right_val,
::core::option::Option::None);
}
}
};assert_eq!(successor_count, labels.len());
878
879 let show_unwind = !#[allow(non_exhaustive_omitted_patterns)] match self.unwind() {
None | Some(UnwindAction::Cleanup(_)) => true,
_ => false,
}matches!(self.unwind(), None | Some(UnwindAction::Cleanup(_)));
881 let fmt_unwind = |fmt: &mut Formatter<'_>| -> fmt::Result {
882 fmt.write_fmt(format_args!("unwind "))write!(fmt, "unwind ")?;
883 match self.unwind() {
884 None | Some(UnwindAction::Cleanup(_)) => ::core::panicking::panic("internal error: entered unreachable code")unreachable!(),
886 Some(UnwindAction::Continue) => fmt.write_fmt(format_args!("continue"))write!(fmt, "continue"),
887 Some(UnwindAction::Unreachable) => fmt.write_fmt(format_args!("unreachable"))write!(fmt, "unreachable"),
888 Some(UnwindAction::Terminate(reason)) => {
889 fmt.write_fmt(format_args!("terminate({0})", reason.as_short_str()))write!(fmt, "terminate({})", reason.as_short_str())
890 }
891 }
892 };
893
894 match (successor_count, show_unwind) {
895 (0, false) => Ok(()),
896 (0, true) => {
897 fmt.write_fmt(format_args!(" -> "))write!(fmt, " -> ")?;
898 fmt_unwind(fmt)
899 }
900 (1, false) => fmt.write_fmt(format_args!(" -> {0:?}", self.successors().next().unwrap()))write!(fmt, " -> {:?}", self.successors().next().unwrap()),
901 _ => {
902 fmt.write_fmt(format_args!(" -> ["))write!(fmt, " -> [")?;
903 for (i, target) in self.successors().enumerate() {
904 if i > 0 {
905 fmt.write_fmt(format_args!(", "))write!(fmt, ", ")?;
906 }
907 fmt.write_fmt(format_args!("{0}: {1:?}", labels[i], target))write!(fmt, "{}: {:?}", labels[i], target)?;
908 }
909 if show_unwind {
910 fmt.write_fmt(format_args!(", "))write!(fmt, ", ")?;
911 fmt_unwind(fmt)?;
912 }
913 fmt.write_fmt(format_args!("]"))write!(fmt, "]")
914 }
915 }
916 }
917}
918
919impl<'tcx> TerminatorKind<'tcx> {
920 pub fn fmt_head<W: fmt::Write>(&self, fmt: &mut W) -> fmt::Result {
924 use self::TerminatorKind::*;
925 match self {
926 Goto { .. } => fmt.write_fmt(format_args!("goto"))write!(fmt, "goto"),
927 SwitchInt { discr, .. } => fmt.write_fmt(format_args!("switchInt({0:?})", discr))write!(fmt, "switchInt({discr:?})"),
928 Return => fmt.write_fmt(format_args!("return"))write!(fmt, "return"),
929 CoroutineDrop => fmt.write_fmt(format_args!("coroutine_drop"))write!(fmt, "coroutine_drop"),
930 UnwindResume => fmt.write_fmt(format_args!("resume"))write!(fmt, "resume"),
931 UnwindTerminate(reason) => {
932 fmt.write_fmt(format_args!("terminate({0})", reason.as_short_str()))write!(fmt, "terminate({})", reason.as_short_str())
933 }
934 Yield { value, resume_arg, .. } => fmt.write_fmt(format_args!("{0:?} = yield({1:?})", resume_arg, value))write!(fmt, "{resume_arg:?} = yield({value:?})"),
935 Unreachable => fmt.write_fmt(format_args!("unreachable"))write!(fmt, "unreachable"),
936 Drop { place, async_fut: None, .. } => fmt.write_fmt(format_args!("drop({0:?})", place))write!(fmt, "drop({place:?})"),
937 Drop { place, async_fut: Some(async_fut), .. } => {
938 fmt.write_fmt(format_args!("async drop({0:?}; poll={1:?})", place, async_fut))write!(fmt, "async drop({place:?}; poll={async_fut:?})")
939 }
940 Call { func, args, destination, .. } => {
941 fmt.write_fmt(format_args!("{0:?} = ", destination))write!(fmt, "{destination:?} = ")?;
942 fmt.write_fmt(format_args!("{0:?}(", func))write!(fmt, "{func:?}(")?;
943 for (index, arg) in args.iter().enumerate() {
944 if index > 0 {
945 fmt.write_fmt(format_args!(", "))write!(fmt, ", ")?;
946 }
947 fmt.write_fmt(format_args!("{0:?}", arg.node))write!(fmt, "{:?}", arg.node)?;
948 }
949 fmt.write_fmt(format_args!(")"))write!(fmt, ")")
950 }
951 TailCall { func, args, .. } => {
952 fmt.write_fmt(format_args!("tailcall {0:?}(", func))write!(fmt, "tailcall {func:?}(")?;
953 for (index, arg) in args.iter().enumerate() {
954 if index > 0 {
955 fmt.write_fmt(format_args!(", "))write!(fmt, ", ")?;
956 }
957 fmt.write_fmt(format_args!("{0:?}", arg.node))write!(fmt, "{:?}", arg.node)?;
958 }
959 fmt.write_fmt(format_args!(")"))write!(fmt, ")")
960 }
961 Assert { cond, expected, msg, .. } => {
962 fmt.write_fmt(format_args!("assert("))write!(fmt, "assert(")?;
963 if !expected {
964 fmt.write_fmt(format_args!("!"))write!(fmt, "!")?;
965 }
966 fmt.write_fmt(format_args!("{0:?}, ", cond))write!(fmt, "{cond:?}, ")?;
967 msg.fmt_assert_args(fmt)?;
968 fmt.write_fmt(format_args!(")"))write!(fmt, ")")
969 }
970 FalseEdge { .. } => fmt.write_fmt(format_args!("falseEdge"))write!(fmt, "falseEdge"),
971 FalseUnwind { .. } => fmt.write_fmt(format_args!("falseUnwind"))write!(fmt, "falseUnwind"),
972 InlineAsm { template, operands, options, .. } => {
973 fmt.write_fmt(format_args!("asm!(\"{0}\"",
InlineAsmTemplatePiece::to_string(template)))write!(fmt, "asm!(\"{}\"", InlineAsmTemplatePiece::to_string(template))?;
974 for op in operands {
975 fmt.write_fmt(format_args!(", "))write!(fmt, ", ")?;
976 let print_late = |&late| if late { "late" } else { "" };
977 match op {
978 InlineAsmOperand::In { reg, value } => {
979 fmt.write_fmt(format_args!("in({0}) {1:?}", reg, value))write!(fmt, "in({reg}) {value:?}")?;
980 }
981 InlineAsmOperand::Out { reg, late, place: Some(place) } => {
982 fmt.write_fmt(format_args!("{0}out({1}) {2:?}", print_late(late), reg, place))write!(fmt, "{}out({}) {:?}", print_late(late), reg, place)?;
983 }
984 InlineAsmOperand::Out { reg, late, place: None } => {
985 fmt.write_fmt(format_args!("{0}out({1}) _", print_late(late), reg))write!(fmt, "{}out({}) _", print_late(late), reg)?;
986 }
987 InlineAsmOperand::InOut {
988 reg,
989 late,
990 in_value,
991 out_place: Some(out_place),
992 } => {
993 fmt.write_fmt(format_args!("in{0}out({1}) {2:?} => {3:?}", print_late(late),
reg, in_value, out_place))write!(
994 fmt,
995 "in{}out({}) {:?} => {:?}",
996 print_late(late),
997 reg,
998 in_value,
999 out_place
1000 )?;
1001 }
1002 InlineAsmOperand::InOut { reg, late, in_value, out_place: None } => {
1003 fmt.write_fmt(format_args!("in{0}out({1}) {2:?} => _", print_late(late), reg,
in_value))write!(fmt, "in{}out({}) {:?} => _", print_late(late), reg, in_value)?;
1004 }
1005 InlineAsmOperand::Const { value } => {
1006 fmt.write_fmt(format_args!("const {0:?}", value))write!(fmt, "const {value:?}")?;
1007 }
1008 InlineAsmOperand::SymFn { value } => {
1009 fmt.write_fmt(format_args!("sym_fn {0:?}", value))write!(fmt, "sym_fn {value:?}")?;
1010 }
1011 InlineAsmOperand::SymStatic { def_id } => {
1012 fmt.write_fmt(format_args!("sym_static {0:?}", def_id))write!(fmt, "sym_static {def_id:?}")?;
1013 }
1014 InlineAsmOperand::Label { target_index } => {
1015 fmt.write_fmt(format_args!("label {0}", target_index))write!(fmt, "label {target_index}")?;
1016 }
1017 }
1018 }
1019 fmt.write_fmt(format_args!(", options({0:?}))", options))write!(fmt, ", options({options:?}))")
1020 }
1021 }
1022 }
1023
1024 pub fn fmt_successor_labels(&self) -> Vec<Cow<'static, str>> {
1026 use self::TerminatorKind::*;
1027 match *self {
1028 Return
1029 | TailCall { .. }
1030 | UnwindResume
1031 | UnwindTerminate(_)
1032 | Unreachable
1033 | CoroutineDrop => ::alloc::vec::Vec::new()vec![],
1034 Goto { .. } => ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
["".into()]))vec!["".into()],
1035 SwitchInt { ref targets, .. } => targets
1036 .values
1037 .iter()
1038 .map(|&u| Cow::Owned(u.to_string()))
1039 .chain(iter::once("otherwise".into()))
1040 .collect(),
1041 Call { target: Some(_), unwind: UnwindAction::Cleanup(_), .. } => {
1042 ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
["return".into(), "unwind".into()]))vec!["return".into(), "unwind".into()]
1043 }
1044 Call { target: Some(_), unwind: _, .. } => ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
["return".into()]))vec!["return".into()],
1045 Call { target: None, unwind: UnwindAction::Cleanup(_), .. } => ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
["unwind".into()]))vec!["unwind".into()],
1046 Call { target: None, unwind: _, .. } => ::alloc::vec::Vec::new()vec![],
1047 Yield { drop: Some(_), .. } => ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
["resume".into(), "drop".into()]))vec!["resume".into(), "drop".into()],
1048 Yield { drop: None, .. } => ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
["resume".into()]))vec!["resume".into()],
1049 Drop { unwind: UnwindAction::Cleanup(_), drop: Some(_), .. } => {
1050 ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
["return".into(), "unwind".into(), "drop".into()]))vec!["return".into(), "unwind".into(), "drop".into()]
1051 }
1052 Drop { unwind: UnwindAction::Cleanup(_), drop: None, .. } => {
1053 ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
["return".into(), "unwind".into()]))vec!["return".into(), "unwind".into()]
1054 }
1055 Drop { unwind: _, drop: Some(_), .. } => ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
["return".into(), "drop".into()]))vec!["return".into(), "drop".into()],
1056 Drop { unwind: _, .. } => ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
["return".into()]))vec!["return".into()],
1057 Assert { unwind: UnwindAction::Cleanup(_), .. } => {
1058 ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
["success".into(), "unwind".into()]))vec!["success".into(), "unwind".into()]
1059 }
1060 Assert { unwind: _, .. } => ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
["success".into()]))vec!["success".into()],
1061 FalseEdge { .. } => ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
["real".into(), "imaginary".into()]))vec!["real".into(), "imaginary".into()],
1062 FalseUnwind { unwind: UnwindAction::Cleanup(_), .. } => {
1063 ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
["real".into(), "unwind".into()]))vec!["real".into(), "unwind".into()]
1064 }
1065 FalseUnwind { unwind: _, .. } => ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
["real".into()]))vec!["real".into()],
1066 InlineAsm { asm_macro, options, ref targets, unwind, .. } => {
1067 let mut vec = Vec::with_capacity(targets.len() + 1);
1068 if !asm_macro.diverges(options) {
1069 vec.push("return".into());
1070 }
1071 vec.resize(targets.len(), "label".into());
1072
1073 if let UnwindAction::Cleanup(_) = unwind {
1074 vec.push("unwind".into());
1075 }
1076
1077 vec
1078 }
1079 }
1080 }
1081}
1082
1083impl<'tcx> Debug for Rvalue<'tcx> {
1084 fn fmt(&self, fmt: &mut Formatter<'_>) -> fmt::Result {
1085 use self::Rvalue::*;
1086
1087 match *self {
1088 Use(ref place) => fmt.write_fmt(format_args!("{0:?}", place))write!(fmt, "{place:?}"),
1089 Repeat(ref a, b) => {
1090 fmt.write_fmt(format_args!("[{0:?}; ", a))write!(fmt, "[{a:?}; ")?;
1091 pretty_print_const(b, fmt, false)?;
1092 fmt.write_fmt(format_args!("]"))write!(fmt, "]")
1093 }
1094 Cast(ref kind, ref place, ref ty) => {
1095 {
let _guard = NoTrimmedGuard::new();
fmt.write_fmt(format_args!("{0:?} as {1} ({2:?})", place, ty, kind))
}with_no_trimmed_paths!(write!(fmt, "{place:?} as {ty} ({kind:?})"))
1096 }
1097 BinaryOp(ref op, box (ref a, ref b)) => fmt.write_fmt(format_args!("{0:?}({1:?}, {2:?})", op, a, b))write!(fmt, "{op:?}({a:?}, {b:?})"),
1098 UnaryOp(ref op, ref a) => fmt.write_fmt(format_args!("{0:?}({1:?})", op, a))write!(fmt, "{op:?}({a:?})"),
1099 Discriminant(ref place) => fmt.write_fmt(format_args!("discriminant({0:?})", place))write!(fmt, "discriminant({place:?})"),
1100 ThreadLocalRef(did) => ty::tls::with(|tcx| {
1101 let muta = tcx.static_mutability(did).unwrap().prefix_str();
1102 fmt.write_fmt(format_args!("&/*tls*/ {0}{1}", muta, tcx.def_path_str(did)))write!(fmt, "&/*tls*/ {}{}", muta, tcx.def_path_str(did))
1103 }),
1104 Ref(region, borrow_kind, ref place) => {
1105 let kind_str = match borrow_kind {
1106 BorrowKind::Shared => "",
1107 BorrowKind::Fake(FakeBorrowKind::Deep) => "fake ",
1108 BorrowKind::Fake(FakeBorrowKind::Shallow) => "fake shallow ",
1109 BorrowKind::Mut { .. } => "mut ",
1110 };
1111
1112 let print_region = ty::tls::with(|tcx| {
1114 tcx.sess.verbose_internals() || tcx.sess.opts.unstable_opts.identify_regions
1115 });
1116 let region = if print_region {
1117 let mut region = region.to_string();
1118 if !region.is_empty() {
1119 region.push(' ');
1120 }
1121 region
1122 } else {
1123 String::new()
1125 };
1126 fmt.write_fmt(format_args!("&{0}{1}{2:?}", region, kind_str, place))write!(fmt, "&{region}{kind_str}{place:?}")
1127 }
1128
1129 CopyForDeref(ref place) => fmt.write_fmt(format_args!("deref_copy {0:#?}", place))write!(fmt, "deref_copy {place:#?}"),
1130
1131 RawPtr(mutability, ref place) => {
1132 fmt.write_fmt(format_args!("&raw {0} {1:?}", mutability.ptr_str(), place))write!(fmt, "&raw {mut_str} {place:?}", mut_str = mutability.ptr_str())
1133 }
1134
1135 Aggregate(ref kind, ref places) => {
1136 let fmt_tuple = |fmt: &mut Formatter<'_>, name: &str| {
1137 let mut tuple_fmt = fmt.debug_tuple(name);
1138 for place in places {
1139 tuple_fmt.field(place);
1140 }
1141 tuple_fmt.finish()
1142 };
1143
1144 match **kind {
1145 AggregateKind::Array(_) => fmt.write_fmt(format_args!("{0:?}", places))write!(fmt, "{places:?}"),
1146
1147 AggregateKind::Tuple => {
1148 if places.is_empty() {
1149 fmt.write_fmt(format_args!("()"))write!(fmt, "()")
1150 } else {
1151 fmt_tuple(fmt, "")
1152 }
1153 }
1154
1155 AggregateKind::Adt(adt_did, variant, args, _user_ty, _) => {
1156 ty::tls::with(|tcx| {
1157 let variant_def = &tcx.adt_def(adt_did).variant(variant);
1158 let args = tcx.lift(args).expect("could not lift for printing");
1159 let name = FmtPrinter::print_string(tcx, Namespace::ValueNS, |p| {
1160 p.print_def_path(variant_def.def_id, args)
1161 })?;
1162
1163 match variant_def.ctor_kind() {
1164 Some(CtorKind::Const) => fmt.write_str(&name),
1165 Some(CtorKind::Fn) => fmt_tuple(fmt, &name),
1166 None => {
1167 let mut struct_fmt = fmt.debug_struct(&name);
1168 for (field, place) in iter::zip(&variant_def.fields, places) {
1169 struct_fmt.field(field.name.as_str(), place);
1170 }
1171 struct_fmt.finish()
1172 }
1173 }
1174 })
1175 }
1176
1177 AggregateKind::Closure(def_id, args)
1178 | AggregateKind::CoroutineClosure(def_id, args) => ty::tls::with(|tcx| {
1179 let name = if tcx.sess.opts.unstable_opts.span_free_formats {
1180 let args = tcx.lift(args).unwrap();
1181 ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{{closure@{0}}}",
tcx.def_path_str_with_args(def_id, args)))
})format!("{{closure@{}}}", tcx.def_path_str_with_args(def_id, args),)
1182 } else {
1183 let span = tcx.def_span(def_id);
1184 ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{{closure@{0}}}",
tcx.sess.source_map().span_to_diagnostic_string(span)))
})format!(
1185 "{{closure@{}}}",
1186 tcx.sess.source_map().span_to_diagnostic_string(span)
1187 )
1188 };
1189 let mut struct_fmt = fmt.debug_struct(&name);
1190
1191 if let Some(def_id) = def_id.as_local()
1193 && let Some(upvars) = tcx.upvars_mentioned(def_id)
1194 {
1195 for (&var_id, place) in iter::zip(upvars.keys(), places) {
1196 let var_name = tcx.hir_name(var_id);
1197 struct_fmt.field(var_name.as_str(), place);
1198 }
1199 } else {
1200 for (index, place) in places.iter().enumerate() {
1201 struct_fmt.field(&::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0}", index))
})format!("{index}"), place);
1202 }
1203 }
1204
1205 struct_fmt.finish()
1206 }),
1207
1208 AggregateKind::Coroutine(def_id, _) => ty::tls::with(|tcx| {
1209 let name = ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{{coroutine@{0:?}}}",
tcx.def_span(def_id)))
})format!("{{coroutine@{:?}}}", tcx.def_span(def_id));
1210 let mut struct_fmt = fmt.debug_struct(&name);
1211
1212 if let Some(def_id) = def_id.as_local()
1214 && let Some(upvars) = tcx.upvars_mentioned(def_id)
1215 {
1216 for (&var_id, place) in iter::zip(upvars.keys(), places) {
1217 let var_name = tcx.hir_name(var_id);
1218 struct_fmt.field(var_name.as_str(), place);
1219 }
1220 } else {
1221 for (index, place) in places.iter().enumerate() {
1222 struct_fmt.field(&::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0}", index))
})format!("{index}"), place);
1223 }
1224 }
1225
1226 struct_fmt.finish()
1227 }),
1228
1229 AggregateKind::RawPtr(pointee_ty, mutability) => {
1230 let kind_str = match mutability {
1231 Mutability::Mut => "mut",
1232 Mutability::Not => "const",
1233 };
1234 {
let _guard = NoTrimmedGuard::new();
fmt.write_fmt(format_args!("*{0} {1} from ", kind_str, pointee_ty))
}with_no_trimmed_paths!(write!(fmt, "*{kind_str} {pointee_ty} from "))?;
1235 fmt_tuple(fmt, "")
1236 }
1237 }
1238 }
1239
1240 WrapUnsafeBinder(ref op, ty) => {
1241 {
let _guard = NoTrimmedGuard::new();
fmt.write_fmt(format_args!("wrap_binder!({0:?}; {1})", op, ty))
}with_no_trimmed_paths!(write!(fmt, "wrap_binder!({op:?}; {ty})"))
1242 }
1243 }
1244 }
1245}
1246
1247impl<'tcx> Debug for Operand<'tcx> {
1248 fn fmt(&self, fmt: &mut Formatter<'_>) -> fmt::Result {
1249 use self::Operand::*;
1250 match *self {
1251 Constant(ref a) => fmt.write_fmt(format_args!("{0:?}", a))write!(fmt, "{a:?}"),
1252 Copy(ref place) => fmt.write_fmt(format_args!("copy {0:?}", place))write!(fmt, "copy {place:?}"),
1253 Move(ref place) => fmt.write_fmt(format_args!("move {0:?}", place))write!(fmt, "move {place:?}"),
1254 RuntimeChecks(checks) => fmt.write_fmt(format_args!("{0:?}", checks))write!(fmt, "{checks:?}"),
1255 }
1256 }
1257}
1258
1259impl<'tcx> Debug for ConstOperand<'tcx> {
1260 fn fmt(&self, fmt: &mut Formatter<'_>) -> fmt::Result {
1261 fmt.write_fmt(format_args!("{0}", self))write!(fmt, "{self}")
1262 }
1263}
1264
1265impl<'tcx> Display for ConstOperand<'tcx> {
1266 fn fmt(&self, fmt: &mut Formatter<'_>) -> fmt::Result {
1267 match self.ty().kind() {
1268 ty::FnDef(..) => {}
1269 _ => fmt.write_fmt(format_args!("const "))write!(fmt, "const ")?,
1270 }
1271 Display::fmt(&self.const_, fmt)
1272 }
1273}
1274
1275impl Debug for Place<'_> {
1276 fn fmt(&self, fmt: &mut Formatter<'_>) -> fmt::Result {
1277 self.as_ref().fmt(fmt)
1278 }
1279}
1280
1281impl Debug for PlaceRef<'_> {
1282 fn fmt(&self, fmt: &mut Formatter<'_>) -> fmt::Result {
1283 pre_fmt_projection(self.projection, fmt)?;
1284 fmt.write_fmt(format_args!("{0:?}", self.local))write!(fmt, "{:?}", self.local)?;
1285 post_fmt_projection(self.projection, fmt)
1286 }
1287}
1288
1289fn pre_fmt_projection(projection: &[PlaceElem<'_>], fmt: &mut Formatter<'_>) -> fmt::Result {
1290 for &elem in projection.iter().rev() {
1291 match elem {
1292 ProjectionElem::OpaqueCast(_)
1293 | ProjectionElem::Downcast(_, _)
1294 | ProjectionElem::Field(_, _) => {
1295 fmt.write_fmt(format_args!("("))write!(fmt, "(")?;
1296 }
1297 ProjectionElem::Deref => {
1298 fmt.write_fmt(format_args!("(*"))write!(fmt, "(*")?;
1299 }
1300 ProjectionElem::Index(_)
1301 | ProjectionElem::ConstantIndex { .. }
1302 | ProjectionElem::Subslice { .. } => {}
1303 ProjectionElem::UnwrapUnsafeBinder(_) => {
1304 fmt.write_fmt(format_args!("unwrap_binder!("))write!(fmt, "unwrap_binder!(")?;
1305 }
1306 }
1307 }
1308
1309 Ok(())
1310}
1311
1312fn post_fmt_projection(projection: &[PlaceElem<'_>], fmt: &mut Formatter<'_>) -> fmt::Result {
1313 for &elem in projection.iter() {
1314 match elem {
1315 ProjectionElem::OpaqueCast(ty) => {
1316 fmt.write_fmt(format_args!(" as {0})", ty))write!(fmt, " as {ty})")?;
1317 }
1318 ProjectionElem::Downcast(Some(name), _index) => {
1319 fmt.write_fmt(format_args!(" as {0})", name))write!(fmt, " as {name})")?;
1320 }
1321 ProjectionElem::Downcast(None, index) => {
1322 fmt.write_fmt(format_args!(" as variant#{0:?})", index))write!(fmt, " as variant#{index:?})")?;
1323 }
1324 ProjectionElem::Deref => {
1325 fmt.write_fmt(format_args!(")"))write!(fmt, ")")?;
1326 }
1327 ProjectionElem::Field(field, ty) => {
1328 {
let _guard = NoTrimmedGuard::new();
fmt.write_fmt(format_args!(".{0:?}: {1})", field.index(), ty))?
};with_no_trimmed_paths!(write!(fmt, ".{:?}: {})", field.index(), ty)?);
1329 }
1330 ProjectionElem::Index(ref index) => {
1331 fmt.write_fmt(format_args!("[{0:?}]", index))write!(fmt, "[{index:?}]")?;
1332 }
1333 ProjectionElem::ConstantIndex { offset, min_length, from_end: false } => {
1334 fmt.write_fmt(format_args!("[{0:?} of {1:?}]", offset, min_length))write!(fmt, "[{offset:?} of {min_length:?}]")?;
1335 }
1336 ProjectionElem::ConstantIndex { offset, min_length, from_end: true } => {
1337 fmt.write_fmt(format_args!("[-{0:?} of {1:?}]", offset, min_length))write!(fmt, "[-{offset:?} of {min_length:?}]")?;
1338 }
1339 ProjectionElem::Subslice { from, to: 0, from_end: true } => {
1340 fmt.write_fmt(format_args!("[{0:?}:]", from))write!(fmt, "[{from:?}:]")?;
1341 }
1342 ProjectionElem::Subslice { from: 0, to, from_end: true } => {
1343 fmt.write_fmt(format_args!("[:-{0:?}]", to))write!(fmt, "[:-{to:?}]")?;
1344 }
1345 ProjectionElem::Subslice { from, to, from_end: true } => {
1346 fmt.write_fmt(format_args!("[{0:?}:-{1:?}]", from, to))write!(fmt, "[{from:?}:-{to:?}]")?;
1347 }
1348 ProjectionElem::Subslice { from, to, from_end: false } => {
1349 fmt.write_fmt(format_args!("[{0:?}..{1:?}]", from, to))write!(fmt, "[{from:?}..{to:?}]")?;
1350 }
1351 ProjectionElem::UnwrapUnsafeBinder(ty) => {
1352 fmt.write_fmt(format_args!("; {0})", ty))write!(fmt, "; {ty})")?;
1353 }
1354 }
1355 }
1356
1357 Ok(())
1358}
1359
1360fn write_extra<'tcx>(
1364 tcx: TyCtxt<'tcx>,
1365 write: &mut dyn io::Write,
1366 visit_op: &dyn Fn(&mut ExtraComments<'tcx>),
1367 options: PrettyPrintMirOptions,
1368) -> io::Result<()> {
1369 if options.include_extra_comments {
1370 let mut extra_comments = ExtraComments { tcx, comments: ::alloc::vec::Vec::new()vec![] };
1371 visit_op(&mut extra_comments);
1372 for comment in extra_comments.comments {
1373 write.write_fmt(format_args!("{0:2$} // {1}\n", "", comment, ALIGN))writeln!(write, "{:A$} // {}", "", comment, A = ALIGN)?;
1374 }
1375 }
1376 Ok(())
1377}
1378
1379struct ExtraComments<'tcx> {
1380 tcx: TyCtxt<'tcx>,
1381 comments: Vec<String>,
1382}
1383
1384impl<'tcx> ExtraComments<'tcx> {
1385 fn push(&mut self, lines: &str) {
1386 for line in lines.split('\n') {
1387 self.comments.push(line.to_string());
1388 }
1389 }
1390}
1391
1392fn use_verbose(ty: Ty<'_>, fn_def: bool) -> bool {
1393 match *ty.kind() {
1394 ty::Int(_) | ty::Uint(_) | ty::Bool | ty::Char | ty::Float(_) => false,
1395 ty::Tuple(g_args) if g_args.is_empty() => false,
1397 ty::Tuple(g_args) => g_args.iter().any(|g_arg| use_verbose(g_arg, fn_def)),
1398 ty::Array(ty, _) => use_verbose(ty, fn_def),
1399 ty::FnDef(..) => fn_def,
1400 _ => true,
1401 }
1402}
1403
1404impl<'tcx> Visitor<'tcx> for ExtraComments<'tcx> {
1405 fn visit_const_operand(&mut self, constant: &ConstOperand<'tcx>, _location: Location) {
1406 let ConstOperand { span, user_ty, const_ } = constant;
1407 if use_verbose(const_.ty(), true) {
1408 self.push("mir::ConstOperand");
1409 self.push(&::alloc::__export::must_use({
::alloc::fmt::format(format_args!("+ span: {0}",
self.tcx.sess.source_map().span_to_diagnostic_string(*span)))
})format!(
1410 "+ span: {}",
1411 self.tcx.sess.source_map().span_to_diagnostic_string(*span)
1412 ));
1413 if let Some(user_ty) = user_ty {
1414 self.push(&::alloc::__export::must_use({
::alloc::fmt::format(format_args!("+ user_ty: {0:?}", user_ty))
})format!("+ user_ty: {user_ty:?}"));
1415 }
1416
1417 let fmt_val = |val: ConstValue, ty: Ty<'tcx>| {
1418 let tcx = self.tcx;
1419 rustc_data_structures::make_display(move |fmt| {
1420 pretty_print_const_value_tcx(tcx, val, ty, fmt)
1421 })
1422 };
1423
1424 let fmt_valtree = |cv: &ty::Value<'tcx>| {
1425 let mut p = FmtPrinter::new(self.tcx, Namespace::ValueNS);
1426 p.pretty_print_const_valtree(*cv, true).unwrap();
1427 p.into_buffer()
1428 };
1429
1430 let val = match const_ {
1431 Const::Ty(_, ct) => match ct.kind() {
1432 ty::ConstKind::Param(p) => ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("ty::Param({0})", p))
})format!("ty::Param({p})"),
1433 ty::ConstKind::Unevaluated(uv) => {
1434 ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("ty::Unevaluated({0}, {1:?})",
self.tcx.def_path_str(uv.def), uv.args))
})format!("ty::Unevaluated({}, {:?})", self.tcx.def_path_str(uv.def), uv.args,)
1435 }
1436 ty::ConstKind::Value(cv) => {
1437 ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("ty::Valtree({0})",
fmt_valtree(&cv)))
})format!("ty::Valtree({})", fmt_valtree(&cv))
1438 }
1439 ty::ConstKind::Error(_) => "Error".to_string(),
1441 ty::ConstKind::Placeholder(_)
1443 | ty::ConstKind::Infer(_)
1444 | ty::ConstKind::Expr(_)
1445 | ty::ConstKind::Bound(..) => crate::util::bug::bug_fmt(format_args!("unexpected MIR constant: {0:?}",
const_))bug!("unexpected MIR constant: {:?}", const_),
1446 },
1447 Const::Unevaluated(uv, _) => {
1448 ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("Unevaluated({0}, {1:?}, {2:?})",
self.tcx.def_path_str(uv.def), uv.args, uv.promoted))
})format!(
1449 "Unevaluated({}, {:?}, {:?})",
1450 self.tcx.def_path_str(uv.def),
1451 uv.args,
1452 uv.promoted,
1453 )
1454 }
1455 Const::Val(val, ty) => ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("Value({0})", fmt_val(*val, *ty)))
})format!("Value({})", fmt_val(*val, *ty)),
1456 };
1457
1458 self.push(&::alloc::__export::must_use({
::alloc::fmt::format(format_args!("+ const_: Const {{ ty: {0}, val: {1} }}",
const_.ty(), val))
})format!("+ const_: Const {{ ty: {}, val: {} }}", const_.ty(), val));
1462 }
1463 }
1464
1465 fn visit_rvalue(&mut self, rvalue: &Rvalue<'tcx>, location: Location) {
1466 self.super_rvalue(rvalue, location);
1467 if let Rvalue::Aggregate(kind, _) = rvalue {
1468 match **kind {
1469 AggregateKind::Closure(def_id, args) => {
1470 self.push("closure");
1471 self.push(&::alloc::__export::must_use({
::alloc::fmt::format(format_args!("+ def_id: {0:?}", def_id))
})format!("+ def_id: {def_id:?}"));
1472 self.push(&::alloc::__export::must_use({
::alloc::fmt::format(format_args!("+ args: {0:#?}", args))
})format!("+ args: {args:#?}"));
1473 }
1474
1475 AggregateKind::Coroutine(def_id, args) => {
1476 self.push("coroutine");
1477 self.push(&::alloc::__export::must_use({
::alloc::fmt::format(format_args!("+ def_id: {0:?}", def_id))
})format!("+ def_id: {def_id:?}"));
1478 self.push(&::alloc::__export::must_use({
::alloc::fmt::format(format_args!("+ args: {0:#?}", args))
})format!("+ args: {args:#?}"));
1479 self.push(&::alloc::__export::must_use({
::alloc::fmt::format(format_args!("+ kind: {0:?}",
self.tcx.coroutine_kind(def_id)))
})format!("+ kind: {:?}", self.tcx.coroutine_kind(def_id)));
1480 }
1481
1482 AggregateKind::Adt(_, _, _, Some(user_ty), _) => {
1483 self.push("adt");
1484 self.push(&::alloc::__export::must_use({
::alloc::fmt::format(format_args!("+ user_ty: {0:?}", user_ty))
})format!("+ user_ty: {user_ty:?}"));
1485 }
1486
1487 _ => {}
1488 }
1489 }
1490 }
1491}
1492
1493fn comment(tcx: TyCtxt<'_>, SourceInfo { span, scope }: SourceInfo) -> String {
1494 let location = tcx.sess.source_map().span_to_diagnostic_string(span);
1495 ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("scope {0} at {1}", scope.index(),
location))
})format!("scope {} at {}", scope.index(), location,)
1496}
1497
1498pub fn write_allocations<'tcx>(
1504 tcx: TyCtxt<'tcx>,
1505 body: &Body<'_>,
1506 w: &mut dyn io::Write,
1507) -> io::Result<()> {
1508 fn alloc_ids_from_alloc(
1509 alloc: ConstAllocation<'_>,
1510 ) -> impl DoubleEndedIterator<Item = AllocId> {
1511 alloc.inner().provenance().ptrs().values().map(|p| p.alloc_id())
1512 }
1513
1514 fn alloc_id_from_const_val(val: ConstValue) -> Option<AllocId> {
1515 match val {
1516 ConstValue::Scalar(interpret::Scalar::Ptr(ptr, _)) => Some(ptr.provenance.alloc_id()),
1517 ConstValue::Scalar(interpret::Scalar::Int { .. }) => None,
1518 ConstValue::ZeroSized => None,
1519 ConstValue::Slice { alloc_id, .. } | ConstValue::Indirect { alloc_id, .. } => {
1520 Some(alloc_id)
1523 }
1524 }
1525 }
1526 struct CollectAllocIds(BTreeSet<AllocId>);
1527
1528 impl<'tcx> Visitor<'tcx> for CollectAllocIds {
1529 fn visit_const_operand(&mut self, c: &ConstOperand<'tcx>, _: Location) {
1530 match c.const_ {
1531 Const::Ty(_, _) | Const::Unevaluated(..) => {}
1532 Const::Val(val, _) => {
1533 if let Some(id) = alloc_id_from_const_val(val) {
1534 self.0.insert(id);
1535 }
1536 }
1537 }
1538 }
1539 }
1540
1541 let mut visitor = CollectAllocIds(Default::default());
1542 visitor.visit_body(body);
1543
1544 let mut seen = visitor.0;
1548 let mut todo: Vec<_> = seen.iter().copied().collect();
1549 while let Some(id) = todo.pop() {
1550 let mut write_allocation_track_relocs =
1551 |w: &mut dyn io::Write, alloc: ConstAllocation<'tcx>| -> io::Result<()> {
1552 for id in alloc_ids_from_alloc(alloc).rev() {
1554 if seen.insert(id) {
1555 todo.push(id);
1556 }
1557 }
1558 w.write_fmt(format_args!("{0}", display_allocation(tcx, alloc.inner())))write!(w, "{}", display_allocation(tcx, alloc.inner()))
1559 };
1560 w.write_fmt(format_args!("\n{0:?}", id))write!(w, "\n{id:?}")?;
1561 match tcx.try_get_global_alloc(id) {
1562 None => w.write_fmt(format_args!(" (deallocated)"))write!(w, " (deallocated)")?,
1565 Some(GlobalAlloc::Function { instance, .. }) => w.write_fmt(format_args!(" (fn: {0})", instance))write!(w, " (fn: {instance})")?,
1566 Some(GlobalAlloc::VTable(ty, dyn_ty)) => {
1567 w.write_fmt(format_args!(" (vtable: impl {0} for {1})", dyn_ty, ty))write!(w, " (vtable: impl {dyn_ty} for {ty})")?
1568 }
1569 Some(GlobalAlloc::TypeId { ty }) => w.write_fmt(format_args!(" (typeid for {0})", ty))write!(w, " (typeid for {ty})")?,
1570 Some(GlobalAlloc::Static(did)) if !tcx.is_foreign_item(did) => {
1571 w.write_fmt(format_args!(" (static: {0}", tcx.def_path_str(did)))write!(w, " (static: {}", tcx.def_path_str(did))?;
1572 if body.phase <= MirPhase::Runtime(RuntimePhase::PostCleanup)
1573 && body
1574 .source
1575 .def_id()
1576 .as_local()
1577 .is_some_and(|def_id| tcx.hir_body_const_context(def_id).is_some())
1578 {
1579 w.write_fmt(format_args!(")"))write!(w, ")")?;
1583 } else {
1584 match tcx.eval_static_initializer(did) {
1585 Ok(alloc) => {
1586 w.write_fmt(format_args!(", "))write!(w, ", ")?;
1587 write_allocation_track_relocs(w, alloc)?;
1588 }
1589 Err(_) => w.write_fmt(format_args!(", error during initializer evaluation)"))write!(w, ", error during initializer evaluation)")?,
1590 }
1591 }
1592 }
1593 Some(GlobalAlloc::Static(did)) => {
1594 w.write_fmt(format_args!(" (extern static: {0})", tcx.def_path_str(did)))write!(w, " (extern static: {})", tcx.def_path_str(did))?
1595 }
1596 Some(GlobalAlloc::Memory(alloc)) => {
1597 w.write_fmt(format_args!(" ("))write!(w, " (")?;
1598 write_allocation_track_relocs(w, alloc)?
1599 }
1600 }
1601 w.write_fmt(format_args!("\n"))writeln!(w)?;
1602 }
1603 Ok(())
1604}
1605
1606pub fn display_allocation<'a, 'tcx, Prov: Provenance, Extra, Bytes: AllocBytes>(
1623 tcx: TyCtxt<'tcx>,
1624 alloc: &'a Allocation<Prov, Extra, Bytes>,
1625) -> RenderAllocation<'a, 'tcx, Prov, Extra, Bytes> {
1626 RenderAllocation { tcx, alloc }
1627}
1628
1629#[doc(hidden)]
1630pub struct RenderAllocation<'a, 'tcx, Prov: Provenance, Extra, Bytes: AllocBytes> {
1631 tcx: TyCtxt<'tcx>,
1632 alloc: &'a Allocation<Prov, Extra, Bytes>,
1633}
1634
1635impl<'a, 'tcx, Prov: Provenance, Extra, Bytes: AllocBytes> std::fmt::Display
1636 for RenderAllocation<'a, 'tcx, Prov, Extra, Bytes>
1637{
1638 fn fmt(&self, w: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1639 let RenderAllocation { tcx, alloc } = *self;
1640 w.write_fmt(format_args!("size: {0}, align: {1})", alloc.size().bytes(),
alloc.align.bytes()))write!(w, "size: {}, align: {})", alloc.size().bytes(), alloc.align.bytes())?;
1641 if alloc.size() == Size::ZERO {
1642 return w.write_fmt(format_args!(" {{}}"))write!(w, " {{}}");
1644 }
1645 if tcx.sess.opts.unstable_opts.dump_mir_exclude_alloc_bytes {
1646 return w.write_fmt(format_args!(" {{ .. }}"))write!(w, " {{ .. }}");
1647 }
1648 w.write_fmt(format_args!(" {{\n"))writeln!(w, " {{")?;
1650 write_allocation_bytes(tcx, alloc, w, " ")?;
1651 w.write_fmt(format_args!("}}"))write!(w, "}}")?;
1652 Ok(())
1653 }
1654}
1655
1656fn write_allocation_endline(w: &mut dyn std::fmt::Write, ascii: &str) -> std::fmt::Result {
1657 for _ in 0..(BYTES_PER_LINE - ascii.chars().count()) {
1658 w.write_fmt(format_args!(" "))write!(w, " ")?;
1659 }
1660 w.write_fmt(format_args!(" │ {0}\n", ascii))writeln!(w, " │ {ascii}")
1661}
1662
1663const BYTES_PER_LINE: usize = 16;
1665
1666fn write_allocation_newline(
1668 w: &mut dyn std::fmt::Write,
1669 mut line_start: Size,
1670 ascii: &str,
1671 pos_width: usize,
1672 prefix: &str,
1673) -> Result<Size, std::fmt::Error> {
1674 write_allocation_endline(w, ascii)?;
1675 line_start += Size::from_bytes(BYTES_PER_LINE);
1676 w.write_fmt(format_args!("{0}0x{1:02$x} │ ", prefix, line_start.bytes(),
pos_width))write!(w, "{}0x{:02$x} │ ", prefix, line_start.bytes(), pos_width)?;
1677 Ok(line_start)
1678}
1679
1680pub fn write_allocation_bytes<'tcx, Prov: Provenance, Extra, Bytes: AllocBytes>(
1684 tcx: TyCtxt<'tcx>,
1685 alloc: &Allocation<Prov, Extra, Bytes>,
1686 w: &mut dyn std::fmt::Write,
1687 prefix: &str,
1688) -> std::fmt::Result {
1689 let num_lines = alloc.size().bytes_usize().saturating_sub(BYTES_PER_LINE);
1690 let pos_width = hex_number_length(alloc.size().bytes());
1692
1693 if num_lines > 0 {
1694 w.write_fmt(format_args!("{0}0x{1:02$x} │ ", prefix, 0, pos_width))write!(w, "{}0x{:02$x} │ ", prefix, 0, pos_width)?;
1695 } else {
1696 w.write_fmt(format_args!("{0}", prefix))write!(w, "{prefix}")?;
1697 }
1698
1699 let mut i = Size::ZERO;
1700 let mut line_start = Size::ZERO;
1701
1702 let ptr_size = tcx.data_layout.pointer_size();
1703
1704 let mut ascii = String::new();
1705
1706 let oversized_ptr = |target: &mut String, width| {
1707 if target.len() > width {
1708 target.write_fmt(format_args!(" ({0} ptr bytes)", ptr_size.bytes()))write!(target, " ({} ptr bytes)", ptr_size.bytes()).unwrap();
1709 }
1710 };
1711
1712 while i < alloc.size() {
1713 if i != line_start {
1717 w.write_fmt(format_args!(" "))write!(w, " ")?;
1718 }
1719 if let Some(prov) = alloc.provenance().get_ptr(i) {
1720 if !alloc.init_mask().is_range_initialized(alloc_range(i, ptr_size)).is_ok() {
::core::panicking::panic("assertion failed: alloc.init_mask().is_range_initialized(alloc_range(i, ptr_size)).is_ok()")
};assert!(alloc.init_mask().is_range_initialized(alloc_range(i, ptr_size)).is_ok());
1722 let j = i.bytes_usize();
1723 let offset = alloc
1724 .inspect_with_uninit_and_ptr_outside_interpreter(j..j + ptr_size.bytes_usize());
1725 let offset = read_target_uint(tcx.data_layout.endian, offset).unwrap();
1726 let offset = Size::from_bytes(offset);
1727 let provenance_width = |bytes| bytes * 3;
1728 let ptr = Pointer::new(prov, offset);
1729 let mut target = ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0:?}", ptr))
})format!("{ptr:?}");
1730 if target.len() > provenance_width(ptr_size.bytes_usize() - 1) {
1731 target = ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0:#?}", ptr))
})format!("{ptr:#?}");
1733 }
1734 if ((i - line_start) + ptr_size).bytes_usize() > BYTES_PER_LINE {
1735 let remainder = Size::from_bytes(BYTES_PER_LINE) - (i - line_start);
1738 let overflow = ptr_size - remainder;
1739 let remainder_width = provenance_width(remainder.bytes_usize()) - 2;
1740 let overflow_width = provenance_width(overflow.bytes_usize() - 1) + 1;
1741 ascii.push('╾'); for _ in 1..remainder.bytes() {
1743 ascii.push('─'); }
1745 if overflow_width > remainder_width && overflow_width >= target.len() {
1746 w.write_fmt(format_args!("╾{0:─^1$}", "", remainder_width))write!(w, "╾{0:─^1$}", "", remainder_width)?;
1748 line_start =
1749 write_allocation_newline(w, line_start, &ascii, pos_width, prefix)?;
1750 ascii.clear();
1751 w.write_fmt(format_args!("{0:─^1$}╼", target, overflow_width))write!(w, "{target:─^overflow_width$}╼")?;
1752 } else {
1753 oversized_ptr(&mut target, remainder_width);
1754 w.write_fmt(format_args!("╾{0:─^1$}", target, remainder_width))write!(w, "╾{target:─^remainder_width$}")?;
1755 line_start =
1756 write_allocation_newline(w, line_start, &ascii, pos_width, prefix)?;
1757 w.write_fmt(format_args!("{0:─^1$}╼", "", overflow_width))write!(w, "{0:─^1$}╼", "", overflow_width)?;
1758 ascii.clear();
1759 }
1760 for _ in 0..overflow.bytes() - 1 {
1761 ascii.push('─');
1762 }
1763 ascii.push('╼'); i += ptr_size;
1765 continue;
1766 } else {
1767 let provenance_width = provenance_width(ptr_size.bytes_usize() - 1);
1769 oversized_ptr(&mut target, provenance_width);
1770 ascii.push('╾');
1771 w.write_fmt(format_args!("╾{0:─^1$}╼", target, provenance_width))write!(w, "╾{target:─^provenance_width$}╼")?;
1772 for _ in 0..ptr_size.bytes() - 2 {
1773 ascii.push('─');
1774 }
1775 ascii.push('╼');
1776 i += ptr_size;
1777 }
1778 } else if let Some(frag) = alloc.provenance().get_byte(i, &tcx) {
1779 if !alloc.init_mask().is_range_initialized(alloc_range(i,
Size::from_bytes(1))).is_ok() {
::core::panicking::panic("assertion failed: alloc.init_mask().is_range_initialized(alloc_range(i,\n Size::from_bytes(1))).is_ok()")
};assert!(
1781 alloc.init_mask().is_range_initialized(alloc_range(i, Size::from_bytes(1))).is_ok()
1782 );
1783 ascii.push('━'); let j = i.bytes_usize();
1787 let c = alloc.inspect_with_uninit_and_ptr_outside_interpreter(j..j + 1)[0];
1788 w.write_fmt(format_args!("╾{2:02x}{0:#?} (ptr fragment {1})╼", frag.prov,
frag.idx, c))write!(w, "╾{c:02x}{prov:#?} (ptr fragment {idx})╼", prov = frag.prov, idx = frag.idx)?;
1790 i += Size::from_bytes(1);
1791 } else if alloc
1792 .init_mask()
1793 .is_range_initialized(alloc_range(i, Size::from_bytes(1)))
1794 .is_ok()
1795 {
1796 let j = i.bytes_usize();
1797
1798 let c = alloc.inspect_with_uninit_and_ptr_outside_interpreter(j..j + 1)[0];
1801 w.write_fmt(format_args!("{0:02x}", c))write!(w, "{c:02x}")?;
1802 if c.is_ascii_control() || c >= 0x80 {
1803 ascii.push('.');
1804 } else {
1805 ascii.push(char::from(c));
1806 }
1807 i += Size::from_bytes(1);
1808 } else {
1809 w.write_fmt(format_args!("__"))write!(w, "__")?;
1810 ascii.push('░');
1811 i += Size::from_bytes(1);
1812 }
1813 if i == line_start + Size::from_bytes(BYTES_PER_LINE) && i != alloc.size() {
1815 line_start = write_allocation_newline(w, line_start, &ascii, pos_width, prefix)?;
1816 ascii.clear();
1817 }
1818 }
1819 write_allocation_endline(w, &ascii)?;
1820
1821 Ok(())
1822}
1823
1824fn pretty_print_byte_str(fmt: &mut Formatter<'_>, byte_str: &[u8]) -> fmt::Result {
1828 fmt.write_fmt(format_args!("b\"{0}\"", byte_str.escape_ascii()))write!(fmt, "b\"{}\"", byte_str.escape_ascii())
1829}
1830
1831fn comma_sep<'tcx>(
1832 tcx: TyCtxt<'tcx>,
1833 fmt: &mut Formatter<'_>,
1834 elems: Vec<(ConstValue, Ty<'tcx>)>,
1835) -> fmt::Result {
1836 let mut first = true;
1837 for (ct, ty) in elems {
1838 if !first {
1839 fmt.write_str(", ")?;
1840 }
1841 pretty_print_const_value_tcx(tcx, ct, ty, fmt)?;
1842 first = false;
1843 }
1844 Ok(())
1845}
1846
1847fn pretty_print_const_value_tcx<'tcx>(
1848 tcx: TyCtxt<'tcx>,
1849 ct: ConstValue,
1850 ty: Ty<'tcx>,
1851 fmt: &mut Formatter<'_>,
1852) -> fmt::Result {
1853 use crate::ty::print::PrettyPrinter;
1854
1855 if tcx.sess.verbose_internals() {
1856 fmt.write_str(&::alloc::__export::must_use({
::alloc::fmt::format(format_args!("ConstValue({0:?}: {1})", ct, ty))
})format!("ConstValue({ct:?}: {ty})"))?;
1857 return Ok(());
1858 }
1859
1860 if ct.all_bytes_uninit(tcx) {
1863 fmt.write_str("<uninit>")?;
1864 return Ok(());
1865 }
1866
1867 let u8_type = tcx.types.u8;
1868 match (ct, ty.kind()) {
1869 (_, ty::Ref(_, inner_ty, _)) if let ty::Str = inner_ty.kind() => {
1871 if let Some(data) = ct.try_get_slice_bytes_for_diagnostics(tcx) {
1872 fmt.write_str(&::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0:?}",
String::from_utf8_lossy(data)))
})format!("{:?}", String::from_utf8_lossy(data)))?;
1873 return Ok(());
1874 }
1875 }
1876 (_, ty::Ref(_, inner_ty, _))
1877 if let ty::Slice(t) = inner_ty.kind()
1878 && *t == u8_type =>
1879 {
1880 if let Some(data) = ct.try_get_slice_bytes_for_diagnostics(tcx) {
1881 pretty_print_byte_str(fmt, data)?;
1882 return Ok(());
1883 }
1884 }
1885 (ConstValue::Indirect { alloc_id, offset }, ty::Array(t, n)) if *t == u8_type => {
1886 let n = n.try_to_target_usize(tcx).unwrap();
1887 let alloc = tcx.global_alloc(alloc_id).unwrap_memory();
1888 let range = AllocRange { start: offset, size: Size::from_bytes(n) };
1890 let byte_str = alloc.inner().get_bytes_strip_provenance(&tcx, range).unwrap();
1891 fmt.write_str("*")?;
1892 pretty_print_byte_str(fmt, byte_str)?;
1893 return Ok(());
1894 }
1895 (_, ty::Array(..) | ty::Tuple(..) | ty::Adt(..)) if !ty.has_non_region_param() => {
1904 let ct = tcx.lift(ct).unwrap();
1905 let ty = tcx.lift(ty).unwrap();
1906 if let Some(contents) = tcx.try_destructure_mir_constant_for_user_output(ct, ty) {
1907 let fields: Vec<(ConstValue, Ty<'_>)> = contents.fields.to_vec();
1908 match *ty.kind() {
1909 ty::Array(..) => {
1910 fmt.write_str("[")?;
1911 comma_sep(tcx, fmt, fields)?;
1912 fmt.write_str("]")?;
1913 }
1914 ty::Tuple(..) => {
1915 fmt.write_str("(")?;
1916 comma_sep(tcx, fmt, fields)?;
1917 if contents.fields.len() == 1 {
1918 fmt.write_str(",")?;
1919 }
1920 fmt.write_str(")")?;
1921 }
1922 ty::Adt(def, _) if def.variants().is_empty() => {
1923 fmt.write_str(&::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{{unreachable(): {0}}}", ty))
})format!("{{unreachable(): {ty}}}"))?;
1924 }
1925 ty::Adt(def, args) => {
1926 let variant_idx = contents
1927 .variant
1928 .expect("destructed mir constant of adt without variant idx");
1929 let variant_def = &def.variant(variant_idx);
1930 let args = tcx.lift(args).unwrap();
1931 let mut p = FmtPrinter::new(tcx, Namespace::ValueNS);
1932 p.print_alloc_ids = true;
1933 p.pretty_print_value_path(variant_def.def_id, args)?;
1934 fmt.write_str(&p.into_buffer())?;
1935
1936 match variant_def.ctor_kind() {
1937 Some(CtorKind::Const) => {}
1938 Some(CtorKind::Fn) => {
1939 fmt.write_str("(")?;
1940 comma_sep(tcx, fmt, fields)?;
1941 fmt.write_str(")")?;
1942 }
1943 None => {
1944 fmt.write_str(" {{ ")?;
1945 let mut first = true;
1946 for (field_def, (ct, ty)) in iter::zip(&variant_def.fields, fields)
1947 {
1948 if !first {
1949 fmt.write_str(", ")?;
1950 }
1951 fmt.write_fmt(format_args!("{0}: ", field_def.name))write!(fmt, "{}: ", field_def.name)?;
1952 pretty_print_const_value_tcx(tcx, ct, ty, fmt)?;
1953 first = false;
1954 }
1955 fmt.write_str(" }}")?;
1956 }
1957 }
1958 }
1959 _ => ::core::panicking::panic("internal error: entered unreachable code")unreachable!(),
1960 }
1961 return Ok(());
1962 }
1963 }
1964 (ConstValue::Scalar(scalar), _) => {
1965 let mut p = FmtPrinter::new(tcx, Namespace::ValueNS);
1966 p.print_alloc_ids = true;
1967 let ty = tcx.lift(ty).unwrap();
1968 p.pretty_print_const_scalar(scalar, ty)?;
1969 fmt.write_str(&p.into_buffer())?;
1970 return Ok(());
1971 }
1972 (ConstValue::ZeroSized, ty::FnDef(d, s)) => {
1973 let mut p = FmtPrinter::new(tcx, Namespace::ValueNS);
1974 p.print_alloc_ids = true;
1975 p.pretty_print_value_path(*d, s)?;
1976 fmt.write_str(&p.into_buffer())?;
1977 return Ok(());
1978 }
1979 _ => {}
1982 }
1983 fmt.write_fmt(format_args!("{0:?}: {1}", ct, ty))write!(fmt, "{ct:?}: {ty}")
1985}
1986
1987pub(crate) fn pretty_print_const_value<'tcx>(
1988 ct: ConstValue,
1989 ty: Ty<'tcx>,
1990 fmt: &mut Formatter<'_>,
1991) -> fmt::Result {
1992 ty::tls::with(|tcx| {
1993 let ct = tcx.lift(ct).unwrap();
1994 let ty = tcx.lift(ty).unwrap();
1995 pretty_print_const_value_tcx(tcx, ct, ty, fmt)
1996 })
1997}
1998
1999fn hex_number_length(x: u64) -> usize {
2010 if x == 0 {
2011 return 1;
2012 }
2013 let mut length = 0;
2014 let mut x_left = x;
2015 while x_left > 0 {
2016 x_left /= 16;
2017 length += 1;
2018 }
2019 length
2020}