about summary refs log tree commit diff
path: root/tests/mir-opt/pre-codegen/slice_iter.enumerated_loop.PreCodegen.after.panic-unwind.mir
blob: 8491c49f767376a7a7e6aa49bffbc363909b8f68 (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
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
162
163
164
// MIR for `enumerated_loop` after PreCodegen

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

    bb0: {
        StorageLive(_12);
        StorageLive(_3);
        StorageLive(_6);
        StorageLive(_4);
        StorageLive(_5);
        _3 = Len((*_1));
        _4 = &raw const (*_1);
        _5 = _4 as *const T (PtrToPtr);
        _6 = NonNull::<T> { pointer: _5 };
        StorageLive(_10);
        StorageLive(_7);
        _7 = const <T as std::mem::SizedTypeProperties>::IS_ZST;
        switchInt(move _7) -> [0: bb1, otherwise: bb2];
    }

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

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

    bb3: {
        StorageDead(_7);
        StorageLive(_11);
        _11 = _10;
        _12 = std::slice::Iter::<'_, T> { ptr: _6, end_or_len: move _11, _marker: const ZeroSized: PhantomData<&T> };
        StorageDead(_11);
        StorageDead(_10);
        StorageDead(_5);
        StorageDead(_4);
        StorageDead(_6);
        StorageDead(_3);
        _13 = Enumerate::<std::slice::Iter<'_, T>> { iter: _12, count: const 0_usize };
        StorageDead(_12);
        StorageLive(_14);
        _14 = _13;
        goto -> bb4;
    }

    bb4: {
        StorageLive(_16);
        StorageLive(_15);
        _15 = &mut _14;
        _16 = <Enumerate<std::slice::Iter<'_, T>> as Iterator>::next(move _15) -> [return: bb5, unwind: bb11];
    }

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

    bb6: {
        StorageDead(_16);
        StorageDead(_14);
        drop(_2) -> [return: bb7, unwind continue];
    }

    bb7: {
        return;
    }

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

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

    bb10: {
        unreachable;
    }

    bb11 (cleanup): {
        drop(_2) -> [return: bb12, unwind terminate(cleanup)];
    }

    bb12 (cleanup): {
        resume;
    }
}