I am new to linux GDB, and I have a questions on Aarch64 assembly:
On my assembler dump, there are the following lines:
0x0000005555555788 <+36>: str w0, [sp, #24]
0x000000555555578c <+40>: ldr w1, [sp, #24]
I know what LDR and STR means, and that w0, w1 represents registers,
But I would like to know the [sp, #24]
part. What does sp
and #24
mean?