This is a collection of Intel®’ IA32® Software Developer's Manuals (URL of the day) and AMD' AMD64 Architecture Programmer's Manual together with the related specifications, application notes, white papers, and change logs. The collection aims to keep all available revisions. It was originally created by Michal Necasek, see OS/2 Museum.

If you have a public document, related to the IA32® specifications and missing from the collection, please mail it to me. The content of this URL and all sub-ULRs is available for convenient bulk download by rsync x86docs password "" (empty).

LDMDB, LDMEA -- AArch32

LDMDB, LDMEA

Load Multiple Decrement Before (Empty Ascending) loads multiple registers from consecutive memory locations using an address from a base register. The consecutive memory locations end just below this address, and the address of the lowest of those locations can optionally be written back to the base register.

The lowest-numbered register is loaded from the lowest memory address, through to the highest-numbered register from the highest memory address. See also Encoding of lists of general-purpose registers and the PC.

Armv8.2 permits the deprecation of some Load Multiple ordering behaviors in AArch32 state, for more information see FEAT_LSMAOC. The registers loaded can include the PC, causing a branch to a loaded address. This is an interworking branch, see Pseudocode description of operations on the AArch32 general-purpose registers and the PC. Related system instructions are LDM (User registers) and LDM (exception return).

It has encodings from the following instruction sets: A32 ( A1 ) and T32 ( T1 ) .

A1

313029282726252423222120191817161514131211109876543210
!= 1111100100W1Rnregister_list
condPUopL

Encoding

LDMDB{<c>}{<q>} <Rn>{!}, <registers> // (Preferred syntax)

LDMEA{<c>}{<q>} <Rn>{!}, <registers> // (Alternate syntax, Empty Ascending stack)

Decode for this encoding

let n : integer = UInt(Rn); let registers : bits(16) = register_list; let wback : boolean = (W == '1'); if n == 15 || BitCount(registers) < 1 then UnpredictableProcedure(); end; if wback && registers[n] == '1' then UnpredictableProcedure(); end;

CONSTRAINED UNPREDICTABLE behavior

If wback && registers<n> == '1', then one of the following behaviors must occur:

If BitCount(registers) < 1, then one of the following behaviors must occur:

T1

15141312111098765432101514131211109876543210
1110100100W1RnPMregister_list
opcL

Encoding

LDMDB{<c>}{<q>} <Rn>{!}, <registers> // (Preferred syntax)

LDMEA{<c>}{<q>} <Rn>{!}, <registers> // (Alternate syntax, Empty Ascending stack)

Decode for this encoding

let n : integer = UInt(Rn); let registers : bits(16) = P::M::register_list; let wback : boolean = (W == '1'); if n == 15 || BitCount(registers) < 2 || (P == '1' && M == '1') then UnpredictableProcedure(); end; if wback && registers[n] == '1' then UnpredictableProcedure(); end; if registers[13] == '1' then UnpredictableProcedure(); end; if registers[15] == '1' && InITBlock() && !LastInITBlock() then UnpredictableProcedure(); end;

CONSTRAINED UNPREDICTABLE behavior

If wback && registers<n> == '1', then one of the following behaviors must occur:

If BitCount(registers) < 1, then one of the following behaviors must occur:

If BitCount(registers) == 1, then one of the following behaviors must occur:

If registers<13> == '1', then one of the following behaviors must occur:

If P == '1' && M == '1', then one of the following behaviors must occur:

For more information about the CONSTRAINED UNPREDICTABLE behavior of this instruction, see Architectural Constraints on UNPREDICTABLE behaviors.

Assembler Symbols

<c>

See Standard assembler syntax fields.

<q>

See Standard assembler syntax fields.

<Rn>

Is the general-purpose base register, encoded in the "Rn" field.

!

The address adjusted by the size of the data loaded is written back to the base register. If specified, it is encoded in the "W" field as 1, otherwise this field defaults to 0.

<registers>

For the "A1" variant: is a list of one or more registers to be loaded, separated by commas and surrounded by { and }.

The PC can be in the list.

Arm deprecates using these instructions with both the LR and the PC in the list.

For the "T1" variant: is a list of one or more registers to be loaded, separated by commas and surrounded by { and }. The registers in the list must be in the range R0-R12, encoded in the "register_list" field, and can optionally contain one of the LR or the PC. If the LR is in the list, the "M" field is set to 1, otherwise it defaults to 0. If the PC is in the list, the "P" field is set to 1, otherwise it defaults to 0.

If the PC is in the list:

  • The LR must not be in the list.
  • The instruction must be either outside any IT block, or the last instruction in an IT block.

Operation

if ConditionPassed() then EncodingSpecificOperations(); var address : bits(32) = R(n) - 4*BitCount(registers); var data : bits(32); for i = 0 to 14 do if registers[i] == '1' then if i != n then R(i) = MemS{32}(address); else data = MemS{32}(address); end; address = address + 4; end; end; if registers[15] == '1' then LoadWritePC(MemS{32}(address)); end; if wback && registers[n] == '1' then R(n) = ARBITRARY : bits(32); end; if wback && registers[n] == '0' then R(n) = R(n) - 4*BitCount(registers); end; if !wback && registers[n] == '1' then R(n) = data; end; end;

Operational information

This instruction is a data-independent-time instruction as described in About the DIT bit.


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.