Skip to content

Commit 82ee3cd

Browse files
committed
miri: accept fieldless repr-int enums as ABI-compatible with the integer
1 parent 4441f41 commit 82ee3cd

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed

compiler/rustc_const_eval/src/interpret/call.rs

+14
Original file line numberDiff line numberDiff line change
@@ -211,6 +211,20 @@ impl<'tcx, M: Machine<'tcx>> InterpCx<'tcx, M> {
211211
ty::Int(ity) => (Integer::from_int_ty(&self.tcx, *ity), /* signed */ true),
212212
ty::Uint(uty) => (Integer::from_uint_ty(&self.tcx, *uty), /* signed */ false),
213213
ty::Char => (Integer::I32, /* signed */ false),
214+
ty::Adt(def, _) => {
215+
// Ensure it is an enum, with a suitable repr, and fieldless.
216+
if !def.is_enum() {
217+
return None;
218+
}
219+
let Some(int_ty) = def.repr().int else {
220+
return None;
221+
};
222+
if !def.variants().iter().all(|variant| variant.fields.is_empty()) {
223+
return None;
224+
}
225+
let int = Integer::from_attr(&self.tcx, int_ty);
226+
(int, int_ty.is_signed())
227+
}
214228
_ => return None,
215229
})
216230
};

src/tools/miri/tests/pass/function_calls/abi_compat.rs

+17
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,23 @@ fn main() {
7171
test_abi_compat(0isize, 0i64);
7272
}
7373
test_abi_compat(42u32, num::NonZero::new(1u32).unwrap());
74+
// - `repr(int)` enums and the corresponding integer.
75+
#[repr(i16)]
76+
#[derive(Copy, Clone)]
77+
enum I16 {
78+
Var1 = 0,
79+
Var2 = -5,
80+
}
81+
test_abi_compat(I16::Var1, 0i16);
82+
test_abi_compat(I16::Var2, -5i16);
83+
#[repr(u64)]
84+
#[derive(Copy, Clone)]
85+
enum U64 {
86+
Var1 = 0,
87+
Var2 = u64::MAX,
88+
}
89+
test_abi_compat(U64::Var1, 0u64);
90+
test_abi_compat(U64::Var2, u64::MAX);
7491
// - `char` and `u32`.
7592
test_abi_compat(42u32, 'x');
7693
// - Reference/pointer types with the same pointee.

0 commit comments

Comments
 (0)