Files
hakorune/docs/development/roadmap/phases/phase-15/ROADMAP.md

6.1 KiB
Raw Blame History

Phase 15 — Box Stacking Roadmap (Living)

This roadmap is a living checklist to advance Phase 15 with small, safe boxes. Update continuously as we progress.

Now (ready/green)

  • v0 Ny parser (Ny→JSON IR v0) with wrappers (Unix/Windows)
  • Runner JSON v0 bridge (--ny-parser-pipe) → MIR → MIR-Interp
  • E2E + roundtrip practical recipes (Windows/Unix)
  • Docs path unify (phase-15 under roadmap tree)
  • Direct bridge (design + skeleton; feature-gated)
  • AOT P2 stubs (CraneliftAotBox/LinkerBox) + RUN smoke wiring
  • JITonly baseline stabilized (core smokes green; plugins optional)
  • Roundtrip (Case A/B) aligned; Case A reenabled via parser pipe
  • using/namespace (gated) + nyash.link minimal resolver
  • NyModules + ny_plugins regression suite (Windows path normalization/namespace derivation)
  • Standard Ny scripts scaffolds added (string/array/map P0) + examples + jit_smoke
  • Selfhost Parser accepts positional input file argEXE運用の前提
  • Phase 15.5-A: プラグインチェッカー拡張完成ChatGPT5 Pro最高評価)
    • 4つの安全性機能完全実装ユニバーサルスロット衝突・StringBox問題・E_METHOD・TLV検証
    • 100%検出精度実証(手動発見問題を完全自動検出)
    • 実用検証済み実際のnyash.tomlで8問題自動検出・修正指示
  • Phase 15.5-B-1: slot_registry統一化完成StringBox問題根本修正
    • core box静的定義30行削除完了3-tier→2-tier基盤確立
    • former core boxesStringBox/IntegerBox/ArrayBox/MapBoxのplugin slots移行
    • WebChatGPT環境との完全一致同じnyash.toml設定で同じ動作

Next (small boxes)

  1. Ny JSON ライブラリ(最小 DOM / JSON v0 対応)
    • Nyash 製の parse/stringifyobject/array/string/number/bool/null
    • Env: NYASH_JSON_PROVIDER=ny既定OFF
    • Smokes: roundtrip/エラー位置検証quick 任意; CI非ブロック
  2. Ny Executor最小命令セット
    • ops: const/binop/compare/branch/jump/ret/phiBox 呼び出しは後段)。
    • Env: NYASH_SELFHOST_EXEC=1既定OFF
    • Parity: PyVM/LLVM harness と stdout/exit の一致。
  3. 呼び出し最小Console/String/Array/Map P0
    • call/externcall/boxcall の最小を接続。未知 extern は STRICT で拒否。
  4. Selfhost Parser の EXE 化(任意・後回し可)
    • tools/build_compiler_exe.sh により JSON v0 emit の単体配布(開発者向け)。
  5. PHI 自動化は Phase15 後LoopForm = MIR18
    • Phase15: 現行の BridgePHI を維持規約は「incoming pred=実際の遷移元」)。
    • MIR18: LoopForm 強化逆Loweringでの自動化に委譲設計のみ先行
  6. Plugins CI split継続
    • Plugins は任意ジョブstrict offを維持。Core は軽量 quick を常時。

Later (incremental)

  • v1 Ny parser (let/if/call) behind NYASH_JSON_IR_VERSION=1
  • JSON v1 bridge → MirBuilder (back-compat v0)
  • 12.7 sugars normalized patterns in bridge (?. / ?? / range)
  • E2E CI-lite matrix (no LLVM) for v0/v1/bridge roundtrip
  • Ny script plugin examples under apps/plugins-scripts/
  • Expand std Ny impl (String P1: trim/split/startsWith/endsWith; Array P1: map/each/filter; Map P1: values/entries/forEach)
  • using/nyash.link E2E samples under apps/ (small project template)
  • Tighten Plugins job: migrate samples to Core13; reenable strict diagnostics

Operational switches

  • Parser path: --parser {rust|ny} or NYASH_USE_NY_PARSER=1
  • JSON dump: NYASH_DUMP_JSON_IR=1
  • 予告LoopForm: MIR18 で仕様化予定
  • Selfhost compiler: NYASH_USE_NY_COMPILER=1, child quiet: NYASH_JSON_ONLY=1
  • JSON provider: NYASH_JSON_PROVIDER=nyNy JSON; 既定OFF
  • Ny executor: NYASH_SELFHOST_EXEC=1既定OFF
  • EXE-first bundle: tools/build_compiler_exe.shdist/nyash_compiler/
  • Load Ny plugins: NYASH_LOAD_NY_PLUGINS=1 / --load-ny-plugins
  • AOT smoke: CLIF_SMOKE_RUN=1

Recipes / Smokes

  • JSON v0 bridge: tools/ny_parser_bridge_smoke.sh / tools/ny_parser_bridge_smoke.ps1
  • E2E roundtrip: tools/ny_roundtrip_smoke.sh / tools/ny_roundtrip_smoke.ps1
  • EXE-first smoke: tools/build_compiler_exe.sh && (cd dist/nyash_compiler && ./nyash_compiler tmp/sample.hako > sample.json)

Implementation Dependencies

  • Phase 15.2 (LLVM EXE) → Phase 15.3 (Nyash Compiler) → Phase 15.4 (VM in Nyash)
  • Python llvmlite serves as rapid prototyping path while Rust/inkwell continues
  • Plugin all-direction build enables static executable generation
  • Total expected Nyash code: ~20,000 lines (75% reduction from 80k Rust)

Stop criteria (Phase 15)

  • v0 E2E green (parser pipe + direct bridge) including Ny compiler MVP switch
  • v1 minimal samples pass via JSON bridge
  • AOT P2: emit→link→run stable for constant/arith
  • Phase15 STOP には PHI 切替を含めないPHI は LoopForm/MIR18 で扱う)
  • 15.3: Stage1 代表サンプル緑 + Bootstrap smokeフォールバック許容+ 文分離ポリシー公開
  • Docs/recipes usable on Windows/Unix

Notes

  • JSON is a temporary, safe boundary. We will keep it for observability even after the in-proc bridge is default.
  • Favor smallest viable steps; do not couple large refactors with new features.

Ny Plugins → Namespace (Plan)

  • Phase A (minimal): Add a shared NyModules registry (env.modules.{set,get}).
    • Map file path → namespace (projectrelative, separators → ., trim extension).
    • R5 hook: if a Ny plugin returns an exports map/static box, register it under the derived namespace.
    • Guard: reject reserved prefixes (e.g., nyashstd.*, system.*).
  • Phase B (scope): Optionally run [ny_plugins] in a shared Interpreter to share static definitions.
    • Flag: NYASH_NY_PLUGINS_SHARED=0 to keep isolated execution.
    • Logs: [ny_plugins] <ns>: REGISTERED | FAIL(reason).
  • Phase C (language bridge): Resolve using foo.bar via NyModules, then fallback to file/package resolver (nyash.link).
    • Keep IDEfriendly fully qualified access; integrate with future nyash_modules/.