XPACD, XPACI, XPACLRI

Strip Pointer Authentication Code

This instruction removes the Pointer Authentication Code from an address. The address is in the specified general-purpose register for XPACI and XPACD, and is in LR for XPACLRI.

The XPACD instruction is used for data addresses, and XPACI and XPACLRI are used for instruction addresses.

It has encodings from 2 classes: Integer and System

Integer
(FEAT_PAuth)

313029282726252423222120191817161514131211109876543210
110110101100000101000D11111Rd
sfSopcode2Rn

Encoding for the XPACD variant

Applies when (D == 1)

XPACD <Xd>

Encoding for the XPACI variant

Applies when (D == 0)

XPACI <Xd>

Decode for all variants of this encoding

if !IsFeatureImplemented(FEAT_PAuth) then EndOfDecode(Decode_UNDEF); constant integer d = UInt(Rd); constant boolean data = (D == '1');

System
(FEAT_PAuth)

313029282726252423222120191817161514131211109876543210
11010101000000110010000011111111
CRmop2

Encoding

XPACLRI

Decode for this encoding

if !IsFeatureImplemented(FEAT_PAuth) then EndOfDecode(Decode_NOP); constant integer d = 30; constant boolean data = FALSE;

Assembler Symbols

<Xd>

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

Operation

X[d, 64] = Strip(X[d, 64], data);


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.