Skip to content

Commit 4217792

Browse files
authored
Rollup merge of rust-lang#130715 - compiler-errors:mir-build-const-eval, r=BoxyUwU
Replace calls to `ty::Const::{try_}eval` in mir build/pattern analysis We normalize consts in writeback: rust-lang#130645. This means that consts are gonna be as normalized as they're ever gonna get in MIR building and pattern analysis. Therefore we can just use `try_to_target_usize` rather than calling `eval_target_usize`. Regarding the `.expect` calls, I'm not totally certain whether they're correct given rigid unevaluated consts. But this PR shouldn't make *more* ICEs occur; we may have to squash these ICEs when mGCE comes around, tho 😺 r? `@BoxyUwU`
2 parents 4e69d0b + 2273aee commit 4217792

File tree

4 files changed

+17
-7
lines changed

4 files changed

+17
-7
lines changed

compiler/rustc_mir_build/src/build/expr/as_rvalue.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ impl<'a, 'tcx> Builder<'a, 'tcx> {
5757
this.in_scope(region_scope, lint_level, |this| this.as_rvalue(block, scope, value))
5858
}
5959
ExprKind::Repeat { value, count } => {
60-
if Some(0) == count.try_eval_target_usize(this.tcx, this.param_env) {
60+
if Some(0) == count.try_to_target_usize(this.tcx) {
6161
this.build_zero_repeat(block, value, scope, source_info)
6262
} else {
6363
let value_operand = unpack!(

compiler/rustc_mir_build/src/build/matches/match_pair.rs

+6-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,12 @@ impl<'a, 'tcx> Builder<'a, 'tcx> {
4242
let tcx = self.tcx;
4343
let (min_length, exact_size) = if let Some(place_resolved) = place.try_to_place(self) {
4444
match place_resolved.ty(&self.local_decls, tcx).ty.kind() {
45-
ty::Array(_, length) => (length.eval_target_usize(tcx, self.param_env), true),
45+
ty::Array(_, length) => (
46+
length
47+
.try_to_target_usize(tcx)
48+
.expect("expected len of array pat to be definite"),
49+
true,
50+
),
4651
_ => ((prefix.len() + suffix.len()).try_into().unwrap(), false),
4752
}
4853
} else {

compiler/rustc_mir_build/src/thir/pattern/mod.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,9 @@ impl<'a, 'tcx> PatCtxt<'a, 'tcx> {
441441
ty::Slice(..) => PatKind::Slice { prefix, slice, suffix },
442442
// Fixed-length array, `[T; len]`.
443443
ty::Array(_, len) => {
444-
let len = len.eval_target_usize(self.tcx, self.param_env);
444+
let len = len
445+
.try_to_target_usize(self.tcx)
446+
.expect("expected len of array pat to be definite");
445447
assert!(len >= prefix.len() as u64 + suffix.len() as u64);
446448
PatKind::Array { prefix, slice, suffix }
447449
}

compiler/rustc_pattern_analysis/src/rustc.rs

+7-4
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ impl<'p, 'tcx: 'p> RustcPatCtxt<'p, 'tcx> {
352352
ty::Array(sub_ty, len) => {
353353
// We treat arrays of a constant but unknown length like slices.
354354
ConstructorSet::Slice {
355-
array_len: len.try_eval_target_usize(cx.tcx, cx.param_env).map(|l| l as usize),
355+
array_len: len.try_to_target_usize(cx.tcx).map(|l| l as usize),
356356
subtype_is_empty: cx.is_uninhabited(*sub_ty),
357357
}
358358
}
@@ -685,9 +685,12 @@ impl<'p, 'tcx: 'p> RustcPatCtxt<'p, 'tcx> {
685685
}
686686
PatKind::Array { prefix, slice, suffix } | PatKind::Slice { prefix, slice, suffix } => {
687687
let array_len = match ty.kind() {
688-
ty::Array(_, length) => {
689-
Some(length.eval_target_usize(cx.tcx, cx.param_env) as usize)
690-
}
688+
ty::Array(_, length) => Some(
689+
length
690+
.try_to_target_usize(cx.tcx)
691+
.expect("expected len of array pat to be definite")
692+
as usize,
693+
),
691694
ty::Slice(_) => None,
692695
_ => span_bug!(pat.span, "bad ty {} for slice pattern", ty.inner()),
693696
};

0 commit comments

Comments
 (0)