code wiki / (root) / nx_symj_gk.nx

nx_symj_gk.nx

buildroot/runtime/nx_symj_gk.nx

2070 B65 linesdepth 2pulls 2 transitivereach 0 importersview sourcekind tooltopic symj
docsdependenciesstructsconstsfunctions

about

GENERATED by nx_symjudge -- sweep harness, do not edit

dependencies 1 imports · 0 importers

nx_syscalls.nx nx_symj_gk.nx

imports: nx_syscalls.nx

imported by: nobody (leaf or entry point)

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

main mx sjh_w sys_write sjh_n sys_mmap nxa_die sys_write ↻ sys_exit nxa_lock_take nxa_lock_addr sys_write ↻ nxa_lock_give nxa_lock_addr ↻ nxa_report_overrun sys_write ↻ nxa_dump_printable sys_write ↻ nxa_dump_sizes sys_write ↻ sys_write ↻ sjh_nl sys_mmap ↻ sys_write ↻

structs

none

consts

none

functions

3func mx(a: i64, b: i64) -> i64 { if a > b { return a } return b }
called by 1: main
4func sjh_w(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
5func sjh_nl() -> i64 { let b: *u8 = sys_mmap(8); b[0] = 10 as u8; sys_write(1, b, 1); return 0 }
called by 1: main calls 2: sys_mmapsys_write
6func sjh_n(v: i64) -> i64
called by 1: main calls 2: sys_mmapsys_write
19func main() -> i64