pub static DUMPS: Mutex<Vec<funcdump>>Expand description
static FuncDump dumps; from Src/parse.c:3652 — head of the
loaded-.zwc linked list. C walks dumps/p->next directly;
the Rust port uses a Mutex<Vec<funcdump>> indexed by filename
so refcount ops can find an entry without raw-pointer compare.