rust/tests/mir-opt/box_expr.main.ElaborateDrop...

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

72 lines
1.4 KiB
Rust
Raw Normal View History

2020-04-03 05:09:01 +08:00
// MIR for `main` before ElaborateDrops
fn main() -> () {
2023-06-06 21:47:00 +08:00
let mut _0: ();
let _1: std::boxed::Box<S>;
let mut _2: usize;
let mut _3: usize;
let mut _4: *mut u8;
let mut _5: std::boxed::Box<S>;
let _6: ();
let mut _7: std::boxed::Box<S>;
2020-04-03 05:09:01 +08:00
scope 1 {
2023-06-06 21:47:00 +08:00
debug x => _1;
2020-04-03 05:09:01 +08:00
}
2021-09-17 06:04:02 +08:00
scope 2 {
}
2020-04-03 05:09:01 +08:00
bb0: {
2023-06-06 21:47:00 +08:00
StorageLive(_1);
_2 = SizeOf(S);
_3 = AlignOf(S);
_4 = alloc::alloc::exchange_malloc(move _2, move _3) -> [return: bb1, unwind: bb9];
2020-04-03 05:09:01 +08:00
}
2020-10-03 04:11:24 +08:00
bb1: {
2023-06-06 21:47:00 +08:00
StorageLive(_5);
_5 = ShallowInitBox(move _4, S);
(*_5) = S::new() -> [return: bb2, unwind: bb8];
}
bb2: {
2023-06-06 21:47:00 +08:00
_1 = move _5;
drop(_5) -> [return: bb3, unwind: bb9];
2021-09-17 06:04:02 +08:00
}
bb3: {
2023-06-06 21:47:00 +08:00
StorageDead(_5);
StorageLive(_6);
StorageLive(_7);
_7 = move _1;
_6 = std::mem::drop::<Box<S>>(move _7) -> [return: bb4, unwind: bb6];
2020-04-03 05:09:01 +08:00
}
2021-09-17 06:04:02 +08:00
bb4: {
2023-06-06 21:47:00 +08:00
StorageDead(_7);
StorageDead(_6);
_0 = const ();
drop(_1) -> [return: bb5, unwind: bb9];
2020-10-03 04:11:24 +08:00
}
2021-09-17 06:04:02 +08:00
bb5: {
2023-06-06 21:47:00 +08:00
StorageDead(_1);
return;
2020-10-03 04:11:24 +08:00
}
bb6 (cleanup): {
2023-06-06 21:47:00 +08:00
drop(_7) -> [return: bb7, unwind terminate];
}
bb7 (cleanup): {
2023-06-06 21:47:00 +08:00
drop(_1) -> [return: bb9, unwind terminate];
}
bb8 (cleanup): {
2023-06-06 21:47:00 +08:00
drop(_5) -> [return: bb9, unwind terminate];
2021-09-17 06:04:02 +08:00
}
bb9 (cleanup): {
2023-06-06 21:47:00 +08:00
resume;
2020-04-03 05:09:01 +08:00
}
}