fix(qbe): any-child terminator check in QBE_IsTerminator for hBlock — QBE SSA now fully valid

- QBE_IsTerminator(hBlock) checks ALL children, not just last
- Removed legacy c_backend.bux and nim_backend.bux from _selfhost/src/
- QBE self-hosting QBE phase: PASSES (SSA valid, assembled to .s)
- Remaining: linker errors from missing String_Eq/StringBuilder in runtime
This commit is contained in:
2026-06-02 13:56:12 +03:00
parent 6cb5528a4d
commit eb8179b6d0
142 changed files with 70706 additions and 1407 deletions
+32
View File
@@ -0,0 +1,32 @@
# Ember Sawady reported this bug
# in stack-slot coalescing
type :t = { w 2 }
function :t $func() {
@start.0
%temp =l alloc4 4
%ret =l alloc4 8
storew 1, %temp
# storew can also go here
%field =l add %ret, 4
storew 2, %ret
blit %temp, %field, 4
# removing either of these storews causes it to work
storew 2, %ret
ret %ret
}
export function w $main() {
@start
%ret =:t call $func()
%fptr =l add %ret, 4
%field =w loaduw %fptr
%x =w ceqw %field, 1
jnz %x, @passed, @failed
@failed
# this fails despite 1 => temp => ret + 4 => field
call $abort()
@passed
ret 0
}