File: range_iter.forward_loop.PreCodegen.after.panic-unwind.mir

package info (click to toggle)
rustc 1.85.0%2Bdfsg3-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental, sid, trixie
  • size: 893,396 kB
  • sloc: xml: 158,127; python: 35,830; javascript: 19,497; cpp: 19,002; sh: 17,245; ansic: 13,127; asm: 4,376; makefile: 1,051; perl: 29; lisp: 29; ruby: 19; sql: 11
file content (99 lines) | stat: -rw-r--r-- 2,472 bytes parent folder | download | duplicates (3)
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
94
95
96
97
98
99
// 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 _4: u32;
    let mut _9: std::option::Option<u32>;
    let mut _11: &impl Fn(u32);
    let mut _12: (u32,);
    let _13: ();
    scope 1 {
        debug ((iter: std::ops::Range<u32>).0: u32) => _4;
        debug ((iter: std::ops::Range<u32>).1: u32) => _2;
        let _10: u32;
        scope 2 {
            debug x => _10;
        }
        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 _6: bool;
                let _7: u32;
                let mut _8: u32;
                scope 6 {
                }
                scope 7 (inlined std::cmp::impls::<impl PartialOrd for u32>::lt) {
                    let mut _5: u32;
                }
            }
        }
    }
    scope 3 (inlined <std::ops::Range<u32> as IntoIterator>::into_iter) {
    }

    bb0: {
        StorageLive(_4);
        _4 = copy _1;
        goto -> bb1;
    }

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

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

    bb3: {
        return;
    }

    bb4: {
        _7 = copy _4;
        StorageLive(_8);
        _8 = <u32 as Step>::forward_unchecked(copy _7, const 1_usize) -> [return: bb5, unwind: bb7];
    }

    bb5: {
        _4 = move _8;
        StorageDead(_8);
        _9 = Option::<u32>::Some(copy _7);
        StorageDead(_6);
        StorageDead(_7);
        _10 = copy ((_9 as Some).0: u32);
        StorageLive(_11);
        _11 = &_3;
        StorageLive(_12);
        _12 = (copy _10,);
        _13 = <impl Fn(u32) as Fn<(u32,)>>::call(move _11, move _12) -> [return: bb6, unwind: bb7];
    }

    bb6: {
        StorageDead(_12);
        StorageDead(_11);
        StorageDead(_9);
        goto -> bb1;
    }

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

    bb8 (cleanup): {
        resume;
    }
}