ARMV8-aarch64的通用寄存器介绍general-purpose registers

时间:2024-03-22 18:41:53

1、通用寄存器

ARMv8有31个通用寄存器X0-X30, 还有SP、PC、XZR等寄存器
下面详细介绍写这些通用寄存器:

  • (1)、X0-X7 Argument registers
    用于参数传递

These are used to pass parameters to a function and to return a result. They can be used as scratch registers or as caller-saved register variables that can hold intermediate values within a function, between calls to other unctions. The fact that 8 registers are available for passing parameters reduces the need to spill parameters to the stack when compared with AArch32

  • (2)、X9-X15 Caller-saved temporary registers
    在子函数中使用这些寄存器时,直接使用即可, 无需save/restore. 在汇编代码中x9-x15出现的频率极低

If the caller requires the values in any of these registers to be preserved across a call to another function, the caller must save the affected registers in its own stack frame. They can be modified by the called subroutine ithout the need to save and restore them before returning to the caller.

  • (3)、X19-X29 Callee-saved registers (X19-X29)
    在callee子函数中使用这些寄存器时,需要先save这些寄存器,在退出子函数时再resotre

These registers are saved in the callee frame. They can be modified by the called subroutine as long as they are saved and restored before returning.

  • (4)、X8, X16-X18, X29, X30 Registers with a special purpose
    这些都是特殊用途的寄存器

• X8 is the indirect result register. This is used to pass the address location of an indirect result, for example, where a function returns a large structure.
• X16 and X17 are IP0 and IP1, intra-procedure-call temporary registers. These can be used by call veneers and similar code, or as temporary registers for intermediate values between subroutine calls. They are corruptible by a function. Veneers are small pieces of code which are automatically inserted by the linker, for example when the branch target is out of range of the branch instruction.
• X18 is the platform register and is reserved for the use of platform ABIs. This is an additional temporary register on platforms that don’t assign a special meaning to it.
• X29 is the frame pointer register (FP).
• X30 is the link register (LR).

ARMV8-aarch64的通用寄存器介绍general-purpose registers