Skip to content

Commit 99213ae

Browse files
committed
Make index_by_increasing_offset return one item for primitives
1 parent dcab06d commit 99213ae

File tree

2 files changed

+8
-12
lines changed

2 files changed

+8
-12
lines changed

compiler/rustc_abi/src/lib.rs

+6-1
Original file line numberDiff line numberDiff line change
@@ -1271,7 +1271,12 @@ impl<FieldIdx: Idx> FieldsShape<FieldIdx> {
12711271
}
12721272
}
12731273

1274-
(0..self.count()).map(move |i| match *self {
1274+
// Primitives don't really have fields in the way that structs do,
1275+
// but having this return an empty iterator for them is unhelpful
1276+
// since that makes them look kinda like ZSTs, which they're not.
1277+
let pseudofield_count = if let FieldsShape::Primitive = self { 1 } else { self.count() };
1278+
1279+
(0..pseudofield_count).map(move |i| match *self {
12751280
FieldsShape::Primitive | FieldsShape::Union(_) | FieldsShape::Array { .. } => i,
12761281
FieldsShape::Arbitrary { .. } => {
12771282
if use_small {

compiler/rustc_codegen_ssa/src/mir/rvalue.rs

+2-11
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ use rustc_span::{Span, DUMMY_SP};
1818
use rustc_target::abi::{self, FieldIdx, FIRST_VARIANT};
1919

2020
use arrayvec::ArrayVec;
21-
use either::Either;
2221

2322
impl<'a, 'tcx, Bx: BuilderMethods<'a, 'tcx>> FunctionCx<'a, 'tcx, Bx> {
2423
#[instrument(level = "trace", skip(self, bx))]
@@ -698,24 +697,16 @@ impl<'a, 'tcx, Bx: BuilderMethods<'a, 'tcx>> FunctionCx<'a, 'tcx, Bx> {
698697
}
699698
mir::Rvalue::Use(ref operand) => self.codegen_operand(bx, operand),
700699
mir::Rvalue::Repeat(..) => bug!("{rvalue:?} in codegen_rvalue_operand"),
701-
mir::Rvalue::Aggregate(ref kind, ref fields) => {
700+
mir::Rvalue::Aggregate(_, ref fields) => {
702701
let ty = rvalue.ty(self.mir, self.cx.tcx());
703702
let ty = self.monomorphize(ty);
704703
let layout = self.cx.layout_of(ty);
705704

706-
let field_indices = if let mir::AggregateKind::RawPtr(..) = **kind {
707-
// `index_by_increasing_offset` gives an empty iterator for primitives
708-
Either::Left([0_usize, 1_usize].iter().copied())
709-
} else {
710-
Either::Right(layout.fields.index_by_increasing_offset())
711-
};
712-
debug_assert_eq!(field_indices.len(), fields.len());
713-
714705
// `rvalue_creates_operand` has arranged that we only get here if
715706
// we can build the aggregate immediate from the field immediates.
716707
let mut inputs = ArrayVec::<Bx::Value, 2>::new();
717708
let mut input_scalars = ArrayVec::<abi::Scalar, 2>::new();
718-
for field_idx in field_indices {
709+
for field_idx in layout.fields.index_by_increasing_offset() {
719710
let field_idx = FieldIdx::from_usize(field_idx);
720711
let op = self.codegen_operand(bx, &fields[field_idx]);
721712
let values = op.val.immediates_or_place().left_or_else(|p| {

0 commit comments

Comments
 (0)