about summary refs log tree commit diff
path: root/tests/mir-opt/pre-codegen/range_iter.forward_loop.PreCodegen.after.panic-unwind.mir
blob: 3b09f33e73338d23e4a603f7b2b201e20dbea828 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
// MIR for `forward_loop` after PreCodegen

fn forward_loop(_1: u32, _2: u32, _3: impl Fn(u32)) -> () {
    debug start => _1;
    debug end => _2;
    debug f => _3;
    let mut _0: ();
    let mut _7: std::option::Option<u32>;
    let mut _9: &impl Fn(u32);
    let mut _10: (u32,);
    let _11: ();
    scope 1 {
        debug ((iter: std::ops::Range<u32>).0: u32) => _1;
        debug ((iter: std::ops::Range<u32>).1: u32) => _2;
        let _8: u32;
        scope 2 {
            debug x => _8;
        }
        scope 4 (inlined iter::range::<impl Iterator for std::ops::Range<u32>>::next) {
            scope 5 (inlined <std::ops::Range<u32> as iter::range::RangeIteratorImpl>::spec_next) {
                let mut _5: bool;
                let _6: u32;
                scope 6 {
                    scope 8 (inlined <u32 as Step>::forward_unchecked) {
                        scope 9 (inlined #[track_caller] core::num::<impl u32>::unchecked_add) {
                            scope 10 (inlined core::ub_checks::check_language_ub) {
                                scope 11 (inlined core::ub_checks::check_language_ub::runtime) {
                                }
                            }
                        }
                    }
                }
                scope 7 (inlined std::cmp::impls::<impl PartialOrd for u32>::lt) {
                    let mut _4: u32;
                }
            }
        }
    }
    scope 3 (inlined <std::ops::Range<u32> as IntoIterator>::into_iter) {
    }

    bb0: {
        goto -> bb1;
    }

    bb1: {
        StorageLive(_7);
        StorageLive(_5);
        StorageLive(_4);
        _4 = copy _1;
        _5 = Lt(move _4, copy _2);
        StorageDead(_4);
        switchInt(move _5) -> [0: bb2, otherwise: bb4];
    }

    bb2: {
        StorageDead(_5);
        StorageDead(_7);
        drop(_3) -> [return: bb3, unwind continue];
    }

    bb3: {
        return;
    }

    bb4: {
        _6 = copy _1;
        _1 = AddUnchecked(copy _6, const 1_u32);
        _7 = Option::<u32>::Some(copy _6);
        StorageDead(_5);
        _8 = copy ((_7 as Some).0: u32);
        StorageLive(_9);
        _9 = &_3;
        StorageLive(_10);
        _10 = (copy _8,);
        _11 = <impl Fn(u32) as Fn<(u32,)>>::call(move _9, move _10) -> [return: bb5, unwind: bb6];
    }

    bb5: {
        StorageDead(_10);
        StorageDead(_9);
        StorageDead(_7);
        goto -> bb1;
    }

    bb6 (cleanup): {
        drop(_3) -> [return: bb7, unwind terminate(cleanup)];
    }

    bb7 (cleanup): {
        resume;
    }
}