ARM and AArch64 assembly
AArch64 has 31 general 64-bit registers, a clean load-store instruction set, and per-core SIMD through NEON. This skill reads compiler output and writes correct inline asm for it.
Contract
| Field |
Bound contract |
| Trigger |
The task reads GCC or Clang AArch64 output, writes inline asm or standalone assembly, decodes AAPCS64 register roles, or writes NEON intrinsics or SVE kernels. |
| Authority |
Read-only. The skill explains, drafts, and annotates assembly; edits land in the user's source through the normal coding path. No remote mutation. |
| Side effect |
None. Output is analysis and drafted code in chat. |
| Done |
The drafted assembly assembles for the named target, or the compiler output under discussion is explained register by register. |
Inputs
- The C or C++ source, compiler output, or assembly fragment: required.
- The target: required.
aarch64-linux-gnu for application cores, arm-none-eabi with -mthumb for 32-bit Cortex-M.
- The purpose: required. Reading output, writing inline asm, or vectorizing.
Procedure
- Generate a baseline. Write the C version first and read its output before hand-writing anything. Done when: the compiler's own code for the same function is on screen.
aarch64-linux-gnu-gcc -O2 -S foo.c -o foo.s
aarch64-linux-gnu-objdump -d a.out
- Map registers by role. The table names are the ABI's, and assembly must respect them. Done when: every register in the fragment is classified.
| Register |
Alias |
Role |
x0 to x7 |
w0 for 32-bit use |
Arguments and return values, caller saved |
x8 |
|
Indirect result location, or syscall number on Linux |
x9 to x15 |
|
Temporaries, caller saved |
x16, x17 |
ip0, ip1 |
Intra-procedure call scratch, do not keep values across calls |
x18 |
|
Platform register, reserved on some platforms, do not use |
x19 to x28 |
|
Callee saved |
x29 |
fp |
Frame pointer |
x30 |
lr |
Link register, return address |
sp |
|
Stack pointer, must stay 16-byte aligned at public interfaces |
v0 to v7 |
q/d/s views |
FP and SIMD arguments and returns, caller saved |
v8 to v15 |
|
Callee saved, low 64 bits only |
- Read the common instructions. Load and store are separate from arithmetic, which only runs on registers. Done when: each instruction in the fragment parses.
ldr x0, [x1] // load 64-bit
ldrb w0, [x1] // load byte, zero-extended
strb w0, [x1] // store byte
ldp x0, x1, [sp] // load pair
stp x29, x30, [sp, #-16]! // store pair with pre-index writeback
add x0, x1, x2 // x0 = x1 + x2
mul x0, x1, x2 // low 64 bits of the product
madd x0, x1, x2, x3 // x0 = x1*x2 + x3
sdiv x0, x1, x2 // signed divide
udiv x0, x1, x2 // unsigned divide
cmp x0, x1 // set flags from x0 - x1
cbz x0, label // branch if zero, no flags needed
blr x0 // branch to address in register, set x30
ret // return through x30
adrp x0, symbol // page address of a symbol
add x0, x0, :lo12:symbol
- Write the standard prologue and epilogue. Leaf functions that fit in a frame need none. Done when: any callee-saved register pushed is popped, and
sp returns aligned.
my_func: // non-leaf example
stp x29, x30, [sp, #-32]!
mov x29, sp
stp x19, x20, [sp, #16]
// body
ldp x19, x20, [sp, #16]
ldp x29, x30, [sp], #32
ret
- Write inline asm with the constraints the target needs.
volatile stops reordering, memory declares side effects on memory, and hardware registers need explicit clobbers. Use the counter to read the timer. Done when: the fragment compiles and its inputs, outputs, and clobbers are each listed.
static inline uint64_t read_cntvct(void) {
uint64_t val;
__asm__ volatile("mrs %0, cntvct_el0" : "=r"(val));
return val;
}
- Use NEON for 128-bit SIMD. Work through
<arm_neon.h> intrinsics; they map one to one onto instructions. Done when: the loop processes one vector per iteration and the scalar tail stays correct.
#include <arm_neon.h>
void sum_f32(const float *a, const float *b, float *dst, int n) {
for (int i = 0; i + 4 <= n; i += 4) {
float32x4_t va = vld1q_f32(a + i); // load 4 floats
float32x4_t vb = vld1q_f32(b + i);
float32x4_t vc = vaddq_f32(va, vb);
vst1q_f32(dst + i, vc); // store 4 floats
}
}
- Apply the platform corrections. Apple silicon uses 16 KiB pages and a 128-byte cache line, so
sysconf(_SC_PAGESIZE) replaces the 4096 assumption. AMX is internal to Apple libraries; write portable code with Accelerate or Metal instead. SVE exists only where the hardware has it; guard SVE code and keep a NEON fallback. Done when: the code states no portability assumption the target contradicts.
Failure and recovery
| Failure class |
Behavior |
sp misaligned crash in a callee |
A path adjusted sp by a non-16-byte amount. Audit every sub sp and pre-index offset. |
| Value lost across a call in hand-written asm |
The value sat in x0 to x17. Move it to a callee-saved register or spill it. |
Inline asm result wrong at -O2 |
Missing volatile or a missing "memory" clobber let the compiler delete or reorder the asm. |
| NEON code fails on Cortex-M |
Cortex-M has no NEON and runs Thumb. Rewrite with scalar code or a DSP extension. |
| SVE build fails on a NEON-only core |
SVE needs supporting hardware. Use the guarded fallback from step 7. |
Output
Annotated assembly or inline asm, with the register roles named, the clobbers justified, and the target stated. The condition-code table, the wider instruction list, and the NEON category reference are in references/reference.md.
1---2name: assembly-arm3description: Use when reading or writing AArch64 or AArch32 Thumb assembly, inline asm in C, AAPCS64 register roles, or NEON and SVE vector code. Not for ABI detail across ISAs: use abi-and-calling-conventions.4---56# ARM and AArch64 assembly78AArch64 has 31 general 64-bit registers, a clean load-store instruction set, and per-core SIMD through NEON. This skill reads compiler output and writes correct inline asm for it.910## Contract1112| Field | Bound contract |13|---|---|14| Trigger | The task reads GCC or Clang AArch64 output, writes inline asm or standalone assembly, decodes AAPCS64 register roles, or writes NEON intrinsics or SVE kernels. |15| Authority | Read-only. The skill explains, drafts, and annotates assembly; edits land in the user's source through the normal coding path. No remote mutation. |16| Side effect | None. Output is analysis and drafted code in chat. |17| Done | The drafted assembly assembles for the named target, or the compiler output under discussion is explained register by register. |1819## Inputs2021- The C or C++ source, compiler output, or assembly fragment: required.22- The target: required. `aarch64-linux-gnu` for application cores, `arm-none-eabi` with `-mthumb` for 32-bit Cortex-M.23- The purpose: required. Reading output, writing inline asm, or vectorizing.2425## Procedure26271. Generate a baseline. Write the C version first and read its output before hand-writing anything. Done when: the compiler's own code for the same function is on screen.2829```bash30aarch64-linux-gnu-gcc -O2 -S foo.c -o foo.s31aarch64-linux-gnu-objdump -d a.out32```33342. Map registers by role. The table names are the ABI's, and assembly must respect them. Done when: every register in the fragment is classified.3536| Register | Alias | Role |37|----------|-------|------|38| `x0` to `x7` | `w0` for 32-bit use | Arguments and return values, caller saved |39| `x8` | | Indirect result location, or syscall number on Linux |40| `x9` to `x15` | | Temporaries, caller saved |41| `x16`, `x17` | `ip0`, `ip1` | Intra-procedure call scratch, do not keep values across calls |42| `x18` | | Platform register, reserved on some platforms, do not use |43| `x19` to `x28` | | Callee saved |44| `x29` | `fp` | Frame pointer |45| `x30` | `lr` | Link register, return address |46| `sp` | | Stack pointer, must stay 16-byte aligned at public interfaces |47| `v0` to `v7` | `q`/`d`/`s` views | FP and SIMD arguments and returns, caller saved |48| `v8` to `v15` | | Callee saved, low 64 bits only |49503. Read the common instructions. Load and store are separate from arithmetic, which only runs on registers. Done when: each instruction in the fragment parses.5152```asm53ldr x0, [x1] // load 64-bit54ldrb w0, [x1] // load byte, zero-extended55strb w0, [x1] // store byte56ldp x0, x1, [sp] // load pair57stp x29, x30, [sp, #-16]! // store pair with pre-index writeback58add x0, x1, x2 // x0 = x1 + x259mul x0, x1, x2 // low 64 bits of the product60madd x0, x1, x2, x3 // x0 = x1*x2 + x361sdiv x0, x1, x2 // signed divide62udiv x0, x1, x2 // unsigned divide63cmp x0, x1 // set flags from x0 - x164cbz x0, label // branch if zero, no flags needed65blr x0 // branch to address in register, set x3066ret // return through x3067adrp x0, symbol // page address of a symbol68add x0, x0, :lo12:symbol69```70714. Write the standard prologue and epilogue. Leaf functions that fit in a frame need none. Done when: any callee-saved register pushed is popped, and `sp` returns aligned.7273```asm74my_func: // non-leaf example75 stp x29, x30, [sp, #-32]!76 mov x29, sp77 stp x19, x20, [sp, #16]78 // body79 ldp x19, x20, [sp, #16]80 ldp x29, x30, [sp], #3281 ret82```83845. Write inline asm with the constraints the target needs. `volatile` stops reordering, `memory` declares side effects on memory, and hardware registers need explicit clobbers. Use the counter to read the timer. Done when: the fragment compiles and its inputs, outputs, and clobbers are each listed.8586```c87static inline uint64_t read_cntvct(void) {88 uint64_t val;89 __asm__ volatile("mrs %0, cntvct_el0" : "=r"(val));90 return val;91}92```93946. Use NEON for 128-bit SIMD. Work through `<arm_neon.h>` intrinsics; they map one to one onto instructions. Done when: the loop processes one vector per iteration and the scalar tail stays correct.9596```c97#include <arm_neon.h>9899void sum_f32(const float *a, const float *b, float *dst, int n) {100 for (int i = 0; i + 4 <= n; i += 4) {101 float32x4_t va = vld1q_f32(a + i); // load 4 floats102 float32x4_t vb = vld1q_f32(b + i);103 float32x4_t vc = vaddq_f32(va, vb);104 vst1q_f32(dst + i, vc); // store 4 floats105 }106}107```1081097. Apply the platform corrections. Apple silicon uses 16 KiB pages and a 128-byte cache line, so `sysconf(_SC_PAGESIZE)` replaces the 4096 assumption. AMX is internal to Apple libraries; write portable code with Accelerate or Metal instead. SVE exists only where the hardware has it; guard SVE code and keep a NEON fallback. Done when: the code states no portability assumption the target contradicts.110111## Failure and recovery112113| Failure class | Behavior |114|---|---|115| `sp` misaligned crash in a callee | A path adjusted `sp` by a non-16-byte amount. Audit every `sub sp` and pre-index offset. |116| Value lost across a call in hand-written asm | The value sat in `x0` to `x17`. Move it to a callee-saved register or spill it. |117| Inline asm result wrong at `-O2` | Missing `volatile` or a missing `"memory"` clobber let the compiler delete or reorder the asm. |118| NEON code fails on Cortex-M | Cortex-M has no NEON and runs Thumb. Rewrite with scalar code or a DSP extension. |119| SVE build fails on a NEON-only core | SVE needs supporting hardware. Use the guarded fallback from step 7. |120121## Output122123Annotated assembly or inline asm, with the register roles named, the clobbers justified, and the target stated. The condition-code table, the wider instruction list, and the NEON category reference are in `references/reference.md`.