]> git.proxmox.com Git - rustc.git/blame - compiler/rustc_passes/src/check_const.rs
New upstream version 1.56.0~beta.4+dfsg1
[rustc.git] / compiler / rustc_passes / src / check_const.rs
CommitLineData
60c5eb7d
XL
1//! This pass checks HIR bodies that may be evaluated at compile-time (e.g., `const`, `static`,
2//! `const fn`) for structured control flow (e.g. `if`, `while`), which is forbidden in a const
3//! context.
4//!
5//! By the time the MIR const-checker runs, these high-level constructs have been lowered to
6//! control-flow primitives (e.g., `Goto`, `SwitchInt`), making it tough to properly attribute
7//! errors. We still look for those primitives in the MIR const-checker to ensure nothing slips
8//! through, but errors for structured control flow in a `const` should be emitted here.
9
f035d41b 10use rustc_attr as attr;
136023e0 11use rustc_data_structures::stable_set::FxHashSet;
dfeec247
XL
12use rustc_errors::struct_span_err;
13use rustc_hir as hir;
f035d41b 14use rustc_hir::def_id::LocalDefId;
dfeec247 15use rustc_hir::intravisit::{self, NestedVisitorMap, Visitor};
ba9703b0 16use rustc_middle::hir::map::Map;
136023e0 17use rustc_middle::ty;
ba9703b0
XL
18use rustc_middle::ty::query::Providers;
19use rustc_middle::ty::TyCtxt;
ba9703b0 20use rustc_session::parse::feature_err;
dfeec247 21use rustc_span::{sym, Span, Symbol};
60c5eb7d 22
60c5eb7d
XL
23/// An expression that is not *always* legal in a const context.
24#[derive(Clone, Copy)]
25enum NonConstExpr {
26 Loop(hir::LoopSource),
27 Match(hir::MatchSource),
28}
29
30impl NonConstExpr {
dfeec247 31 fn name(self) -> String {
60c5eb7d 32 match self {
dfeec247
XL
33 Self::Loop(src) => format!("`{}`", src.name()),
34 Self::Match(src) => format!("`{}`", src.name()),
60c5eb7d
XL
35 }
36 }
37
38 fn required_feature_gates(self) -> Option<&'static [Symbol]> {
60c5eb7d 39 use hir::LoopSource::*;
dfeec247 40 use hir::MatchSource::*;
60c5eb7d
XL
41
42 let gates: &[_] = match self {
94222f64 43 Self::Match(AwaitDesugar) => {
f035d41b 44 return None;
ba9703b0 45 }
60c5eb7d 46
94222f64
XL
47 Self::Loop(ForLoop) | Self::Match(ForLoopDesugar) => &[sym::const_for],
48
49 Self::Match(TryDesugar) => &[sym::const_try],
fc512014 50
f035d41b 51 // All other expressions are allowed.
94222f64 52 Self::Loop(Loop | While) | Self::Match(Normal) => &[],
60c5eb7d
XL
53 };
54
55 Some(gates)
56 }
57}
58
f035d41b 59fn check_mod_const_bodies(tcx: TyCtxt<'_>, module_def_id: LocalDefId) {
60c5eb7d
XL
60 let mut vis = CheckConstVisitor::new(tcx);
61 tcx.hir().visit_item_likes_in_module(module_def_id, &mut vis.as_deep_visitor());
136023e0 62 tcx.hir().visit_item_likes_in_module(module_def_id, &mut CheckConstTraitVisitor::new(tcx));
60c5eb7d
XL
63}
64
f035d41b 65pub(crate) fn provide(providers: &mut Providers) {
dfeec247 66 *providers = Providers { check_mod_const_bodies, ..*providers };
60c5eb7d
XL
67}
68
136023e0
XL
69struct CheckConstTraitVisitor<'tcx> {
70 tcx: TyCtxt<'tcx>,
71}
72
73impl<'tcx> CheckConstTraitVisitor<'tcx> {
74 fn new(tcx: TyCtxt<'tcx>) -> Self {
75 CheckConstTraitVisitor { tcx }
76 }
77}
78
79impl<'tcx> hir::itemlikevisit::ItemLikeVisitor<'tcx> for CheckConstTraitVisitor<'tcx> {
80 /// check for const trait impls, and errors if the impl uses provided/default functions
81 /// of the trait being implemented; as those provided functions can be non-const.
82 fn visit_item(&mut self, item: &'hir hir::Item<'hir>) {
83 let _: Option<_> = try {
84 if let hir::ItemKind::Impl(ref imp) = item.kind {
85 if let hir::Constness::Const = imp.constness {
86 let did = imp.of_trait.as_ref()?.trait_def_id()?;
87 let mut to_implement = FxHashSet::default();
88
89 for did in self.tcx.associated_item_def_ids(did) {
90 if let ty::AssocItem {
91 kind: ty::AssocKind::Fn, ident, defaultness, ..
92 } = self.tcx.associated_item(*did)
93 {
94 // we can ignore functions that do not have default bodies:
95 // if those are unimplemented it will be catched by typeck.
96 if defaultness.has_value()
97 && !self.tcx.has_attr(*did, sym::default_method_body_is_const)
98 {
99 to_implement.insert(ident);
100 }
101 }
102 }
103
104 for it in imp
105 .items
106 .iter()
107 .filter(|it| matches!(it.kind, hir::AssocItemKind::Fn { .. }))
108 {
109 to_implement.remove(&it.ident);
110 }
111
112 // all nonconst trait functions (not marked with #[default_method_body_is_const])
113 // must be implemented
114 if !to_implement.is_empty() {
115 self.tcx
116 .sess
117 .struct_span_err(
118 item.span,
119 "const trait implementations may not use non-const default functions",
120 )
121 .note(&format!("`{}` not implemented", to_implement.into_iter().map(|id| id.to_string()).collect::<Vec<_>>().join("`, `")))
122 .emit();
123 }
124 }
125 }
126 };
127 }
128
129 fn visit_trait_item(&mut self, _: &'hir hir::TraitItem<'hir>) {}
130
131 fn visit_impl_item(&mut self, _: &'hir hir::ImplItem<'hir>) {}
132
133 fn visit_foreign_item(&mut self, _: &'hir hir::ForeignItem<'hir>) {}
134}
135
60c5eb7d
XL
136#[derive(Copy, Clone)]
137struct CheckConstVisitor<'tcx> {
138 tcx: TyCtxt<'tcx>,
f9f354fc 139 const_kind: Option<hir::ConstContext>,
f035d41b 140 def_id: Option<LocalDefId>,
60c5eb7d
XL
141}
142
143impl<'tcx> CheckConstVisitor<'tcx> {
144 fn new(tcx: TyCtxt<'tcx>) -> Self {
f035d41b 145 CheckConstVisitor { tcx, const_kind: None, def_id: None }
60c5eb7d
XL
146 }
147
148 /// Emits an error when an unsupported expression is found in a const context.
149 fn const_check_violated(&self, expr: NonConstExpr, span: Span) {
f035d41b
XL
150 let Self { tcx, def_id, const_kind } = *self;
151
152 let features = tcx.features();
60c5eb7d 153 let required_gates = expr.required_feature_gates();
f035d41b
XL
154
155 let is_feature_allowed = |feature_gate| {
156 // All features require that the corresponding gate be enabled,
29967ef6 157 // even if the function has `#[rustc_allow_const_fn_unstable(the_gate)]`.
f035d41b
XL
158 if !tcx.features().enabled(feature_gate) {
159 return false;
160 }
161
162 // If `def_id` is `None`, we don't need to consider stability attributes.
163 let def_id = match def_id {
164 Some(x) => x.to_def_id(),
165 None => return true,
166 };
167
168 // If this crate is not using stability attributes, or this function is not claiming to be a
169 // stable `const fn`, that is all that is required.
170 if !tcx.features().staged_api || tcx.has_attr(def_id, sym::rustc_const_unstable) {
171 return true;
172 }
173
174 // However, we cannot allow stable `const fn`s to use unstable features without an explicit
29967ef6
XL
175 // opt-in via `rustc_allow_const_fn_unstable`.
176 attr::rustc_allow_const_fn_unstable(&tcx.sess, &tcx.get_attrs(def_id))
6a06907d 177 .any(|name| name == feature_gate)
f035d41b
XL
178 };
179
60c5eb7d
XL
180 match required_gates {
181 // Don't emit an error if the user has enabled the requisite feature gates.
f035d41b 182 Some(gates) if gates.iter().copied().all(is_feature_allowed) => return,
60c5eb7d
XL
183
184 // `-Zunleash-the-miri-inside-of-you` only works for expressions that don't have a
185 // corresponding feature gate. This encourages nightly users to use feature gates when
186 // possible.
f035d41b
XL
187 None if tcx.sess.opts.debugging_opts.unleash_the_miri_inside_of_you => {
188 tcx.sess.span_warn(span, "skipping const checks");
60c5eb7d
XL
189 return;
190 }
191
192 _ => {}
193 }
194
f035d41b
XL
195 let const_kind =
196 const_kind.expect("`const_check_violated` may only be called inside a const context");
f9f354fc
XL
197
198 let msg = format!("{} is not allowed in a `{}`", expr.name(), const_kind.keyword_name());
60c5eb7d
XL
199
200 let required_gates = required_gates.unwrap_or(&[]);
dfeec247
XL
201 let missing_gates: Vec<_> =
202 required_gates.iter().copied().filter(|&g| !features.enabled(g)).collect();
60c5eb7d
XL
203
204 match missing_gates.as_slice() {
f035d41b 205 &[] => struct_span_err!(tcx.sess, span, E0744, "{}", msg).emit(),
60c5eb7d
XL
206
207 &[missing_primary, ref missing_secondary @ ..] => {
f035d41b 208 let mut err = feature_err(&tcx.sess.parse_sess, missing_primary, span, &msg);
60c5eb7d
XL
209
210 // If multiple feature gates would be required to enable this expression, include
211 // them as help messages. Don't emit a separate error for each missing feature gate.
212 //
213 // FIXME(ecstaticmorse): Maybe this could be incorporated into `feature_err`? This
214 // is a pretty narrow case, however.
fc512014 215 if tcx.sess.is_nightly_build() {
60c5eb7d
XL
216 for gate in missing_secondary {
217 let note = format!(
218 "add `#![feature({})]` to the crate attributes to enable",
219 gate,
220 );
221 err.help(&note);
222 }
223 }
224
225 err.emit();
226 }
227 }
228 }
229
230 /// Saves the parent `const_kind` before calling `f` and restores it afterwards.
f035d41b
XL
231 fn recurse_into(
232 &mut self,
233 kind: Option<hir::ConstContext>,
234 def_id: Option<LocalDefId>,
235 f: impl FnOnce(&mut Self),
236 ) {
237 let parent_def_id = self.def_id;
60c5eb7d 238 let parent_kind = self.const_kind;
f035d41b 239 self.def_id = def_id;
60c5eb7d
XL
240 self.const_kind = kind;
241 f(self);
f035d41b 242 self.def_id = parent_def_id;
60c5eb7d
XL
243 self.const_kind = parent_kind;
244 }
245}
246
247impl<'tcx> Visitor<'tcx> for CheckConstVisitor<'tcx> {
dfeec247
XL
248 type Map = Map<'tcx>;
249
ba9703b0
XL
250 fn nested_visit_map(&mut self) -> intravisit::NestedVisitorMap<Self::Map> {
251 NestedVisitorMap::OnlyBodies(self.tcx.hir())
60c5eb7d
XL
252 }
253
254 fn visit_anon_const(&mut self, anon: &'tcx hir::AnonConst) {
f9f354fc 255 let kind = Some(hir::ConstContext::Const);
f035d41b 256 self.recurse_into(kind, None, |this| intravisit::walk_anon_const(this, anon));
60c5eb7d
XL
257 }
258
dfeec247 259 fn visit_body(&mut self, body: &'tcx hir::Body<'tcx>) {
f9f354fc
XL
260 let owner = self.tcx.hir().body_owner_def_id(body.id());
261 let kind = self.tcx.hir().body_const_context(owner);
f035d41b 262 self.recurse_into(kind, Some(owner), |this| intravisit::walk_body(this, body));
60c5eb7d
XL
263 }
264
dfeec247 265 fn visit_expr(&mut self, e: &'tcx hir::Expr<'tcx>) {
60c5eb7d
XL
266 match &e.kind {
267 // Skip the following checks if we are not currently in a const context.
268 _ if self.const_kind.is_none() => {}
269
5869c6ff 270 hir::ExprKind::Loop(_, _, source, _) => {
60c5eb7d
XL
271 self.const_check_violated(NonConstExpr::Loop(*source), e.span);
272 }
273
274 hir::ExprKind::Match(_, _, source) => {
275 let non_const_expr = match source {
276 // These are handled by `ExprKind::Loop` above.
94222f64 277 hir::MatchSource::ForLoopDesugar => None,
60c5eb7d
XL
278
279 _ => Some(NonConstExpr::Match(*source)),
280 };
281
282 if let Some(expr) = non_const_expr {
283 self.const_check_violated(expr, e.span);
284 }
285 }
286
dfeec247 287 _ => {}
60c5eb7d
XL
288 }
289
dfeec247 290 intravisit::walk_expr(self, e);
60c5eb7d
XL
291 }
292}