]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_const_eval/src/const_eval/fn_queries.rs
:arrow_up: rust-analyzer
[rust.git] / compiler / rustc_const_eval / src / const_eval / fn_queries.rs
1 use rustc_hir as hir;
2 use rustc_hir::def::DefKind;
3 use rustc_hir::def_id::{DefId, LocalDefId};
4 use rustc_middle::ty::query::Providers;
5 use rustc_middle::ty::{DefIdTree, TyCtxt};
6 use rustc_span::symbol::Symbol;
7
8 /// Whether the `def_id` is an unstable const fn and what feature gate is necessary to enable it
9 pub fn is_unstable_const_fn(tcx: TyCtxt<'_>, def_id: DefId) -> Option<Symbol> {
10     if tcx.is_const_fn_raw(def_id) {
11         let const_stab = tcx.lookup_const_stability(def_id)?;
12         if const_stab.is_const_unstable() { Some(const_stab.feature) } else { None }
13     } else {
14         None
15     }
16 }
17
18 pub fn is_parent_const_impl_raw(tcx: TyCtxt<'_>, def_id: LocalDefId) -> bool {
19     let parent_id = tcx.local_parent(def_id);
20     tcx.def_kind(parent_id) == DefKind::Impl && tcx.constness(parent_id) == hir::Constness::Const
21 }
22
23 /// Checks whether an item is considered to be `const`. If it is a constructor, it is const. If
24 /// it is a trait impl/function, return if it has a `const` modifier. If it is an intrinsic,
25 /// report whether said intrinsic has a `rustc_const_{un,}stable` attribute. Otherwise, return
26 /// `Constness::NotConst`.
27 fn constness(tcx: TyCtxt<'_>, def_id: DefId) -> hir::Constness {
28     let def_id = def_id.expect_local();
29     let node = tcx.hir().get_by_def_id(def_id);
30
31     match node {
32         hir::Node::Ctor(_) => hir::Constness::Const,
33         hir::Node::Item(hir::Item { kind: hir::ItemKind::Impl(impl_), .. }) => impl_.constness,
34         hir::Node::ForeignItem(hir::ForeignItem { kind: hir::ForeignItemKind::Fn(..), .. }) => {
35             // Intrinsics use `rustc_const_{un,}stable` attributes to indicate constness. All other
36             // foreign items cannot be evaluated at compile-time.
37             let is_const = if tcx.is_intrinsic(def_id) {
38                 tcx.lookup_const_stability(def_id).is_some()
39             } else {
40                 false
41             };
42             if is_const { hir::Constness::Const } else { hir::Constness::NotConst }
43         }
44         _ => {
45             if let Some(fn_kind) = node.fn_kind() {
46                 if fn_kind.constness() == hir::Constness::Const {
47                     return hir::Constness::Const;
48                 }
49
50                 // If the function itself is not annotated with `const`, it may still be a `const fn`
51                 // if it resides in a const trait impl.
52                 let is_const = is_parent_const_impl_raw(tcx, def_id);
53                 if is_const { hir::Constness::Const } else { hir::Constness::NotConst }
54             } else {
55                 hir::Constness::NotConst
56             }
57         }
58     }
59 }
60
61 fn is_promotable_const_fn(tcx: TyCtxt<'_>, def_id: DefId) -> bool {
62     tcx.is_const_fn(def_id)
63         && match tcx.lookup_const_stability(def_id) {
64             Some(stab) => {
65                 if cfg!(debug_assertions) && stab.promotable {
66                     let sig = tcx.fn_sig(def_id);
67                     assert_eq!(
68                         sig.unsafety(),
69                         hir::Unsafety::Normal,
70                         "don't mark const unsafe fns as promotable",
71                         // https://github.com/rust-lang/rust/pull/53851#issuecomment-418760682
72                     );
73                 }
74                 stab.promotable
75             }
76             None => false,
77         }
78 }
79
80 pub fn provide(providers: &mut Providers) {
81     *providers = Providers { constness, is_promotable_const_fn, ..*providers };
82 }