2021-04-22 04:31:13 -05:00
|
|
|
// This code used to be a part of `rustc` but moved to Clippy as a result of
|
|
|
|
// https://github.com/rust-lang/rust/issues/76618. Because of that, it contains unused code and some
|
|
|
|
// of terminologies might not be relevant in the context of Clippy. Note that its behavior might
|
|
|
|
// differ from the time of `rustc` even if the name stays the same.
|
|
|
|
|
2022-12-01 11:29:38 -06:00
|
|
|
use crate::msrvs::Msrv;
|
2020-09-26 09:08:24 -05:00
|
|
|
use rustc_hir as hir;
|
|
|
|
use rustc_hir::def_id::DefId;
|
2020-10-09 05:45:29 -05:00
|
|
|
use rustc_middle::mir::{
|
2022-09-09 06:36:26 -05:00
|
|
|
Body, CastKind, NonDivergingIntrinsic, NullOp, Operand, Place, ProjectionElem, Rvalue, Statement, StatementKind,
|
|
|
|
Terminator, TerminatorKind,
|
2020-10-09 05:45:29 -05:00
|
|
|
};
|
2020-09-26 09:08:24 -05:00
|
|
|
use rustc_middle::ty::subst::GenericArgKind;
|
|
|
|
use rustc_middle::ty::{self, adjustment::PointerCast, Ty, TyCtxt};
|
2021-04-22 04:31:13 -05:00
|
|
|
use rustc_semver::RustcVersion;
|
2020-10-09 05:45:29 -05:00
|
|
|
use rustc_span::symbol::sym;
|
2020-09-26 09:08:24 -05:00
|
|
|
use rustc_span::Span;
|
|
|
|
use std::borrow::Cow;
|
|
|
|
|
|
|
|
type McfResult = Result<(), (Span, Cow<'static, str>)>;
|
|
|
|
|
2022-12-01 11:29:38 -06:00
|
|
|
pub fn is_min_const_fn<'tcx>(tcx: TyCtxt<'tcx>, body: &Body<'tcx>, msrv: &Msrv) -> McfResult {
|
2020-10-04 17:23:20 -05:00
|
|
|
let def_id = body.source.def_id();
|
2020-09-26 09:08:24 -05:00
|
|
|
let mut current = def_id;
|
|
|
|
loop {
|
|
|
|
let predicates = tcx.predicates_of(current);
|
|
|
|
for (predicate, _) in predicates.predicates {
|
2021-01-07 10:20:28 -06:00
|
|
|
match predicate.kind().skip_binder() {
|
2022-12-01 11:29:38 -06:00
|
|
|
ty::PredicateKind::Clause(
|
|
|
|
ty::Clause::RegionOutlives(_)
|
|
|
|
| ty::Clause::TypeOutlives(_)
|
|
|
|
| ty::Clause::Projection(_)
|
|
|
|
| ty::Clause::Trait(..),
|
|
|
|
)
|
2021-01-07 10:20:28 -06:00
|
|
|
| ty::PredicateKind::WellFormed(_)
|
|
|
|
| ty::PredicateKind::ConstEvaluatable(..)
|
|
|
|
| ty::PredicateKind::ConstEquate(..)
|
|
|
|
| ty::PredicateKind::TypeWellFormedFromEnv(..) => continue,
|
2022-10-06 02:44:38 -05:00
|
|
|
ty::PredicateKind::ObjectSafe(_) => panic!("object safe predicate on function: {predicate:#?}"),
|
|
|
|
ty::PredicateKind::ClosureKind(..) => panic!("closure kind predicate on function: {predicate:#?}"),
|
|
|
|
ty::PredicateKind::Subtype(_) => panic!("subtype predicate on function: {predicate:#?}"),
|
|
|
|
ty::PredicateKind::Coerce(_) => panic!("coerce predicate on function: {predicate:#?}"),
|
2022-11-02 10:10:05 -05:00
|
|
|
ty::PredicateKind::Ambiguous => panic!("ambiguous predicate on function: {predicate:#?}"),
|
2020-09-26 09:08:24 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
match predicates.parent {
|
|
|
|
Some(parent) => current = parent,
|
|
|
|
None => break,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for local in &body.local_decls {
|
2020-09-26 09:23:56 -05:00
|
|
|
check_ty(tcx, local.ty, local.source_info.span)?;
|
2020-09-26 09:08:24 -05:00
|
|
|
}
|
|
|
|
// impl trait is gone in MIR, so check the return type manually
|
|
|
|
check_ty(
|
|
|
|
tcx,
|
|
|
|
tcx.fn_sig(def_id).output().skip_binder(),
|
|
|
|
body.local_decls.iter().next().unwrap().source_info.span,
|
|
|
|
)?;
|
|
|
|
|
2022-07-04 19:00:00 -05:00
|
|
|
for bb in body.basic_blocks.iter() {
|
2021-04-22 04:31:13 -05:00
|
|
|
check_terminator(tcx, body, bb.terminator(), msrv)?;
|
2020-09-26 09:08:24 -05:00
|
|
|
for stmt in &bb.statements {
|
|
|
|
check_statement(tcx, body, def_id, stmt)?;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2022-01-13 06:18:19 -06:00
|
|
|
fn check_ty<'tcx>(tcx: TyCtxt<'tcx>, ty: Ty<'tcx>, span: Span) -> McfResult {
|
2022-01-11 21:19:52 -06:00
|
|
|
for arg in ty.walk() {
|
2020-09-26 09:08:24 -05:00
|
|
|
let ty = match arg.unpack() {
|
|
|
|
GenericArgKind::Type(ty) => ty,
|
|
|
|
|
|
|
|
// No constraints on lifetimes or constants, except potentially
|
|
|
|
// constants' types, but `walk` will get to them as well.
|
|
|
|
GenericArgKind::Lifetime(_) | GenericArgKind::Const(_) => continue,
|
|
|
|
};
|
|
|
|
|
|
|
|
match ty.kind() {
|
|
|
|
ty::Ref(_, _, hir::Mutability::Mut) => {
|
2020-10-09 05:45:29 -05:00
|
|
|
return Err((span, "mutable references in const fn are unstable".into()));
|
2022-08-30 14:44:00 -05:00
|
|
|
},
|
2022-11-26 15:51:55 -06:00
|
|
|
ty::Alias(ty::Opaque, ..) => return Err((span, "`impl Trait` in const fn is unstable".into())),
|
2020-09-26 09:08:24 -05:00
|
|
|
ty::FnPtr(..) => {
|
2020-10-09 05:45:29 -05:00
|
|
|
return Err((span, "function pointers in const fn are unstable".into()));
|
2022-08-30 14:44:00 -05:00
|
|
|
},
|
2022-08-30 14:39:28 -05:00
|
|
|
ty::Dynamic(preds, _, _) => {
|
2020-09-26 09:08:24 -05:00
|
|
|
for pred in preds.iter() {
|
|
|
|
match pred.skip_binder() {
|
2022-08-30 14:44:00 -05:00
|
|
|
ty::ExistentialPredicate::AutoTrait(_) | ty::ExistentialPredicate::Projection(_) => {
|
2020-09-26 09:08:24 -05:00
|
|
|
return Err((
|
|
|
|
span,
|
|
|
|
"trait bounds other than `Sized` \
|
|
|
|
on const fn parameters are unstable"
|
|
|
|
.into(),
|
|
|
|
));
|
2022-08-30 14:44:00 -05:00
|
|
|
},
|
2020-09-26 09:08:24 -05:00
|
|
|
ty::ExistentialPredicate::Trait(trait_ref) => {
|
|
|
|
if Some(trait_ref.def_id) != tcx.lang_items().sized_trait() {
|
|
|
|
return Err((
|
|
|
|
span,
|
|
|
|
"trait bounds other than `Sized` \
|
|
|
|
on const fn parameters are unstable"
|
|
|
|
.into(),
|
|
|
|
));
|
|
|
|
}
|
2022-08-30 14:44:00 -05:00
|
|
|
},
|
2020-09-26 09:08:24 -05:00
|
|
|
}
|
|
|
|
}
|
2022-08-30 14:44:00 -05:00
|
|
|
},
|
|
|
|
_ => {},
|
2020-09-26 09:08:24 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2022-01-13 06:18:19 -06:00
|
|
|
fn check_rvalue<'tcx>(
|
|
|
|
tcx: TyCtxt<'tcx>,
|
|
|
|
body: &Body<'tcx>,
|
|
|
|
def_id: DefId,
|
|
|
|
rvalue: &Rvalue<'tcx>,
|
|
|
|
span: Span,
|
|
|
|
) -> McfResult {
|
2020-09-26 09:08:24 -05:00
|
|
|
match rvalue {
|
2022-08-30 14:44:00 -05:00
|
|
|
Rvalue::ThreadLocalRef(_) => Err((span, "cannot access thread local storage in const fn".into())),
|
|
|
|
Rvalue::Len(place) | Rvalue::Discriminant(place) | Rvalue::Ref(_, _, place) | Rvalue::AddressOf(_, place) => {
|
|
|
|
check_place(tcx, *place, span, body)
|
|
|
|
},
|
2022-06-13 08:37:41 -05:00
|
|
|
Rvalue::CopyForDeref(place) => check_place(tcx, *place, span, body),
|
2022-06-04 06:34:07 -05:00
|
|
|
Rvalue::Repeat(operand, _)
|
|
|
|
| Rvalue::Use(operand)
|
|
|
|
| Rvalue::Cast(
|
2022-06-02 08:05:37 -05:00
|
|
|
CastKind::PointerFromExposedAddress
|
2022-10-04 13:39:43 -05:00
|
|
|
| CastKind::IntToInt
|
|
|
|
| CastKind::FloatToInt
|
|
|
|
| CastKind::IntToFloat
|
|
|
|
| CastKind::FloatToFloat
|
|
|
|
| CastKind::FnPtrToPtr
|
|
|
|
| CastKind::PtrToPtr
|
2022-06-02 08:05:37 -05:00
|
|
|
| CastKind::Pointer(PointerCast::MutToConstPointer | PointerCast::ArrayToPointer),
|
|
|
|
operand,
|
2022-06-04 06:34:07 -05:00
|
|
|
_,
|
|
|
|
) => check_operand(tcx, operand, span, body),
|
2020-09-26 09:08:24 -05:00
|
|
|
Rvalue::Cast(
|
|
|
|
CastKind::Pointer(
|
2022-08-30 14:44:00 -05:00
|
|
|
PointerCast::UnsafeFnPointer | PointerCast::ClosureFnPointer(_) | PointerCast::ReifyFnPointer,
|
2020-09-26 09:08:24 -05:00
|
|
|
),
|
|
|
|
_,
|
|
|
|
_,
|
|
|
|
) => Err((span, "function pointer casts are not allowed in const fn".into())),
|
|
|
|
Rvalue::Cast(CastKind::Pointer(PointerCast::Unsize), op, cast_ty) => {
|
|
|
|
let pointee_ty = if let Some(deref_ty) = cast_ty.builtin_deref(true) {
|
|
|
|
deref_ty.ty
|
|
|
|
} else {
|
|
|
|
// We cannot allow this for now.
|
2022-08-30 14:44:00 -05:00
|
|
|
return Err((span, "unsizing casts are only allowed for references right now".into()));
|
2020-09-26 09:08:24 -05:00
|
|
|
};
|
|
|
|
let unsized_ty = tcx.struct_tail_erasing_lifetimes(pointee_ty, tcx.param_env(def_id));
|
|
|
|
if let ty::Slice(_) | ty::Str = unsized_ty.kind() {
|
2020-09-26 09:23:56 -05:00
|
|
|
check_operand(tcx, op, span, body)?;
|
2020-09-26 09:08:24 -05:00
|
|
|
// Casting/coercing things to slices is fine.
|
|
|
|
Ok(())
|
|
|
|
} else {
|
|
|
|
// We just can't allow trait objects until we have figured out trait method calls.
|
|
|
|
Err((span, "unsizing casts are not allowed in const fn".into()))
|
|
|
|
}
|
2022-08-30 14:44:00 -05:00
|
|
|
},
|
2022-06-04 06:34:07 -05:00
|
|
|
Rvalue::Cast(CastKind::PointerExposeAddress, _, _) => {
|
|
|
|
Err((span, "casting pointers to ints is unstable in const fn".into()))
|
2022-08-30 14:44:00 -05:00
|
|
|
},
|
2022-08-30 14:39:28 -05:00
|
|
|
Rvalue::Cast(CastKind::DynStar, _, _) => {
|
|
|
|
// FIXME(dyn-star)
|
|
|
|
unimplemented!()
|
2022-08-30 14:44:00 -05:00
|
|
|
},
|
2020-09-26 09:08:24 -05:00
|
|
|
// binops are fine on integers
|
2021-03-05 03:32:47 -06:00
|
|
|
Rvalue::BinaryOp(_, box (lhs, rhs)) | Rvalue::CheckedBinaryOp(_, box (lhs, rhs)) => {
|
2020-09-26 09:23:56 -05:00
|
|
|
check_operand(tcx, lhs, span, body)?;
|
|
|
|
check_operand(tcx, rhs, span, body)?;
|
2020-09-26 09:08:24 -05:00
|
|
|
let ty = lhs.ty(body, tcx);
|
|
|
|
if ty.is_integral() || ty.is_bool() || ty.is_char() {
|
|
|
|
Ok(())
|
|
|
|
} else {
|
2022-08-30 14:44:00 -05:00
|
|
|
Err((
|
|
|
|
span,
|
|
|
|
"only int, `bool` and `char` operations are stable in const fn".into(),
|
|
|
|
))
|
2020-09-26 09:08:24 -05:00
|
|
|
}
|
2022-08-30 14:44:00 -05:00
|
|
|
},
|
|
|
|
Rvalue::NullaryOp(NullOp::SizeOf | NullOp::AlignOf, _) | Rvalue::ShallowInitBox(_, _) => Ok(()),
|
2020-09-26 09:08:24 -05:00
|
|
|
Rvalue::UnaryOp(_, operand) => {
|
|
|
|
let ty = operand.ty(body, tcx);
|
|
|
|
if ty.is_integral() || ty.is_bool() {
|
2020-09-26 09:23:56 -05:00
|
|
|
check_operand(tcx, operand, span, body)
|
2020-09-26 09:08:24 -05:00
|
|
|
} else {
|
|
|
|
Err((span, "only int and `bool` operations are stable in const fn".into()))
|
|
|
|
}
|
2022-08-30 14:44:00 -05:00
|
|
|
},
|
2020-09-26 09:08:24 -05:00
|
|
|
Rvalue::Aggregate(_, operands) => {
|
|
|
|
for operand in operands {
|
2020-09-26 09:23:56 -05:00
|
|
|
check_operand(tcx, operand, span, body)?;
|
2020-09-26 09:08:24 -05:00
|
|
|
}
|
|
|
|
Ok(())
|
2022-08-30 14:44:00 -05:00
|
|
|
},
|
2020-09-26 09:08:24 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-13 06:18:19 -06:00
|
|
|
fn check_statement<'tcx>(
|
|
|
|
tcx: TyCtxt<'tcx>,
|
|
|
|
body: &Body<'tcx>,
|
|
|
|
def_id: DefId,
|
|
|
|
statement: &Statement<'tcx>,
|
|
|
|
) -> McfResult {
|
2020-09-26 09:08:24 -05:00
|
|
|
let span = statement.source_info.span;
|
|
|
|
match &statement.kind {
|
|
|
|
StatementKind::Assign(box (place, rval)) => {
|
2020-10-09 05:45:29 -05:00
|
|
|
check_place(tcx, *place, span, body)?;
|
2020-09-26 09:08:24 -05:00
|
|
|
check_rvalue(tcx, body, def_id, rval, span)
|
2022-08-30 14:44:00 -05:00
|
|
|
},
|
2020-09-26 09:08:24 -05:00
|
|
|
|
2021-03-29 23:30:20 -05:00
|
|
|
StatementKind::FakeRead(box (_, place)) => check_place(tcx, *place, span, body),
|
2020-09-26 09:08:24 -05:00
|
|
|
// just an assignment
|
2022-05-05 09:12:52 -05:00
|
|
|
StatementKind::SetDiscriminant { place, .. } | StatementKind::Deinit(place) => {
|
|
|
|
check_place(tcx, **place, span, body)
|
|
|
|
},
|
2022-07-12 05:05:00 -05:00
|
|
|
|
2022-09-09 06:36:26 -05:00
|
|
|
StatementKind::Intrinsic(box NonDivergingIntrinsic::Assume(op)) => check_operand(tcx, op, span, body),
|
2020-09-26 09:08:24 -05:00
|
|
|
|
2022-08-30 14:44:00 -05:00
|
|
|
StatementKind::Intrinsic(box NonDivergingIntrinsic::CopyNonOverlapping(
|
|
|
|
rustc_middle::mir::CopyNonOverlapping { dst, src, count },
|
|
|
|
)) => {
|
2021-04-08 10:50:13 -05:00
|
|
|
check_operand(tcx, dst, span, body)?;
|
|
|
|
check_operand(tcx, src, span, body)?;
|
|
|
|
check_operand(tcx, count, span, body)
|
2022-08-30 14:44:00 -05:00
|
|
|
},
|
2020-09-26 09:08:24 -05:00
|
|
|
// These are all NOPs
|
|
|
|
StatementKind::StorageLive(_)
|
|
|
|
| StatementKind::StorageDead(_)
|
|
|
|
| StatementKind::Retag { .. }
|
|
|
|
| StatementKind::AscribeUserType(..)
|
|
|
|
| StatementKind::Coverage(..)
|
|
|
|
| StatementKind::Nop => Ok(()),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-30 14:44:00 -05:00
|
|
|
fn check_operand<'tcx>(tcx: TyCtxt<'tcx>, operand: &Operand<'tcx>, span: Span, body: &Body<'tcx>) -> McfResult {
|
2020-09-26 09:08:24 -05:00
|
|
|
match operand {
|
2020-09-26 09:23:56 -05:00
|
|
|
Operand::Move(place) | Operand::Copy(place) => check_place(tcx, *place, span, body),
|
2020-09-26 09:08:24 -05:00
|
|
|
Operand::Constant(c) => match c.check_static_ptr(tcx) {
|
|
|
|
Some(_) => Err((span, "cannot access `static` items in const fn".into())),
|
|
|
|
None => Ok(()),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-30 14:44:00 -05:00
|
|
|
fn check_place<'tcx>(tcx: TyCtxt<'tcx>, place: Place<'tcx>, span: Span, body: &Body<'tcx>) -> McfResult {
|
2020-09-26 09:08:24 -05:00
|
|
|
let mut cursor = place.projection.as_ref();
|
2020-10-09 05:45:29 -05:00
|
|
|
while let [ref proj_base @ .., elem] = *cursor {
|
2020-09-26 09:08:24 -05:00
|
|
|
cursor = proj_base;
|
|
|
|
match elem {
|
|
|
|
ProjectionElem::Field(..) => {
|
2021-06-03 01:41:37 -05:00
|
|
|
let base_ty = Place::ty_from(place.local, proj_base, body, tcx).ty;
|
2020-09-26 09:08:24 -05:00
|
|
|
if let Some(def) = base_ty.ty_adt_def() {
|
|
|
|
// No union field accesses in `const fn`
|
|
|
|
if def.is_union() {
|
2020-10-09 05:45:29 -05:00
|
|
|
return Err((span, "accessing union fields is unstable".into()));
|
2020-09-26 09:08:24 -05:00
|
|
|
}
|
|
|
|
}
|
2022-08-30 14:44:00 -05:00
|
|
|
},
|
2020-09-26 09:08:24 -05:00
|
|
|
ProjectionElem::ConstantIndex { .. }
|
2022-07-27 06:58:34 -05:00
|
|
|
| ProjectionElem::OpaqueCast(..)
|
2020-09-26 09:08:24 -05:00
|
|
|
| ProjectionElem::Downcast(..)
|
|
|
|
| ProjectionElem::Subslice { .. }
|
|
|
|
| ProjectionElem::Deref
|
2022-08-30 14:44:00 -05:00
|
|
|
| ProjectionElem::Index(_) => {},
|
2020-09-26 09:08:24 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2022-11-21 13:34:47 -06:00
|
|
|
fn check_terminator<'tcx>(
|
2021-04-22 04:31:13 -05:00
|
|
|
tcx: TyCtxt<'tcx>,
|
2022-11-21 13:34:47 -06:00
|
|
|
body: &Body<'tcx>,
|
2021-04-22 04:31:13 -05:00
|
|
|
terminator: &Terminator<'tcx>,
|
2022-12-01 11:29:38 -06:00
|
|
|
msrv: &Msrv,
|
2021-04-22 04:31:13 -05:00
|
|
|
) -> McfResult {
|
2020-09-26 09:08:24 -05:00
|
|
|
let span = terminator.source_info.span;
|
|
|
|
match &terminator.kind {
|
|
|
|
TerminatorKind::FalseEdge { .. }
|
|
|
|
| TerminatorKind::FalseUnwind { .. }
|
|
|
|
| TerminatorKind::Goto { .. }
|
|
|
|
| TerminatorKind::Return
|
|
|
|
| TerminatorKind::Resume
|
|
|
|
| TerminatorKind::Unreachable => Ok(()),
|
|
|
|
|
2020-10-09 05:45:29 -05:00
|
|
|
TerminatorKind::Drop { place, .. } => check_place(tcx, *place, span, body),
|
2020-09-26 09:08:24 -05:00
|
|
|
TerminatorKind::DropAndReplace { place, value, .. } => {
|
2020-10-09 05:45:29 -05:00
|
|
|
check_place(tcx, *place, span, body)?;
|
2020-09-26 09:23:56 -05:00
|
|
|
check_operand(tcx, value, span, body)
|
2022-08-30 14:44:00 -05:00
|
|
|
},
|
2020-09-26 09:08:24 -05:00
|
|
|
|
2022-08-30 14:44:00 -05:00
|
|
|
TerminatorKind::SwitchInt {
|
|
|
|
discr,
|
|
|
|
targets: _,
|
|
|
|
} => check_operand(tcx, discr, span, body),
|
2020-09-26 09:08:24 -05:00
|
|
|
|
|
|
|
TerminatorKind::Abort => Err((span, "abort is not stable in const fn".into())),
|
|
|
|
TerminatorKind::GeneratorDrop | TerminatorKind::Yield { .. } => {
|
|
|
|
Err((span, "const fn generators are unstable".into()))
|
2022-08-30 14:44:00 -05:00
|
|
|
},
|
2020-09-26 09:08:24 -05:00
|
|
|
|
|
|
|
TerminatorKind::Call {
|
|
|
|
func,
|
|
|
|
args,
|
|
|
|
from_hir_call: _,
|
|
|
|
destination: _,
|
2022-04-16 08:27:54 -05:00
|
|
|
target: _,
|
2020-09-26 09:08:24 -05:00
|
|
|
cleanup: _,
|
|
|
|
fn_span: _,
|
|
|
|
} => {
|
|
|
|
let fn_ty = func.ty(body, tcx);
|
|
|
|
if let ty::FnDef(fn_def_id, _) = *fn_ty.kind() {
|
2021-04-22 04:31:13 -05:00
|
|
|
if !is_const_fn(tcx, fn_def_id, msrv) {
|
2020-09-26 09:08:24 -05:00
|
|
|
return Err((
|
|
|
|
span,
|
|
|
|
format!(
|
|
|
|
"can only call other `const fn` within a `const fn`, \
|
2022-10-06 02:44:38 -05:00
|
|
|
but `{func:?}` is not stable as `const fn`",
|
2020-09-26 09:08:24 -05:00
|
|
|
)
|
|
|
|
.into(),
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
// HACK: This is to "unstabilize" the `transmute` intrinsic
|
|
|
|
// within const fns. `transmute` is allowed in all other const contexts.
|
|
|
|
// This won't really scale to more intrinsics or functions. Let's allow const
|
|
|
|
// transmutes in const fn before we add more hacks to this.
|
2022-05-13 08:50:21 -05:00
|
|
|
if tcx.is_intrinsic(fn_def_id) && tcx.item_name(fn_def_id) == sym::transmute {
|
2020-09-26 09:08:24 -05:00
|
|
|
return Err((
|
|
|
|
span,
|
|
|
|
"can only call `transmute` from const items, not `const fn`".into(),
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
2020-09-26 09:23:56 -05:00
|
|
|
check_operand(tcx, func, span, body)?;
|
2020-09-26 09:08:24 -05:00
|
|
|
|
|
|
|
for arg in args {
|
2020-09-26 09:23:56 -05:00
|
|
|
check_operand(tcx, arg, span, body)?;
|
2020-09-26 09:08:24 -05:00
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
} else {
|
|
|
|
Err((span, "can only call other const fns within const fn".into()))
|
|
|
|
}
|
2022-08-30 14:44:00 -05:00
|
|
|
},
|
2020-09-26 09:08:24 -05:00
|
|
|
|
2022-08-30 14:44:00 -05:00
|
|
|
TerminatorKind::Assert {
|
|
|
|
cond,
|
|
|
|
expected: _,
|
|
|
|
msg: _,
|
|
|
|
target: _,
|
|
|
|
cleanup: _,
|
|
|
|
} => check_operand(tcx, cond, span, body),
|
2020-09-26 09:08:24 -05:00
|
|
|
|
2022-08-30 14:44:00 -05:00
|
|
|
TerminatorKind::InlineAsm { .. } => Err((span, "cannot use inline assembly in const fn".into())),
|
2020-09-26 09:08:24 -05:00
|
|
|
}
|
|
|
|
}
|
2021-04-22 04:31:13 -05:00
|
|
|
|
2022-12-01 11:29:38 -06:00
|
|
|
fn is_const_fn(tcx: TyCtxt<'_>, def_id: DefId, msrv: &Msrv) -> bool {
|
2021-09-15 05:03:03 -05:00
|
|
|
tcx.is_const_fn(def_id)
|
2021-04-27 09:55:11 -05:00
|
|
|
&& tcx.lookup_const_stability(def_id).map_or(true, |const_stab| {
|
2022-05-09 17:18:53 -05:00
|
|
|
if let rustc_attr::StabilityLevel::Stable { since, .. } = const_stab.level {
|
2021-04-22 04:31:13 -05:00
|
|
|
// Checking MSRV is manually necessary because `rustc` has no such concept. This entire
|
|
|
|
// function could be removed if `rustc` provided a MSRV-aware version of `is_const_fn`.
|
|
|
|
// as a part of an unimplemented MSRV check https://github.com/rust-lang/rust/issues/65262.
|
2022-09-23 14:04:54 -05:00
|
|
|
|
2022-10-06 02:44:38 -05:00
|
|
|
// HACK(nilstrieb): CURRENT_RUSTC_VERSION can return versions like 1.66.0-dev. `rustc-semver`
|
|
|
|
// doesn't accept the `-dev` version number so we have to strip it
|
|
|
|
// off.
|
2022-09-23 14:04:54 -05:00
|
|
|
let short_version = since
|
|
|
|
.as_str()
|
|
|
|
.split('-')
|
|
|
|
.next()
|
|
|
|
.expect("rustc_attr::StabilityLevel::Stable::since` is empty");
|
|
|
|
|
|
|
|
let since = rustc_span::Symbol::intern(short_version);
|
|
|
|
|
2022-12-01 11:29:38 -06:00
|
|
|
msrv.meets(RustcVersion::parse(since.as_str()).unwrap_or_else(|err| {
|
|
|
|
panic!("`rustc_attr::StabilityLevel::Stable::since` is ill-formatted: `{since}`, {err:?}")
|
|
|
|
}))
|
2021-04-22 04:31:13 -05:00
|
|
|
} else {
|
2021-04-27 09:55:11 -05:00
|
|
|
// Unstable const fn with the feature enabled.
|
2022-12-01 11:29:38 -06:00
|
|
|
msrv.current().is_none()
|
2021-04-22 04:31:13 -05:00
|
|
|
}
|
2021-04-27 09:55:11 -05:00
|
|
|
})
|
2021-04-22 04:31:13 -05:00
|
|
|
}
|