Skip to content

Commit 25444e5

Browse files
committed
Auto merge of #111414 - matthiaskrgr:rollup-q0qoc47, r=matthiaskrgr
Rollup of 6 pull requests Successful merges: - #110673 (Make alias bounds sound in the new solver (take 2)) - #110747 (Encode types in SMIR) - #111095 (Correctly handle associated items of a trait inside a `#[doc(hidden)]` item) - #111381 (Keep encoding attributes for closures) - #111408 (Fix incorrect implication of transmuting slices) - #111410 (Switch to `EarlyBinder` for `thir_abstract_const` query) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
2 parents 63fc57b + 70d5bf7 commit 25444e5

File tree

28 files changed

+616
-220
lines changed

28 files changed

+616
-220
lines changed

compiler/rustc_infer/src/infer/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1530,7 +1530,7 @@ impl<'tcx> InferCtxt<'tcx> {
15301530
// variables
15311531
let tcx = self.tcx;
15321532
if substs.has_non_region_infer() {
1533-
if let Some(ct) = tcx.bound_abstract_const(unevaluated.def)? {
1533+
if let Some(ct) = tcx.thir_abstract_const(unevaluated.def)? {
15341534
let ct = tcx.expand_abstract_consts(ct.subst(tcx, substs));
15351535
if let Err(e) = ct.error_reported() {
15361536
return Err(ErrorHandled::Reported(e));

compiler/rustc_metadata/src/rmeta/encoder.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -862,6 +862,11 @@ fn should_encode_attrs(def_kind: DefKind) -> bool {
862862
| DefKind::Macro(_)
863863
| DefKind::Field
864864
| DefKind::Impl { .. } => true,
865+
// Tools may want to be able to detect their tool lints on
866+
// closures from upstream crates, too. This is used by
867+
// https://github.com/model-checking/kani and is not a performance
868+
// or maintenance issue for us.
869+
DefKind::Closure => true,
865870
DefKind::TyParam
866871
| DefKind::ConstParam
867872
| DefKind::Ctor(..)
@@ -874,7 +879,6 @@ fn should_encode_attrs(def_kind: DefKind) -> bool {
874879
| DefKind::ImplTraitPlaceholder
875880
| DefKind::LifetimeParam
876881
| DefKind::GlobalAsm
877-
| DefKind::Closure
878882
| DefKind::Generator => false,
879883
}
880884
}

compiler/rustc_metadata/src/rmeta/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ define_tables! {
394394
mir_for_ctfe: Table<DefIndex, LazyValue<mir::Body<'static>>>,
395395
mir_generator_witnesses: Table<DefIndex, LazyValue<mir::GeneratorLayout<'static>>>,
396396
promoted_mir: Table<DefIndex, LazyValue<IndexVec<mir::Promoted, mir::Body<'static>>>>,
397-
thir_abstract_const: Table<DefIndex, LazyValue<ty::Const<'static>>>,
397+
thir_abstract_const: Table<DefIndex, LazyValue<ty::EarlyBinder<ty::Const<'static>>>>,
398398
impl_parent: Table<DefIndex, RawDefId>,
399399
impl_polarity: Table<DefIndex, ty::ImplPolarity>,
400400
constness: Table<DefIndex, hir::Constness>,

compiler/rustc_middle/src/query/erase.rs

+4-3
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,10 @@ impl EraseType for Result<Option<ty::Instance<'_>>, rustc_errors::ErrorGuarantee
8282
[u8; size_of::<Result<Option<ty::Instance<'static>>, rustc_errors::ErrorGuaranteed>>()];
8383
}
8484

85-
impl EraseType for Result<Option<ty::Const<'_>>, rustc_errors::ErrorGuaranteed> {
86-
type Result =
87-
[u8; size_of::<Result<Option<ty::Const<'static>>, rustc_errors::ErrorGuaranteed>>()];
85+
impl EraseType for Result<Option<ty::EarlyBinder<ty::Const<'_>>>, rustc_errors::ErrorGuaranteed> {
86+
type Result = [u8; size_of::<
87+
Result<Option<ty::EarlyBinder<ty::Const<'static>>>, rustc_errors::ErrorGuaranteed>,
88+
>()];
8889
}
8990

9091
impl EraseType for Result<ty::GenericArg<'_>, traits::query::NoSolution> {

compiler/rustc_middle/src/query/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@ rustc_queries! {
402402
/// Try to build an abstract representation of the given constant.
403403
query thir_abstract_const(
404404
key: DefId
405-
) -> Result<Option<ty::Const<'tcx>>, ErrorGuaranteed> {
405+
) -> Result<Option<ty::EarlyBinder<ty::Const<'tcx>>>, ErrorGuaranteed> {
406406
desc {
407407
|tcx| "building an abstract representation for `{}`", tcx.def_path_str(key),
408408
}

compiler/rustc_middle/src/ty/abstract_const.rs

+1-8
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ use crate::ty::{
44
TypeVisitableExt,
55
};
66
use rustc_errors::ErrorGuaranteed;
7-
use rustc_hir::def_id::DefId;
87

98
#[derive(Hash, Debug, Clone, Copy, Ord, PartialOrd, PartialEq, Eq)]
109
#[derive(TyDecodable, TyEncodable, HashStable, TypeVisitable, TypeFoldable)]
@@ -35,12 +34,6 @@ TrivialTypeTraversalAndLiftImpls! {
3534
pub type BoundAbstractConst<'tcx> = Result<Option<EarlyBinder<ty::Const<'tcx>>>, ErrorGuaranteed>;
3635

3736
impl<'tcx> TyCtxt<'tcx> {
38-
/// Returns a const without substs applied
39-
pub fn bound_abstract_const(self, uv: DefId) -> BoundAbstractConst<'tcx> {
40-
let ac = self.thir_abstract_const(uv);
41-
Ok(ac?.map(|ac| EarlyBinder(ac)))
42-
}
43-
4437
pub fn expand_abstract_consts<T: TypeFoldable<TyCtxt<'tcx>>>(self, ac: T) -> T {
4538
struct Expander<'tcx> {
4639
tcx: TyCtxt<'tcx>,
@@ -59,7 +52,7 @@ impl<'tcx> TyCtxt<'tcx> {
5952
}
6053
fn fold_const(&mut self, c: Const<'tcx>) -> Const<'tcx> {
6154
let ct = match c.kind() {
62-
ty::ConstKind::Unevaluated(uv) => match self.tcx.bound_abstract_const(uv.def) {
55+
ty::ConstKind::Unevaluated(uv) => match self.tcx.thir_abstract_const(uv.def) {
6356
Err(e) => self.tcx.const_error_with_guaranteed(c.ty(), e),
6457
Ok(Some(bac)) => {
6558
let substs = self.tcx.erase_regions(uv.substs);

compiler/rustc_smir/src/lib.rs

+2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
test(attr(allow(unused_variables), deny(warnings)))
1212
)]
1313
#![cfg_attr(not(feature = "default"), feature(rustc_private))]
14+
#![feature(local_key_cell_methods)]
15+
#![feature(ptr_metadata)]
1416

1517
pub mod rustc_internal;
1618
pub mod stable_mir;

compiler/rustc_smir/src/rustc_internal/mod.rs

+32-13
Original file line numberDiff line numberDiff line change
@@ -3,30 +3,49 @@
33
//! For that, we define APIs that will temporarily be public to 3P that exposes rustc internal APIs
44
//! until stable MIR is complete.
55
6-
use std::sync::RwLock;
7-
8-
use crate::stable_mir;
6+
use crate::{
7+
rustc_smir::Tables,
8+
stable_mir::{self, with},
9+
};
10+
use rustc_middle::ty::TyCtxt;
911
pub use rustc_span::def_id::{CrateNum, DefId};
1012

11-
static DEF_ID_MAP: RwLock<Vec<DefId>> = RwLock::new(Vec::new());
13+
fn with_tables<R>(mut f: impl FnMut(&mut Tables<'_>) -> R) -> R {
14+
let mut ret = None;
15+
with(|tables| tables.rustc_tables(&mut |t| ret = Some(f(t))));
16+
ret.unwrap()
17+
}
1218

1319
pub fn item_def_id(item: &stable_mir::CrateItem) -> DefId {
14-
DEF_ID_MAP.read().unwrap()[item.0]
20+
with_tables(|t| t.item_def_id(item))
1521
}
1622

1723
pub fn crate_item(did: DefId) -> stable_mir::CrateItem {
18-
// FIXME: this becomes inefficient when we have too many ids
19-
let mut map = DEF_ID_MAP.write().unwrap();
20-
for (i, &d) in map.iter().enumerate() {
21-
if d == did {
22-
return stable_mir::CrateItem(i);
24+
with_tables(|t| t.crate_item(did))
25+
}
26+
27+
impl<'tcx> Tables<'tcx> {
28+
pub fn item_def_id(&self, item: &stable_mir::CrateItem) -> DefId {
29+
self.def_ids[item.0]
30+
}
31+
32+
pub fn crate_item(&mut self, did: DefId) -> stable_mir::CrateItem {
33+
// FIXME: this becomes inefficient when we have too many ids
34+
for (i, &d) in self.def_ids.iter().enumerate() {
35+
if d == did {
36+
return stable_mir::CrateItem(i);
37+
}
2338
}
39+
let id = self.def_ids.len();
40+
self.def_ids.push(did);
41+
stable_mir::CrateItem(id)
2442
}
25-
let id = map.len();
26-
map.push(did);
27-
stable_mir::CrateItem(id)
2843
}
2944

3045
pub fn crate_num(item: &stable_mir::Crate) -> CrateNum {
3146
item.id.into()
3247
}
48+
49+
pub fn run(tcx: TyCtxt<'_>, f: impl FnOnce()) {
50+
crate::stable_mir::run(Tables { tcx, def_ids: vec![], types: vec![] }, f);
51+
}

compiler/rustc_smir/src/rustc_smir/mod.rs

+92-43
Original file line numberDiff line numberDiff line change
@@ -7,41 +7,107 @@
77
//!
88
//! For now, we are developing everything inside `rustc`, thus, we keep this module private.
99
10-
use crate::{
11-
rustc_internal::{crate_item, item_def_id},
12-
stable_mir::{self},
13-
};
14-
use rustc_middle::ty::{tls::with, TyCtxt};
15-
use rustc_span::def_id::{CrateNum, LOCAL_CRATE};
10+
use crate::stable_mir::{self, ty::TyKind, Context};
11+
use rustc_middle::ty::{self, Ty, TyCtxt};
12+
use rustc_span::def_id::{CrateNum, DefId, LOCAL_CRATE};
1613
use tracing::debug;
1714

18-
/// Get information about the local crate.
19-
pub fn local_crate() -> stable_mir::Crate {
20-
with(|tcx| smir_crate(tcx, LOCAL_CRATE))
21-
}
15+
impl<'tcx> Context for Tables<'tcx> {
16+
fn local_crate(&self) -> stable_mir::Crate {
17+
smir_crate(self.tcx, LOCAL_CRATE)
18+
}
2219

23-
/// Retrieve a list of all external crates.
24-
pub fn external_crates() -> Vec<stable_mir::Crate> {
25-
with(|tcx| tcx.crates(()).iter().map(|crate_num| smir_crate(tcx, *crate_num)).collect())
26-
}
20+
fn external_crates(&self) -> Vec<stable_mir::Crate> {
21+
self.tcx.crates(()).iter().map(|crate_num| smir_crate(self.tcx, *crate_num)).collect()
22+
}
2723

28-
/// Find a crate with the given name.
29-
pub fn find_crate(name: &str) -> Option<stable_mir::Crate> {
30-
with(|tcx| {
31-
[LOCAL_CRATE].iter().chain(tcx.crates(()).iter()).find_map(|crate_num| {
32-
let crate_name = tcx.crate_name(*crate_num).to_string();
33-
(name == crate_name).then(|| smir_crate(tcx, *crate_num))
24+
fn find_crate(&self, name: &str) -> Option<stable_mir::Crate> {
25+
[LOCAL_CRATE].iter().chain(self.tcx.crates(()).iter()).find_map(|crate_num| {
26+
let crate_name = self.tcx.crate_name(*crate_num).to_string();
27+
(name == crate_name).then(|| smir_crate(self.tcx, *crate_num))
3428
})
35-
})
29+
}
30+
31+
fn all_local_items(&mut self) -> stable_mir::CrateItems {
32+
self.tcx.mir_keys(()).iter().map(|item| self.crate_item(item.to_def_id())).collect()
33+
}
34+
fn entry_fn(&mut self) -> Option<stable_mir::CrateItem> {
35+
Some(self.crate_item(self.tcx.entry_fn(())?.0))
36+
}
37+
fn mir_body(&mut self, item: &stable_mir::CrateItem) -> stable_mir::mir::Body {
38+
let def_id = self.item_def_id(item);
39+
let mir = self.tcx.optimized_mir(def_id);
40+
stable_mir::mir::Body {
41+
blocks: mir
42+
.basic_blocks
43+
.iter()
44+
.map(|block| stable_mir::mir::BasicBlock {
45+
terminator: rustc_terminator_to_terminator(block.terminator()),
46+
statements: block.statements.iter().map(rustc_statement_to_statement).collect(),
47+
})
48+
.collect(),
49+
locals: mir.local_decls.iter().map(|decl| self.intern_ty(decl.ty)).collect(),
50+
}
51+
}
52+
53+
fn rustc_tables(&mut self, f: &mut dyn FnMut(&mut Tables<'_>)) {
54+
f(self)
55+
}
56+
57+
fn ty_kind(&mut self, ty: crate::stable_mir::ty::Ty) -> TyKind {
58+
self.rustc_ty_to_ty(self.types[ty.0])
59+
}
3660
}
3761

38-
/// Retrieve all items of the local crate that have a MIR associated with them.
39-
pub fn all_local_items() -> stable_mir::CrateItems {
40-
with(|tcx| tcx.mir_keys(()).iter().map(|item| crate_item(item.to_def_id())).collect())
62+
pub struct Tables<'tcx> {
63+
pub tcx: TyCtxt<'tcx>,
64+
pub def_ids: Vec<DefId>,
65+
pub types: Vec<Ty<'tcx>>,
4166
}
4267

43-
pub fn entry_fn() -> Option<stable_mir::CrateItem> {
44-
with(|tcx| Some(crate_item(tcx.entry_fn(())?.0)))
68+
impl<'tcx> Tables<'tcx> {
69+
fn rustc_ty_to_ty(&mut self, ty: Ty<'tcx>) -> TyKind {
70+
match ty.kind() {
71+
ty::Bool => TyKind::Bool,
72+
ty::Char => todo!(),
73+
ty::Int(_) => todo!(),
74+
ty::Uint(_) => todo!(),
75+
ty::Float(_) => todo!(),
76+
ty::Adt(_, _) => todo!(),
77+
ty::Foreign(_) => todo!(),
78+
ty::Str => todo!(),
79+
ty::Array(_, _) => todo!(),
80+
ty::Slice(_) => todo!(),
81+
ty::RawPtr(_) => todo!(),
82+
ty::Ref(_, _, _) => todo!(),
83+
ty::FnDef(_, _) => todo!(),
84+
ty::FnPtr(_) => todo!(),
85+
ty::Placeholder(..) => todo!(),
86+
ty::Dynamic(_, _, _) => todo!(),
87+
ty::Closure(_, _) => todo!(),
88+
ty::Generator(_, _, _) => todo!(),
89+
ty::GeneratorWitness(_) => todo!(),
90+
ty::GeneratorWitnessMIR(_, _) => todo!(),
91+
ty::Never => todo!(),
92+
ty::Tuple(fields) => {
93+
TyKind::Tuple(fields.iter().map(|ty| self.intern_ty(ty)).collect())
94+
}
95+
ty::Alias(_, _) => todo!(),
96+
ty::Param(_) => todo!(),
97+
ty::Bound(_, _) => todo!(),
98+
ty::Infer(_) => todo!(),
99+
ty::Error(_) => todo!(),
100+
}
101+
}
102+
103+
fn intern_ty(&mut self, ty: Ty<'tcx>) -> stable_mir::ty::Ty {
104+
if let Some(id) = self.types.iter().position(|&t| t == ty) {
105+
return stable_mir::ty::Ty(id);
106+
}
107+
let id = self.types.len();
108+
self.types.push(ty);
109+
stable_mir::ty::Ty(id)
110+
}
45111
}
46112

47113
/// Build a stable mir crate from a given crate number.
@@ -52,23 +118,6 @@ fn smir_crate(tcx: TyCtxt<'_>, crate_num: CrateNum) -> stable_mir::Crate {
52118
stable_mir::Crate { id: crate_num.into(), name: crate_name, is_local }
53119
}
54120

55-
pub fn mir_body(item: &stable_mir::CrateItem) -> stable_mir::mir::Body {
56-
with(|tcx| {
57-
let def_id = item_def_id(item);
58-
let mir = tcx.optimized_mir(def_id);
59-
stable_mir::mir::Body {
60-
blocks: mir
61-
.basic_blocks
62-
.iter()
63-
.map(|block| stable_mir::mir::BasicBlock {
64-
terminator: rustc_terminator_to_terminator(block.terminator()),
65-
statements: block.statements.iter().map(rustc_statement_to_statement).collect(),
66-
})
67-
.collect(),
68-
}
69-
})
70-
}
71-
72121
fn rustc_statement_to_statement(
73122
s: &rustc_middle::mir::Statement<'_>,
74123
) -> stable_mir::mir::Statement {

compiler/rustc_smir/src/stable_mir/mir/body.rs

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1+
use crate::stable_mir::ty::Ty;
2+
13
#[derive(Clone, Debug)]
24
pub struct Body {
35
pub blocks: Vec<BasicBlock>,
6+
pub locals: Vec<Ty>,
47
}
58

69
#[derive(Clone, Debug)]

0 commit comments

Comments
 (0)