| |||||||||||||
Technical Support On-Line Manuals RealView Assembler User's Guide | Registers
ARM processors have 37 registers. The registers are arranged in partially overlapping banks. There is a different register bank for each processor mode. The banked registers give rapid context switching for dealing with processor exceptions and privileged operations. See ARM Architecture Reference Manual for a detailed description of how registers are banked. The following registers are available: Fifteen general‑purpose registers are visible at any one time, depending on the current processor mode, as r0, r1, ... , r13, r14. r13 is the stack pointer (sp). The C and C++ compilers always use r13 as the stack pointer. In Thumb-2 sp is strictly defined as the stack pointer, so many instructions that are not useful in stack manipulation are unpredictable if r13 is used. Use of sp as a general purpose register is discouraged. In User mode, r14 is used as a link register (lr) to store the return address when a subroutine call is made. It can also be used as a general‑purpose register if the return address is stored on the stack. In the exception handling modes, r14 holds the return address for the exception, or a subroutine return address if subroutine calls are executed within an exception. r14 can be used as a general‑purpose register if the return address is stored on the stack. The Program Counter is accessed as r15 (or pc). It is incremented by one word (four bytes) for each instruction in ARM state, or by the size of the instruction executed in Thumb state. Branch instructions load the destination address into pc. You can also load the PC directly using data operation instructions. For example, to return from a subroutine, you can copy the link register into the PC using:
MOV pc,lr
During execution, r15 (pc) does not contain the address of the currently executing instruction. The address of the currently executing instruction is typically pc–8 for ARM, or pc–4 for Thumb. The APSR holds copies of the Arithmetic Logic Unit (ALU) status flags. They are used to determine whether conditional instructions are executed or not. See Conditional execution for more information. On ARMv5TE, and ARMv6 and above, the APSR also holds the Q flag (see The ALU status flags). On ARMv6 and above, the APSR also holds the GE flags (see Parallel add and subtract). These flags are accessible in all modes, using The CPSR holds:
On Thumb‑capable or Jazelle®‑capable processors, the CPSR also holds the current processor state (ARM, Thumb, ThumbEE, or Jazelle). On ARMv6T2 and above, Thumb‑2 introduces new state bits to the CPSR. These are used by the Only the APSR flags are accessible in all modes. The remaining bits of the CPSR are accessible only in privileged modes, using | ||||||||||||
| |||||||||||||