Skip to content

Commit 4bcc366

Browse files
authored
Unrolled build for rust-lang#117262
Rollup merge of rust-lang#117262 - celinval:issue-38-norm, r=oli-obk Create a new ConstantKind variant (ZeroSized) for StableMIR ZeroSized constants can be represented as `mir::Const::Val` even if their layout is not yet known. In those cases, CrateItem::body() was crashing when trying to convert a `ConstValue::ZeroSized` into its stable counterpart `ConstantKind::Allocated`. Instead, we now map `ConstValue::ZeroSized` into a new variant: `ConstantKind::ZeroSized`. **Note:** I didn't add any new test here since we already have covering tests in our project repository which I manually confirmed that will fix the issue.
2 parents 54e57e6 + 613e618 commit 4bcc366

File tree

3 files changed

+18
-6
lines changed

3 files changed

+18
-6
lines changed

compiler/rustc_smir/src/rustc_smir/mod.rs

+14-5
Original file line numberDiff line numberDiff line change
@@ -1283,11 +1283,15 @@ impl<'tcx> Stable<'tcx> for ty::Const<'tcx> {
12831283
let kind = match self.kind() {
12841284
ty::Value(val) => {
12851285
let const_val = tables.tcx.valtree_to_const_val((self.ty(), val));
1286-
stable_mir::ty::ConstantKind::Allocated(alloc::new_allocation(
1287-
self.ty(),
1288-
const_val,
1289-
tables,
1290-
))
1286+
if matches!(const_val, mir::ConstValue::ZeroSized) {
1287+
ConstantKind::ZeroSized
1288+
} else {
1289+
stable_mir::ty::ConstantKind::Allocated(alloc::new_allocation(
1290+
self.ty(),
1291+
const_val,
1292+
tables,
1293+
))
1294+
}
12911295
}
12921296
ty::ParamCt(param) => stable_mir::ty::ConstantKind::Param(param.stable(tables)),
12931297
ty::ErrorCt(_) => unreachable!(),
@@ -1401,6 +1405,11 @@ impl<'tcx> Stable<'tcx> for rustc_middle::mir::Const<'tcx> {
14011405
let id = tables.intern_const(*self);
14021406
Const::new(kind, ty, id)
14031407
}
1408+
mir::Const::Val(val, ty) if matches!(val, mir::ConstValue::ZeroSized) => {
1409+
let ty = ty.stable(tables);
1410+
let id = tables.intern_const(*self);
1411+
Const::new(ConstantKind::ZeroSized, ty, id)
1412+
}
14041413
mir::Const::Val(val, ty) => {
14051414
let kind = ConstantKind::Allocated(alloc::new_allocation(ty, val, tables));
14061415
let ty = ty.stable(tables);

compiler/stable_mir/src/ty.rs

+3
Original file line numberDiff line numberDiff line change
@@ -444,6 +444,9 @@ pub enum ConstantKind {
444444
Allocated(Allocation),
445445
Unevaluated(UnevaluatedConst),
446446
Param(ParamConst),
447+
/// Store ZST constants.
448+
/// We have to special handle these constants since its type might be generic.
449+
ZeroSized,
447450
}
448451

449452
#[derive(Clone, Debug)]

compiler/stable_mir/src/visitor.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ impl Visitable for Const {
5050
match &self.kind() {
5151
super::ty::ConstantKind::Allocated(alloc) => alloc.visit(visitor)?,
5252
super::ty::ConstantKind::Unevaluated(uv) => uv.visit(visitor)?,
53-
super::ty::ConstantKind::Param(_) => {}
53+
super::ty::ConstantKind::Param(_) | super::ty::ConstantKind::ZeroSized => {}
5454
}
5555
self.ty().visit(visitor)
5656
}

0 commit comments

Comments
 (0)