Skip to content

Commit a11235d

Browse files
committed
Auto merge of #111696 - lukas-code:offset-of-erase-regions-harder, r=compiler-errors
don't skip inference for type in `offset_of!` Fixes #111678 by no longer skipping inference on the type in `offset_of!`. Simply erasing the regions the during writeback isn't enough and can cause ICEs. A test case for this is included. This reverts #111661, because it becomes redundant, since inference already erases the regions.
2 parents 1b67f8b + 7cdb23b commit a11235d

File tree

8 files changed

+42
-16
lines changed

8 files changed

+42
-16
lines changed

compiler/rustc_hir_typeck/src/writeback.rs

+1-9
Original file line numberDiff line numberDiff line change
@@ -692,15 +692,7 @@ impl<'cx, 'tcx> WritebackCx<'cx, 'tcx> {
692692
fcx_typeck_results.offset_of_data().items_in_stable_order()
693693
{
694694
let hir_id = hir::HirId { owner: common_hir_owner, local_id };
695-
696-
if cfg!(debug_assertions) && container.has_infer() {
697-
span_bug!(
698-
hir_id.to_span(self.fcx.tcx),
699-
"writeback: `{:?}` has inference variables",
700-
container
701-
);
702-
};
703-
695+
let container = self.resolve(container, &hir_id);
704696
self.typeck_results.offset_of_data_mut().insert(hir_id, (container, indices.clone()));
705697
}
706698
}

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

+3-4
Original file line numberDiff line numberDiff line change
@@ -481,10 +481,9 @@ impl<'a, 'tcx> Builder<'a, 'tcx> {
481481
}))))
482482
}
483483

484-
ExprKind::OffsetOf { container, fields } => block.and(Rvalue::NullaryOp(
485-
NullOp::OffsetOf(fields),
486-
this.tcx.erase_regions(container),
487-
)),
484+
ExprKind::OffsetOf { container, fields } => {
485+
block.and(Rvalue::NullaryOp(NullOp::OffsetOf(fields), container))
486+
}
488487

489488
ExprKind::Literal { .. }
490489
| ExprKind::NamedConst { .. }

library/core/tests/mem.rs

+5
Original file line numberDiff line numberDiff line change
@@ -394,13 +394,18 @@ fn offset_of() {
394394
z: T
395395
}
396396

397+
trait Trait {}
398+
397399
// Ensure that this type of generics works
398400
fn offs_of_z<T>() -> usize {
399401
offset_of!(Generic<T>, z)
400402
}
401403

402404
assert_eq!(offset_of!(Generic<u8>, z), 8);
403405
assert_eq!(offs_of_z::<u8>(), 8);
406+
407+
// Ensure that it works with the implicit lifetime in `Box<dyn Trait + '_>`.
408+
assert_eq!(offset_of!(Generic<Box<dyn Trait>>, z), 8);
404409
}
405410

406411
#[test]

tests/ui/offset-of/offset-of-arg-count.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ fn main() {
1313
offset_of!(S, f..); //~ ERROR no rules expected the token
1414
offset_of!(S, f..,); //~ ERROR no rules expected the token
1515
offset_of!(Lt<'static>, bar); // issue #111657
16-
16+
offset_of!(Lt<'_>, bar); // issue #111678
1717
}
1818

1919
struct S { f: u8, }

tests/ui/offset-of/offset-of-dst-field.rs

+1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ fn main() {
4141
fn delta() {
4242
offset_of!(Delta<Alpha>, z); //~ ERROR the size for values of type
4343
offset_of!(Delta<Extern>, z); //~ ERROR the size for values of type
44+
offset_of!(Delta<dyn Trait>, z); //~ ERROR the size for values of type
4445
}
4546

4647
fn generic_with_maybe_sized<T: ?Sized>() -> usize {

tests/ui/offset-of/offset-of-dst-field.stderr

+11-2
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,15 @@ LL | offset_of!(Delta<Extern>, z);
3434
= help: the trait `Sized` is not implemented for `Extern`
3535
= note: this error originates in the macro `offset_of` (in Nightly builds, run with -Z macro-backtrace for more info)
3636

37+
error[E0277]: the size for values of type `dyn Trait` cannot be known at compilation time
38+
--> $DIR/offset-of-dst-field.rs:44:5
39+
|
40+
LL | offset_of!(Delta<dyn Trait>, z);
41+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ doesn't have a size known at compile-time
42+
|
43+
= help: the trait `Sized` is not implemented for `dyn Trait`
44+
= note: this error originates in the macro `offset_of` (in Nightly builds, run with -Z macro-backtrace for more info)
45+
3746
error[E0277]: the size for values of type `[u8]` cannot be known at compilation time
3847
--> $DIR/offset-of-dst-field.rs:42:5
3948
|
@@ -49,7 +58,7 @@ LL | struct Alpha {
4958
= note: this error originates in the macro `offset_of` (in Nightly builds, run with -Z macro-backtrace for more info)
5059

5160
error[E0277]: the size for values of type `T` cannot be known at compilation time
52-
--> $DIR/offset-of-dst-field.rs:47:5
61+
--> $DIR/offset-of-dst-field.rs:48:5
5362
|
5463
LL | fn generic_with_maybe_sized<T: ?Sized>() -> usize {
5564
| - this type parameter needs to be `std::marker::Sized`
@@ -63,6 +72,6 @@ LL - fn generic_with_maybe_sized<T: ?Sized>() -> usize {
6372
LL + fn generic_with_maybe_sized<T>() -> usize {
6473
|
6574

66-
error: aborting due to 6 previous errors
75+
error: aborting due to 7 previous errors
6776

6877
For more information about this error, try `rustc --explain E0277`.
+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
// Test that inference types in `offset_of!` don't ICE.
2+
3+
#![feature(offset_of)]
4+
5+
struct Foo<T> {
6+
x: T,
7+
}
8+
9+
fn main() {
10+
let _ = core::mem::offset_of!(Foo<_>, x); //~ ERROR: type annotations needed
11+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
error[E0282]: type annotations needed
2+
--> $DIR/offset-of-inference.rs:10:35
3+
|
4+
LL | let _ = core::mem::offset_of!(Foo<_>, x);
5+
| ^^^^^^ cannot infer type
6+
7+
error: aborting due to previous error
8+
9+
For more information about this error, try `rustc --explain E0282`.

0 commit comments

Comments
 (0)