LDRT

Load Register Unprivileged loads a word from memory, and writes it to a register. For information about memory accesses see Memory accesses.

The memory access is restricted as if the PE were running in User mode. This makes no difference if the PE is actually running in User mode.

LDRT is unpredictable in Hyp mode.

The T32 instruction uses an offset addressing mode, that calculates the address used for the memory access from a base register value and an immediate offset, and leaves the base register unchanged.

The A32 instruction uses a post-indexed addressing mode, that uses a base register value as the address for the memory access, and calculates a new address from a base register value and an offset and writes it back to the base register. The offset can be an immediate value or an optionally-shifted register value.

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

A1

313029282726252423222120191817161514131211109876543210
!= 11110100U011RnRtimm12
cond

A1

LDRT{<c>}{<q>} <Rt>, [<Rn>] {, #{+/-}<imm>}

constant t = UInt(Rt); constant n = UInt(Rn); constant postindex = TRUE; constant add = (U == '1'); constant register_form = FALSE; constant imm32 = ZeroExtend(imm12, 32); constant integer m = integer UNKNOWN; constant integer shift_n = integer UNKNOWN; constant SRType shift_t = SRType UNKNOWN; if t == 15 || n == 15 || n == t then UNPREDICTABLE;

CONSTRAINED UNPREDICTABLE behavior

If n == 15, then one of the following behaviors must occur:

If n == t && n != 15, then one of the following behaviors must occur:

A2

313029282726252423222120191817161514131211109876543210
!= 11110110U011RnRtimm5stype0Rm
cond

A2

LDRT{<c>}{<q>} <Rt>, [<Rn>], {+/-}<Rm>{, <shift>}

constant t = UInt(Rt); constant n = UInt(Rn); constant m = UInt(Rm); constant postindex = TRUE; constant add = (U == '1'); constant register_form = TRUE; constant (shift_t, shift_n) = DecodeImmShift(stype, imm5); constant bits(32) imm32 = bits(32) UNKNOWN; if t == 15 || n == 15 || n == t || m == 15 then UNPREDICTABLE;

CONSTRAINED UNPREDICTABLE behavior

If n == t && n != 15, then one of the following behaviors must occur:

T1

15141312111098765432101514131211109876543210
111110000101!= 1111Rt1110imm8
Rn

T1

LDRT{<c>}{<q>} <Rt>, [<Rn> {, #{+}<imm>}]

if Rn == '1111' then SEE "LDR (literal)"; constant t = UInt(Rt); constant n = UInt(Rn); constant postindex = FALSE; constant add = TRUE; constant register_form = FALSE; constant imm32 = ZeroExtend(imm8, 32); constant integer m = integer UNKNOWN; constant integer shift_n = integer UNKNOWN; constant SRType shift_t = SRType UNKNOWN; // Armv8-A removes UNPREDICTABLE for R13 if t == 15 then UNPREDICTABLE;

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.

<Rt>

For encoding A1: is the general-purpose register to be transferred, encoded in the "Rt" field. The PC can be used, but this is deprecated.

For encoding A2 and T1: is the general-purpose register to be transferred, encoded in the "Rt" field.

<Rn>

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

+/-

For encoding A1: specifies the offset is added to or subtracted from the base register, defaulting to + if omitted and encoded in U:

U +/-
0 -
1 +

For encoding A2: specifies the index register is added to or subtracted from the base register, defaulting to + if omitted and encoded in U:

U +/-
0 -
1 +
<Rm>

Is the general-purpose index register, encoded in the "Rm" field.

<shift>

The shift to apply to the value read from <Rm>. If absent, no shift is applied. Otherwise, see Shifts applied to a register.

+

Specifies the offset is added to the base register.

<imm>

For encoding A1: is the 12-bit unsigned immediate byte offset, in the range 0 to 4095, defaulting to 0 if omitted, and encoded in the "imm12" field.

For encoding T1: is an optional 8-bit unsigned immediate byte offset, in the range 0 to 255, defaulting to 0 and encoded in the "imm8" field.

Operation

if ConditionPassed() then EncodingSpecificOperations(); if PSTATE.EL == EL2 then UNPREDICTABLE; // Hyp mode constant offset = if register_form then Shift(R[m], shift_t, shift_n, PSTATE.C) else imm32; constant offset_addr = if add then (R[n] + offset) else (R[n] - offset); constant address = if postindex then R[n] else offset_addr; constant data = MemU_unpriv[address,4]; if postindex then R[n] = offset_addr; R[t] = data;

CONSTRAINED UNPREDICTABLE behavior

If PSTATE.EL == EL2, then one of the following behaviors must occur:

Operational information

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


Internal version only: isa v01_31, pseudocode v2024-03_rel ; Build timestamp: 2024-03-25T10:05

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