1use crate::msrvs::{self, Msrv};
7use hir::LangItem;
8use rustc_const_eval::check_consts::ConstCx;
9use rustc_hir as hir;
10use rustc_hir::def_id::DefId;
11use rustc_hir::{RustcVersion, StableSince};
12use rustc_infer::infer::TyCtxtInferExt;
13use rustc_infer::traits::Obligation;
14use rustc_lint::LateContext;
15use rustc_middle::mir::{
16 Body, CastKind, NonDivergingIntrinsic, NullOp, Operand, Place, ProjectionElem, Rvalue, Statement, StatementKind,
17 Terminator, TerminatorKind,
18};
19use rustc_middle::traits::{BuiltinImplSource, ImplSource, ObligationCause};
20use rustc_middle::ty::adjustment::PointerCoercion;
21use rustc_middle::ty::{self, GenericArgKind, Instance, TraitRef, Ty, TyCtxt};
22use rustc_span::Span;
23use rustc_span::symbol::sym;
24use rustc_trait_selection::traits::{ObligationCtxt, SelectionContext};
25use std::borrow::Cow;
26
27type McfResult = Result<(), (Span, Cow<'static, str>)>;
28
29pub fn is_min_const_fn<'tcx>(cx: &LateContext<'tcx>, body: &Body<'tcx>, msrv: Msrv) -> McfResult {
30 let def_id = body.source.def_id();
31
32 for local in &body.local_decls {
33 check_ty(cx, local.ty, local.source_info.span, msrv)?;
34 }
35 if !msrv.meets(cx, msrvs::CONST_FN_TRAIT_BOUND)
36 && let Some(sized_did) = cx.tcx.lang_items().sized_trait()
37 && let Some(meta_sized_did) = cx.tcx.lang_items().meta_sized_trait()
38 && cx.tcx.param_env(def_id).caller_bounds().iter().any(|bound| {
39 bound.as_trait_clause().is_some_and(|clause| {
40 let did = clause.def_id();
41 did != sized_did && did != meta_sized_did
42 })
43 })
44 {
45 return Err((
46 body.span,
47 "non-`Sized` trait clause before `const_fn_trait_bound` is stabilized".into(),
48 ));
49 }
50 check_ty(
52 cx,
53 cx.tcx.fn_sig(def_id).instantiate_identity().output().skip_binder(),
54 body.local_decls.iter().next().unwrap().source_info.span,
55 msrv,
56 )?;
57
58 for bb in &*body.basic_blocks {
59 if !bb.is_cleanup {
62 check_terminator(cx, body, bb.terminator(), msrv)?;
63 for stmt in &bb.statements {
64 check_statement(cx, body, def_id, stmt, msrv)?;
65 }
66 }
67 }
68 Ok(())
69}
70
71fn check_ty<'tcx>(cx: &LateContext<'tcx>, ty: Ty<'tcx>, span: Span, msrv: Msrv) -> McfResult {
72 for arg in ty.walk() {
73 let ty = match arg.kind() {
74 GenericArgKind::Type(ty) => ty,
75
76 GenericArgKind::Lifetime(_) | GenericArgKind::Const(_) => continue,
79 };
80
81 match ty.kind() {
82 ty::Ref(_, _, hir::Mutability::Mut) if !msrv.meets(cx, msrvs::CONST_MUT_REFS) => {
83 return Err((span, "mutable references in const fn are unstable".into()));
84 },
85 ty::Alias(ty::Opaque, ..) => return Err((span, "`impl Trait` in const fn is unstable".into())),
86 ty::FnPtr(..) => {
87 return Err((span, "function pointers in const fn are unstable".into()));
88 },
89 ty::Dynamic(preds, _) => {
90 for pred in *preds {
91 match pred.skip_binder() {
92 ty::ExistentialPredicate::AutoTrait(_) | ty::ExistentialPredicate::Projection(_) => {
93 return Err((
94 span,
95 "trait bounds other than `Sized` \
96 on const fn parameters are unstable"
97 .into(),
98 ));
99 },
100 ty::ExistentialPredicate::Trait(trait_ref) => {
101 if Some(trait_ref.def_id) != cx.tcx.lang_items().sized_trait() {
102 return Err((
103 span,
104 "trait bounds other than `Sized` \
105 on const fn parameters are unstable"
106 .into(),
107 ));
108 }
109 },
110 }
111 }
112 },
113 _ => {},
114 }
115 }
116 Ok(())
117}
118
119fn check_rvalue<'tcx>(
120 cx: &LateContext<'tcx>,
121 body: &Body<'tcx>,
122 def_id: DefId,
123 rvalue: &Rvalue<'tcx>,
124 span: Span,
125 msrv: Msrv,
126) -> McfResult {
127 match rvalue {
128 Rvalue::ThreadLocalRef(_) => Err((span, "cannot access thread local storage in const fn".into())),
129 Rvalue::Discriminant(place) | Rvalue::Ref(_, _, place) | Rvalue::RawPtr(_, place) => {
130 check_place(cx, *place, span, body, msrv)
131 },
132 Rvalue::CopyForDeref(place) => check_place(cx, *place, span, body, msrv),
133 Rvalue::Repeat(operand, _)
134 | Rvalue::Use(operand)
135 | Rvalue::WrapUnsafeBinder(operand, _)
136 | Rvalue::Cast(
137 CastKind::PointerWithExposedProvenance
138 | CastKind::IntToInt
139 | CastKind::FloatToInt
140 | CastKind::IntToFloat
141 | CastKind::FloatToFloat
142 | CastKind::FnPtrToPtr
143 | CastKind::PtrToPtr
144 | CastKind::PointerCoercion(PointerCoercion::MutToConstPointer | PointerCoercion::ArrayToPointer, _)
145 | CastKind::Subtype,
146 operand,
147 _,
148 ) => check_operand(cx, operand, span, body, msrv),
149 Rvalue::Cast(
150 CastKind::PointerCoercion(
151 PointerCoercion::UnsafeFnPointer
152 | PointerCoercion::ClosureFnPointer(_)
153 | PointerCoercion::ReifyFnPointer,
154 _,
155 ),
156 _,
157 _,
158 ) => Err((span, "function pointer casts are not allowed in const fn".into())),
159 Rvalue::Cast(CastKind::PointerCoercion(PointerCoercion::Unsize, _), op, cast_ty) => {
160 let Some(pointee_ty) = cast_ty.builtin_deref(true) else {
161 return Err((span, "unsizing casts are only allowed for references right now".into()));
163 };
164 let unsized_ty = cx
165 .tcx
166 .struct_tail_for_codegen(pointee_ty, ty::TypingEnv::post_analysis(cx.tcx, def_id));
167 if let ty::Slice(_) | ty::Str = unsized_ty.kind() {
168 check_operand(cx, op, span, body, msrv)?;
169 Ok(())
171 } else {
172 Err((span, "unsizing casts are not allowed in const fn".into()))
174 }
175 },
176 Rvalue::Cast(CastKind::PointerExposeProvenance, _, _) => {
177 Err((span, "casting pointers to ints is unstable in const fn".into()))
178 },
179 Rvalue::Cast(CastKind::Transmute, _, _) => Err((
180 span,
181 "transmute can attempt to turn pointers into integers, so is unstable in const fn".into(),
182 )),
183 Rvalue::BinaryOp(_, box (lhs, rhs)) => {
185 check_operand(cx, lhs, span, body, msrv)?;
186 check_operand(cx, rhs, span, body, msrv)?;
187 let ty = lhs.ty(body, cx.tcx);
188 if ty.is_integral() || ty.is_bool() || ty.is_char() {
189 Ok(())
190 } else {
191 Err((
192 span,
193 "only int, `bool` and `char` operations are stable in const fn".into(),
194 ))
195 }
196 },
197 Rvalue::NullaryOp(
198 NullOp::SizeOf | NullOp::AlignOf | NullOp::OffsetOf(_) | NullOp::UbChecks | NullOp::ContractChecks,
199 _,
200 )
201 | Rvalue::ShallowInitBox(_, _) => Ok(()),
202 Rvalue::UnaryOp(_, operand) => {
203 let ty = operand.ty(body, cx.tcx);
204 if ty.is_integral() || ty.is_bool() {
205 check_operand(cx, operand, span, body, msrv)
206 } else {
207 Err((span, "only int and `bool` operations are stable in const fn".into()))
208 }
209 },
210 Rvalue::Aggregate(_, operands) => {
211 for operand in operands {
212 check_operand(cx, operand, span, body, msrv)?;
213 }
214 Ok(())
215 },
216 }
217}
218
219fn check_statement<'tcx>(
220 cx: &LateContext<'tcx>,
221 body: &Body<'tcx>,
222 def_id: DefId,
223 statement: &Statement<'tcx>,
224 msrv: Msrv,
225) -> McfResult {
226 let span = statement.source_info.span;
227 match &statement.kind {
228 StatementKind::Assign(box (place, rval)) => {
229 check_place(cx, *place, span, body, msrv)?;
230 check_rvalue(cx, body, def_id, rval, span, msrv)
231 },
232
233 StatementKind::FakeRead(box (_, place)) => check_place(cx, *place, span, body, msrv),
234 StatementKind::SetDiscriminant { place, .. } => check_place(cx, **place, span, body, msrv),
236
237 StatementKind::Intrinsic(box NonDivergingIntrinsic::Assume(op)) => check_operand(cx, op, span, body, msrv),
238
239 StatementKind::Intrinsic(box NonDivergingIntrinsic::CopyNonOverlapping(
240 rustc_middle::mir::CopyNonOverlapping { dst, src, count },
241 )) => {
242 check_operand(cx, dst, span, body, msrv)?;
243 check_operand(cx, src, span, body, msrv)?;
244 check_operand(cx, count, span, body, msrv)
245 },
246 StatementKind::StorageLive(_)
248 | StatementKind::StorageDead(_)
249 | StatementKind::Retag { .. }
250 | StatementKind::AscribeUserType(..)
251 | StatementKind::PlaceMention(..)
252 | StatementKind::Coverage(..)
253 | StatementKind::ConstEvalCounter
254 | StatementKind::BackwardIncompatibleDropHint { .. }
255 | StatementKind::Nop => Ok(()),
256 }
257}
258
259fn check_operand<'tcx>(
260 cx: &LateContext<'tcx>,
261 operand: &Operand<'tcx>,
262 span: Span,
263 body: &Body<'tcx>,
264 msrv: Msrv,
265) -> McfResult {
266 match operand {
267 Operand::Move(place) => {
268 if !place.projection.as_ref().is_empty()
269 && !is_ty_const_destruct(cx.tcx, place.ty(&body.local_decls, cx.tcx).ty, body)
270 {
271 return Err((
272 span,
273 "cannot drop locals with a non constant destructor in const fn".into(),
274 ));
275 }
276
277 check_place(cx, *place, span, body, msrv)
278 },
279 Operand::Copy(place) => check_place(cx, *place, span, body, msrv),
280 Operand::Constant(c) => match c.check_static_ptr(cx.tcx) {
281 Some(_) => Err((span, "cannot access `static` items in const fn".into())),
282 None => Ok(()),
283 },
284 }
285}
286
287fn check_place<'tcx>(
288 cx: &LateContext<'tcx>,
289 place: Place<'tcx>,
290 span: Span,
291 body: &Body<'tcx>,
292 msrv: Msrv,
293) -> McfResult {
294 for (base, elem) in place.as_ref().iter_projections() {
295 match elem {
296 ProjectionElem::Field(..) => {
297 if base.ty(body, cx.tcx).ty.is_union() && !msrv.meets(cx, msrvs::CONST_FN_UNION) {
298 return Err((span, "accessing union fields is unstable".into()));
299 }
300 },
301 ProjectionElem::Deref => match base.ty(body, cx.tcx).ty.kind() {
302 ty::RawPtr(_, hir::Mutability::Mut) => {
303 return Err((span, "dereferencing raw mut pointer in const fn is unstable".into()));
304 },
305 ty::RawPtr(_, hir::Mutability::Not) if !msrv.meets(cx, msrvs::CONST_RAW_PTR_DEREF) => {
306 return Err((span, "dereferencing raw const pointer in const fn is unstable".into()));
307 },
308 _ => (),
309 },
310 ProjectionElem::ConstantIndex { .. }
311 | ProjectionElem::OpaqueCast(..)
312 | ProjectionElem::Downcast(..)
313 | ProjectionElem::Subslice { .. }
314 | ProjectionElem::Index(_)
315 | ProjectionElem::UnwrapUnsafeBinder(_) => {},
316 }
317 }
318
319 Ok(())
320}
321
322fn check_terminator<'tcx>(
323 cx: &LateContext<'tcx>,
324 body: &Body<'tcx>,
325 terminator: &Terminator<'tcx>,
326 msrv: Msrv,
327) -> McfResult {
328 let span = terminator.source_info.span;
329 match &terminator.kind {
330 TerminatorKind::FalseEdge { .. }
331 | TerminatorKind::FalseUnwind { .. }
332 | TerminatorKind::Goto { .. }
333 | TerminatorKind::Return
334 | TerminatorKind::UnwindResume
335 | TerminatorKind::UnwindTerminate(_)
336 | TerminatorKind::Unreachable => Ok(()),
337 TerminatorKind::Drop { place, .. } => {
338 if !is_ty_const_destruct(cx.tcx, place.ty(&body.local_decls, cx.tcx).ty, body) {
339 return Err((
340 span,
341 "cannot drop locals with a non constant destructor in const fn".into(),
342 ));
343 }
344 Ok(())
345 },
346 TerminatorKind::SwitchInt { discr, targets: _ } => check_operand(cx, discr, span, body, msrv),
347 TerminatorKind::CoroutineDrop | TerminatorKind::Yield { .. } => {
348 Err((span, "const fn coroutines are unstable".into()))
349 },
350 TerminatorKind::Call {
351 func,
352 args,
353 call_source: _,
354 destination: _,
355 target: _,
356 unwind: _,
357 fn_span: _,
358 }
359 | TerminatorKind::TailCall { func, args, fn_span: _ } => {
360 let fn_ty = func.ty(body, cx.tcx);
361 if let ty::FnDef(fn_def_id, fn_substs) = fn_ty.kind() {
362 let fn_def_id = match Instance::try_resolve(cx.tcx, cx.typing_env(), *fn_def_id, fn_substs) {
366 Ok(Some(fn_inst)) => fn_inst.def_id(),
367 Ok(None) => return Err((span, format!("cannot resolve instance for {func:?}").into())),
368 Err(_) => return Err((span, format!("error during instance resolution of {func:?}").into())),
369 };
370 if !is_stable_const_fn(cx, fn_def_id, msrv) {
371 return Err((
372 span,
373 format!(
374 "can only call other `const fn` within a `const fn`, \
375 but `{func:?}` is not stable as `const fn`",
376 )
377 .into(),
378 ));
379 }
380
381 if cx.tcx.is_intrinsic(fn_def_id, sym::transmute) {
386 return Err((
387 span,
388 "can only call `transmute` from const items, not `const fn`".into(),
389 ));
390 }
391
392 check_operand(cx, func, span, body, msrv)?;
393
394 for arg in args {
395 check_operand(cx, &arg.node, span, body, msrv)?;
396 }
397 Ok(())
398 } else {
399 Err((span, "can only call other const fns within const fn".into()))
400 }
401 },
402 TerminatorKind::Assert {
403 cond,
404 expected: _,
405 msg: _,
406 target: _,
407 unwind: _,
408 } => check_operand(cx, cond, span, body, msrv),
409 TerminatorKind::InlineAsm { .. } => Err((span, "cannot use inline assembly in const fn".into())),
410 }
411}
412
413pub fn is_stable_const_fn(cx: &LateContext<'_>, def_id: DefId, msrv: Msrv) -> bool {
415 cx.tcx.is_const_fn(def_id)
416 && cx
417 .tcx
418 .lookup_const_stability(def_id)
419 .or_else(|| {
420 cx.tcx
421 .trait_of_assoc(def_id)
422 .and_then(|trait_def_id| cx.tcx.lookup_const_stability(trait_def_id))
423 })
424 .is_none_or(|const_stab| {
425 if let rustc_hir::StabilityLevel::Stable { since, .. } = const_stab.level {
426 let const_stab_rust_version = match since {
431 StableSince::Version(version) => version,
432 StableSince::Current => RustcVersion::CURRENT,
433 StableSince::Err(_) => return false,
434 };
435
436 msrv.meets(cx, const_stab_rust_version)
437 } else {
438 cx.tcx.features().enabled(const_stab.feature) && msrv.current(cx).is_none()
440 }
441 })
442}
443
444fn is_ty_const_destruct<'tcx>(tcx: TyCtxt<'tcx>, ty: Ty<'tcx>, body: &Body<'tcx>) -> bool {
445 #[expect(unused)]
447 fn is_ty_const_destruct_unused<'tcx>(tcx: TyCtxt<'tcx>, ty: Ty<'tcx>, body: &Body<'tcx>) -> bool {
448 if !ty.needs_drop(tcx, body.typing_env(tcx)) {
450 return false;
451 }
452
453 let (infcx, param_env) = tcx.infer_ctxt().build_with_typing_env(body.typing_env(tcx));
454 let obligation = Obligation::new(
456 tcx,
457 ObligationCause::dummy_with_span(body.span),
458 param_env,
459 TraitRef::new(tcx, tcx.require_lang_item(LangItem::Destruct, body.span), [ty]),
460 );
461
462 let mut selcx = SelectionContext::new(&infcx);
463 let Some(impl_src) = selcx.select(&obligation).ok().flatten() else {
464 return false;
465 };
466
467 if !matches!(
468 impl_src,
469 ImplSource::Builtin(BuiltinImplSource::Misc, _) | ImplSource::Param(_)
470 ) {
471 return false;
472 }
473
474 let ocx = ObligationCtxt::new(&infcx);
475 ocx.register_obligations(impl_src.nested_obligations());
476 ocx.evaluate_obligations_error_on_ambiguity().is_empty()
477 }
478
479 !ty.needs_drop(tcx, ConstCx::new(tcx, body).typing_env)
480}