File: slice_iter.reverse_loop.PreCodegen.after.panic-abort.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 (161 lines) | stat: -rw-r--r-- 4,682 bytes parent folder | download | duplicates (2)
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
// MIR for `reverse_loop` after PreCodegen

fn reverse_loop(_1: &[T], _2: impl Fn(&T)) -> () {
    debug slice => _1;
    debug f => _2;
    let mut _0: ();
    let mut _13: std::slice::Iter<'_, T>;
    let mut _14: std::iter::Rev<std::slice::Iter<'_, T>>;
    let mut _15: std::iter::Rev<std::slice::Iter<'_, T>>;
    let mut _17: std::option::Option<&T>;
    let mut _18: isize;
    let mut _20: &impl Fn(&T);
    let mut _21: (&T,);
    let _22: ();
    scope 1 {
        debug iter => _15;
        let _19: &T;
        scope 2 {
            debug x => _19;
        }
        scope 18 (inlined <Rev<std::slice::Iter<'_, T>> as Iterator>::next) {
            let mut _16: &mut std::slice::Iter<'_, T>;
        }
    }
    scope 3 (inlined core::slice::<impl [T]>::iter) {
        scope 4 (inlined std::slice::Iter::<'_, T>::new) {
            let _3: usize;
            let mut _5: std::ptr::NonNull<[T]>;
            let mut _9: *mut T;
            let mut _10: *mut T;
            let mut _12: *const T;
            scope 5 {
                let _8: std::ptr::NonNull<T>;
                scope 6 {
                    let _11: *const T;
                    scope 7 {
                    }
                    scope 12 (inlined without_provenance::<T>) {
                    }
                    scope 13 (inlined NonNull::<T>::as_ptr) {
                    }
                    scope 14 (inlined std::ptr::mut_ptr::<impl *mut T>::add) {
                    }
                }
                scope 8 (inlined <NonNull<[T]> as From<&[T]>>::from) {
                    scope 9 (inlined NonNull::<[T]>::from_ref) {
                        let mut _4: *const [T];
                    }
                }
                scope 10 (inlined NonNull::<[T]>::cast::<T>) {
                    let mut _6: *mut [T];
                    let mut _7: *const T;
                    scope 11 (inlined NonNull::<[T]>::as_ptr) {
                    }
                }
            }
        }
    }
    scope 15 (inlined <std::slice::Iter<'_, T> as Iterator>::rev) {
        scope 16 (inlined Rev::<std::slice::Iter<'_, T>>::new) {
        }
    }
    scope 17 (inlined <Rev<std::slice::Iter<'_, T>> as IntoIterator>::into_iter) {
    }

    bb0: {
        StorageLive(_13);
        StorageLive(_3);
        StorageLive(_8);
        _3 = PtrMetadata(copy _1);
        StorageLive(_5);
        StorageLive(_4);
        _4 = &raw const (*_1);
        _5 = NonNull::<[T]> { pointer: move _4 };
        StorageDead(_4);
        StorageLive(_6);
        StorageLive(_7);
        _6 = copy _5 as *mut [T] (Transmute);
        _7 = copy _6 as *const T (PtrToPtr);
        _8 = NonNull::<T> { pointer: move _7 };
        StorageDead(_7);
        StorageDead(_6);
        StorageDead(_5);
        StorageLive(_11);
        switchInt(const <T as std::mem::SizedTypeProperties>::IS_ZST) -> [0: bb1, otherwise: bb2];
    }

    bb1: {
        StorageLive(_10);
        StorageLive(_9);
        _9 = copy _8 as *mut T (Transmute);
        _10 = Offset(copy _9, copy _3);
        StorageDead(_9);
        _11 = move _10 as *const T (PtrToPtr);
        StorageDead(_10);
        goto -> bb3;
    }

    bb2: {
        _11 = copy _3 as *const T (Transmute);
        goto -> bb3;
    }

    bb3: {
        StorageLive(_12);
        _12 = copy _11;
        _13 = std::slice::Iter::<'_, T> { ptr: copy _8, end_or_len: move _12, _marker: const ZeroSized: PhantomData<&T> };
        StorageDead(_12);
        StorageDead(_11);
        StorageDead(_8);
        StorageDead(_3);
        _14 = Rev::<std::slice::Iter<'_, T>> { iter: copy _13 };
        StorageDead(_13);
        StorageLive(_15);
        _15 = copy _14;
        goto -> bb4;
    }

    bb4: {
        StorageLive(_17);
        StorageLive(_16);
        _16 = &mut (_15.0: std::slice::Iter<'_, T>);
        _17 = <std::slice::Iter<'_, T> as DoubleEndedIterator>::next_back(move _16) -> [return: bb5, unwind unreachable];
    }

    bb5: {
        StorageDead(_16);
        _18 = discriminant(_17);
        switchInt(move _18) -> [0: bb6, 1: bb8, otherwise: bb10];
    }

    bb6: {
        StorageDead(_17);
        StorageDead(_15);
        drop(_2) -> [return: bb7, unwind unreachable];
    }

    bb7: {
        return;
    }

    bb8: {
        _19 = copy ((_17 as Some).0: &T);
        StorageLive(_20);
        _20 = &_2;
        StorageLive(_21);
        _21 = (copy _19,);
        _22 = <impl Fn(&T) as Fn<(&T,)>>::call(move _20, move _21) -> [return: bb9, unwind unreachable];
    }

    bb9: {
        StorageDead(_21);
        StorageDead(_20);
        StorageDead(_17);
        goto -> bb4;
    }

    bb10: {
        unreachable;
    }
}