2020-08-06 08:48:36 +00:00
|
|
|
use rustc_hir::def::DefKind;
|
2020-08-06 08:00:08 +00:00
|
|
|
use rustc_infer::infer::InferCtxt;
|
2020-08-06 08:48:36 +00:00
|
|
|
use rustc_middle::mir::interpret::ErrorHandled;
|
2020-08-06 08:00:08 +00:00
|
|
|
use rustc_middle::ty::subst::SubstsRef;
|
2020-08-06 08:48:36 +00:00
|
|
|
use rustc_middle::ty::{self, TypeFoldable};
|
|
|
|
use rustc_session::lint;
|
2020-08-06 08:00:08 +00:00
|
|
|
use rustc_span::def_id::DefId;
|
2020-08-06 08:48:36 +00:00
|
|
|
use rustc_span::Span;
|
2020-08-06 08:00:08 +00:00
|
|
|
|
|
|
|
pub fn is_const_evaluatable<'cx, 'tcx>(
|
|
|
|
infcx: &InferCtxt<'cx, 'tcx>,
|
|
|
|
def: ty::WithOptConstParam<DefId>,
|
|
|
|
substs: SubstsRef<'tcx>,
|
|
|
|
param_env: ty::ParamEnv<'tcx>,
|
|
|
|
span: Span,
|
2020-08-06 08:48:36 +00:00
|
|
|
) -> Result<(), ErrorHandled> {
|
|
|
|
let future_compat_lint = || {
|
|
|
|
if let Some(local_def_id) = def.did.as_local() {
|
|
|
|
infcx.tcx.struct_span_lint_hir(
|
|
|
|
lint::builtin::CONST_EVALUATABLE_UNCHECKED,
|
2020-09-01 14:17:41 +00:00
|
|
|
infcx.tcx.hir().local_def_id_to_hir_id(local_def_id),
|
2020-08-06 08:48:36 +00:00
|
|
|
span,
|
|
|
|
|err| {
|
|
|
|
err.build("cannot use constants which depend on generic parameters in types")
|
|
|
|
.emit();
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// FIXME: We should only try to evaluate a given constant here if it is fully concrete
|
|
|
|
// as we don't want to allow things like `[u8; std::mem::size_of::<*mut T>()]`.
|
|
|
|
//
|
|
|
|
// We previously did not check this, so we only emit a future compat warning if
|
|
|
|
// const evaluation succeeds and the given constant is still polymorphic for now
|
|
|
|
// and hopefully soon change this to an error.
|
|
|
|
//
|
|
|
|
// See #74595 for more details about this.
|
|
|
|
let concrete = infcx.const_eval_resolve(param_env, def, substs, None, Some(span));
|
|
|
|
|
2020-08-06 08:00:08 +00:00
|
|
|
let def_kind = infcx.tcx.def_kind(def.did);
|
|
|
|
match def_kind {
|
|
|
|
DefKind::AnonConst => {
|
|
|
|
let mir_body = if let Some(def) = def.as_const_arg() {
|
|
|
|
infcx.tcx.optimized_mir_of_const_arg(def)
|
|
|
|
} else {
|
|
|
|
infcx.tcx.optimized_mir(def.did)
|
|
|
|
};
|
2020-08-06 08:48:36 +00:00
|
|
|
if mir_body.is_polymorphic && concrete.is_ok() {
|
|
|
|
future_compat_lint();
|
2020-08-06 08:00:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => {
|
2020-08-06 08:48:36 +00:00
|
|
|
if substs.has_param_types_or_consts() && concrete.is_ok() {
|
|
|
|
future_compat_lint();
|
2020-08-06 08:00:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-06 08:48:36 +00:00
|
|
|
concrete.map(drop)
|
|
|
|
}
|