STG

Store Allocation Tag stores an Allocation Tag to memory. The address used for the store is calculated from the source register and an immediate signed offset scaled by the Tag granule. The Allocation Tag is calculated from the Logical Address Tag in the source register.

This instruction generates an Unchecked access.

It has encodings from 3 classes: Post-index , Pre-index and Signed offset

Post-index
(Armv8.5)

313029282726252423222120191817161514131211109876543210
11011001001imm901Xn(1)(1)(1)(1)(1)
Xt

Post-index

STG [<Xn|SP>], #<simm>

integer n = UInt(Xn); bits(64) offset = LSL(SignExtend(imm9, 64), LOG2_TAG_GRANULE); boolean writeback = TRUE; boolean postindex = TRUE; boolean zero_data = FALSE;

Pre-index
(Armv8.5)

313029282726252423222120191817161514131211109876543210
11011001001imm911Xn(1)(1)(1)(1)(1)
Xt

Pre-index

STG [<Xn|SP>, #<simm>]!

integer n = UInt(Xn); bits(64) offset = LSL(SignExtend(imm9, 64), LOG2_TAG_GRANULE); boolean writeback = TRUE; boolean postindex = FALSE; boolean zero_data = FALSE;

Signed offset
(Armv8.5)

313029282726252423222120191817161514131211109876543210
11011001001imm910Xn(1)(1)(1)(1)(1)
Xt

Signed offset

STG [<Xn|SP>{, #<simm>}]

integer n = UInt(Xn); bits(64) offset = LSL(SignExtend(imm9, 64), LOG2_TAG_GRANULE); boolean writeback = FALSE; boolean postindex = FALSE; boolean zero_data = FALSE;

Assembler Symbols

<Xn|SP>

Is the 64-bit name of the general-purpose base register or stack pointer, encoded in the "Xn" field.

<simm>

Is the optional signed immediate offset, a multiple of 16 in the range -4096 to 4080, defaulting to 0 and encoded in the "imm9" field.

Operation

bits(64) address; SetNotTagCheckedInstruction(TRUE); if n == 31 then CheckSPAlignment(); address = SP[]; else address = X[n]; if !postindex then address = address + offset; if zero_data then Mem[address, TAG_GRANULE, AccType_NORMAL] = Zeros(TAG_GRANULE * 8); MemTag[address] = AllocationTagFromAddress(address); if writeback then if postindex then address = address + offset; if n == 31 then SP[] = address; else X[n] = address;


Internal version only: isa v30.3, AdvSIMD v27.04, pseudocode v85-xml-00bet9_rc1_1, sve v8.5-00bet9_rc1 ; Build timestamp: 2018-12-12T11:50

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