STTADD, STTADDL

Atomic add unprivileged, without return

This instruction atomically loads a 32-bit word or 64-bit doubleword from memory, adds the value held in a register to it, and stores the result back to memory.

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

This is an alias of LDTADD, LDTADDA, LDTADDAL, LDTADDL. This means:

Integer
(FEAT_LSUI)

313029282726252423222120191817161514131211109876543210
0sz0110010R1Rs000001Rn11111
Ao3opcRt

Encoding for the 32-bit no memory ordering variant

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

STTADD <Ws>, [<Xn|SP>]

is equivalent to

LDTADD <Ws>, WZR, [<Xn|SP>]

and is always the preferred disassembly.

Encoding for the 32-bit release variant

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

STTADDL <Ws>, [<Xn|SP>]

is equivalent to

LDTADDL <Ws>, WZR, [<Xn|SP>]

and is always the preferred disassembly.

Encoding for the 64-bit no memory ordering variant

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

STTADD <Xs>, [<Xn|SP>]

is equivalent to

LDTADD <Xs>, XZR, [<Xn|SP>]

and is always the preferred disassembly.

Encoding for the 64-bit release variant

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

STTADDL <Xs>, [<Xn|SP>]

is equivalent to

LDTADDL <Xs>, XZR, [<Xn|SP>]

and is always the preferred disassembly.

Assembler Symbols

<Ws>

Is the 32-bit name of the general-purpose register holding the data value to be operated on with the contents of the memory location, encoded in the "Rs" field.

<Xn|SP>

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

<Xs>

Is the 64-bit name of the general-purpose register holding the data value to be operated on with the contents of the memory location, encoded in the "Rs" field.

Operation

The description of LDTADD, LDTADDA, LDTADDAL, LDTADDL gives the operational pseudocode for this instruction.

Operational information

If PSTATE.DIT is 1, the timing of this instruction is insensitive to the value of the data being loaded or stored.


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.