@@ -12,8 +12,6 @@ use rustc_middle::mir::coverage::*;
12
12
13
13
use std:: fmt:: { self , Debug } ;
14
14
15
- const NESTED_INDENT : & str = " " ;
16
-
17
15
/// The coverage counter or counter expression associated with a particular
18
16
/// BCB node or BCB edge.
19
17
#[ derive( Clone ) ]
@@ -346,23 +344,11 @@ impl<'a> MakeBcbCounters<'a> {
346
344
Ok ( ( ) )
347
345
}
348
346
347
+ #[ instrument( level = "debug" , skip( self ) ) ]
349
348
fn get_or_make_counter_operand ( & mut self , bcb : BasicCoverageBlock ) -> Result < CovTerm , Error > {
350
- self . recursive_get_or_make_counter_operand ( bcb, 1 )
351
- }
352
-
353
- fn recursive_get_or_make_counter_operand (
354
- & mut self ,
355
- bcb : BasicCoverageBlock ,
356
- debug_indent_level : usize ,
357
- ) -> Result < CovTerm , Error > {
358
349
// If the BCB already has a counter, return it.
359
350
if let Some ( counter_kind) = & self . coverage_counters . bcb_counters [ bcb] {
360
- debug ! (
361
- "{}{:?} already has a counter: {:?}" ,
362
- NESTED_INDENT . repeat( debug_indent_level) ,
363
- bcb,
364
- counter_kind,
365
- ) ;
351
+ debug ! ( "{bcb:?} already has a counter: {counter_kind:?}" ) ;
366
352
return Ok ( counter_kind. as_term ( ) ) ;
367
353
}
368
354
@@ -373,20 +359,12 @@ impl<'a> MakeBcbCounters<'a> {
373
359
if one_path_to_target || self . bcb_predecessors ( bcb) . contains ( & bcb) {
374
360
let counter_kind = self . coverage_counters . make_counter ( ) ;
375
361
if one_path_to_target {
376
- debug ! (
377
- "{}{:?} gets a new counter: {:?}" ,
378
- NESTED_INDENT . repeat( debug_indent_level) ,
379
- bcb,
380
- counter_kind,
381
- ) ;
362
+ debug ! ( "{bcb:?} gets a new counter: {counter_kind:?}" ) ;
382
363
} else {
383
364
debug ! (
384
- "{}{:?} has itself as its own predecessor. It can't be part of its own \
385
- Expression sum, so it will get its own new counter: {:?}. (Note, the compiled \
386
- code will generate an infinite loop.)",
387
- NESTED_INDENT . repeat( debug_indent_level) ,
388
- bcb,
389
- counter_kind,
365
+ "{bcb:?} has itself as its own predecessor. It can't be part of its own \
366
+ Expression sum, so it will get its own new counter: {counter_kind:?}. \
367
+ (Note, the compiled code will generate an infinite loop.)",
390
368
) ;
391
369
}
392
370
return self . coverage_counters . set_bcb_counter ( bcb, counter_kind) ;
@@ -396,24 +374,14 @@ impl<'a> MakeBcbCounters<'a> {
396
374
// counters and/or expressions of its incoming edges. This will recursively get or create
397
375
// counters for those incoming edges first, then call `make_expression()` to sum them up,
398
376
// with additional intermediate expressions as needed.
377
+ let _sumup_debug_span = debug_span ! ( "(preparing sum-up expression)" ) . entered ( ) ;
378
+
399
379
let mut predecessors = self . bcb_predecessors ( bcb) . to_owned ( ) . into_iter ( ) ;
400
- debug ! (
401
- "{}{:?} has multiple incoming edges and will get an expression that sums them up..." ,
402
- NESTED_INDENT . repeat( debug_indent_level) ,
403
- bcb,
404
- ) ;
405
- let first_edge_counter_operand = self . recursive_get_or_make_edge_counter_operand (
406
- predecessors. next ( ) . unwrap ( ) ,
407
- bcb,
408
- debug_indent_level + 1 ,
409
- ) ?;
380
+ let first_edge_counter_operand =
381
+ self . get_or_make_edge_counter_operand ( predecessors. next ( ) . unwrap ( ) , bcb) ?;
410
382
let mut some_sumup_edge_counter_operand = None ;
411
383
for predecessor in predecessors {
412
- let edge_counter_operand = self . recursive_get_or_make_edge_counter_operand (
413
- predecessor,
414
- bcb,
415
- debug_indent_level + 1 ,
416
- ) ?;
384
+ let edge_counter_operand = self . get_or_make_edge_counter_operand ( predecessor, bcb) ?;
417
385
if let Some ( sumup_edge_counter_operand) =
418
386
some_sumup_edge_counter_operand. replace ( edge_counter_operand)
419
387
{
@@ -422,11 +390,7 @@ impl<'a> MakeBcbCounters<'a> {
422
390
Op :: Add ,
423
391
edge_counter_operand,
424
392
) ;
425
- debug ! (
426
- "{}new intermediate expression: {:?}" ,
427
- NESTED_INDENT . repeat( debug_indent_level) ,
428
- intermediate_expression
429
- ) ;
393
+ debug ! ( "new intermediate expression: {intermediate_expression:?}" ) ;
430
394
let intermediate_expression_operand = intermediate_expression. as_term ( ) ;
431
395
some_sumup_edge_counter_operand. replace ( intermediate_expression_operand) ;
432
396
}
@@ -436,59 +400,36 @@ impl<'a> MakeBcbCounters<'a> {
436
400
Op :: Add ,
437
401
some_sumup_edge_counter_operand. unwrap ( ) ,
438
402
) ;
439
- debug ! (
440
- "{}{:?} gets a new counter (sum of predecessor counters): {:?}" ,
441
- NESTED_INDENT . repeat( debug_indent_level) ,
442
- bcb,
443
- counter_kind
444
- ) ;
403
+ drop ( _sumup_debug_span) ;
404
+
405
+ debug ! ( "{bcb:?} gets a new counter (sum of predecessor counters): {counter_kind:?}" ) ;
445
406
self . coverage_counters . set_bcb_counter ( bcb, counter_kind)
446
407
}
447
408
409
+ #[ instrument( level = "debug" , skip( self ) ) ]
448
410
fn get_or_make_edge_counter_operand (
449
411
& mut self ,
450
412
from_bcb : BasicCoverageBlock ,
451
413
to_bcb : BasicCoverageBlock ,
452
- ) -> Result < CovTerm , Error > {
453
- self . recursive_get_or_make_edge_counter_operand ( from_bcb, to_bcb, 1 )
454
- }
455
-
456
- fn recursive_get_or_make_edge_counter_operand (
457
- & mut self ,
458
- from_bcb : BasicCoverageBlock ,
459
- to_bcb : BasicCoverageBlock ,
460
- debug_indent_level : usize ,
461
414
) -> Result < CovTerm , Error > {
462
415
// If the source BCB has only one successor (assumed to be the given target), an edge
463
416
// counter is unnecessary. Just get or make a counter for the source BCB.
464
417
let successors = self . bcb_successors ( from_bcb) . iter ( ) ;
465
418
if successors. len ( ) == 1 {
466
- return self . recursive_get_or_make_counter_operand ( from_bcb, debug_indent_level + 1 ) ;
419
+ return self . get_or_make_counter_operand ( from_bcb) ;
467
420
}
468
421
469
422
// If the edge already has a counter, return it.
470
423
if let Some ( counter_kind) =
471
424
self . coverage_counters . bcb_edge_counters . get ( & ( from_bcb, to_bcb) )
472
425
{
473
- debug ! (
474
- "{}Edge {:?}->{:?} already has a counter: {:?}" ,
475
- NESTED_INDENT . repeat( debug_indent_level) ,
476
- from_bcb,
477
- to_bcb,
478
- counter_kind
479
- ) ;
426
+ debug ! ( "Edge {from_bcb:?}->{to_bcb:?} already has a counter: {counter_kind:?}" ) ;
480
427
return Ok ( counter_kind. as_term ( ) ) ;
481
428
}
482
429
483
430
// Make a new counter to count this edge.
484
431
let counter_kind = self . coverage_counters . make_counter ( ) ;
485
- debug ! (
486
- "{}Edge {:?}->{:?} gets a new counter: {:?}" ,
487
- NESTED_INDENT . repeat( debug_indent_level) ,
488
- from_bcb,
489
- to_bcb,
490
- counter_kind
491
- ) ;
432
+ debug ! ( "Edge {from_bcb:?}->{to_bcb:?} gets a new counter: {counter_kind:?}" ) ;
492
433
self . coverage_counters . set_bcb_edge_counter ( from_bcb, to_bcb, counter_kind)
493
434
}
494
435
0 commit comments