qbe in native build

This commit is contained in:
2026-02-17 10:23:47 -06:00
parent 2d054fcf21
commit 8c408a4b81
158 changed files with 76441 additions and 20 deletions

27
src/qbe/test/dynalloc.ssa Normal file
View File

@@ -0,0 +1,27 @@
# make sure dynamic allocations
# and caller-save regs interact
# soundly
function $g() {
@start
ret
}
function w $f(w %arg) {
@start
call $g()
@alloc
%r =l alloc8 16
storel 180388626474, %r
%r8 =l add 8, %r
storel 180388626474, %r8
ret %arg
}
export
function w $main() {
@start
%a =w call $f(w 0)
%b =w call $f(w 0)
ret %a
}