]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_target/src/spec/thumbv8m_main_none_eabihf.rs
Auto merge of #77618 - fusion-engineering-forks:windows-parker, r=Amanieu
[rust.git] / compiler / rustc_target / src / spec / thumbv8m_main_none_eabihf.rs
1 // Targets the Cortex-M33 processor (Armv8-M Mainline architecture profile),
2 // with the Floating Point extension.
3
4 use crate::spec::{Target, TargetOptions};
5
6 pub fn target() -> Target {
7     Target {
8         llvm_target: "thumbv8m.main-none-eabihf".to_string(),
9         pointer_width: 32,
10         data_layout: "e-m:e-p:32:32-Fi8-i64:64-v128:64:128-a:0:32-n32-S64".to_string(),
11         arch: "arm".to_string(),
12
13         options: TargetOptions {
14             // If the Floating Point extension is implemented in the Cortex-M33
15             // processor, the Cortex-M33 Technical Reference Manual states that
16             // the FPU uses the FPv5 architecture, single-precision instructions
17             // and 16 D registers.
18             // These parameters map to the following LLVM features.
19             features: "+fp-armv8,-fp64,-d32".to_string(),
20             max_atomic_width: Some(32),
21             ..super::thumb_base::opts()
22         },
23     }
24 }