In A64 assembler, there are different ways to specify addresses.
/*
[base{,#0}] Simple register (exclusive) - Immediate Offset
[base{,#imm}] Offset - Immediate Offset
[base,Xm{,LSL #imm}] Offset - Register Offset
[base,Wm,(S|U)XTW {#imm}] Offset - Extended Register Offset
[base,#imm]! Pre-indexed - Immediate Offset
[base],#imm Post-indexed - Immediate Offset
label PC-relative (literal) load - Immediate Offset
*/
I would like to use "Offset - Immediate Offset" in inline assembler.
__asm__("ldp x8, x9, %0, 16 \n\t"
:
: "m" (*somePointer)
: "x8", "x9");
This gets translated to
ldp x8, x9, [x0], 16
My goal is to reach
ldp x8, x9, [x0, 16]
How can I write such instructions with inline assembler?
I don't have an ARM 64-bit toolchain to test this with, but you should be able to do something like this:
The
Ump
constraint limits the memory operand to those permitted by the integer LDP instruction, otherwise it works like them
constraint. IfsomePointer
is already a pointer to a 128-bit type you can just usesomePointer[1]
as the operand.If the above doesn't work then David Wohlferd's suggestion should: