FCVT

Floating-point convert precision (scalar)

This instruction converts the floating-point value in the SIMD&FP source register to the precision for the destination register data type using the rounding mode that is determined by the FPCR and writes the result to the SIMD&FP destination register.

Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.

Floating-point
(FEAT_FP)

313029282726252423222120191817161514131211109876543210
00011110ftype10001opc10000RnRd
MS

Encoding for the Half-precision to single-precision variant

Applies when (ftype == 11 && opc == 00)

FCVT <Sd>, <Hn>

Encoding for the Half-precision to double-precision variant

Applies when (ftype == 11 && opc == 01)

FCVT <Dd>, <Hn>

Encoding for the Single-precision to half-precision variant

Applies when (ftype == 00 && opc == 11)

FCVT <Hd>, <Sn>

Encoding for the Single-precision to double-precision variant

Applies when (ftype == 00 && opc == 01)

FCVT <Dd>, <Sn>

Encoding for the Double-precision to half-precision variant

Applies when (ftype == 01 && opc == 11)

FCVT <Hd>, <Dn>

Encoding for the Double-precision to single-precision variant

Applies when (ftype == 01 && opc == 00)

FCVT <Sd>, <Dn>

Decode for all variants of this encoding

if !IsFeatureImplemented(FEAT_FP) then EndOfDecode(Decode_UNDEF); end; if ftype == opc || ftype == '10' || opc == '10' then EndOfDecode(Decode_UNDEF); end; let d : integer{} = UInt(Rd); let n : integer{} = UInt(Rn); let srcsize : integer{} = 8 << UInt(ftype XOR '10'); let dstsize : integer{} = 8 << UInt(opc XOR '10');

Assembler Symbols

<Sd>

Is the 32-bit name of the SIMD&FP destination register, encoded in the "Rd" field.

<Hn>

Is the 16-bit name of the SIMD&FP source register, encoded in the "Rn" field.

<Dd>

Is the 64-bit name of the SIMD&FP destination register, encoded in the "Rd" field.

<Hd>

Is the 16-bit name of the SIMD&FP destination register, encoded in the "Rd" field.

<Sn>

Is the 32-bit name of the SIMD&FP source register, encoded in the "Rn" field.

<Dn>

Is the 64-bit name of the SIMD&FP source register, encoded in the "Rn" field.

Operation

AArch64_CheckFPEnabled(); let operand : bits(srcsize) = V{}(n); var result : bits(128) = if IsMerging(FPCR()) then V{128}(d) else Zeros{128}; result[0+:dstsize] = FPConvert{dstsize, srcsize}(operand, FPCR()); V{128}(d) = result;


2026-03_rel 2026-03-26 20:48:11

Copyright © 2010-2026 Arm Limited or its affiliates. All rights reserved. This document is Non-Confidential.