-
Notifications
You must be signed in to change notification settings - Fork 13.7k
Add armv8r-none-eabihf target for the Cortex-R52. #110482
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
35 changes: 35 additions & 0 deletions
35
compiler/rustc_target/src/spec/targets/armv8r_none_eabihf.rs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
// Targets the Little-endian Cortex-R52 processor (ARMv8-R) | ||
|
||
use crate::spec::{Cc, LinkerFlavor, Lld, PanicStrategy, RelocModel, Target, TargetOptions}; | ||
|
||
pub fn target() -> Target { | ||
Target { | ||
llvm_target: "armv8r-none-eabihf".into(), | ||
pointer_width: 32, | ||
data_layout: "e-m:e-p:32:32-Fi8-i64:64-v128:64:128-a:0:32-n32-S64".into(), | ||
arch: "arm".into(), | ||
|
||
options: TargetOptions { | ||
abi: "eabihf".into(), | ||
linker_flavor: LinkerFlavor::Gnu(Cc::No, Lld::Yes), | ||
linker: Some("rust-lld".into()), | ||
relocation_model: RelocModel::Static, | ||
panic_strategy: PanicStrategy::Abort, | ||
// The Cortex-R52 has two variants with respect to floating-point support: | ||
// 1. fp-armv8, SP-only, with 16 DP (32 SP) registers | ||
// 2. neon-fp-armv8, SP+DP, with 32 DP registers | ||
// Use the lesser of these two options as the default, as it will produce code | ||
// compatible with either variant. | ||
// | ||
// Reference: | ||
// Arm Cortex-R52 Processor Technical Reference Manual | ||
// - Chapter 15 Advanced SIMD and floating-point support | ||
features: "+fp-armv8,-fp64,-d32".into(), | ||
max_atomic_width: Some(64), | ||
emit_debug_gdb_scripts: false, | ||
// GCC defaults to 8 for arm-none here. | ||
c_enum_min_bits: Some(8), | ||
..Default::default() | ||
}, | ||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# `armv8r-none-eabihf` | ||
|
||
**Tier: 3** | ||
|
||
Bare-metal target for CPUs in the ARMv8-R architecture family, supporting | ||
dual ARM/Thumb mode, with ARM mode as the default. | ||
|
||
Processors in this family include the Arm [Cortex-R52][cortex-r52] | ||
and [Cortex-R52+][cortex-r52-plus]. | ||
|
||
See [`arm-none-eabi`](arm-none-eabi.md) for information applicable to all | ||
`arm-none-eabi` targets. | ||
|
||
[cortex-r52]: https://www.arm.com/products/silicon-ip-cpu/cortex-r/cortex-r52 | ||
[cortex-r52-plus]: https://www.arm.com/products/silicon-ip-cpu/cortex-r/cortex-r52-plus | ||
|
||
## Target maintainers | ||
|
||
- [Chris Copeland](https://github.com/chrisnc), `[email protected]` | ||
|
||
## Requirements | ||
|
||
The Cortex-R52 family always includes a floating-point unit, so there is no | ||
non-`hf` version of this target. The floating-point features assumed by this | ||
target are those of the single-precision-only config of the Cortex-R52, which | ||
has 16 double-precision registers, accessible as 32 single-precision registers. | ||
The other variant of Cortex-R52 includes double-precision, 32 double-precision | ||
registers, and Advanced SIMD (Neon). | ||
|
||
The manual refers to this as the "Full Advanced SIMD config". To compile code | ||
for this variant, use: `-C target-feature=+fp64,+d32,+neon`. See the [Advanced | ||
SIMD and floating-point support][fpu] section of the Cortex-R52 Processor | ||
Technical Reference Manual for more details. | ||
|
||
[fpu]: https://developer.arm.com/documentation/100026/0104/Advanced-SIMD-and-floating-point-support/About-the-Advanced-SIMD-and-floating-point-support | ||
|
||
## Cross-compilation toolchains and C code | ||
|
||
This target supports C code compiled with the `arm-none-eabi` target triple and | ||
`-march=armv8-r` or a suitable `-mcpu` flag. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.