Skip to content

Commit 19079cf

Browse files
committed
Auto merge of #115526 - arttet:master, r=jackh726
Add arm64e-apple-ios & arm64e-apple-darwin targets This introduces * `arm64e-apple-ios` * `arm64e-apple-darwin` Rust targets for support `arm64e` architecture on `iOS` and `Darwin`. So, this is a first approach for integrating to the Rust compiler. ## Tier 3 Target Policy > * A tier 3 target must have a designated developer or developers (the "target maintainers") on record to be CCed when issues arise regarding the target. (The mechanism to track and CC such developers may evolve over time.) I will be the target maintainer. > * Targets must use naming consistent with any existing targets; for instance, a target for the same CPU or OS as an existing Rust target should use the same name for that CPU or OS. Targets should normally use the same names and naming conventions as used elsewhere in the broader ecosystem beyond Rust (such as in other toolchains), unless they have a very good reason to diverge. Changing the name of a target can be highly disruptive, especially once the target reaches a higher tier, so getting the name right is important even for a tier 3 target. Target names should not introduce undue confusion or ambiguity unless absolutely necessary to maintain ecosystem compatibility. For example, if the name of the target makes people extremely likely to form incorrect beliefs about what it targets, the name should be changed or augmented to disambiguate it. If possible, use only letters, numbers, dashes and underscores for the name. Periods (.) are known to cause issues in Cargo. The target names `arm64e-apple-ios`, `arm64e-apple-darwin` were derived from `aarch64-apple-ios`, `aarch64-apple-darwin`. In this [ticket,](#73628) people discussed the best suitable names for these targets. > In some cases, the arm64e arch might be "different". For example: > * `thread_set_state` might fail with (os/kern) protection failure if we try to call it from arm64 process to arm64e process. > * The returning value of dlsym is PAC signed on arm64e, while left untouched on arm64 > * Some function like pthread_create_from_mach_thread requires a PAC signed function pointer on arm64e, which is not required on arm64. So, I have chosen them because there are similar triplets in LLVM. I think there are no more suitable names for these targets. > * Tier 3 targets may have unusual requirements to build or use, but must not create legal issues or impose onerous legal terms for the Rust project or for Rust developers or users. The target must not introduce license incompatibilities. Anything added to the Rust repository must be under the standard Rust license (MIT OR Apache-2.0). The target must not cause the Rust tools or libraries built for any other host (even when supporting cross-compilation to the target) to depend on any new dependency less permissive than the Rust licensing policy. This applies whether the dependency is a Rust crate that would require adding new license exceptions (as specified by the tidy tool in the rust-lang/rust repository), or whether the dependency is a native library or binary. In other words, the introduction of the target must not cause a user installing or running a version of Rust or the Rust tools to be subject to any new license requirements. Compiling, linking, and emitting functional binaries, libraries, or other code for the target (whether hosted on the target itself or cross-compiling from another target) must not depend on proprietary (non-FOSS) libraries. Host tools built for the target itself may depend on the ordinary runtime libraries supplied by the platform and commonly used by other applications built for the target, but those libraries must not be required for code generation for the target; cross-compilation to the target must not require such libraries at all. For instance, rustc built for the target may depend on a common proprietary C runtime library or console output library, but must not depend on a proprietary code generation library or code optimization library. Rust's license permits such combinations, but the Rust project has no interest in maintaining such combinations within the scope of Rust itself, even at tier 3. "onerous" here is an intentionally subjective term. At a minimum, "onerous" legal/licensing terms include but are not limited to: non-disclosure requirements, non-compete requirements, contributor license agreements (CLAs) or equivalent, "non-commercial"/"research-only"/etc terms, requirements conditional on the employer or employment of any particular Rust developers, revocable terms, any requirements that create liability for the Rust project or its developers or users, or any requirements that adversely affect the livelihood or prospects of the Rust project or its developers or users. No dependencies were added to Rust. > * Neither this policy nor any decisions made regarding targets shall create any binding agreement or estoppel by any party. If any member of an approving Rust team serves as one of the maintainers of a target, or has any legal or employment requirement (explicit or implicit) that might affect their decisions regarding a target, they must recuse themselves from any approval decisions regarding the target's tier status, though they may otherwise participate in discussions. > * This requirement does not prevent part or all of this policy from being cited in an explicit contract or work agreement (e.g. to implement or maintain support for a target). This requirement exists to ensure that a developer or team responsible for reviewing and approving a target does not face any legal threats or obligations that would prevent them from freely exercising their judgment in such approval, even if such judgment involves subjective matters or goes beyond the letter of these requirements. Understood. I am not a member of a Rust team. > * Tier 3 targets should attempt to implement as much of the standard libraries as possible and appropriate (core for most targets, alloc for targets that can support dynamic memory allocation, std for targets with an operating system or equivalent layer of system-provided functionality), but may leave some code unimplemented (either unavailable or stubbed out as appropriate), whether because the target makes it impossible to implement or challenging to implement. The authors of pull requests are not obligated to avoid calling any portions of the standard library on the basis of a tier 3 target not implementing those portions. Understood. `std` is supported. > * The target must provide documentation for the Rust community explaining how to build for the target, using cross-compilation if possible. If the target supports running binaries, or running tests (even if they do not pass), the documentation must explain how to run such binaries or tests for the target, using emulation if possible or dedicated hardware if necessary. Building is described in the derived target doc. > * Tier 3 targets must not impose burden on the authors of pull requests, or other developers in the community, to maintain the target. In particular, do not post comments (automated or manual) on a PR that derail or suggest a block on the PR based on a tier 3 target. Do not send automated messages or notifications (via any medium, including via `@)` to a PR author or others involved with a PR regarding a tier 3 target, unless they have opted into such messages. > * Backlinks such as those generated by the issue/PR tracker when linking to an issue or PR are not considered a violation of this policy, within reason. However, such messages (even on a separate repository) must not generate notifications to anyone involved with a PR who has not requested such notifications. Understood. > * Patches adding or updating tier 3 targets must not break any existing tier 2 or tier 1 target, and must not knowingly break another tier 3 target without approval of either the compiler team or the maintainers of the other tier 3 target. > * In particular, this may come up when working on closely related targets, such as variations of the same architecture with different features. Avoid introducing unconditional uses of features that another variation of the target may not have; use conditional compilation or runtime detection, as appropriate, to let each target run code supported by that target. These targets are not fully ABI compatible with arm64e code. #73628
2 parents 4f3da90 + a787208 commit 19079cf

File tree

12 files changed

+179
-18
lines changed

12 files changed

+179
-18
lines changed

Cargo.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -2591,9 +2591,9 @@ checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
25912591

25922592
[[package]]
25932593
name = "object"
2594-
version = "0.32.0"
2594+
version = "0.32.1"
25952595
source = "registry+https://github.com/rust-lang/crates.io-index"
2596-
checksum = "77ac5bbd07aea88c60a577a1ce218075ffd59208b2d7ca97adf9bfc5aeb21ebe"
2596+
checksum = "9cf5f9dd3933bd50a9e1f149ec995f39ae2c496d31fd772c1fd45ebc27e902b0"
25972597
dependencies = [
25982598
"compiler_builtins",
25992599
"crc32fast",

compiler/rustc_codegen_ssa/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ libc = "0.2.50"
4646
# tidy-alphabetical-end
4747

4848
[dependencies.object]
49-
version = "0.32.0"
49+
version = "0.32.1"
5050
default-features = false
5151
features = ["read_core", "elf", "macho", "pe", "xcoff", "unaligned", "archive", "write"]
5252

compiler/rustc_codegen_ssa/src/back/metadata.rs

+9
Original file line numberDiff line numberDiff line change
@@ -226,6 +226,10 @@ pub(crate) fn create_object_file(sess: &Session) -> Option<write::Object<'static
226226

227227
let mut file = write::Object::new(binary_format, architecture, endianness);
228228
if sess.target.is_like_osx {
229+
if macho_is_arm64e(&sess.target) {
230+
file.set_macho_cpu_subtype(object::macho::CPU_SUBTYPE_ARM64E);
231+
}
232+
229233
file.set_macho_build_version(macho_object_build_version_for_target(&sess.target))
230234
}
231235
if binary_format == BinaryFormat::Coff {
@@ -385,6 +389,11 @@ fn macho_object_build_version_for_target(target: &Target) -> object::write::Mach
385389
build_version
386390
}
387391

392+
/// Is Apple's CPU subtype `arm64e`s
393+
fn macho_is_arm64e(target: &Target) -> bool {
394+
return target.llvm_target.starts_with("arm64e");
395+
}
396+
388397
pub enum MetadataPosition {
389398
First,
390399
Last,

compiler/rustc_target/src/spec/base/apple/mod.rs

+29-15
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,12 @@ mod tests;
99

1010
use Arch::*;
1111
#[allow(non_camel_case_types)]
12-
#[derive(Copy, Clone)]
12+
#[derive(Copy, Clone, PartialEq)]
1313
pub enum Arch {
1414
Armv7k,
1515
Armv7s,
1616
Arm64,
17+
Arm64e,
1718
Arm64_32,
1819
I386,
1920
I686,
@@ -31,6 +32,7 @@ impl Arch {
3132
Armv7k => "armv7k",
3233
Armv7s => "armv7s",
3334
Arm64 | Arm64_macabi | Arm64_sim => "arm64",
35+
Arm64e => "arm64e",
3436
Arm64_32 => "arm64_32",
3537
I386 => "i386",
3638
I686 => "i686",
@@ -42,15 +44,15 @@ impl Arch {
4244
pub fn target_arch(self) -> Cow<'static, str> {
4345
Cow::Borrowed(match self {
4446
Armv7k | Armv7s => "arm",
45-
Arm64 | Arm64_32 | Arm64_macabi | Arm64_sim => "aarch64",
47+
Arm64 | Arm64e | Arm64_32 | Arm64_macabi | Arm64_sim => "aarch64",
4648
I386 | I686 => "x86",
4749
X86_64 | X86_64_sim | X86_64_macabi | X86_64h => "x86_64",
4850
})
4951
}
5052

5153
fn target_abi(self) -> &'static str {
5254
match self {
53-
Armv7k | Armv7s | Arm64 | Arm64_32 | I386 | I686 | X86_64 | X86_64h => "",
55+
Armv7k | Armv7s | Arm64 | Arm64e | Arm64_32 | I386 | I686 | X86_64 | X86_64h => "",
5456
X86_64_macabi | Arm64_macabi => "macabi",
5557
// x86_64-apple-ios is a simulator target, even though it isn't
5658
// declared that way in the target like the other ones...
@@ -63,6 +65,7 @@ impl Arch {
6365
Armv7k => "cortex-a8",
6466
Armv7s => "swift", // iOS 10 is only supported on iPhone 5 or higher.
6567
Arm64 => "apple-a7",
68+
Arm64e => "apple-a12",
6669
Arm64_32 => "apple-s4",
6770
// Only macOS 10.12+ is supported, which means
6871
// all x86_64/x86 CPUs must be running at least penryn
@@ -88,7 +91,7 @@ fn pre_link_args(os: &'static str, arch: Arch, abi: &'static str) -> LinkArgs {
8891
};
8992

9093
let platform_version: StaticCow<str> = match os {
91-
"ios" => ios_lld_platform_version(),
94+
"ios" => ios_lld_platform_version(arch),
9295
"tvos" => tvos_lld_platform_version(),
9396
"watchos" => watchos_lld_platform_version(),
9497
"macos" => macos_lld_platform_version(arch),
@@ -202,12 +205,22 @@ pub fn deployment_target(target: &Target) -> Option<(u32, u32)> {
202205
let (major, minor) = match &*target.os {
203206
"macos" => {
204207
// This does not need to be specific. It just needs to handle x86 vs M1.
205-
let arch = if target.arch == "x86" || target.arch == "x86_64" { X86_64 } else { Arm64 };
208+
let arch = match target.arch.as_ref() {
209+
"x86" | "x86_64" => X86_64,
210+
"arm64e" => Arm64e,
211+
_ => Arm64,
212+
};
206213
macos_deployment_target(arch)
207214
}
208215
"ios" => match &*target.abi {
209216
"macabi" => mac_catalyst_deployment_target(),
210-
_ => ios_deployment_target(),
217+
_ => {
218+
let arch = match target.arch.as_ref() {
219+
"arm64e" => Arm64e,
220+
_ => Arm64,
221+
};
222+
ios_deployment_target(arch)
223+
}
211224
},
212225
"watchos" => watchos_deployment_target(),
213226
"tvos" => tvos_deployment_target(),
@@ -228,7 +241,7 @@ fn from_set_deployment_target(var_name: &str) -> Option<(u32, u32)> {
228241
fn macos_default_deployment_target(arch: Arch) -> (u32, u32) {
229242
match arch {
230243
// Note: Arm64_sim is not included since macOS has no simulator.
231-
Arm64 | Arm64_macabi => (11, 0),
244+
Arm64 | Arm64e | Arm64_macabi => (11, 0),
232245
_ => (10, 12),
233246
}
234247
}
@@ -280,18 +293,19 @@ fn link_env_remove(arch: Arch, os: &'static str) -> StaticCow<[StaticCow<str>]>
280293
// Otherwise if cross-compiling for a different OS/SDK, remove any part
281294
// of the linking environment that's wrong and reversed.
282295
match arch {
283-
Armv7k | Armv7s | Arm64 | Arm64_32 | I386 | I686 | X86_64 | X86_64_sim | X86_64h
284-
| Arm64_sim => {
296+
Armv7k | Armv7s | Arm64 | Arm64e | Arm64_32 | I386 | I686 | X86_64 | X86_64_sim
297+
| X86_64h | Arm64_sim => {
285298
cvs!["MACOSX_DEPLOYMENT_TARGET"]
286299
}
287300
X86_64_macabi | Arm64_macabi => cvs!["IPHONEOS_DEPLOYMENT_TARGET"],
288301
}
289302
}
290303
}
291304

292-
fn ios_deployment_target() -> (u32, u32) {
305+
fn ios_deployment_target(arch: Arch) -> (u32, u32) {
293306
// If you are looking for the default deployment target, prefer `rustc --print deployment-target`.
294-
from_set_deployment_target("IPHONEOS_DEPLOYMENT_TARGET").unwrap_or((10, 0))
307+
let (major, minor) = if arch == Arm64e { (14, 0) } else { (10, 0) };
308+
from_set_deployment_target("IPHONEOS_DEPLOYMENT_TARGET").unwrap_or((major, minor))
295309
}
296310

297311
fn mac_catalyst_deployment_target() -> (u32, u32) {
@@ -306,17 +320,17 @@ pub fn ios_llvm_target(arch: Arch) -> String {
306320
// set high enough. Luckily one LC_BUILD_VERSION is enough, for Xcode
307321
// to pick it up (since std and core are still built with the fallback
308322
// of version 7.0 and hence emit the old LC_IPHONE_MIN_VERSION).
309-
let (major, minor) = ios_deployment_target();
323+
let (major, minor) = ios_deployment_target(arch);
310324
format!("{}-apple-ios{}.{}.0", arch.target_name(), major, minor)
311325
}
312326

313-
fn ios_lld_platform_version() -> String {
314-
let (major, minor) = ios_deployment_target();
327+
fn ios_lld_platform_version(arch: Arch) -> String {
328+
let (major, minor) = ios_deployment_target(arch);
315329
format!("{major}.{minor}")
316330
}
317331

318332
pub fn ios_sim_llvm_target(arch: Arch) -> String {
319-
let (major, minor) = ios_deployment_target();
333+
let (major, minor) = ios_deployment_target(arch);
320334
format!("{}-apple-ios{}.{}.0-simulator", arch.target_name(), major, minor)
321335
}
322336

compiler/rustc_target/src/spec/mod.rs

+2
Original file line numberDiff line numberDiff line change
@@ -1544,6 +1544,7 @@ supported_targets! {
15441544
("i686-unknown-hurd-gnu", i686_unknown_hurd_gnu),
15451545

15461546
("aarch64-apple-darwin", aarch64_apple_darwin),
1547+
("arm64e-apple-darwin", arm64e_apple_darwin),
15471548
("x86_64-apple-darwin", x86_64_apple_darwin),
15481549
("x86_64h-apple-darwin", x86_64h_apple_darwin),
15491550
("i686-apple-darwin", i686_apple_darwin),
@@ -1566,6 +1567,7 @@ supported_targets! {
15661567
("i386-apple-ios", i386_apple_ios),
15671568
("x86_64-apple-ios", x86_64_apple_ios),
15681569
("aarch64-apple-ios", aarch64_apple_ios),
1570+
("arm64e-apple-ios", arm64e_apple_ios),
15691571
("armv7s-apple-ios", armv7s_apple_ios),
15701572
("x86_64-apple-ios-macabi", x86_64_apple_ios_macabi),
15711573
("aarch64-apple-ios-macabi", aarch64_apple_ios_macabi),
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
use crate::spec::base::apple::{macos_llvm_target, opts, Arch};
2+
use crate::spec::{FramePointer, SanitizerSet, Target, TargetOptions};
3+
4+
pub fn target() -> Target {
5+
let arch = Arch::Arm64e;
6+
let mut base = opts("macos", arch);
7+
base.cpu = "apple-m1".into();
8+
base.max_atomic_width = Some(128);
9+
10+
// FIXME: The leak sanitizer currently fails the tests, see #88132.
11+
base.supported_sanitizers = SanitizerSet::ADDRESS | SanitizerSet::CFI | SanitizerSet::THREAD;
12+
13+
Target {
14+
// Clang automatically chooses a more specific target based on
15+
// MACOSX_DEPLOYMENT_TARGET. To enable cross-language LTO to work
16+
// correctly, we do too.
17+
llvm_target: macos_llvm_target(arch).into(),
18+
pointer_width: 64,
19+
data_layout: "e-m:o-i64:64-i128:128-n32:64-S128".into(),
20+
arch: arch.target_arch(),
21+
options: TargetOptions {
22+
mcount: "\u{1}mcount".into(),
23+
frame_pointer: FramePointer::NonLeaf,
24+
..base
25+
},
26+
}
27+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
use crate::spec::base::apple::{ios_llvm_target, opts, Arch};
2+
use crate::spec::{FramePointer, SanitizerSet, Target, TargetOptions};
3+
4+
pub fn target() -> Target {
5+
let arch = Arch::Arm64e;
6+
let mut base = opts("ios", arch);
7+
base.supported_sanitizers = SanitizerSet::ADDRESS | SanitizerSet::THREAD;
8+
9+
Target {
10+
llvm_target: ios_llvm_target(arch).into(),
11+
pointer_width: 64,
12+
data_layout: "e-m:o-i64:64-i128:128-n32:64-S128".into(),
13+
arch: arch.target_arch(),
14+
options: TargetOptions {
15+
features: "+neon,+fp-armv8,+apple-a12,+v8.3a,+paca,+pacg".into(),
16+
max_atomic_width: Some(128),
17+
forces_embed_bitcode: true,
18+
frame_pointer: FramePointer::NonLeaf,
19+
bitcode_llvm_cmdline: "-triple\0\
20+
arm64e-apple-ios14.1.0\0\
21+
-emit-obj\0\
22+
-disable-llvm-passes\0\
23+
-target-abi\0\
24+
darwinpcs\0\
25+
-Os\0"
26+
.into(),
27+
..base
28+
},
29+
}
30+
}

src/doc/rustc/src/SUMMARY.md

+2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
- [Platform Support](platform-support.md)
1616
- [Target Tier Policy](target-tier-policy.md)
1717
- [Template for Target-specific Documentation](platform-support/TEMPLATE.md)
18+
- [arm64e-apple-ios.md](platform-support/arm64e-apple-ios.md)
19+
- [arm64e-apple-darwin.md](platform-support/arm64e-apple-darwin.md)
1820
- [aarch64-apple-ios-sim](platform-support/aarch64-apple-ios-sim.md)
1921
- [\*-apple-tvos](platform-support/apple-tvos.md)
2022
- [\*-apple-watchos\*](platform-support/apple-watchos.md)

src/doc/rustc/src/platform-support.md

+2
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,8 @@ host tools.
215215

216216
target | std | host | notes
217217
-------|:---:|:----:|-------
218+
[`arm64e-apple-ios`](platform-support/arm64e-apple-ios.md) | ✓ | | ARM64e Apple iOS
219+
[`arm64e-apple-darwin`](platform-support/arm64e-apple-darwin.md) | ✓ | ✓ | ARM64e Apple Darwin
218220
`aarch64-apple-ios-macabi` | ? | | Apple Catalyst on ARM64
219221
[`aarch64-apple-tvos`](platform-support/apple-tvos.md) | ? | | ARM64 tvOS
220222
[`aarch64-apple-tvos-sim`](platform-support/apple-tvos.md) | ? | | ARM64 tvOS Simulator
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# `arm64e-apple-darwin`
2+
3+
**Tier: 3 (with Host Tools)**
4+
5+
ARM64e macOS (11.0+, Big Sur+)
6+
7+
## Target maintainers
8+
9+
- Artyom Tetyukhin ([@arttet](https://github.com/https://github.com/arttet))
10+
11+
## Requirements
12+
13+
Target for `macOS` on late-generation `M` series Apple chips.
14+
15+
## Building the target
16+
17+
You can build Rust with support for the targets by adding it to the `target` list in `config.toml`:
18+
19+
```toml
20+
[build]
21+
target = [ "arm64e-apple-darwin" ]
22+
```
23+
24+
## Building Rust programs
25+
26+
Rust does not yet ship pre-compiled artifacts for this target.
27+
To compile for this target, you will need to build Rust with the target enabled (see [Building the target](#building-the-target) above).
28+
29+
## Testing
30+
31+
The target does support running binaries on macOS platforms with `arm64e` architecture.
32+
33+
## Cross-compilation toolchains and C code
34+
35+
The targets do support `C` code.
36+
To build compatible `C` code, you have to use XCode with the same compiler and flags.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# `arm64e-apple-ios`
2+
3+
**Tier: 3**
4+
5+
ARM64e iOS (12.0+)
6+
7+
## Target maintainers
8+
9+
- Artyom Tetyukhin ([@arttet](https://github.com/https://github.com/arttet))
10+
11+
## Requirements
12+
13+
These targets only support cross-compilation.
14+
The targets do support `std`.
15+
16+
## Building the target
17+
18+
You can build Rust with support for the targets by adding it to the `target` list in `config.toml`:
19+
20+
```toml
21+
[build]
22+
target = [ "arm64e-apple-ios" ]
23+
```
24+
25+
## Building Rust programs
26+
27+
Rust does not yet ship pre-compiled artifacts for this target.
28+
To compile for this target, you will need to build Rust with the target enabled (see [Building the target](#building-the-target) above).
29+
30+
## Testing
31+
32+
The target does support running binaries on iOS platforms with `arm64e` architecture.
33+
34+
## Cross-compilation toolchains and C code
35+
36+
The targets do support `C` code.
37+
To build compatible `C` code, you have to use XCode with the same compiler and flags.

src/tools/build-manifest/src/main.rs

+2
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,9 @@ static HOSTS: &[&str] = &[
5050

5151
static TARGETS: &[&str] = &[
5252
"aarch64-apple-darwin",
53+
"arm64e-apple-darwin",
5354
"aarch64-apple-ios",
55+
"arm64e-apple-ios",
5456
"aarch64-apple-ios-sim",
5557
"aarch64-unknown-fuchsia",
5658
"aarch64-linux-android",

0 commit comments

Comments
 (0)