Skip to content

Commit cb81712

Browse files
Make fn_queries helpers module-private
1 parent 160e630 commit cb81712

File tree

1 file changed

+74
-75
lines changed

1 file changed

+74
-75
lines changed

src/librustc_mir/const_eval/fn_queries.rs

Lines changed: 74 additions & 75 deletions
Original file line numberDiff line numberDiff line change
@@ -82,94 +82,93 @@ pub fn is_min_const_fn(tcx: TyCtxt<'_>, def_id: DefId) -> bool {
8282
}
8383
}
8484

85-
pub fn provide(providers: &mut Providers<'_>) {
86-
/// Const evaluability whitelist is here to check evaluability at the
87-
/// top level beforehand.
88-
fn is_const_intrinsic(tcx: TyCtxt<'_>, def_id: DefId) -> Option<bool> {
89-
if tcx.is_closure(def_id) {
90-
return None;
91-
}
92-
93-
match tcx.fn_sig(def_id).abi() {
94-
Abi::RustIntrinsic | Abi::PlatformIntrinsic => {
95-
Some(tcx.lookup_const_stability(def_id).is_some())
96-
}
97-
_ => None,
98-
}
85+
pub fn is_parent_const_impl_raw(tcx: TyCtxt<'_>, hir_id: hir::HirId) -> bool {
86+
let parent_id = tcx.hir().get_parent_did(hir_id);
87+
if !parent_id.is_top_level_module() {
88+
is_const_impl_raw(tcx, LocalDefId::from_def_id(parent_id))
89+
} else {
90+
false
9991
}
92+
}
10093

101-
/// Checks whether the function has a `const` modifier or, in case it is an intrinsic, whether
102-
/// said intrinsic is on the whitelist for being const callable.
103-
fn is_const_fn_raw(tcx: TyCtxt<'_>, def_id: DefId) -> bool {
104-
let hir_id = tcx
105-
.hir()
106-
.as_local_hir_id(def_id)
107-
.expect("Non-local call to local provider is_const_fn");
108-
109-
let node = tcx.hir().get(hir_id);
94+
/// Checks whether the function has a `const` modifier or, in case it is an intrinsic, whether
95+
/// said intrinsic is on the whitelist for being const callable.
96+
fn is_const_fn_raw(tcx: TyCtxt<'_>, def_id: DefId) -> bool {
97+
let hir_id =
98+
tcx.hir().as_local_hir_id(def_id).expect("Non-local call to local provider is_const_fn");
11099

111-
if let Some(whitelisted) = is_const_intrinsic(tcx, def_id) {
112-
whitelisted
113-
} else if let Some(fn_like) = FnLikeNode::from_node(node) {
114-
if fn_like.constness() == hir::Constness::Const {
115-
return true;
116-
}
100+
let node = tcx.hir().get(hir_id);
117101

118-
// If the function itself is not annotated with `const`, it may still be a `const fn`
119-
// if it resides in a const trait impl.
120-
let parent_id = tcx.hir().get_parent_did(hir_id);
121-
if def_id != parent_id && !parent_id.is_top_level_module() {
122-
is_const_impl_raw(tcx, LocalDefId::from_def_id(parent_id))
123-
} else {
124-
false
125-
}
126-
} else if let hir::Node::Ctor(_) = node {
127-
true
128-
} else {
129-
false
102+
if let Some(whitelisted) = is_const_intrinsic(tcx, def_id) {
103+
whitelisted
104+
} else if let Some(fn_like) = FnLikeNode::from_node(node) {
105+
if fn_like.constness() == hir::Constness::Const {
106+
return true;
130107
}
108+
109+
// If the function itself is not annotated with `const`, it may still be a `const fn`
110+
// if it resides in a const trait impl.
111+
is_parent_const_impl_raw(tcx, hir_id)
112+
} else if let hir::Node::Ctor(_) = node {
113+
true
114+
} else {
115+
false
131116
}
117+
}
132118

133-
/// Checks whether the given item is an `impl` that has a `const` modifier.
134-
fn is_const_impl_raw(tcx: TyCtxt<'_>, def_id: LocalDefId) -> bool {
135-
let hir_id = tcx.hir().local_def_id_to_hir_id(def_id);
136-
let node = tcx.hir().get(hir_id);
137-
matches!(
138-
node,
139-
hir::Node::Item(hir::Item {
140-
kind: hir::ItemKind::Impl { constness: hir::Constness::Const, .. },
141-
..
142-
})
143-
)
119+
/// Const evaluability whitelist is here to check evaluability at the
120+
/// top level beforehand.
121+
fn is_const_intrinsic(tcx: TyCtxt<'_>, def_id: DefId) -> Option<bool> {
122+
if tcx.is_closure(def_id) {
123+
return None;
144124
}
145125

146-
fn is_promotable_const_fn(tcx: TyCtxt<'_>, def_id: DefId) -> bool {
147-
is_const_fn(tcx, def_id)
148-
&& match tcx.lookup_const_stability(def_id) {
149-
Some(stab) => {
150-
if cfg!(debug_assertions) && stab.promotable {
151-
let sig = tcx.fn_sig(def_id);
152-
assert_eq!(
153-
sig.unsafety(),
154-
hir::Unsafety::Normal,
155-
"don't mark const unsafe fns as promotable",
156-
// https://github.com/rust-lang/rust/pull/53851#issuecomment-418760682
157-
);
158-
}
159-
stab.promotable
126+
match tcx.fn_sig(def_id).abi() {
127+
Abi::RustIntrinsic | Abi::PlatformIntrinsic => {
128+
Some(tcx.lookup_const_stability(def_id).is_some())
129+
}
130+
_ => None,
131+
}
132+
}
133+
134+
/// Checks whether the given item is an `impl` that has a `const` modifier.
135+
fn is_const_impl_raw(tcx: TyCtxt<'_>, def_id: LocalDefId) -> bool {
136+
let hir_id = tcx.hir().local_def_id_to_hir_id(def_id);
137+
let node = tcx.hir().get(hir_id);
138+
matches!(
139+
node,
140+
hir::Node::Item(hir::Item {
141+
kind: hir::ItemKind::Impl { constness: hir::Constness::Const, .. },
142+
..
143+
})
144+
)
145+
}
146+
147+
fn is_promotable_const_fn(tcx: TyCtxt<'_>, def_id: DefId) -> bool {
148+
is_const_fn(tcx, def_id)
149+
&& match tcx.lookup_const_stability(def_id) {
150+
Some(stab) => {
151+
if cfg!(debug_assertions) && stab.promotable {
152+
let sig = tcx.fn_sig(def_id);
153+
assert_eq!(
154+
sig.unsafety(),
155+
hir::Unsafety::Normal,
156+
"don't mark const unsafe fns as promotable",
157+
// https://github.com/rust-lang/rust/pull/53851#issuecomment-418760682
158+
);
160159
}
161-
None => false,
160+
stab.promotable
162161
}
163-
}
162+
None => false,
163+
}
164+
}
164165

165-
fn const_fn_is_allowed_fn_ptr(tcx: TyCtxt<'_>, def_id: DefId) -> bool {
166-
is_const_fn(tcx, def_id)
167-
&& tcx
168-
.lookup_const_stability(def_id)
169-
.map(|stab| stab.allow_const_fn_ptr)
170-
.unwrap_or(false)
171-
}
166+
fn const_fn_is_allowed_fn_ptr(tcx: TyCtxt<'_>, def_id: DefId) -> bool {
167+
is_const_fn(tcx, def_id)
168+
&& tcx.lookup_const_stability(def_id).map(|stab| stab.allow_const_fn_ptr).unwrap_or(false)
169+
}
172170

171+
pub fn provide(providers: &mut Providers<'_>) {
173172
*providers = Providers {
174173
is_const_fn_raw,
175174
is_const_impl_raw: |tcx, def_id| is_const_impl_raw(tcx, LocalDefId::from_def_id(def_id)),

0 commit comments

Comments
 (0)