Skip to content

Commit ce1a7e4

Browse files
committed
Auto merge of #103455 - BlackHoleFox:apple-sim-abi-consistency, r=davidtwco
Fixed consistency of Apple simulator target's ABI Currently there's a few Apple device simulator targets that are inconsistent since some set `target_abi = "sim"` (the correct thing to do) while a bunch of others don't set anything (`""`). Due to this its very hard to reliability check if some Rust code is running inside a simulator. This changes all of them to do the same thing and set `sim` as their `target_abi`. The new way to identity a simulator during compilation is as simple as `cfg(all(target_vendor="apple", target_abi = "sim"))` or even `cfg(target_abi = "sim")` being less pedantic about it. The issues with the current form (and inspiration for this) are also summarized in `@thomcc's` [Tweet](https://twitter.com/at_tcsc/status/1576685244702691328).
2 parents 96787c4 + ffccfa1 commit ce1a7e4

File tree

5 files changed

+38
-9
lines changed

5 files changed

+38
-9
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
use crate::spec::{
2+
aarch64_apple_ios_sim, aarch64_apple_watchos_sim, x86_64_apple_ios, x86_64_apple_tvos,
3+
x86_64_apple_watchos_sim,
4+
};
5+
6+
#[test]
7+
fn simulator_targets_set_abi() {
8+
let all_sim_targets = [
9+
x86_64_apple_ios::target(),
10+
x86_64_apple_tvos::target(),
11+
x86_64_apple_watchos_sim::target(),
12+
aarch64_apple_ios_sim::target(),
13+
// Note: There is currently no ARM64 tvOS simulator target
14+
aarch64_apple_watchos_sim::target(),
15+
];
16+
17+
for target in all_sim_targets {
18+
assert_eq!(target.abi, "sim")
19+
}
20+
}

compiler/rustc_target/src/spec/apple_sdk_base.rs

+15-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
use crate::spec::{cvs, TargetOptions};
22
use std::borrow::Cow;
33

4+
#[cfg(test)]
5+
#[path = "apple/tests.rs"]
6+
mod tests;
7+
48
use Arch::*;
59
#[allow(non_camel_case_types)]
610
#[derive(Copy, Clone)]
@@ -11,7 +15,9 @@ pub enum Arch {
1115
Arm64,
1216
Arm64_32,
1317
I386,
18+
#[allow(dead_code)] // Some targets don't use this enum...
1419
X86_64,
20+
X86_64_sim,
1521
X86_64_macabi,
1622
Arm64_macabi,
1723
Arm64_sim,
@@ -25,15 +31,17 @@ fn target_arch_name(arch: Arch) -> &'static str {
2531
Arm64 | Arm64_macabi | Arm64_sim => "arm64",
2632
Arm64_32 => "arm64_32",
2733
I386 => "i386",
28-
X86_64 | X86_64_macabi => "x86_64",
34+
X86_64 | X86_64_sim | X86_64_macabi => "x86_64",
2935
}
3036
}
3137

3238
fn target_abi(arch: Arch) -> &'static str {
3339
match arch {
3440
Armv7 | Armv7k | Armv7s | Arm64 | Arm64_32 | I386 | X86_64 => "",
3541
X86_64_macabi | Arm64_macabi => "macabi",
36-
Arm64_sim => "sim",
42+
// x86_64-apple-ios is a simulator target, even though it isn't
43+
// declared that way in the target like the other ones...
44+
Arm64_sim | X86_64_sim => "sim",
3745
}
3846
}
3947

@@ -45,7 +53,7 @@ fn target_cpu(arch: Arch) -> &'static str {
4553
Arm64 => "apple-a7",
4654
Arm64_32 => "apple-s4",
4755
I386 => "yonah",
48-
X86_64 => "core2",
56+
X86_64 | X86_64_sim => "core2",
4957
X86_64_macabi => "core2",
5058
Arm64_macabi => "apple-a12",
5159
Arm64_sim => "apple-a12",
@@ -54,19 +62,20 @@ fn target_cpu(arch: Arch) -> &'static str {
5462

5563
fn link_env_remove(arch: Arch) -> Cow<'static, [Cow<'static, str>]> {
5664
match arch {
57-
Armv7 | Armv7k | Armv7s | Arm64 | Arm64_32 | I386 | X86_64 | Arm64_sim => {
65+
Armv7 | Armv7k | Armv7s | Arm64 | Arm64_32 | I386 | X86_64 | X86_64_sim | Arm64_sim => {
5866
cvs!["MACOSX_DEPLOYMENT_TARGET"]
5967
}
6068
X86_64_macabi | Arm64_macabi => cvs!["IPHONEOS_DEPLOYMENT_TARGET"],
6169
}
6270
}
6371

6472
pub fn opts(os: &'static str, arch: Arch) -> TargetOptions {
73+
let abi = target_abi(arch);
6574
TargetOptions {
66-
abi: target_abi(arch).into(),
75+
abi: abi.into(),
6776
cpu: target_cpu(arch).into(),
6877
link_env_remove: link_env_remove(arch),
6978
has_thread_local: false,
70-
..super::apple_base::opts(os, target_arch_name(arch), target_abi(arch))
79+
..super::apple_base::opts(os, target_arch_name(arch), abi)
7180
}
7281
}

compiler/rustc_target/src/spec/x86_64_apple_ios.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use super::apple_sdk_base::{opts, Arch};
22
use crate::spec::{StackProbeType, Target, TargetOptions};
33

44
pub fn target() -> Target {
5-
let base = opts("ios", Arch::X86_64);
5+
let base = opts("ios", Arch::X86_64_sim);
66
let llvm_target = super::apple_base::ios_sim_llvm_target("x86_64");
77

88
Target {

compiler/rustc_target/src/spec/x86_64_apple_tvos.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use super::apple_sdk_base::{opts, Arch};
22
use crate::spec::{StackProbeType, Target, TargetOptions};
33

44
pub fn target() -> Target {
5-
let base = opts("tvos", Arch::X86_64);
5+
let base = opts("tvos", Arch::X86_64_sim);
66
Target {
77
llvm_target: "x86_64-apple-tvos".into(),
88
pointer_width: 64,

compiler/rustc_target/src/spec/x86_64_apple_watchos_sim.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use super::apple_sdk_base::{opts, Arch};
22
use crate::spec::{StackProbeType, Target, TargetOptions};
33

44
pub fn target() -> Target {
5-
let base = opts("watchos", Arch::X86_64);
5+
let base = opts("watchos", Arch::X86_64_sim);
66

77
let arch = "x86_64";
88
let llvm_target = super::apple_base::watchos_sim_llvm_target(arch);

0 commit comments

Comments
 (0)