]> git.proxmox.com Git - rustc.git/blame - compiler/rustc_target/src/spec/thumbv7em_none_eabi.rs
New upstream version 1.55.0+dfsg1
[rustc.git] / compiler / rustc_target / src / spec / thumbv7em_none_eabi.rs
CommitLineData
c30ab7b3
SL
1// Targets the Cortex-M4 and Cortex-M7 processors (ARMv7E-M)
2//
3// This target assumes that the device doesn't have a FPU (Floating Point Unit) and lowers all the
4// floating point operations to software routines (intrinsics).
5//
6// As such, this target uses the "soft" calling convention (ABI) where floating point values are
7// passed to/from subroutines via general purpose registers (R0, R1, etc.).
8//
9// To opt-in to hardware accelerated floating point operations, you can use, for example,
10// `-C target-feature=+vfp4` or `-C target-cpu=cortex-m4`.
11
29967ef6 12use crate::spec::{Target, TargetOptions};
c30ab7b3 13
29967ef6
XL
14pub fn target() -> Target {
15 Target {
c30ab7b3 16 llvm_target: "thumbv7em-none-eabi".to_string(),
29967ef6 17 pointer_width: 32,
416331ca 18 data_layout: "e-m:e-p:32:32-Fi8-i64:64-v128:64:128-a:0:32-n32-S64".to_string(),
c30ab7b3 19 arch: "arm".to_string(),
c30ab7b3 20
136023e0
XL
21 options: TargetOptions {
22 abi: "eabi".to_string(),
23 max_atomic_width: Some(32),
24 ..super::thumb_base::opts()
25 },
29967ef6 26 }
c30ab7b3 27}