LDCT

Load capability tags loads 4 Capability Tags from memory and writes them to the destination register.

313029282726252423222120191817161514131211109876543210
1100001011000100101100RnRt
opc<1>opc<0>

LDCT <Xt>, [<Xn|SP>] // (PSTATE.C64 == '0')

LDCT <Xt>, [<Cn|CSP>] // (PSTATE.C64 == '1')

integer t = UInt(Rt); integer n = UInt(Rn);

Assembler Symbols

<Xt>

Is the 64-bit name of the general-purpose register to be transferred, 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.

<Cn|CSP>

Is the capability name of the base register or stack pointer, encoded in the "Rn" field.

Operation

CheckCapabilitiesEnabled(); VirtualAddress base = BaseReg[n]; integer count = 4; bits(64) addr = VAddress(base); VACheckAddress(base, addr, CAPABILITY_DBYTES*count, CAP_PERM_LOAD, AccType_NORMAL); bits(64) data = Zeros(64); if addr != Align(addr, CAPABILITY_DBYTES*count) then boolean iswrite = FALSE; boolean secondstage = FALSE; AArch64.Abort(addr, AArch64.AlignmentFault(AccType_NORMAL, iswrite, secondstage)); for i = 0 to count-1 bits(1) tag = AArch64.CapabilityTag(addr, AccType_NORMAL); data<i> = tag; addr = addr + CAPABILITY_DBYTES; if !VACheckPerm(base, CAP_PERM_LOAD_CAP) then data = Zeros(64); X[t] = data;


Internal version only: isa v32.13, AdvSIMD v29.04, pseudocode morello-2022-01_rc2, capabilities morello-2022-01_rc2 ; Build timestamp: 2022-01-11T11:23

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