rust/tests/mir-opt/pre-codegen/loops.mapped.PreCodegen.after.mir

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

83 lines
1.9 KiB
Rust
Raw Normal View History

2023-05-16 07:24:38 -05:00
// MIR for `mapped` after PreCodegen
fn mapped(_1: impl Iterator<Item = T>, _2: impl Fn(T) -> U) -> () {
2023-06-06 08:47:00 -05:00
debug iter => _1;
debug f => _2;
let mut _0: ();
let mut _3: std::iter::Map<impl Iterator<Item = T>, impl Fn(T) -> U>;
let mut _4: std::iter::Map<impl Iterator<Item = T>, impl Fn(T) -> U>;
let mut _5: std::iter::Map<impl Iterator<Item = T>, impl Fn(T) -> U>;
let mut _6: &mut std::iter::Map<impl Iterator<Item = T>, impl Fn(T) -> U>;
let mut _7: std::option::Option<U>;
let mut _8: isize;
let _10: ();
2023-05-16 07:24:38 -05:00
scope 1 {
2023-06-06 08:47:00 -05:00
debug iter => _5;
let _9: U;
2023-05-16 07:24:38 -05:00
scope 2 {
2023-06-06 08:47:00 -05:00
debug x => _9;
2023-05-16 07:24:38 -05:00
}
}
2023-06-06 08:47:00 -05:00
scope 3 (inlined <Map<impl Iterator<Item = T>, impl Fn(T) -> U> as IntoIterator>::into_iter) {
debug self => _3;
2023-05-16 07:24:38 -05:00
}
bb0: {
2023-06-06 08:47:00 -05:00
StorageLive(_4);
StorageLive(_3);
2023-06-23 11:53:09 -05:00
_3 = <impl Iterator<Item = T> as Iterator>::map::<U, impl Fn(T) -> U>(move _1, move _2) -> [return: bb1, unwind continue];
2023-05-16 07:24:38 -05:00
}
bb1: {
2023-06-06 08:47:00 -05:00
_4 = move _3;
StorageDead(_3);
StorageLive(_5);
_5 = move _4;
goto -> bb2;
2023-05-16 07:24:38 -05:00
}
bb2: {
2023-06-06 08:47:00 -05:00
StorageLive(_7);
_6 = &mut _5;
_7 = <Map<impl Iterator<Item = T>, impl Fn(T) -> U> as Iterator>::next(_6) -> [return: bb3, unwind: bb9];
2023-05-16 07:24:38 -05:00
}
bb3: {
2023-06-06 08:47:00 -05:00
_8 = discriminant(_7);
switchInt(move _8) -> [0: bb4, 1: bb6, otherwise: bb8];
2023-05-16 07:24:38 -05:00
}
bb4: {
2023-06-06 08:47:00 -05:00
StorageDead(_7);
2023-06-23 11:53:09 -05:00
drop(_5) -> [return: bb5, unwind continue];
2023-05-16 07:24:38 -05:00
}
bb5: {
2023-06-06 08:47:00 -05:00
StorageDead(_5);
StorageDead(_4);
return;
2023-05-16 07:24:38 -05:00
}
bb6: {
2023-06-06 08:47:00 -05:00
_9 = move ((_7 as Some).0: U);
_10 = opaque::<U>(move _9) -> [return: bb7, unwind: bb9];
2023-05-16 07:24:38 -05:00
}
bb7: {
2023-06-06 08:47:00 -05:00
StorageDead(_7);
goto -> bb2;
2023-05-16 07:24:38 -05:00
}
bb8: {
2023-06-06 08:47:00 -05:00
unreachable;
2023-05-16 07:24:38 -05:00
}
bb9 (cleanup): {
2023-06-06 08:47:00 -05:00
drop(_5) -> [return: bb10, unwind terminate];
2023-05-16 07:24:38 -05:00
}
bb10 (cleanup): {
2023-06-06 08:47:00 -05:00
resume;
2023-05-16 07:24:38 -05:00
}
}