The Subroutine Call Convention (AAPCS) defines clear rules for how functions communicate in ARM systems. It helps different parts of a program work together smoothly by agreeing on how to pass data and return results.
Subroutine call convention (AAPCS) in ARM Architecture
No single code syntax; it is a set of rules about register usage and stack management during function calls.
r0-r3: Used to pass up to four integer or pointer arguments to a function. r0: Also used to return the result from a function.
r4-r11: Callee-saved registers. The called function must save and restore these if it uses them.
sp (stack pointer): Points to the current top of the stack, used for local variables and saving registers.
lr (link register): Holds the return address when a function is called.
This example shows a simple function that adds two numbers. The first two numbers are passed in registers r0 and r1. The function adds them and returns the result in r0. The link register (lr) is used to return to the caller.
; Example ARM assembly function following AAPCS ; Function: add_two_numbers ; Adds two integers passed in r0 and r1, returns result in r0 add_two_numbers: add r0, r0, r1 ; Add r1 to r0, result in r0 bx lr ; Return to caller using link register ; Caller code example mov r0, #5 ; First argument = 5 mov r1, #7 ; Second argument = 7 bl add_two_numbers ; Call function ; Result now in r0 (should be 12)
Following AAPCS ensures that functions can call each other without corrupting data.
Not following the convention can cause bugs that are hard to find, like wrong results or crashes.
Stack alignment is important; the stack pointer must be 8-byte aligned before calling a function.
AAPCS defines how ARM functions pass arguments and return values using registers.
Registers r0-r3 are for arguments and return values; r4-r11 must be preserved by the called function.
The link register (lr) holds the return address, and the stack pointer (sp) manages local data.