Skip to content

Commit 878c783

Browse files
committed
Auto merge of rust-lang#96123 - Dylan-DPC:rollup-qjog6n1, r=Dylan-DPC
Rollup of 7 pull requests Successful merges: - rust-lang#94985 (Parse inner attributes on inline const block) - rust-lang#95006 (Reject `#[thread_local]` attribute on non-static items) - rust-lang#95426 (Include Refs in Valtree Creation) - rust-lang#95908 (Inline `shallow_resolve_ty` into `ShallowResolver`) - rust-lang#96058 (separate flock implementations into separate modules) - rust-lang#96088 (Update mdbook) - rust-lang#96118 (rustdoc: Rename `def_id` into `item_id` when the type is `ItemId` for readability) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
2 parents 2fa9789 + 10e0db5 commit 878c783

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+540
-419
lines changed

Cargo.lock

+16-6
Original file line numberDiff line numberDiff line change
@@ -606,12 +606,22 @@ dependencies = [
606606
"atty",
607607
"bitflags",
608608
"indexmap",
609+
"lazy_static",
609610
"os_str_bytes",
610611
"strsim 0.10.0",
611612
"termcolor",
612613
"textwrap 0.14.2",
613614
]
614615

616+
[[package]]
617+
name = "clap_complete"
618+
version = "3.1.1"
619+
source = "registry+https://github.com/rust-lang/crates.io-index"
620+
checksum = "df6f3613c0a3cddfd78b41b10203eb322cb29b600cbdf808a7d3db95691b8e25"
621+
dependencies = [
622+
"clap 3.1.1",
623+
]
624+
615625
[[package]]
616626
name = "clippy"
617627
version = "0.1.62"
@@ -2240,14 +2250,15 @@ dependencies = [
22402250

22412251
[[package]]
22422252
name = "mdbook"
2243-
version = "0.4.15"
2253+
version = "0.4.18"
22442254
source = "registry+https://github.com/rust-lang/crates.io-index"
2245-
checksum = "241f10687eb3b4e0634b3b4e423f97c5f1efbd69dc9522e24a8b94583eeec3c6"
2255+
checksum = "74612ae81a3e5ee509854049dfa4c7975ae033c06f5fc4735c7dfbe60ee2a39d"
22462256
dependencies = [
22472257
"ammonia",
22482258
"anyhow",
22492259
"chrono",
2250-
"clap 2.34.0",
2260+
"clap 3.1.1",
2261+
"clap_complete",
22512262
"elasticlunr-rs",
22522263
"env_logger 0.7.1",
22532264
"handlebars",
@@ -2911,7 +2922,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
29112922
checksum = "34f197a544b0c9ab3ae46c359a7ec9cbbb5c7bf97054266fecb7ead794a181d6"
29122923
dependencies = [
29132924
"bitflags",
2914-
"getopts",
29152925
"memchr",
29162926
"unicase",
29172927
]
@@ -3129,9 +3139,9 @@ dependencies = [
31293139

31303140
[[package]]
31313141
name = "regex"
3132-
version = "1.5.4"
3142+
version = "1.5.5"
31333143
source = "registry+https://github.com/rust-lang/crates.io-index"
3134-
checksum = "d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461"
3144+
checksum = "1a11647b6b25ff05a515cb92c365cec08801e83423a235b51e231e1808747286"
31353145
dependencies = [
31363146
"aho-corasick",
31373147
"memchr",

compiler/rustc_ast_pretty/src/pprust/state.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -959,7 +959,7 @@ impl<'a> State<'a> {
959959
self.word_space("=");
960960
match term {
961961
Term::Ty(ty) => self.print_type(ty),
962-
Term::Const(c) => self.print_expr_anon_const(c),
962+
Term::Const(c) => self.print_expr_anon_const(c, &[]),
963963
}
964964
}
965965
ast::AssocConstraintKind::Bound { bounds } => self.print_type_bounds(":", &*bounds),

compiler/rustc_ast_pretty/src/pprust/state/expr.rs

+14-3
Original file line numberDiff line numberDiff line change
@@ -88,10 +88,21 @@ impl<'a> State<'a> {
8888
self.end();
8989
}
9090

91-
pub(super) fn print_expr_anon_const(&mut self, expr: &ast::AnonConst) {
91+
pub(super) fn print_expr_anon_const(
92+
&mut self,
93+
expr: &ast::AnonConst,
94+
attrs: &[ast::Attribute],
95+
) {
9296
self.ibox(INDENT_UNIT);
9397
self.word("const");
94-
self.print_expr(&expr.value);
98+
self.nbsp();
99+
if let ast::ExprKind::Block(block, None) = &expr.value.kind {
100+
self.cbox(0);
101+
self.ibox(0);
102+
self.print_block_with_attrs(block, attrs);
103+
} else {
104+
self.print_expr(&expr.value);
105+
}
95106
self.end();
96107
}
97108

@@ -275,7 +286,7 @@ impl<'a> State<'a> {
275286
self.print_expr_vec(exprs);
276287
}
277288
ast::ExprKind::ConstBlock(ref anon_const) => {
278-
self.print_expr_anon_const(anon_const);
289+
self.print_expr_anon_const(anon_const, attrs);
279290
}
280291
ast::ExprKind::Repeat(ref element, ref count) => {
281292
self.print_expr_repeat(element, count);

compiler/rustc_const_eval/src/const_eval/eval_queries.rs

+2
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,7 @@ pub(super) fn op_to_const<'tcx>(
188188
}
189189
}
190190

191+
#[instrument(skip(tcx), level = "debug")]
191192
fn turn_into_const_value<'tcx>(
192193
tcx: TyCtxt<'tcx>,
193194
constant: ConstAlloc<'tcx>,
@@ -206,6 +207,7 @@ fn turn_into_const_value<'tcx>(
206207
!is_static || cid.promoted.is_some(),
207208
"the `eval_to_const_value_raw` query should not be used for statics, use `eval_to_allocation` instead"
208209
);
210+
209211
// Turn this into a proper constant.
210212
op_to_const(&ecx, &mplace.into())
211213
}

compiler/rustc_const_eval/src/const_eval/mod.rs

+55-25
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,14 @@
33
use std::convert::TryFrom;
44

55
use rustc_hir::Mutability;
6+
use rustc_middle::ty::layout::HasTyCtxt;
67
use rustc_middle::ty::{self, TyCtxt};
78
use rustc_middle::{
89
mir::{self, interpret::ConstAlloc},
910
ty::ScalarInt,
1011
};
1112
use rustc_span::{source_map::DUMMY_SP, symbol::Symbol};
13+
use rustc_target::abi::VariantIdx;
1214

1315
use crate::interpret::{
1416
intern_const_alloc_recursive, ConstValue, InternKind, InterpCx, InterpResult, MPlaceTy,
@@ -55,28 +57,48 @@ pub(crate) fn const_to_valtree<'tcx>(
5557
const_to_valtree_inner(&ecx, &place)
5658
}
5759

58-
fn const_to_valtree_inner<'tcx>(
60+
#[instrument(skip(ecx), level = "debug")]
61+
fn branches<'tcx>(
5962
ecx: &CompileTimeEvalContext<'tcx, 'tcx>,
6063
place: &MPlaceTy<'tcx>,
64+
n: usize,
65+
variant: Option<VariantIdx>,
6166
) -> Option<ty::ValTree<'tcx>> {
62-
let branches = |n, variant| {
63-
let place = match variant {
64-
Some(variant) => ecx.mplace_downcast(&place, variant).unwrap(),
65-
None => *place,
66-
};
67-
let variant =
68-
variant.map(|variant| Some(ty::ValTree::Leaf(ScalarInt::from(variant.as_u32()))));
69-
let fields = (0..n).map(|i| {
70-
let field = ecx.mplace_field(&place, i).unwrap();
71-
const_to_valtree_inner(ecx, &field)
72-
});
73-
// For enums, we preped their variant index before the variant's fields so we can figure out
74-
// the variant again when just seeing a valtree.
75-
let branches = variant.into_iter().chain(fields);
76-
Some(ty::ValTree::Branch(
77-
ecx.tcx.arena.alloc_from_iter(branches.collect::<Option<Vec<_>>>()?),
78-
))
67+
let place = match variant {
68+
Some(variant) => ecx.mplace_downcast(&place, variant).unwrap(),
69+
None => *place,
7970
};
71+
let variant = variant.map(|variant| Some(ty::ValTree::Leaf(ScalarInt::from(variant.as_u32()))));
72+
debug!(?place, ?variant);
73+
74+
let fields = (0..n).map(|i| {
75+
let field = ecx.mplace_field(&place, i).unwrap();
76+
const_to_valtree_inner(ecx, &field)
77+
});
78+
// For enums, we prepend their variant index before the variant's fields so we can figure out
79+
// the variant again when just seeing a valtree.
80+
let branches = variant.into_iter().chain(fields);
81+
Some(ty::ValTree::Branch(ecx.tcx.arena.alloc_from_iter(branches.collect::<Option<Vec<_>>>()?)))
82+
}
83+
84+
fn slice_branches<'tcx>(
85+
ecx: &CompileTimeEvalContext<'tcx, 'tcx>,
86+
place: &MPlaceTy<'tcx>,
87+
) -> Option<ty::ValTree<'tcx>> {
88+
let n = place.len(&ecx.tcx()).expect(&format!("expected to use len of place {:?}", place));
89+
let branches = (0..n).map(|i| {
90+
let place_elem = ecx.mplace_index(place, i).unwrap();
91+
const_to_valtree_inner(ecx, &place_elem)
92+
});
93+
94+
Some(ty::ValTree::Branch(ecx.tcx.arena.alloc_from_iter(branches.collect::<Option<Vec<_>>>()?)))
95+
}
96+
97+
#[instrument(skip(ecx), level = "debug")]
98+
fn const_to_valtree_inner<'tcx>(
99+
ecx: &CompileTimeEvalContext<'tcx, 'tcx>,
100+
place: &MPlaceTy<'tcx>,
101+
) -> Option<ty::ValTree<'tcx>> {
80102
match place.layout.ty.kind() {
81103
ty::FnDef(..) => Some(ty::ValTree::zst()),
82104
ty::Bool | ty::Int(_) | ty::Uint(_) | ty::Float(_) | ty::Char => {
@@ -90,19 +112,27 @@ fn const_to_valtree_inner<'tcx>(
90112
// Technically we could allow function pointers (represented as `ty::Instance`), but this is not guaranteed to
91113
// agree with runtime equality tests.
92114
ty::FnPtr(_) | ty::RawPtr(_) => None,
93-
ty::Ref(..) => unimplemented!("need to use deref_const"),
94115

116+
ty::Ref(_, _, _) => {
117+
let derefd_place = ecx.deref_operand(&place.into()).unwrap_or_else(|e| bug!("couldn't deref {:?}, error: {:?}", place, e));
118+
debug!(?derefd_place);
119+
120+
const_to_valtree_inner(ecx, &derefd_place)
121+
}
122+
123+
ty::Str | ty::Slice(_) | ty::Array(_, _) => {
124+
let valtree = slice_branches(ecx, place);
125+
debug!(?valtree);
126+
127+
valtree
128+
}
95129
// Trait objects are not allowed in type level constants, as we have no concept for
96130
// resolving their backing type, even if we can do that at const eval time. We may
97131
// hypothetically be able to allow `dyn StructuralEq` trait objects in the future,
98132
// but it is unclear if this is useful.
99133
ty::Dynamic(..) => None,
100134

101-
ty::Slice(_) | ty::Str => {
102-
unimplemented!("need to find the backing data of the slice/str and recurse on that")
103-
}
104-
ty::Tuple(substs) => branches(substs.len(), None),
105-
ty::Array(_, len) => branches(usize::try_from(len.eval_usize(ecx.tcx.tcx, ecx.param_env)).unwrap(), None),
135+
ty::Tuple(substs) => branches(ecx, place, substs.len(), None),
106136

107137
ty::Adt(def, _) => {
108138
if def.variants().is_empty() {
@@ -111,7 +141,7 @@ fn const_to_valtree_inner<'tcx>(
111141

112142
let variant = ecx.read_discriminant(&place.into()).unwrap().1;
113143

114-
branches(def.variant(variant).fields.len(), def.is_enum().then_some(variant))
144+
branches(ecx, place, def.variant(variant).fields.len(), def.is_enum().then_some(variant))
115145
}
116146

117147
ty::Never

compiler/rustc_const_eval/src/interpret/place.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ impl<'tcx, Tag: Provenance> MPlaceTy<'tcx, Tag> {
191191
}
192192

193193
#[inline]
194-
pub(super) fn len(&self, cx: &impl HasDataLayout) -> InterpResult<'tcx, u64> {
194+
pub(crate) fn len(&self, cx: &impl HasDataLayout) -> InterpResult<'tcx, u64> {
195195
if self.layout.is_unsized() {
196196
// We need to consult `meta` metadata
197197
match self.layout.ty.kind() {

0 commit comments

Comments
 (0)