Skip to content
/ rust Public
forked from rust-lang/rust

Commit bcc7dca

Browse files
authored
Rollup merge of rust-lang#137363 - workingjubilee:untangle-x86-abi-impl, r=jieyouxu
compiler: factor Windows x86-32 ABI impl into its own file While it shares more than zero code with the SysV x86-32 ABI impl, there is no particular reason to organize wildly different ABIs using if-else in the same function.
2 parents f0fffb7 + 9d8ce72 commit bcc7dca

File tree

3 files changed

+89
-23
lines changed

3 files changed

+89
-23
lines changed

compiler/rustc_target/src/callconv/mod.rs

+6-1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ mod sparc64;
3131
mod wasm;
3232
mod x86;
3333
mod x86_64;
34+
mod x86_win32;
3435
mod x86_win64;
3536
mod xtensa;
3637

@@ -649,7 +650,11 @@ impl<'a, Ty> FnAbi<'a, Ty> {
649650
};
650651
let reg_struct_return = cx.x86_abi_opt().reg_struct_return;
651652
let opts = x86::X86Options { flavor, regparm, reg_struct_return };
652-
x86::compute_abi_info(cx, self, opts);
653+
if spec.is_like_msvc {
654+
x86_win32::compute_abi_info(cx, self, opts);
655+
} else {
656+
x86::compute_abi_info(cx, self, opts);
657+
}
653658
}
654659
"x86_64" => match abi {
655660
ExternAbi::SysV64 { .. } => x86_64::compute_abi_info(cx, self),

compiler/rustc_target/src/callconv/x86.rs

+2-22
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ where
3636
if t.abi_return_struct_as_int || opts.reg_struct_return {
3737
// According to Clang, everyone but MSVC returns single-element
3838
// float aggregates directly in a floating-point register.
39-
if !t.is_like_msvc && fn_abi.ret.layout.is_single_fp_element(cx) {
39+
if fn_abi.ret.layout.is_single_fp_element(cx) {
4040
match fn_abi.ret.layout.size.bytes() {
4141
4 => fn_abi.ret.cast_to(Reg::f32()),
4242
8 => fn_abi.ret.cast_to(Reg::f64()),
@@ -64,31 +64,11 @@ where
6464
continue;
6565
}
6666

67-
// FIXME: MSVC 2015+ will pass the first 3 vector arguments in [XYZ]MM0-2
68-
// See https://reviews.llvm.org/D72114 for Clang behavior
69-
7067
let t = cx.target_spec();
7168
let align_4 = Align::from_bytes(4).unwrap();
7269
let align_16 = Align::from_bytes(16).unwrap();
7370

74-
if t.is_like_msvc
75-
&& arg.layout.is_adt()
76-
&& let Some(max_repr_align) = arg.layout.max_repr_align
77-
&& max_repr_align > align_4
78-
{
79-
// MSVC has special rules for overaligned arguments: https://reviews.llvm.org/D72114.
80-
// Summarized here:
81-
// - Arguments with _requested_ alignment > 4 are passed indirectly.
82-
// - For backwards compatibility, arguments with natural alignment > 4 are still passed
83-
// on stack (via `byval`). For example, this includes `double`, `int64_t`,
84-
// and structs containing them, provided they lack an explicit alignment attribute.
85-
assert!(
86-
arg.layout.align.abi >= max_repr_align,
87-
"abi alignment {:?} less than requested alignment {max_repr_align:?}",
88-
arg.layout.align.abi,
89-
);
90-
arg.make_indirect();
91-
} else if arg.layout.is_aggregate() {
71+
if arg.layout.is_aggregate() {
9272
// We need to compute the alignment of the `byval` argument. The rules can be found in
9373
// `X86_32ABIInfo::getTypeStackAlignInBytes` in Clang's `TargetInfo.cpp`. Summarized
9474
// here, they are:
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
use rustc_abi::{Align, HasDataLayout, Reg, TyAbiInterface};
2+
3+
use crate::callconv::FnAbi;
4+
use crate::spec::HasTargetSpec;
5+
6+
pub(crate) fn compute_abi_info<'a, Ty, C>(
7+
cx: &C,
8+
fn_abi: &mut FnAbi<'a, Ty>,
9+
opts: super::x86::X86Options,
10+
) where
11+
Ty: TyAbiInterface<'a, C> + Copy,
12+
C: HasDataLayout + HasTargetSpec,
13+
{
14+
if !fn_abi.ret.is_ignore() {
15+
if fn_abi.ret.layout.is_aggregate() && fn_abi.ret.layout.is_sized() {
16+
// Returning a structure. Most often, this will use
17+
// a hidden first argument. On some platforms, though,
18+
// small structs are returned as integers.
19+
//
20+
// Some links:
21+
// https://www.angelcode.com/dev/callconv/callconv.html
22+
// Clang's ABI handling is in lib/CodeGen/TargetInfo.cpp
23+
let t = cx.target_spec();
24+
// MSVC does not special-case 1-element float aggregates, unlike others.
25+
// GCC used to apply the SysV rule here, breaking windows-gnu's ABI, but was fixed:
26+
// - reported in https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82028
27+
// - fixed in https://gcc.gnu.org/bugzilla/show_bug.cgi?id=85667
28+
if t.abi_return_struct_as_int || opts.reg_struct_return {
29+
match fn_abi.ret.layout.size.bytes() {
30+
1 => fn_abi.ret.cast_to(Reg::i8()),
31+
2 => fn_abi.ret.cast_to(Reg::i16()),
32+
4 => fn_abi.ret.cast_to(Reg::i32()),
33+
8 => fn_abi.ret.cast_to(Reg::i64()),
34+
_ => fn_abi.ret.make_indirect(),
35+
}
36+
} else {
37+
fn_abi.ret.make_indirect();
38+
}
39+
} else {
40+
fn_abi.ret.extend_integer_width_to(32);
41+
}
42+
}
43+
44+
for arg in fn_abi.args.iter_mut() {
45+
if arg.is_ignore() || !arg.layout.is_sized() {
46+
continue;
47+
}
48+
49+
// FIXME: MSVC 2015+ will pass the first 3 vector arguments in [XYZ]MM0-2
50+
// See https://reviews.llvm.org/D72114 for Clang behavior
51+
52+
let align_4 = Align::from_bytes(4).unwrap();
53+
54+
if arg.layout.is_adt()
55+
&& let Some(max_repr_align) = arg.layout.max_repr_align
56+
&& max_repr_align > align_4
57+
{
58+
// MSVC has special rules for overaligned arguments: https://reviews.llvm.org/D72114.
59+
// Summarized here:
60+
// - Arguments with _requested_ alignment > 4 are passed indirectly.
61+
// - For backwards compatibility, arguments with natural alignment > 4 are still passed
62+
// on stack (via `byval`). For example, this includes `double`, `int64_t`,
63+
// and structs containing them, provided they lack an explicit alignment attribute.
64+
assert!(
65+
arg.layout.align.abi >= max_repr_align,
66+
"abi alignment {:?} less than requested alignment {max_repr_align:?}",
67+
arg.layout.align.abi,
68+
);
69+
arg.make_indirect();
70+
} else if arg.layout.is_aggregate() {
71+
// Alignment of the `byval` argument.
72+
// The rules can be found in `X86_32ABIInfo::getTypeStackAlignInBytes` in Clang's `TargetInfo.cpp`.
73+
let byval_align = align_4;
74+
arg.pass_by_stack_offset(Some(byval_align));
75+
} else {
76+
arg.extend_integer_width_to(32);
77+
}
78+
}
79+
80+
super::x86::fill_inregs(cx, fn_abi, opts, false);
81+
}

0 commit comments

Comments
 (0)