Skip to content

Commit d84b499

Browse files
authored
Rollup merge of #136565 - workingjubilee:fixup-abi-in-target, r=compiler-errors
compiler: Clean up weird `rustc_abi` reexports Just general cleanup in `rustc_target` and `rustc_abi`. I was originally going to make a PR with a larger change that also fixed the last few crates and in doing so removed some clutter from `rustc_abi`, but wound up slightly stuck on it, then figured out how to fix it, and then got distracted by other things... so now I'm trying to figure out what I had figured out earlier.
2 parents 3ce7d9c + 28140e8 commit d84b499

27 files changed

+221
-199
lines changed

compiler/rustc_abi/src/callconv.rs

+7-70
Original file line numberDiff line numberDiff line change
@@ -1,73 +1,10 @@
1-
mod abi {
2-
pub(crate) use crate::Primitive::*;
3-
pub(crate) use crate::Variants;
4-
}
5-
6-
#[cfg(feature = "nightly")]
7-
use rustc_macros::HashStable_Generic;
8-
9-
use crate::{Align, HasDataLayout, Size};
101
#[cfg(feature = "nightly")]
112
use crate::{BackendRepr, FieldsShape, TyAbiInterface, TyAndLayout};
3+
use crate::{Primitive, Size, Variants};
124

13-
#[cfg_attr(feature = "nightly", derive(HashStable_Generic))]
14-
#[derive(Copy, Clone, PartialEq, Eq, Hash, Debug)]
15-
pub enum RegKind {
16-
Integer,
17-
Float,
18-
Vector,
19-
}
20-
21-
#[cfg_attr(feature = "nightly", derive(HashStable_Generic))]
22-
#[derive(Copy, Clone, PartialEq, Eq, Hash, Debug)]
23-
pub struct Reg {
24-
pub kind: RegKind,
25-
pub size: Size,
26-
}
27-
28-
macro_rules! reg_ctor {
29-
($name:ident, $kind:ident, $bits:expr) => {
30-
pub fn $name() -> Reg {
31-
Reg { kind: RegKind::$kind, size: Size::from_bits($bits) }
32-
}
33-
};
34-
}
35-
36-
impl Reg {
37-
reg_ctor!(i8, Integer, 8);
38-
reg_ctor!(i16, Integer, 16);
39-
reg_ctor!(i32, Integer, 32);
40-
reg_ctor!(i64, Integer, 64);
41-
reg_ctor!(i128, Integer, 128);
42-
43-
reg_ctor!(f32, Float, 32);
44-
reg_ctor!(f64, Float, 64);
45-
}
5+
mod reg;
466

47-
impl Reg {
48-
pub fn align<C: HasDataLayout>(&self, cx: &C) -> Align {
49-
let dl = cx.data_layout();
50-
match self.kind {
51-
RegKind::Integer => match self.size.bits() {
52-
1 => dl.i1_align.abi,
53-
2..=8 => dl.i8_align.abi,
54-
9..=16 => dl.i16_align.abi,
55-
17..=32 => dl.i32_align.abi,
56-
33..=64 => dl.i64_align.abi,
57-
65..=128 => dl.i128_align.abi,
58-
_ => panic!("unsupported integer: {self:?}"),
59-
},
60-
RegKind::Float => match self.size.bits() {
61-
16 => dl.f16_align.abi,
62-
32 => dl.f32_align.abi,
63-
64 => dl.f64_align.abi,
64-
128 => dl.f128_align.abi,
65-
_ => panic!("unsupported float: {self:?}"),
66-
},
67-
RegKind::Vector => dl.vector_align(self.size).abi,
68-
}
69-
}
70-
}
7+
pub use reg::{Reg, RegKind};
718

729
/// Return value from the `homogeneous_aggregate` test function.
7310
#[derive(Copy, Clone, Debug)]
@@ -134,8 +71,8 @@ impl<'a, Ty> TyAndLayout<'a, Ty> {
13471
// The primitive for this algorithm.
13572
BackendRepr::Scalar(scalar) => {
13673
let kind = match scalar.primitive() {
137-
abi::Int(..) | abi::Pointer(_) => RegKind::Integer,
138-
abi::Float(_) => RegKind::Float,
74+
Primitive::Int(..) | Primitive::Pointer(_) => RegKind::Integer,
75+
Primitive::Float(_) => RegKind::Float,
13976
};
14077
Ok(HomogeneousAggregate::Homogeneous(Reg { kind, size: self.size }))
14178
}
@@ -206,8 +143,8 @@ impl<'a, Ty> TyAndLayout<'a, Ty> {
206143
let (mut result, mut total) = from_fields_at(*self, Size::ZERO)?;
207144

208145
match &self.variants {
209-
abi::Variants::Single { .. } | abi::Variants::Empty => {}
210-
abi::Variants::Multiple { variants, .. } => {
146+
Variants::Single { .. } | Variants::Empty => {}
147+
Variants::Multiple { variants, .. } => {
211148
// Treat enum variants like union members.
212149
// HACK(eddyb) pretend the `enum` field (discriminant)
213150
// is at the start of every variant (otherwise the gap
+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
#[cfg(feature = "nightly")]
2+
use rustc_macros::HashStable_Generic;
3+
4+
use crate::{Align, HasDataLayout, Size};
5+
6+
#[cfg_attr(feature = "nightly", derive(HashStable_Generic))]
7+
#[derive(Copy, Clone, PartialEq, Eq, Hash, Debug)]
8+
pub enum RegKind {
9+
Integer,
10+
Float,
11+
Vector,
12+
}
13+
14+
#[cfg_attr(feature = "nightly", derive(HashStable_Generic))]
15+
#[derive(Copy, Clone, PartialEq, Eq, Hash, Debug)]
16+
pub struct Reg {
17+
pub kind: RegKind,
18+
pub size: Size,
19+
}
20+
21+
macro_rules! reg_ctor {
22+
($name:ident, $kind:ident, $bits:expr) => {
23+
pub fn $name() -> Reg {
24+
Reg { kind: RegKind::$kind, size: Size::from_bits($bits) }
25+
}
26+
};
27+
}
28+
29+
impl Reg {
30+
reg_ctor!(i8, Integer, 8);
31+
reg_ctor!(i16, Integer, 16);
32+
reg_ctor!(i32, Integer, 32);
33+
reg_ctor!(i64, Integer, 64);
34+
reg_ctor!(i128, Integer, 128);
35+
36+
reg_ctor!(f32, Float, 32);
37+
reg_ctor!(f64, Float, 64);
38+
}
39+
40+
impl Reg {
41+
pub fn align<C: HasDataLayout>(&self, cx: &C) -> Align {
42+
let dl = cx.data_layout();
43+
match self.kind {
44+
RegKind::Integer => match self.size.bits() {
45+
1 => dl.i1_align.abi,
46+
2..=8 => dl.i8_align.abi,
47+
9..=16 => dl.i16_align.abi,
48+
17..=32 => dl.i32_align.abi,
49+
33..=64 => dl.i64_align.abi,
50+
65..=128 => dl.i128_align.abi,
51+
_ => panic!("unsupported integer: {self:?}"),
52+
},
53+
RegKind::Float => match self.size.bits() {
54+
16 => dl.f16_align.abi,
55+
32 => dl.f32_align.abi,
56+
64 => dl.f64_align.abi,
57+
128 => dl.f128_align.abi,
58+
_ => panic!("unsupported float: {self:?}"),
59+
},
60+
RegKind::Vector => dl.vector_align(self.size).abi,
61+
}
62+
}
63+
}
File renamed without changes.

compiler/rustc_abi/src/layout/ty.rs

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
use std::fmt;
22
use std::ops::Deref;
33

4-
use Float::*;
5-
use Primitive::*;
64
use rustc_data_structures::intern::Interned;
75
use rustc_macros::HashStable_Generic;
86

7+
use crate::{
8+
AbiAndPrefAlign, Align, BackendRepr, FieldsShape, Float, HasDataLayout, LayoutData, Niche,
9+
PointeeInfo, Primitive, Scalar, Size, TargetDataLayout, Variants,
10+
};
11+
912
// Explicitly import `Float` to avoid ambiguity with `Primitive::Float`.
10-
use crate::{Float, *};
1113

1214
rustc_index::newtype_index! {
1315
/// The *source-order* index of a field in a variant.
@@ -197,7 +199,9 @@ impl<'a, Ty> TyAndLayout<'a, Ty> {
197199
C: HasDataLayout,
198200
{
199201
match self.backend_repr {
200-
BackendRepr::Scalar(scalar) => matches!(scalar.primitive(), Float(F32 | F64)),
202+
BackendRepr::Scalar(scalar) => {
203+
matches!(scalar.primitive(), Primitive::Float(Float::F32 | Float::F64))
204+
}
201205
BackendRepr::Memory { .. } => {
202206
if self.fields.count() == 1 && self.fields.offset(0).bytes() == 0 {
203207
self.field(cx, 0).is_single_fp_element(cx)

compiler/rustc_target/src/asm/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
use std::fmt;
22
use std::str::FromStr;
33

4+
use rustc_abi::Size;
45
use rustc_data_structures::fx::{FxHashMap, FxIndexSet};
56
use rustc_macros::{Decodable, Encodable, HashStable_Generic};
67
use rustc_span::Symbol;
78

8-
use crate::abi::Size;
99
use crate::spec::{RelocModel, Target};
1010

1111
pub struct ModifierInfo {

compiler/rustc_target/src/callconv/aarch64.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
use std::iter;
22

3-
use rustc_abi::{BackendRepr, Primitive};
3+
use rustc_abi::{BackendRepr, HasDataLayout, Primitive, TyAbiInterface};
44

55
use crate::abi::call::{ArgAbi, FnAbi, Reg, RegKind, Uniform};
6-
use crate::abi::{HasDataLayout, TyAbiInterface};
76
use crate::spec::{HasTargetSpec, Target};
87

98
/// Indicates the variant of the AArch64 ABI we are compiling for.

compiler/rustc_target/src/callconv/amdgpu.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1+
use rustc_abi::{HasDataLayout, TyAbiInterface};
2+
13
use crate::abi::call::{ArgAbi, FnAbi};
2-
use crate::abi::{HasDataLayout, TyAbiInterface};
34

45
fn classify_ret<'a, Ty, C>(_cx: &C, ret: &mut ArgAbi<'a, Ty>)
56
where

compiler/rustc_target/src/callconv/arm.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1+
use rustc_abi::{HasDataLayout, TyAbiInterface};
2+
13
use crate::abi::call::{ArgAbi, Conv, FnAbi, Reg, RegKind, Uniform};
2-
use crate::abi::{HasDataLayout, TyAbiInterface};
34
use crate::spec::HasTargetSpec;
45

56
fn is_homogeneous_aggregate<'a, Ty, C>(cx: &C, arg: &mut ArgAbi<'a, Ty>) -> Option<Uniform>

compiler/rustc_target/src/callconv/loongarch.rs

+12-11
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
use crate::abi::call::{ArgAbi, ArgExtension, CastTarget, FnAbi, PassMode, Reg, RegKind, Uniform};
2-
use crate::abi::{
3-
self, BackendRepr, FieldsShape, HasDataLayout, Size, TyAbiInterface, TyAndLayout,
1+
use rustc_abi::{
2+
BackendRepr, ExternAbi, FieldsShape, HasDataLayout, Primitive, Reg, RegKind, Size,
3+
TyAbiInterface, TyAndLayout, Variants,
44
};
5+
6+
use crate::callconv::{ArgAbi, ArgExtension, CastTarget, FnAbi, PassMode, Uniform};
57
use crate::spec::HasTargetSpec;
6-
use crate::spec::abi::Abi as SpecAbi;
78

89
#[derive(Copy, Clone)]
910
enum RegPassKind {
@@ -42,7 +43,7 @@ where
4243
{
4344
match arg_layout.backend_repr {
4445
BackendRepr::Scalar(scalar) => match scalar.primitive() {
45-
abi::Int(..) | abi::Pointer(_) => {
46+
Primitive::Int(..) | Primitive::Pointer(_) => {
4647
if arg_layout.size.bits() > xlen {
4748
return Err(CannotUseFpConv);
4849
}
@@ -62,7 +63,7 @@ where
6263
_ => return Err(CannotUseFpConv),
6364
}
6465
}
65-
abi::Float(_) => {
66+
Primitive::Float(_) => {
6667
if arg_layout.size.bits() > flen {
6768
return Err(CannotUseFpConv);
6869
}
@@ -115,8 +116,8 @@ where
115116
}
116117
FieldsShape::Arbitrary { .. } => {
117118
match arg_layout.variants {
118-
abi::Variants::Multiple { .. } => return Err(CannotUseFpConv),
119-
abi::Variants::Single { .. } | abi::Variants::Empty => (),
119+
Variants::Multiple { .. } => return Err(CannotUseFpConv),
120+
Variants::Single { .. } | Variants::Empty => (),
120121
}
121122
for i in arg_layout.fields.index_by_increasing_offset() {
122123
let field = arg_layout.field(cx, i);
@@ -314,7 +315,7 @@ fn classify_arg<'a, Ty, C>(
314315

315316
fn extend_integer_width<Ty>(arg: &mut ArgAbi<'_, Ty>, xlen: u64) {
316317
if let BackendRepr::Scalar(scalar) = arg.layout.backend_repr {
317-
if let abi::Int(i, _) = scalar.primitive() {
318+
if let Primitive::Int(i, _) = scalar.primitive() {
318319
// 32-bit integers are always sign-extended
319320
if i.size().bits() == 32 && xlen > 32 {
320321
if let PassMode::Direct(ref mut attrs) = arg.mode {
@@ -363,12 +364,12 @@ where
363364
}
364365
}
365366

366-
pub(crate) fn compute_rust_abi_info<'a, Ty, C>(cx: &C, fn_abi: &mut FnAbi<'a, Ty>, abi: SpecAbi)
367+
pub(crate) fn compute_rust_abi_info<'a, Ty, C>(cx: &C, fn_abi: &mut FnAbi<'a, Ty>, abi: ExternAbi)
367368
where
368369
Ty: TyAbiInterface<'a, C> + Copy,
369370
C: HasDataLayout + HasTargetSpec,
370371
{
371-
if abi == SpecAbi::RustIntrinsic {
372+
if abi == ExternAbi::RustIntrinsic {
372373
return;
373374
}
374375

compiler/rustc_target/src/callconv/mips.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1+
use rustc_abi::{HasDataLayout, Size};
2+
13
use crate::abi::call::{ArgAbi, FnAbi, Reg, Uniform};
2-
use crate::abi::{HasDataLayout, Size};
34

45
fn classify_ret<Ty, C>(cx: &C, ret: &mut ArgAbi<'_, Ty>, offset: &mut Size)
56
where

compiler/rustc_target/src/callconv/mips64.rs

+18-15
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
1-
use crate::abi::call::{
2-
ArgAbi, ArgAttribute, ArgAttributes, ArgExtension, CastTarget, FnAbi, PassMode, Reg, Uniform,
1+
use rustc_abi::{
2+
BackendRepr, FieldsShape, Float, HasDataLayout, Primitive, Reg, Size, TyAbiInterface,
3+
};
4+
5+
use crate::callconv::{
6+
ArgAbi, ArgAttribute, ArgAttributes, ArgExtension, CastTarget, FnAbi, PassMode, Uniform,
37
};
4-
use crate::abi::{self, HasDataLayout, Size, TyAbiInterface};
58

69
fn extend_integer_width_mips<Ty>(arg: &mut ArgAbi<'_, Ty>, bits: u64) {
710
// Always sign extend u32 values on 64-bit mips
8-
if let abi::BackendRepr::Scalar(scalar) = arg.layout.backend_repr {
9-
if let abi::Int(i, signed) = scalar.primitive() {
11+
if let BackendRepr::Scalar(scalar) = arg.layout.backend_repr {
12+
if let Primitive::Int(i, signed) = scalar.primitive() {
1013
if !signed && i.size().bits() == 32 {
1114
if let PassMode::Direct(ref mut attrs) = arg.mode {
1215
attrs.ext(ArgExtension::Sext);
@@ -25,9 +28,9 @@ where
2528
C: HasDataLayout,
2629
{
2730
match ret.layout.field(cx, i).backend_repr {
28-
abi::BackendRepr::Scalar(scalar) => match scalar.primitive() {
29-
abi::Float(abi::F32) => Some(Reg::f32()),
30-
abi::Float(abi::F64) => Some(Reg::f64()),
31+
BackendRepr::Scalar(scalar) => match scalar.primitive() {
32+
Primitive::Float(Float::F32) => Some(Reg::f32()),
33+
Primitive::Float(Float::F64) => Some(Reg::f64()),
3134
_ => None,
3235
},
3336
_ => None,
@@ -51,7 +54,7 @@ where
5154
// use of float registers to structures (not unions) containing exactly one or two
5255
// float fields.
5356

54-
if let abi::FieldsShape::Arbitrary { .. } = ret.layout.fields {
57+
if let FieldsShape::Arbitrary { .. } = ret.layout.fields {
5558
if ret.layout.fields.count() == 1 {
5659
if let Some(reg) = float_reg(cx, ret, 0) {
5760
ret.cast_to(reg);
@@ -90,16 +93,16 @@ where
9093
let mut prefix_index = 0;
9194

9295
match arg.layout.fields {
93-
abi::FieldsShape::Primitive => unreachable!(),
94-
abi::FieldsShape::Array { .. } => {
96+
FieldsShape::Primitive => unreachable!(),
97+
FieldsShape::Array { .. } => {
9598
// Arrays are passed indirectly
9699
arg.make_indirect();
97100
return;
98101
}
99-
abi::FieldsShape::Union(_) => {
102+
FieldsShape::Union(_) => {
100103
// Unions and are always treated as a series of 64-bit integer chunks
101104
}
102-
abi::FieldsShape::Arbitrary { .. } => {
105+
FieldsShape::Arbitrary { .. } => {
103106
// Structures are split up into a series of 64-bit integer chunks, but any aligned
104107
// doubles not part of another aggregate are passed as floats.
105108
let mut last_offset = Size::ZERO;
@@ -109,8 +112,8 @@ where
109112
let offset = arg.layout.fields.offset(i);
110113

111114
// We only care about aligned doubles
112-
if let abi::BackendRepr::Scalar(scalar) = field.backend_repr {
113-
if scalar.primitive() == abi::Float(abi::F64) {
115+
if let BackendRepr::Scalar(scalar) = field.backend_repr {
116+
if scalar.primitive() == Primitive::Float(Float::F64) {
114117
if offset.is_aligned(dl.f64_align.abi) {
115118
// Insert enough integers to cover [last_offset, offset)
116119
assert!(last_offset.is_aligned(dl.f64_align.abi));

0 commit comments

Comments
 (0)