ADR

Form PCC-relative address adds an immediate value to the PCC value to form a PCC-relative address, and writes the result to the destination register.

313029282726252423222120191817161514131211109876543210
0immlo10000PimmhiRd
op

ADR <Xd>, <label> // (PSTATE.C64 == '0')

ADR <Cd>, <label> // (PSTATE.C64 == '1')

integer d = UInt(Rd); bits(64) imm = SignExtend(P:immhi:immlo, 64);

Assembler Symbols

<Cd>

Is the capability name of the destination register, encoded in the "Rd" field.

<Xd>

Is the 64-bit name of the destination general-purpose register, encoded in the "Rd" field.

<label>

Is the program label whose address is to be calculated, in the range +/-1MB, encoded in "P:immhi:immlo".

Operation

if IsInC64() then Capability addr = PCC[]; C[d] = CapAdd(addr,imm); else bits (64) addr; if CCTLR[].PCCBO == '1' then addr = CapGetOffset(PCC[]); else addr = CapGetValue(PCC[]); X[d] = addr + imm;


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.