Skip to content

Commit 7600696

Browse files
committed
Move impl constness into impl trait header
1 parent 32e54eb commit 7600696

File tree

8 files changed

+35
-32
lines changed

8 files changed

+35
-32
lines changed

compiler/rustc_const_eval/src/const_eval/fn_queries.rs

+9-6
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,15 @@ use rustc_hir::def_id::{DefId, LocalDefId};
44
use rustc_middle::query::Providers;
55
use rustc_middle::ty::TyCtxt;
66

7-
fn is_parent_const_impl_raw(tcx: TyCtxt<'_>, def_id: LocalDefId) -> bool {
7+
fn parent_impl_constness(tcx: TyCtxt<'_>, def_id: LocalDefId) -> hir::Constness {
88
let parent_id = tcx.local_parent(def_id);
9-
matches!(tcx.def_kind(parent_id), DefKind::Impl { .. })
10-
&& tcx.constness(parent_id) == hir::Constness::Const
9+
if matches!(tcx.def_kind(parent_id), DefKind::Impl { .. })
10+
&& let Some(header) = tcx.impl_trait_header(parent_id)
11+
{
12+
header.constness
13+
} else {
14+
hir::Constness::NotConst
15+
}
1116
}
1217

1318
/// Checks whether an item is considered to be `const`. If it is a constructor, anonymous const,
@@ -22,7 +27,6 @@ fn constness(tcx: TyCtxt<'_>, def_id: LocalDefId) -> hir::Constness {
2227
| hir::Node::ImplItem(hir::ImplItem { kind: hir::ImplItemKind::Const(..), .. }) => {
2328
hir::Constness::Const
2429
}
25-
hir::Node::Item(hir::Item { kind: hir::ItemKind::Impl(impl_), .. }) => impl_.constness,
2630
hir::Node::ForeignItem(_) => {
2731
// Foreign items cannot be evaluated at compile-time.
2832
hir::Constness::NotConst
@@ -36,8 +40,7 @@ fn constness(tcx: TyCtxt<'_>, def_id: LocalDefId) -> hir::Constness {
3640

3741
// If the function itself is not annotated with `const`, it may still be a `const fn`
3842
// if it resides in a const trait impl.
39-
let is_const = is_parent_const_impl_raw(tcx, def_id);
40-
if is_const { hir::Constness::Const } else { hir::Constness::NotConst }
43+
parent_impl_constness(tcx, def_id)
4144
} else {
4245
tcx.dcx().span_bug(
4346
tcx.def_span(def_id),

compiler/rustc_hir_analysis/src/collect.rs

+13-11
Original file line numberDiff line numberDiff line change
@@ -1611,41 +1611,43 @@ fn impl_trait_header(tcx: TyCtxt<'_>, def_id: LocalDefId) -> Option<ty::ImplTrai
16111611
impl_.of_trait.as_ref().map(|ast_trait_ref| {
16121612
let selfty = tcx.type_of(def_id).instantiate_identity();
16131613

1614-
check_impl_constness(tcx, tcx.is_const_trait_impl(def_id.to_def_id()), ast_trait_ref);
1614+
check_impl_constness(tcx, impl_.constness, ast_trait_ref);
16151615

16161616
let trait_ref = icx.lowerer().lower_impl_trait_ref(ast_trait_ref, selfty);
16171617

16181618
ty::ImplTraitHeader {
16191619
trait_ref: ty::EarlyBinder::bind(trait_ref),
16201620
safety: impl_.safety,
16211621
polarity: polarity_of_impl(tcx, def_id, impl_, item.span),
1622+
constness: impl_.constness,
16221623
}
16231624
})
16241625
}
16251626

16261627
fn check_impl_constness(
16271628
tcx: TyCtxt<'_>,
1628-
is_const: bool,
1629+
constness: hir::Constness,
16291630
hir_trait_ref: &hir::TraitRef<'_>,
1630-
) -> Option<ErrorGuaranteed> {
1631-
if !is_const {
1632-
return None;
1631+
) {
1632+
if let hir::Constness::NotConst = constness {
1633+
return;
16331634
}
16341635

1635-
let trait_def_id = hir_trait_ref.trait_def_id()?;
1636+
let Some(trait_def_id) = hir_trait_ref.trait_def_id() else { return };
16361637
if tcx.is_const_trait(trait_def_id) {
1637-
return None;
1638+
return;
16381639
}
16391640

16401641
let trait_name = tcx.item_name(trait_def_id).to_string();
1641-
Some(tcx.dcx().emit_err(errors::ConstImplForNonConstTrait {
1642+
tcx.dcx().emit_err(errors::ConstImplForNonConstTrait {
16421643
trait_ref_span: hir_trait_ref.path.span,
16431644
trait_name,
1644-
local_trait_span:
1645-
trait_def_id.as_local().map(|_| tcx.def_span(trait_def_id).shrink_to_lo()),
1645+
local_trait_span: trait_def_id
1646+
.as_local()
1647+
.map(|_| tcx.def_span(trait_def_id).shrink_to_lo()),
16461648
marking: (),
16471649
adding: (),
1648-
}))
1650+
});
16491651
}
16501652

16511653
fn polarity_of_impl(

compiler/rustc_metadata/src/rmeta/encoder.rs

+2-6
Original file line numberDiff line numberDiff line change
@@ -1264,11 +1264,7 @@ fn should_encode_fn_sig(def_kind: DefKind) -> bool {
12641264

12651265
fn should_encode_constness(def_kind: DefKind) -> bool {
12661266
match def_kind {
1267-
DefKind::Fn
1268-
| DefKind::AssocFn
1269-
| DefKind::Closure
1270-
| DefKind::Impl { of_trait: true }
1271-
| DefKind::Ctor(_, CtorKind::Fn) => true,
1267+
DefKind::Fn | DefKind::AssocFn | DefKind::Closure | DefKind::Ctor(_, CtorKind::Fn) => true,
12721268

12731269
DefKind::Struct
12741270
| DefKind::Union
@@ -1280,7 +1276,7 @@ fn should_encode_constness(def_kind: DefKind) -> bool {
12801276
| DefKind::Static { .. }
12811277
| DefKind::TyAlias
12821278
| DefKind::OpaqueTy
1283-
| DefKind::Impl { of_trait: false }
1279+
| DefKind::Impl { .. }
12841280
| DefKind::ForeignTy
12851281
| DefKind::ConstParam
12861282
| DefKind::InlineConst

compiler/rustc_middle/src/query/mod.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -746,7 +746,8 @@ rustc_queries! {
746746
desc { |tcx| "computing drop-check constraints for `{}`", tcx.def_path_str(key) }
747747
}
748748

749-
/// Returns the constness of functions and impls.
749+
/// Returns the constness of function-like things (tuple struct/variant constructors, functions,
750+
/// methods)
750751
///
751752
/// Will ICE if used on things that are always const or never const.
752753
///

compiler/rustc_middle/src/ty/context.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3141,7 +3141,7 @@ impl<'tcx> TyCtxt<'tcx> {
31413141
/// Whether the trait impl is marked const. This does not consider stability or feature gates.
31423142
pub fn is_const_trait_impl(self, def_id: DefId) -> bool {
31433143
self.def_kind(def_id) == DefKind::Impl { of_trait: true }
3144-
&& self.constness(def_id) == hir::Constness::Const
3144+
&& self.impl_trait_header(def_id).unwrap().constness == hir::Constness::Const
31453145
}
31463146

31473147
pub fn intrinsic(self, def_id: impl IntoQueryParam<DefId> + Copy) -> Option<ty::IntrinsicDef> {

compiler/rustc_middle/src/ty/mod.rs

+4-5
Original file line numberDiff line numberDiff line change
@@ -253,6 +253,7 @@ pub struct ImplTraitHeader<'tcx> {
253253
pub trait_ref: ty::EarlyBinder<'tcx, ty::TraitRef<'tcx>>,
254254
pub polarity: ImplPolarity,
255255
pub safety: hir::Safety,
256+
pub constness: hir::Constness,
256257
}
257258

258259
#[derive(Copy, Clone, PartialEq, Eq, Debug, TypeFoldable, TypeVisitable)]
@@ -2004,11 +2005,9 @@ impl<'tcx> TyCtxt<'tcx> {
20042005
let def_id: DefId = def_id.into();
20052006
match self.def_kind(def_id) {
20062007
DefKind::Impl { of_trait: true } => {
2007-
self.constness(def_id) == hir::Constness::Const
2008-
&& self.is_const_trait(
2009-
self.trait_id_of_impl(def_id)
2010-
.expect("expected trait for trait implementation"),
2011-
)
2008+
let header = self.impl_trait_header(def_id).unwrap();
2009+
header.constness == hir::Constness::Const
2010+
&& self.is_const_trait(header.trait_ref.skip_binder().def_id)
20122011
}
20132012
DefKind::Fn | DefKind::Ctor(_, CtorKind::Fn) => {
20142013
self.constness(def_id) == hir::Constness::Const

compiler/rustc_middle/src/ty/util.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ impl<'tcx> TyCtxt<'tcx> {
389389
.delay_as_bug();
390390
}
391391

392-
dtor_candidate = Some((*item_id, self.constness(impl_did)));
392+
dtor_candidate = Some((*item_id, self.impl_trait_header(impl_did).unwrap().constness));
393393
});
394394

395395
let (did, constness) = dtor_candidate?;

compiler/rustc_trait_selection/src/traits/effects.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,9 @@ fn evaluate_host_effect_from_selection_candiate<'tcx>(
128128
Err(_) => Err(EvaluationFailure::NoSolution),
129129
Ok(Some(source)) => match source {
130130
ImplSource::UserDefined(impl_) => {
131-
if tcx.constness(impl_.impl_def_id) != hir::Constness::Const {
131+
if tcx.impl_trait_header(impl_.impl_def_id).unwrap().constness
132+
!= hir::Constness::Const
133+
{
132134
return Err(EvaluationFailure::NoSolution);
133135
}
134136

0 commit comments

Comments
 (0)