Files
hakorune/docs/tools/vm-stats-cookbook.md

39 lines
1.6 KiB
Markdown
Raw Permalink Normal View History

# VM Stats Cookbook
Collect VM instruction stats (JSON) to guide optimization and instruction set diet.
## Prerequisites
- Build: `cargo build --release -j32`
- Ensure plugins are configured in `nyash.toml` if your program uses them.
## Quick Start
```bash
# Human-readable
./target/release/nyash --backend vm --vm-stats local_tests/vm_stats_http_ok.hako
# JSON for tooling
./target/release/nyash --backend vm --vm-stats --vm-stats-json local_tests/vm_stats_http_ok.hako > vm_stats_ok.json
# Or via helper script
tools/run_vm_stats.sh local_tests/vm_stats_http_ok.hako vm_stats_ok.json
```
## Sample Programs
- `local_tests/vm_stats_http_ok.hako` — Server responds "OK" to a client GET.
- `local_tests/vm_stats_http_err.hako` — Client GET to an unreachable port (Result Err path).
- `local_tests/vm_stats_http_404.hako` — Server returns 404/"NF"; transport成功アプリ層エラーの代表例。
- `local_tests/vm_stats_http_500.hako` — Server returns 500/"ERR"; 同上。
- `local_tests/vm_stats_filebox.hako` — FileBox open/write/copyFrom/read.
## Tips
- Enable plugin debugging when needed:
- `NYASH_DEBUG_PLUGIN=1` — Show VM→Plugin TLV header preview.
- `NYASH_NET_LOG=1 NYASH_NET_LOG_FILE=net_plugin.log` — Net plugin logs.
- Env alternative to CLI flags:
- `NYASH_VM_STATS=1` and `NYASH_VM_STATS_JSON=1`.
## Next Steps
- Collect stats for normal and error flows (OK/404/500/unreachable, FileBox)。
- Compare hot instructions across scenariosBoxCall/Const/NewBox の比率、Branch/Jump/Phi の有無)。
- Feed findings into the 26-instruction diet discussionコア維持・メタ降格・型折りたたみ