]> git.lizzy.rs Git - rust.git/blob - src/test/codegen/drop.rs
2ac8de6d802947e3fc43c899b0c6513699c45702
[rust.git] / src / test / codegen / drop.rs
1 // Copyright 2016 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: -C no-prepopulate-passes
12
13 #![crate_type = "lib"]
14
15 struct SomeUniqueName;
16
17 impl Drop for SomeUniqueName {
18     fn drop(&mut self) {
19     }
20 }
21
22 pub fn possibly_unwinding() {
23 }
24
25 // CHECK-LABEL: @droppy
26 #[no_mangle]
27 pub fn droppy() {
28 // Check that there are exactly 6 drop calls. The cleanups for the unwinding should be reused, so
29 // that's one new drop call per call to possibly_unwinding(), and finally 3 drop calls for the
30 // regular function exit. We used to have problems with quadratic growths of drop calls in such
31 // functions.
32 // CHECK: call{{.*}}SomeUniqueName{{.*}}drop
33 // CHECK: call{{.*}}SomeUniqueName{{.*}}drop
34 // CHECK: call{{.*}}SomeUniqueName{{.*}}drop
35 // CHECK: call{{.*}}SomeUniqueName{{.*}}drop
36 // CHECK: call{{.*}}SomeUniqueName{{.*}}drop
37 // CHECK: call{{.*}}SomeUniqueName{{.*}}drop
38 // CHECK-NOT: call{{.*}}SomeUniqueName{{.*}}drop
39 // The next line checks for the } that ends the function definition
40 // CHECK-LABEL: {{^[}]}}
41     let _s = SomeUniqueName;
42     possibly_unwinding();
43     let _s = SomeUniqueName;
44     possibly_unwinding();
45     let _s = SomeUniqueName;
46     possibly_unwinding();
47 }