rust/tests/mir-opt/instrument_coverage.main.In...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

56 lines
1.5 KiB
Diff
Raw Normal View History

- // MIR for `main` before InstrumentCoverage
+ // MIR for `main` after InstrumentCoverage
fn main() -> () {
2023-06-06 21:47:00 +08:00
let mut _0: ();
let mut _1: ();
let mut _2: bool;
let mut _3: !;
+ coverage ExpressionId(0) => Expression { lhs: Counter(0), op: Add, rhs: Counter(1) };
+ coverage ExpressionId(1) => Expression { lhs: Expression(0), op: Subtract, rhs: Counter(1) };
+ coverage Counter(0) => /the/src/instrument_coverage.rs:12:1 - 12:11;
+ coverage Expression(0) => /the/src/instrument_coverage.rs:13:5 - 14:17;
+ coverage Expression(1) => /the/src/instrument_coverage.rs:15:13 - 15:18;
+ coverage Expression(1) => /the/src/instrument_coverage.rs:18:1 - 18:2;
+ coverage Counter(1) => /the/src/instrument_coverage.rs:16:10 - 16:11;
+
bb0: {
+ Coverage::CounterIncrement(0);
2023-06-06 21:47:00 +08:00
goto -> bb1;
}
bb1: {
+ Coverage::ExpressionUsed(0);
2023-06-06 21:47:00 +08:00
falseUnwind -> [real: bb2, unwind: bb6];
2021-09-18 08:00:00 +08:00
}
bb2: {
2023-06-06 21:47:00 +08:00
StorageLive(_2);
_2 = bar() -> [return: bb3, unwind: bb6];
}
2021-09-18 08:00:00 +08:00
bb3: {
2023-06-06 21:47:00 +08:00
switchInt(move _2) -> [0: bb5, otherwise: bb4];
}
2021-09-18 08:00:00 +08:00
bb4: {
+ Coverage::ExpressionUsed(1);
2023-06-06 21:47:00 +08:00
_0 = const ();
StorageDead(_2);
return;
}
2021-09-18 08:00:00 +08:00
bb5: {
+ Coverage::CounterIncrement(1);
2023-06-06 21:47:00 +08:00
_1 = const ();
StorageDead(_2);
goto -> bb1;
}
2021-09-18 08:00:00 +08:00
bb6 (cleanup): {
2023-06-06 21:47:00 +08:00
resume;
2020-10-04 19:57:53 +08:00
}
}