LDBFMIN, LDBFMINA, LDBFMINAL, LDBFMINL

BFloat16 floating-point atomic minimum in memory

This instruction atomically loads a 16-bit value from memory, computes the BFloat16 minimum with the value held in a register, and stores the result back to memory. The value initially loaded from memory is returned in the destination register.

This instruction:

For more information about memory ordering semantics, see Load-Acquire, Store-Release.

For information about addressing modes, see Load/Store addressing modes.

Floating-point
(FEAT_LSFE)

313029282726252423222120191817161514131211109876543210
00111100AR1Rs010100RnRt
sizeVRo3opc

Encoding for the No memory ordering variant

Applies when (A == 0 && R == 0)

LDBFMIN <Hs>, <Ht>, [<Xn|SP>]

Encoding for the Acquire variant

Applies when (A == 1 && R == 0)

LDBFMINA <Hs>, <Ht>, [<Xn|SP>]

Encoding for the Acquire-release variant

Applies when (A == 1 && R == 1)

LDBFMINAL <Hs>, <Ht>, [<Xn|SP>]

Encoding for the Release variant

Applies when (A == 0 && R == 1)

LDBFMINL <Hs>, <Ht>, [<Xn|SP>]

Decode for all variants of this encoding

if !IsFeatureImplemented(FEAT_LSFE) then EndOfDecode(Decode_UNDEF); constant integer t = UInt(Rt); constant integer n = UInt(Rn); constant integer s = UInt(Rs); constant integer datasize = 16; constant boolean acquire = A == '1'; constant boolean release = R == '1'; constant boolean tagchecked = n != 31;

Assembler Symbols

<Hs>

Is the 16-bit name of the SIMD&FP register holding the data value to be operated on with the contents of the memory location, encoded in the "Rs" field.

<Ht>

Is the 16-bit name of the SIMD&FP register to be loaded, encoded in the "Rt" field.

<Xn|SP>

Is the 64-bit name of the general-purpose base register or stack pointer, encoded in the "Rn" field.

Operation

CheckFPEnabled64(); bits(64) address; bits(datasize) value; bits(datasize) data; constant AccessDescriptor accdesc = CreateAccDescFPAtomicOp(MemAtomicOp_BFMIN, acquire, release, tagchecked); value = V[s, datasize]; if n == 31 then CheckSPAlignment(); address = SP[64]; else address = X[n, 64]; constant bits(datasize) comparevalue = bits(datasize) UNKNOWN; // Irrelevant when not executing CAS data = MemAtomic(address, comparevalue, value, accdesc); V[t, datasize] = data;


Internal version only: aarchmrs v2024-12_rel, pseudocode v2024-12_rel ; Build timestamp: 2024-12-15T22:18

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