rust/src/test/mir-opt/inline/issue_78442.bar.Inline.diff

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

69 lines
4.1 KiB
Diff
Raw Normal View History

- // MIR for `bar` before Inline
+ // MIR for `bar` after Inline
fn bar(_1: P) -> () {
debug _baz => _1; // in scope 0 at $DIR/issue-78442.rs:9:5: 9:9
let mut _0: (); // return place in scope 0 at $DIR/issue-78442.rs:10:3: 10:3
let _2: (); // in scope 0 at $DIR/issue-78442.rs:11:5: 11:17
let mut _3: &fn() {foo}; // in scope 0 at $DIR/issue-78442.rs:11:5: 11:15
let _4: fn() {foo}; // in scope 0 at $DIR/issue-78442.rs:11:5: 11:15
let mut _5: (); // in scope 0 at $DIR/issue-78442.rs:11:5: 11:17
+ scope 1 (inlined <fn() {foo} as Fn<()>>::call - shim(fn() {foo})) { // at $DIR/issue-78442.rs:11:5: 11:17
+ }
bb0: {
StorageLive(_2); // scope 0 at $DIR/issue-78442.rs:11:5: 11:17
StorageLive(_3); // scope 0 at $DIR/issue-78442.rs:11:5: 11:15
StorageLive(_4); // scope 0 at $DIR/issue-78442.rs:11:5: 11:15
- _4 = hide_foo() -> [return: bb1, unwind: bb4]; // scope 0 at $DIR/issue-78442.rs:11:5: 11:15
+ _4 = hide_foo() -> [return: bb1, unwind: bb3]; // scope 0 at $DIR/issue-78442.rs:11:5: 11:15
// mir::Constant
// + span: $DIR/issue-78442.rs:11:5: 11:13
// + literal: Const { ty: fn() -> impl Fn() {hide_foo}, val: Value(Scalar(<ZST>)) }
}
bb1: {
_3 = &_4; // scope 0 at $DIR/issue-78442.rs:11:5: 11:15
StorageLive(_5); // scope 0 at $DIR/issue-78442.rs:11:5: 11:17
Deinit(_5); // scope 0 at $DIR/issue-78442.rs:11:5: 11:17
2022-02-16 09:56:01 +00:00
- _2 = <fn() {foo} as Fn<()>>::call(move _3, move _5) -> [return: bb2, unwind: bb4]; // scope 0 at $DIR/issue-78442.rs:11:5: 11:17
- // mir::Constant
- // + span: $DIR/issue-78442.rs:11:5: 11:15
2022-02-16 09:56:01 +00:00
- // + literal: Const { ty: for<'r> extern "rust-call" fn(&'r fn() {foo}, ()) -> <fn() {foo} as FnOnce<()>>::Output {<fn() {foo} as Fn<()>>::call}, val: Value(Scalar(<ZST>)) }
2022-03-08 14:05:50 +00:00
+ _2 = move (*_3)() -> [return: bb5, unwind: bb3]; // scope 1 at $SRC_DIR/core/src/ops/function.rs:LL:COL
}
bb2: {
- StorageDead(_5); // scope 0 at $DIR/issue-78442.rs:11:16: 11:17
- StorageDead(_3); // scope 0 at $DIR/issue-78442.rs:11:16: 11:17
- StorageDead(_4); // scope 0 at $DIR/issue-78442.rs:11:17: 11:18
- StorageDead(_2); // scope 0 at $DIR/issue-78442.rs:11:17: 11:18
- _0 = const (); // scope 0 at $DIR/issue-78442.rs:10:3: 12:2
- drop(_1) -> [return: bb3, unwind: bb5]; // scope 0 at $DIR/issue-78442.rs:12:1: 12:2
+ return; // scope 0 at $DIR/issue-78442.rs:12:2: 12:2
}
- bb3: {
- return; // scope 0 at $DIR/issue-78442.rs:12:2: 12:2
+ bb3 (cleanup): {
+ drop(_1) -> bb4; // scope 0 at $DIR/issue-78442.rs:12:1: 12:2
}
bb4 (cleanup): {
- drop(_1) -> bb5; // scope 0 at $DIR/issue-78442.rs:12:1: 12:2
+ resume; // scope 0 at $DIR/issue-78442.rs:7:1: 12:2
}
- bb5 (cleanup): {
- resume; // scope 0 at $DIR/issue-78442.rs:7:1: 12:2
+ bb5: {
+ StorageDead(_5); // scope 0 at $DIR/issue-78442.rs:11:16: 11:17
+ StorageDead(_3); // scope 0 at $DIR/issue-78442.rs:11:16: 11:17
+ StorageDead(_4); // scope 0 at $DIR/issue-78442.rs:11:17: 11:18
+ StorageDead(_2); // scope 0 at $DIR/issue-78442.rs:11:17: 11:18
+ _0 = const (); // scope 0 at $DIR/issue-78442.rs:10:3: 12:2
+ drop(_1) -> [return: bb2, unwind: bb4]; // scope 0 at $DIR/issue-78442.rs:12:1: 12:2
}
}