Stage-B: add --v1-compat opt-in path and smoke

This commit is contained in:
nyash-codex
2025-11-01 03:56:25 +09:00
parent 1f415e733c
commit 4f4ee948e0
6 changed files with 92 additions and 6 deletions

View File

@ -4,6 +4,6 @@
- [x] `ParserBox.parse_program2` → AST JSON を取得Quiet: 1行。StageA map parser は空/空白/エスケープに対応。
- [x] FlowEntry.emit_v0_from_ast_with_contextusing/extern メタを統合)。
- [x] selfhost canaryreturn/binop/if/indexを StageB でも PASSoptin `SMOKES_ENABLE_STAGEB=1` で緑)。
- [ ] v1→v0 降格MirJsonV1Adapter経路を整備必要箇所のみ)。
- [x] v1→v0 降格MirJsonV1Adapter経路を整備`--v1-compat` / `selfhost_stageb_v1_compat_vm` opt-in)。
- [x] tools/smokes/v2/profiles/quick/core/selfhost_* を追加optin。配列ネスト/境界ケースを含む。
- [x] ドキュメント更新README/PLAN/CHECKLIST

View File

@ -9,7 +9,7 @@
1) 入口統合StageB ルートの optin 実装)
- `lang/src/compiler/entry/compiler_stageb.hako` を追加(既定: StageB emit 専用)。
- `ParserBox.parse_program2(src)``FlowEntryBox.emit_v0_from_ast_with_context(..., usings, modules?, externs)` → print 1 行 JSON。
- フラグ: `--prefer-cfg <N>` で pipeline 選好を切替。StageB は using あり / externs あり時の経路を統合済み
- フラグ: `--prefer-cfg <N>` で pipeline 選好を切替。`--v1-compat` で MirJsonV1Adapter 経路を opt-in
2) 代表構文の緑化
- binop/compare/if/index/new/boxcall/externcall を pipeline_v2 で受理できるよう確認。
- StageA canary と同等の selfhost canary を StageB でも PASS。

View File

@ -30,8 +30,10 @@
実装メモ
- StageB エントリを `lang/src/compiler/entry/compiler_stageb.hako` として分離。`FlowEntryBox.emit_v0_from_ast_with_context`using/extern メタを集約)を既定で使う。
- `--v1-compat` を指定すると `FlowEntryBox.emit_v1_compat_from_ast_with_meta` を経由MirJsonV1Adapter 降格)。
- StageA map parser を強化(空/空白/エスケープ対応)。対応済み canary: `index_operator_hako`
- StageB canary は `SMOKES_ENABLE_STAGEB=1` で有効化。binop/if/indexネスト・境界ケース込みを opt-in で検証可能。
- v1 互換 canary `selfhost_stageb_v1_compat_vm.sh``SMOKES_ENABLE_STAGEB_V1=1` で opt-in。
- Module 解決: `nyash.toml` に lang/compiler/shared/vm の論理名を追記し、using resolver から参照可能にした。
マイルストーン