]> git.lizzy.rs Git - rust.git/blob - src/test/incremental/change_add_field/struct_point.rs
Unignore u128 test for stage 0,1
[rust.git] / src / test / incremental / change_add_field / struct_point.rs
1 // Copyright 2014 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 // Test where we change a type definition by adding a field.  Fns with
12 // this type in their signature are recompiled, as are their callers.
13 // Fns with that type used only in their body are also recompiled, but
14 // their callers are not.
15
16 // revisions:rpass1 rpass2
17 // compile-flags: -Z query-dep-graph
18
19 #![feature(rustc_attrs)]
20 #![feature(stmt_expr_attributes)]
21 #![feature(static_in_const)]
22 #![allow(dead_code)]
23
24 // These are expected to require translation.
25 #![rustc_partition_translated(module="struct_point-point", cfg="rpass2")]
26 #![rustc_partition_translated(module="struct_point-fn_with_type_in_sig", cfg="rpass2")]
27 #![rustc_partition_translated(module="struct_point-call_fn_with_type_in_sig", cfg="rpass2")]
28 #![rustc_partition_translated(module="struct_point-fn_with_type_in_body", cfg="rpass2")]
29 #![rustc_partition_translated(module="struct_point-fn_make_struct", cfg="rpass2")]
30 #![rustc_partition_translated(module="struct_point-fn_read_field", cfg="rpass2")]
31 #![rustc_partition_translated(module="struct_point-fn_write_field", cfg="rpass2")]
32
33 #![rustc_partition_reused(module="struct_point-call_fn_with_type_in_body", cfg="rpass2")]
34
35 mod point {
36     #[cfg(rpass1)]
37     pub struct Point {
38         pub x: f32,
39         pub y: f32,
40     }
41
42     #[cfg(rpass2)]
43     pub struct Point {
44         pub x: f32,
45         pub y: f32,
46         pub z: f32,
47     }
48
49     impl Point {
50         pub fn origin() -> Point {
51             #[cfg(rpass1)]
52             return Point { x: 0.0, y: 0.0 };
53
54             #[cfg(rpass2)]
55             return Point { x: 0.0, y: 0.0, z: 0.0 };
56         }
57
58         pub fn total(&self) -> f32 {
59             #[cfg(rpass1)]
60             return self.x + self.y;
61
62             #[cfg(rpass2)]
63             return self.x + self.y + self.z;
64         }
65
66         pub fn x(&self) -> f32 {
67             self.x
68         }
69     }
70 }
71
72 /// A fn that has the changed type in its signature; must currently be
73 /// rebuilt.
74 ///
75 /// You could imagine that, in the future, if the change were
76 /// sufficiently "private", we might not need to type-check again.
77 /// Rebuilding is probably always necessary since the layout may be
78 /// affected.
79 mod fn_with_type_in_sig {
80     use point::Point;
81
82     #[rustc_dirty(label="TypeckTables", cfg="rpass2")]
83     pub fn boop(p: Option<&Point>) -> f32 {
84         p.map(|p| p.total()).unwrap_or(0.0)
85     }
86 }
87
88 /// Call a fn that has the changed type in its signature; this
89 /// currently must also be rebuilt.
90 ///
91 /// You could imagine that, in the future, if the change were
92 /// sufficiently "private", we might not need to type-check again.
93 /// Rebuilding is probably always necessary since the layout may be
94 /// affected.
95 mod call_fn_with_type_in_sig {
96     use fn_with_type_in_sig;
97
98     #[rustc_dirty(label="TypeckTables", cfg="rpass2")]
99     pub fn bip() -> f32 {
100         fn_with_type_in_sig::boop(None)
101     }
102 }
103
104 /// A fn that uses the changed type, but only in its body, not its
105 /// signature.
106 ///
107 /// You could imagine that, in the future, if the change were
108 /// sufficiently "private", we might not need to type-check again.
109 /// Rebuilding is probably always necessary since the layout may be
110 /// affected.
111 mod fn_with_type_in_body {
112     use point::Point;
113
114     #[rustc_dirty(label="TypeckTables", cfg="rpass2")]
115     pub fn boop() -> f32 {
116         Point::origin().total()
117     }
118 }
119
120 /// A fn X that calls a fn Y, where Y uses the changed type in its
121 /// body. In this case, the effects of the change should be contained
122 /// to Y; X should not have to be rebuilt, nor should it need to be
123 /// typechecked again.
124 mod call_fn_with_type_in_body {
125     use fn_with_type_in_body;
126
127     #[rustc_clean(label="TypeckTables", cfg="rpass2")]
128     pub fn bip() -> f32 {
129         fn_with_type_in_body::boop()
130     }
131 }
132
133 /// A fn item that makes an instance of `Point` but does not invoke methods
134 mod fn_make_struct {
135     use point::Point;
136
137     #[rustc_dirty(label="TypeckTables", cfg="rpass2")]
138     pub fn make_origin(p: Point) -> Point {
139         Point { ..p }
140     }
141 }
142
143 /// A fn item that reads fields from `Point` but does not invoke methods
144 mod fn_read_field {
145     use point::Point;
146
147     #[rustc_dirty(label="TypeckTables", cfg="rpass2")]
148     pub fn get_x(p: Point) -> f32 {
149         p.x
150     }
151 }
152
153 /// A fn item that writes to a field of `Point` but does not invoke methods
154 mod fn_write_field {
155     use point::Point;
156
157     #[rustc_dirty(label="TypeckTables", cfg="rpass2")]
158     pub fn inc_x(p: &mut Point) {
159         p.x += 1.0;
160     }
161 }
162
163 fn main() {
164 }