code wiki / _hdl_build / nx_pm_w2_backlog.nx

nx_pm_w2_backlog.nx

buildroot/runtime/_hdl_build/nx_pm_w2_backlog.nx

3982 B48 linesdepth 3pulls 3 transitivereach 0 importersview sourcekind tooltopic pm
docsdependenciesstructsconstsfunctions

about

nx_pm_w2_backlog.nx -- PM backlog breakdown for W2 (sovereign compiler regalloc -> S-class build speed), grounded in the actual allocator code (operator: "give the pm info on what to backlog + assign; tutor as it goes"). The allocator (nx_regalloc.nx) is ALREADY interval/linear-scan-shaped, yet the Auditor measured O(n^1.7) in function-body size -> a hidden superlinear regression. Do NOT theorize the hotspot -- PROFILE. license_tier: ORIGINAL

dependencies 2 imports · 0 importers

nx_pm_review_log.nx nx_syscalls.nx nx_pm_w2_backlog.nx

imports: nx_pm_review_log.nxnx_syscalls.nx

imported by: nobody (leaf or entry point)

call flow from main pre-order; caps 40 nodes / depth 6 declared; ↻ = already shown

main w2_puts sys_write sys_openat_append pm_open sys_openat_append ↻ pm_w sys_write ↻ pm_cstr_len pm_flag pm_w ↻ sys_close sys_exit

structs

none

consts

none

functions

9func w2_puts(s: *u8) -> i64 { var n: i64=0; while s[n]!=(0 as u8){n=n+1} sys_write(1,s,n); return 0 }
called by 1: main calls 1: sys_write
11func main() -> i64