about summary refs log tree commit diff
path: root/tests/mir-opt/pre-codegen/slice_iter.slice_iter_generic_is_empty.PreCodegen.after.panic-abort.mir
blob: 9b510380b10b284b5ca850f6f635dd541334c213 (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
// MIR for `slice_iter_generic_is_empty` after PreCodegen

fn slice_iter_generic_is_empty(_1: &std::slice::Iter<'_, T>) -> bool {
    debug it => _1;
    let mut _0: bool;
    scope 1 (inlined <std::slice::Iter<'_, T> as ExactSizeIterator>::is_empty) {
        let mut _2: *const T;
        let mut _7: *const T;
        scope 2 {
            let _3: std::ptr::NonNull<T>;
            let _8: usize;
            scope 3 {
            }
            scope 4 {
                scope 7 (inlined <NonNull<T> as PartialEq>::eq) {
                    let mut _4: std::ptr::NonNull<T>;
                    let mut _5: *mut T;
                    let mut _6: *mut T;
                    scope 8 (inlined NonNull::<T>::as_ptr) {
                    }
                    scope 9 (inlined NonNull::<T>::as_ptr) {
                    }
                }
            }
            scope 5 (inlined std::ptr::const_ptr::<impl *const T>::addr) {
                scope 6 (inlined std::ptr::const_ptr::<impl *const T>::cast::<()>) {
                }
            }
        }
    }

    bb0: {
        StorageLive(_8);
        StorageLive(_7);
        StorageLive(_3);
        switchInt(const <T as std::mem::SizedTypeProperties>::IS_ZST) -> [0: bb1, otherwise: bb2];
    }

    bb1: {
        StorageLive(_2);
        _2 = copy ((*_1).1: *const T);
        _3 = copy _2 as std::ptr::NonNull<T> (Transmute);
        StorageDead(_2);
        StorageLive(_5);
        StorageLive(_4);
        _4 = copy ((*_1).0: std::ptr::NonNull<T>);
        _5 = copy _4 as *mut T (Transmute);
        StorageDead(_4);
        StorageLive(_6);
        _6 = copy _3 as *mut T (Transmute);
        _0 = Eq(copy _5, copy _6);
        StorageDead(_6);
        StorageDead(_5);
        goto -> bb3;
    }

    bb2: {
        _7 = copy ((*_1).1: *const T);
        _8 = copy _7 as usize (Transmute);
        _0 = Eq(copy _8, const 0_usize);
        goto -> bb3;
    }

    bb3: {
        StorageDead(_3);
        StorageDead(_7);
        StorageDead(_8);
        return;
    }
}