rust/tests/mir-opt/storage_ranges.main.nll.0.mir

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

67 lines
1.4 KiB
Rust
Raw Normal View History

2020-04-02 16:09:01 -05:00
// MIR for `main` 0 nll
| Free Region Mapping
2023-04-21 19:08:38 -05:00
| '?0 | Global | ['?0, '?1]
| '?1 | Local | ['?1]
2020-04-02 16:09:01 -05:00
|
| Inferred Region Values
2023-04-21 19:08:38 -05:00
| '?0 | U0 | {bb0[0..=22], '?0, '?1}
| '?1 | U0 | {bb0[0..=22], '?1}
| '?2 | U0 | {bb0[10..=11]}
| '?3 | U0 | {bb0[11]}
2020-04-02 16:09:01 -05:00
|
| Inference Constraints
2023-04-21 19:08:38 -05:00
| '?0 live at {bb0[0..=22]}
| '?1 live at {bb0[0..=22]}
| '?2 live at {bb0[10]}
| '?3 live at {bb0[11]}
| '?2: '?3 due to Assignment at Single(bb0[10]) ($DIR/storage_ranges.rs:7:17: 7:25 (#0)
2020-04-02 16:09:01 -05:00
|
| Borrows
| bw0: issued at bb0[10] in '?2
|
2020-04-02 16:09:01 -05:00
fn main() -> () {
2023-06-06 08:47:00 -05:00
let mut _0: ();
let _1: i32;
let _2: ();
let _4: std::option::Option<i32>;
let mut _5: i32;
2020-04-02 16:09:01 -05:00
scope 1 {
2023-06-06 08:47:00 -05:00
debug a => _1;
let _3: &std::option::Option<i32>;
let _6: i32;
2020-04-02 16:09:01 -05:00
scope 2 {
2023-06-06 08:47:00 -05:00
debug b => _3;
2020-04-02 16:09:01 -05:00
}
scope 3 {
2023-06-06 08:47:00 -05:00
debug c => _6;
2020-04-02 16:09:01 -05:00
}
}
bb0: {
2023-06-06 08:47:00 -05:00
StorageLive(_1);
_1 = const 0_i32;
FakeRead(ForLet(None), _1);
StorageLive(_2);
StorageLive(_3);
StorageLive(_4);
StorageLive(_5);
_5 = copy _1;
_4 = Option::<i32>::Some(move _5);
StorageDead(_5);
_3 = &_4;
FakeRead(ForLet(None), _3);
_2 = const ();
StorageDead(_4);
StorageDead(_3);
StorageDead(_2);
StorageLive(_6);
_6 = const 1_i32;
FakeRead(ForLet(None), _6);
_0 = const ();
StorageDead(_6);
StorageDead(_1);
return;
2020-04-02 16:09:01 -05:00
}
}