]> git.lizzy.rs Git - rust.git/blob - src/test/mir-opt/end_region_8.rs
Rollup merge of #51658 - oli-obk:unregress_perf, r=nikomatsakis
[rust.git] / src / test / mir-opt / end_region_8.rs
1 // Copyright 2017 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // compile-flags: -Z identify_regions -Z span_free_formats -Z emit-end-regions
12 // ignore-tidy-linelength
13
14 // Unwinding should EndRegion for in-scope borrows: Move of borrow into closure.
15
16 fn main() {
17     let d = D(0);
18     let r = &d;
19     foo(move || -> i32 { r.0 });
20 }
21
22 struct D(i32);
23 impl Drop for D { fn drop(&mut self) { println!("dropping D({})", self.0); } }
24
25 fn foo<F>(f: F) where F: FnOnce() -> i32 {
26     if f() > 0 { panic!("im positive"); }
27 }
28
29 // END RUST SOURCE
30 // START rustc.main.SimplifyCfg-qualify-consts.after.mir
31 // fn main() -> () {
32 //    let mut _0: ();
33 //    ...
34 //    let _2: &'21_1rs D;
35 //    ...
36 //    let _1: D;
37 //    ...
38 //    let mut _3: ();
39 //    let mut _4: [closure@NodeId(22) r:&'19s D];
40 //    let mut _5: &'21_1rs D;
41 //    bb0: {
42 //        StorageLive(_1);
43 //        _1 = D::{{constructor}}(const 0i32,);
44 //        StorageLive(_2);
45 //        _2 = &'21_1rs _1;
46 //        StorageLive(_4);
47 //        StorageLive(_5);
48 //        _5 = _2;
49 //        _4 = [closure@NodeId(22)] { r: move _5 };
50 //        StorageDead(_5);
51 //        _3 = const foo(move _4) -> [return: bb2, unwind: bb3];
52 //    }
53 //    bb1: {
54 //        resume;
55 //    }
56 //    bb2: {
57 //        EndRegion('19s);
58 //        StorageDead(_4);
59 //        _0 = ();
60 //        EndRegion('21_1rs);
61 //        StorageDead(_2);
62 //        drop(_1) -> [return: bb4, unwind: bb1];
63 //    }
64 //    bb3: {
65 //        EndRegion('19s);
66 //        EndRegion('21_1rs);
67 //        drop(_1) -> bb1;
68 //    }
69 //    bb4: {
70 //        StorageDead(_1);
71 //        return;
72 //    }
73 // }
74 // END rustc.main.SimplifyCfg-qualify-consts.after.mir
75
76 // START rustc.main-{{closure}}.SimplifyCfg-qualify-consts.after.mir
77 // fn main::{{closure}}(_1: [closure@NodeId(22) r:&'19s D]) -> i32 {
78 //     let mut _0: i32;
79 //     let mut _2: i32;
80 //
81 //     bb0: {
82 //         StorageLive(_2);
83 //         _2 = ((*(_1.0: &'21_1rs D)).0: i32);
84 //         _0 = move _2;
85 //         StorageDead(_2);
86 //         return;
87 //     }
88 // }
89 // END rustc.main-{{closure}}.SimplifyCfg-qualify-consts.after.mir