Skip to content

Commit 5c5ae6c

Browse files
authored
Rollup merge of #114615 - RalfJung:interpret-invalid-where, r=lcnr
interpret: remove incomplete protection against invalid where clauses Cc #97477, rust-lang/project-const-generics#37 r? ``@lcnr``
2 parents 4f82fb8 + a7132bf commit 5c5ae6c

File tree

7 files changed

+16
-84
lines changed

7 files changed

+16
-84
lines changed

compiler/rustc_const_eval/messages.ftl

-2
Original file line numberDiff line numberDiff line change
@@ -303,8 +303,6 @@ const_eval_remainder_overflow =
303303
overflow in signed remainder (dividing MIN by -1)
304304
const_eval_scalar_size_mismatch =
305305
scalar size mismatch: expected {$target_size} bytes but got {$data_size} bytes instead
306-
const_eval_size_of_unsized =
307-
size_of called on unsized type `{$ty}`
308306
const_eval_size_overflow =
309307
overflow computing total size of `{$name}`
310308

compiler/rustc_const_eval/src/errors.rs

-4
Original file line numberDiff line numberDiff line change
@@ -862,7 +862,6 @@ impl<'tcx> ReportErrorExt for InvalidProgramInfo<'tcx> {
862862
InvalidProgramInfo::FnAbiAdjustForForeignAbi(_) => {
863863
rustc_middle::error::middle_adjust_for_foreign_abi_error
864864
}
865-
InvalidProgramInfo::SizeOfUnsizedType(_) => const_eval_size_of_unsized,
866865
InvalidProgramInfo::ConstPropNonsense => {
867866
panic!("We had const-prop nonsense, this should never be printed")
868867
}
@@ -890,9 +889,6 @@ impl<'tcx> ReportErrorExt for InvalidProgramInfo<'tcx> {
890889
builder.set_arg("arch", arch);
891890
builder.set_arg("abi", abi.name());
892891
}
893-
InvalidProgramInfo::SizeOfUnsizedType(ty) => {
894-
builder.set_arg("ty", ty);
895-
}
896892
}
897893
}
898894
}

compiler/rustc_const_eval/src/interpret/step.rs

+2-5
Original file line numberDiff line numberDiff line change
@@ -269,13 +269,10 @@ impl<'mir, 'tcx: 'mir, M: Machine<'mir, 'tcx>> InterpCx<'mir, 'tcx, M> {
269269
let ty = self.subst_from_current_frame_and_normalize_erasing_regions(ty)?;
270270
let layout = self.layout_of(ty)?;
271271
if let mir::NullOp::SizeOf | mir::NullOp::AlignOf = null_op && layout.is_unsized() {
272-
// FIXME: This should be a span_bug, but const generics can run MIR
273-
// that is not properly type-checked yet (#97477).
274-
self.tcx.sess.delay_span_bug(
272+
span_bug!(
275273
self.frame().current_span(),
276-
format!("{null_op:?} MIR operator called for unsized type {ty}"),
274+
"{null_op:?} MIR operator called for unsized type {ty}",
277275
);
278-
throw_inval!(SizeOfUnsizedType(ty));
279276
}
280277
let val = match null_op {
281278
mir::NullOp::SizeOf => layout.size.bytes(),

compiler/rustc_middle/src/mir/interpret/error.rs

-2
Original file line numberDiff line numberDiff line change
@@ -184,8 +184,6 @@ pub enum InvalidProgramInfo<'tcx> {
184184
/// (which unfortunately typeck does not reject).
185185
/// Not using `FnAbiError` as that contains a nested `LayoutError`.
186186
FnAbiAdjustForForeignAbi(call::AdjustForForeignAbiError),
187-
/// SizeOf of unsized type was requested.
188-
SizeOfUnsizedType(Ty<'tcx>),
189187
/// We are runnning into a nonsense situation due to ConstProp violating our invariants.
190188
ConstPropNonsense,
191189
}

src/tools/compiletest/src/runtest.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1645,7 +1645,7 @@ impl<'test> TestCx<'test> {
16451645
if self.props.known_bug {
16461646
if !expected_errors.is_empty() {
16471647
self.fatal_proc_rec(
1648-
"`known_bug` tests should not have an expected errors",
1648+
"`known_bug` tests should not have an expected error",
16491649
proc_res,
16501650
);
16511651
}

tests/ui/const-generics/generic_const_exprs/issue-80742.rs

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
// check-fail
2+
// known-bug: #97477
3+
// failure-status: 101
4+
// normalize-stderr-test "note: .*\n\n" -> ""
5+
// normalize-stderr-test "thread 'rustc' panicked.*\n" -> ""
6+
// rustc-env:RUST_BACKTRACE=0
27

38
// This test used to cause an ICE in rustc_mir::interpret::step::eval_rvalue_into_place
49

@@ -27,6 +32,5 @@ where
2732
}
2833

2934
fn main() {
30-
let dst = Inline::<dyn Debug>::new(0); //~ ERROR
31-
//~^ ERROR
35+
let dst = Inline::<dyn Debug>::new(0);
3236
}
Original file line numberDiff line numberDiff line change
@@ -1,71 +1,10 @@
1-
error[E0080]: evaluation of `Inline::<dyn Debug>::{constant#0}` failed
1+
error: internal compiler error: compiler/rustc_const_eval/src/interpret/step.rs:272:21: SizeOf MIR operator called for unsized type dyn Debug
22
--> $SRC_DIR/core/src/mem/mod.rs:LL:COL
3-
|
4-
= note: size_of called on unsized type `dyn Debug`
5-
|
6-
note: inside `std::mem::size_of::<dyn Debug>`
7-
--> $SRC_DIR/core/src/mem/mod.rs:LL:COL
8-
note: inside `Inline::<dyn Debug>::{constant#0}`
9-
--> $DIR/issue-80742.rs:22:10
10-
|
11-
LL | [u8; size_of::<T>() + 1]: ,
12-
| ^^^^^^^^^^^^^^
13-
14-
error[E0599]: the function or associated item `new` exists for struct `Inline<dyn Debug>`, but its trait bounds were not satisfied
15-
--> $DIR/issue-80742.rs:30:36
16-
|
17-
LL | struct Inline<T>
18-
| ---------------- function or associated item `new` not found for this struct
19-
...
20-
LL | let dst = Inline::<dyn Debug>::new(0);
21-
| ^^^ function or associated item cannot be called on `Inline<dyn Debug>` due to unsatisfied trait bounds
22-
--> $SRC_DIR/core/src/fmt/mod.rs:LL:COL
23-
|
24-
= note: doesn't satisfy `dyn Debug: Sized`
25-
|
26-
note: trait bound `dyn Debug: Sized` was not satisfied
27-
--> $DIR/issue-80742.rs:20:6
28-
|
29-
LL | impl<T> Inline<T>
30-
| ^ ---------
31-
| |
32-
| unsatisfied trait bound introduced here
33-
help: consider relaxing the type parameter's implicit `Sized` bound
34-
|
35-
LL | impl<T: ?Sized> Inline<T>
36-
| ++++++++
37-
38-
error[E0080]: evaluation of `Inline::<dyn Debug>::{constant#0}` failed
39-
--> $SRC_DIR/core/src/mem/mod.rs:LL:COL
40-
|
41-
= note: size_of called on unsized type `dyn Debug`
42-
|
43-
note: inside `std::mem::size_of::<dyn Debug>`
44-
--> $SRC_DIR/core/src/mem/mod.rs:LL:COL
45-
note: inside `Inline::<dyn Debug>::{constant#0}`
46-
--> $DIR/issue-80742.rs:14:10
47-
|
48-
LL | [u8; size_of::<T>() + 1]: ,
49-
| ^^^^^^^^^^^^^^
50-
51-
error[E0277]: the size for values of type `dyn Debug` cannot be known at compilation time
52-
--> $DIR/issue-80742.rs:30:15
53-
|
54-
LL | let dst = Inline::<dyn Debug>::new(0);
55-
| ^^^^^^^^^^^^^^^^^^^ doesn't have a size known at compile-time
56-
|
57-
= help: the trait `Sized` is not implemented for `dyn Debug`
58-
note: required by a bound in `Inline`
59-
--> $DIR/issue-80742.rs:12:15
60-
|
61-
LL | struct Inline<T>
62-
| ^ required by this bound in `Inline`
63-
help: consider relaxing the implicit `Sized` restriction
64-
|
65-
LL | struct Inline<T: ?Sized>
66-
| ++++++++
673

68-
error: aborting due to 4 previous errors
4+
Box<dyn Any>
5+
query stack during panic:
6+
#0 [eval_to_allocation_raw] const-evaluating + checking `<impl at $DIR/issue-80742.rs:25:1: 25:18>::{constant#0}`
7+
#1 [eval_to_valtree] evaluating type-level constant
8+
end of query stack
9+
error: aborting due to previous error
6910

70-
Some errors have detailed explanations: E0080, E0277, E0599.
71-
For more information about an error, try `rustc --explain E0080`.

0 commit comments

Comments
 (0)