Skip to content

Commit ec5f93a

Browse files
authored
Rollup merge of rust-lang#126070 - lengrongfu:feat/enable-f16, r=oli-obk
Enable f16 in assembly on aarch64 platforms that support it Issue: rust-lang#125398
2 parents d736b83 + 488fac9 commit ec5f93a

File tree

4 files changed

+22
-1
lines changed

4 files changed

+22
-1
lines changed

compiler/rustc_hir_analysis/src/check/intrinsicck.rs

+1
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ impl<'a, 'tcx> InlineAsmCtxt<'a, 'tcx> {
6262
ty::Int(IntTy::I64) | ty::Uint(UintTy::U64) => Some(InlineAsmType::I64),
6363
ty::Int(IntTy::I128) | ty::Uint(UintTy::U128) => Some(InlineAsmType::I128),
6464
ty::Int(IntTy::Isize) | ty::Uint(UintTy::Usize) => Some(asm_ty_isize),
65+
ty::Float(FloatTy::F16) => Some(InlineAsmType::F16),
6566
ty::Float(FloatTy::F32) => Some(InlineAsmType::F32),
6667
ty::Float(FloatTy::F64) => Some(InlineAsmType::F64),
6768
ty::FnPtr(_) => Some(asm_ty_isize),

compiler/rustc_target/src/asm/aarch64.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ impl AArch64InlineAsmRegClass {
5959
match self {
6060
Self::reg => types! { _: I8, I16, I32, I64, F32, F64; },
6161
Self::vreg | Self::vreg_low16 => types! {
62-
neon: I8, I16, I32, I64, F32, F64,
62+
neon: I8, I16, I32, I64, F16, F32, F64,
6363
VecI8(8), VecI16(4), VecI32(2), VecI64(1), VecF32(2), VecF64(1),
6464
VecI8(16), VecI16(8), VecI32(4), VecI64(2), VecF32(4), VecF64(2);
6565
},

compiler/rustc_target/src/asm/mod.rs

+3
Original file line numberDiff line numberDiff line change
@@ -707,6 +707,7 @@ pub enum InlineAsmType {
707707
I32,
708708
I64,
709709
I128,
710+
F16,
710711
F32,
711712
F64,
712713
VecI8(u64),
@@ -730,6 +731,7 @@ impl InlineAsmType {
730731
Self::I32 => 4,
731732
Self::I64 => 8,
732733
Self::I128 => 16,
734+
Self::F16 => 2,
733735
Self::F32 => 4,
734736
Self::F64 => 8,
735737
Self::VecI8(n) => n * 1,
@@ -751,6 +753,7 @@ impl fmt::Display for InlineAsmType {
751753
Self::I32 => f.write_str("i32"),
752754
Self::I64 => f.write_str("i64"),
753755
Self::I128 => f.write_str("i128"),
756+
Self::F16 => f.write_str("f16"),
754757
Self::F32 => f.write_str("f32"),
755758
Self::F64 => f.write_str("f64"),
756759
Self::VecI8(n) => write!(f, "i8x{n}"),

tests/ui/asm/aarch64/type-f16.rs

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
//@ only-aarch64
2+
3+
#![feature(f16, f128)]
4+
use std::arch::asm;
5+
#[inline(never)]
6+
pub fn f32_to_f16_asm(a: f32) -> f16 {
7+
let ret: f16;
8+
unsafe {
9+
asm!(
10+
"fcvt {ret:h}, {a:s}",
11+
a = in(vreg) a,
12+
ret = lateout(vreg) ret,
13+
options(nomem, nostack),
14+
);
15+
}
16+
ret
17+
}

0 commit comments

Comments
 (0)