ziglang/zig
261
6.0k
Fork
You've already forked zig
781

Zig ARM64 backend: method call uses wrong register for self pointer when second parameter is 0 #35322

Closed
opened 2026年05月16日 02:35:22 +02:00 by alansk · 1 comment

Zig Version

0.16.0

Steps to Reproduce and Observed Behavior

Zig ARM64 backend: method call uses wrong register for self pointer when second parameter is 0

Zig Version

0.16.0

Target

aarch64-freestanding (also affects aarch64-linux and aarch64-macos)

Description

When a function takes two parameters (info: *BootInfo, dtb_addr: u64) and calls a method on info (e.g. info.totalMemory()), the ARM64 backend generates incorrect code: it saves the second parameter (dtb_addr) to the stack slot used for the self pointer, instead of the first parameter (info). When dtb_addr = 0, the method reads fields from address 0 instead of from the actual struct, causing a crash or silent data corruption.

Reproducer

constMemoryRegion=struct{base:u64,size:u64,is_device:bool,};constBootInfo=struct{memory_regions:[16]MemoryRegion,num_regions:usize,kernel_start:u64,kernel_end:u64,dtb_addr:u64,pubfnaddRegion(self:*BootInfo,base:u64,size:u64,is_device:bool)void{if(self.num_regions<16){self.memory_regions[self.num_regions]=.{.base=base,.size=size,.is_device=is_device,};self.num_regions+=1;}}pubfntotalMemory(self:*constBootInfo)u64{vartotal:u64=0;vari:usize=0;while(i<self.num_regions){if(!self.memory_regions[i].is_device){total+=self.memory_regions[i].size;}i+=1;}returntotal;}};fnearlyInit(info:*BootInfo,dtb_addr:u64)void{info.dtb_addr=dtb_addr;info.num_regions=0;info.kernel_start=0;info.kernel_end=0;vari:usize=0;while(i<16):(i+=1){info.memory_regions[i].base=0;info.memory_regions[i].size=0;info.memory_regions[i].is_device=false;}_=info.addRegion(0x4000_0000,128*1024*1024,false);_=info.addRegion(0x0800_0000,0x10000,true);_=info.addRegion(0x0900_0000,0x1000,true);// BUG: reads from address 0 instead of &infoconsttotal=info.totalMemory();if(total!=128*1024*1024){@breakpoint();}}exportfn_start()noreturn{varinfo:BootInfo=undefined;earlyInit(&info,0);while(true){}}

Compile with:

zig build-exe repro.zig -target aarch64-freestanding -femit-asm=repro.s

Disassembly Analysis

Call site in _start:

add x0, sp, #304 ; x0 = &info
str x0, [sp, #8] ; save &info
...
mov w8, #416 ; sizeof(BootInfo)
mov w2, w8 ; memset size
mov w1, #-86 ; memset fill byte (0xAA = undefined)
bl memset
ldr x0, [sp] ; x0 = WRONG pointer (sp+280, not &info!)
ldr x1, [sp, #8] ; x1 = &info (correct, but in wrong register!)
ldr x2, [sp, #16] ; x2 = 0
bl repro_bug.earlyInit ; earlyInit(x0=WRONG, x1=&info, x2=0)

The caller puts &info in x1 instead of x0. The second parameter 0 is in x2 instead of x1.

earlyInit function prologue:

repro_bug.earlyInit:
 sub sp, sp, #160
 stp x29, x30, [sp, #144]
 add x29, sp, #144
 stur x0, [x29, #-48] ; save x0 (WRONG pointer)
 mov x8, x1
 stur x8, [x29, #-40] ; save x1 (&info)
 stur x2, [x29, #-32] ; save x2 (0 = dtb_addr)
 stur x1, [x29, #-24] ; BUG: save x1 as "self" pointer

The compiler saves x1 to [x29, #-24] and uses this slot as the info pointer for all field accesses. In this particular compilation, x1 happens to contain &info (due to the caller-side bug), so it works by accident.

totalMemory call inside earlyInit:

 ldur x0, [x29, #-48] ; x0 = WRONG pointer
 ldur x1, [x29, #-24] ; x1 = [x29-24] = "self" pointer
 bl repro_bug.BootInfo.totalMemory

totalMemory function prologue:

repro_bug.BootInfo.totalMemory:
 sub sp, sp, #128
 stp x29, x30, [sp, #112]
 add x29, sp, #112
 stur x0, [x29, #-40] ; save x0 (unused)
 mov x8, x1
 stur x8, [x29, #-32] ; save x1
 stur x1, [x29, #-24] ; BUG: save x1 as "self" pointer
 ...
 ldur x9, [x29, #-24] ; load "self" from [x29-24]
 ldr x9, [x9, #384] ; read self.num_regions from *(x1 + 384)

In the original kernel (where the bug manifests as a crash):

The kernel calls earlyInit(&info, 0) where dtb_addr = 0:

; Call site in kmain:
mov x0, &info
mov x1, #0 ; dtb_addr = 0
bl earlyInit
; earlyInit prologue:
stur x0, [x29, #-48] ; save x0 = &info
mov x8, x1
stur x8, [x29, #-40] ; save x1 = 0 (dtb_addr)
stur x2, [x29, #-32] ; save x2
stur x1, [x29, #-24] ; BUG: save x1 = 0 as "self" pointer!

; All field accesses use [x29-24] = 0:
ldur x8, [x29, #-24] ; x8 = 0
str x2, [x8, #408] ; write to *(0 + 408) = address 0x198 !!!

; totalMemory call:
ldur x0, [x29, #-48] ; x0 = &info (correct)
ldur x1, [x29, #-24] ; x1 = 0 (BUG!)
bl totalMemory ; totalMemory reads from address 0!

Root Cause

The ARM64 backend has a register allocation bug where it consistently saves x1 to the stack slot [x29, #-24] and uses this slot as the self pointer for method calls and field accesses, instead of using x0.

The bug manifests in two ways:

  1. Caller side: The compiler sometimes passes the first pointer parameter in x1 instead of x0 (register swap).
  2. Callee side: The compiler always saves x1 to [x29, #-24] and uses it as self, regardless of whether x1 actually contains the correct pointer.

When dtb_addr = 0, the method reads from physical address 0, causing an immediate crash in bare-metal/freestanding environments.

Workaround

Store the method result in a const variable before passing it to another function:

// BUG: crashes when dtb_addr = 0debug.log.print("Memory: {}MB\n",.{info.totalMemory()/1024/1024});// WORKAROUND: use a const variableconstmm=info.totalMemory()/1024/1024;debug.log.print("Memory: {}MB\n",.{mm});

The const declaration triggers compile-time evaluation (when the struct fields are known at compile time), avoiding the runtime method call entirely.

Expected Behavior

debug.log.print("Memory: {}MB\n", .{info.totalMemory() / 1024 / 1024});
// WORKAROUND: use a const variable
const mm = info.totalMemory() / 1024 / 1024;
debug.log.print("Memory: {}MB\n", .{mm});
### Zig Version 0.16.0 ### Steps to Reproduce and Observed Behavior # Zig ARM64 backend: method call uses wrong register for `self` pointer when second parameter is 0 ## Zig Version 0.16.0 ## Target `aarch64-freestanding` (also affects `aarch64-linux` and `aarch64-macos`) ## Description When a function takes two parameters `(info: *BootInfo, dtb_addr: u64)` and calls a method on `info` (e.g. `info.totalMemory()`), the ARM64 backend generates incorrect code: it saves the **second** parameter (`dtb_addr`) to the stack slot used for the `self` pointer, instead of the **first** parameter (`info`). When `dtb_addr = 0`, the method reads fields from address `0` instead of from the actual struct, causing a crash or silent data corruption. ## Reproducer ```zig const MemoryRegion = struct { base: u64, size: u64, is_device: bool, }; const BootInfo = struct { memory_regions: [16]MemoryRegion, num_regions: usize, kernel_start: u64, kernel_end: u64, dtb_addr: u64, pub fn addRegion(self: *BootInfo, base: u64, size: u64, is_device: bool) void { if (self.num_regions < 16) { self.memory_regions[self.num_regions] = .{ .base = base, .size = size, .is_device = is_device, }; self.num_regions += 1; } } pub fn totalMemory(self: *const BootInfo) u64 { var total: u64 = 0; var i: usize = 0; while (i < self.num_regions) { if (!self.memory_regions[i].is_device) { total += self.memory_regions[i].size; } i += 1; } return total; } }; fn earlyInit(info: *BootInfo, dtb_addr: u64) void { info.dtb_addr = dtb_addr; info.num_regions = 0; info.kernel_start = 0; info.kernel_end = 0; var i: usize = 0; while (i < 16) : (i += 1) { info.memory_regions[i].base = 0; info.memory_regions[i].size = 0; info.memory_regions[i].is_device = false; } _ = info.addRegion(0x4000_0000, 128 * 1024 * 1024, false); _ = info.addRegion(0x0800_0000, 0x10000, true); _ = info.addRegion(0x0900_0000, 0x1000, true); // BUG: reads from address 0 instead of &info const total = info.totalMemory(); if (total != 128 * 1024 * 1024) { @breakpoint(); } } export fn _start() noreturn { var info: BootInfo = undefined; earlyInit(&info, 0); while (true) {} } ``` Compile with: ``` zig build-exe repro.zig -target aarch64-freestanding -femit-asm=repro.s ``` ## Disassembly Analysis ### Call site in `_start`: ```asm add x0, sp, #304 ; x0 = &info str x0, [sp, #8] ; save &info ... mov w8, #416 ; sizeof(BootInfo) mov w2, w8 ; memset size mov w1, #-86 ; memset fill byte (0xAA = undefined) bl memset ldr x0, [sp] ; x0 = WRONG pointer (sp+280, not &info!) ldr x1, [sp, #8] ; x1 = &info (correct, but in wrong register!) ldr x2, [sp, #16] ; x2 = 0 bl repro_bug.earlyInit ; earlyInit(x0=WRONG, x1=&info, x2=0) ``` The caller puts `&info` in `x1` instead of `x0`. The second parameter `0` is in `x2` instead of `x1`. ### `earlyInit` function prologue: ```asm repro_bug.earlyInit: sub sp, sp, #160 stp x29, x30, [sp, #144] add x29, sp, #144 stur x0, [x29, #-48] ; save x0 (WRONG pointer) mov x8, x1 stur x8, [x29, #-40] ; save x1 (&info) stur x2, [x29, #-32] ; save x2 (0 = dtb_addr) stur x1, [x29, #-24] ; BUG: save x1 as "self" pointer ``` The compiler saves `x1` to `[x29, #-24]` and uses this slot as the `info` pointer for all field accesses. In this particular compilation, `x1` happens to contain `&info` (due to the caller-side bug), so it works by accident. ### `totalMemory` call inside `earlyInit`: ```asm ldur x0, [x29, #-48] ; x0 = WRONG pointer ldur x1, [x29, #-24] ; x1 = [x29-24] = "self" pointer bl repro_bug.BootInfo.totalMemory ``` ### `totalMemory` function prologue: ```asm repro_bug.BootInfo.totalMemory: sub sp, sp, #128 stp x29, x30, [sp, #112] add x29, sp, #112 stur x0, [x29, #-40] ; save x0 (unused) mov x8, x1 stur x8, [x29, #-32] ; save x1 stur x1, [x29, #-24] ; BUG: save x1 as "self" pointer ... ldur x9, [x29, #-24] ; load "self" from [x29-24] ldr x9, [x9, #384] ; read self.num_regions from *(x1 + 384) ``` ### In the original kernel (where the bug manifests as a crash): The kernel calls `earlyInit(&info, 0)` where `dtb_addr = 0`: ```asm ; Call site in kmain: mov x0, &info mov x1, #0 ; dtb_addr = 0 bl earlyInit ; earlyInit prologue: stur x0, [x29, #-48] ; save x0 = &info mov x8, x1 stur x8, [x29, #-40] ; save x1 = 0 (dtb_addr) stur x2, [x29, #-32] ; save x2 stur x1, [x29, #-24] ; BUG: save x1 = 0 as "self" pointer! ; All field accesses use [x29-24] = 0: ldur x8, [x29, #-24] ; x8 = 0 str x2, [x8, #408] ; write to *(0 + 408) = address 0x198 !!! ; totalMemory call: ldur x0, [x29, #-48] ; x0 = &info (correct) ldur x1, [x29, #-24] ; x1 = 0 (BUG!) bl totalMemory ; totalMemory reads from address 0! ``` ## Root Cause The ARM64 backend has a register allocation bug where it consistently saves `x1` to the stack slot `[x29, #-24]` and uses this slot as the `self` pointer for method calls and field accesses, instead of using `x0`. The bug manifests in two ways: 1. **Caller side**: The compiler sometimes passes the first pointer parameter in `x1` instead of `x0` (register swap). 2. **Callee side**: The compiler always saves `x1` to `[x29, #-24]` and uses it as `self`, regardless of whether `x1` actually contains the correct pointer. When `dtb_addr = 0`, the method reads from physical address `0`, causing an immediate crash in bare-metal/freestanding environments. ## Workaround Store the method result in a `const` variable before passing it to another function: ```zig // BUG: crashes when dtb_addr = 0 debug.log.print("Memory: {}MB\n", .{info.totalMemory() / 1024 / 1024}); // WORKAROUND: use a const variable const mm = info.totalMemory() / 1024 / 1024; debug.log.print("Memory: {}MB\n", .{mm}); ``` The `const` declaration triggers compile-time evaluation (when the struct fields are known at compile time), avoiding the runtime method call entirely. ### Expected Behavior ```// BUG: crashes when dtb_addr = 0 debug.log.print("Memory: {}MB\n", .{info.totalMemory() / 1024 / 1024}); // WORKAROUND: use a const variable const mm = info.totalMemory() / 1024 / 1024; debug.log.print("Memory: {}MB\n", .{mm}); ```

LLM writeup aside, the bug is in your code

You are calling earlyInit from assembly assuming it will use C ABI, but earlyInit doesn't have a any call convention specified nor external marked. earlyInit and other non-extern/callconv functions will use whatever call convention or even get inlined etc.

LLM writeup aside, the bug is in your code You are calling `earlyInit` from assembly assuming it will use C ABI, but `earlyInit` doesn't have a any call convention specified nor `external` marked. `earlyInit` and other non-extern/callconv functions will use whatever call convention or even get inlined etc.
linus 2026年05月16日 14:57:20 +02:00
  • closed this issue
  • removed the
    bug
    label
Sign in to join this conversation.
No Branch/Tag specified
master
elfv2
spork8
restricted
0.16.x
panic-rewrite
parking-futex-lockfree
windows-Io-cleanup
Io-watch
ParseCommandLineOptions
windows-async-files
poll-ring
debug-file-leaks-differently
debug-file-leaks
ProcessPrng
elfv2-dyn
jobserver
threadtheft
io-threaded-no-queue
0.15.x
Io.net
comptime-allocator
restricted-function-pointers
cli
wasm-linker-writer
wrangle-writer-buffering
sha1-stream
async-await-demo
fixes
0.14.x
ast-node-methods
macos-debug-info
make-vs-configure
fuzz-macos
sans-aro
ArrayList-reserve
incr-bug
llvm-ir-nosanitize-metadata
ci-tarballs
ci-scripts
threadpool
0.12.x
new-pkg-hash
json-diagnostics
more-doctests
rework-comptime-mutation
0.11.x
ci-perf-comment
stage2-async
0.10.x
autofix
0.9.x
aro
hcs
0.8.x
0.7.x
0.16.0
0.15.2
0.15.1
0.15.0
0.14.1
0.14.0
0.12.1
0.13.0
0.12.0
0.11.0
0.10.1
0.10.0
0.9.1
0.9.0
0.8.1
0.8.0
0.7.1
0.7.0
0.6.0
0.5.0
0.4.0
0.3.0
0.2.0
0.1.1
0.1.0
Labels
Clear labels
abi/f32
abi/ilp32
abi/sf
accepted
This proposal is planned.
arch/21k
arch/6502
arch/aarch64
arch/alpha
arch/amdgcn
arch/arc
arch/arc32
arch/arc64
arch/arm
arch/avr
arch/bfin
arch/bpf
arch/colossus
arch/cris
arch/csky
arch/dlx
arch/epiphany
arch/fr30
arch/frv
arch/hexagon
arch/hppa
arch/hppa64
arch/ia64
arch/kalimba
arch/kvx
arch/lanai
arch/lm32
arch/loongarch32
arch/loongarch64
arch/m32r
arch/m68k
arch/m88k
arch/mcore
arch/microblaze
arch/mips
arch/mips64
arch/mmix
arch/moxie
arch/mrisc32
arch/msp430
arch/nds32
arch/ns32k
arch/nvptx
arch/or1k
arch/powerpc
arch/powerpc64
arch/propeller
arch/riscv32
arch/riscv64
arch/rl78
arch/rx
arch/s390x
arch/sh
arch/sparc
arch/sparc64
arch/spirv
arch/spu
arch/tricore
arch/v850
arch/vax
arch/vc4
arch/ve
arch/wasm
arch/x86
arch/x86_64
arch/xcore
arch/xtensa
autodoc
The web application for interactive documentation and generation of its assets.
backend/c
The C backend outputs C source code.
backend/llvm
The LLVM backend outputs an LLVM bitcode module.
backend/self-hosted
The self-hosted backends produce machine code directly.
binutils
Zig's included binary utilities: zig ar, zig dlltool, zig lib, zig ranlib, zig objcopy, and zig rc.
breaking
Implementing this issue could cause existing code to no longer compile or have different behavior.
build system
The Zig build system - zig build, std.Build, the build runner, and package management.
debug info
An issue related to debug information (e.g. DWARF) produced by the Zig compiler.
docs
An issue with documentation, e.g. the language reference or standard library doc comments.
error message
This issue points out an error message that is unhelpful and should be improved.
frontend
Tokenization, parsing, AstGen, ZonGen, Sema, Legalize, and Liveness.
fuzzing
An issue related to Zig's integrated fuzz testing.
incremental
Reuse of internal compiler state for faster compilation.
lib/c
This issue relates to Zig's libc implementation and/or vendored libcs.
lib/compiler-rt
This issue relates to Zig's compiler-rt library.
lib/cxx
This issue relates to Zig's vendored libc++ and/or libc++abi.
lib/std
This issue relates to Zig's standard library.
lib/tsan
This issue relates to Zig's vendored libtsan.
lib/ubsan-rt
This issue relates to Zig's ubsan-rt library.
lib/unwind
This issue relates to Zig's vendored libunwind.
linking
Zig's integrated object file and incremental linker.
miscompilation
The compiler reports success but produces semantically incorrect code.
os/android
os/contiki
os/dragonfly
os/driverkit
os/emscripten
os/freebsd
os/fuchsia
os/haiku
os/hermit
os/hurd
os/illumos
os/ios
os/linux
os/maccatalyst
os/macos
os/managarm
os/netbsd
os/ohos
os/openbsd
os/plan9
os/redox
os/rtems
os/serenity
os/tvos
os/uefi
os/visionos
os/wasi
os/watchos
os/windows
proposal
This issue suggests language modifications. If it also has the "accepted" label then it is planned.
release notes
This issue or pull request should be mentioned in the release notes.
testing
This issue is related to testing the compiler, standard library, or other parts of Zig.
zig cc
Zig as a drop-in C-family compiler.
zig fmt
The Zig source code formatter.
zig reduce
The Zig source code reduction tool.
bounty
https://ziglang.org/news/announcing-donor-bounties
bug
Observed behavior contradicts documented or intended behavior.
contributor-friendly
This issue is limited in scope and/or knowledge of project internals.
downstream
An issue with a third-party project that uses this project.
enhancement
Solving this issue will likely involve adding new logic or components to the codebase.
infra
An issue related to project infrastructure, e.g. continuous integration.
optimization
A task to improve performance and/or resource usage.
question
No questions on the issue tracker; use a community space instead.
regression
Something that used to work in a previous version stopped working
upstream
An issue with a third-party project that this project uses.
use case
Describes a real use case that is difficult or impossible, but does not propose a solution.
No labels
abi/f32
abi/ilp32
abi/sf
accepted
arch/21k
arch/6502
arch/aarch64
arch/alpha
arch/amdgcn
arch/arc
arch/arc32
arch/arc64
arch/arm
arch/avr
arch/bfin
arch/bpf
arch/colossus
arch/cris
arch/csky
arch/dlx
arch/epiphany
arch/fr30
arch/frv
arch/hexagon
arch/hppa
arch/hppa64
arch/ia64
arch/kalimba
arch/kvx
arch/lanai
arch/lm32
arch/loongarch32
arch/loongarch64
arch/m32r
arch/m68k
arch/m88k
arch/mcore
arch/microblaze
arch/mips
arch/mips64
arch/mmix
arch/moxie
arch/mrisc32
arch/msp430
arch/nds32
arch/ns32k
arch/nvptx
arch/or1k
arch/powerpc
arch/powerpc64
arch/propeller
arch/riscv32
arch/riscv64
arch/rl78
arch/rx
arch/s390x
arch/sh
arch/sparc
arch/sparc64
arch/spirv
arch/spu
arch/tricore
arch/v850
arch/vax
arch/vc4
arch/ve
arch/wasm
arch/x86
arch/x86_64
arch/xcore
arch/xtensa
autodoc
backend/c
backend/llvm
backend/self-hosted
binutils
breaking
build system
debug info
docs
error message
frontend
fuzzing
incremental
lib/c
lib/compiler-rt
lib/cxx
lib/std
lib/tsan
lib/ubsan-rt
lib/unwind
linking
miscompilation
os/android
os/contiki
os/dragonfly
os/driverkit
os/emscripten
os/freebsd
os/fuchsia
os/haiku
os/hermit
os/hurd
os/illumos
os/ios
os/linux
os/maccatalyst
os/macos
os/managarm
os/netbsd
os/ohos
os/openbsd
os/plan9
os/redox
os/rtems
os/serenity
os/tvos
os/uefi
os/visionos
os/wasi
os/watchos
os/windows
proposal
release notes
testing
zig cc
zig fmt
zig reduce
bounty
bug
contributor-friendly
downstream
enhancement
infra
optimization
question
regression
upstream
use case
Milestone
Clear milestone
No items
No milestone
Projects
Clear projects
No items
No project
Assignees
Clear assignees
No assignees
2 participants
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
ziglang/zig#35322
Reference in a new issue
ziglang/zig
No description provided.
Delete branch "%!s()"

Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?